/* =============================================================================
   Twelve Creative — Restaurant Growth Funnel, Page 1
   Brand system from the 2025/2026 brand manual:
     Colour   Energy #E96A2C · White #EAEAE4 · Black #131C20 · artefact gradients
     Type     PP Object Sans — Heavy headlines (leading ×1, tracking 0),
              Regular ALL-CAPS details (tracking 75), Regular body (leading ×1.3),
              Regular ALL-CAPS buttons (tracking 25)
     Elements the T/C symbol, the "one of the box" frame, contour textures
   ============================================================================= */

@font-face { font-family: "PP Object Sans"; src: url("/assets/fonts/PPObjectSans-Regular.otf") format("opentype"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "PP Object Sans"; src: url("/assets/fonts/PPObjectSans-Bold.otf") format("opentype"); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: "PP Object Sans"; src: url("/assets/fonts/PPObjectSans-Heavy.otf") format("opentype"); font-weight: 900; font-style: normal; font-display: swap; }

:root {
  --energy: #E96A2C;
  --energy-deep: #C4521C;
  --white: #EAEAE4;
  --black: #131C20;
  --ink: #0E1519;
  --ember: #5A2C15;
  --rust: #A2461B;
  --white-70: rgba(234, 234, 228, 0.72);
  --white-50: rgba(234, 234, 228, 0.5);
  --white-20: rgba(234, 234, 228, 0.18);
  --white-10: rgba(234, 234, 228, 0.09);
  --black-70: rgba(19, 28, 32, 0.72);
  --black-50: rgba(19, 28, 32, 0.5);
  --black-15: rgba(19, 28, 32, 0.15);
  --font: "PP Object Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --track-detail: 0.075em;          /* tracking 75 */
  --track-button: 0.025em;          /* tracking 25 */
  --radius: 14px;
  --radius-sm: 6px;
  --container: 1320px;
  --measure: 40rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
body {
  margin: 0; font-family: var(--font); font-weight: 400; font-size: 1.0625rem; line-height: 1.3;
  color: var(--white); background: var(--black); overflow-x: hidden;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
p { margin: 0; }
h1, h2, h3 { margin: 0; font-weight: 900; }
ul, ol { margin: 0; padding: 0; list-style: none; }
.svg-defs { position: absolute; width: 0; height: 0; overflow: hidden; }
:focus-visible { outline: 2px solid var(--energy); outline-offset: 3px; }
::selection { background: var(--energy); color: var(--black); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.container--narrow { max-width: 920px; }
@media (min-width: 900px) { .container { padding: 0 3rem; } }

/* ------------------------------------------------------------ typography */
.display { font-size: clamp(2.7rem, 6.4vw, 5.6rem); line-height: 0.96; letter-spacing: -0.02em; }
.headline { font-size: clamp(2rem, 4.3vw, 3.8rem); line-height: 1; letter-spacing: -0.015em; max-width: 18ch; }
.headline em, .display em, .statement em { font-style: normal; color: var(--energy); }
.section--light .headline em { color: var(--energy); }
h3 { font-size: clamp(1.25rem, 1.6vw, 1.5rem); line-height: 1.05; letter-spacing: -0.01em; }
.lead { font-size: clamp(1.125rem, 1.5vw, 1.375rem); line-height: 1.35; color: var(--white-70); max-width: var(--measure); }
.lead--dark { color: var(--black-70); }
.body { font-size: 1.0625rem; line-height: 1.45; color: var(--white-70); max-width: var(--measure); }
.body--dark { color: var(--black-70); }
.label {
  font-size: 0.75rem; line-height: 1.3; font-weight: 400; text-transform: uppercase; letter-spacing: var(--track-detail);
  color: var(--white-70);
}
.label--muted { color: var(--black-50); }
.label--center { text-align: center; }
.label--rule { display: inline-flex; align-items: center; gap: 0.9rem; color: var(--white); }
.label--rule::before { content: ""; width: 2.25rem; height: 1px; background: var(--energy); }
.chip {
  display: inline-block; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: var(--track-detail);
  line-height: 1; padding: 0.5rem 0.7rem; border: 1px solid var(--white-50); border-radius: var(--radius-sm); color: var(--white);
}
.chip--dark { border-color: var(--black); color: var(--black); }
@media (max-width: 420px) { .chip { font-size: 0.64rem; line-height: 1.35; padding: 0.4rem 0.6rem; } }
.section--light .chip { border-color: var(--black); color: var(--black); }
.statement { font-size: clamp(1.5rem, 2.6vw, 2.25rem); font-weight: 900; line-height: 1.05; letter-spacing: -0.01em; max-width: 26ch; color: var(--black); margin-top: 2.5rem; }

/* --------------------------------------------------------------- buttons */
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.75rem;
  min-height: 3.25rem; padding: 0.95rem 1.6rem; border-radius: var(--radius-sm);
  background: var(--energy); color: var(--white); border: 1px solid var(--energy);
  font: 400 0.875rem/1 var(--font); text-transform: uppercase; letter-spacing: var(--track-button);
  text-decoration: none; cursor: pointer; position: relative; overflow: hidden; isolation: isolate;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), color 0.4s var(--ease);
}
.button::before {
  content: ""; position: absolute; inset: 0; background: var(--white); transform: translateY(101%); z-index: -1;
  transition: transform 0.55s var(--ease);
}
.button::after {
  content: "→"; font-size: 1rem; line-height: 1; transition: transform 0.5s var(--ease);
}
.button:hover, .button:focus-visible { color: var(--black); transform: translateY(-2px); box-shadow: 0 18px 40px -18px rgba(233, 106, 44, 0.65); }
.button:hover::before, .button:focus-visible::before { transform: translateY(0); }
.button:hover::after { transform: translateX(4px); }
.button--primary { min-height: 3.6rem; padding: 1.1rem 1.8rem; font-size: 0.9375rem; }
.button--small { min-height: 2.6rem; padding: 0.7rem 1.1rem; font-size: 0.75rem; }
.button--small::after { content: none; }
.cta-support { font-size: 0.9375rem; line-height: 1.4; color: var(--white-50); margin-top: 1rem; max-width: 34rem; }
.cta-support--center { text-align: center; margin: 1.5rem auto 0; }
.cta-support a { color: var(--white-70); }

/* ------------------------------------------------------------------ nav */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50; height: var(--nav-h);
  background: linear-gradient(to bottom, rgba(19, 28, 32, 0.85), rgba(19, 28, 32, 0));
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.nav.is-scrolled { background: rgba(19, 28, 32, 0.82); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); box-shadow: 0 1px 0 var(--white-10); }
.nav__inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.lockup { display: inline-flex; align-items: center; gap: 0.7rem; text-decoration: none; color: var(--energy); }
.lockup__mark { width: 2.1rem; height: 1.25rem; }
.lockup__word { width: 148px; height: auto; }
.lockup--footer .lockup__word { width: 132px; }

/* ----------------------------------------------------------- backgrounds */
.grain {
  position: absolute; inset: 0; pointer-events: none; z-index: 1; opacity: 0.07; mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.9 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
.section__bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.section__gradient { position: absolute; inset: -20%; }
.section__gradient--left { background: radial-gradient(60% 70% at 12% 80%, rgba(233, 106, 44, 0.55) 0%, rgba(162, 70, 27, 0.35) 25%, rgba(90, 44, 21, 0.2) 45%, rgba(19, 28, 32, 0) 70%); }
.section__gradient--right { background: radial-gradient(55% 70% at 92% 20%, rgba(233, 106, 44, 0.5) 0%, rgba(162, 70, 27, 0.32) 25%, rgba(90, 44, 21, 0.18) 45%, rgba(19, 28, 32, 0) 70%); }
.section__gradient--center { background: radial-gradient(60% 55% at 50% 50%, rgba(233, 106, 44, 0.22) 0%, rgba(162, 70, 27, 0.12) 35%, rgba(19, 28, 32, 0) 70%); }
.section__gradient--bottom { background: radial-gradient(70% 60% at 50% 110%, rgba(233, 106, 44, 0.6) 0%, rgba(162, 70, 27, 0.35) 30%, rgba(90, 44, 21, 0.18) 50%, rgba(19, 28, 32, 0) 75%); }

/* ----------------------------------------------------------------- hero */
.hero { position: relative; padding: calc(var(--nav-h) + 4.5rem) 0 5rem; overflow: hidden; background: var(--black); }
.hero__bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero__gradient {
  position: absolute; inset: -30%;
  background:
    radial-gradient(55% 60% at 88% 92%, rgba(233, 106, 44, 0.95) 0%, rgba(196, 82, 28, 0.7) 18%, rgba(120, 55, 24, 0.45) 38%, rgba(19, 28, 32, 0) 66%),
    radial-gradient(40% 45% at 20% 15%, rgba(38, 50, 56, 0.9) 0%, rgba(19, 28, 32, 0) 60%);
  animation: breathe 22s var(--ease) infinite alternate;
  will-change: transform;
}
.hero__glow {
  position: absolute; inset: 0;
  background: radial-gradient(520px 520px at var(--mx, 70%) var(--my, 60%), rgba(233, 106, 44, 0.18), rgba(233, 106, 44, 0) 70%);
  transition: opacity 0.6s var(--ease); opacity: 0;
}
.hero.has-pointer .hero__glow { opacity: 1; }
@keyframes breathe {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  50%  { transform: translate3d(-3%, 2%, 0) scale(1.06); }
  100% { transform: translate3d(2%, -3%, 0) scale(1.02); }
}
.hero__grid { position: relative; z-index: 2; display: grid; gap: 2.75rem 4rem; align-items: center; }
.hero__copy { display: grid; gap: 1.5rem; justify-items: start; }
.hero__cta { display: grid; gap: 0.25rem; justify-items: start; }
.hero__media { width: 100%; max-width: 440px; margin: 0 auto; }
@media (min-width: 960px) {
  .hero { min-height: 100vh; display: flex; align-items: center; padding-bottom: 6rem; }
  .hero__grid { grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); grid-template-rows: auto auto; column-gap: 5rem; }
  .hero__copy { grid-column: 1; grid-row: 1; align-self: end; }
  .hero__cta { grid-column: 1; grid-row: 2; align-self: start; }
  .hero__media { grid-column: 2; grid-row: 1 / span 2; max-width: 470px; margin: 0 0 0 auto; padding-right: 8%; }
}
@media (min-width: 1280px) { .hero__media { max-width: 500px; } }

/* ----------------------------------------------- "one of the box" frame */
.frame { position: relative; }
.frame > svg.frame__svg { position: absolute; top: 0; left: 0; overflow: visible; pointer-events: none; z-index: 3; color: var(--energy); }
.frame__svg path { fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; vector-effect: non-scaling-stroke; }
.frame--hang { margin-bottom: 0; }
.section--light .frame > svg.frame__svg { color: var(--black); }

/* ------------------------------------------------------------------ VSL */
.vsl { width: 100%; }
.vsl__frame {
  position: relative; width: 100%; aspect-ratio: 1080 / 1350;
  background: var(--ink); border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 40px 80px -40px rgba(0, 0, 0, 0.8);
}
@supports not (aspect-ratio: 1 / 1) { .vsl__frame { height: 0; padding-top: 125%; } }
.vsl__frame > video, .vsl__frame > iframe, .vsl__frame > .vsl__placeholder { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.vsl__frame > video { object-fit: cover; background: var(--ink); }
.vsl__placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 2rem;
  background:
    radial-gradient(70% 50% at 50% 115%, rgba(233, 106, 44, 0.85) 0%, rgba(162, 70, 27, 0.5) 30%, rgba(19, 28, 32, 0) 70%),
    linear-gradient(180deg, #1A2429 0%, #131C20 60%);
}
.vsl__header {
  position: absolute; top: 1.1rem; left: 1.2rem; right: 1.2rem; display: flex; justify-content: space-between;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.01em;
}
.vsl__placeholder-text { position: relative; font-size: clamp(1.1rem, 1.6vw, 1.4rem); font-weight: 900; letter-spacing: -0.01em; line-height: 1.1; }
.vsl__meta { position: relative; margin-top: 0.75rem; font-size: 0.7rem; text-transform: uppercase; letter-spacing: var(--track-detail); color: var(--white-70); }
.vsl__mark { position: absolute; bottom: 1.2rem; left: 1.2rem; width: 2.4rem; height: 1.4rem; color: var(--white); }
.vsl__transcript { margin: 1rem 0 0; }
.vsl__transcript summary { cursor: pointer; font-size: 0.75rem; text-transform: uppercase; letter-spacing: var(--track-detail); color: var(--white-70); }
.vsl__transcript-body { white-space: pre-wrap; margin-top: 0.75rem; color: var(--white-70); font-size: 0.95rem; }

/* -------------------------------------------------------------- sections */
.section { position: relative; padding: 6rem 0; }
@media (min-width: 900px) { .section { padding: 8rem 0; } }
.section--light { background: var(--white); color: var(--black); }
.section--dark { background: var(--black); color: var(--white); overflow: hidden; }
.section--dark > .container { position: relative; z-index: 2; }
.section__head { display: grid; gap: 1.25rem; justify-items: start; margin-bottom: 3rem; }
.section__head--center { justify-items: center; text-align: center; }
.section__head--center .headline { max-width: 16ch; }
.section__head--center .body { max-width: 34rem; }
.section__foot { display: grid; gap: 1rem; margin-top: 3rem; max-width: var(--measure); }
.section__cta { margin-top: 3rem; }

/* --------------------------------------------------------------- results */
.results { display: grid; gap: 1.25rem; }
@media (min-width: 760px) { .results { grid-template-columns: 1fr 1fr; gap: 1.5rem; } }
.result__inner {
  position: relative; overflow: hidden; border-radius: var(--radius); padding: 2.25rem 2rem 2rem; min-height: 320px;
  display: flex; flex-direction: column; justify-content: flex-end; color: var(--white);
  background:
    radial-gradient(90% 80% at 100% 100%, rgba(233, 106, 44, 1) 0%, rgba(196, 82, 28, 0.85) 20%, rgba(110, 50, 22, 0.6) 45%, rgba(19, 28, 32, 0) 75%),
    linear-gradient(160deg, #1A2429 0%, #131C20 55%, #2A1A12 100%);
  transition: transform 0.7s var(--ease), box-shadow 0.7s var(--ease);
}
.result:hover .result__inner { transform: translateY(-6px); box-shadow: 0 40px 70px -40px rgba(19, 28, 32, 0.7); }
.result__figure { font-size: clamp(4rem, 8vw, 7rem); font-weight: 900; line-height: 0.9; letter-spacing: -0.03em; }
.result__caption { margin-top: 0.9rem; font-size: 1.125rem; line-height: 1.3; color: var(--white-70); max-width: 22ch; }
.result__mark { position: absolute; top: 1.5rem; right: 1.5rem; width: 3.6rem; height: 2.1rem; color: var(--white-50); }
@media (min-width: 900px) { .result__inner { min-height: 400px; padding: 2.5rem; } }


/* --------------------------------------------------------------- founder */
.founder__grid { display: grid; gap: 3rem; align-items: center; }
.founder__media { max-width: 420px; width: 100%; margin: 0 auto; }
.founder__copy { display: grid; gap: 1.25rem; justify-items: start; }
@media (min-width: 900px) {
  .founder__grid { grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: 6rem; }
  .founder__media { margin: 0; padding-right: 10%; }
}
.portrait { position: relative; margin: 0; aspect-ratio: 4 / 5; border-radius: var(--radius); overflow: hidden; background: var(--ink); filter: grayscale(1) contrast(1.05); }
.portrait img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 8%; }
.portrait.is-missing img { display: none; }
.portrait__fallback {
  position: absolute; inset: 0; display: none; align-items: center; justify-content: center;
  background: radial-gradient(80% 60% at 50% 110%, rgba(233, 106, 44, 0.9) 0%, rgba(162, 70, 27, 0.5) 35%, rgba(19, 28, 32, 0) 75%), linear-gradient(180deg, #1A2429 0%, #131C20 100%);
}
.portrait.is-missing .portrait__fallback { display: flex; }
.portrait__fallback svg { width: 38%; height: 30%; color: var(--white); }
.portrait__caption {
  position: absolute; left: 1.2rem; right: 1.2rem; bottom: 1.1rem; display: flex; justify-content: space-between; align-items: baseline;
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: var(--track-detail); color: var(--white);
}
.portrait__caption span:first-child { font-weight: 700; }
.portrait__caption span:last-child { color: var(--white-70); }

/* ---------------------------------------------------------------- cards */
.cards { display: grid; gap: 1rem; counter-reset: card; }
@media (min-width: 760px) { .cards { grid-template-columns: 1fr 1fr; gap: 1.25rem; } }
.card {
  position: relative; padding: 2rem 1.75rem 1.9rem; border-radius: var(--radius); background: rgba(19, 28, 32, 0.035);
  border: 1px solid var(--black-15); overflow: hidden; display: grid; gap: 0.9rem; align-content: start;
  transition: transform 0.6s var(--ease), background 0.6s var(--ease), border-color 0.6s var(--ease);
}
.card::before { content: ""; position: absolute; left: 0; top: 0; width: 3px; height: 0; background: var(--energy); transition: height 0.6s var(--ease); }
.card:hover { transform: translateY(-4px); background: rgba(19, 28, 32, 0.06); border-color: var(--black-50); }
.card:hover::before { height: 100%; }
.card__index { font-size: 0.75rem; font-weight: 700; letter-spacing: var(--track-detail); color: var(--energy); }
.card h3 { max-width: 20ch; }
.card p { font-size: 1rem; line-height: 1.45; color: var(--black-70); max-width: 36ch; }

/* -------------------------------------------------------------- divider */
.divider { display: flex; align-items: flex-start; margin-top: 3.5rem; color: var(--energy); }
.divider span { flex: 1; height: 1px; background: currentColor; margin-top: 1px; }
.divider__dip { flex: 0 0 auto; width: 160px; height: 74px; }
.divider__dip path { fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; vector-effect: non-scaling-stroke; }
@media (max-width: 600px) { .divider__dip { width: 110px; height: 50px; } }

/* ---------------------------------------------------------------- steps */
.steps { display: grid; gap: 1.5rem; }
@media (min-width: 860px) { .steps { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }
.step { position: relative; padding-top: 1.5rem; border-top: 1px solid var(--white-20); display: grid; gap: 0.9rem; align-content: start; }
.step::before { content: ""; position: absolute; top: -1px; left: 0; height: 1px; width: 0; background: var(--energy); transition: width 1.2s var(--ease) 0.2s; }
.step.is-in::before { width: 100%; }
.step__index { font-size: clamp(2rem, 3vw, 2.75rem); font-weight: 900; line-height: 1; letter-spacing: -0.02em; color: var(--energy); }
.step p { font-size: 1rem; line-height: 1.45; color: var(--white-70); max-width: 34ch; }
.note { position: relative; margin-top: 3.5rem; padding: 2rem 2rem 2rem; display: grid; gap: 1rem; justify-items: start; max-width: 720px; border-radius: var(--radius); background: rgba(234, 234, 228, 0.03); }
.note > .frame { position: absolute; inset: 0; pointer-events: none; }
.note__copy { font-size: 1.125rem; line-height: 1.4; color: var(--white); max-width: 32rem; }

/* ------------------------------------------------------------------ faq */
.fit__grid { display: grid; gap: 3rem; align-items: start; }
@media (min-width: 900px) { .fit__grid { grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 5rem; } }
.fit__intro { display: grid; gap: 1.25rem; justify-items: start; }
.faq { border-top: 1px solid var(--black); }
.faq__item { border-bottom: 1px solid var(--black-15); }
.faq__item summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.35rem 0; font-size: clamp(1.05rem, 1.4vw, 1.25rem); font-weight: 900; line-height: 1.15; letter-spacing: -0.01em;
  transition: color 0.4s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; flex: 0 0 auto; width: 2rem; height: 2rem; border: 1px solid var(--black); border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center; font-weight: 400; font-size: 1.1rem;
  transition: transform 0.5s var(--ease), background 0.4s var(--ease), color 0.4s var(--ease);
}
.faq__item[open] summary { color: var(--energy); }
.faq__item[open] summary::after { transform: rotate(45deg); background: var(--energy); border-color: var(--energy); color: var(--white); }
.faq__body { padding: 0 0 1.5rem; max-width: 36rem; }
.faq__body p { color: var(--black-70); line-height: 1.45; }
.faq__item[open] .faq__body { animation: faq-in 0.5s var(--ease); }
@keyframes faq-in { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* ------------------------------------------------------------ application */
.application { position: relative; margin-top: 1rem; }
.application__embed { width: 100%; min-height: var(--embed-height, 640px); border-radius: var(--radius); overflow: hidden; background: var(--white); }
.application__embed[hidden] { display: none; }
.application__embed iframe { display: block; width: 100%; border: 0; }
.application__missing { padding: 2rem; border-radius: var(--radius); background: rgba(234, 234, 228, 0.05); color: var(--white-70); text-align: center; font-size: 0.95rem; }

/* --------------------------------------------------------------- footer */
.footer { background: var(--ink); padding: 2.5rem 0; border-top: 1px solid var(--white-10); }
.footer__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem 2rem; }
.footer .label a { text-decoration: none; }
.footer .label a:hover { color: var(--energy); }

/* ----------------------------------------------------------------- motion */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity 0.9s var(--ease), transform 1s var(--ease); transition-delay: var(--reveal-delay, 0ms); will-change: opacity, transform; }
[data-reveal].is-in { opacity: 1; transform: none; }
.split .word { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: 0.14em; margin-bottom: -0.14em; }
.split .word > span { display: inline-block; transform: translateY(110%); transition: transform 1s var(--ease); transition-delay: calc(var(--i) * 45ms); }
.split.is-in .word > span { transform: none; }
.skip-link { position: absolute; left: -999px; top: 0.5rem; z-index: 100; background: var(--energy); color: var(--white); padding: 0.5rem 0.75rem; border-radius: var(--radius-sm); }
.skip-link:focus { left: 0.5rem; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .split .word > span { transform: none; transition: none; }
  .hero__gradient { animation: none; }
  .frame__svg path { stroke-dasharray: none !important; stroke-dashoffset: 0 !important; }
  .step::before { transition: none; }
}

/* Motion off: ?motion=off (QA) or prefers-reduced-motion, flagged on <html> before first paint. */
.no-motion, .no-motion body { scroll-behavior: auto; }
.no-motion [data-reveal] { opacity: 1; transform: none; transition: none; }
.no-motion .split .word > span { transform: none; transition: none; }
.no-motion .hero__gradient { animation: none; }
.no-motion .frame__svg path { stroke-dasharray: none !important; stroke-dashoffset: 0 !important; transition: none !important; }
.no-motion .step::before { width: 100%; transition: none; }

/* ------------------------------------------------------- energy pulse
   A breathing orange core with slow expanding rings. Transform/opacity only. */
.pulse { position: absolute; pointer-events: none; width: 72vmax; height: 72vmax; right: -24vmax; bottom: -30vmax; }
@media (min-width: 960px) { .pulse--hero { width: 82vmax; height: 82vmax; right: -14vmax; bottom: -30vmax; } }
.pulse--apply { width: 60vmax; height: 60vmax; left: 50%; right: auto; bottom: -38vmax; transform: translateX(-50%); }
.pulse__core {
  position: absolute; inset: 18%; border-radius: 50%;
  background: radial-gradient(circle, rgba(233, 106, 44, 0.95) 0%, rgba(233, 106, 44, 0.5) 22%, rgba(162, 70, 27, 0.22) 44%, rgba(19, 28, 32, 0) 68%);
  filter: blur(18px); animation: pulse-core 7s ease-in-out infinite; will-change: transform, opacity;
}
.pulse__ring {
  position: absolute; inset: 0; border-radius: 50%; opacity: 0;
  border: 1px solid rgba(233, 106, 44, 0.65);
  box-shadow: 0 0 70px rgba(233, 106, 44, 0.16), inset 0 0 70px rgba(233, 106, 44, 0.1);
  animation: pulse-ring 9s cubic-bezier(0.2, 0.6, 0.3, 1) infinite; will-change: transform, opacity;
}
.pulse__ring:nth-of-type(2) { animation-delay: 3s; }
.pulse__ring:nth-of-type(3) { animation-delay: 6s; }
@keyframes pulse-core { 0%, 100% { transform: scale(1); opacity: 0.85; } 50% { transform: scale(1.12); opacity: 1; } }
@keyframes pulse-ring { 0% { transform: scale(0.32); opacity: 0; } 10% { opacity: 0.75; } 100% { transform: scale(1.12); opacity: 0; } }
.no-motion .pulse__core, .no-motion .pulse__ring { animation: none; }
.no-motion .pulse__ring { opacity: 0.35; transform: scale(0.7); }
.no-motion .pulse__ring:nth-of-type(2) { transform: scale(0.95); opacity: 0.2; }
.no-motion .pulse__ring:nth-of-type(3) { display: none; }

/* ----------------------------------------------------------------- logos
   Large white logo grid after the video, with a spaced-caps title. */
.logos { padding: 4.5rem 0 4rem; }
.logos__title {
  text-align: center; margin: 0 auto 3rem; max-width: 24ch;
  font-size: clamp(1.05rem, 2vw, 1.5rem); font-weight: 900; line-height: 1.2; letter-spacing: 0.16em; text-transform: uppercase; color: var(--energy);
}
.logos__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.75rem 1.5rem; align-items: center; justify-items: center; max-width: 1120px; margin: 0 auto; }
@media (max-width: 759px) { .logos__item:last-child:nth-child(odd) { grid-column: 1 / -1; } .logos__item:last-child:nth-child(odd) img { width: calc(50% - 0.75rem); } }
@media (min-width: 760px) { .logos__grid { grid-template-columns: repeat(5, 1fr); gap: 2.75rem 2rem; } }
.logos__item { display: flex; align-items: center; justify-content: center; width: 100%; }
.logos__item img { width: 100%; max-width: 190px; height: auto; max-height: 82px; object-fit: contain; }
@media (min-width: 760px) { .logos__item img { max-width: 200px; max-height: 88px; } }
@media (min-width: 1100px) { .logos__item img { max-width: 210px; max-height: 92px; } }
.logos__note { margin-top: 3.5rem; color: var(--white-50); }
@media (prefers-reduced-motion: reduce) { .pulse__core, .pulse__ring { animation: none; } }
