<style>
  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

  :root {
    --bg: #0a0a0a;
    --surface: #111111;
    --border: #1e1e1e;
    --accent: #c8ff00;
    --accent2: #ff6b35;
    --text: #f0f0f0;
    --muted: #555;
    --muted2: #888;
    --font-display: 'Syne', sans-serif;
    --font-mono: 'DM Mono', monospace;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-display);
    overflow-x: hidden;
    cursor: none;
  }

  .cursor {
    width: 10px; height: 10px;
    background: var(--accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease, width 0.2s, height 0.2s, background 0.2s;
    transform: translate(-50%, -50%);
  }

  .cursor-ring {
    width: 36px; height: 36px;
    border: 1px solid rgba(200,255,0,0.4);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), width 0.3s, height 0.3s;
    transform: translate(-50%, -50%);
  }

  body:has(a:hover) .cursor, body:has(button:hover) .cursor { transform: translate(-50%, -50%) scale(2.5); background: var(--accent2); }
  body:has(a:hover) .cursor-ring, body:has(button:hover) .cursor-ring { width: 56px; height: 56px; border-color: var(--accent2); }

  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 24px 60px;
    background: rgba(10,10,10,0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
  }
  nav.scrolled { border-color: var(--border); }

  .nav-logo {
    font-size: 22px; font-weight: 800; letter-spacing: -1px;
    color: var(--text); text-decoration: none;
  }
  .nav-logo span { color: var(--accent); }

  .nav-links { display: flex; gap: 40px; list-style: none; }
  .nav-links a {
    color: var(--muted2); text-decoration: none; font-size: 13px;
    font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--accent); }

  .nav-cta {
    background: var(--accent); color: #000; padding: 10px 22px;
    border-radius: 4px; font-size: 13px; font-weight: 700;
    text-decoration: none; letter-spacing: 0.05em;
    transition: background 0.2s, transform 0.2s;
  }
  .nav-cta:hover { background: #d4ff1a; transform: translateY(-1px); }

  section { padding: 120px 60px; max-width: 1400px; margin: 0 auto; }

  .hero {
    min-height: 100vh;
    display: flex; flex-direction: column; justify-content: center;
    padding-top: 160px; padding-bottom: 80px;
    position: relative; max-width: 100%; margin: 0;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute; inset: 0; z-index: 0;
    background: radial-gradient(ellipse 60% 60% at 80% 50%, rgba(200,255,0,0.05) 0%, transparent 70%),
                radial-gradient(ellipse 40% 40% at 20% 80%, rgba(255,107,53,0.04) 0%, transparent 60%);
  }

  .hero-grid {
    position: absolute; inset: 0; z-index: 0; opacity: 0.03;
    background-image: linear-gradient(var(--text) 1px, transparent 1px), linear-gradient(90deg, var(--text) 1px, transparent 1px);
    background-size: 60px 60px;
  }

  .hero-inner { position: relative; z-index: 1; padding: 0 60px; max-width: 1400px; margin: 0 auto; }

  .hero-tag {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-mono); font-size: 12px; color: var(--accent);
    letter-spacing: 0.1em; margin-bottom: 32px;
    opacity: 0; animation: fadeUp 0.6s 0.2s forwards;
  }
  .hero-tag::before {
    content: ''; width: 24px; height: 1px; background: var(--accent);
  }

  .hero-title {
    font-size: clamp(56px, 9vw, 130px);
    font-weight: 800; line-height: 0.92;
    letter-spacing: -0.03em;
    opacity: 0; animation: fadeUp 0.8s 0.3s forwards;
    max-width: 900px;
  }
  .hero-title em { font-style: normal; color: var(--accent); }

  .hero-sub {
    margin-top: 40px; max-width: 480px;
    font-size: 16px; line-height: 1.7; color: var(--muted2);
    font-family: var(--font-mono); font-weight: 300;
    opacity: 0; animation: fadeUp 0.8s 0.5s forwards;
  }

  .hero-actions {
    display: flex; align-items: center; gap: 24px; margin-top: 56px;
    opacity: 0; animation: fadeUp 0.8s 0.7s forwards;
  }

  .btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--accent); color: #000;
    padding: 16px 32px; border-radius: 4px;
    font-weight: 700; font-size: 14px; letter-spacing: 0.04em;
    text-decoration: none; transition: transform 0.2s, box-shadow 0.2s;
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(200,255,0,0.25); }

  .btn-ghost {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--muted2); font-size: 14px; text-decoration: none;
    border-bottom: 1px solid var(--border); padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
  }
  .btn-ghost:hover { color: var(--text); border-color: var(--muted2); }

  .hero-stats {
    display: flex; gap: 60px; margin-top: 80px;
    padding-top: 48px; border-top: 1px solid var(--border);
    opacity: 0; animation: fadeUp 0.8s 0.9s forwards;
  }
  .stat-num {
    font-size: 42px; font-weight: 800; color: var(--text); line-height: 1;
    letter-spacing: -0.03em;
  }
  .stat-num span { color: var(--accent); }
  .stat-label { font-size: 12px; color: var(--muted); margin-top: 6px; letter-spacing: 0.08em; text-transform: uppercase; font-family: var(--font-mono); }

  .hero-scroll {
    position: absolute; bottom: 40px; right: 60px;
    display: flex; align-items: center; gap: 12px;
    font-family: var(--font-mono); font-size: 11px; color: var(--muted);
    letter-spacing: 0.1em; text-transform: uppercase;
    animation: fadeIn 1s 1.2s both;
  }
  .scroll-line { width: 40px; height: 1px; background: var(--muted); }

  .section-header {
    display: flex; align-items: flex-end; justify-content: space-between;
    margin-bottom: 64px; padding-bottom: 32px; border-bottom: 1px solid var(--border);
  }
  .section-eyebrow {
    font-family: var(--font-mono); font-size: 11px; color: var(--accent);
    letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 12px;
  }
  .section-title { font-size: clamp(32px, 4vw, 52px); font-weight: 800; letter-spacing: -0.02em; line-height: 1; }

  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

  .about-img-wrap {
    position: relative; aspect-ratio: 4/5; max-height: 560px;
  }
  .about-img-inner {
    width: 100%; height: 100%;
    background: var(--surface);
    border-radius: 2px;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--border);
  }
  .about-monogram {
    font-size: 120px; font-weight: 800; color: var(--border);
    letter-spacing: -5px; user-select: none;
  }
  .about-img-badge {
    position: absolute; bottom: -20px; right: -20px;
    background: var(--accent); color: #000;
    padding: 16px 20px; border-radius: 2px;
    font-weight: 800; font-size: 13px;
    line-height: 1.2;
  }
  .about-img-badge span { display: block; font-size: 28px; line-height: 1; }

  .about-text p {
    color: var(--muted2); line-height: 1.8; margin-bottom: 20px;
    font-family: var(--font-mono); font-size: 14px; font-weight: 300;
  }

  .skill-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 36px; }
  .chip {
    padding: 7px 14px; border: 1px solid var(--border);
    border-radius: 2px; font-family: var(--font-mono);
    font-size: 12px; color: var(--muted2);
    transition: border-color 0.2s, color 0.2s;
  }
  .chip:hover { border-color: var(--accent); color: var(--accent); }

  /* ── PROJECTS ── */
  .projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }

  .project-card {
    background: var(--surface); border: 1px solid var(--border);
    padding: 40px; position: relative; overflow: hidden;
    transition: border-color 0.3s; cursor: none;
  }
  .project-card:first-child { grid-column: span 2; }
  .project-card::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(200,255,0,0.04), transparent);
    opacity: 0; transition: opacity 0.3s;
  }
  .project-card:hover { border-color: rgba(200,255,0,0.3); }
  .project-card:hover::before { opacity: 1; }

  /* live badge */
  .project-live-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(200,255,0,0.1); border: 1px solid rgba(200,255,0,0.25);
    color: var(--accent); font-family: var(--font-mono); font-size: 10px;
    font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase;
    padding: 4px 10px; border-radius: 2px; margin-bottom: 20px;
  }
  .live-dot {
    width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
    animation: pulse 1.6s ease-in-out infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.7); }
  }

  .project-num {
    font-family: var(--font-mono); font-size: 11px; color: var(--muted);
    letter-spacing: 0.1em; margin-bottom: 32px;
  }
  .project-tags { display: flex; gap: 8px; margin-bottom: 20px; flex-wrap: wrap; }
  .tag {
    font-family: var(--font-mono); font-size: 10px;
    background: rgba(200,255,0,0.08); color: var(--accent);
    padding: 4px 10px; border-radius: 2px; letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .tag.orange {
    background: rgba(255,107,53,0.1); color: var(--accent2);
  }
  .project-name {
    font-size: 24px; font-weight: 700; letter-spacing: -0.02em;
    margin-bottom: 12px; transition: color 0.2s;
  }
  .project-card:hover .project-name { color: var(--accent); }
  .project-desc {
    font-family: var(--font-mono); font-size: 13px; color: var(--muted2);
    line-height: 1.7; font-weight: 300;
  }
  .project-link {
    display: inline-flex; align-items: center; gap: 6px; margin-top: 32px;
    font-size: 12px; font-weight: 600; color: var(--muted2);
    letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none;
    transition: color 0.2s;
  }
  .project-card:hover .project-link { color: var(--accent); }
  .project-arrow { transition: transform 0.2s; }
  .project-card:hover .project-arrow { transform: translate(3px, -3px); }

  /* Mockup for ZyraPlanner */
  .project-mockup {
    width: 100%; aspect-ratio: 16/9; background: var(--bg);
    border-radius: 4px; margin-bottom: 32px;
    border: 1px solid var(--border); overflow: hidden;
    display: flex; align-items: flex-start; justify-content: flex-start;
    position: relative;
  }
  .mockup-bar {
    position: absolute; top: 0; left: 0; right: 0; height: 28px;
    background: rgba(30,30,30,0.9); display: flex; align-items: center; gap: 6px; padding: 0 12px;
  }
  .mockup-dot { width: 8px; height: 8px; border-radius: 50%; }

  /* ZyraPlanner custom mockup */
  .zyra-mockup-inner {
    margin-top: 28px; width: 100%; height: calc(100% - 28px);
    display: grid; grid-template-columns: 56px 1fr;
  }
  .zyra-sidebar {
    background: rgba(200,255,0,0.04);
    border-right: 1px solid var(--border);
    display: flex; flex-direction: column; align-items: center;
    padding: 10px 0; gap: 10px;
  }
  .zyra-icon {
    width: 26px; height: 26px; border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
  }
  .zyra-icon.active { background: rgba(200,255,0,0.15); }
  .zyra-icon-dot { width: 10px; height: 10px; border-radius: 2px; background: var(--border); }
  .zyra-icon.active .zyra-icon-dot { background: var(--accent); }
  .zyra-content { padding: 10px 14px; display: flex; flex-direction: column; gap: 8px; }
  .zyra-header-row { display: flex; align-items: center; justify-content: space-between; }
  .zyra-h { height: 7px; background: rgba(200,255,0,0.2); border-radius: 3px; }
  .zyra-sub { height: 5px; background: var(--border); border-radius: 3px; }
  .zyra-cards { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px; margin-top: 4px; }
  .zyra-card {
    background: rgba(255,255,255,0.03); border: 1px solid var(--border);
    border-radius: 4px; padding: 6px; display: flex; flex-direction: column; gap: 4px;
  }
  .zyra-card-accent { border-top: 2px solid var(--accent); }
  .zyra-card-orange { border-top: 2px solid var(--accent2); }
  .zyra-card-blue { border-top: 2px solid #4facfe; }
  .zyra-tag { height: 4px; border-radius: 2px; width: 40%; }
  .zyra-tag.g { background: rgba(200,255,0,0.3); }
  .zyra-tag.o { background: rgba(255,107,53,0.3); }
  .zyra-tag.b { background: rgba(79,172,254,0.3); }
  .zyra-line { height: 4px; background: var(--border); border-radius: 2px; }

  /* Pricing */
  .pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; align-items: start; }

  .pricing-card {
    background: var(--surface); border: 1px solid var(--border);
    padding: 48px 40px; position: relative; transition: transform 0.3s, border-color 0.3s;
  }
  .pricing-card:hover { transform: translateY(-6px); }
  .pricing-card.featured {
    border-color: var(--accent); background: #0f110a;
    transform: translateY(-12px);
  }
  .pricing-card.featured:hover { transform: translateY(-18px); }

  .pricing-badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--accent); color: #000;
    font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
    padding: 5px 16px; border-radius: 2px;
  }

  .pricing-name {
    font-size: 13px; font-weight: 600; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--muted2); margin-bottom: 20px;
    font-family: var(--font-mono);
  }
  .pricing-card.featured .pricing-name { color: var(--accent); }

  .pricing-price {
    font-size: 54px; font-weight: 800; line-height: 1; letter-spacing: -0.03em;
    margin-bottom: 4px;
  }
  .pricing-price sup { font-size: 24px; vertical-align: super; font-weight: 600; margin-right: 2px; }
  .pricing-period {
    font-family: var(--font-mono); font-size: 12px; color: var(--muted);
    margin-bottom: 40px;
  }

  .pricing-divider { height: 1px; background: var(--border); margin-bottom: 32px; }
  .pricing-card.featured .pricing-divider { background: rgba(200,255,0,0.2); }

  .pricing-features { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 40px; }
  .pricing-features li {
    display: flex; align-items: flex-start; gap: 12px;
    font-family: var(--font-mono); font-size: 13px; color: var(--muted2); font-weight: 300;
    line-height: 1.5;
  }
  .feat-check {
    width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px;
    background: rgba(200,255,0,0.1); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--accent); font-size: 9px; font-weight: 700;
  }
  .pricing-card.featured .pricing-features li { color: rgba(240,240,240,0.8); }

  .btn-pricing {
    display: block; text-align: center; text-decoration: none;
    padding: 14px; border-radius: 4px; font-weight: 700;
    font-size: 13px; letter-spacing: 0.05em; transition: all 0.2s;
    border: 1px solid var(--border); color: var(--muted2);
  }
  .btn-pricing:hover { border-color: var(--text); color: var(--text); }
  .pricing-card.featured .btn-pricing {
    background: var(--accent); color: #000; border-color: var(--accent);
  }
  .pricing-card.featured .btn-pricing:hover {
    background: #d4ff1a; box-shadow: 0 8px 30px rgba(200,255,0,0.3);
  }

  /* Contact */
  .contact-inner {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  }
  .contact-text { font-size: clamp(36px, 5vw, 72px); font-weight: 800; letter-spacing: -0.03em; line-height: 1; }
  .contact-text em { font-style: normal; color: var(--accent); }

  .contact-email-block {
    margin-top: 48px;
    display: flex; flex-direction: column; gap: 8px;
  }
  .contact-email-label {
    font-family: var(--font-mono); font-size: 11px; color: var(--muted);
    letter-spacing: 0.15em; text-transform: uppercase;
  }
  .contact-email-link {
    display: inline-flex; align-items: center; gap: 12px;
    font-family: var(--font-mono); font-size: 16px; font-weight: 400;
    color: var(--text); text-decoration: none;
    border-bottom: 1px solid var(--border); padding-bottom: 12px;
    transition: color 0.2s, border-color 0.2s;
  }
  .contact-email-link:hover { color: var(--accent); border-color: var(--accent); }

  .contact-links-row {
    display: flex; gap: 24px; margin-top: 32px;
  }
  .contact-social {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-mono); font-size: 12px; color: var(--muted2);
    text-decoration: none; transition: color 0.2s;
  }
  .contact-social:hover { color: var(--accent); }

  /* Right side info panel */
  .contact-panel {
    background: var(--surface); border: 1px solid var(--border);
    padding: 48px; border-radius: 2px; position: relative; overflow: hidden;
  }
  .contact-panel::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--accent), transparent);
  }
  .contact-panel-title {
    font-size: 22px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 8px;
  }
  .contact-panel-sub {
    font-family: var(--font-mono); font-size: 13px; color: var(--muted2); line-height: 1.7;
    font-weight: 300; margin-bottom: 40px;
  }
  .contact-details { display: flex; flex-direction: column; gap: 20px; }
  .contact-detail-row {
    display: flex; align-items: flex-start; gap: 16px;
    padding-bottom: 20px; border-bottom: 1px solid var(--border);
  }
  .contact-detail-row:last-child { border-bottom: none; padding-bottom: 0; }
  .detail-icon {
    width: 36px; height: 36px; flex-shrink: 0;
    background: rgba(200,255,0,0.06); border: 1px solid rgba(200,255,0,0.15);
    border-radius: 4px; display: flex; align-items: center; justify-content: center;
    color: var(--accent);
  }
  .detail-label {
    font-family: var(--font-mono); font-size: 10px; color: var(--muted);
    letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 4px;
  }
  .detail-value {
    font-family: var(--font-mono); font-size: 13px; color: var(--text); font-weight: 400;
  }
  .detail-value a {
    color: var(--text); text-decoration: none; transition: color 0.2s;
  }
  .detail-value a:hover { color: var(--accent); }

  .availability-badge {
    display: inline-flex; align-items: center; gap: 8px; margin-top: 32px;
    background: rgba(200,255,0,0.06); border: 1px solid rgba(200,255,0,0.2);
    padding: 10px 16px; border-radius: 4px;
    font-family: var(--font-mono); font-size: 12px; color: var(--accent);
    letter-spacing: 0.08em;
  }

  footer {
    border-top: 1px solid var(--border);
    padding: 40px 60px;
    display: flex; align-items: center; justify-content: space-between;
  }
  .footer-logo { font-size: 18px; font-weight: 800; letter-spacing: -0.5px; }
  .footer-logo span { color: var(--accent); }
  .footer-links { display: flex; gap: 32px; }
  .footer-links a { font-family: var(--font-mono); font-size: 12px; color: var(--muted); text-decoration: none; transition: color 0.2s; }
  .footer-links a:hover { color: var(--text); }
  .footer-copy { font-family: var(--font-mono); font-size: 11px; color: var(--muted); }

  .marquee-wrap {
    overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    padding: 20px 0; background: var(--surface);
  }
  .marquee {
    display: flex; gap: 0; width: max-content;
    animation: marquee 18s linear infinite;
  }
  .marquee-item {
    display: flex; align-items: center; gap: 32px;
    padding: 0 40px; font-size: 13px; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted);
    white-space: nowrap;
  }
  .marquee-sep { color: var(--accent); font-size: 18px; }

  @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  @keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
  @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

  .reveal {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible { opacity: 1; transform: none; }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }

  @media (max-width: 900px) {
    nav { padding: 20px 24px; }
    .nav-links { display: none; }
    section { padding: 80px 24px; }
    .hero-inner { padding: 0 24px; }
    .hero-stats { gap: 32px; flex-wrap: wrap; }
    .about-grid, .contact-inner { grid-template-columns: 1fr; gap: 48px; }
    .projects-grid { grid-template-columns: 1fr; }
    .project-card:first-child { grid-column: span 1; }
    .pricing-grid { grid-template-columns: 1fr; gap: 16px; }
    .pricing-card.featured { transform: none; }
    footer { flex-direction: column; gap: 24px; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; }
    body { cursor: auto; }
    .cursor, .cursor-ring { display: none; }
  }
</style>