/* RESET & VARIABLES */
    :root {
      --void:       #000000;
      --bone:       #ffffff;
      --ash:        #a1a1a1;
      --graphite:   #262626;
      --carbon:     #111111;
      --lilac-haze: #f4f0ff;
      --grad-iri:   linear-gradient(135deg, #d1aad7 0%, #bbdef2 50%, #f4f0ff 100%);
      --shadow-glass: rgba(255,255,255,0.10) 0px 1px 1px 0px inset;
      --r-pill:  9999px;
      --r-card:  16px;
      --r-img:   8px;
      --page-max: 1200px;
      --font-d:  'Reddit Sans Condensed', sans-serif;
      --font-b:  'DM Sans', system-ui, sans-serif;
      --font-m:  'DM Sans', system-ui, sans-serif;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    
/* BASE */
html { scroll-behavior: smooth; }

    body {
      font-family: var(--font-b);
      font-weight: 400;
      background: var(--void);
      color: var(--bone);
      -webkit-font-smoothing: antialiased;
    }


    /* ════ NAV ════ */
    
/* HEADER */
.nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      background: rgba(0,0,0,0.76);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      box-shadow: var(--shadow-glass);
    }

    .nav::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.07) 20%, rgba(255,255,255,0.07) 80%, transparent 100%);
    }

    .nav-inner {
      max-width: var(--page-max);
      margin: 0 auto;
      padding: 0 40px;
      height: 60px;
      display: flex;
      align-items: center;
    }

    .nav-logo {
      font-family: 'Reddit Sans Condensed', sans-serif;
      font-size: 22px;
      font-weight: 900;
      color: var(--bone);
      letter-spacing: -0.02em;
      text-decoration: none;
      margin-right: auto;
    }

    .nav-links {
      display: flex;
      gap: 36px;
      list-style: none;
      margin: 0 44px;
    }

    .nav-links a {
      font-size: 13px;
      color: var(--ash);
      text-decoration: none;
      transition: color 0.2s;
      letter-spacing: 0.01em;
    }
    .nav-links a:hover { color: var(--bone); }

    .btn-solid {
      display: inline-flex; align-items: center; gap: 6px;
      color: var(--bone); border: none; border-radius: var(--r-pill);
      padding: 12px 28px; font-size: 14px; font-weight: 500;
      font-family: var(--font-b); text-decoration: none; cursor: pointer;
      background: #000;
    }
    .btn-solid::before, .btn-solid::after { display: none; }

    
/* BUTTONS */
.btn-pill {
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--bone);
      border: none;
      border-radius: var(--r-pill);
      padding: 12px 28px;
      font-size: 14px;
      font-weight: 500;
      font-family: var(--font-b);
      text-decoration: none;
      cursor: pointer;
      background: transparent;
      z-index: 0;
    }
    .btn-pill::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: var(--r-pill);
      box-shadow:
        0 0 8px rgba(0,0,0,0.03),
        0 2px 6px rgba(0,0,0,0.08),
        inset 3px 3px 0.5px -3.5px rgba(255,255,255,0.09),
        inset -3px -3px 0.5px -3.5px rgba(255,255,255,0.85),
        inset 1px 1px 1px -0.5px rgba(255,255,255,0.6),
        inset -1px -1px 1px -0.5px rgba(255,255,255,0.6),
        inset 0 0 6px 6px rgba(255,255,255,0.12),
        inset 0 0 2px 2px rgba(255,255,255,0.06),
        0 0 12px rgba(0,0,0,0.15);
      transition: box-shadow 0.3s ease;
      z-index: -1;
    }
    .btn-pill::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: var(--r-pill);
      -webkit-backdrop-filter: url('#liquid-glass-filter') blur(2px);
      backdrop-filter: url('#liquid-glass-filter') blur(2px);
      z-index: -1;
    }
    .btn-pill:hover::before {
      box-shadow:
        0 0 8px rgba(0,0,0,0.03),
        0 2px 6px rgba(0,0,0,0.12),
        inset 3px 3px 0.5px -3.5px rgba(255,255,255,0.15),
        inset -3px -3px 0.5px -3.5px rgba(255,255,255,0.95),
        inset 1px 1px 1px -0.5px rgba(255,255,255,0.75),
        inset -1px -1px 1px -0.5px rgba(255,255,255,0.75),
        inset 0 0 6px 6px rgba(255,255,255,0.18),
        inset 0 0 2px 2px rgba(255,255,255,0.1),
        0 0 20px rgba(255,255,255,0.08);
    }

    .btn-text-link {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 14px;
      font-weight: 500;
      color: var(--bone);
      text-decoration: none;
      transition: color 0.2s;
    }
    .btn-text-link:hover { color: var(--ash); }


    /* ════ EYEBROW ════ */
    .eyebrow {
      display: block;
      font-family: var(--font-m);
      font-size: 12px;
      color: var(--ash);
      letter-spacing: 0.083em;
      margin-bottom: 24px;
    }


    /* ════ SCROLL REVEAL ════ */
    
/* ANIMATIONS */
.reveal {
      opacity: 0;
      transform: translateY(14px);
      transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                  transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .rd-1 { transition-delay: 0.08s; }
    .rd-2 { transition-delay: 0.16s; }
    .rd-3 { transition-delay: 0.24s; }
    .rd-4 { transition-delay: 0.32s; }


    /* ════ SHARED SECTION ════ */
    .section {
      max-width: var(--page-max);
      margin: 0 auto;
      padding: 120px 40px;
    }

    .section__header { margin-bottom: 64px; }
    .section__header.centered { text-align: center; }

    .display {
      font-family: var(--font-d);
      font-size: clamp(42px, 5.2vw, 72px);
      font-weight: 900;
      line-height: 1.05;
      letter-spacing: -0.01em;
      color: var(--bone);
      margin-bottom: 20px;
    }

    .body-muted {
      font-size: 16px;
      line-height: 1.65;
      color: var(--ash);
    }

    .body-muted-lg {
      font-size: 18px;
      line-height: 1.56;
      color: var(--ash);
      max-width: 520px;
    }

    hr.divider {
      border: none;
      border-top: 1px solid var(--graphite);
    }


    /* ════ HERO ════ */
    
/* HERO */
.hero {
      min-height: 100vh;
      background: var(--void);
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
    }

    .hero__video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      -webkit-media-controls: none;
    }
    .hero__video::-webkit-media-controls { display: none !important; }
    .hero__video::-webkit-media-controls-panel { display: none !important; }
    .hero__video::-webkit-media-controls-play-button { display: none !important; }
    .hero__video::-webkit-media-controls-start-playback-button { display: none !important; }

    .hero__overlay {
      position: absolute;
      inset: 0;
      z-index: 1;
      background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.40) 0%,
        rgba(0,0,0,0.22) 42%,
        rgba(0,0,0,0.58) 100%
      );
    }

    .hero__content {
      position: relative;
      z-index: 2;
      padding: 0 32px;
      width: 100%;
    }

    .hero__title {
      font-family: 'Reddit Sans Condensed', sans-serif;
      font-weight: 900;
      font-size: clamp(100px, 18.5vw, 240px);
      line-height: 0.88;
      letter-spacing: -0.04em;
      color: #ffffff;
      font-feature-settings: "cpsp", "liga" 0;
      display: block;
      margin-bottom: 28px;
      opacity: 0;
      animation: heroRise 1s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
    }

    .hero__subtitle {
      font-family: var(--font-m);
      font-size: 11px;
      color: rgba(255,255,255,0.40);
      letter-spacing: 0.14em;
      margin-bottom: 40px;
      opacity: 0;
      animation: heroFade 0.8s ease 0.9s forwards;
    }

    .hero__actions {
      display: flex;
      align-items: center;
      gap: 24px;
      justify-content: center;
      opacity: 0;
      animation: heroFade 0.8s ease 1.2s forwards;
    }

    @keyframes heroRise {
      from { opacity: 0; transform: translateY(44px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes heroFade {
      from { opacity: 0; }
      to   { opacity: 1; }
    }


    /* ════ INTRO STRIP ════ */
    
/* INTRO */
.intro {
      border-top: 1px solid var(--graphite);
      border-bottom: 1px solid var(--graphite);
    }

    .intro .section {
      padding-top: 72px;
      padding-bottom: 72px;
    }

    .intro__text {
      font-size: 22px;
      font-weight: 300;
      line-height: 1.55;
      letter-spacing: -0.01em;
      color: var(--ash);
      max-width: 680px;
    }
    .intro__text strong { color: var(--bone); font-weight: 400; }


    /* ════ PROBLEMS ════ */
    
/* PROBLEMS */
.problems__list {
      border-top: 1px solid var(--graphite);
    }

    .problems__item {
      position: relative;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0 80px;
      padding: 52px 0;
      border-bottom: 1px solid var(--graphite);
      overflow: hidden;
      transition: background 0.4s ease;
    }
    .problems__item::before {
      content: '';
      position: absolute;
      left: 0; top: 0; bottom: 0;
      width: 2px;
      background: linear-gradient(135deg, #d1aad7 0%, #bbdef2 50%, #f4f0ff 100%);
      opacity: 0;
      transition: opacity 0.35s ease;
    }
    .problems__item:hover { background: rgba(255,255,255,0.018); }
    .problems__item:hover::before { opacity: 1; }
    .problems__item:hover .problems__ghost { opacity: 0.09; }

    .problems__ghost {
      position: absolute;
      left: -6px;
      top: 50%;
      transform: translateY(-50%);
      font-family: 'Reddit Sans Condensed', sans-serif;
      font-size: clamp(7rem, 17vw, 16rem);
      font-weight: 900;
      color: var(--bone);
      opacity: 0.045;
      line-height: 1;
      letter-spacing: -0.04em;
      pointer-events: none;
      user-select: none;
      z-index: 0;
      transition: opacity 0.4s ease;
    }

    .problems__col-left {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding-left: 24px;
    }

    .problems__col-right {
      position: relative;
      z-index: 1;
      display: flex;
      align-items: center;
    }

    .problem-x {
      display: block;
      font-family: var(--font-m);
      font-size: 10px;
      color: var(--ash);
      letter-spacing: 0.12em;
      margin-bottom: 12px;
    }

    .problems__title {
      font-family: 'Reddit Sans Condensed', sans-serif;
      font-size: clamp(1.8rem, 3.2vw, 3rem);
      font-weight: 900;
      color: var(--bone);
      letter-spacing: -0.02em;
      line-height: 1.05;
      margin-bottom: 0;
    }

    .problems__desc {
      font-size: 15px;
      line-height: 1.6;
      color: var(--ash);
    }


    /* ════ MANIFESTO ════ */
    
/* MANIFESTO */
.manifesto {
      background: var(--void);
      padding: 140px 40px;
      border-top: 1px solid var(--graphite);
      border-bottom: 1px solid var(--graphite);
    }

    .manifesto__layout {
      max-width: var(--page-max);
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .manifesto__inner { }

    .manifesto__title {
      font-family: 'Reddit Sans Condensed', sans-serif;
      font-size: clamp(48px, 6.5vw, 88px);
      font-weight: 900;
      line-height: 0.97;
      letter-spacing: -0.02em;
      color: var(--bone);
      margin-bottom: 32px;
    }

    .manifesto__stat {
      display: flex;
      align-items: baseline;
      gap: 12px;
      margin-bottom: 20px;
    }
    .manifesto__stat-num {
      font-family: 'Reddit Sans Condensed', sans-serif;
      font-size: clamp(3rem, 5vw, 5rem);
      font-weight: 900;
      color: var(--bone);
      line-height: 1;
      letter-spacing: -0.03em;
    }
    .manifesto__stat-label {
      font-family: var(--font-m);
      font-size: 11px;
      color: var(--ash);
      letter-spacing: 0.1em;
    }

    .manifesto__body {
      font-size: 15px;
      color: var(--ash);
      line-height: 1.7;
      max-width: 420px;
    }

    .manifesto__visual {
      display: flex;
      justify-content: center;
      align-items: center;
    }

    /* ── Asterisk visual ── */
    .manifesto__asterisk {
      position: relative;
      width: 420px;
      height: 420px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .manifesto__glow {
      position: absolute;
      inset: 80px;
      border-radius: 50%;
      background: radial-gradient(ellipse at center, rgba(200,210,220,0.18) 0%, transparent 70%);
      filter: blur(32px);
      animation: asteriskPulse 5s ease-in-out infinite;
    }
    @keyframes asteriskPulse {
      0%,100% { opacity: 0.6; transform: scale(0.95); }
      50%      { opacity: 1;   transform: scale(1.1);  }
    }
    .manifesto__img {
      position: relative;
      width: 560px;
      height: 560px;
      object-fit: contain;
      animation: asteriskSpin 22s linear infinite;
      filter: drop-shadow(0 0 40px rgba(180,195,210,0.15));
      z-index: 1;
    }
    @keyframes asteriskSpin {
      from { transform: rotate(0deg); }
      to   { transform: rotate(360deg); }
    }


    /* ════ TRANSFORMATION ════ */
    
/* RESULTS */
.results__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .results__card {
      position: relative;
      background: var(--carbon);
      border: 1px solid var(--graphite);
      border-radius: var(--r-card);
      padding: 40px 36px 44px;
      display: flex;
      flex-direction: column;
      overflow: hidden;
      transition: background 0.35s ease, border-color 0.35s ease;
    }
    .results__card:hover {
      background: rgba(255,255,255,0.03);
      border-color: rgba(255,255,255,0.1);
    }
    .results__card:hover .results__icon {
      transform: scale(1.06) rotate(-4deg);
    }

    .results__icon {
      width: 160px;
      height: 160px;
      object-fit: contain;
      display: block;
      margin-bottom: 32px;
      mix-blend-mode: screen;
      transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .results__num {
      display: block;
      font-family: var(--font-m);
      font-size: 10px;
      color: var(--ash);
      letter-spacing: 0.12em;
      margin-bottom: 14px;
    }

    .results__title {
      font-family: 'Reddit Sans Condensed', sans-serif;
      font-size: clamp(1.9rem, 2.8vw, 2.8rem);
      font-weight: 900;
      letter-spacing: -0.02em;
      color: var(--bone);
      line-height: 1.05;
      margin-bottom: 16px;
    }

    .results__desc {
      font-size: 14px;
      line-height: 1.65;
      color: var(--ash);
    }


    /* ════ PORTFOLIO — MASONRY GALLERY ════ */

    /* Two-column masonry: images in natural proportions, right col offset */
    
/* PORTFOLIO */
.portfolio__grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
    }

    /* ── Card ── */
    .portfolio__card {
      position: relative;
      overflow: hidden;
      cursor: pointer;
      border-radius: 4px;
      height: 320px;
    }

    .portfolio__card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
      transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .portfolio__card:hover img { transform: scale(1.04); }

    /* Gradient overlay — fades in on hover */
    .portfolio__overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to top,
        rgba(0,0,0,0.78) 0%,
        rgba(0,0,0,0.18) 50%,
        transparent 75%
      );
      opacity: 0;
      transition: opacity 0.42s ease;
      display: flex;
      align-items: flex-end;
      padding: 24px 26px 30px;
      pointer-events: none;
    }
    .portfolio__card:hover .portfolio__overlay { opacity: 1; }

    .portfolio__meta {
      transform: translateY(10px);
      transition: transform 0.42s cubic-bezier(0.22,1,0.36,1);
    }
    .portfolio__card:hover .portfolio__meta { transform: translateY(0); }

    .portfolio__tag {
      display: block;
      font-family: var(--font-m);
      font-size: 10px;
      letter-spacing: 0.09em;
      color: rgba(255,255,255,0.5);
      margin-bottom: 5px;
    }
    .portfolio__name {
      font-family: 'Reddit Sans Condensed', sans-serif;
      font-size: clamp(22px, 2.4vw, 32px);
      font-weight: 900;
      letter-spacing: -0.02em;
      color: #fff;
      line-height: 1.1;
    }

    /* Iridescent accent line on hover */
    .portfolio__card::after {
      content: '';
      position: absolute;
      inset: 0;
      border-top: 2px solid transparent;
      border-image: linear-gradient(90deg, transparent 0%, #d1aad7 30%, #bbdef2 70%, transparent 100%) 1;
      opacity: 0;
      transition: opacity 0.42s ease;
      pointer-events: none;
    }
    .portfolio__card:hover::after { opacity: 1; }

    /* Index counter top-right */
    .portfolio__idx {
      position: absolute;
      top: 16px; right: 18px;
      font-family: var(--font-m);
      font-size: 10px;
      letter-spacing: 0.1em;
      color: rgba(255,255,255,0.28);
      opacity: 0;
      transition: opacity 0.3s;
      z-index: 2;
    }
    .portfolio__card:hover .portfolio__idx { opacity: 1; }


    .portfolio__item {
      display: flex;
      flex-direction: column;
    }

    .portfolio__caption {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 4px 0;
    }
    .portfolio__num {
      font-family: var(--font-m);
      font-size: 10px;
      color: rgba(255,255,255,0.18);
      letter-spacing: 0.1em;
      flex-shrink: 0;
    }
    .portfolio__name {
      font-family: 'Reddit Sans Condensed', sans-serif;
      font-size: 17px;
      font-weight: 900;
      color: var(--bone);
      letter-spacing: -0.01em;
      flex: 1;
    }
    .portfolio__tag {
      font-family: var(--font-m);
      font-size: 9px;
      color: var(--ash);
      letter-spacing: 0.1em;
      flex-shrink: 0;
    }

    .portfolio__cta {
      display: flex;
      justify-content: center;
      margin-top: 56px;
    }

    /* ════ SERVICES ════ */
    
/* SERVICES */
.services__list {
      border-top: 1px solid var(--graphite);
    }

    .services__item {
      position: relative;
      display: grid;
      grid-template-columns: 1fr;
      align-items: start;
      padding: 48px 0 48px 24px;
      border-bottom: 1px solid var(--graphite);
      overflow: hidden;
      transition: background 0.4s ease;
    }
    .services__item::before {
      content: '';
      position: absolute;
      left: 0; top: 0; bottom: 0; width: 2px;
      background: linear-gradient(135deg, #d1aad7 0%, #bbdef2 50%, #f4f0ff 100%);
      opacity: 0;
      transition: opacity 0.35s ease;
    }
    .services__item:last-child { border-bottom: none; }
    .services__item:hover { background: rgba(255,255,255,0.018); }
    .services__item:hover::before { opacity: 1; }

    .services__num {
      font-family: var(--font-m);
      font-size: 11px;
      color: var(--ash);
      letter-spacing: 0.1em;
      padding-top: 10px;
    }

    .services__title {
      font-family: 'Reddit Sans Condensed', sans-serif;
      font-size: clamp(2rem, 3.8vw, 3.8rem);
      font-weight: 900;
      letter-spacing: -0.02em;
      color: var(--bone);
      line-height: 1.0;
      margin-bottom: 14px;
    }

    .services__desc {
      font-size: 14px;
      line-height: 1.65;
      color: var(--ash);
      max-width: 520px;
      margin-bottom: 22px;
    }

    .services__chips {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .services__chip {
      font-family: var(--font-m);
      font-size: 10px;
      letter-spacing: 0.02em;
      color: var(--ash);
      border: 1px solid var(--graphite);
      border-radius: 100px;
      padding: 5px 13px;
      transition: border-color 0.3s ease, color 0.3s ease;
    }
    .services__item:hover .services__chip {
      border-color: rgba(255,255,255,0.15);
      color: rgba(255,255,255,0.55);
    }


    /* ════ PROCESS ════ */
    
/* PROCESS */
.process__grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      border-top: 1px solid var(--graphite);
    }

    .process__step {
      position: relative;
      padding: 44px 32px 48px;
      border-right: 1px solid var(--graphite);
      overflow: hidden;
      transition: background 0.4s ease;
    }
    .process__step:last-child { border-right: none; }
    .process__step:hover { background: rgba(255,255,255,0.018); }
    .process__step:hover .process__ghost { opacity: 0.09; }

    .process__ghost {
      position: absolute;
      right: -8px; bottom: -16px;
      font-family: 'Reddit Sans Condensed', sans-serif;
      font-size: clamp(6rem, 11vw, 10rem);
      font-weight: 900;
      color: var(--bone);
      opacity: 0.04;
      line-height: 1;
      letter-spacing: -0.04em;
      pointer-events: none;
      user-select: none;
      transition: opacity 0.4s ease;
    }

    .process__num {
      display: block;
      font-family: var(--font-m);
      font-size: 10px;
      color: var(--ash);
      letter-spacing: 0.1em;
      margin-bottom: 36px;
    }

    .process__title {
      font-family: 'Reddit Sans Condensed', sans-serif;
      font-size: clamp(1.5rem, 2vw, 2.2rem);
      font-weight: 900;
      letter-spacing: -0.02em;
      color: var(--bone);
      margin-bottom: 12px;
      line-height: 1.0;
    }

    .process__desc {
      font-size: 13px;
      line-height: 1.65;
      color: var(--ash);
      margin-bottom: 28px;
    }

    .process__arrow {
      width: 52px;
      height: 52px;
      object-fit: contain;
      mix-blend-mode: screen;
      opacity: 0.6;
      display: block;
      margin-bottom: 32px;
      transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
    }
    .process__step:hover .process__arrow {
      opacity: 1;
      transform: translateX(5px);
    }


    /* ════ ABOUT ════ */
    
/* ABOUT */
.about__layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .about__photo {
      width: 100%;
      border-radius: var(--r-card);
      display: block;
    }

    .about__text {
      font-size: 18px;
      font-weight: 300;
      line-height: 1.6;
      letter-spacing: -0.005em;
      color: var(--ash);
    }
    .about__text + .about__text { margin-top: 20px; }
    .about__text strong { color: var(--bone); font-weight: 400; }


    /* ════ TESTIMONIAL ════ */
    .testimonial-card {
      background: var(--carbon);
      border-radius: var(--r-card);
      padding: 48px 56px;
      max-width: 720px;
      margin: 0 auto;
      text-align: center;
      box-shadow: var(--shadow-glass);
    }

    .testimonial-quote {
      font-size: 20px;
      font-weight: 300;
      color: var(--bone);
      line-height: 1.55;
      letter-spacing: -0.01em;
      margin-bottom: 32px;
    }

    .testimonial-name {
      font-size: 14px;
      font-weight: 500;
      color: var(--bone);
      margin-bottom: 2px;
    }

    .testimonial-role {
      font-size: 14px;
      color: var(--ash);
    }


    /* ════ QUIZ ════ */
    
/* QUIZ */
.quiz__card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.13);
      border-radius: 20px;
      padding: 56px 64px;
      max-width: 900px;
      margin: 0 auto;
      position: relative;
      overflow: hidden;
      backdrop-filter: blur(40px) saturate(1.4);
      -webkit-backdrop-filter: blur(40px) saturate(1.4);
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.14),
        inset 0 -1px 0 rgba(0,0,0,0.18),
        0 24px 60px rgba(0,0,0,0.4),
        0 0 0 0.5px rgba(255,255,255,0.07);
    }
    .quiz__card::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 20px;
      padding: 1px;
      background: linear-gradient(135deg, rgba(209,170,215,0.22) 0%, transparent 50%, rgba(187,222,242,0.15) 100%);
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      pointer-events: none;
    }

    .quiz__head {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-bottom: 44px;
    }
    .quiz__dots {
      flex: 1;
      display: flex;
      gap: 6px;
      align-items: center;
    }
    .quiz__dot {
      height: 3px;
      flex: 1;
      border-radius: 99px;
      background: var(--graphite);
      opacity: 0.35;
      transition: background 0.45s cubic-bezier(0.22,1,0.36,1), flex 0.45s cubic-bezier(0.22,1,0.36,1), opacity 0.35s ease;
    }
    .quiz__dot.done {
      background: rgba(255,255,255,0.28);
      opacity: 1;
      flex: 1;
    }
    .quiz__dot.active {
      background: linear-gradient(90deg, #d1aad7, #bbdef2);
      flex: 2.2;
      opacity: 1;
    }
    .quiz__counter {
      font-family: var(--font-m);
      font-size: 11px;
      color: var(--ash);
      letter-spacing: 0.1em;
      white-space: nowrap;
      flex-shrink: 0;
    }

    .quiz__step { display: none; }
    .quiz__step.active {
      display: block;
      animation: qIn 0.38s cubic-bezier(0.22,1,0.36,1) forwards;
    }
    @keyframes qIn {
      from { opacity: 0; transform: translateX(18px); }
      to   { opacity: 1; transform: translateX(0); }
    }

    .quiz__question {
      font-family: 'Reddit Sans Condensed', sans-serif;
      font-size: clamp(1.55rem, 2.6vw, 2.15rem);
      font-weight: 900;
      color: var(--bone);
      letter-spacing: -0.02em;
      line-height: 1.15;
      margin-bottom: 32px;
    }

    .quiz__options {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      margin-bottom: 36px;
    }
    .quiz__option {
      padding: 18px 22px;
      background: var(--void);
      border: 1px solid var(--graphite);
      border-radius: 12px;
      cursor: pointer;
      color: var(--ash);
      font-size: 14px;
      font-weight: 300;
      font-family: var(--font-b);
      line-height: 1.4;
      text-align: left;
      transition: border-color 0.22s, background 0.22s, color 0.22s;
      display: flex;
      align-items: flex-start;
      gap: 10px;
      user-select: none;
    }
    .quiz__option:hover { border-color: rgba(255,255,255,0.2); color: var(--bone); background: #181818; }
    .quiz__option.sel  { border-color: rgba(209,170,215,0.6); background: rgba(209,170,215,0.08); color: var(--bone); }

    .quiz__nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .quiz__btn-back {
      font-family: var(--font-m);
      font-size: 11px;
      letter-spacing: 0.08em;
      color: var(--ash);
      background: none;
      border: none;
      cursor: pointer;
      padding: 0;
      transition: color 0.18s;
    }
    .quiz__btn-back:hover { color: var(--bone); }
    .quiz__btn-back:disabled { opacity: 0; pointer-events: none; }
    .quiz__btn-next {
      background: var(--bone);
      color: var(--void);
      border: none;
      border-radius: var(--r-pill);
      padding: 13px 30px;
      font-size: 13px;
      font-weight: 500;
      cursor: pointer;
      font-family: var(--font-b);
      transition: opacity 0.18s, transform 0.18s;
    }
    .quiz__btn-next:hover { opacity: 0.88; transform: translateY(-1px); }
    .quiz__btn-next:disabled { opacity: 0.28; cursor: default; transform: none; }

    /* Result step */
    .quiz__result-label {
      font-family: var(--font-m);
      font-size: 10px;
      letter-spacing: 0.1em;
      color: var(--ash);
      display: block;
      margin-bottom: 10px;
    }
    .quiz__result-title {
      font-family: 'Reddit Sans Condensed', sans-serif;
      font-size: clamp(2rem, 3.5vw, 3.2rem);
      font-weight: 900;
      letter-spacing: -0.03em;
      color: var(--bone);
      line-height: 1.05;
      margin-bottom: 16px;
    }
    .quiz__result-desc {
      font-size: 14px;
      color: var(--ash);
      line-height: 1.65;
      margin-bottom: 28px;
    }
    .quiz__result-chips {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 36px;
    }
    .quiz__chip {
      background: var(--void);
      border: 1px solid var(--graphite);
      border-radius: var(--r-pill);
      padding: 8px 18px;
      display: flex;
      flex-direction: column;
      gap: 2px;
    }
    .quiz__chip-label {
      font-family: var(--font-m);
      font-size: 9px;
      letter-spacing: 0.09em;
      color: var(--ash);
    }
    .quiz__chip-val {
      font-size: 15px;
      font-weight: 300;
      color: var(--bone);
      letter-spacing: -0.01em;
    }
    .quiz__contact {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-bottom: 12px;
    }
    .quiz__submit {
      width: 100%;
      background: var(--bone);
      color: var(--void);
      border: none;
      border-radius: var(--r-pill);
      padding: 15px 32px;
      font-size: 14px;
      font-weight: 500;
      cursor: pointer;
      font-family: var(--font-b);
      transition: opacity 0.18s, transform 0.18s;
      margin-top: 4px;
    }
    .quiz__submit:hover { opacity: 0.88; transform: translateY(-1px); }

    /* Success */
    .quiz__success { text-align: center; padding: 20px 0; }
    .quiz-success-icon { font-size: 44px; margin-bottom: 20px; display: block; }
    .quiz__success-title {
      font-size: 26px; font-weight: 300; color: var(--bone);
      letter-spacing: -0.02em; margin-bottom: 12px;
    }
    .quiz__success-sub { font-size: 14px; color: var(--ash); line-height: 1.6; }

    /* ════ CONTACT ════ */
    .contact__wrap {
      max-width: 460px;
      margin: 0 auto;
    }

    /* ── Contact modal ── */
    
/* MODAL */
.modal {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.78);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      z-index: 2000;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }
    .modal.open {
      opacity: 1;
      pointer-events: all;
    }
    .modal__card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 20px;
      padding: 52px 56px 48px;
      max-width: 500px;
      width: 100%;
      position: relative;
      transform: translateY(24px);
      transition: transform 0.42s cubic-bezier(0.22,1,0.36,1);
      backdrop-filter: blur(40px);
      -webkit-backdrop-filter: blur(40px);
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.14),
        inset 0 -1px 0 rgba(0,0,0,0.12),
        0 24px 60px rgba(0,0,0,0.5),
        0 0 0 0.5px rgba(255,255,255,0.06);
    }
    .modal.open .modal__card {
      transform: translateY(0);
    }
    .modal__close {
      position: absolute;
      top: 18px;
      right: 22px;
      background: none;
      border: none;
      color: var(--ash);
      font-size: 22px;
      line-height: 1;
      cursor: pointer;
      padding: 4px 6px;
      transition: color 0.18s;
      font-family: var(--font-b);
    }
    .modal__close:hover { color: var(--bone); }
    .modal__eyebrow {
      font-family: var(--font-b);
      font-weight: 300;
      font-size: 10px;
      letter-spacing: 0.12em;
      color: var(--ash);
      display: block;
      margin-bottom: 12px;
    }
    .modal__title {
      font-family: 'Reddit Sans Condensed', sans-serif;
      font-size: clamp(2rem, 4vw, 2.8rem);
      font-weight: 900;
      letter-spacing: -0.03em;
      color: var(--bone);
      line-height: 1.0;
      margin-bottom: 36px;
    }

    /* ── Final CTA section ── */
    .cta {
      text-align: center;
      padding: 120px 0 100px;
      border-top: 1px solid var(--graphite);
    }
    .cta .eyebrow { display: block; text-align: center; margin-bottom: 20px; }
    .cta .display { text-align: center; margin-bottom: 48px; }

    
/* FORMS */
.form__group { margin-bottom: 16px; }

    .form__label {
      display: block;
      font-family: var(--font-m);
      font-size: 11px;
      letter-spacing: 0.083em;
      color: var(--ash);
      margin-bottom: 8px;
    }

    .form__input {
      width: 100%;
      background: rgba(0,0,0,0.25);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 12px;
      padding: 14px 18px;
      font-size: 15px;
      font-family: var(--font-b);
      font-weight: 300;
      color: var(--bone);
      outline: none;
      transition: border-color 0.25s, background 0.25s;
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
    }
    .form__input:focus {
      border-color: rgba(255,255,255,0.24);
      background: rgba(0,0,0,0.3);
    }
    .form__input::placeholder { color: rgba(255,255,255,0.25); }

    .form__submit {
      width: 100%;
      background: rgba(255,255,255,0.1);
      color: var(--bone);
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: var(--r-pill);
      padding: 14px 32px;
      font-size: 14px;
      font-family: var(--font-b);
      font-weight: 500;
      cursor: pointer;
      margin-top: 12px;
      transition: background 0.25s, border-color 0.25s;
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
    }
    .form__submit:hover {
      background: rgba(255,255,255,0.16);
      border-color: rgba(255,255,255,0.3);
    }

    .form__note {
      text-align: center;
      margin-top: 12px;
      font-family: var(--font-m);
      font-size: 11px;
      letter-spacing: 0.05em;
      color: #383838;
    }


    /* ════ FOOTER ════ */
    
/* FOOTER */
.footer {
      max-width: var(--page-max);
      margin: 0 auto;
      padding: 24px 40px 52px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      border-top: 1px solid var(--graphite);
    }

    .footer-logo {
      font-size: 14px;
      font-weight: 500;
      color: var(--ash);
      text-decoration: none;
      letter-spacing: -0.01em;
    }

    .footer-links {
      display: flex;
      gap: 24px;
      list-style: none;
    }
    .footer-links a {
      font-size: 13px;
      color: #383838;
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--ash); }

    .footer-copy {
      font-family: var(--font-m);
      font-size: 11px;
      color: #2a2a2a;
    }

    /* ════ SITE FOOTER ════ */
    .footer {
      background: var(--void);
      border-top: 1px solid var(--graphite);
    }
    .footer__inner {
      max-width: var(--page-max);
      margin: 0 auto;
      padding: 56px 40px 48px;
      display: grid;
      grid-template-columns: 1fr auto auto;
      align-items: end;
      gap: 56px;
    }
    .footer__brand {
      font-family: 'Reddit Sans Condensed', sans-serif;
      font-size: clamp(5rem, 11vw, 10rem);
      font-weight: 900;
      color: var(--bone);
      letter-spacing: -0.03em;
      line-height: 0.85;
      display: block;
    }
    .footer__tagline {
      font-family: var(--font-m);
      font-size: 11px;
      color: var(--ash);
      letter-spacing: 0.12em;
      margin-top: 14px;
    }
    .footer__nav {
      display: flex;
      flex-direction: column;
      gap: 12px;
      padding-bottom: 6px;
    }
    .footer__nav a {
      font-family: var(--font-b);
      font-size: 14px;
      font-weight: 300;
      color: var(--ash);
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer__nav a:hover { color: var(--bone); }
    .footer__copy {
      font-family: var(--font-m);
      font-size: 11px;
      color: var(--graphite);
      letter-spacing: 0.08em;
      padding-bottom: 6px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      align-items: flex-end;
    }
    .footer__legal {
      display: flex;
      flex-direction: column;
      gap: 6px;
      align-items: flex-end;
    }
    .footer__legal a {
      font-family: var(--font-b);
      font-size: 11px;
      font-weight: 300;
      color: var(--ash-light, #555);
      text-decoration: none;
      letter-spacing: 0;
      transition: color 0.2s;
    }
    .footer__legal a:hover { color: var(--ash); }


/* ══════════════════════════════════════════
   RESPONSIVE — TABLET  ≤ 900px
══════════════════════════════════════════ */
@media (max-width: 900px) {

  .section { padding: 80px 28px; }

  .manifesto { padding: 80px 28px; }
  .manifesto__layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .manifesto__visual { order: -1; }
  .manifesto__asterisk { width: 280px; height: 280px; }
  .manifesto__img { width: 340px; height: 340px; }

  .results__grid { grid-template-columns: 1fr 1fr; }

  .process__grid { grid-template-columns: 1fr 1fr; }
  .process__step { border-right: none; border-bottom: 1px solid var(--graphite); }
  .process__step:nth-child(odd)  { border-right: 1px solid var(--graphite); }
  .process__step:last-child      { border-bottom: none; }
  .process__step:nth-last-child(-n+2) { border-bottom: none; }

  .about__layout { grid-template-columns: 1fr; gap: 40px; }

  .quiz__card { padding: 40px 36px; }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer__left { grid-column: 1 / -1; }
}


/* ══════════════════════════════════════════
   RESPONSIVE — MOBILE  ≤ 600px
══════════════════════════════════════════ */
@media (max-width: 600px) {

  /* ── Nav ── */
  .nav-inner { padding: 0 20px; }
  .nav-links { display: none; }
  .btn-solid { padding: 10px 18px; font-size: 13px; }
  .btn-pill  { padding: 10px 18px; font-size: 13px; }

  /* ── Sections ── */
  .section { padding: 60px 20px; }
  .section__header { margin-bottom: 40px; }
  .display { font-size: clamp(36px, 9vw, 56px); }

  /* ── Hero ── */
  .hero__content { padding: 0 20px; }
  .hero__title { font-size: clamp(72px, 22vw, 120px); margin-bottom: 16px; }
  .hero__subtitle { margin-bottom: 28px; }
  .hero__actions {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  .hero__actions .btn-pill,
  .hero__actions .btn-solid { text-align: center; justify-content: center; width: auto; padding: 12px 28px; font-size: 14px; }

  /* ── Intro ── */
  .intro__text { font-size: 17px; }

  /* ── Problems ── */
  .problems__item {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 36px 0;
  }
  .problems__col-left { padding-left: 20px; }
  .problems__ghost { font-size: 5rem; opacity: 0.03; }

  /* ── Manifesto ── */
  .manifesto { padding: 60px 20px; }
  .manifesto__asterisk { width: 220px; height: 220px; }
  .manifesto__img { width: 260px; height: 260px; }
  .manifesto__title { font-size: clamp(36px, 10vw, 56px); }

  /* ── Results ── */
  .results__grid { grid-template-columns: 1fr; gap: 14px; }
  .results__card { padding: 28px 24px 32px; }
  .results__icon { width: 100px; height: 100px; margin-bottom: 20px; }

  /* ── Portfolio ── */
  .portfolio__grid { grid-template-columns: 1fr; gap: 8px; }
  .portfolio__card { height: 240px; }

  /* ── Services ── */
  .services__item { padding: 32px 0 32px 20px; }
  .services__title { font-size: clamp(1.7rem, 7vw, 2.4rem); }

  /* ── Shader / animation section ── */
  #shader { min-height: 400px; }

  /* ── Process ── */
  .process__grid { grid-template-columns: 1fr 1fr; }
  .process__step { padding: 28px 20px 32px; }
  .process__title { font-size: 1.3rem; }

  /* ── Quiz ── */
  .quiz__card { padding: 28px 20px 32px; max-width: 100%; }
  .quiz__options { grid-template-columns: 1fr; gap: 8px; }
  .quiz__question { font-size: 1.35rem; }
  .quiz__contact { grid-template-columns: 1fr; }
  .quiz__head { gap: 12px; margin-bottom: 28px; }

  /* ── About ── */
  .about__layout { gap: 28px; }
  .about__text { font-size: 16px; }

  /* ── Modal ── */
  .modal__card { padding: 36px 24px 28px; border-radius: 16px; }

  /* ── Footer ── */
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 40px 20px 36px;
  }
  .footer__brand { font-size: clamp(3.5rem, 18vw, 6rem); }
  .footer__copy { align-items: flex-start; }
  .footer__legal { align-items: flex-start; }
  .footer__nav { flex-direction: row; flex-wrap: wrap; gap: 8px 20px; }
}