/* ════════════════════════════════════════════
   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;
  --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; }

/* 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; }
.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__sun--lg { width: 44px; height: 44px; }
.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 img {
  position: absolute; right: 0; top: 0; height: 100%; width: 68%;
  object-fit: cover; object-position: center right;
  filter: saturate(1.05) contrast(1.04);
}
.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(46px, 6.6vw, 96px);
  font-weight: 800;
  margin-bottom: 28px;
  max-width: 760px;
}
.hero__title .line { display: block; overflow: hidden; }
.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; }
.trust b, .trust ★ { color: var(--ink); }
.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 ════════ */
.services__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 860px) { .services__grid { grid-template-columns: 1fr; } }
.svc {
  position: relative; overflow: hidden;
  padding: 40px 36px 34px; border: 1px solid var(--hairline); border-radius: 16px;
  background: linear-gradient(160deg, rgba(255, 122, 41, 0.05), var(--card) 45%);
  transition: border-color 0.4s, transform 0.5s var(--ease);
}
.svc:hover { border-color: rgba(255, 122, 41, 0.4); transform: translateY(-5px); }
.svc__ghost {
  position: absolute; top: 18px; right: 26px;
  font-size: clamp(60px, 7vw, 96px); font-weight: 500; letter-spacing: 0;
  color: rgba(242, 239, 233, 0.05);
  font-family: var(--font-head); font-weight: 800;
}
.svc__icon {
  width: 46px; height: 46px; border-radius: 10px;
  border: 1px solid rgba(255, 122, 41, 0.4);
  display: grid; place-items: center; font-size: 19px; color: var(--accent-soft);
  margin-bottom: 22px; background: rgba(255, 122, 41, 0.06);
}
.svc h3 { margin-bottom: 12px; }
.svc p { color: var(--ink-dim); font-size: 15px; max-width: 400px; margin-bottom: 24px; }
.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;
}
.svc__arr { position: absolute; right: 28px; bottom: 22px; color: var(--ink-dim); font-size: 20px; transition: transform 0.35s var(--ease), color 0.3s; }
.svc:hover .svc__arr { transform: translateX(5px); color: var(--accent); }

/* ════════ 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: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(242, 239, 233, 0.14));
  outline: none; cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
  appearance: none; -webkit-appearance: none;
  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);
  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: clamp(48px, 6vw, 84px); 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__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
  filter: saturate(1.05);
}
.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; }
.words .eyebrow, .words h2 { max-width: 1320px; margin-left: auto; margin-right: auto; padding: 0 clamp(20px, 5vw, 72px); }
.words h2 { margin-bottom: 50px; }
.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__label { text-align: left !important; }
.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: 0; height: 300vh; position: relative; }
.gallery__sticky {
  position: sticky; top: 0; height: 100vh; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center; gap: 10px;
  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: clamp(380px, 52vh, 560px);
  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: max(100vw, 1400px); 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: 1.1fr 1.2fr 0.9fr;
  gap: clamp(30px, 4.5vw, 70px); align-items: center;
  min-height: 640px;
  transition: opacity 0.35s ease;
}
.redesign__stage.is-swapping { opacity: 0; }
@media (max-width: 1000px) {
  .redesign__stage { grid-template-columns: 1fr; min-height: 0; }
  .redesign__after { order: -1; }
}

.redesign__info { 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; text-align: center;
  align-self: end;
  transform: translateY(clamp(90px, 11vw, 160px));
}
.redesign__after-frame {
  position: relative; height: clamp(420px, 56vh, 600px);
  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;
  transform: translateY(0);
  transition: transform 7s linear;
}
.redesign__after-frame:hover img { transform: translateY(calc(-100% + clamp(420px, 56vh, 600px))); }
.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__caption { margin-top: 30px; color: #cfcabf; font-size: 9px; text-shadow: 0 1px 8px rgba(0,0,0,0.9); }

.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; height: clamp(320px, 42vh, 460px);
  border: 1px dashed rgba(255, 164, 92, 0.35); border-radius: 4px;
  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 img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: top;
  filter: grayscale(0.5) brightness(0.8);
}
.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: 16px; }
.exhibit__hint { color: var(--ink-dim); margin-bottom: 60px; }

.exhibit__hall {
  position: relative; z-index: 1;
  display: flex; gap: clamp(50px, 6vw, 100px);
  overflow-x: auto; scroll-snap-type: x proximity;
  padding: 70px clamp(20px, 8vw, 120px) 30px;
  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: -70px; transform: translateX(-50%);
  width: 320px; height: 360px; 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(200px, 19vw, 260px); 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; overflow: hidden; }
.observatory h2 { margin-bottom: 16px; }
.sky {
  position: relative; height: clamp(420px, 56vh, 640px); margin-top: 50px;
  border: 1px solid var(--hairline); border-radius: 22px;
  background:
    radial-gradient(50vw 30vw at 78% 100%, rgba(255, 122, 41, 0.1), transparent 65%),
    radial-gradient(40vw 26vw at 12% 0%, rgba(111, 91, 212, 0.05), transparent 60%),
    #070605;
  overflow: hidden;
}
.sky__lines { position: absolute; inset: 0; width: 100%; height: 100%; }
.sky__star {
  position: absolute; width: 2px; height: 2px; border-radius: 50%;
  background: rgba(244, 241, 234, 0.8);
  animation: star-tw 3.4s ease-in-out infinite;
}
@keyframes star-tw { 0%, 100% { opacity: 0.15; } 50% { opacity: 0.85; } }
.star-node {
  position: absolute; left: var(--x); top: var(--y); transform: translate(-50%, -50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  cursor: default; z-index: 2;
}
.star-node::before {
  content: ""; width: 11px; height: 11px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ffd2a8, var(--accent) 60%, #c64f0a);
  box-shadow: 0 0 16px rgba(255, 122, 41, 0.9), 0 0 44px rgba(255, 122, 41, 0.4);
  animation: node-pulse 3s ease-in-out infinite;
}
.star-node--big::before { width: 16px; height: 16px; }
@keyframes node-pulse { 50% { box-shadow: 0 0 26px rgba(255, 122, 41, 1), 0 0 70px rgba(255, 122, 41, 0.55); } }
.star-node b {
  font-family: var(--font-head); font-weight: 800; letter-spacing: -0.01em;
  font-size: clamp(17px, 1.9vw, 26px); color: var(--ink);
  transition: transform 0.35s var(--ease), color 0.3s;
}
.star-node span {
  font-size: 8px; letter-spacing: 0.18em; color: var(--ink-dim);
  opacity: 0; transform: translateY(-4px);
  transition: opacity 0.35s, transform 0.35s var(--ease);
  white-space: nowrap;
}
.star-node:hover b { transform: scale(1.18); color: var(--accent-soft); }
.star-node:hover span { opacity: 1; transform: none; }

/* ════════ 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%; } }

.svc, .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)); }

/* ════════ SHARED: sketch → final reveal pair ════════ */
.reveal-pair {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  gap: clamp(16px, 3vw, 44px); max-width: 1040px; margin: 0 auto;
}
@media (max-width: 760px) { .reveal-pair { grid-template-columns: 1fr; } .reveal-pair__arrow { transform: rotate(90deg); } }
.reveal-pair__side { position: relative; }
.reveal-pair__side img {
  width: 100%; border-radius: 14px; display: block;
  border: 1px solid var(--hairline);
  box-shadow: 0 30px 70px rgba(0,0,0,0.55);
}
.reveal-pair__side--final img {
  border-color: 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.15);
}
.reveal-pair__side figcaption { margin-top: 16px; text-align: center; color: var(--ink-dim); font-size: 10px; }
.reveal-pair__arrow { font-size: 28px; color: var(--accent); text-align: center; }

/* ════════ ART — sketch → painted ════════ */
.artwork { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: clamp(14px,2.5vw,40px); max-width: 1020px; margin: 0 auto; }
@media (max-width: 760px) { .artwork { grid-template-columns: 1fr; } .artwork__palette { flex-direction: row !important; transform: rotate(90deg); margin: 8px auto; } }
.artwork__side img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: top; border-radius: 14px; display: block; border: 1px solid var(--hairline); box-shadow: 0 26px 64px rgba(0,0,0,0.5); }
.artwork__side--final img { border-color: rgba(255,164,92,0.45); box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 60px rgba(255,122,41,0.18); }
.artwork__side figcaption { margin-top: 14px; text-align: center; color: var(--ink-dim); font-size: 10px; }
.artwork__palette { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.dab { width: 30px; height: 30px; border-radius: 50% 50% 48% 52% / 55% 50% 50% 45%; background: var(--c); box-shadow: 0 4px 14px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.08) inset; }
.dab:nth-child(2) { border-radius: 52% 48% 55% 45% / 48% 55% 45% 52%; }
.dab:nth-child(3) { border-radius: 48% 52% 50% 50% / 52% 48% 52% 48%; }
.artwork__brush { color: var(--accent); font-size: 22px; margin-top: 6px; }
.artwork__note { text-align: center; color: var(--ink-dim); margin-top: 34px; }

/* ════════ WE MAKE MONEY — annotated teardown ════════ */
.teardown { display: grid; grid-template-columns: 1fr 300px 1fr; gap: clamp(16px,2.5vw,36px); align-items: center; max-width: 1180px; margin: 0 auto 56px; }
@media (max-width: 900px) { .teardown { grid-template-columns: 1fr; max-width: 460px; } }
.teardown__email { order: 0; }
.teardown__email img { width: 100%; border-radius: 14px; display: block; border: 1px solid rgba(255,164,92,0.35); box-shadow: 0 30px 70px rgba(0,0,0,0.55); }
.teardown__col { display: flex; flex-direction: column; gap: clamp(18px,3vw,40px); }
@media (max-width: 900px) { .teardown__col--l { order: 1; } .teardown__col--r { order: 2; } .teardown__col { flex-direction: row; flex-wrap: wrap; } }
.anno { position: relative; padding: 4px 0; }
.anno b { display: block; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; color: var(--accent-soft); margin-bottom: 7px; }
.anno span { color: var(--ink-dim); font-size: 13px; line-height: 1.5; }
.anno--l { text-align: right; padding-right: 20px; }
.anno--r { text-align: left; padding-left: 20px; }
.anno::before { content:''; position:absolute; top:7px; width:7px; height:7px; border-radius:50%; background:var(--accent); box-shadow:0 0 10px var(--accent); }
.anno--l::before { right: 0; } .anno--r::before { left: 0; }
.anno--l::after, .anno--r::after { content:''; position:absolute; top:10px; width:14px; height:1px; background:linear-gradient(90deg,var(--accent-dim),transparent); }
.anno--l::after { right:-14px; background:linear-gradient(270deg,var(--accent-dim),transparent); }
.anno--r::after { left:-14px; }
@media (max-width: 900px) { .anno { flex:1 1 40%; text-align:left !important; padding:0 0 0 18px; } .anno--l::before,.anno--r::before { left:0; right:auto; } .anno--l::after,.anno--r::after { display:none; } }

.money__proof { display: grid; grid-template-columns: 1fr 1fr 1.2fr; gap: clamp(20px,3vw,44px); align-items: center; max-width: 1000px; margin: 0 auto; }
@media (max-width: 760px) { .money__proof { grid-template-columns: 1fr; } }
.mstat > .mono { color: var(--ink-dim); font-size: 10px; }
.mstat__bar { height: 8px; border-radius: 6px; background: rgba(255,255,255,0.06); margin: 10px 0; overflow: hidden; }
.mstat__bar span { display:block; height:100%; background: rgba(244,239,233,0.3); border-radius: 6px; }
.mstat__bar--good span { background: linear-gradient(90deg, #ff8c42, var(--accent)); }
.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: 4px; }
.money__line { font-family: var(--font-head); font-size: clamp(17px,1.8vw,22px); margin-bottom: 18px; }

/* ════════ BRANDING GUIDELINES PANEL ════════ */
.bguide { display: grid; grid-template-columns: 1.15fr auto 0.85fr; gap: clamp(20px,3.5vw,56px); align-items: start; max-width: 1140px; margin: 0 auto; }
@media (max-width: 900px) { .bguide { grid-template-columns: 1fr; } .bguide__arrow { transform: rotate(90deg); } }
.bsheet { border: 1px solid var(--hairline); border-radius: 18px; background: var(--card); padding: clamp(24px,2.6vw,38px); }
.bsheet__head { color: var(--ink-dim); letter-spacing: 0.26em; padding-bottom: 16px; border-bottom: 1px solid var(--hairline); margin-bottom: 22px; }
.bsheet__block { margin-bottom: 24px; }
.bsheet__label { color: var(--ink-dim); font-size: 9px; letter-spacing: 0.18em; margin-bottom: 12px; }
.bsheet__swatches { display: flex; gap: 10px; }
.sw { flex: 1; display: flex; flex-direction: column; gap: 5px; }
.sw i { height: 42px; border-radius: 7px; display: block; border: 1px solid rgba(255,255,255,0.08); }
.sw b { font-family: var(--font-head); font-size: 9px; letter-spacing: 0.06em; }
.sw em { font-family: var(--font-mono); font-style: normal; font-size: 8px; color: var(--ink-dim); }
.bsheet__type { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.bsheet__display { font-family: var(--font-head); font-weight: 800; font-size: 26px; line-height: 1.05; letter-spacing: -0.02em; }
.bsheet__body { font-size: 13px; line-height: 1.5; color: #c9c4ba; }
.bsheet__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.bsheet__logo { font-family: var(--font-head); font-weight: 800; letter-spacing: 0.2em; font-size: 19px; }
.bsheet__voice { font-family: var(--font-serif); font-style: italic; font-size: 17px; line-height: 1.3; color: var(--accent-soft); }
.bsheet__btns { display: flex; gap: 10px; flex-wrap: wrap; }
.bsheet__btn { font-family: var(--font-head); font-size: 10px; font-weight: 700; letter-spacing: 0.12em; padding: 10px 16px; border-radius: 8px; }
.bsheet__btn--p { background: #7b5cff; color: #fff; }
.bsheet__btn--s { border: 1px solid var(--hairline); color: var(--ink); }
.bguide__email img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: top; border-radius: 14px; display: block; 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 figcaption { margin-top: 14px; text-align: center; color: var(--ink-dim); font-size: 10px; }
.bguide__arrow { align-self: center; }

/* ════════ FUNNEL MAP ════════ */
.funnelmap { max-width: 1080px; margin: 0 auto 64px; }
.funnelmap__hand { display: block; width: clamp(220px, 34vw, 420px); margin: 0 auto -10px; mix-blend-mode: screen; opacity: 0.9; }
.funnelmap__flow { overflow-x: auto; scrollbar-width: none; padding: 6px 2px 10px; }
.funnelmap__flow::-webkit-scrollbar { display: none; }
.fnrow { display: grid; grid-template-columns: repeat(7, minmax(116px, 1fr)); gap: 10px; align-items: center; min-width: 880px; }
.fnrow--up { margin-bottom: 14px; }
.fnrow--down { margin-top: 14px; }
.fnslot { display: flex; justify-content: center; }
.fnnode {
  display: flex; flex-direction: column; align-items: center; gap: 5px; text-align: center;
  padding: 16px 10px; border-radius: 12px; font-family: var(--font-head); font-weight: 600;
  font-size: 12.5px; line-height: 1.2;
  background: #15130e; border: 1px solid var(--hairline); color: var(--ink);
}
.fnnode i { font-style: normal; font-size: 16px; color: var(--accent-soft); margin-bottom: 2px; }
.fnnode--accent { background: linear-gradient(120deg, #ff8c42, var(--accent)); color: #170b02; border-color: transparent; }
.fnnode--accent i { color: #170b02; }
.fnbranch {
  position: relative; display: inline-block; text-align: center;
  padding: 11px 14px; border-radius: 10px; font-family: var(--font-mono); font-size: 9.5px;
  letter-spacing: 0.06em; line-height: 1.5; color: var(--ink-dim);
  background: #0e0d0a; border: 1px dashed var(--hairline);
}
.fnrow--up .fnbranch::after, .fnrow--down .fnbranch::before {
  content: ''; position: absolute; left: 50%; width: 1px; height: 14px;
  background: repeating-linear-gradient(var(--accent-dim) 0 3px, transparent 3px 6px);
}
.fnrow--up .fnbranch::after { bottom: -14px; }
.fnrow--down .fnbranch::before { top: -14px; }

/* ════════ STRATEGY & DATA ════════ */
.opdata__grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; max-width: 1000px; 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: 1000px; 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 44px; 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); }
.words { text-align: center; }
.words h2 { text-align: center; }

/* ════════ VIDEO TESTIMONIALS ════════ */
.vids { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; max-width: 1000px; 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: 1100px; 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: 1000px; 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 { height: auto; padding: var(--section-pad) 0; }
  .gallery__sticky { position: static; height: auto; }
  .ring-stage { 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; }
  .grain { display: none; }
  #warp-canvas, .ring-stage { display: none; }
}

/* ════════════════════════════════════════════
   SALES-PAGE ADDITIONS — built from the Sunlo deck
   (self-contained: no external image assets)
   ════════════════════════════════════════════ */

:root { --radius: 16px; --section-pad: clamp(90px, 11vw, 150px); }

/* Hero media fallback (CSS, replaces the video) */
.hero__bg {
  position: absolute; right: 0; top: 0; height: 100%; width: 70%;
  background:
    radial-gradient(120% 100% at 82% 18%, rgba(255, 122, 41, 0.30), transparent 58%),
    radial-gradient(80% 80% at 98% 92%, rgba(204, 90, 20, 0.26), transparent 55%),
    radial-gradient(60% 60% at 60% 50%, rgba(255, 164, 92, 0.10), transparent 60%),
    linear-gradient(160deg, #1c140b 0%, #0b0a08 72%);
  filter: saturate(1.05);
  will-change: transform;
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(115deg, rgba(255,164,92,0.05) 0 1px, transparent 1px 64px);
  opacity: 0.7;
}

/* ════════ OUR JOURNEY — timeline ════════ */
.journey__founders { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.founder {
  display: inline-flex; align-items: center; gap: 13px;
  padding: 12px 20px 12px 12px; border-radius: 100px;
  border: 1px solid var(--hairline); background: var(--card);
}
.founder__av {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center; color: #170b02; font-weight: 600;
  font-family: var(--font-head); font-size: 14px;
  background: radial-gradient(circle at 32% 30%, #ffd2a8, var(--accent) 65%, #c64f0a);
}
.founder b { font-family: var(--font-head); font-weight: 600; font-size: 15px; display: block; }
.founder span { color: var(--ink-dim); font-size: 11px; font-family: var(--font-mono); letter-spacing: 0.12em; }
.timeline {
  position: relative; border-left: 1px solid var(--hairline);
  margin-left: 16px; display: flex; flex-direction: column; gap: clamp(34px, 4vw, 52px);
  padding-left: clamp(28px, 4vw, 44px);
}
.titem { position: relative; }
.titem::before {
  content: ""; position: absolute; top: 5px;
  left: calc(-1 * clamp(28px, 4vw, 44px) - 7px);
  width: 13px; height: 13px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ffd2a8, var(--accent) 60%, #c64f0a);
  box-shadow: 0 0 16px rgba(255, 122, 41, 0.75);
}
.titem__yr { font-family: var(--font-mono); color: var(--accent-soft); font-size: 13px; letter-spacing: 0.16em; }
.titem h3 { margin: 8px 0 10px; font-size: clamp(20px, 2.2vw, 27px); }
.titem p { color: var(--ink-dim); font-size: 15px; max-width: 600px; }
.titem b { color: var(--ink); font-weight: 600; }

/* ════════ Image-free PROCESS media (deployment + roadmap) ════════ */
.pstep__media--n {
  display: grid; place-items: center; padding: 30px;
  background:
    radial-gradient(circle at 50% 32%, rgba(255, 122, 41, 0.18), transparent 60%),
    #0a0805;
}
.pstep__panel { text-align: center; display: flex; flex-direction: column; gap: 6px; align-items: center; }
.pstep__bignum {
  font-family: var(--font-head); font-weight: 800; letter-spacing: -0.03em;
  font-size: clamp(64px, 11vw, 132px); line-height: 0.9;
  background: linear-gradient(160deg, #ffd2a8, var(--accent) 55%, #c64f0a);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.pstep__icon { font-size: 30px; color: var(--accent-soft); }
.pstep__cap { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em; color: var(--ink-dim); }

/* ════════ Image-free CASE media (stat panel) ════════ */
.case__media--stat {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; padding: 40px 30px; text-align: center;
  background:
    radial-gradient(70% 80% at 50% 30%, rgba(255, 122, 41, 0.16), transparent 65%),
    #0a0805;
}
.case__big {
  font-family: var(--font-head); font-weight: 800; letter-spacing: -0.03em;
  font-size: clamp(52px, 7vw, 88px); line-height: 0.92;
  background: linear-gradient(160deg, #ffd2a8, var(--accent) 55%, #c64f0a);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.case__big-sub { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; color: var(--ink-dim); max-width: 260px; }
.case__media--stat .case__mini {
  margin-top: 14px; display: flex; gap: 26px; flex-wrap: wrap; justify-content: center;
}
.case__media--stat .case__mini div { display: flex; flex-direction: column; gap: 3px; }
.case__media--stat .case__mini b { font-family: var(--font-head); font-weight: 700; font-size: 22px; color: var(--ink); }
.case__media--stat .case__mini span { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.14em; color: var(--ink-dim); }

/* Two-column deployment cards (reuse opdata grid, custom list) */
.deploy__list { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-top: 18px; }
.deploy__list li { position: relative; padding-left: 24px; color: #c9c4ba; font-size: 14.5px; }
.deploy__list li::before { content: "▪"; position: absolute; left: 0; color: var(--accent); }
.deploy__tag {
  display: inline-block; margin-top: 4px; padding: 6px 12px; border-radius: 100px;
  border: 1px solid rgba(255,122,41,0.4); background: rgba(255,122,41,0.07);
  color: var(--accent-soft); font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em;
}

/* ════════ DESIGNS — email mockup gallery (CSS, no assets) ════════ */
.designs__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .designs__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .designs__grid { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; } }
.emock {
  border: 1px solid var(--hairline); border-radius: 16px; overflow: hidden; background: var(--card);
  transition: transform 0.5s var(--ease), border-color 0.4s, box-shadow 0.5s var(--ease);
}
.emock:hover { transform: translateY(-6px); border-color: rgba(255,122,41,0.4); box-shadow: 0 26px 70px rgba(0,0,0,0.5), 0 0 40px rgba(255,122,41,0.12); }
.emock__bar { display: flex; align-items: center; gap: 6px; padding: 11px 14px; background: #0c0b08; border-bottom: 1px solid var(--hairline); }
.emock__dot { width: 8px; height: 8px; border-radius: 50%; background: #2a2823; }
.emock__subject { margin-left: 8px; color: var(--ink-dim); font-size: 9px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.emock__body {
  padding: 22px 20px 24px; display: flex; flex-direction: column; gap: 14px; min-height: 340px;
  background: linear-gradient(180deg, var(--tint, rgba(255,122,41,0.14)), #100e0a 62%);
}
.emock__brand { font-family: var(--font-head); font-weight: 800; letter-spacing: 0.18em; font-size: 13px; color: #fff; text-align: center; }
.emock__hero {
  border-radius: 12px; padding: 26px 18px; display: flex; flex-direction: column; gap: 12px; align-items: flex-start;
  background: var(--hero, linear-gradient(135deg, rgba(255,255,255,0.12), rgba(0,0,0,0.28)));
  border: 1px solid rgba(255,255,255,0.09);
}
.emock__tag { font-family: var(--font-mono); font-size: 8px; letter-spacing: 0.16em; color: #fff; opacity: 0.9; padding: 4px 9px; border: 1px solid rgba(255,255,255,0.45); border-radius: 100px; }
.emock__head { font-family: var(--font-head); font-weight: 800; font-size: 20px; line-height: 1.05; color: #fff; letter-spacing: -0.01em; }
.emock__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.emock__tile { aspect-ratio: 1 / 1; border-radius: 8px; background: linear-gradient(160deg, rgba(255,255,255,0.13), rgba(255,255,255,0.03)); border: 1px solid rgba(255,255,255,0.06); }
.emock__cta { align-self: center; padding: 11px 22px; border-radius: 8px; font-family: var(--font-head); font-weight: 700; font-size: 11px; letter-spacing: 0.08em; color: #170b02; background: linear-gradient(120deg, #ff8c42, var(--accent)); }
.emock figcaption { padding: 12px 14px; font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.14em; color: var(--ink-dim); border-top: 1px solid var(--hairline); background: #0c0b08; }
.designs__note { text-align: center; color: var(--ink-dim); margin-top: 38px; }

/* ════════ DESIGNS — real email screenshots gallery ════════ */
.dgallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 1000px) { .dgallery { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .dgallery { grid-template-columns: repeat(2, 1fr); } }
.dcard {
  position: relative; height: clamp(360px, 42vw, 440px); overflow: hidden;
  border: 1px solid var(--hairline); border-radius: 14px; background: var(--card);
  box-shadow: 0 18px 50px rgba(0,0,0,0.45);
  transition: transform 0.5s var(--ease), border-color 0.4s, box-shadow 0.5s var(--ease);
}
.dcard:hover { transform: translateY(-6px); border-color: rgba(255,164,92,0.4); box-shadow: 0 26px 70px rgba(0,0,0,0.6), 0 0 40px rgba(255,122,41,0.15); }
.dcard img { width: 100%; display: block; transform: translateY(0); transition: transform 7s linear; }
.dcard:hover img { transform: translateY(calc(-100% + clamp(360px, 42vw, 440px))); }
.dcard figcaption { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 12px; font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.14em; color: #d6d1c7; background: linear-gradient(0deg, rgba(8,7,5,0.94), transparent); }
.designs__note { text-align: center; color: var(--ink-dim); margin-top: 38px; }

/* ════════ OVERALL RESULTS — headline stat block ════════ */
.overall { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 860px) { .overall { grid-template-columns: repeat(2, 1fr); } }
.ostat { padding: clamp(28px,3vw,38px) clamp(22px,2.4vw,30px); border: 1px solid var(--hairline); border-radius: 16px; background: linear-gradient(165deg, rgba(255,122,41,0.08), var(--card) 60%); }
.ostat b { display: block; font-family: var(--font-head); font-weight: 800; letter-spacing: -0.03em; font-size: clamp(32px, 3.4vw, 46px); line-height: 1.04; white-space: nowrap;
  background: linear-gradient(160deg, #ffd2a8, var(--accent) 55%, #c64f0a); -webkit-background-clip: text; background-clip: text; color: transparent; }
.ostat span { display: block; margin-top: 12px; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em; color: var(--ink-dim); }

/* ════════ FOUNDER PHOTOS ════════ */
.founder__photo { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 1px solid rgba(255,164,92,0.45); }
.founders-photo { margin: 0 0 44px; }
.founders-photo img { width: 100%; max-width: 760px; border-radius: 18px; display: block; border: 1px solid var(--hairline); box-shadow: 0 30px 80px rgba(0,0,0,0.55); }

/* ════════ DECK IMAGE SLOTS (founders / results / flow map) ════════ */
.slot {
  border: 1px dashed rgba(255,164,92,0.45); border-radius: 18px;
  background: radial-gradient(60% 80% at 50% 30%, rgba(255,122,41,0.1), transparent 65%), var(--card);
  display: grid; place-items: center; text-align: center; padding: clamp(40px,6vw,72px) 26px; min-height: 220px;
}
.slot .slot__h { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; color: var(--accent-soft); display: block; margin-bottom: 10px; }
.slot p { color: var(--ink-dim); font-size: 13px; max-width: 380px; }
.deckimg { width: 100%; border-radius: 18px; border: 1px solid var(--hairline); display: block; box-shadow: 0 26px 70px rgba(0,0,0,0.5); }

/* ════════ CLOSING SLIDE ════════ */
.closing { text-align: center; }
.closing .eyebrow { justify-content: center; }
.closing h2 { margin-bottom: 18px; }
.closing__sub { color: #c9c4ba; max-width: 540px; margin: 0 auto 34px; font-size: 17px; }
.closing__founders { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 30px; }
.closing__contact { font-family: var(--font-head); font-weight: 600; font-size: clamp(18px,2.2vw,24px); color: var(--accent-soft); text-decoration: none; }
.closing__contact:hover { color: var(--accent); }

/* ════════ HERO VIDEO BACKGROUND ════════ */
.hero__media {
  background:
    radial-gradient(120% 100% at 82% 18%, rgba(255,122,41,0.28), transparent 58%),
    linear-gradient(160deg, #1c140b 0%, #0b0a08 72%);
}
/* Video sits on the right (like the original example), text on the left */
video#hero-img {
  position: absolute; right: 0; left: auto; top: 0;
  width: 64%; height: 100%; object-fit: cover; object-position: center;
  filter: saturate(1.06) contrast(1.03);
}
@media (max-width: 760px) {
  video#hero-img { width: 100%; opacity: 0.5; }
}
video#hero-img::after { content: none; }

/* ════════ FOUNDERS — real photos (from the deck) ════════ */
.founders-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; max-width: 600px; margin: 0 0 48px; }
@media (max-width: 520px) { .founders-photos { grid-template-columns: 1fr 1fr; } }
.fcard { border: 1px solid var(--hairline); border-radius: 16px; overflow: hidden; background: var(--card); transition: border-color 0.4s, transform 0.5s var(--ease); }
.fcard:hover { border-color: rgba(255,164,92,0.4); transform: translateY(-4px); }
.fcard img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; object-position: center 18%; display: block; background: #000; }
.fcard figcaption { padding: 14px 16px; }
.fcard b { font-family: var(--font-head); font-weight: 600; font-size: 15px; display: block; }
.fcard span { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; color: var(--ink-dim); }
.founder__av--photo { padding: 0; overflow: hidden; }
.founder__av--photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; display: block; }

/* ════════ CASE STUDY · real Klaviyo screenshots ════════ */
.case.case--full { grid-template-columns: 1fr !important; min-height: 0; }
.kshot { padding: 0 clamp(30px,4vw,56px) clamp(30px,4vw,56px); }
.kshot img { width: 100%; border-radius: 12px; display: block; border: 1px solid var(--hairline); box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.kshot figcaption { margin-top: 12px; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; color: var(--ink-dim); }

/* ════════ FLOW MAPS — real deck slides ════════ */
.flowmaps { display: flex; flex-direction: column; gap: 22px; margin: 6px 0 10px; }
.flowmap { border: 1px solid var(--hairline); border-radius: 16px; overflow: hidden; background: var(--card); box-shadow: 0 20px 50px rgba(0,0,0,0.4); transition: border-color 0.4s, transform 0.5s var(--ease); }
.flowmap:hover { border-color: rgba(255,164,92,0.35); transform: translateY(-3px); }
.flowmap img { width: 100%; display: block; }
.flowmap figcaption { padding: 12px 16px; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; color: var(--ink-dim); border-top: 1px solid var(--hairline); }

/* ════════ NATIVE FLOW COMPONENTS (rebuilt from the deck) ════════ */
.flowgroup { margin-top: clamp(44px, 5vw, 70px); }
.flowgroup__title { font-family: var(--font-head); font-weight: 800; letter-spacing: -0.02em; font-size: clamp(24px, 2.8vw, 34px); margin-bottom: 8px; }
.flowgroup__title b { color: var(--accent-soft); font-weight: 800; }
.flowgroup__sub { color: var(--ink-dim); font-size: 14px; margin-bottom: 30px; max-width: 620px; }
.flow { margin-bottom: 30px; }
.flow__head { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--hairline); }
.flow__folder { color: var(--accent); font-size: 15px; }
.flow__name { font-family: var(--font-head); font-weight: 700; letter-spacing: 0.06em; font-size: 13.5px; color: var(--accent-soft); text-transform: uppercase; }
.flow__trigger { font-family: var(--font-mono); font-size: 10px; color: var(--ink-dim); letter-spacing: 0.08em; margin-left: 4px; }
.flow__rail { display: grid; grid-template-columns: repeat(auto-fill, minmax(186px, 1fr)); gap: 13px; }
.eflow { border: 1px solid var(--hairline); border-radius: 12px; background: var(--card); padding: 15px 16px 17px; transition: border-color 0.35s, transform 0.4s var(--ease); }
.eflow:hover { border-color: rgba(255,122,41,0.4); transform: translateY(-3px); }
.eflow__n { display: inline-block; font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.14em; color: var(--accent-soft); border: 1px solid rgba(255,122,41,0.4); border-radius: 6px; padding: 4px 10px; margin-bottom: 12px; background: rgba(255,122,41,0.07); }
.eflow ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.eflow li { position: relative; padding-left: 14px; font-size: 12.5px; color: #c4bfb5; line-height: 1.42; }
.eflow li::before { content: "▪"; position: absolute; left: 0; color: var(--accent); font-size: 8px; top: 3px; }

/* ════════ EXAMPLE CLIENT REPORT ════════ */
.report { max-width: 1000px; margin: 0 auto; border: 1px solid var(--hairline); border-radius: 18px; overflow: hidden; background: var(--card); box-shadow: 0 30px 80px rgba(0,0,0,0.5); }
.report__bar { display: flex; align-items: center; gap: 8px; padding: 14px 20px; background: #0c0b08; border-bottom: 1px solid var(--hairline); }
.report__dot { width: 9px; height: 9px; border-radius: 50%; background: #2a2823; }
.report__title { margin-left: 10px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; color: var(--ink-dim); }
.report__pill { margin-left: auto; font-family: var(--font-mono); font-size: 10px; color: var(--accent-soft); border: 1px solid var(--hairline); border-radius: 100px; padding: 5px 12px; }
.report__body { padding: clamp(28px, 4vw, 48px); }
.report__intro { color: var(--ink-dim); font-size: 15px; margin-bottom: 26px; }
.report__h { font-family: var(--font-head); font-weight: 700; font-size: 15px; letter-spacing: 0.02em; margin: 24px 0 10px; color: var(--ink); }
.report__h:first-child { margin-top: 0; }
.report p { color: #c4bfb5; font-size: 14px; line-height: 1.65; margin-bottom: 8px; }
.report b, .report strong { color: var(--ink); font-weight: 600; }
.report .hl { color: var(--accent-soft); font-weight: 600; }
.report ul { list-style: none; display: flex; flex-direction: column; gap: 9px; margin: 6px 0 4px; }
.report ul li { position: relative; padding-left: 20px; color: #c4bfb5; font-size: 14px; line-height: 1.5; }
.report ul li::before { content: "▪"; position: absolute; left: 0; color: var(--accent); font-size: 9px; top: 4px; }
.report__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 8px 0 18px; }
@media (max-width: 720px) { .report__grid { grid-template-columns: repeat(2, 1fr); } }
.report__stat { border: 1px solid var(--hairline); border-radius: 12px; padding: 16px 16px; background: rgba(255,122,41,0.04); }
.report__stat b { display: block; font-family: var(--font-head); font-weight: 800; font-size: clamp(20px, 2.1vw, 26px); color: var(--accent-soft); letter-spacing: -0.01em; }
.report__stat span { display: block; margin-top: 5px; font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.12em; color: var(--ink-dim); }
