Changed around line 1
+
+
+
+
+
+
xkarelin_ | Tech & VC+
+
+ :root {
+ --primary: #2563eb;
+ --dark: #1e293b;
+ --light: #f8fafc;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family:
+ system-ui,
+ -apple-system,
+ sans-serif;
+ line-height: 1.6;
+ color: var(--dark);
+ background: var(--light);
+ }
+
+ nav {
+ position: fixed;
+ width: 100%;
+ padding: 1.5rem;
+ background: rgba(255, 255, 255, 0.9);
+ backdrop-filter: blur(10px);
+ z-index: 100;
+ }
+
+ nav ul {
+ display: flex;
+ justify-content: center;
+ gap: 2rem;
+ list-style: none;
+ }
+
+ nav a {
+ text-decoration: none;
+ color: var(--dark);
+ font-weight: 500;
+ transition: color 0.3s;
+ }
+
+ nav a:hover {
+ color: var(--primary);
+ }
+
+ section {
+ min-height: 100vh;
+ padding: 6rem 2rem 4rem;
+ }
+
+ .hero {
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ text-align: center;
+ gap: 2rem;
+ background: linear-gradient(135deg, #2563eb11, #2563eb22);
+ }
+
+ .hero h1 {
+ font-size: 3.5rem;
+ font-weight: 800;
+ opacity: 0;
+ transform: translateY(30px);
+ }
+
+ .hero p {
+ font-size: 1.25rem;
+ max-width: 600px;
+ opacity: 0;
+ transform: translateY(30px);
+ }
+
+ .expertise {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 2rem;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .expertise-card {
+ padding: 2rem;
+ border-radius: 8px;
+ background: white;
+ box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
+ transition: transform 0.3s;
+ opacity: 0;
+ transform: translateY(30px);
+ }
+
+ .expertise-card:hover {
+ transform: translateY(-5px);
+ }
+
+ .projects {
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .timeline {
+ position: relative;
+ max-width: 800px;
+ margin: 4rem auto;
+ }
+
+ .timeline-item {
+ margin: 2rem 0;
+ padding: 1.5rem;
+ border-radius: 8px;
+ background: white;
+ box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
+ opacity: 0;
+ transform: translateX(-30px);
+ }
+
+ .contact {
+ text-align: center;
+ }
+
+ .contact form {
+ max-width: 500px;
+ margin: 2rem auto;
+ display: flex;
+ flex-direction: column;
+ gap: 1rem;
+ }
+
+ input,
+ textarea {
+ padding: 0.75rem;
+ border: 1px solid #e2e8f0;
+ border-radius: 4px;
+ font-family: inherit;
+ }
+
+ button {
+ padding: 0.75rem 1.5rem;
+ background: var(--primary);
+ color: white;
+ border: none;
+ border-radius: 4px;
+ cursor: pointer;
+ transition: background 0.3s;
+ }
+
+ button:hover {
+ background: #1d4ed8;
+ }
+
+ @media (max-width: 768px) {
+ .hero h1 {
+ font-size: 2.5rem;
+ }
+ }
+
+
+
+
+
+
+
+
+
xkarelin_
+
Tech Veteran & Startup Investor with 15 Years of Experience
+
+
+
+
+
+
Marketing Strategy
+ Helping startups build and execute effective growth strategies
+ through digital channels.
+
+
+
+
Venture Capital
+ Identifying and investing in promising early-stage tech startups.
+ Portfolio management and advisory.
+
+
+
+
Tech Development
+ 15 years of hands-on development experience across multiple tech
+ stacks and industries.
+
+
+
+
+
+
+
+
Project Timeline
+
+
+
2024
+
Currently advising 5 tech startups in Series A/B stages
+
+
+
2020-2023
+
Led technical strategy for multiple successful exits
+
+
+
2015-2020
+
Built and scaled engineering teams across 3 startups
+
+
+
+
+
+
+
Get in Touch
+
+
+
+
+
+
+
+
+ // Smooth scroll
+ document.querySelectorAll('a[href^="#"]').forEach((anchor) => {
+ anchor.addEventListener("click", function (e) {
+ e.preventDefault();
+ document.querySelector(this.getAttribute("href")).scrollIntoView({
+ behavior: "smooth",
+ });
+ });
+ });
+
+ // Animations
+ gsap.to(".hero h1", {
+ opacity: 1,
+ y: 0,
+ duration: 1,
+ delay: 0.5,
+ });
+
+ gsap.to(".hero p", {
+ opacity: 1,
+ y: 0,
+ duration: 1,
+ delay: 0.8,
+ });
+
+ // Expertise cards animation
+ gsap.utils.toArray(".expertise-card").forEach((card, i) => {
+ gsap.to(card, {
+ opacity: 1,
+ y: 0,
+ duration: 0.8,
+ delay: 0.2 * i,
+ scrollTrigger: {
+ trigger: card,
+ start: "top bottom-=100",
+ },
+ });
+ });
+
+ // Timeline items animation
+ gsap.utils.toArray(".timeline-item").forEach((item, i) => {
+ gsap.to(item, {
+ opacity: 1,
+ x: 0,
+ duration: 0.8,
+ delay: 0.2 * i,
+ scrollTrigger: {
+ trigger: item,
+ start: "top bottom-=100",
+ },
+ });
+ });
+
+ // Form submission
+ document
+ .getElementById("contact-form")
+ .addEventListener("submit", function (e) {
+ e.preventDefault();
+ alert("Message sent! (Demo only)");
+ this.reset();
+ });
+
+
+