/* ============================================================
   Check Motors — Landing Page
   Mobile-first · Tema white · Frosted glass
   ============================================================ */

:root {
  --bg: #f0f0f0;
  --line: #e8e8e8;
  --green: #48B48D;
  --green-dark: #359976;
  --slate: #3F505F;
  --slate-soft: #62727f;
  --white: #ffffff;
  --radius: 12px;
  --shadow: 0 8px 30px rgba(63, 80, 95, .10);
  --glass-bg: rgba(240, 240, 240, .72);
  --header-h: 64px;
  --font: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--slate);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }

button { font-family: inherit; cursor: pointer; }

:focus-visible { outline: 3px solid var(--green); outline-offset: 3px; border-radius: 6px; }

/* ============================================================
   HEADER FIXO (estilo da referência)
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: var(--bg);
  border-bottom: 2px solid var(--line);
  transition: background .3s ease, box-shadow .3s ease;
}

.site-header.is-scrolled {
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  backdrop-filter: blur(14px) saturate(1.4);
  box-shadow: 0 4px 24px rgba(63, 80, 95, .08);
}

.header-inner {
  max-width: 680px;
  margin: 0 auto;
  height: var(--header-h);
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.header-logo { width: auto; height: 34px; }

.header-tagline {
  font-size: .72rem;
  font-weight: 600;
  text-align: right;
  line-height: 1.35;
  color: var(--slate);
}
.header-tagline strong { font-weight: 800; }

/* ============================================================
   LAYOUT BASE
   ============================================================ */
main {
  max-width: 680px;
  margin: 0 auto;
  padding: calc(var(--header-h) + 28px) 18px 130px;
}

section + section { margin-top: 64px; }

.section-head { margin-bottom: 22px; }

.eyebrow {
  display: inline-block;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(72, 180, 141, .12);
  border: 1px solid rgba(72, 180, 141, .25);
  border-radius: 999px;
  padding: 5px 12px;
  margin-bottom: 12px;
}

h1, h2 { font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; }

h1 { font-size: clamp(1.7rem, 6.5vw, 2.4rem); }
h2 { font-size: clamp(1.35rem, 5vw, 1.8rem); }

.hl { color: var(--green); font-style: italic; }

.lead {
  margin-top: 12px;
  color: var(--slate-soft);
  font-size: .98rem;
}

/* ============================================================
   VÍDEO (MOCK)
   ============================================================ */
.video-card {
  position: relative;
  margin-top: 0;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;              /* vídeo vertical, maior destaque no mobile */
  max-height: 72vh;
  background: var(--white);
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  isolation: isolate;
  cursor: pointer;
}

.video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -2;
  transition: transform .6s ease;
}

.video-card:hover .video-bg { transform: scale(1.03); }

.video-veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(240,240,240,.15), rgba(63,80,95,.35));
}

.video-hint {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: .74rem;
  font-weight: 600;
  color: var(--slate);
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 999px;
  padding: 6px 14px;
  white-space: nowrap;
}

/* Play button (frosted glass + pulso animado) */
.play-btn {
  display: block;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 50%;
  color: var(--white);
  background: rgba(72, 180, 141, .7);
  -webkit-backdrop-filter: blur(8px) saturate(1.3);
  backdrop-filter: blur(8px) saturate(1.3);
  box-shadow: 0 6px 20px rgba(72, 180, 141, .4);
  transition: transform .25s ease;
  position: relative;
}

/* centralização absoluta, imune a estilos de botão/linha */
.play-btn svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-44%, -50%); /* -44% no X = ajuste óptico do triângulo */
}

.play-btn--lg { width: 56px; height: 56px; }
.play-btn--sm { width: 36px; height: 36px; }

/* no card de vídeo do topo, o play fica no canto superior direito, longe dos rostos */
.video-card .play-btn--lg {
  position: absolute;
  top: 12px;
  right: 12px;
}

.play-btn::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(72, 180, 141, .5);
  animation: pulse 2.2s ease-out infinite;
}

@keyframes pulse {
  0%   { transform: scale(.9); opacity: 1; }
  70%  { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(1.35); opacity: 0; }
}

.video-card:active .play-btn,
.who-card:active .play-btn { transform: scale(.92); }

/* ============================================================
   PRINCIPAIS FUNCIONALIDADES
   ============================================================ */
.feature-list { list-style: none; display: grid; gap: 14px; }

.feature {
  background: var(--white);
  border: 2px solid var(--line);
  border-left: 4px solid var(--green);
  border-radius: var(--radius);
  padding: 18px;
  transition: transform .3s ease, box-shadow .3s ease;
}

.feature:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

.feature h3 { font-size: 1rem; font-weight: 800; margin-bottom: 3px; }
.feature p { font-size: .86rem; color: var(--slate-soft); }

.btn-video {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: .82rem;
  color: var(--green-dark);
  background: rgba(72, 180, 141, .1);
  border: 1px solid rgba(72, 180, 141, .35);
  border-radius: 999px;
  padding: 9px 18px;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.btn-video svg { margin-left: 1px; }

.btn-video:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

.btn-video:active { transform: scale(.95); }

/* ============================================================
   QUEM UTILIZA — CARROSSEL (marquee lento)
   ============================================================ */
.marquee {
  overflow-x: auto;
  overflow-y: hidden;
  margin: 0 -18px;              /* sangra até as bordas da tela */
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;         /* Firefox */
  cursor: grab;
}

.marquee::-webkit-scrollbar { display: none; }

.marquee.is-dragging { cursor: grabbing; }

.marquee-track {
  display: flex;
  gap: 14px;
  width: max-content;
  padding: 6px 18px;
}

.who-card {
  position: relative;
  width: 156px;
  flex-shrink: 0;
  cursor: pointer;
}

.who-card img {
  width: 156px;
  height: 208px;                 /* retrato 3:4, mais altura para os depoimentos */
  object-fit: cover;
  border-radius: var(--radius);
  border: 2px solid var(--line);
  background: var(--white);
  box-shadow: 0 4px 16px rgba(63, 80, 95, .08);
}

.who-card .play-btn {
  position: absolute;
  top: 8px;
  right: 8px;
}

.who-card figcaption {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 1px;
  text-align: center;
  line-height: 1.3;
}

.cap-name {
  font-size: .8rem;
  font-weight: 800;
  color: var(--slate);
}

.cap-shop {
  font-size: .72rem;
  font-weight: 600;
  color: var(--slate-soft);
}

.who-note {
  margin-top: 14px;
  text-align: center;
  font-size: .78rem;
  color: var(--slate-soft);
}

/* ============================================================
   CONDIÇÃO ESPECIAL
   ============================================================ */
.special-card {
  position: relative;
  overflow: hidden;
  background: var(--slate);
  color: var(--white);
  border-radius: calc(var(--radius) + 6px);
  padding: 32px 22px;
  text-align: center;
  box-shadow: 0 14px 40px rgba(63, 80, 95, .35);
}

/* brilho animado atravessando o card */
.special-card::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 60px;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.14), transparent);
  animation: shine 4s ease-in-out infinite;
}

@keyframes shine {
  0%   { left: -80px; }
  60%  { left: 110%; }
  100% { left: 110%; }
}

.special-badge {
  display: inline-block;
  font-size: .74rem;
  font-weight: 700;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .25);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 14px;
}

.special-card h2 { color: var(--white); }

.special-card p {
  margin-top: 10px;
  font-size: .9rem;
  color: rgba(255, 255, 255, .75);
}

/* ============================================================
   GARANTIAS (selos elaborados)
   ============================================================ */
.seals { margin-top: 56px; }

.seals-head { text-align: center; }

.seals-grid {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
}

.seal-plaque {
  width: 100%;
  max-width: 360px;
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 14px 18px;
  text-align: center;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.seal-plaque:hover {
  transform: translateY(-3px);
  border-color: rgba(72, 180, 141, .5);
  box-shadow: var(--shadow);
}

.seal-stamp {
  display: inline-block;
  filter: drop-shadow(0 8px 16px rgba(63, 80, 95, .22));
  transition: transform .35s cubic-bezier(.34, 1.56, .64, 1);
}

.seal-plaque:hover .seal-stamp { transform: scale(1.05) rotate(-2deg); }

/* texto curvo do selo */
.seal-curved {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 1.5px;
}

/* anel pontilhado girando lentamente */
.seal-dashes {
  animation: seal-spin 30s linear infinite;
  transform-origin: 60px 60px;
}

@keyframes seal-spin { to { transform: rotate(360deg); } }

.seal-plaque h3 {
  font-size: .92rem;
  font-weight: 800;
  margin: 10px 0 4px;
}

.seal-plaque p {
  font-size: .78rem;
  color: var(--slate-soft);
  line-height: 1.45;
}

@media (min-width: 560px) {
  .seal-plaque { padding: 26px 22px 22px; }
  .seal-plaque h3 { font-size: 1rem; }
  .seal-plaque p { font-size: .84rem; }
}

/* ============================================================
   BOTÕES
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  border-radius: 999px;
  font-weight: 800;
  font-size: .95rem;
  padding: 15px 26px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:active { transform: scale(.96); }

.btn-special {
  margin-top: 20px;
  background: var(--green);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(72, 180, 141, .5);
  animation: bounce-soft 2.6s ease-in-out infinite;
}

.btn-special:hover { background: var(--green-dark); }

@keyframes bounce-soft {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}

/* ============================================================
   CTA FIXO — WHATSAPP (frosted glass)
   ============================================================ */
.sticky-cta {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 40;
  padding: 12px 18px calc(12px + env(safe-area-inset-bottom));
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  backdrop-filter: blur(14px) saturate(1.4);
  border-top: 2px solid var(--line);
}

.btn-whats {
  width: 100%;
  max-width: 644px;
  margin: 0 auto;
  display: flex;
  background: var(--green);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(72, 180, 141, .45);
}

.btn-whats:hover { background: var(--green-dark); }

/* pilha de avatares dentro dos botões de contato */
.avatars {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.avatars img {
  width: 26px;
  height: 26px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .9);
  box-shadow: 0 1px 4px rgba(63, 80, 95, .25);
}

.avatars img + img { margin-left: -9px; }

/* ============================================================
   FOOTER
   ============================================================ */
.page-end {
  margin-top: 70px;
  padding-top: 26px;
  border-top: 2px solid var(--line);
  text-align: center;
}

.end-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.end-links a {
  font-size: .8rem;
  font-weight: 700;
  color: var(--slate);
  text-decoration: none;
}

.end-links a:hover { color: var(--green-dark); text-decoration: underline; }

.end-links span { color: var(--slate-soft); }

.end-year {
  margin-top: 8px;
  font-size: .78rem;
  color: var(--slate-soft);
}

.end-logo {
  width: 86px;
  margin: 14px auto 0;
  opacity: .55;
  filter: grayscale(1);
}

/* ============================================================
   BOTTOM SHEET DE VÍDEO
   ============================================================ */
.video-dialog {
  border: none;
  padding: 0;
  /* ancora na base da tela */
  position: fixed;
  inset: auto 0 0 0;
  margin: 0 auto;
  width: 100%;
  max-width: 560px;
  max-height: 88dvh;
  border-radius: 20px 20px 0 0;
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(18px) saturate(1.5);
  backdrop-filter: blur(18px) saturate(1.5);
  box-shadow: 0 -18px 60px rgba(63, 80, 95, .35);
  overflow: hidden;
}

.video-dialog::backdrop {
  background: rgba(63, 80, 95, .45);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.video-dialog[open] { animation: sheet-up .35s cubic-bezier(.32, .72, .24, 1); }

@keyframes sheet-up {
  from { opacity: .5; transform: translateY(100%); }
  to   { opacity: 1; transform: none; }
}

.sheet-handle {
  width: 42px;
  height: 5px;
  border-radius: 999px;
  background: rgba(63, 80, 95, .25);
  margin: 0 auto 12px;
}

.dialog-inner {
  padding: 10px 12px calc(14px + env(safe-area-inset-bottom));
}

.dialog-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2px 12px;
}

.dialog-head p { font-weight: 800; font-size: .95rem; color: var(--slate); }

.dialog-close {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--slate);
  transition: transform .2s ease;
}

.dialog-close:hover { transform: rotate(90deg); }

.dialog-video-mock {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--slate), #2c3947);
  display: grid;
  place-items: center;
  gap: 0;
  align-content: center;
  row-gap: 14px;
}

.mock-label {
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .7);
}

.dialog-foot { margin-top: 14px; }

.dialog-foot .btn-whats { width: 100%; }

/* embed vertical do Instagram — largura total do sheet */
.dialog-embed {
  position: relative;
  width: 100%;
  height: min(64dvh, 640px);
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, var(--slate), #2c3947);
}

.dialog-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.embed-spinner {
  position: absolute;
  top: calc(50% - 18px);
  left: calc(50% - 18px);
  width: 36px;
  height: 36px;
  border: 3px solid rgba(255, 255, 255, .25);
  border-top-color: var(--green);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.embed-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
  font-size: .78rem;
  font-weight: 700;
  color: var(--slate-soft);
  text-decoration: none;
}

.embed-link:hover { color: var(--green-dark); }

/* ============================================================
   BOTTOM SHEET — CONDIÇÃO ESPECIAL (3 etapas)
   ============================================================ */
.bonus-dialog {
  background: var(--bg);                 /* cinza claro sólido, sem frosted glass */
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.bonus-dialog .dialog-inner {
  max-height: calc(88dvh - 8px);
  overflow-y: auto;
  overscroll-behavior: contain;
}

/* barra de progresso */
.b-progress {
  display: flex;
  gap: 6px;
  margin: 2px 2px 16px;
}

.b-bar {
  flex: 1;
  height: 4px;
  border-radius: 999px;
  background: var(--line);
  transition: background .3s ease;
}

.b-bar.is-done { background: var(--green); }

/* etapas */
.b-step { display: none; }
.b-step.is-active { display: block; animation: step-in .3s ease; }

@keyframes step-in {
  from { opacity: 0; transform: translateX(14px); }
  to   { opacity: 1; transform: none; }
}

.b-title { font-size: 1.1rem; font-weight: 800; }
.b-sub { font-size: .85rem; color: var(--slate-soft); margin: 4px 0 16px; }

/* campos */
.field { display: block; margin-bottom: 14px; }

.field span {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.field input {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  color: var(--slate);
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: 10px;
  padding: 13px 14px;
  transition: border-color .2s ease, box-shadow .2s ease;
  -moz-appearance: textfield;
  appearance: textfield;
}

.field input::-webkit-outer-spin-button,
.field input::-webkit-inner-spin-button { -webkit-appearance: none; }

.field input:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(72, 180, 141, .15);
}

.field-error {
  display: none;
  font-size: .74rem;
  color: #d24d4d;
  margin-top: 5px;
}

.field.has-error input { border-color: #d24d4d; }
.field.has-error .field-error { display: block; }

.btn-next {
  width: 100%;
  margin-top: 6px;
  background: var(--green);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(72, 180, 141, .4);
}

.btn-next:hover { background: var(--green-dark); }

/* tela "calculando" */
.b-step--calc { text-align: center; padding: 36px 0 42px; }

.calc-spinner {
  width: 52px;
  height: 52px;
  margin: 0 auto 18px;
  border: 4px solid rgba(72, 180, 141, .2);
  border-top-color: var(--green);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}

.calc-msg { font-size: .92rem; font-weight: 700; color: var(--slate); }

/* resultado */
.result-box {
  background: rgba(72, 180, 141, .1);
  border: 2px solid rgba(72, 180, 141, .35);
  border-radius: var(--radius);
  padding: 16px;
  margin: 12px 0 16px;
}

.result-box .r-big {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--green-dark);
}

.result-box .r-price {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--green-dark);
  letter-spacing: -0.02em;
}

.result-box .r-per { font-size: .82rem; font-weight: 700; color: var(--slate); }

.result-box .r-note {
  display: block;
  margin-top: 6px;
  font-size: .68rem;
  color: var(--slate-soft);
}

.result-box .r-extra {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed rgba(72, 180, 141, .4);
  font-size: .85rem;
  font-weight: 700;
  color: var(--slate);
}

/* card bônus do mês (réplica do print) */
.bonus-card {
  background: var(--green);
  border-radius: var(--radius);
  padding: 14px;
  color: var(--white);
  box-shadow: 0 10px 28px rgba(72, 180, 141, .35);
}

.bonus-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.bonus-head span:first-child {
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.bonus-month {
  background: var(--white);
  color: var(--green-dark);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .04em;
  border-radius: 8px;
  padding: 5px 10px;
}

.bonus-body {
  background: var(--white);
  border-radius: 10px;
  padding: 12px;
  color: var(--slate);
}

.bonus-lead { font-size: .84rem; font-weight: 800; margin-bottom: 10px; }

.bonus-list { list-style: none; display: grid; gap: 8px; }

.bonus-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
}

.pill-free {
  flex-shrink: 0;
  font-size: .62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--white);
  background: var(--green);
  border-radius: 999px;
  padding: 3px 9px;
}

.bonus-foot {
  margin-top: 10px;
  font-size: .66rem;
  color: rgba(255, 255, 255, .85);
}

/* resumo */
.summary {
  margin: 16px 0;
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 4px 14px;
}

.summary .s-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
  font-size: .8rem;
  border-bottom: 1px solid var(--line);
}

.summary .s-row:last-child { border-bottom: none; }

.summary .s-label { color: var(--slate-soft); font-weight: 600; flex-shrink: 0; }
.summary .s-value { font-weight: 700; text-align: right; word-break: break-word; }

.bonus-dialog .btn-whats { width: 100%; text-decoration: none; }

/* botão "Resgatar bônus" fixo na base do sheet enquanto o conteúdo rola */
.redeem-bar {
  position: sticky;
  bottom: 0;
  margin: 0 -12px;
  padding: 10px 12px calc(4px + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, rgba(240, 240, 240, 0) 0%, var(--bg) 26%);
}

/* ============================================================
   REVEAL ON SCROLL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal.is-visible { opacity: 1; transform: none; }

/* ============================================================
   DESKTOP (progressive enhancement)
   ============================================================ */
@media (min-width: 720px) {
  .video-card { max-width: 430px; margin-inline: auto; }
  .header-logo { height: 40px; }
  .header-tagline { font-size: .82rem; }
  .who-card, .who-card img { width: 180px; }
  .who-card img { height: 240px; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .play-btn::after,
  .special-card::before,
  .btn-special { animation: none; }
  .video-dialog[open] { animation: none; }
  .seal-dashes { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
