/* =============================================================================
   SENOVA — HOME (marketing landing).  /home  →  public/home.html
   -----------------------------------------------------------------------------
   A marketing surface built ON the existing Ink & Ivory design system
   (senova-ui.css owns every colour, font and radius token used here). Nothing
   below invents a palette: --sn-bg / --sn-ink / --sn-accent / --sn-hairline and
   the Source Serif 4 + Archivo + Roboto Mono stack are the studio's own.

   What IS new here is the marketing RHYTHM: much larger vertical air, a single
   narrow measure for every headline, one accent per screen, hairline cards with
   big soft radii, and alternating media/text rows. Dark ("studio") is the
   default ground because that is what the studio itself looks like; the light
   theme rides the same tokens and is handled by senova-ui.

   Everything is prefixed .hm-. Nothing here leaks into /studio.
   ========================================================================== */

.hm {
  --hm-maxw: 1140px;
  --hm-gutter: clamp(20px, 5vw, 40px);
  --hm-sec: clamp(84px, 9vw, 152px);      /* section rhythm — the kinso-grade air */
  --hm-r-lg: 22px;                         /* big soft media radius */
  --hm-r-md: 16px;
  --hm-r-sm: 11px;
  --hm-line: color-mix(in srgb, var(--sn-hairline) 100%, transparent);
  --hm-glass: color-mix(in srgb, var(--sn-surface) 55%, transparent);

  background: var(--sn-bg);
  color: var(--sn-ink);
  font-family: var(--sn-sans);
  overflow-x: clip;
}
.hm *, .hm *::before, .hm *::after { box-sizing: border-box; }

.hm-wrap { width: 100%; max-width: var(--hm-maxw); margin-inline: auto; padding-inline: var(--hm-gutter); }
.hm-sec  { padding-block: var(--hm-sec); }
.hm-sec--tight { padding-block: clamp(56px, 6vw, 96px); }
.hm-rule { border: 0; border-top: 1px solid var(--hm-line); margin: 0; }

/* --------------------------------------------------------------------------
   TYPE — one serif display voice, one sans body voice, one mono overline.
   -------------------------------------------------------------------------- */
.hm-eyebrow {
  font: 600 0.6875rem/1 var(--sn-mono);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sn-accent-ink);
  margin: 0 0 18px;
}
.hm-h1, .hm-h2, .hm-h3 {
  font-family: var(--sn-serif);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--sn-ink);
  margin: 0;
  text-wrap: balance;
}
.hm-h1 { font-size: clamp(2.6rem, 1.5rem + 4.4vw, 4.75rem); }
.hm-h2 { font-size: clamp(2rem, 1.35rem + 2.5vw, 3.125rem); line-height: 1.08; }
.hm-h3 { font-size: clamp(1.5rem, 1.2rem + 1.1vw, 2rem); line-height: 1.14; }
.hm-h1 em, .hm-h2 em, .hm-h3 em { font-style: italic; color: var(--sn-accent-ink); }

.hm-lead {
  font-size: clamp(1.0625rem, 1rem + 0.35vw, 1.25rem);
  line-height: 1.62;
  color: var(--sn-ink-2);
  margin: 22px 0 0;
  max-width: 56ch;
  text-wrap: pretty;
}
.hm-note { font-size: var(--sn-meta); color: var(--sn-ink-3); margin: 0; }

/* --------------------------------------------------------------------------
   BUTTONS — pill, calm, one ember primary per screen.
   -------------------------------------------------------------------------- */
.hm-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  height: 48px; padding: 0 24px;
  border: 1px solid transparent; border-radius: var(--sn-r-pill);
  font: 600 0.9375rem/1 var(--sn-sans);
  cursor: pointer; white-space: nowrap;
  transition: background var(--sn-micro) var(--sn-ease),
              border-color var(--sn-micro) var(--sn-ease),
              color var(--sn-micro) var(--sn-ease),
              transform var(--sn-micro) var(--sn-ease);
}
.hm-btn svg { width: 16px; height: 16px; flex: none; }
/* §69: white, not #1A0F09. That near-black brown was chosen to sit on the EMBER accent; on the brand
   indigo it is dark-on-dark and close to unreadable. Changing the accent changed what can sit on it. */
.hm-btn--primary { background: var(--sn-accent); color: #fff; }
.hm-btn--primary:hover { background: var(--sn-accent-ink); transform: translateY(-1px); }
.hm-btn--quiet { background: transparent; color: var(--sn-ink); border-color: var(--hm-line); }
.hm-btn--quiet:hover { border-color: var(--sn-ink-3); transform: translateY(-1px); }
.hm-btn--sm { height: 38px; padding: 0 16px; font-size: var(--sn-ui); }
.hm-btn--plain { background: transparent; color: var(--sn-ink-2); }
.hm-btn--plain:hover { color: var(--sn-ink); }
.hm-cta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 34px; }

.hm-textlink {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--sn-accent-ink); font-size: var(--sn-ui); font-weight: 600;
  transition: gap var(--sn-micro) var(--sn-ease);
}
.hm-textlink svg { width: 14px; height: 14px; }
.hm-textlink:hover { gap: 11px; }

/* --------------------------------------------------------------------------
   HEADER
   -------------------------------------------------------------------------- */
.hm-header {
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in srgb, var(--sn-bg) 82%, transparent);
  backdrop-filter: saturate(1.5) blur(14px);
  -webkit-backdrop-filter: saturate(1.5) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--sn-micro) var(--sn-ease);
}
.hm-header.is-stuck { border-bottom-color: var(--hm-line); }
.hm-header-in {
  display: flex; align-items: center; gap: 28px; height: 68px;
  max-width: var(--hm-maxw); margin-inline: auto; padding-inline: var(--hm-gutter);
}
.hm-brand {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--sn-serif); font-weight: 600; font-size: 1.3rem;
  letter-spacing: -0.02em; color: var(--sn-ink);
}
.hm-brand img { width: 20px; height: 20px; }
.hm-nav { display: flex; align-items: center; gap: 26px; margin-left: 10px; }
.hm-nav a { font-size: var(--sn-ui); color: var(--sn-ink-2); transition: color var(--sn-micro) var(--sn-ease); }
.hm-nav a:hover { color: var(--sn-ink); }
.hm-header-cta { display: flex; align-items: center; gap: 10px; margin-left: auto; }
@media (max-width: 860px) { .hm-nav { display: none; } }
@media (max-width: 520px) { .hm-header-cta .hm-signin { display: none; } }

/* --------------------------------------------------------------------------
   HERO — centred editorial statement, then the product visual underneath.
   -------------------------------------------------------------------------- */
.hm-hero { position: relative; padding-block: clamp(64px, 8vw, 118px) 0; text-align: center; overflow: hidden; }
.hm-hero-glow {
  position: absolute; inset: -30% 0 auto; height: 620px; pointer-events: none;
  background: radial-gradient(58% 62% at 50% 40%, color-mix(in srgb, var(--sn-accent) 20%, transparent), transparent 72%);
  filter: blur(18px); opacity: .5;
}
.hm-hero-in { position: relative; }
.hm-hero .hm-h1 { margin-inline: auto; max-width: 16ch; }
.hm-hero .hm-lead { margin-inline: auto; max-width: 58ch; }
.hm-hero .hm-cta-row { justify-content: center; }
.hm-hero-trust {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 18px;
  margin: 26px 0 0; font-size: var(--sn-meta); color: var(--sn-ink-3);
}
.hm-hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
.hm-hero-trust i { width: 4px; height: 4px; border-radius: 50%; background: var(--sn-accent); font-style: normal; }

.hm-pill {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 6px 8px 6px 12px; margin-bottom: 26px;
  border: 1px solid var(--hm-line); border-radius: var(--sn-r-pill);
  background: var(--hm-glass);
  font-size: var(--sn-meta); color: var(--sn-ink-2);
}
.hm-pill b { color: var(--sn-ink); font-weight: 600; }
.hm-pill .hm-pill-tag {
  padding: 3px 9px; border-radius: var(--sn-r-pill);
  background: var(--sn-accent-soft); color: var(--sn-accent-ink);
  font: 600 0.6875rem/1.4 var(--sn-mono); letter-spacing: .06em; text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   PRODUCT PREVIEW — the studio in a soft app frame, hero clip inside.
   -------------------------------------------------------------------------- */
.hm-preview { margin-top: clamp(48px, 6vw, 82px); position: relative; }
.hm-preview::after {   /* the frame fades into the page rather than hard-stopping */
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 34%;
  background: linear-gradient(to bottom, transparent, var(--sn-bg));
  pointer-events: none;
}
.hm-frame {
  border: 1px solid var(--hm-line); border-radius: var(--hm-r-lg);
  background: var(--sn-bg-raised); overflow: hidden;
  box-shadow: var(--sn-shadow-lg);
}
.hm-frame-bar {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px; border-bottom: 1px solid var(--hm-line);
  background: color-mix(in srgb, var(--sn-surface) 60%, transparent);
}
.hm-dots { display: flex; gap: 6px; }
.hm-dots i { width: 9px; height: 9px; border-radius: 50%; background: var(--sn-hairline); }
.hm-frame-path {
  font: 500 0.75rem/1 var(--sn-mono); color: var(--sn-ink-3);
  padding: 5px 12px; border: 1px solid var(--hm-line); border-radius: var(--sn-r-pill);
  background: var(--sn-bg);
}
.hm-frame-body { display: grid; grid-template-columns: 268px 1fr; min-height: 300px; }
@media (max-width: 820px) { .hm-frame-body { grid-template-columns: 1fr; } .hm-frame-side { display: none; } }

.hm-frame-side { border-right: 1px solid var(--hm-line); padding: 18px; display: grid; gap: 16px; align-content: start; }
.hm-side-label { font: 600 0.625rem/1 var(--sn-mono); letter-spacing: .18em; text-transform: uppercase; color: var(--sn-ink-3); }
.hm-side-prompt {
  border: 1px solid var(--hm-line); border-radius: var(--sn-r-md);
  background: var(--sn-surface); padding: 12px 13px;
  font-size: var(--sn-meta); line-height: 1.55; color: var(--sn-ink-2);
}
.hm-side-prompt .hm-caret {
  display: inline-block; width: 2px; height: 1em; vertical-align: -2px;
  background: var(--sn-accent); margin-left: 2px; animation: hm-blink 1.1s steps(1) infinite;
}
@keyframes hm-blink { 50% { opacity: 0; } }
.hm-side-rows { display: grid; gap: 9px; }
.hm-side-row {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 9px 11px; border: 1px solid var(--hm-line); border-radius: var(--sn-r-sm);
  font-size: var(--sn-meta); color: var(--sn-ink-2);
}
.hm-side-row b { color: var(--sn-ink); font-weight: 600; }
.hm-side-row .hm-cr { font-family: var(--sn-mono); font-size: 0.75rem; color: var(--sn-accent-ink); }
.hm-side-quote {
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 13px; border-radius: var(--sn-r-sm);
  background: var(--sn-accent-soft); color: var(--sn-accent-ink);
  font: 600 var(--sn-meta)/1 var(--sn-sans);
}
.hm-side-quote span:last-child { font-family: var(--sn-mono); }

.hm-frame-stage { position: relative; background: #0B0A09; }
:root[data-theme="light"] .hm-frame-stage { background: #EFEDE5; }
.hm-frame-stage .hm-reel { border: 0; border-radius: 0; height: 100%; }

/* reel primitive — poster image first, muted loop fades in once it can play */
.hm-reel { position: relative; margin: 0; overflow: hidden; border-radius: var(--hm-r-md); background: #111010; isolation: isolate; }
.hm-reel-media { position: relative; aspect-ratio: 16 / 9; overflow: hidden; height: 100%; }
.hm-reel-media > img,
.hm-reel-media > video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hm-reel-media > video { opacity: 0; transition: opacity .5s var(--sn-ease); }
.hm-reel.is-playing .hm-reel-media > video { opacity: 1; }
.hm-reel-tag {
  position: absolute; left: 12px; bottom: 12px; z-index: 2;
  display: inline-flex; align-items: center; gap: 7px;
  padding: 5px 11px; border-radius: var(--sn-r-pill);
  background: rgba(12,11,10,.62); backdrop-filter: blur(8px);
  font: 500 0.6875rem/1 var(--sn-mono); letter-spacing: .04em; color: #F5F4EF;
}
.hm-reel-tag i { width: 5px; height: 5px; border-radius: 50%; background: var(--sn-accent); font-style: normal; }

/* --------------------------------------------------------------------------
   SHOWCASE WALL — real generations, two counter-drifting rows.
   -------------------------------------------------------------------------- */
.hm-wall { overflow: hidden; display: grid; gap: 14px; padding-block: 4px; }
.hm-wall-row { display: flex; gap: 14px; width: max-content; animation: hm-marquee 56s linear infinite; }
.hm-wall-row.rev { animation-direction: reverse; animation-duration: 68s; }
.hm-wall:hover .hm-wall-row { animation-play-state: paused; }
@keyframes hm-marquee { from { transform: translate3d(0,0,0); } to { transform: translate3d(-50%,0,0); } }
.hm-wall-tile {
  flex: none; width: clamp(230px, 26vw, 320px); aspect-ratio: 16 / 9;
  border-radius: var(--hm-r-md); overflow: hidden;
  border: 1px solid var(--hm-line); background: var(--sn-bg-raised);
}
.hm-wall-tile img { width: 100%; height: 100%; object-fit: cover; }
.hm-wall-mask { position: relative; }
.hm-wall-mask::before, .hm-wall-mask::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: clamp(48px, 10vw, 150px); z-index: 2; pointer-events: none;
}
.hm-wall-mask::before { left: 0;  background: linear-gradient(to right, var(--sn-bg), transparent); }
.hm-wall-mask::after  { right: 0; background: linear-gradient(to left,  var(--sn-bg), transparent); }

/* --------------------------------------------------------------------------
   SECTION HEADS
   -------------------------------------------------------------------------- */
.hm-head { max-width: 720px; }
.hm-head--center { margin-inline: auto; text-align: center; }
.hm-head--center .hm-lead { margin-inline: auto; }

/* --------------------------------------------------------------------------
   ALTERNATING FEATURE ROWS
   -------------------------------------------------------------------------- */
.hm-rows { display: grid; gap: clamp(72px, 8vw, 128px); }
.hm-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 76px); align-items: center; }
.hm-row.rev .hm-row-copy { order: 2; }
.hm-row-copy { max-width: 30rem; }
.hm-row-copy .hm-lead { font-size: 1.0625rem; margin-top: 18px; }
.hm-row-list { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 11px; }
.hm-row-list li { display: flex; gap: 11px; font-size: var(--sn-ui); color: var(--sn-ink-2); line-height: 1.55; }
.hm-row-list svg { width: 15px; height: 15px; flex: none; margin-top: 3px; color: var(--sn-accent-ink); }
.hm-row-copy .hm-textlink { margin-top: 26px; }
@media (max-width: 900px) {
  .hm-row { grid-template-columns: 1fr; gap: 28px; }
  .hm-row.rev .hm-row-copy { order: 0; }
  .hm-row-copy { max-width: none; }
}

/* media side treatments */
.hm-media {
  border: 1px solid var(--hm-line); border-radius: var(--hm-r-lg);
  background: var(--sn-bg-raised); padding: 14px; overflow: hidden;
}
.hm-media--flush { padding: 0; }
.hm-media-cap {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 12px 4px 2px; font-size: var(--sn-meta); color: var(--sn-ink-3);
}
.hm-media-cap b { color: var(--sn-ink-2); font-weight: 600; }

/* shot strip (Producer) */
.hm-strip { display: grid; gap: 10px; }
.hm-strip-main { border-radius: var(--hm-r-md); overflow: hidden; }
.hm-strip-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.hm-shot { position: relative; border-radius: var(--sn-r-sm); overflow: hidden; aspect-ratio: 16 / 9; background: #111010; }
.hm-shot img { width: 100%; height: 100%; object-fit: cover; }
.hm-shot span {
  position: absolute; left: 6px; top: 6px;
  padding: 3px 7px; border-radius: 6px; background: rgba(12,11,10,.66);
  font: 600 0.625rem/1 var(--sn-mono); color: #F5F4EF; letter-spacing: .06em;
}

/* model grid */
.hm-modelgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.hm-modelcard { border: 1px solid var(--hm-line); border-radius: var(--sn-r-sm); overflow: hidden; background: var(--sn-surface); }
.hm-modelcard img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.hm-modelcard p { margin: 0; padding: 9px 10px; font: 500 0.6875rem/1.3 var(--sn-mono); color: var(--sn-ink-2); }
@media (max-width: 480px) { .hm-modelgrid { grid-template-columns: repeat(2, 1fr); } }

/* camera grid */
.hm-camgrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.hm-camgrid .hm-shot { aspect-ratio: 16 / 10; }

/* cast row */
.hm-cast { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.hm-cast figure { margin: 0; border-radius: var(--sn-r-sm); overflow: hidden; position: relative; border: 1px solid var(--hm-line); }
.hm-cast img { width: 100%; aspect-ratio: 2 / 3; object-fit: cover; }
.hm-cast figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 18px 9px 8px;
  background: linear-gradient(to top, rgba(12,11,10,.86), transparent);
  font: 600 0.6875rem/1.2 var(--sn-sans); color: #F5F4EF;
}
.hm-cast figcaption small { display: block; font: 400 0.625rem/1.3 var(--sn-mono); color: #B7B4AC; margin-top: 2px; }

/* brand kit */
.hm-kit { display: grid; gap: 12px; }
.hm-kit-top { display: grid; grid-template-columns: 1.4fr 1fr; gap: 12px; }
.hm-kit-top > figure { margin: 0; border-radius: var(--sn-r-sm); overflow: hidden; }
.hm-kit-top img { width: 100%; height: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.hm-swatches { display: flex; gap: 8px; }
.hm-swatch { flex: 1; height: 46px; border-radius: 9px; border: 1px solid var(--hm-line); }
.hm-kit-meta {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.hm-chip {
  padding: 6px 11px; border: 1px solid var(--hm-line); border-radius: var(--sn-r-pill);
  background: var(--sn-surface); font: 500 0.6875rem/1.3 var(--sn-mono); color: var(--sn-ink-2);
}

/* captions demo */
.hm-capdemo { position: relative; border-radius: var(--hm-r-md); overflow: hidden; aspect-ratio: 16 / 9; }
.hm-capdemo img { width: 100%; height: 100%; object-fit: cover; }
.hm-capdemo-word {
  position: absolute; left: 50%; bottom: 16%; transform: translateX(-50%);
  display: flex; gap: 6px; flex-wrap: nowrap;
}
.hm-capdemo-word b {
  padding: 5px 10px; border-radius: 7px; background: rgba(12,11,10,.78);
  font: 800 clamp(0.75rem, 1.6vw, 1.05rem)/1 var(--sn-sans); letter-spacing: -0.01em; color: #F5F4EF;
}
.hm-capdemo-word b.on { background: var(--sn-accent); color: #fff; }
.hm-capdemo-lower {
  position: absolute; left: 5%; bottom: 6%;
  padding: 7px 12px; border-radius: 8px;
  background: rgba(12,11,10,.72); backdrop-filter: blur(6px);
  font: 600 0.75rem/1.3 var(--sn-sans); color: #F5F4EF;
}
.hm-capdemo-lower small { display: block; font-weight: 400; color: #B7B4AC; font-size: 0.6875rem; }

/* phones (social) */
.hm-phones { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; max-width: 400px; margin-inline: auto; }
.hm-phone {
  border: 1px solid var(--hm-line); border-radius: 20px; overflow: hidden;
  background: #111010; position: relative; aspect-ratio: 9 / 16;
}
.hm-phone img { width: 100%; height: 100%; object-fit: cover; }
.hm-phone span {
  position: absolute; left: 8px; top: 8px; padding: 4px 8px; border-radius: 6px;
  background: rgba(12,11,10,.7); font: 600 0.625rem/1 var(--sn-mono); color: #F5F4EF; letter-spacing: .06em;
}

/* --------------------------------------------------------------------------
   MODELS STRIP — set in type, not borrowed marks.
   -------------------------------------------------------------------------- */
.hm-models { border-block: 1px solid var(--hm-line); }
/* 12 models, so every step divides evenly — no orphan last row at any width. */
.hm-models-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px; background: var(--hm-line);
  border-inline: 1px solid var(--hm-line);
}
@media (min-width: 560px)  { .hm-models-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 820px)  { .hm-models-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
@media (min-width: 1160px) { .hm-models-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); } }
.hm-model {
  background: var(--sn-bg); padding: 22px 18px; display: grid; gap: 5px; align-content: center;
  transition: background var(--sn-micro) var(--sn-ease);
}
.hm-model:hover { background: var(--sn-bg-raised); }
.hm-model b { font: 600 0.9375rem/1.3 var(--sn-sans); color: var(--sn-ink); }
.hm-model small { font: 400 0.6875rem/1.3 var(--sn-mono); color: var(--sn-ink-3); letter-spacing: .03em; }

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */
.hm-faq { display: grid; grid-template-columns: minmax(0, 1fr); gap: 0; border-top: 1px solid var(--hm-line); margin-top: 48px; }
/* min-width:0 all the way down: the injected price table is wider than a phone, and a grid item's
   default min-width:auto would let its min-content push the whole PAGE into horizontal scroll
   instead of scrolling inside .hm-faq-table. */
.hm-faq details, .hm-faq-body { min-width: 0; }
.hm-faq details { border-bottom: 1px solid var(--hm-line); }
.hm-faq summary {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 24px;
  padding: 24px 4px; cursor: pointer; list-style: none;
  font: 600 clamp(1rem, 0.95rem + 0.3vw, 1.125rem)/1.45 var(--sn-sans); color: var(--sn-ink);
  transition: color var(--sn-micro) var(--sn-ease);
}
.hm-faq summary::-webkit-details-marker { display: none; }
.hm-faq summary:hover { color: var(--sn-accent-ink); }
.hm-faq-mark { flex: none; width: 20px; height: 20px; margin-top: 2px; position: relative; }
.hm-faq-mark::before, .hm-faq-mark::after {
  content: ""; position: absolute; left: 50%; top: 50%; background: var(--sn-ink-3);
  transform: translate(-50%,-50%); transition: transform var(--sn-panel) var(--sn-ease), opacity var(--sn-micro);
}
.hm-faq-mark::before { width: 13px; height: 1.5px; }
.hm-faq-mark::after  { width: 1.5px; height: 13px; }
.hm-faq details[open] .hm-faq-mark::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.hm-faq-body { padding: 0 60px 26px 4px; }
.hm-faq-body p { margin: 0 0 12px; font-size: var(--sn-ui); line-height: 1.68; color: var(--sn-ink-2); max-width: 68ch; }
.hm-faq-body p:last-child { margin-bottom: 0; }
.hm-faq-body a { color: var(--sn-accent-ink); font-weight: 600; }
/* the live price table injected at <!--SN:PRICE_TABLE--> — it ships as a bare .sn-table */
.hm-faq-table { margin: 18px 0; border: 1px solid var(--hm-line); border-radius: var(--hm-r-md); overflow: auto; max-height: 360px; max-width: 620px; }
.hm-faq-table table { min-width: 340px; }
.hm-faq-table td { font-size: var(--sn-ui); }
.hm-faq-table td.num { color: var(--sn-ink); white-space: nowrap; }
@media (max-width: 620px) { .hm-faq-body { padding-right: 12px; } }

/* --------------------------------------------------------------------------
   CLOSING CTA
   -------------------------------------------------------------------------- */
.hm-close { text-align: center; }
.hm-close-card {
  position: relative; overflow: hidden;
  border: 1px solid var(--hm-line); border-radius: clamp(22px, 3vw, 30px);
  background: var(--sn-bg-raised);
  padding: clamp(48px, 7vw, 96px) clamp(24px, 5vw, 72px);
}
.hm-close-card::before {
  content: ""; position: absolute; inset: -60% 0 auto; height: 340px; pointer-events: none;
  background: radial-gradient(50% 60% at 50% 50%, color-mix(in srgb, var(--sn-accent) 24%, transparent), transparent 70%);
  filter: blur(10px);
}
.hm-close-card > * { position: relative; }
.hm-close-card .hm-lead { margin-inline: auto; }
.hm-close-card .hm-cta-row { justify-content: center; }

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
.hm-footer { border-top: 1px solid var(--hm-line); padding-block: clamp(48px, 6vw, 76px) 32px; }
.hm-footer-grid { display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: 32px; }
.hm-footer-brand p { margin: 14px 0 0; font-size: var(--sn-meta); color: var(--sn-ink-3); max-width: 30ch; line-height: 1.6; }
.hm-footer h5 {
  margin: 0 0 16px; font: 600 0.6875rem/1 var(--sn-mono);
  letter-spacing: .16em; text-transform: uppercase; color: var(--sn-ink-3);
}
.hm-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.hm-footer li a { font-size: var(--sn-ui); color: var(--sn-ink-2); transition: color var(--sn-micro) var(--sn-ease); }
.hm-footer li a:hover { color: var(--sn-ink); }
.hm-footer-strip {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px;
  margin-top: clamp(40px, 5vw, 64px); padding-top: 24px; border-top: 1px solid var(--hm-line);
  font-size: var(--sn-meta); color: var(--sn-ink-3);
}
@media (max-width: 900px) { .hm-footer-grid { grid-template-columns: repeat(2, 1fr); gap: 34px 24px; } .hm-footer-brand { grid-column: 1 / -1; } }
@media (max-width: 520px) { .hm-footer-grid { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   REVEAL + REDUCED MOTION
   -------------------------------------------------------------------------- */
.hm-rise { opacity: 0; transform: translateY(16px); }
.hm-rise.is-in {
  opacity: 1; transform: none;
  transition: opacity .66s var(--sn-ease), transform .66s var(--sn-ease);
}
@media (prefers-reduced-motion: reduce) {
  .hm-rise { opacity: 1; transform: none; transition: none; }
  .hm-wall-row { animation: none; }
  .hm-reel-media > video { display: none; }
  .hm-side-prompt .hm-caret { animation: none; }
}
