/* ════════════════════════════════════════════
   SUNLO — Wibify-style studio site, orange
   ════════════════════════════════════════════ */

:root {
  --bg: #0b0a08;
  --bg-2: #100e0a;
  --ink: #f2efe9;
  --ink-dim: #8f8a80;
  --accent: #ff7a29;
  --accent-soft: #ffa45c;
  --accent-dim: rgba(255, 122, 41, 0.55);
  --hairline: rgba(242, 239, 233, 0.1);
  --card: #11100c;
  --radius: 18px;
  --w-mid: 1120px;
  --w-content: 1000px;
  --fs-display: clamp(44px, 6vw, 84px);
  --font-head: "Archivo", sans-serif;
  --font-serif: "Instrument Serif", serif;
  --font-mono: "JetBrains Mono", monospace;
  --font-body: "Inter", sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Warm ambient streaks (like Wibify's green wash) */
body::before {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(60vw 38vw at 85% 8%, rgba(255, 122, 41, 0.07), transparent 60%),
    radial-gradient(50vw 32vw at 8% 60%, rgba(255, 122, 41, 0.045), transparent 60%),
    radial-gradient(40vw 26vw at 70% 95%, rgba(255, 140, 60, 0.05), transparent 60%);
}

h1, h2, h3 { font-family: var(--font-head); font-weight: 700; letter-spacing: -0.03em; line-height: 1.04; }
h2 { font-size: clamp(40px, 5.6vw, 72px); margin-bottom: 56px; }
h3 { font-size: clamp(22px, 2.2vw, 28px); letter-spacing: -0.02em; }

em.serif {
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  font-size: 1.06em; letter-spacing: 0;
}
.accent { color: var(--accent-soft); }
em.u { position: relative; }
em.u::after {
  content: ""; position: absolute; left: -2%; right: -2%; bottom: 0.02em; height: 0.16em;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 12' preserveAspectRatio='none'><path d='M2 9 C40 3, 90 2, 198 6' fill='none' stroke='%23ff7a29' stroke-width='3' stroke-linecap='round'/></svg>") no-repeat center / 100% 100%;
}

.mono { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; }

section { position: relative; z-index: 1; max-width: 1320px; margin: 0 auto; padding: clamp(90px, 11vw, 150px) clamp(20px, 5vw, 72px); }

.eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em;
  color: var(--ink-dim); text-transform: uppercase; margin-bottom: 26px;
}
.eyebrow__line { width: 42px; height: 1px; background: var(--ink-dim); opacity: 0.6; }

.section-head { margin-bottom: clamp(28px, 6vw, 48px); }
.section-head h2 { margin-bottom: 18px; }
.section-sub { max-width: 620px; color: var(--ink-dim); font-size: clamp(14px, 1.3vw, 16px); line-height: 1.8; }

/* Grain */
.grain {
  position: fixed; inset: 0; z-index: 999; pointer-events: none; opacity: 0.04;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="280" height="280"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.7" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23n)" opacity="0.6"/></svg>');
  animation: grain 1.4s steps(6) infinite;
}
@keyframes grain {
  0%,100% { background-position: 0 0; } 20% { background-position: -30px 20px; }
  40% { background-position: 24px -36px; } 60% { background-position: -40px -14px; } 80% { background-position: 34px 28px; }
}

/* Reveal */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 1.1s var(--ease), transform 1.1s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ════════ BUTTONS ════════ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: 14px;
  text-decoration: none; padding: 14px 24px; border-radius: 10px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.3s, border-color 0.3s;
  white-space: nowrap; cursor: pointer;
}
.btn .arr { transition: transform 0.35s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }
.btn--accent {
  background: linear-gradient(120deg, #ff8c42, var(--accent) 60%, #f06a14);
  color: #170b02;
  box-shadow: 0 0 0 1px rgba(255, 164, 92, 0.35) inset, 0 8px 30px rgba(255, 122, 41, 0.22);
}
.btn--accent:hover { transform: translateY(-2px); box-shadow: 0 0 0 1px rgba(255, 200, 150, 0.5) inset, 0 14px 44px rgba(255, 122, 41, 0.4); }
.btn--outline { border: 1px solid var(--hairline); color: var(--ink); background: rgba(255,255,255,0.02); }
.btn--outline:hover { border-color: var(--accent); color: var(--accent-soft); }
.btn--big { padding: 18px 34px; font-size: 16px; border-radius: 12px; }
.btn--nav { padding: 11px 20px; font-size: 13px; }
.btn--sm { padding: 10px 18px; font-size: 13px; border-radius: 100px; }
.sq { width: 7px; height: 7px; background: var(--accent); display: inline-block; }

/* ════════ NAV ════════ */
.nav {
  position: fixed; top: 18px; left: 50%; transform: translateX(-50%); z-index: 200;
  display: flex; align-items: center; gap: 14px;
  padding: 10px 12px; border-radius: 14px;
  background: rgba(13, 12, 9, 0.82); backdrop-filter: blur(16px);
  border: 1px solid var(--hairline);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.5);
}
.nav__logo { display: grid; place-items: center; padding: 0 6px; }
.nav__sun {
  width: 26px; height: 26px; border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, #ffd2a8, var(--accent) 55%, #c64f0a 95%);
  box-shadow: 0 0 18px rgba(255, 122, 41, 0.7);
}
.nav__burger {
  width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--hairline);
  background: transparent; cursor: pointer;
  display: grid; place-items: center; gap: 0; padding: 12px 10px;
}
.nav__burger span { display: block; width: 18px; height: 1.6px; background: var(--ink); margin: 2.4px 0; transition: transform 0.35s var(--ease), opacity 0.3s; }
.nav__burger.is-open span:first-child { transform: translateY(3.2px) rotate(45deg); }
.nav__burger.is-open span:last-child { transform: translateY(-3.2px) rotate(-45deg); }

/* Menu overlay */
.menu {
  position: fixed; inset: 0; z-index: 150;
  background: rgba(11, 10, 8, 0.97); backdrop-filter: blur(20px);
  display: grid; place-items: center;
  opacity: 0; pointer-events: none; transition: opacity 0.45s var(--ease);
}
.menu.is-open { opacity: 1; pointer-events: auto; }
.menu__links { display: flex; flex-direction: column; gap: 8px; text-align: center; }
.menu__links a {
  font-family: var(--font-head); font-weight: 700; letter-spacing: -0.02em;
  font-size: clamp(34px, 6vw, 58px); color: var(--ink); text-decoration: none;
  transition: color 0.3s; position: relative;
}
.menu__links a::before {
  content: "[" attr(data-i) "] "; font-family: var(--font-mono); font-size: 12px;
  vertical-align: super; color: var(--accent); letter-spacing: 0.1em;
}
.menu__links a:hover { color: var(--accent-soft); }

/* Contact rail */
.rail {
  position: fixed; right: 18px; bottom: 24px; z-index: 140;
  display: flex; flex-direction: column; gap: 8px;
}
.rail__btn {
  width: 44px; height: 44px; border-radius: 10px;
  display: grid; place-items: center; text-decoration: none;
  background: rgba(17, 16, 12, 0.9); border: 1px solid var(--hairline);
  color: var(--accent-soft); font-size: 16px;
  transition: border-color 0.3s, transform 0.3s var(--ease);
}
.rail__btn:hover { border-color: var(--accent); transform: translateY(-2px); }

/* ════════ HERO ════════ */
.hero {
  max-width: none; min-height: 100vh;
  display: flex; align-items: center;
  padding-top: 120px; overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media-fade {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, var(--bg) 30%, rgba(11, 10, 8, 0.75) 48%, rgba(11, 10, 8, 0.1) 72%, rgba(11,10,8,0.35) 100%),
    linear-gradient(0deg, var(--bg) 2%, transparent 22%),
    linear-gradient(180deg, rgba(11,10,8,0.6) 0%, transparent 18%);
}
.hero__inner { position: relative; z-index: 2; max-width: 1320px; width: 100%; margin: 0 auto; padding: 0 clamp(20px, 5vw, 72px); }
.hero__title {
  font-size: clamp(44px, 6vw, 88px);
  font-weight: 800;
  margin-bottom: 28px;
  max-width: 920px;
}
@media (max-width: 500px) {
  .hero__title { font-size: clamp(26px, 9vw, 44px); }
  .svcs__statement br { display: none; }
}
.hero__title .line { display: block; overflow: hidden; padding-bottom: 0.12em; margin-bottom: -0.12em; }
.hero__title .line { animation: line-up 1.1s var(--ease) both; }
.hero__title .line:nth-child(2) { animation-delay: 0.12s; }
.hero__title .line:nth-child(3) { animation-delay: 0.24s; }
@keyframes line-up { from { opacity: 0; transform: translateY(60px); } to { opacity: 1; transform: none; } }
.hero__title em.serif { color: var(--accent-soft); }
.hero__sub { color: #c9c4ba; max-width: 460px; font-size: 17px; margin-bottom: 36px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 64px; }
.hero__trust {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  border-top: 1px solid var(--hairline); padding-top: 22px; max-width: 640px;
}
.trust { display: inline-flex; align-items: baseline; gap: 9px; }
.trust b { font-family: var(--font-head); font-size: 17px; font-weight: 700; color: var(--ink); }
.trust .mono { color: var(--ink-dim); font-size: 10px; }
.tdot { color: var(--accent); font-size: 9px; }

/* ════════ WORK LIST ════════ */
.work h2 { margin-bottom: 30px; }
.work__list { border-top: 1px solid var(--hairline); }
.work__row {
  display: grid; grid-template-columns: 70px 1fr auto 40px;
  align-items: center; gap: 18px;
  padding: 34px 10px; border-bottom: 1px solid var(--hairline);
  text-decoration: none; color: var(--ink);
  transition: background 0.35s, padding 0.35s var(--ease);
}
.work__row:hover { background: rgba(255, 122, 41, 0.04); padding-left: 22px; }
.work__num { color: var(--ink-dim); }
.work__name {
  font-family: var(--font-head); font-weight: 700; letter-spacing: -0.02em;
  font-size: clamp(26px, 3.2vw, 44px); line-height: 1.1;
  transition: color 0.3s;
}
.work__row:hover .work__name { color: var(--accent-soft); }
.work__meta { color: var(--ink-dim); text-align: right; }
.work__arr { color: var(--ink-dim); font-size: 18px; transition: transform 0.35s var(--ease), color 0.3s; }
.work__row:hover .work__arr { transform: translate(4px, -4px); color: var(--accent); }
@media (max-width: 760px) {
  .work__row { grid-template-columns: 40px 1fr 24px; }
  .work__meta { display: none; }
}

/* ════════ SERVICES — one statement ════════ */
.services { text-align: center; }
.services .eyebrow { justify-content: center; }
.svcs__statement { font-size: var(--fs-display); line-height: 1.06; margin-bottom: 26px; }
.svcs__sub { max-width: 620px; margin: 0 auto; color: var(--ink-dim); font-size: clamp(14px, 1.3vw, 16px); line-height: 1.8; }
.svcs__list {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 14px 18px; max-width: 900px; margin: 56px auto 0;
  padding: 30px 10px 0; border-top: 1px solid var(--hairline);
  font-size: 11px; letter-spacing: 0.16em; color: #b9b4aa;
}
.svcs__list i { color: var(--accent); font-style: normal; font-size: 8px; }
.svcs__list span { transition: color 0.3s; }
.svcs__list span:hover { color: var(--ink); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  padding: 8px 12px; border-radius: 6px;
  border: 1px solid var(--hairline); background: rgba(255, 255, 255, 0.025);
  color: #b9b4aa; font-size: 10px;
}

/* ════════ PROCESS ════════ */
.steps { display: flex; flex-direction: column; gap: 26px; }
.pstep {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 380px;
  border: 1px solid var(--hairline); border-radius: 18px; overflow: hidden;
  background: var(--card);
}
@media (max-width: 860px) { .pstep { grid-template-columns: 1fr; } }
.pstep__media { position: relative; background: #060503; min-height: 280px; }
.pstep__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.pstep__body { padding: clamp(30px, 4vw, 60px); display: flex; flex-direction: column; justify-content: center; gap: 16px; }
.pstep__count { color: var(--accent); }
.pstep__body p { color: var(--ink-dim); font-size: 15px; max-width: 420px; }
.ticks { display: flex; flex-wrap: wrap; gap: 16px; color: #b9b4aa; font-size: 10px; margin-top: 8px; }
.ticks span { white-space: nowrap; }

/* ════════ PROOF ════════ */
.proof__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 900px) { .proof__grid { grid-template-columns: 1fr; } }
.panel {
  border: 1px solid var(--hairline); border-radius: 16px;
  background: var(--card); padding: clamp(28px, 3.4vw, 44px);
  position: relative; overflow: hidden;
}
.panel__tag { color: var(--ink-dim); display: block; margin-bottom: 26px; }
.panel__title { margin-bottom: 14px; line-height: 1.15; }
.panel__sub { color: var(--ink-dim); font-size: 14px; max-width: 420px; }

.bigstats { display: flex; gap: clamp(20px, 4vw, 54px); flex-wrap: wrap; margin-bottom: 30px; }
.bigstats b { font-family: var(--font-head); font-weight: 800; font-size: clamp(34px, 3.4vw, 46px); letter-spacing: -0.02em; display: block; }
.bigstats .mono { color: var(--ink-dim); font-size: 10px; }
.bigstats > div { display: flex; flex-direction: column; gap: 4px; }

.chart { position: relative; margin-top: 8px; }
.chart svg { width: 100%; height: 150px; display: block; }
.chart__badge {
  position: absolute; top: -4px; right: 6px;
  padding: 6px 10px; border: 1px solid rgba(255, 122, 41, 0.45); border-radius: 6px;
  color: var(--accent-soft); background: rgba(255, 122, 41, 0.08); font-size: 11px;
}

.frows { display: flex; flex-direction: column; margin-top: 22px; }
.frow {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 14px;
  padding: 18px 4px; border-bottom: 1px solid var(--hairline);
}
.frow:last-child { border-bottom: none; }
.frow b { font-family: var(--font-head); font-weight: 600; font-size: 15px; }
.frow span { color: var(--ink-dim); font-size: 14px; }

.flowstrip { margin-top: 26px; position: relative; }
.handoffs {
  position: absolute; top: -2px; right: 0;
  padding: 6px 10px; border: 1px solid rgba(255, 122, 41, 0.45); border-radius: 6px;
  color: var(--accent-soft); background: rgba(255, 122, 41, 0.08); font-size: 10px;
}
.flowstrip__track {
  display: flex; justify-content: space-between; gap: 8px;
  margin-top: 30px; padding: 26px 18px;
  border: 1px solid var(--hairline); border-radius: 12px;
  background:
    linear-gradient(rgba(255,255,255,0.015), rgba(255,255,255,0.015)),
    repeating-linear-gradient(90deg, transparent 0 39px, rgba(242,239,233,0.04) 39px 40px);
  position: relative;
}
.flowstrip__track::before {
  content: ""; position: absolute; left: 8%; right: 8%; top: 50%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,122,41,0.5), transparent);
}
.fnode { position: relative; display: flex; flex-direction: column; align-items: center; gap: 5px; z-index: 1; }
.fnode i {
  width: 34px; height: 34px; border-radius: 8px; font-style: normal;
  display: grid; place-items: center; font-size: 14px;
  border: 1px solid var(--hairline); background: #14120d; color: #cfcabf;
}
.fnode--hot i { border-color: var(--accent); color: var(--accent-soft); box-shadow: 0 0 16px rgba(255,122,41,0.35); }
.fnode b { font-size: 9px; letter-spacing: 0.14em; color: var(--ink); }
.fnode span { font-size: 8px; letter-spacing: 0.14em; color: var(--ink-dim); }

/* Mini calculator */
.mini-calc { margin-top: 24px; display: flex; flex-direction: column; gap: 22px; }
.mc__head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 10px; color: var(--ink-dim); }
.mc__head output { font-family: var(--font-head); font-weight: 800; font-size: 19px; letter-spacing: 0; color: var(--accent-soft); }
input[type="range"] {
  width: 100%; appearance: none; -webkit-appearance: none; height: 44px;
  background: transparent; outline: none; cursor: pointer;
}
input[type="range"]::-webkit-slider-runnable-track {
  height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(242, 239, 233, 0.14));
}
input[type="range"]::-moz-range-track {
  height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(242, 239, 233, 0.14));
}
input[type="range"]::-webkit-slider-thumb {
  appearance: none; -webkit-appearance: none;
  width: 18px; height: 18px; border-radius: 50%; border: none; margin-top: -8px;
  background: radial-gradient(circle at 32% 30%, #ffd2a8, var(--accent) 60%, #c64f0a);
  box-shadow: 0 0 14px rgba(255, 122, 41, 0.7);
  transition: transform 0.15s ease;
}
input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.2); }
input[type="range"]::-moz-range-thumb {
  width: 18px; height: 18px; border-radius: 50%; border: none;
  background: radial-gradient(circle at 32% 30%, #ffd2a8, var(--accent) 60%, #c64f0a);
  box-shadow: 0 0 14px rgba(255, 122, 41, 0.7);
}
.mc__result {
  margin-top: 6px; padding: 20px 22px;
  border: 1px solid rgba(255, 122, 41, 0.35); border-radius: 12px;
  background: rgba(255, 122, 41, 0.06);
}
.mc__result .mono { color: var(--ink-dim); font-size: 9px; }
.mc__result b { color: var(--accent-soft); }
.mc__big {
  font-family: var(--font-head); font-weight: 800; letter-spacing: -0.02em;
  font-size: clamp(34px, 3.6vw, 48px); color: var(--accent-soft); line-height: 1.1;
  margin: 6px 0;
}
.mc__big span { font-size: 15px; color: var(--ink-dim); font-weight: 500; }

/* Ticker */
.ticker {
  max-width: 1320px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 72px);
  color: var(--ink-dim); font-size: 11px;
}

/* ════════ PROFILE ════════ */
.profile__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(28px, 5vw, 80px); align-items: center; }
@media (max-width: 860px) { .profile__grid { grid-template-columns: 1fr; } }
.profile__placeholder {
  position: relative; border-radius: 18px; min-height: 440px;
  border: 1px dashed rgba(255, 122, 41, 0.4);
  background:
    radial-gradient(circle at 50% 72%, rgba(255, 122, 41, 0.18), transparent 55%),
    var(--card);
  display: grid; place-items: center; color: var(--ink-dim);
}
.profile__name { font-size: var(--fs-display); font-weight: 800; margin-bottom: 22px; }
.profile__body .chips { margin-bottom: 24px; }
.profile__body p { color: var(--ink-dim); font-size: 15px; max-width: 460px; }

/* ════════ FAQ ════════ */
.faq__list { border-top: 1px solid var(--hairline); }
.faq__item { border-bottom: 1px solid var(--hairline); }
.faq__item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; gap: 26px;
  padding: 30px 6px;
  font-family: var(--font-head); font-weight: 600; font-size: clamp(17px, 1.8vw, 21px);
  transition: color 0.3s;
}
.faq__item summary:hover { color: var(--accent-soft); }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__num { color: var(--accent); }
.faq__chev { margin-left: auto; color: var(--ink-dim); font-size: 22px; font-weight: 300; transition: transform 0.35s var(--ease), color 0.3s; }
.faq__item[open] .faq__chev { transform: rotate(45deg); color: var(--accent); }
.faq__item p { padding: 0 6px 28px 64px; color: var(--ink-dim); font-size: 15px; max-width: 640px; }

/* ════════ REFERENCES ════════ */
.refs__grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(28px, 5vw, 70px); }
@media (max-width: 860px) { .refs__grid { grid-template-columns: 1fr; } }
.refs__head h3 { font-size: clamp(26px, 2.6vw, 34px); margin-bottom: 12px; }
.refs__links {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  border: 1px solid var(--hairline); border-radius: 12px; overflow: hidden;
}
.ref {
  padding: 22px 22px 26px; text-decoration: none;
  border-right: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline);
  transition: background 0.3s;
}
.ref:hover { background: rgba(255, 122, 41, 0.05); }
.ref .mono { color: var(--accent-soft); font-size: 12px; }
.ref p { color: var(--ink-dim); font-size: 12.5px; margin-top: 8px; line-height: 1.5; }

/* ════════ BOOK ════════ */
.book { text-align: center; }
.book .eyebrow { justify-content: center; }
.book h2 { margin-bottom: 18px; }
.book .hero__sub { margin: 0 auto 40px; }
.book__calendar { max-width: 760px; margin: 0 auto 32px; }
.book__placeholder {
  border: 1px dashed rgba(255, 122, 41, 0.45); border-radius: 14px;
  padding: 64px 26px; background: rgba(255, 122, 41, 0.04);
  color: var(--ink-dim);
}
.book__micro { display: block; margin-top: 18px; color: var(--ink-dim); }

/* ════════ FINALE (video backdrop) ════════ */
.finale { position: relative; overflow: hidden; margin-top: 40px; }
.finale__scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(58% 42% at 50% 38%, rgba(5, 4, 3, 0.52), transparent 100%),
    linear-gradient(180deg, var(--bg) 0%, rgba(11, 10, 8, 0.3) 18%, rgba(11, 10, 8, 0.08) 55%, rgba(11, 10, 8, 0.42) 100%);
}
.finale > section, .finale > footer { position: relative; z-index: 2; }

/* ════════ LIQUID GLASS ════════ */
.liquid-glass {
  background: rgba(255, 255, 255, 0.01);
  background-blend-mode: luminosity;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: none;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}
.liquid-glass::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.45) 0%, rgba(255,255,255,0.15) 20%,
    rgba(255,255,255,0) 40%, rgba(255,255,255,0) 60%,
    rgba(255,255,255,0.15) 80%, rgba(255,255,255,0.45) 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;
}

/* ════════ GLASS FOOTER ════════ */
.glass-wrap {
  max-width: 1320px; margin: 0 auto;
  padding: clamp(60px, 9vw, 150px) clamp(20px, 5vw, 72px) clamp(28px, 4vw, 48px);
}
.glass-footer {
  border-radius: 24px;
  padding: clamp(24px, 4vw, 44px);
  color: rgba(255, 255, 255, 0.7);
  opacity: 0; transform: translateY(40px);
  transition: opacity 1s ease-out 0.4s, transform 1s ease-out 0.4s;
}
.glass-footer.is-risen { opacity: 1; transform: none; }
.glass-footer__grid {
  display: grid; grid-template-columns: 5fr 7fr; gap: 48px;
  margin-bottom: 40px;
}
@media (max-width: 860px) { .glass-footer__grid { grid-template-columns: 1fr; gap: 40px; } }
.glass-footer__logo { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.glass-footer__name { font-family: var(--font-head); font-weight: 600; font-size: 20px; letter-spacing: 0.2em; color: #fff; }
.glass-footer__desc { font-size: 14px; line-height: 1.7; max-width: 360px; }
.glass-footer__links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 640px) { .glass-footer__links { grid-template-columns: 1fr; } }
.glink-col { display: flex; flex-direction: column; gap: 10px; }
.glink-col__h {
  font-family: var(--font-head); font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: #fff;
  margin-bottom: 8px;
}
.glink-col a {
  font-size: 12.5px; color: rgba(255, 255, 255, 0.6); text-decoration: none;
  transition: color 0.25s;
}
.glink-col a:hover { color: #fff; }
.glass-footer__bottom {
  padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px;
}
.glass-footer__micro {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase; opacity: 0.5;
}
.glass-footer__social { display: flex; align-items: center; gap: 16px; }
.glass-footer__social a {
  color: rgba(255, 255, 255, 0.7); opacity: 0.7;
  display: grid; place-items: center;
  transition: opacity 0.25s, color 0.25s, transform 0.3s var(--ease);
}
.glass-footer__social a:hover { opacity: 1; color: #fff; transform: translateY(-2px); }

/* ════════ FEATURED CASES (Design Monks style) ════════ */
.cases { display: flex; flex-direction: column; gap: 26px; margin-top: 70px; }
.case {
  display: grid; grid-template-columns: 1fr 1.05fr; min-height: 420px;
  border-radius: 20px; overflow: hidden; border: 1px solid var(--hairline);
}
@media (max-width: 900px) { .case { grid-template-columns: 1fr; } }
.case--a { background: linear-gradient(135deg, rgba(255, 122, 41, 0.16), rgba(17, 16, 12, 0.9) 65%); }
.case--b { background: linear-gradient(135deg, rgba(255, 164, 92, 0.13), rgba(17, 16, 12, 0.9) 65%); }
.case--c { background: linear-gradient(135deg, rgba(204, 90, 20, 0.18), rgba(17, 16, 12, 0.9) 65%); }
.case__body { padding: clamp(30px, 4vw, 56px); display: flex; flex-direction: column; gap: 16px; justify-content: center; }
.case__industry { font-size: 19px; color: var(--accent-soft); font-style: italic; }
.case__title { font-size: clamp(26px, 2.8vw, 38px); }
.case__desc { color: #b9b4aa; font-size: 15px; max-width: 460px; }
.case__stats { display: flex; gap: clamp(24px, 4vw, 60px); margin: 10px 0 6px; }
.case__stats .mono { color: var(--ink-dim); font-size: 10px; display: block; margin-bottom: 4px; }
.case__stats b { font-family: var(--font-head); font-weight: 800; font-size: clamp(26px, 2.6vw, 36px); letter-spacing: -0.02em; color: var(--accent-soft); }
.case__chip {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 12px 18px; border-radius: 12px; max-width: 380px;
  background: rgba(11, 10, 8, 0.55); border: 1px solid var(--hairline);
  font-size: 13px; transition: border-color 0.3s;
}
.case__chip:hover { border-color: var(--accent); }
.case__chip b { font-family: var(--font-head); font-size: 14px; }
.case__chip .mono { color: var(--ink-dim); font-size: 9px; }
.case__avatar {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center;
  background: radial-gradient(circle at 32% 30%, #ffd2a8, var(--accent) 65%, #c64f0a);
  color: #170b02; font-weight: 500;
}
.case__chip-arr { margin-left: auto; color: var(--accent-soft); }
.case__media { position: relative; min-height: 300px; background: #060503; }
.case__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ════════ TESTIMONIAL WALL ════════ */
.words { max-width: none; padding-left: 0; padding-right: 0; text-align: center; }
.words .eyebrow, .words h2 { max-width: 1320px; margin-left: auto; margin-right: auto; padding: 0 clamp(20px, 5vw, 72px); }
.words__marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.words__track {
  display: flex; gap: 22px; width: max-content;
  animation: words-scroll 55s linear infinite;
  padding: 4px 0;
}
.words__marquee:hover .words__track { animation-play-state: paused; }
@keyframes words-scroll { to { transform: translateX(-50%); } }
.tcard {
  width: 380px; flex-shrink: 0;
  border: 1px solid var(--hairline); border-radius: 16px;
  background: var(--card); padding: 30px 28px;
  display: flex; flex-direction: column; gap: 24px; justify-content: space-between;
  transition: border-color 0.3s, transform 0.4s var(--ease);
}
.tcard:hover { border-color: rgba(255, 122, 41, 0.4); transform: translateY(-4px); }
.tcard__quote { font-size: 16px; line-height: 1.6; color: #d6d1c7; }
.tcard__who { display: flex; align-items: center; gap: 14px; font-size: 13px; }
.tcard__who b { font-family: var(--font-head); }
.tcard__who .mono { color: var(--ink-dim); font-size: 9px; }
.tcard__avatar {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center;
  background: radial-gradient(circle at 32% 30%, #ffd2a8, var(--accent) 65%, #c64f0a);
  color: #170b02; font-weight: 500;
}

/* ════════ COMPARISON MATRIX ════════ */
.matrix { border: 1px solid var(--hairline); border-radius: 18px; overflow: hidden; background: var(--card); }
.matrix__row {
  display: grid; grid-template-columns: 2.2fr repeat(5, 1fr);
  border-bottom: 1px solid var(--hairline); align-items: center;
}
.matrix__row:last-child { border-bottom: none; }
.matrix__row > div { padding: 20px 16px; text-align: center; font-size: 18px; }
.matrix__row--head > div { padding: 18px 16px; color: var(--ink-dim); font-size: 10px; }
.matrix__row--head .matrix__sunlo {
  background: linear-gradient(120deg, #ff8c42, var(--accent) 60%, #f06a14);
  color: #170b02; font-weight: 500;
}
.matrix__row > .matrix__label { text-align: left; }
.matrix__label b { font-family: var(--font-head); font-weight: 600; font-size: 15px; display: block; }
.matrix__label span { color: var(--ink-dim); font-size: 12px; }
.matrix__sunlo { background: rgba(255, 122, 41, 0.08); border-inline: 1px solid rgba(255, 122, 41, 0.25); }
.matrix .y { color: var(--accent-soft); }
.matrix .n { color: rgba(242, 239, 233, 0.22); }
.matrix__sunlo.y { font-size: 22px; text-shadow: 0 0 14px rgba(255, 122, 41, 0.6); }
@media (max-width: 860px) {
  .matrix__row { grid-template-columns: 1.6fr repeat(5, 0.6fr); }
  .matrix__row > div { padding: 14px 6px; font-size: 14px; }
  .matrix__label span { display: none; }
  .matrix__row--head > div { font-size: 7px; padding: 12px 4px; }
}

/* ════════ PLANS ════════ */
.plans__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
@media (max-width: 900px) { .plans__grid { grid-template-columns: 1fr; } }
.plan {
  position: relative; display: flex; flex-direction: column;
  border: 1px solid var(--hairline); border-radius: 18px;
  background: var(--card); padding: clamp(28px, 3vw, 40px);
  transition: transform 0.5s var(--ease), border-color 0.4s;
}
.plan:hover { transform: translateY(-6px); border-color: rgba(255, 122, 41, 0.35); }
.plan--hot {
  border-color: rgba(255, 122, 41, 0.55);
  background: linear-gradient(165deg, rgba(255, 122, 41, 0.1), var(--card) 55%);
  box-shadow: 0 0 60px rgba(255, 122, 41, 0.12);
}
.plan__badge {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  padding: 6px 14px; border-radius: 100px;
  background: linear-gradient(120deg, #ff8c42, var(--accent)); color: #170b02;
  font-size: 9px; font-weight: 500; white-space: nowrap;
}
.plan__price { font-family: var(--font-head); font-weight: 800; font-size: clamp(38px, 3.6vw, 52px); letter-spacing: -0.02em; }
.plan__for { color: var(--ink-dim); margin: 6px 0 18px; font-size: 10px; }
.plan__name { color: var(--accent-soft); margin-bottom: 20px; }
.plan__list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 30px; flex: 1; }
.plan__list li { padding-left: 26px; position: relative; color: #c9c4ba; font-size: 14.5px; }
.plan__list li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); }
.plan .btn { justify-content: center; }

.bonus {
  margin-top: 40px; padding: clamp(30px, 4vw, 50px);
  border: 1px solid rgba(255, 122, 41, 0.4); border-radius: 18px;
  background:
    radial-gradient(60% 120% at 85% 50%, rgba(255, 122, 41, 0.16), transparent 70%),
    var(--card);
  display: flex; align-items: center; justify-content: space-between; gap: 26px; flex-wrap: wrap;
}
.bonus__big { font-family: var(--font-head); font-weight: 700; font-size: clamp(22px, 2.6vw, 34px); letter-spacing: -0.02em; max-width: 720px; line-height: 1.25; }

/* ════════ CURSOR GLOW ════════ */
.cursor-glow {
  position: fixed; width: 640px; height: 640px; border-radius: 50%;
  left: 0; top: 0; z-index: 2; pointer-events: none;
  background: radial-gradient(circle, rgba(255, 122, 41, 0.08), rgba(255, 122, 41, 0.025) 40%, transparent 70%);
  mix-blend-mode: screen;
  transform: translate(-50%, -50%);
  will-change: transform;
}
@media (hover: none) { .cursor-glow { display: none; } }

/* ════════ HERO VIDEO ════════ */
.hero__media video {
  position: absolute; right: 0; top: 0; height: 100%; width: 68%;
  object-fit: cover; object-position: center right;
  filter: saturate(1.08) contrast(1.05);
}

/* ════════ 3D EMAIL GALLERY ════════ */
.gallery { max-width: none; padding: clamp(90px, 11vw, 150px) 0; height: auto; position: relative; }
.gallery__sticky {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center; gap: 10px;
  padding-bottom: 44px;
  background:
    radial-gradient(60vw 40vw at 50% 110%, rgba(255, 122, 41, 0.12), transparent 65%),
    radial-gradient(40vw 30vw at 15% -10%, rgba(255, 122, 41, 0.05), transparent 60%);
}
.gallery__head { text-align: center; padding: 0 20px; position: relative; z-index: 3; }
.gallery__head .eyebrow { justify-content: center; }
.gallery__head h2 { margin-bottom: 0; }
.ring-stage {
  position: relative; flex: 0 0 auto;
  height: calc(clamp(170px, 19vw, 250px) * 16 / 9 * 1.55);
  perspective: 1500px;
  display: grid; place-items: center;
  cursor: grab;
}
.ring-stage:active { cursor: grabbing; }
.ring {
  position: relative; width: 0; height: 0;
  transform-style: preserve-3d;
  will-change: transform;
}
.ecard {
  position: absolute;
  width: clamp(170px, 19vw, 250px);
  aspect-ratio: 9 / 16;
  margin-left: calc(clamp(170px, 19vw, 250px) / -2);
  margin-top: calc(clamp(170px, 19vw, 250px) * 16 / 9 / -2);
  border-radius: 16px;
  backface-visibility: hidden;
}
.ecard img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 16px;
  border: 1px solid rgba(255, 164, 92, 0.25);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.65), 0 0 40px rgba(255, 122, 41, 0.12);
  background: var(--card);
}
.ecard::after {
  content: ""; position: absolute; inset: 0; border-radius: 16px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.14), transparent 35%);
  pointer-events: none;
}
.ecard figcaption {
  position: absolute; left: 50%; bottom: -30px; transform: translateX(-50%);
  white-space: nowrap; color: var(--ink-dim); font-size: 9px;
}
.ring-glow {
  position: absolute; left: 50%; bottom: 4%; transform: translateX(-50%);
  width: 60vw; height: 120px; border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(255, 122, 41, 0.22), transparent 70%);
  filter: blur(30px); pointer-events: none;
}
.gallery__hint { text-align: center; color: var(--ink-dim); position: relative; z-index: 3; }

/* ════════ LOGO WALL (trusted by 100+ ecom brands) ════════ */
.lwall { max-width: none; padding: clamp(60px, 8vw, 100px) 0 clamp(20px, 3vw, 40px); }
.lwall__title {
  text-align: center;
  font-size: clamp(20px, 2.3vw, 28px); font-weight: 600; letter-spacing: -0.01em;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.lwall__rows { display: flex; flex-direction: column; gap: clamp(30px, 4vw, 48px); }
.lwall__row {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.lwall__track {
  display: flex; align-items: center; gap: clamp(60px, 7vw, 110px);
  width: max-content; padding: 0 30px;
  animation: lwall-scroll 110s linear infinite;
}
.lwall__row--rev .lwall__track { animation-direction: reverse; animation-duration: 130s; }
@keyframes lwall-scroll { to { transform: translateX(-50%); } }
.blogo {
  flex-shrink: 0; width: clamp(110px, 11vw, 156px); height: 46px; display: block;
  background-color: rgba(244, 241, 234, 0.4);
  -webkit-mask: var(--logo) no-repeat center / contain;
  mask: var(--logo) no-repeat center / contain;
  transition: background-color 0.35s ease;
}
.blogo:hover { background-color: rgba(255, 200, 150, 0.9); }

/* ════════ EMAIL STRIP (sliding under hero) ════════ */
.estrip { max-width: none; padding: clamp(26px, 4vw, 50px) 0; }
.estrip__marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.estrip__track {
  display: flex; gap: 20px; width: max-content;
  animation: estrip-scroll 80s linear infinite;
}
.estrip__marquee:hover .estrip__track { animation-play-state: paused; }
@keyframes estrip-scroll { to { transform: translateX(-50%); } }
.eslide {
  width: clamp(160px, 17vw, 230px);
  aspect-ratio: 9 / 30;
  border-radius: 14px; overflow: hidden; flex-shrink: 0;
  border: 1px solid var(--hairline);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.5);
  transition: transform 0.5s var(--ease), border-color 0.4s, box-shadow 0.5s var(--ease);
}
.eslide:hover {
  transform: translateY(-8px) scale(1.03);
  border-color: rgba(255, 122, 41, 0.5);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.6), 0 0 40px rgba(255, 122, 41, 0.18);
}
.eslide img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }

.ecard img { object-position: top; }

/* ════════ REDESIGNS (Casa Althay style) ════════ */
.redesign {
  position: relative; overflow: visible;
  padding-bottom: clamp(150px, 18vw, 260px);
}
.redesign h2 { margin-bottom: 40px; position: relative; z-index: 1; }
.redesign .eyebrow { position: relative; z-index: 1; }

/* Gravel / moon terrain grounding the scene */
.redesign__scene {
  position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  width: 100vw; height: clamp(300px, 34vw, 480px);
  z-index: 0; pointer-events: none;
}
.redesign__scene img {
  width: 100%; height: 100%; object-fit: cover; object-position: center bottom;
  display: block;
}
.redesign__scene::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, var(--bg) 0%, rgba(11, 10, 8, 0.55) 26%, transparent 55%),
    linear-gradient(90deg, var(--bg) 0%, transparent 14%, transparent 86%, var(--bg) 100%);
}
.redesign__stage {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: minmax(260px, 0.8fr) 1fr 1fr;
  gap: clamp(28px, 4vw, 60px); align-items: start;
  transition: opacity 0.35s ease;
}
.redesign__stage.is-swapping { opacity: 0; }
@media (max-width: 1050px) {
  .redesign__stage { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .redesign__stage .redesign__info { position: static; }
}

.redesign__info { position: sticky; top: 96px; display: flex; flex-direction: column; align-items: flex-start; gap: 26px; }
.redesign__name {
  font-size: clamp(26px, 2.6vw, 38px); font-weight: 500;
  letter-spacing: 0.12em; color: var(--ink); line-height: 1.2;
}
.redesign__desc { font-size: 13px; line-height: 1.9; letter-spacing: 0.02em; color: #b9b4aa; max-width: 380px; }
.redesign__specs { display: flex; gap: clamp(20px, 2.5vw, 44px); flex-wrap: wrap; }
.redesign__specs span { display: block; font-size: 9px; letter-spacing: 0.22em; color: var(--ink-dim); margin-bottom: 6px; }
.redesign__specs b { font-size: 13px; letter-spacing: 0.1em; color: var(--accent-soft); font-weight: 500; }
.redesign__note { font-size: 10px; color: var(--ink-dim); letter-spacing: 0.06em; }

.redesign__after { position: relative; display: flex; flex-direction: column; gap: 14px; }
.redesign__after-label { color: var(--accent); font-size: 10px; letter-spacing: 0.18em; }
.redesign__after-frame {
  position: relative;
  border-radius: 18px; overflow: hidden;
  border: 1px solid rgba(255, 164, 92, 0.3);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7), 0 0 60px rgba(255, 122, 41, 0.15);
  background: var(--card);
}
.redesign__after-frame img { width: 100%; height: auto; display: block; }
.redesign__floor {
  position: absolute; left: 50%; bottom: -16px; transform: translateX(-50%);
  width: 96%; height: 44px; border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.75), transparent 68%);
  filter: blur(12px); pointer-events: none; z-index: -1;
}

.redesign__before { display: flex; flex-direction: column; gap: 14px; }
.redesign__before-label { color: var(--accent-soft); font-size: 10px; letter-spacing: 0.18em; }
.redesign__before-frame {
  position: relative; min-height: 420px;
  border: 1px dashed rgba(255, 164, 92, 0.35); border-radius: var(--radius);
  display: grid; place-items: center; overflow: hidden;
  background: rgba(255, 255, 255, 0.015);
}
.redesign__before-hint { text-align: center; color: var(--ink-dim); font-size: 9px; line-height: 2; letter-spacing: 0.16em; }
.redesign__before-frame > * { grid-area: 1 / 1; }
.redesign__before-frame img {
  position: relative; z-index: 1; width: 100%; height: auto; display: block;
  filter: grayscale(0.45) brightness(0.85);
}
.redesign__coords { color: var(--ink-dim); font-size: 9px; letter-spacing: 0.18em; }

.redesign__tabs { position: relative; z-index: 2; display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 70px; }
.redesign__tabs button {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em;
  padding: 11px 18px; border-radius: 6px; cursor: pointer;
  background: transparent; border: 1px solid var(--hairline); color: var(--ink-dim);
  transition: all 0.3s;
}
.redesign__tabs button:hover { color: var(--ink); border-color: rgba(255, 164, 92, 0.4); }
.redesign__tabs button.is-active {
  background: linear-gradient(120deg, #ff8c42, var(--accent)); color: #170b02;
  border-color: transparent;
}

/* ════════ WING I — THE EXHIBITION ════════ */
.exhibit { position: relative; max-width: none; overflow: hidden; }
.exhibit__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.exhibit__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: 0.5; }
.exhibit__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, var(--bg) 0%, rgba(11, 10, 8, 0.45) 30%, rgba(11, 10, 8, 0.45) 70%, var(--bg) 100%),
    linear-gradient(90deg, rgba(11, 10, 8, 0.5), transparent 25%, transparent 75%, rgba(11, 10, 8, 0.5));
}
.exhibit > .eyebrow, .exhibit > h2, .exhibit > .exhibit__hint {
  position: relative; z-index: 1;
  max-width: 1320px; margin-left: auto; margin-right: auto;
  padding-left: clamp(20px, 5vw, 72px); padding-right: clamp(20px, 5vw, 72px);
}
.exhibit h2 { margin-bottom: 18px; }
.exhibit__hint { color: var(--ink-dim); margin-bottom: 60px; }

.exhibit__hall {
  position: relative; z-index: 1;
  display: flex; gap: clamp(64px, 7.5vw, 128px);
  overflow-x: auto; scroll-snap-type: x proximity;
  padding: 84px clamp(24px, 9vw, 140px) 36px;
  cursor: grab;
  scrollbar-width: none;
}
.exhibit__hall::-webkit-scrollbar { display: none; }
.exhibit__hall.is-dragging { cursor: grabbing; scroll-snap-type: none; }

.piece { position: relative; flex: 0 0 auto; scroll-snap-align: center; text-align: center; }
.piece__spot {
  position: absolute; left: 50%; top: -84px; transform: translateX(-50%);
  width: 400px; height: 440px; pointer-events: none; z-index: 0;
  background: conic-gradient(from 180deg at 50% 0%, transparent 41%, rgba(255, 190, 120, 0.14) 50%, transparent 59%);
  filter: blur(6px);
}
.piece__frame {
  position: relative; z-index: 1;
  width: clamp(240px, 23vw, 330px); aspect-ratio: 3 / 4.6; overflow: hidden;
  border: 1px solid rgba(255, 164, 92, 0.45);
  outline: 6px solid #15120d; outline-offset: 0;
  box-shadow:
    0 0 0 7px rgba(255, 164, 92, 0.12),
    0 30px 70px rgba(0, 0, 0, 0.75),
    0 0 50px rgba(255, 140, 60, 0.08);
  background: var(--card);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.piece:hover .piece__frame {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 0 0 7px rgba(255, 164, 92, 0.25),
    0 40px 90px rgba(0, 0, 0, 0.8),
    0 0 80px rgba(255, 140, 60, 0.2);
}
.piece__frame img {
  width: 100%; height: 100%; object-fit: cover; object-position: top; display: block;
  transition: object-position 6s linear;
}
.piece:hover .piece__frame img { object-position: bottom; }
.placard {
  display: inline-flex; flex-direction: column; gap: 5px; text-align: left;
  margin-top: 26px; padding: 12px 16px;
  border: 1px solid var(--hairline); border-radius: 4px;
  background: rgba(11, 10, 8, 0.75); backdrop-filter: blur(6px);
  font-size: 9px; letter-spacing: 0.16em; color: var(--ink-dim);
}
.placard b { color: var(--ink); font-weight: 500; }
.placard__metric { color: var(--accent-soft); }

/* ════════ WING II — THE OBSERVATORY ════════ */
.observatory { position: relative; }
.observatory h2 { margin-bottom: 40px; }
.ledger { max-width: var(--w-content); margin: 0 auto; }
.ledger__row {
  display: grid; grid-template-columns: 1fr auto; align-items: baseline; gap: 20px;
  padding: clamp(20px, 2.6vw, 34px) 6px;
  border-bottom: 1px solid var(--hairline);
  transition: background 0.35s, padding-left 0.35s var(--ease);
}
.ledger__row:first-child { border-top: 1px solid var(--hairline); }
.ledger__row:hover { background: linear-gradient(90deg, rgba(255, 122, 41, 0.05), transparent 70%); padding-left: 20px; }
.ledger__num {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(36px, 5vw, 74px); line-height: 1; letter-spacing: -0.02em;
  color: var(--ink);
}
.ledger__meta { display: flex; flex-direction: column; gap: 8px; text-align: right; }
.ledger__client { font-size: 12px; letter-spacing: 0.18em; color: var(--accent-soft); }
.ledger__note { font-size: 9.5px; letter-spacing: 0.16em; color: var(--ink-dim); }
.ledger__row--total .ledger__num {
  font-size: clamp(52px, 7vw, 106px);
  color: var(--accent); filter: drop-shadow(0 0 26px rgba(255, 122, 41, 0.35));
}
/* staggered reveal */
.ledger.reveal .ledger__row { opacity: 0; transform: translateY(18px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease), background 0.35s, padding-left 0.35s var(--ease); }
.ledger.reveal.is-visible .ledger__row { opacity: 1; transform: none; }
.ledger.reveal.is-visible .ledger__row:nth-child(1) { transition-delay: 0.05s; }
.ledger.reveal.is-visible .ledger__row:nth-child(2) { transition-delay: 0.13s; }
.ledger.reveal.is-visible .ledger__row:nth-child(3) { transition-delay: 0.21s; }
.ledger.reveal.is-visible .ledger__row:nth-child(4) { transition-delay: 0.29s; }
.ledger.reveal.is-visible .ledger__row:nth-child(5) { transition-delay: 0.37s; }
.ledger.reveal.is-visible .ledger__row:nth-child(6) { transition-delay: 0.45s; }
.ledger.reveal.is-visible .ledger__row:nth-child(7) { transition-delay: 0.55s; }
@media (max-width: 700px) {
  .ledger__row { grid-template-columns: 1fr; gap: 10px; }
  .ledger__meta { text-align: left; }
}

/* ════════ FINALE WARP (hyperspace CTA backdrop) ════════ */
.finale__warp {
  position: absolute; inset: 0; width: 100%; height: 100%;
  display: block; z-index: 0;
}
.finale__hint {
  position: absolute; top: 96px; left: 50%; transform: translateX(-50%);
  z-index: 2; color: var(--ink-dim); font-size: 9px; white-space: nowrap;
}

/* ════════ EXTRA GLOW / MOTION POLISH ════════ */
@keyframes border-pulse {
  0%, 100% { box-shadow: 0 0 40px rgba(255, 122, 41, 0.12), 0 0 0 1px rgba(255, 122, 41, 0.45) inset; }
  50% { box-shadow: 0 0 80px rgba(255, 122, 41, 0.28), 0 0 0 1px rgba(255, 164, 92, 0.7) inset; }
}
.plan--hot { animation: border-pulse 4.5s ease-in-out infinite; }

.btn--accent { position: relative; overflow: hidden; }
.btn--accent::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 40%;
  left: -60%; transform: skewX(-20deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  animation: btn-shine 3.4s ease-in-out infinite;
}
@keyframes btn-shine { 0%, 60% { left: -60%; } 100% { left: 140%; } }

.plan, .tcard, .case { transform-style: preserve-3d; }
.is-tilting { transition: transform 0.1s linear !important; }

h2 em.serif.accent { filter: drop-shadow(0 0 22px rgba(255, 122, 41, 0.35)); }

/* ════════ ART — the studio worktable ════════ */
.attable {
  position: relative; overflow: hidden;
  aspect-ratio: 9 / 16;
  max-width: var(--w-mid); margin: 0 auto;
  border-radius: 26px; border: 1px solid var(--hairline);
  background: url("../assets/art-table.jpg") center / cover no-repeat, #0a0908;
}
.attable::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  border-radius: inherit;
  background: radial-gradient(130% 90% at 50% 20%, transparent 58%, rgba(0, 0, 0, 0.42));
}
.attable__print {
  position: absolute; margin: 0; border-radius: 5px; z-index: 1;
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.6), 0 6px 14px rgba(0, 0, 0, 0.5);
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
}
.attable__print img { width: 100%; height: auto; display: block; border-radius: inherit; }
.attable__print--sketch { left: 7%; top: 4.5%; width: 35%; transform: rotate(-2.2deg); }
.attable__print--final { right: 6.5%; top: 3.5%; width: 25%; transform: rotate(1.6deg); }
.attable__print:hover {
  transform: rotate(0deg) translateY(-6px); z-index: 3;
  box-shadow: 0 34px 70px rgba(0, 0, 0, 0.65), 0 10px 22px rgba(0, 0, 0, 0.5);
}
.attable__tape {
  position: absolute; top: -11px; left: 50%; z-index: 2;
  transform: translateX(-50%) rotate(-2.5deg);
  padding: 7px 16px; border-radius: 2px;
  font-size: 8.5px; letter-spacing: 0.18em; white-space: nowrap;
  background: rgba(238, 232, 218, 0.92); color: #3a352c;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}
.attable__tape--accent { background: rgba(255, 122, 41, 0.92); color: #1c0e02; transform: translateX(-50%) rotate(2deg); }
.attable__scribble {
  position: absolute; left: 11%; top: 48%; z-index: 1;
  font-size: 10px; letter-spacing: 0.22em; line-height: 2.1;
  color: rgba(244, 239, 233, 0.55); transform: rotate(-2deg);
}
.attable__arrow {
  position: absolute; left: 48%; top: 17%; z-index: 1;
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(28px, 4vw, 44px); line-height: 1;
  color: var(--accent); transform: rotate(-8deg);
  text-shadow: 0 0 18px rgba(255, 122, 41, 0.4);
}
.artwork__note { text-align: center; color: var(--ink-dim); margin-top: 44px; }
@media (max-width: 760px) {
  .attable {
    aspect-ratio: auto; padding: clamp(22px, 7vw, 34px);
    display: flex; flex-direction: column; align-items: center; gap: 30px;
  }
  .attable__print { position: static; }
  .attable__print--sketch { width: min(88%, 340px); left: auto; top: auto; transform: rotate(-1.5deg); }
  .attable__print--final { width: min(88%, 340px); right: auto; top: auto; transform: rotate(1.5deg); }
  .attable__scribble { position: static; order: 0; text-align: center; transform: rotate(-1.5deg); }
  .attable__arrow { position: static; transform: rotate(82deg); }
}

/* ════════ WE MAKE MONEY — full-email teardown, labels right ════════ */
.tear2 {
  --tgap: clamp(30px, 4.5vw, 70px);
  --tpad: clamp(34px, 4vw, 64px);
  display: grid; grid-template-columns: minmax(320px, 420px) 1fr;
  gap: var(--tgap); align-items: stretch;
  max-width: var(--w-mid); margin: 0 auto 64px;
}
.tear2__email {
  position: relative; margin: 0;
  border-radius: 20px; overflow: hidden;
  border: 1px solid rgba(255, 164, 92, 0.35);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.55), 0 0 70px rgba(255, 122, 41, 0.12);
}
.tear2__email img { width: 100%; height: auto; display: block; }
.tear2__notes { position: relative; }
.tnote {
  position: absolute; top: var(--y); left: 0; right: 0;
  padding-left: var(--tpad);
}
/* connector: email edge → pill */
.tnote::before {
  content: ''; position: absolute;
  left: calc(-1 * var(--tgap)); top: 15px;
  width: calc(var(--tgap) + var(--tpad) - 14px); height: 1px;
  background: linear-gradient(90deg, rgba(255, 122, 41, 0.7), rgba(255, 122, 41, 0.12));
}
/* glowing dot pinned to the email edge */
.tnote::after {
  content: ''; position: absolute;
  left: calc(-1 * var(--tgap) - 3px); top: 12px;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 12px var(--accent);
}
.tnote__pill {
  display: inline-block; padding: 8px 16px; border-radius: 100px;
  border: 1px solid rgba(255, 122, 41, 0.4);
  background: rgba(255, 122, 41, 0.08);
  color: var(--accent-soft); font-size: 10px; letter-spacing: 0.14em;
  font-weight: 500;
  transition: background 0.3s, border-color 0.3s;
}
.tnote:hover .tnote__pill { background: rgba(255, 122, 41, 0.16); border-color: rgba(255, 122, 41, 0.7); }
.tnote p {
  margin: 10px 0 0 4px; color: var(--ink-dim);
  font-size: 13.5px; line-height: 1.7; max-width: 440px;
}
/* staggered slide-in once the block reveals */
.tear2.reveal .tnote { opacity: 0; transform: translateX(18px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.tear2.reveal.is-visible .tnote { opacity: 1; transform: none; }
.tear2.reveal.is-visible .tnote:nth-child(1) { transition-delay: 0.1s; }
.tear2.reveal.is-visible .tnote:nth-child(2) { transition-delay: 0.18s; }
.tear2.reveal.is-visible .tnote:nth-child(3) { transition-delay: 0.26s; }
.tear2.reveal.is-visible .tnote:nth-child(4) { transition-delay: 0.34s; }
.tear2.reveal.is-visible .tnote:nth-child(5) { transition-delay: 0.42s; }
.tear2.reveal.is-visible .tnote:nth-child(6) { transition-delay: 0.5s; }
.tear2.reveal.is-visible .tnote:nth-child(7) { transition-delay: 0.58s; }
.tear2.reveal.is-visible .tnote:nth-child(8) { transition-delay: 0.66s; }
@media (max-width: 940px) {
  .tear2 { grid-template-columns: 1fr; max-width: 480px; }
  .tear2__notes { position: static; display: flex; flex-direction: column; gap: 14px; }
  .tnote {
    position: static; padding: 16px 18px;
    border: 1px solid var(--hairline); border-radius: 14px; background: var(--card);
  }
  .tnote::before, .tnote::after { display: none; }
  .tnote p { max-width: none; margin-left: 0; }
}

.money__proof {
  display: grid; grid-template-columns: 1fr 1fr 1.25fr; gap: 0;
  max-width: var(--w-mid); margin: 0 auto;
  border: 1px solid var(--hairline); border-radius: 18px;
  background: var(--card); overflow: hidden;
}
.money__proof > * { padding: clamp(26px, 3vw, 38px); }
.money__proof > * + * { border-left: 1px solid var(--hairline); }
.money__cta {
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
  background: linear-gradient(165deg, rgba(255, 122, 41, 0.08), transparent 65%);
}
.mstat { display: flex; flex-direction: column; justify-content: center; }
.mstat > .mono { color: var(--ink-dim); font-size: 10px; }
.mstat__bar { height: 8px; border-radius: 6px; background: rgba(255,255,255,0.06); margin: 12px 0; overflow: hidden; }
.mstat__bar span { display: block; height: 100%; background: rgba(244,239,233,0.3); border-radius: 6px; width: 18%; }
.mstat__bar--good span { background: linear-gradient(90deg, #ff8c42, var(--accent)); width: 88%; }
.mstat__bad { font-family: var(--font-head); font-weight: 700; font-size: 20px; color: var(--ink-dim); }
.mstat__good { font-family: var(--font-head); font-weight: 800; font-size: 24px; color: var(--accent-soft); }
.mstat__note { display: block; color: rgba(244,239,233,0.35); font-size: 9px; margin-top: 5px; }
.money__line { font-family: var(--font-head); font-size: clamp(17px, 1.8vw, 22px); line-height: 1.3; margin-bottom: 20px; }
@media (max-width: 940px) {
  .money__proof { grid-template-columns: 1fr 1fr; }
  .money__cta { grid-column: 1 / -1; border-left: none; border-top: 1px solid var(--hairline); }
}
@media (max-width: 760px) {
  .money__proof { grid-template-columns: 1fr; }
  .money__proof > * + * { border-left: none; border-top: 1px solid var(--hairline); }
}

/* ════════ BRANDING — guidelines sheet (sticky) + full email ════════ */
.bguide {
  display: grid; grid-template-columns: 1.2fr minmax(340px, min(430px, 40%));
  gap: clamp(24px, 3.5vw, 56px); align-items: start;
  max-width: var(--w-mid); margin: 0 auto;
}
.bsheet {
  position: sticky; top: 90px;
  max-height: calc(100vh - 110px); overflow-y: auto; overscroll-behavior: contain;
  display: flex; flex-direction: column;
  border: 1px solid var(--hairline); border-radius: 20px;
  background: var(--card); padding: clamp(26px, 3vw, 42px);
}
.bsheet__head {
  display: flex; align-items: center; gap: 16px;
  color: var(--ink-dim); letter-spacing: 0.28em; font-size: 10px;
}
.bsheet__head::after { content: ''; flex: 1; height: 1px; background: var(--hairline); }
.bsheet__block { padding: 18px 0; border-bottom: 1px solid var(--hairline); }
.bsheet__block:last-child { border-bottom: none; padding-bottom: 6px; }
.bsheet__label { color: var(--accent); font-size: 9px; letter-spacing: 0.2em; margin-bottom: 12px; }
.bsheet__swatches { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 10px; }
@media (max-width: 480px) { .bsheet__swatches { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.sw { display: flex; flex-direction: column; gap: 3px; }
.sw i { height: 44px; border-radius: 10px; display: block; border: 1px solid rgba(255,255,255,0.08); margin-bottom: 5px; }
.sw b { font-family: var(--font-head); font-size: 9.5px; letter-spacing: 0.08em; }
.sw em { font-family: var(--font-mono); font-style: normal; font-size: 8px; color: var(--ink-dim); }
.bsheet__type { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 26px; }
.bsheet__display { font-style: italic; font-size: clamp(24px, 2.2vw, 30px); line-height: 1.12; letter-spacing: 0.01em; color: var(--ink); }
.bsheet__body { font-size: 13.5px; line-height: 1.6; color: #c9c4ba; }
.bsheet__alpha { margin-top: 12px; font-size: 11px; letter-spacing: 0.14em; color: var(--ink-dim); word-break: break-all; }
.bsheet__row { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 26px; }
.bsheet__logo { display: block; font-family: var(--font-head); font-weight: 800; letter-spacing: 0.22em; font-size: 18px; }
.bsheet__logo-sub { display: block; margin-top: 8px; font-size: 7.5px; letter-spacing: 0.2em; color: var(--ink-dim); }
.bsheet__icons { display: flex; gap: 10px; flex-wrap: wrap; }
.bicon { flex: 1; min-width: 0; display: flex; flex-direction: column; align-items: center; gap: 7px; text-align: center; }
.bicon i {
  width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center; font-style: normal; font-size: 12px;
  color: #c8bff2; border: 1px solid rgba(200, 191, 242, 0.35);
}
.bicon em { font-family: var(--font-mono); font-style: normal; font-size: 7px; letter-spacing: 0.1em; color: var(--ink-dim); line-height: 1.5; }
.bsheet__voice { font-family: var(--font-head); font-weight: 600; font-size: 17px; line-height: 1.4; color: var(--ink); }
.bsheet__voice em { color: #c8bff2; font-weight: 400; font-size: 19px; }
.bsheet__btns { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.bsheet__btn { font-family: var(--font-head); font-size: 10px; font-weight: 700; letter-spacing: 0.12em; padding: 12px 20px; border-radius: 9px; }
.bsheet__btn--p { background: #8b7cf6; color: #fff; }
.bsheet__btn--s { border: 1px solid rgba(200, 191, 242, 0.5); color: #c8bff2; }
.bsheet__imagery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.bimg {
  aspect-ratio: 1; border-radius: 12px; display: block;
  background-image: url("../assets/emails/wonder-skin.jpg");
  background-size: 300%; border: 1px solid rgba(255,255,255,0.08);
}
.bsheet__imagery .bimg:nth-child(1) { background-position: 58% 6%; }
.bsheet__imagery .bimg:nth-child(2) { background-position: 15% 49%; }
.bsheet__imagery .bimg:nth-child(3) { background-position: 92% 78%; }
.bguide__email { display: flex; flex-direction: column; margin: 0; }
.bguide__email .bsheet__head { margin-bottom: 22px; }
.bguide__email-frame {
  border-radius: 18px; overflow: hidden;
  border: 1px solid rgba(255, 164, 92, 0.4);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(255, 122, 41, 0.12);
}
.bguide__email-frame img { width: 100%; height: auto; display: block; }
.bguide__email figcaption { margin-top: 16px; text-align: center; color: var(--ink-dim); font-size: 10px; letter-spacing: 0.14em; }
@media (max-width: 1024px) {
  .bguide { grid-template-columns: 1fr; max-width: 480px; }
  .bsheet { position: static; }
  .bguide__email .bsheet__head { margin-top: 6px; }
}

/* ════════ FUNNEL MAP ════════ */
.funnelmap { max-width: var(--w-mid); margin: 0 auto 70px; }
.funnelmap__panel {
  position: relative; overflow: hidden;
  border: 1px solid var(--hairline); border-radius: 24px;
  background:
    radial-gradient(70% 55% at 50% 0%, rgba(255, 122, 41, 0.09), transparent 60%),
    #0a0908;
  padding: 0 clamp(18px, 3vw, 44px) clamp(24px, 3vw, 38px);
}
.funnelmap__hand {
  display: block; width: clamp(240px, 30vw, 380px);
  margin: 0 auto; mix-blend-mode: screen; opacity: 0.95;
  transform-origin: 50% 12%; will-change: transform;
}
.funnelmap__flow {
  position: relative; overflow-x: auto; scrollbar-width: none;
  margin-top: clamp(-44px, -3.4vw, -20px);
  padding: 4px 2px 8px;
}
.funnelmap__flow::-webkit-scrollbar { display: none; }
@media (min-width: 761px) and (max-width: 1114px) {
  .funnelmap__flow { scrollbar-width: thin; scrollbar-color: var(--accent-dim) transparent; padding-bottom: 14px; }
  .funnelmap__flow::-webkit-scrollbar { display: block; height: 6px; }
  .funnelmap__flow::-webkit-scrollbar-track { background: transparent; }
  .funnelmap__flow::-webkit-scrollbar-thumb { background: var(--accent-dim); border-radius: 3px; }
}
.fnrow { display: grid; grid-template-columns: repeat(7, minmax(120px, 1fr)); gap: 12px; align-items: center; min-width: 930px; }
.fnrow--up { margin-bottom: 27px; }
.fnrow--down { margin-top: 27px; }
.fnrow--main { position: relative; }
.fnrow--main::before {
  content: ''; position: absolute; left: 2%; right: 2%; top: 50%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-dim) 10%, var(--accent-dim) 90%, transparent);
}
.fnslot { display: flex; justify-content: center; }
.fnnode {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  text-align: center; min-height: 86px;
  padding: 16px 10px; border-radius: 14px;
  font-family: var(--font-head); font-weight: 600; font-size: 12.5px; line-height: 1.25;
  background: #15130e; border: 1px solid var(--hairline); color: var(--ink);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  transition: border-color 0.3s, transform 0.35s var(--ease);
}
.fnnode:hover { border-color: rgba(255, 164, 92, 0.45); transform: translateY(-3px); }
.fnnode i { font-style: normal; font-size: 17px; color: var(--accent-soft); }
.fnnode--accent {
  background: linear-gradient(120deg, #ff8c42, var(--accent));
  color: #170b02; border-color: transparent;
  box-shadow: 0 10px 34px rgba(255, 122, 41, 0.28);
}
.fnnode--accent i { color: #170b02; }
.fnbranch {
  position: relative; display: inline-block; text-align: center;
  padding: 12px 16px; border-radius: 11px;
  font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.07em; line-height: 1.55;
  color: var(--ink-dim); background: #0e0d0a;
  border: 1px dashed rgba(244, 239, 233, 0.18);
}
.fnrow--up .fnbranch::after, .fnrow--down .fnbranch::before {
  content: ''; position: absolute; left: 50%; width: 1px; height: 26px;
  background: repeating-linear-gradient(180deg, var(--accent-dim) 0 3px, transparent 3px 6px);
}
.fnrow--up .fnbranch::after { bottom: -27px; }
.fnrow--down .fnbranch::before { top: -27px; }
.funnelmap__caption { text-align: center; color: var(--ink-dim); margin-top: 28px; font-size: 9.5px; }

/* puppet-master rig: JS draws live strings from the fingertips to the nodes */
.fn-strings {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}
/* anchor dots where the strings land */
.fnrow--main .fnnode:nth-child(n+2):nth-child(-n+6)::before {
  content: ''; position: absolute; top: -3px; left: 50%; transform: translateX(-50%);
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 10px rgba(255, 122, 41, 0.7);
}
@media (max-width: 760px) {
  .funnelmap__panel { border-radius: 18px; }
  .funnelmap__hand { width: clamp(200px, 52vw, 280px); }
  .funnelmap__flow { margin-top: -14px; }
}

/* ════════ STRATEGY & DATA ════════ */
.opdata__grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; max-width: var(--w-content); margin: 0 auto; }
@media (max-width: 760px) { .opdata__grid { grid-template-columns: 1fr; } }
.opcard { padding: 32px 30px; border: 1px solid var(--hairline); border-radius: var(--radius); background: var(--card); transition: border-color .4s, transform .5s var(--ease); }
.opcard:hover { border-color: rgba(255,122,41,0.35); transform: translateY(-5px); }
.opcard__icon { font-size: 26px; color: var(--accent-soft); margin-bottom: 16px; }
.opcard h3 { margin-bottom: 10px; }
.opcard p { color: var(--ink-dim); font-size: 14px; margin-bottom: 18px; }

/* ════════ LIFECYCLE 2026 ════════ */
.lifecycle__steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; max-width: var(--w-content); margin: 0 auto 30px; }
@media (max-width: 760px) { .lifecycle__steps { grid-template-columns: 1fr; } }
.lcard { padding: 34px 30px; border: 1px solid var(--hairline); border-radius: var(--radius); background: linear-gradient(165deg, rgba(255,122,41,0.06), var(--card) 60%); }
.lcard__n { color: var(--accent); font-size: 13px; }
.lcard h3 { margin: 14px 0 10px; }
.lcard p { color: var(--ink-dim); font-size: 14px; }
.lifecycle__note { text-align: center; color: var(--ink-dim); }

/* ════════ TRUSTPILOT STRIP ════════ */
.tpilot {
  display: inline-flex; align-items: center; gap: 14px;
  margin: 0 auto 40px; padding: 12px 22px; border-radius: 100px;
  border: 1px solid var(--hairline); background: var(--card);
  text-decoration: none; transition: border-color .3s; width: max-content;
}
.tpilot:hover { border-color: rgba(255,164,92,0.45); }
.tpilot__stars { color: #00b67a; letter-spacing: 2px; font-size: 15px; }
.tpilot__txt { color: var(--ink); font-size: 14px; }
.tpilot__txt b { font-weight: 600; }
.tpilot__arr { color: var(--ink-dim); }
@media (max-width: 760px) {
  .tpilot { width: auto; max-width: 100%; flex-wrap: wrap; justify-content: center; row-gap: 6px; border-radius: 24px; }
}

/* ════════ VIDEO TESTIMONIALS ════════ */
.vids { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; max-width: var(--w-content); margin: 0 auto 56px; }
@media (max-width: 760px) { .vids { grid-template-columns: 1fr; max-width: 380px; } }
.vidcard__thumb {
  position: relative; aspect-ratio: 4/5; border-radius: var(--radius);
  border: 1px solid var(--hairline); overflow: hidden;
  background:
    radial-gradient(60% 50% at 50% 40%, rgba(255,122,41,0.14), transparent 70%),
    var(--card);
  display: grid; place-items: center;
}
.vidcard__play {
  width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(120deg, #ff8c42, var(--accent)); color: #170b02;
  font-size: 18px; padding-left: 4px;
  box-shadow: 0 0 30px rgba(255,122,41,0.45);
}
.vidcard__tag { position: absolute; bottom: 12px; left: 0; right: 0; text-align: center; color: var(--ink-dim); font-size: 9px; }
.vidcard figcaption { margin-top: 14px; display: flex; flex-direction: column; gap: 3px; }
.vidcard figcaption b { font-family: var(--font-head); font-weight: 600; font-size: 14px; }
.vidcard figcaption .mono { color: var(--ink-dim); font-size: 9px; }

/* ════════ THE OFFER ════════ */
.offer__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; max-width: var(--w-mid); margin: 0 auto; }
@media (max-width: 860px) { .offer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .offer__grid { grid-template-columns: 1fr; } }
.ocard { padding: 30px 26px; border: 1px solid var(--hairline); border-radius: var(--radius); background: var(--card); }
.ocard__n { color: var(--accent); font-size: 13px; }
.ocard h3 { margin: 14px 0 10px; font-size: 19px; }
.ocard p { color: var(--ink-dim); font-size: 14px; }

/* ════════ WHO FOR / NOT FOR ════════ */
.forwho__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: var(--w-content); margin: 0 auto; }
@media (max-width: 760px) { .forwho__grid { grid-template-columns: 1fr; } }
.forwho__col { padding: 36px 34px; border-radius: var(--radius); border: 1px solid var(--hairline); }
.forwho__col--yes { background: linear-gradient(165deg, rgba(255,122,41,0.08), var(--card) 60%); border-color: rgba(255,164,92,0.35); }
.forwho__col--no { background: var(--card); }
.forwho__col .eyebrow { justify-content: flex-start; margin-bottom: 22px; }
.forwho__col ul { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.forwho__col li { position: relative; padding-left: 30px; color: #c9c4ba; font-size: 15px; line-height: 1.5; }
.forwho__col b { color: var(--ink); font-weight: 600; }
.forwho__col--yes li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.forwho__col--no li { color: var(--ink-dim); }
.forwho__col--no li::before { content: "✕"; position: absolute; left: 0; color: rgba(244,239,233,0.3); }

/* ════════ STICKY CTA BAR ════════ */
.stickycta {
  position: fixed; left: 50%; bottom: 18px; transform: translate(-50%, 160%);
  z-index: 150; display: flex; align-items: center; gap: 18px;
  padding: 10px 10px 10px 22px; border-radius: 100px;
  background: rgba(13, 12, 9, 0.9); backdrop-filter: blur(16px);
  border: 1px solid var(--hairline);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
  transition: transform 0.5s var(--ease); max-width: calc(100vw - 28px);
}
.stickycta.is-shown { transform: translate(-50%, 0); }
.stickycta__txt { color: var(--ink-dim); font-size: 10px; white-space: nowrap; }
@media (max-width: 640px) {
  .stickycta { left: 12px; right: 12px; transform: translateY(160%); justify-content: space-between; padding-left: 18px; }
  .stickycta.is-shown { transform: translateY(0); }
  .stickycta__txt { display: none; }
  .stickycta .btn { flex: 1; justify-content: center; }
}

/* ════════ MOBILE PERF GATING (Meta traffic is mobile) ════════ */
@media (max-width: 760px) {
  .cursor-glow { display: none !important; }
  #warp-canvas { display: none; }
  .finale { background:
    radial-gradient(60% 40% at 50% 30%, rgba(255,122,41,0.1), transparent 70%),
    #070605; }
  .gallery { display: none; }
  .rail { display: none; }
  .finale__hint { display: none; }
}

/* sticky CTA: shrink before it can reach the rail (641-820px) */
@media (max-width: 820px) {
  .stickycta__txt { display: none; }
}

/* narrow phones: stack the 0-HANDOFFS badge */
@media (max-width: 400px) {
  .flowstrip .panel__tag { margin-bottom: 12px; }
  .handoffs { position: static; display: inline-block; }
}

/* mobile: cap full-length email walls, tap to expand */
@media (max-width: 720px) {
  .redesign__after-frame, .bguide__email-frame, .tear2__email {
    max-height: 130vh; overflow: hidden; position: relative; cursor: pointer;
  }
  .redesign__after-frame::after, .bguide__email-frame::after, .tear2__email::after {
    content: '▾ TAP FOR THE FULL EMAIL'; position: absolute; left: 0; right: 0; bottom: 0; height: 140px;
    background: linear-gradient(transparent, rgba(11, 10, 8, 0.94));
    display: flex; align-items: flex-end; justify-content: center; padding-bottom: 14px;
    font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.18em; color: var(--ink-dim);
  }
  .is-email-open { max-height: none !important; }
  .is-email-open::after { display: none; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.2s !important; }
  .reveal { opacity: 1; transform: none; }
  .tear2.reveal .tnote { opacity: 1; transform: none; }
  .ledger.reveal .ledger__row { opacity: 1; transform: none; }
  .grain { display: none; }
  #warp-canvas, .ring-stage, .gallery__hint { display: none; }
}
