    :root {
      /* Backgrounds */
      --bg-base: #080810;
      --bg-raised: #0f0f1c;
      --bg-overlay: #161628;

      /* Accent */
      --accent: #6ee7f7;
      --accent-muted: rgba(110, 231, 247, 0.10);
      --accent-border: rgba(110, 231, 247, 0.20);

      /* Text */
      --text-primary: #eeeef5;
      --text-secondary: #8888aa;
      --text-muted: #44445a;

      /* Semantic */
      --border: rgba(255, 255, 255, 0.06);
      --border-h: rgba(255, 255, 255, 0.12);
      --success: #4ade80;
      --warning: #fbbf24;

      /* Typography */
      --font-display: 'Bricolage Grotesque', sans-serif;
      --font-mono: 'DM Mono', monospace;

      --text-xs: clamp(11px, 1.1vw, 12px);
      --text-sm: clamp(13px, 1.3vw, 14px);
      --text-base: clamp(14px, 1.4vw, 16px);
      --text-lg: clamp(18px, 2vw, 22px);
      --text-xl: clamp(28px, 4vw, 42px);
      --text-2xl: clamp(48px, 8vw, 100px);

      --leading-tight: 1.1;
      --leading-body: 1.7;
      --leading-loose: 1.9;

      --tracking-hero: -0.04em;
      --tracking-label: 0.10em;
      --tracking-mono: 0.02em;
    }

    /* Reset & Base */
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      background-color: var(--bg-base);
      color: var(--text-primary);
      font-family: var(--font-mono);
      font-weight: 300;
      font-size: var(--text-base);
      line-height: var(--leading-body);
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
      position: relative;
    }

    body::before {
      content: "";
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      pointer-events: none;
      z-index: 9999;
      opacity: 0.03;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
      font-family: var(--font-display);
      line-height: var(--leading-tight);
      font-weight: 600;
      margin: 0;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    /* Accessibility */
    :focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 2px;
    }

    .skip-link {
      position: absolute;
      top: -40px;
      left: 0;
      background: var(--accent);
      color: var(--bg-base);
      padding: 8px 16px;
      z-index: 1000;
      transition: top 200ms;
      font-family: var(--font-mono);
      font-size: var(--text-sm);
    }

    .skip-link:focus {
      top: 0;
    }

    /* Layout */
    .container {
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 clamp(20px, 5vw, 48px);
    }

    section {
      padding: 60px 0;
    }

    /* Navigation */
    nav {
      position: fixed;
      top: 24px;
      left: 50%;
      transform: translateX(-50%);
      width: calc(100% - 48px);
      max-width: 800px;
      height: 60px;
      backdrop-filter: blur(24px) saturate(150%);
      -webkit-backdrop-filter: blur(24px) saturate(150%);
      background: rgba(15, 15, 28, 0.4);
      z-index: 100;
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 9999px;
      transition: all 400ms cubic-bezier(0.16, 1, 0.3, 1);
      box-shadow: 0 4px 24px -4px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    }

    nav.scrolled {
      background: rgba(15, 15, 28, 0.75);
      box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.05);
      border-color: rgba(255, 255, 255, 0.12);
      top: 16px;
      height: 52px;
      width: calc(100% - 32px);
      max-width: 760px;
    }

    .nav-inner {
      height: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 24px;
    }

    .logo {
      font-family: var(--font-display);
      color: var(--accent);
      font-weight: 700;
      font-size: var(--text-lg);
      letter-spacing: -0.02em;
    }

    .nav-links {
      display: flex;
      gap: 2rem;
    }

    .nav-link {
      font-family: var(--font-mono);
      font-size: var(--text-xs);
      letter-spacing: var(--tracking-label);
      text-transform: uppercase;
      color: var(--text-secondary);
      position: relative;
      transition: color 200ms ease;
    }

    .nav-link:hover {
      color: var(--text-primary);
    }

    .nav-link.active {
      color: var(--text-primary);
    }

    .nav-link.active::after {
      content: '';
      position: absolute;
      bottom: -6px;
      left: 50%;
      transform: translateX(-50%);
      width: 3px;
      height: 3px;
      background-color: var(--accent);
      border-radius: 50%;
    }

    .menu-toggle {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 6px;
      width: 48px;
      height: 48px;
      background: none;
      border: none;
      cursor: pointer;
      z-index: 101;
    }

    .menu-toggle .line {
      width: 24px;
      height: 1px;
      background: var(--text-primary);
      transition: transform 250ms ease, opacity 250ms ease;
    }

    .menu-toggle.open .line:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle.open .line:nth-child(2) {
      opacity: 0;
    }

    .menu-toggle.open .line:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    @media (max-width: 768px) {
      .menu-toggle {
        display: flex;
      }

      .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--bg-base);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        opacity: 0;
        pointer-events: none;
        transition: opacity 250ms ease;
      }

      .nav-links.open {
        opacity: 1;
        pointer-events: all;
      }

      .nav-link {
        font-size: var(--text-lg);
      }

      .nav-link.active::after {
        bottom: -10px;
        width: 4px;
        height: 4px;
      }
    }

    /* Hero */
    .hero {
      padding: 160px 0 60px;
      display: flex;
      align-items: center;
      position: relative;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(var(--border-h) 1px, transparent 0);
      background-size: 32px 32px;
      background-position: -16px -16px;
      pointer-events: none;
      z-index: 0;
    }

    .hero::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, transparent, var(--bg-base) 80%);
      pointer-events: none;
      z-index: 0;
    }

    .hero-inner {
      display: flex;
      width: 100%;
      position: relative;
      z-index: 1;
    }

    .hero-content {
      width: 70%;
    }

    .hero-visual {
      width: 30%;
      display: flex;
      justify-content: flex-end;
      align-items: center;
      position: relative;
    }

    @media (max-width: 1440px) {
      .hero-inner {
        flex-direction: column-reverse;
        gap: 40px;
        align-items: center;
      }

      .hero-visual {
        width: 100%;
        justify-content: center;
      }

      .hero-content {
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
      }
    }

    .eyebrow {
      color: var(--accent);
      font-family: var(--font-mono);
      font-size: var(--text-sm);
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 1.5rem;
    }

    .eyebrow .line {
      height: 1px;
      width: 0;
      background: var(--accent);
      animation: growLine 600ms ease forwards;
      animation-delay: 200ms;
    }

    @keyframes growLine {
      to {
        width: 40px;
      }
    }

    .hero h1 {
      font-size: var(--text-2xl);
      letter-spacing: var(--tracking-hero);
      margin-bottom: 0.5rem;
      color: var(--text-primary);
    }

    .hero h2 {
      font-size: var(--text-xl);
      color: var(--text-secondary);
      font-weight: 400;
      margin-bottom: 1.5rem;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .role-swap-wrapper {
      position: relative;
      overflow: hidden;
      display: inline-flex;
      vertical-align: bottom;
      padding-bottom: 0.1em;
    }

    .role-swap {
      display: inline-block;
      white-space: nowrap;
      transition: transform 400ms ease-out, clip-path 400ms ease-out;
      clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .role-swap.out {
      transform: translateY(-20px);
      clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    }

    .role-swap.prepare {
      transition: none;
      transform: translateY(20px);
      clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
    }

    .hero-body {
      font-size: var(--text-lg);
      color: var(--text-secondary);
      max-width: 600px;
      margin-bottom: 2rem;
    }

    .hero-cta {
      display: flex;
      gap: 16px;
    }

    .btn-primary,
    .btn-ghost {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0 24px;
      height: 48px;
      border-radius: 24px;
      font-family: var(--font-mono);
      font-size: var(--text-sm);
      transition: all 200ms ease;
    }

    .btn-primary {
      background: var(--text-primary);
      color: var(--bg-base);
    }

    .btn-primary:hover {
      background: var(--accent);
      transform: translateY(-2px);
    }

    .btn-ghost {
      border: 1px solid var(--border);
      color: var(--text-primary);
    }

    .btn-ghost:hover {
      border-color: var(--text-primary);
      transform: translateY(-2px);
    }

    .geo-shape {
      animation: rotateSlow 30s linear infinite;
    }

    @keyframes rotateSlow {
      from {
        transform: rotate(0deg);
      }

      to {
        transform: rotate(360deg);
      }
    }

    /* Staggered load */
    .fade-up {
      opacity: 0;
      transform: translateY(24px);
      animation: fadeUp 600ms ease forwards;
    }

    .fade-up:nth-child(1) {
      animation-delay: 100ms;
    }

    .fade-up:nth-child(2) {
      animation-delay: 200ms;
    }

    .fade-up:nth-child(3) {
      animation-delay: 300ms;
    }

    .fade-up:nth-child(4) {
      animation-delay: 400ms;
    }

    .fade-up:nth-child(5) {
      animation-delay: 500ms;
    }

    @keyframes fadeUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Work Section */
    .work-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
      gap: 20px;
    }

    @media (max-width: 480px) {
      .work-grid {
        grid-template-columns: 1fr;
      }
    }

    .card {
      background: var(--bg-raised);
      border: 1px solid var(--border);
      border-radius: 4px;
      padding: 32px;
      position: relative;
      display: flex;
      flex-direction: column;
      transition: all 200ms ease;
      overflow: hidden;
      cursor: pointer;
    }

    .card-link {
      position: absolute;
      inset: 0;
      z-index: 10;
    }

    .cta-icon {
      margin-left: 4px;
      transition: transform 200ms ease !important;
    }

    .card:hover .cta-icon {
      transform: translateX(4px) !important;
    }

    .card.featured {
      border: 1px solid var(--accent-border);
      background: radial-gradient(circle at top left, rgba(110, 231, 247, 0.05), transparent 60%), var(--bg-raised);
    }

    .card.featured::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--accent), transparent);
      z-index: 2;
    }

    .card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(110, 231, 247, 0.08), transparent 50%);
      opacity: 0;
      transition: opacity 200ms ease;
      pointer-events: none;
      z-index: 1;
    }

    .card:hover {
      border-color: var(--accent-border);
      transform: translateY(-4px);
      box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
    }

    .card:hover::before {
      opacity: 1;
    }

    .card-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-family: var(--font-mono);
      font-size: var(--text-xs);
      color: var(--text-muted);
      margin-bottom: 1.5rem;
      position: relative;
      z-index: 3;
    }

    .status {
      display: flex;
      align-items: center;
      gap: 6px;
      color: var(--text-secondary);
      text-transform: capitalize;
    }

    .status-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--text-muted);
    }

    .status.active .status-dot {
      background: var(--success);
    }

    .status.wip .status-dot {
      background: var(--warning);
    }

    .card-title {
      font-family: var(--font-display);
      font-size: var(--text-lg);
      color: var(--text-primary);
      margin-bottom: 0.5rem;
      position: relative;
      z-index: 3;
    }

    .card-desc {
      color: var(--text-secondary);
      font-size: var(--text-sm);
      margin-bottom: 1.5rem;
      flex-grow: 1;
      position: relative;
      z-index: 3;
    }

    .card-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 1.5rem;
      position: relative;
      z-index: 3;
    }

    .tag {
      font-family: var(--font-mono);
      font-size: var(--text-xs);
      color: var(--text-secondary);
      border: 1px solid var(--border);
      padding: 4px 8px;
      border-radius: 4px;
    }

    .card-cta {
      font-family: var(--font-mono);
      font-size: var(--text-sm);
      color: var(--accent);
      opacity: 0;
      transform: translateY(8px);
      transition: all 200ms ease;
      margin-top: auto;
      position: relative;
      z-index: 3;
    }

    .card:hover .card-cta {
      opacity: 1;
      transform: translateY(0);
    }

    /* Stack Section */
    .stack-section {
      padding: 40px 0;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      overflow: hidden;
    }

    .stack-scroll {
      display: flex;
      overflow-x: auto;
      scrollbar-width: none;
      mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
      -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    }

    .stack-scroll::-webkit-scrollbar {
      display: none;
    }

    .stack-track {
      display: flex;
      gap: 16px;
      padding: 0 20px;
      animation: scrollTrack 30s linear infinite;
    }

    .stack-scroll:hover .stack-track {
      animation-play-state: paused;
    }

    .chip {
      font-family: var(--font-mono);
      font-size: var(--text-sm);
      color: var(--text-primary);
      background: var(--bg-raised);
      border: 1px solid var(--border);
      padding: 8px 16px;
      border-radius: 20px;
      white-space: nowrap;
    }

    @keyframes scrollTrack {
      to {
        transform: translateX(-50%);
      }
    }

    /* About Section */
    .about-inner {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 60px;
    }

    @media (max-width: 1024px) {
      .about-inner {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 768px) {
      .about-inner {
        grid-template-columns: 1fr;
        gap: 40px;
      }
    }

    .pull-quote {
      font-family: var(--font-display);
      font-size: var(--text-xl);
      color: var(--text-primary);
      letter-spacing: var(--tracking-hero);
      margin-bottom: 1.5rem;
      line-height: var(--leading-tight);
    }

    .about-body {
      color: var(--text-secondary);
      max-width: 500px;
    }

    .fact-list {
      list-style: none;
      padding: 0 0 0 24px;
      margin: 0;
      border-left: 1px solid var(--accent);
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .fact-list li {
      display: flex;
      flex-direction: column;
      font-family: var(--font-mono);
    }

    .fact-label {
      font-size: var(--text-xs);
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: var(--tracking-label);
      margin-bottom: 4px;
    }

    .fact-val {
      font-size: var(--text-base);
      color: var(--text-primary);
    }

    /* Contact Section */
    .contact-section {
      padding: 120px 0;
      text-align: center;
    }

    .contact-inner {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .contact-title {
      font-family: var(--font-display);
      font-size: var(--text-2xl);
      color: var(--text-primary);
      margin-bottom: 1rem;
      letter-spacing: var(--tracking-hero);
    }

    .contact-sub {
      color: var(--text-secondary);
      margin-bottom: 3rem;
      max-width: 400px;
    }

    .email-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 16px 48px;
      border: 1px solid var(--border);
      border-radius: 9999px;
      background: transparent;
      color: var(--text-primary);
      font-family: var(--font-mono);
      font-size: var(--text-base);
      text-decoration: none;
      position: relative;
      overflow: hidden;
      margin-bottom: 3rem;
      transition: border-color 300ms ease;
    }

    .email-btn::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: var(--accent);
      clip-path: circle(0% at 50% 50%);
      transition: clip-path 300ms ease;
      z-index: 1;
    }

    .email-btn:hover {
      border-color: var(--accent);
    }

    .email-btn:hover::after {
      clip-path: circle(150% at 50% 50%);
    }

    .email-text {
      position: relative;
      z-index: 2;
      transition: color 300ms ease;
    }

    .email-btn:hover .email-text {
      color: var(--bg-base);
    }

    .social-row {
      display: flex;
      gap: 16px;
      align-items: center;
      font-family: var(--font-mono);
      font-size: var(--text-sm);
    }

    .social-row a {
      color: var(--text-secondary);
      transition: color 200ms ease;
    }

    .social-row a:hover {
      color: var(--text-primary);
    }

    .social-row .dot {
      color: var(--text-muted);
    }

    /* Footer */
    .footer {
      padding: 32px 0;
      border-top: none;
    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
      font-family: var(--font-mono);
      font-size: var(--text-xs);
      color: var(--text-muted);
    }

    /* Scroll reveal */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 500ms ease, transform 500ms ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Images */
    .hero-aura {
      position: absolute;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, var(--accent-muted) 0%, transparent 70%);
      filter: blur(40px);
      z-index: 0;
      animation: pulseAura 8s ease-in-out infinite;
    }

    @keyframes pulseAura {

      0%,
      100% {
        transform: scale(1);
        opacity: 0.5;
      }

      50% {
        transform: scale(1.2);
        opacity: 0.8;
      }
    }

    .hero-image-wrapper {
      width: 100%;
      max-width: 440px;
      aspect-ratio: 1 / 1;
      position: relative;
      z-index: 1;
      animation: floatBreath 12s ease-in-out infinite;
    }

    @keyframes floatBreath {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-20px);
      }
    }

    .hero-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      mix-blend-mode: screen;
      mask-image: radial-gradient(circle at center, black 40%, transparent 70%);
      -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 70%);
      opacity: 0.85;
      filter: grayscale(15%) contrast(1.0);
      transform: scale(1) rotate(0deg);
      transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1), filter 600ms ease, opacity 600ms ease;
      transform-origin: center center;
    }

    .hero-image-wrapper:hover .hero-img {
      opacity: 1;
      filter: grayscale(0%) contrast(1.15) brightness(1.1);
      transform: scale(1.06) rotate(90deg);
      transition: transform 30s linear, filter 600ms ease, opacity 600ms ease;
    }

    .editorial-layout {
      grid-template-columns: 1fr 1fr;
      align-items: center;
    }

    .about-text-col {
      display: flex;
      flex-direction: column;
    }

    .about-visual-col {
      display: flex;
      justify-content: flex-end;
    }

    .about-img-wrapper {
      width: 100%;
      max-width: 480px;
      aspect-ratio: 4 / 5;
    }

    .about-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      mix-blend-mode: lighten;
      mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
      -webkit-mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
      filter: grayscale(20%) contrast(1.1);
      opacity: 0.7;
      transition: filter 1s ease, opacity 1s ease;
    }

    .about-img-wrapper:hover .about-img {
      filter: grayscale(0%) contrast(1.2);
      opacity: 0.95;
    }

    /* Accessibility / Reduced Motion */
    @media (prefers-reduced-motion: reduce) {

      *,
      *::before,
      *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
      }

      .reveal {
        opacity: 1;
        transform: none;
      }
    }