:root {
  --ink: #233137;           /* qoves dark slate */
  --paper: #f2f2f2;         /* qoves base background */
  --bg-subtle: #fafafa;
  --accent: #9aaeb5;        /* muted blue-gray */
  --accent-soft: #d1ebf2;   /* pale ice blue */
  --accent-hover: #aec2c9;
  --text-secondary: #515255;
  --gray-medium: #758084;
  --line: #e8e8e8;
  --ig-gradient: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
  --ig-pink: #d62976;
  --ease-out: cubic-bezier(.2, .75, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
::selection { background: var(--ink); color: #fff; }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #e8e8e8; }
::-webkit-scrollbar-thumb { background: #b6babc; border-radius: 6px; border: 2px solid #e8e8e8; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

.grain {
  position: fixed;
  inset: 0;
  z-index: 20;
  opacity: .03;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 2px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  z-index: 60;
}

/* ---------- navigation ---------- */
.nav {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4vw;
  border-bottom: 1px solid rgba(35,49,55,.12);
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: transform .5s var(--ease-out), height .4s var(--ease-out), background .4s ease, border-color .4s ease, backdrop-filter .4s ease;
}
.nav.is-scrolled {
  height: 64px;
  background: rgba(250,250,250,.82);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom-color: rgba(35,49,55,.08);
}
.nav.is-hidden { transform: translateY(-101%); }
.brand { display: flex; align-items: center; gap: 10px; font-size: 13px; letter-spacing: .28em; font-weight: 600; }
.brand-mark {
  width: 27px; height: 27px; border: 1px solid currentColor; border-radius: 50%;
  display: grid; place-items: center; font-family: "Playfair Display"; font-style: italic; letter-spacing: 0;
  transition: background .35s ease, color .35s ease, transform .55s var(--ease-out);
}
.brand:hover .brand-mark { background: var(--ink); border-color: var(--ink); color: #fff; transform: rotate(360deg); }
.nav-links { display: flex; gap: 38px; font-family: "DM Mono"; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.nav-links a { position: relative; padding-bottom: 4px; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s cubic-bezier(.65, 0, .35, 1);
}
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
footer a { transition: opacity .2s; }
footer a:hover { opacity: .55; }
.nav-cta { display: inline-flex; align-items: center; gap: 12px; font-family: "DM Mono"; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; padding-bottom: 5px; border-bottom: 1px solid; }
.nav-cta svg { transition: transform .3s var(--ease-out); }
.nav-cta:hover svg { transform: translate(2px, -2px); }

/* ---------- hero (visual on top, copy below) ---------- */
.hero {
  min-height: 100vh;
  padding: 120px 4vw 70px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero::before { content: ""; position: absolute; width: 650px; height: 650px; background: rgba(154,174,181,.3); filter: blur(140px); border-radius: 50%; left: 50%; transform: translateX(-50%); top: 4%; }
.hero-copy { position: relative; z-index: 2; text-align: center; max-width: 980px; margin-top: 55px; }
.eyebrow, .section-label { font-family: "DM Mono"; font-size: 10px; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow { display: flex; align-items: center; justify-content: center; gap: 12px; }
.eyebrow span { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; box-shadow: 0 0 14px var(--accent); animation: pulseDot 2.6s ease-in-out infinite; }
h1, h2 { font-family: "Playfair Display"; font-weight: 500; letter-spacing: -.045em; margin: 0; line-height: .93; }
h1 { font-size: clamp(64px, 8vw, 130px); margin: 34px 0; }
h1 em, h2 em { font-weight: 500; color: var(--accent); }

/* hero entrance choreography */
.mask { display: inline-block; overflow: hidden; vertical-align: bottom; padding: 0 .06em .14em 0; margin-bottom: -.14em; }
.mask-inner { display: inline-block; transform: translateY(115%); animation: riseUp 1.1s var(--ease-out) .15s both; }
h1 br + .mask .mask-inner, h1 .mask:nth-of-type(2) .mask-inner { animation-delay: .28s; }
.hero-copy .eyebrow { animation: fadeUp .9s var(--ease-out) .05s both; }
.hero-copy .hero-lede { animation: fadeUp .9s var(--ease-out) .55s both; }
.hero-copy .hero-actions { animation: fadeUp .9s var(--ease-out) .72s both; }
.hero-foot { animation: fadeUp .9s var(--ease-out) 1s both; }

.hero-lede { color: var(--gray-medium); font-size: 15px; line-height: 1.8; max-width: 480px; margin-left: auto; margin-right: auto; }
.hero-actions { display: flex; align-items: center; justify-content: center; gap: 32px; margin-top: 42px; }
.button {
  border: 0; display: inline-flex; align-items: center; justify-content: space-between; gap: 20px;
  min-width: 210px; padding: 18px 20px; cursor: pointer;
  font-family: "DM Mono"; font-size: 10px; letter-spacing: .08em; text-transform: uppercase;
  position: relative; overflow: hidden;
  transition: transform .25s ease-out, color .35s ease;
  will-change: transform;
}
.button::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .45s cubic-bezier(.65, 0, .35, 1);
  z-index: 0;
}
.button:hover::before { transform: scaleY(1); transform-origin: top; }
.button > * { position: relative; z-index: 1; }
.button svg { transition: transform .35s var(--ease-out); }
.button:hover svg { transform: translate(3px, -3px); }
.button-light { color: #fff; background: var(--ink); }
.button-light::before { background: var(--accent-soft); }
.button-light:hover { color: var(--ink); }
.button-dark { color: #fff; background: var(--ink); width: 100%; }
.button-dark::before { background: var(--accent-soft); }
.button-dark:hover { color: var(--ink); }
.text-link { display: inline-flex; align-items: center; gap: 12px; font-family: "DM Mono"; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; border-bottom: 1px solid var(--accent); padding-bottom: 7px; transition: border-color .3s ease; }
.text-link:hover { border-color: var(--ink); }
.text-link svg { transition: transform .3s var(--ease-out); }
.text-link:hover svg { transform: translateY(3px); }
.hero-foot { margin-top: 65px; display: flex; gap: 40px; color: #909ca1; font-family: "DM Mono"; font-size: 8px; letter-spacing: .16em; }

/* ---------- hero visual / phone scene ---------- */
.hero-visual { position: relative; z-index: 1; width: 100%; min-height: 790px; display: grid; place-items: center; perspective: 1200px; }
.sequence-copy {
  position: absolute;
  z-index: 8;
  left: 6%;
  bottom: 17%;
  width: 220px;
  display: flex;
  flex-direction: column;
  pointer-events: none;
}
.sequence-kicker { font-family: "DM Mono"; color: var(--gray-medium); font-size: 8px; letter-spacing: .16em; margin-bottom: 12px; }
.sequence-title { font-family: "Playfair Display"; font-size: 28px; line-height: 1.03; font-weight: 500; color: var(--ink); }
.sequence-detail { color: var(--gray-medium); font-size: 9px; line-height: 1.6; margin-top: 13px; max-width: 185px; }
.sequence-copy > * { animation: copyReveal .7s both; }
.sequence-progress { position: absolute; left: 6%; bottom: 13%; width: 220px; height: 1px; background: #dcdfe0; overflow: hidden; }
.sequence-progress i { display: block; height: 100%; width: 20%; background: var(--ink); transition: width 1s cubic-bezier(.2,.8,.2,1); }
.hero-visual[data-scene="growth"] .sequence-progress i { width: 40%; }
.hero-visual[data-scene="result"] .sequence-progress i { width: 60%; }
.hero-visual[data-scene="scroll"] .sequence-progress i { width: 80%; }
.hero-visual[data-scene="discover"] .sequence-progress i { width: 100%; }
.knitted-social-icon {
  position: absolute;
  width: 400px;
  right: 5%;
  top: 2%;
  opacity: .14;
  transform: rotate(13deg);
  filter: grayscale(1) contrast(1.05);
  animation: iconDrift 8s ease-in-out infinite;
  translate: calc(var(--mx, 0) * -16px) calc(var(--my, 0) * -10px);
}
.orbit { position: absolute; border: 1px solid rgba(35,49,55,.14); border-radius: 50%; }
.orbit-one { width: 670px; height: 670px; animation: breathe 6s ease-in-out infinite; translate: calc(var(--mx, 0) * 8px) calc(var(--my, 0) * 6px); }
.orbit-two { width: 480px; height: 480px; border-style: dashed; animation: spin 40s linear infinite; translate: calc(var(--mx, 0) * -6px) calc(var(--my, 0) * -4px); }
.signal { position: absolute; z-index: 4; background: rgba(255,255,255,.88); backdrop-filter: blur(12px); border: 1px solid var(--line); padding: 13px 16px; font-family: "DM Mono"; font-size: 8px; letter-spacing: .1em; color: var(--gray-medium); box-shadow: 0 10px 30px rgba(35,49,55,.08); }
.signal b { color: var(--ink); font-size: 12px; margin-left: 18px; }
.signal-a { left: 10%; top: 24%; animation: float 5s ease-in-out infinite; translate: calc(var(--mx, 0) * 20px) calc(var(--my, 0) * 14px); }
.signal-b { right: 10%; bottom: 24%; animation: float 5s 1s ease-in-out infinite; translate: calc(var(--mx, 0) * -24px) calc(var(--my, 0) * -16px); }
.phone {
  width: 340px; height: 680px; background: #fdfdfd; border: 1px solid #cfd6d9; border-radius: 42px;
  padding: 18px 15px; box-shadow: 0 45px 100px rgba(35,49,55,.28), inset 0 0 0 5px #111;
  position: relative; overflow: hidden;
  color: #111;
  transform: rotate(3deg) scale(1);
  transform-origin: 50% 35%;
  transition: transform 1.25s cubic-bezier(.22,.8,.22,1), box-shadow 1.25s ease, border-color .5s ease;
  animation: phoneIn 1.2s cubic-bezier(.2,.8,.2,1) both;
}
.phone.is-focusing {
  transform: translateY(24px) rotate(0deg) scale(1.18);
  box-shadow: 0 55px 130px rgba(35,49,55,.38), 0 0 0 1px rgba(35,49,55,.12);
  border-color: var(--accent);
}
.phone-stage { position: absolute; inset: 42px 15px 15px; perspective: 700px; }
.feed-screen, .profile-screen {
  position: absolute;
  inset: 0;
  background: #fdfdfd;
  color: #111;
  transform-origin: center bottom;
  backface-visibility: hidden;
}
.feed-screen { z-index: 2; opacity: 1; transform: translateY(0) scale(1); transition: transform 1.1s cubic-bezier(.3,.8,.2,1), opacity .8s, filter .9s; }
.profile-screen { z-index: 1; opacity: 0; transform: translateY(80px) scale(.82); filter: blur(10px); transition: transform 1.2s cubic-bezier(.2,.9,.2,1), opacity .8s, filter 1s; }
.phone.show-profile .feed-screen { transform: translateY(280px) rotateX(-28deg) scale(.78); opacity: 0; filter: blur(12px); }
.phone.show-profile .profile-screen { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
.phone.is-focusing .profile-screen > :not(.profile-head):not(.profile-nav) { opacity: .22; transition: opacity .7s ease; }
.phone.is-focusing .profile-head { transform: translateY(5px); transition: transform .7s ease; }
.phone-top { position: relative; z-index: 7; color: #111; }
.phone-icons { display: inline-flex; align-items: center; gap: 5px; color: #111; }
.feed-nav { height: 42px; display: flex; align-items: center; justify-content: space-between; padding: 0 7px; border-bottom: 1px solid #ececec; }
.feed-nav b { font-family: "Playfair Display"; font-style: italic; font-size: 18px; color: #0a0a0a; }
.feed-nav-icons { display: inline-flex; align-items: center; gap: 12px; color: #111; }
.badge { vertical-align: 1px; margin-left: 2px; }
.feed-stories { display: flex; gap: 12px; padding: 10px 4px; overflow: hidden; border-bottom: 1px solid #ececec; }
.feed-stories i { width: 55px; flex: 0 0 55px; text-align: center; font-style: normal; }
.feed-stories img { width: 48px; height: 48px; object-fit: cover; background: var(--ig-gradient); border-radius: 50%; padding: 2px; }
.feed-stories i:nth-child(1) img { filter: contrast(1.15) brightness(.92); }
.feed-stories i:nth-child(3) img { filter: grayscale(1) contrast(1.1); }
.feed-stories i:nth-child(4) img { filter: sepia(.55) contrast(1.05); }
.feed-stories small { display: block; color: #555; font-size: 6px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.feed-post header { height: 43px; display: flex; align-items: center; padding: 5px 6px; gap: 8px; }
.mini-avatar { width: 29px; height: 29px; padding: 2px; background: var(--ig-gradient); border-radius: 50%; }
.mini-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.feed-post header div { display: flex; flex-direction: column; flex: 1; }
.feed-post header b { font-size: 8px; }
.feed-post header small { color: #8e8e8e; font-size: 6px; }
.feed-post header em { font-style: normal; font-size: 8px; letter-spacing: 1px; }
.feed-photo { height: 315px; position: relative; overflow: hidden; background: #e8e8e8; }
.feed-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 28%; filter: saturate(.72) contrast(1.08); transform: scale(1.02); transition: transform 2s cubic-bezier(.2,.8,.2,1); }
.hero-visual[data-scene="discover"] .feed-photo img { transform: scale(1.13); }
.post-message { position: absolute; left: 18px; bottom: 28px; color: white; font-family: "Playfair Display"; font-size: 24px; line-height: .95; text-shadow: 0 2px 18px rgba(0,0,0,.45); }
.post-message b { color: #fff; font-style: italic; font-weight: 500; }
.post-index { position: absolute; right: 10px; top: 10px; background: rgba(0,0,0,.55); color: #fff; padding: 5px 7px; border-radius: 10px; font-family: "DM Mono"; font-size: 6px; }
.feed-actions { display: flex; justify-content: space-between; align-items: center; padding: 10px 7px 6px; color: #111; }
.feed-actions span { display: inline-flex; align-items: center; gap: 12px; }
.feed-caption { font-size: 7px; color: #333; padding: 0 7px; }
.feed-home { position: absolute; bottom: 1px; left: 0; right: 0; display: flex; justify-content: space-evenly; align-items: center; color: #111; padding: 8px 0; border-top: 1px solid #ececec; }
.phone::after { content: ""; position: absolute; inset: 0; background: linear-gradient(115deg, rgba(255,255,255,.18), transparent 25%); pointer-events: none; }
.phone-top, .profile-nav { display: flex; align-items: center; justify-content: space-between; }
.phone-top { font-size: 8px; padding: 1px 12px 12px; }
.profile-nav { border-top: 1px solid #ececec; padding: 11px 5px; }
.profile-nav strong { font-size: 13px; color: #0a0a0a; }
.back-icon { display: inline-flex; color: #111; }
.nav-icons { display: inline-flex; align-items: center; gap: 9px; color: #111; }
.nav-icons em { font-style: normal; font-size: 11px; letter-spacing: 1px; }
.profile-head { display: flex; align-items: center; gap: 15px; padding: 9px 5px; }
.avatar-wrap { width: 75px; height: 75px; border-radius: 50%; padding: 2px; background: var(--ig-gradient); }
.avatar-wrap img, .story-row img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.profile-stats { display: flex; flex: 1; justify-content: space-between; text-align: center; }
.profile-stats div { display: flex; flex-direction: column; gap: 2px; }
.profile-stats b { font-size: 13px; color: #0a0a0a; }
.profile-stats span { font-size: 8px; color: #737373; }
.follower-stat { position: relative; isolation: isolate; }
.follower-stat b { color: #0a0a0a; transition: transform .25s, color .25s, text-shadow .25s; font-variant-numeric: tabular-nums; min-width: 52px; }
.follower-stat.is-counting b {
  color: var(--ig-pink);
  transform: scale(1.16);
  text-shadow: 0 0 18px rgba(214,41,118,.35);
}
.count-ring {
  position: absolute;
  width: 72px;
  height: 56px;
  left: 50%;
  top: 50%;
  border: 1px solid var(--ig-pink);
  border-radius: 50%;
  transform: translate(-50%,-52%) scale(.4);
  opacity: 0;
  z-index: -1;
}
.follower-stat.is-counting .count-ring { animation: countRing 1.1s ease-out infinite; }
.profile-bio { display: flex; flex-direction: column; gap: 2px; padding: 8px 6px 12px; font-size: 8px; color: #444; }
.profile-bio strong { color: #000; font-size: 9px; }
.profile-buttons { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; }
.profile-buttons span { text-align: center; background: #efefef; color: #111; border-radius: 6px; padding: 7px; font-size: 8px; font-weight: 600; }
.profile-buttons .follow-button { background: #0095f6; color: #fff; transition: background .35s, transform .35s; }
.phone.has-followed .profile-buttons .follow-button {
  background-image: linear-gradient(90deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
  background-size: 300% 100%;
  color: #fff;
  transform: scale(.98);
  animation: igShift 3s linear infinite alternate;
}
.story-row { display: flex; justify-content: space-between; padding: 15px 6px; }
.story-row i { width: 49px; height: 49px; border-radius: 50%; border: 1px solid #dbdbdb; padding: 3px; }
.story-row i:nth-child(2) img { filter: sepia(.7); }
.story-row i:nth-child(3) img { filter: grayscale(1); }
.story-row i:nth-child(4) img { filter: contrast(1.4); }
.profile-tabs { display: flex; justify-content: space-around; align-items: center; padding: 9px 8px; border-bottom: 1px solid #dbdbdb; color: #262626; }
.profile-tabs span { display: inline-flex; }
.post-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; margin-top: 2px; }
.post { aspect-ratio: 1; background-size: cover; background-position: center; }
.post-one, .post-five { background-image: url("assets/creator-portrait.png"); }
.post-two { background: linear-gradient(135deg, #e0e6e8 0 48%, #333e47 49%); }
.post-three { background: linear-gradient(30deg, #233137 0 45%, #cddbe1 46% 70%, #515255 71%); }
.post-four { background: linear-gradient(135deg, #758084, #e0e6e8); }
.post-six { background: linear-gradient(45deg, #233137 40%, #9aaeb5 41% 58%, #f2f5f5 59%); }
.growth-toast {
  position: absolute; left: 27px; right: 27px; bottom: 23px; display: flex; gap: 12px; align-items: center;
  background: var(--ink); color: #fff; padding: 12px 15px; border-radius: 3px; box-shadow: 0 12px 28px rgba(35,49,55,.3);
  transform: translateY(90px);
  opacity: 0;
  transition: transform .7s cubic-bezier(.2,.8,.2,1), opacity .7s;
}
.phone.show-result .growth-toast { transform: translateY(0); opacity: 1; }
.growth-toast > span { display: inline-flex; color: var(--accent-soft); }
.growth-toast div { display: flex; flex-direction: column; }
.growth-toast small { font-family: "DM Mono"; font-size: 6px; letter-spacing: .12em; color: var(--accent); }
.growth-toast strong { font-size: 12px; }
.follow-sparks { position: absolute; inset: 0; pointer-events: none; z-index: 6; }
.follow-sparks span {
  position: absolute;
  left: 67%;
  top: 23%;
  color: var(--ig-pink);
  font-family: "DM Mono";
  font-size: 8px;
  font-style: normal;
  opacity: 0;
}
.phone.is-counting .follow-sparks span:nth-child(1) { animation: spark 1.7s 0s ease-out infinite; }
.phone.is-counting .follow-sparks span:nth-child(2) { animation: spark 1.7s .38s ease-out infinite; }
.phone.is-counting .follow-sparks span:nth-child(3) { animation: spark 1.7s .76s ease-out infinite; }
.phone.is-counting .follow-sparks span:nth-child(4) { animation: spark 1.7s 1.14s ease-out infinite; }
.tap-cursor {
  position: absolute;
  z-index: 10;
  width: 40px;
  height: 55px;
  left: 56%;
  top: 39%;
  opacity: 0;
  transition: left .9s cubic-bezier(.2,.8,.2,1), top .9s cubic-bezier(.2,.8,.2,1), opacity .35s;
}
.tap-cursor i { display: block; width: 16px; height: 16px; border: 1px solid var(--ink); border-radius: 50%; box-shadow: 0 0 0 7px rgba(35,49,55,.1); }
.tap-cursor span { font-family: "DM Mono"; color: var(--ink); font-size: 6px; letter-spacing: .1em; margin-left: 19px; }
.phone.show-tap .tap-cursor { opacity: 1; animation: tapPulse 1s ease-in-out infinite; }
.phone.tap-profile .tap-cursor { left: 14%; top: 10%; }
.phone.tap-follow .tap-cursor { left: 25%; top: 36%; }
.transition-flash { position: absolute; z-index: 9; inset: -20%; pointer-events: none; background: linear-gradient(110deg, transparent 30%, rgba(35,49,55,.07) 48%, rgba(255,255,255,.5) 50%, transparent 68%); transform: translateX(-110%); }
.phone.is-transitioning .transition-flash { animation: flashSweep 1s ease-in-out; }

/* ---------- marquee ---------- */
.marquee {
  display: flex;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.08);
  background: var(--ink);
  padding: 26px 0;
  user-select: none;
}
.marquee-track {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  animation: marquee 32s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  display: flex;
  align-items: center;
  white-space: nowrap;
  font-family: "DM Mono";
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--accent);
  transition: color .3s ease;
}
.marquee:hover .marquee-track span { color: #fff; }
.marquee-track span::after {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent-soft);
  margin: 0 34px;
  flex: 0 0 auto;
}

/* ---------- scroll reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  filter: blur(6px);
  transition:
    opacity 1s var(--ease-out) var(--reveal-delay, 0s),
    transform 1s var(--ease-out) var(--reveal-delay, 0s),
    filter 1s var(--ease-out) var(--reveal-delay, 0s);
  will-change: opacity, transform, filter;
}
[data-reveal].is-revealed { opacity: 1; transform: none; filter: none; }

/* ---------- manifesto / method ---------- */
.manifesto { background: #fff; color: var(--ink); padding: 130px 8vw; display: grid; grid-template-columns: 25% 75%; }
.section-label { color: var(--gray-medium); padding-top: 12px; }
.manifesto h2, .services h2, .contact h2 { font-size: clamp(52px, 6.8vw, 102px); }
.manifesto h2 em, .services h2 em { color: var(--accent); }
.manifesto div > p { max-width: 620px; margin: 55px 0 0 25%; font-size: 17px; line-height: 1.8; color: var(--text-secondary); }
.method-grid { display: grid; grid-template-columns: repeat(3,1fr); background: #fff; color: var(--ink); border-top: 1px solid var(--line); }
.method-grid article { min-height: 390px; padding: 42px 4vw; border-right: 1px solid var(--line); position: relative; overflow: hidden; transition: background .5s ease; }
.method-grid article::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .55s cubic-bezier(.65, 0, .35, 1);
}
.method-grid article:hover { background: #f2f5f5; }
.method-grid article:hover::after { transform: scaleX(1); }
.method-grid article > span { font-family: "DM Mono"; font-size: 9px; color: var(--accent); }
.method-icon { margin: 80px 0 48px; transition: transform .55s var(--ease-out); }
.method-grid article:hover .method-icon { transform: translateY(-8px); }
.method-grid h3 { font-family: "Playfair Display"; font-size: 33px; font-weight: 500; margin: 0 0 18px; }
.method-grid p { font-size: 12px; line-height: 1.7; color: var(--text-secondary); max-width: 280px; }

/* ---------- services (dark slate section) ---------- */
.services { display: grid; grid-template-columns: 42% 58%; padding: 130px 8vw; gap: 8%; background: var(--ink); color: #f2f5f5; }
.services .section-label { color: var(--accent); }
.services-intro h2 { font-size: clamp(50px, 5.7vw, 84px); margin-top: 50px; }
.service-list { border-top: 1px solid rgba(255,255,255,.2); }
.service { border-bottom: 1px solid rgba(255,255,255,.14); }
.service button { width: 100%; color: #f2f5f5; background: transparent; border: 0; padding: 28px 0; display: grid; grid-template-columns: 45px 1fr auto; text-align: left; align-items: center; cursor: pointer; }
.service button span { font-family: "DM Mono"; font-size: 9px; color: var(--accent); }
.service button h3 { font-family: "Playfair Display"; font-size: 28px; font-weight: 500; margin: 0; transition: transform .45s var(--ease-out), color .3s ease; }
.service button:hover h3 { transform: translateX(10px); color: var(--accent-soft); }
.service.active button h3 { color: #fff; }
.service button b { color: var(--accent-soft); font-size: 18px; font-weight: 400; transition: transform .4s var(--ease-out); }
.service button:hover b { transform: rotate(90deg); }
.service-body { max-height: 0; overflow: hidden; margin-left: 45px; opacity: 0; transition: .4s ease; }
.service.active .service-body { max-height: 220px; opacity: 1; padding: 0 40px 30px 0; }
.service-body p { color: var(--accent-hover); line-height: 1.7; font-size: 13px; max-width: 490px; }
.service-body a { display: inline-block; margin-top: 15px; color: var(--accent-soft); font-family: "DM Mono"; font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }

/* ---------- results ---------- */
.results { background: #fff; color: var(--ink); padding: 80px 8vw 110px; }
.results-head { display: flex; justify-content: space-between; border-bottom: 1px solid rgba(35,49,55,.2); padding-bottom: 25px; }
.results-head .section-label { color: var(--ink); padding: 0; }
.results-head > p:last-child { font-size: 11px; margin: 0; color: var(--gray-medium); }
.result-stats { display: grid; grid-template-columns: repeat(3,1fr); padding: 80px 0; }
.result-stats > div { border-right: 1px solid rgba(35,49,55,.16); padding-left: 5vw; }
.result-stats > div:first-child { padding-left: 0; }
.result-stats > div:last-child { border: 0; }
.result-stats strong { font-family: "Playfair Display"; font-size: clamp(65px, 8vw, 120px); font-weight: 500; letter-spacing: -.06em; }
.result-stats strong b { font-weight: 500; font-variant-numeric: tabular-nums; }
.result-stats strong span { font-size: .35em; color: var(--accent); }
.result-stats p { font-family: "DM Mono"; font-size: 9px; line-height: 1.6; letter-spacing: .05em; text-transform: uppercase; color: var(--text-secondary); }
.testimonial { border-top: 1px solid rgba(35,49,55,.2); padding-top: 60px; display: grid; grid-template-columns: 70% 30%; align-items: end; }
blockquote { font-family: "Playfair Display"; font-size: clamp(30px, 3.5vw, 52px); line-height: 1.25; margin: 0; max-width: 900px; }
.testimonial > p { display: flex; flex-direction: column; font-family: "DM Mono"; font-size: 9px; line-height: 1.7; justify-self: end; }
.testimonial > p span { opacity: .6; }

/* ---------- contact / footer ---------- */
.contact { background: var(--bg-subtle); color: var(--ink); padding: 120px 8vw; display: grid; grid-template-columns: 52% 40%; gap: 8%; border-top: 1px solid var(--line); }
.contact h2 { margin: 42px 0 24px; }
.contact > div > p:last-child { color: var(--gray-medium); }
.contact form { padding-top: 8px; }
.contact label { display: block; margin-bottom: 32px; border-bottom: 1px solid #c7d1d5; transition: border-color .35s ease; }
.contact label:focus-within { border-color: var(--ink); }
.contact label span { display: block; font-family: "DM Mono"; font-size: 8px; letter-spacing: .12em; margin-bottom: 12px; color: var(--gray-medium); transition: color .35s ease; }
.contact label:focus-within span { color: var(--ink); }
.contact input, .contact textarea { width: 100%; border: 0; background: transparent; padding: 8px 0 13px; outline: 0; resize: none; color: var(--ink); font-size: 14px; transition: padding-left .3s var(--ease-out); }
.contact input:focus, .contact textarea:focus { padding-left: 8px; }
.form-status { min-height: 20px; font-family: "DM Mono"; font-size: 9px; letter-spacing: .05em; }
footer { height: 110px; padding: 0 4vw; display: flex; align-items: center; justify-content: space-between; background: var(--ink); color: #f2f5f5; }
footer > p, footer > div { font-family: "DM Mono"; font-size: 8px; color: var(--accent); text-transform: uppercase; letter-spacing: .08em; }
footer > div { display: flex; gap: 25px; }

/* ---------- scroll-driven parallax (progressive enhancement) ---------- */
@supports (animation-timeline: scroll()) {
  .hero-visual {
    animation: heroDrift linear both;
    animation-timeline: scroll();
    animation-range: 0 110vh;
  }
  .hero::before {
    animation: glowDrift linear both;
    animation-timeline: scroll();
    animation-range: 0 110vh;
  }
  @keyframes heroDrift { to { transform: translateY(90px); } }
  @keyframes glowDrift { to { transform: translateX(-50%) translateY(-160px) scale(1.15); opacity: .4; } }
}

/* ---------- keyframes ---------- */
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes breathe { 50% { transform: scale(1.05); opacity: .5; } }
@keyframes float { 50% { transform: translateY(-14px); } }
@keyframes iconDrift { 50% { transform: translate(-12px, 15px) rotate(8deg); } }
@keyframes phoneIn { from { transform: translateY(70px) rotate(7deg); opacity: 0; } }
@keyframes copyReveal { from { opacity: 0; transform: translateY(8px); filter: blur(5px); } }
@keyframes tapPulse { 50% { transform: scale(.82); } }
@keyframes flashSweep { to { transform: translateX(110%); } }
@keyframes countRing { from { transform: translate(-50%,-52%) scale(.55); opacity: .8; } to { transform: translate(-50%,-52%) scale(1.35); opacity: 0; } }
@keyframes riseUp { to { transform: translateY(0); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
@keyframes pulseDot { 50% { box-shadow: 0 0 4px var(--accent); opacity: .6; } }
@keyframes marquee { to { transform: translateX(-100%); } }
@keyframes igShift { to { background-position: 100% 0; } }
@keyframes spark {
  0% { transform: translate(0, 8px) scale(.7); opacity: 0; }
  20% { opacity: 1; }
  100% { transform: translate(calc((var(--spark-x, 1)) * 24px), -60px) scale(1.1); opacity: 0; }
}
.follow-sparks span:nth-child(2) { --spark-x: -1; }
.follow-sparks span:nth-child(3) { --spark-x: .4; }
.follow-sparks span:nth-child(4) { --spark-x: -.5; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hero { padding-top: 115px; }
  .hero-visual { min-height: 700px; }
  .hero-copy { margin-top: 30px; }
  .hero-foot { display: none; }
  .manifesto { grid-template-columns: 1fr; padding: 90px 6vw; }
  .manifesto div > p { margin-left: 0; }
  .method-grid { grid-template-columns: 1fr; }
  .method-grid article { min-height: 300px; }
  .method-icon { margin: 45px 0 25px; }
  .services, .contact { grid-template-columns: 1fr; padding: 90px 6vw; }
  .services { gap: 60px; }
  .result-stats { grid-template-columns: 1fr; }
  .result-stats > div { padding: 30px 0; border-right: 0; border-bottom: 1px solid rgba(35,49,55,.16); }
  .testimonial { grid-template-columns: 1fr; gap: 30px; }
  .testimonial > p { justify-self: start; }
}
@media (max-width: 560px) {
  .nav { padding: 0 20px; }
  .nav-cta { font-size: 8px; }
  .hero { padding: 110px 20px 40px; }
  h1 { font-size: 58px; }
  .hero-actions { align-items: center; flex-direction: column; }
  .hero-visual { transform: scale(.85); margin: -40px -10px 0; min-height: 620px; }
  .knitted-social-icon { width: 280px; right: -6%; top: 6%; }
  .phone.is-focusing { transform: translateY(18px) rotate(0deg) scale(1.1); }
  .sequence-copy, .sequence-progress { display: none; }
  .orbit-one { width: 480px; height: 480px; }
  .orbit-two { width: 390px; height: 390px; }
  .signal { display: none; }
  .marquee { padding: 18px 0; }
  .marquee-track span { font-size: 9px; }
  .manifesto h2, .services h2, .contact h2 { font-size: 49px; }
  .results-head { flex-direction: column; gap: 20px; }
  .results, .contact { padding-left: 20px; padding-right: 20px; }
  footer { flex-wrap: wrap; height: auto; gap: 20px; padding: 35px 20px; }
  footer > p { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1; transform: none; filter: none; }
  .mask-inner { transform: none; }
  .marquee-track { animation: none; }
}
