/* ============================================
   RokTips – Product Landing Page
   Dark rock-inspired, high-contrast, modern
   ============================================ */

:root {
  /* Palette */
  --bg-dark: #0d0d0d;
  --bg-card: #161616;
  --bg-elevated: #1a1a1a;
  --surface: #252525;
  --border: #2d2d2d;
  --text: #f5f5f5;
  --text-muted: #a3a3a3;
  --accent: #ff6b35;
  --accent-hover: #ff8555;
  --accent-muted: rgba(255, 107, 53, 0.15);
  --white: #ffffff;
  --success: #22c55e;
  /* Inline wordmark — matches logo-english / logo-vietnamese PNGs */
  --brand-mark-red: #fe0000;
  --brand-mark-yellow: #fec000;

  /* Spacing */
  --section-padding-y: 5rem;
  --section-padding-y-mobile: 3.5rem;
  --container-gap: 2rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg-dark);
  -webkit-font-smoothing: antialiased;
}

/* Sticky header stack (banner + buy bar) */
:root {
  --banner-h: 0px;
}

body.has-banner { padding-top: 0; }
body.banner-dismissed.has-banner { padding-top: 0; }

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

a {
  color: inherit;
  text-decoration: none;
}

/* ============================================
   Language toggle (VN/EN)
   ============================================ */
.lang-toggle {
  position: fixed;
  top: 0.75rem;
  right: 0.75rem;
  /* Above banners/bars, below modals */
  z-index: 150;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.5rem;
  border-radius: 999px;
  background: rgba(13, 13, 13, 0.72);
  border: 2px solid rgba(255, 107, 53, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.lang-toggle__flag {
  font-size: 1rem;
  line-height: 1;
  opacity: 0.95;
}

.lang-toggle__switch {
  position: relative;
  width: 44px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.lang-toggle__input {
  position: absolute;
  inset: 0;
  z-index: 1;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

/* Let taps hit the checkbox, not the decorative layers (fixes WebKit/tablet label quirks) */
.lang-toggle__track,
.lang-toggle__thumb {
  pointer-events: none;
}

.lang-toggle__track {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 107, 53, 0.65);
  border-radius: 999px;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.lang-toggle__thumb {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--success);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, background 0.2s ease;
}

.lang-toggle__input:checked ~ .lang-toggle__thumb {
  transform: translateX(20px);
  background: var(--success);
}

.lang-toggle__input:focus-visible ~ .lang-toggle__track {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

@media (max-width: 767px) {
  .lang-toggle {
    top: 0.6rem;
    right: 0.6rem;
  }
}

/* When offer banner is present, drop toggle below it */
body.has-banner .lang-toggle {
  top: calc(48px + 0.75rem);
}

@media (max-width: 767px) {
  body.has-banner .lang-toggle {
    top: calc(48px + 0.6rem);
  }
}

/* Language toggle inside sticky bar */
.sticky-buy .lang-toggle {
  position: static;
  top: auto;
  right: auto;
  z-index: auto;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  padding: 0.35rem 0.45rem;
}

/* Keep toggle vertically aligned in sticky buy bar */
.sticky-buy__buttons {
  align-items: center;
}

@media (max-width: 767px) {
  .sticky-buy__buttons {
    align-items: center;
  }
}

/* Smaller vertical padding to avoid colliding with offer banner */
.sticky-buy__buttons .btn--sm {
  padding-top: 0.35rem;
  padding-bottom: 0.35rem;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (max-width: 360px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

/* Section titles */
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-align: center;
  margin: 0 0 0.5rem;
  color: var(--white);
}

.section-subtitle {
  text-align: center;
  font-size: 1rem;
  color: var(--text-muted);
  margin: 0 0 2.5rem;
  max-width: 36ch;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.btn--primary {
  background: var(--accent);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.btn--secondary {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}

.btn--secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}

.btn--lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn--channel {
  gap: 0.65rem;
}

.btn__channel-badge {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
}

.btn__channel-badge img {
  width: 44px;
  height: 44px;
  display: block;
  border-radius: 9px;
  object-fit: contain;
}

.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* Subtle pulse for primary CTA */
@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.35); }
  50% { box-shadow: 0 0 0 8px rgba(255, 107, 53, 0); }
}

.btn--pulse.btn--primary {
  animation: cta-pulse 2s ease-in-out infinite;
}

.btn--pulse.btn--primary:hover {
  animation: none;
  box-shadow: 0 4px 14px rgba(255, 107, 53, 0.4);
}

/* ============================================
   Inline brand wordmark (Rök + Tips)
   ============================================ */
.brand-mark {
  font-family: Inter, -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  font-variant: small-caps;
  font-size: 1em;
  letter-spacing: 0.04em;
  line-height: 1.15;
  white-space: nowrap;
  display: inline;
  vertical-align: baseline;
  text-transform: none;
}

.brand-mark__rok {
  color: var(--brand-mark-red);
}

.brand-mark__tips {
  color: var(--brand-mark-yellow);
}

.brand-mark__i {
  font-variant: normal;
  font-weight: 500;
  /* Scale to cap band of neighbouring T: tittle ~ cap top, stem on shared baseline */
  font-size: 1.1em;
  line-height: 1;
  display: inline-block;
  vertical-align: baseline;
}

.section-title .brand-mark {
  font-size: clamp(1.2rem, 2.8vw, 1.85rem);
}

.interest-modal__title .brand-mark {
  font-size: clamp(1.05rem, 2.4vw, 1.45rem);
}

.hero__urgency .brand-mark {
  font-size: 1.06em;
}

.cta-final__urgency .brand-mark {
  font-size: clamp(0.95rem, 2.2vw, 1.05rem);
}

/* ============================================
   Launch offer banner
   ============================================ */
.launch-banner {
  position: sticky;
  top: 0;
  z-index: 101;
  background: linear-gradient(90deg, var(--accent) 0%, #e85a2a 100%);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 500;
  box-shadow: 0 2px 12px rgba(255, 107, 53, 0.3);
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.launch-banner.is-dismissed {
  display: none;
}

.launch-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.625rem 1.25rem 0.625rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem 1rem;
  position: relative;
  flex-wrap: wrap;
  padding-right: 2.5rem; /* space for dismiss button */
  width: 100%;
  box-sizing: border-box;
}

.launch-banner__logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  flex-shrink: 0;
}

.launch-banner__logo {
  display: block;
  height: 30px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
}

.hero__logo-wrap {
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0;
  margin: 0 0 1.125rem;
}

@media (min-width: 900px) {
  .hero__logo-wrap {
    justify-content: flex-start;
  }
}

.hero__logo {
  display: block;
  height: clamp(56px, 14vw, 88px);
  width: auto;
  max-width: min(100%, 320px);
  object-fit: contain;
}

/* Language-specific logos (matches <html lang="vi"|"en"> from i18n) */
.site-logo-lang--vi {
  display: block;
}

.site-logo-lang--en {
  display: none;
}

html[lang='en'] .site-logo-lang--vi {
  display: none;
}

html[lang='en'] .site-logo-lang--en {
  display: block;
}

.launch-banner__text {
  margin: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  padding: 0 3rem; /* avoid overlap with logo and dismiss */
  max-width: calc(100% - 8rem);
  box-sizing: border-box;
}

.launch-banner__badge {
  display: inline-block;
  background: rgba(0, 0, 0, 0.2);
  padding: 0.2em 0.5em;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  margin-right: 0.35em;
  animation: badge-shine 3s ease-in-out infinite;
}

@keyframes badge-shine {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; }
}

.launch-banner__dismiss {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem;
  opacity: 0.9;
  transition: opacity 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.launch-banner__dismiss:hover {
  opacity: 1;
}

/* Small screens: logo and offer share row when space allows; wrap avoids horizontal overflow */
@media (max-width: 767px) {
  .launch-banner__inner {
    flex-wrap: wrap;
    padding-right: 2.5rem;
  }
  .launch-banner__text {
    position: static;
    left: auto;
    transform: none;
    width: auto;
    max-width: none;
    padding: 0 0.5rem;
    flex: 1;
    min-width: 0;
    text-align: center;
  }
}

@media (min-width: 768px) {
  .launch-banner__inner {
    padding: 0.75rem 2rem;
  }
  .launch-banner__dismiss {
    right: 1.5rem;
  }
}

/* ============================================
   Sticky buy bar
   ============================================ */
.sticky-buy {
  position: sticky;
  top: var(--banner-h);
  z-index: 100;
  /* Use opaque background to avoid banner/logo bleed-through */
  background: var(--bg-dark);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid var(--border);
  transform: none;
  transition: none;
}

main { padding-top: 0; padding-bottom: 0; }

.sticky-buy__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  width: 100%;
  box-sizing: border-box;
}

/* Label removed from markup */

.sticky-buy__buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.sticky-buy__buttons > * {
  min-width: 0;
}

@media (min-width: 768px) {
  .sticky-buy__inner {
    padding: 0.875rem 2rem;
  }
}

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh; /* fallback */
  min-height: 100svh; /* stable viewport height on mobile */
  min-height: 100dvh; /* dynamic viewport height when supported */
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  padding: clamp(0.75rem, 2.5vw, 2rem) 0 max(4rem, calc(1.25rem + env(safe-area-inset-bottom, 0px)));
  overflow-x: hidden;
  overflow-y: visible;
}

@media (min-width: 768px) {
  .hero {
    padding: clamp(1rem, 2.5vw, 2.5rem) 0 max(4rem, calc(1.25rem + env(safe-area-inset-bottom, 0px)));
  }
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, var(--accent-muted) 0%, transparent 50%),
              var(--bg-dark);
  pointer-events: none;
}

.hero__container {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.5rem;
  align-items: start;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  flex: 1 1 auto;
}

@media (min-width: 900px) {
  .hero__container {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.28fr);
    gap: clamp(1rem, 2vw, 2rem);
    min-height: 0;
  }
}

@media (min-width: 900px) and (max-width: 1040px) {
  .hero__container {
    min-height: 0;
  }
}

/* Stacked hero (tablet): cap image so portrait asset does not dominate full container width. */
@media (min-width: 768px) and (max-width: 899px) {
  .hero__container {
    gap: clamp(1.5rem, 3vw, 2.25rem);
  }

  .hero__media {
    max-width: min(100%, 440px);
    margin-inline: auto;
  }

  .hero__image {
    width: 100%;
    max-height: min(68dvh, 540px);
    margin-inline: auto;
  }
}

.hero__content {
  text-align: center;
  min-width: 0;
  overflow-wrap: break-word;
}

@media (min-width: 900px) {
  .hero__content {
    text-align: left;
  }
}

.hero__brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin: 0 0 0.5rem;
  max-width: 100%;
}

.hero__headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin: 0 0 1rem;
  color: var(--white);
  max-width: 100%;
}

.hero__subheadline {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--text-muted);
  margin: 0 0 1rem;
  max-width: 480px;
}

.hero__urgency {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 1.5rem;
}

.hero__features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-bottom: 2rem;
  justify-content: center;
}

@media (min-width: 900px) {
  .hero__features {
    justify-content: flex-start;
  }
}

.hero__feature {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.hero__feature-icon {
  color: var(--success);
  font-weight: 700;
}

.hero__content .hero__subheadline {
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 900px) {
  .hero__content .hero__subheadline {
    margin-left: 0;
    margin-right: 0;
  }
}

/* Never wrap to a column: narrow laptop hero columns still fit Vi + EN labels */
.hero__cta {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  justify-content: center;
}

.hero__cta .btn {
  flex: 0 1 auto;
  min-width: 0;
  box-sizing: border-box;
}

@media (max-width: 899px) {
  .hero__cta {
    gap: 0.5rem;
  }

  .hero__cta .btn--lg {
    padding: 0.75rem 0.5rem;
    font-size: 0.8125rem;
  }

  .hero__cta .btn__channel-badge,
  .hero__cta .btn__channel-badge img {
    width: 36px;
    height: 36px;
  }
}

@media (min-width: 900px) {
  .hero__cta {
    justify-content: flex-start;
  }

  .hero__cta .btn--lg {
    padding: 1rem 2rem;
    font-size: 1rem;
  }

  .hero__cta .btn__channel-badge,
  .hero__cta .btn__channel-badge img {
    width: 44px;
    height: 44px;
  }
}

.hero__media {
  margin: 0;
  padding: 0;
  border: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-width: 0;
}

@media (min-width: 900px) {
  .hero__media {
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    height: fit-content;
    align-self: start;
  }
}

.hero__image {
  display: block;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5);
  transition: transform 0.5s ease;
}

/* Desktop: fill the image column; height follows portrait aspect ratio (no short max-height cap). */
@media (min-width: 900px) {
  .hero__image {
    /* Responsive-safe growth: large on desktop, but no hard overflow multiplier. */
    width: clamp(440px, 46vw, 760px);
    max-width: 100%;
    height: auto;
    max-height: min(86vh, 860px);
  }
}

/* Short viewports (laptop/tablet landscape): keep hero scrollable without oversized portrait. */
@media (min-width: 900px) and (max-height: 820px) {
  .hero {
    min-height: 0;
    padding-top: clamp(1rem, 3vh, 2.5rem);
    padding-bottom: max(2rem, calc(1rem + env(safe-area-inset-bottom, 0px)));
  }

  .hero__container {
    min-height: 0;
  }

  .hero__image {
    max-height: min(72dvh, 620px);
    width: clamp(380px, 42vw, 620px);
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .hero__image {
    width: min(100%, 88vw, 92dvw);
    max-width: min(420px, 94vw);
    height: auto;
    max-height: min(72dvh, 600px);
  }
}

@media (max-width: 899px) and (orientation: landscape) and (max-height: 520px) {
  .hero {
    min-height: 0;
    padding-top: 1rem;
    padding-bottom: max(1.25rem, env(safe-area-inset-bottom, 0px));
  }

  .hero__image {
    max-height: min(48dvh, 280px);
  }
}

.hero__media:hover .hero__image {
  transform: scale(1.02);
}

/* ============================================
   Social proof strip
   ============================================ */
.social-proof {
  padding: 1.75rem 0;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.social-proof .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

.social-proof__text {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin: 0;
}

.social-proof__stats {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.social-proof__stars {
  color: var(--accent);
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  animation: stars-soft 4s ease-in-out infinite;
}

.social-proof__count {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text);
}

/* ============================================
   Video section
   ============================================ */
.video-section {
  padding: var(--section-padding-y-mobile) 0;
}

@media (min-width: 768px) {
  .video-section {
    padding: var(--section-padding-y) 0;
  }
}

.video-cta {
  text-align: center;
  margin-top: 0.5rem;
}

.how-it-works .video-cta {
  margin-top: 2rem;
}

.video-wrapper {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface);
}

.video-thumb {
  display: block;
  position: relative;
  aspect-ratio: 16 / 9;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-thumb__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4);
  transition: transform 0.2s, background 0.2s;
}

.video-thumb__play::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 52%;
  transform: translate(-50%, -50%);
  border: 14px solid transparent;
  border-left-color: var(--white);
  margin-left: 4px;
}

.video-thumb:hover .video-thumb__play {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--accent-hover);
}

.video-embed {
  position: absolute;
  inset: 0;
  background: var(--bg-dark);
}

.video-thumb[hidden] {
  display: none;
}

.video-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.video-embed[hidden] {
  display: none;
}

/* Fullscreen video modal */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 190;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 3vw, 2rem);
}

.video-modal.is-open {
  display: flex;
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}

.video-modal__dialog {
  position: relative;
  width: min(960px, 100%);
  margin: 0;
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
}

.video-modal__close {
  position: absolute;
  top: 0.5rem;
  right: 0.75rem;
  z-index: 2;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  padding: 0.2rem 0.5rem;
  cursor: pointer;
  border-radius: 4px;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.video-modal__close:hover,
.video-modal__close:focus-visible {
  color: var(--brand-mark-yellow);
  background: rgba(254, 0, 0, 0.45);
}

.video-modal__close:focus-visible {
  outline: 2px solid var(--brand-mark-yellow);
  outline-offset: 2px;
}

.video-modal__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: calc(100vh - 4.5rem);
  background: #000;
}

.video-modal__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-modal__frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  background: #000;
}

/* ============================================
   Benefits
   ============================================ */
.benefits {
  padding: var(--section-padding-y-mobile) 0;
  background: var(--bg-elevated);
}

@media (min-width: 768px) {
  .benefits {
    padding: var(--section-padding-y) 0;
  }
}

.benefits__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 600px) {
  .benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .benefits__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.benefit-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-muted);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
}

.benefit-card:hover .benefit-card__icon {
  transform: scale(1.08);
}

.benefit-card__icon {
  width: 48px;
  height: 48px;
  color: var(--accent);
  margin-bottom: 1rem;
  transition: transform 0.25s ease;
}

.benefit-card__icon svg {
  width: 100%;
  height: 100%;
}

/* Staggered reveal delay for benefit cards */
.benefits__grid .benefit-card.reveal:nth-child(1) { transition-delay: 0.05s; }
.benefits__grid .benefit-card.reveal:nth-child(2) { transition-delay: 0.1s; }
.benefits__grid .benefit-card.reveal:nth-child(3) { transition-delay: 0.15s; }
.benefits__grid .benefit-card.reveal:nth-child(4) { transition-delay: 0.2s; }

.benefit-card__title {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--white);
}

.benefit-card__text {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* ============================================
   How it works
   ============================================ */
.how-it-works {
  padding: var(--section-padding-y-mobile) 0;
}

@media (min-width: 768px) {
  .how-it-works {
    padding: var(--section-padding-y) 0;
  }
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 2rem;
  max-width: 640px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: none;
  }
}

.step {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: transform 0.2s, border-color 0.2s;
}

.step:hover {
  transform: translateY(-2px);
  border-color: var(--accent-muted);
}

.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: var(--accent);
  background: var(--accent-muted);
  border-radius: 50%;
  margin-bottom: 1rem;
  transition: transform 0.2s ease;
}

.step:hover .step__num {
  transform: scale(1.08);
}

.step__title {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--white);
}

.step__text {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin: 0;
}

/* ============================================
   Comparison table
   ============================================ */
.comparison {
  padding: var(--section-padding-y-mobile) 0;
  background: var(--bg-elevated);
}

@media (min-width: 768px) {
  .comparison {
    padding: var(--section-padding-y) 0;
  }
}

.comparison-table-wrapper {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.comparison-table {
  width: 100%;
  min-width: 320px;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.comparison-table th,
.comparison-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.comparison-table thead th {
  background: var(--bg-card);
  font-weight: 600;
  color: var(--white);
}

.comparison-table thead th:first-child {
  border-radius: 12px 0 0 0;
}

.comparison-table thead th:last-child {
  border-radius: 0 12px 0 0;
  color: var(--white);
}

.comparison-table tbody th {
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--text-muted);
  width: 35%;
}

.comparison-table tbody td {
  color: var(--text);
}

.comparison-table tbody tr:last-child th,
.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

/* ============================================
   Testimonials
   ============================================ */
.testimonials {
  padding: var(--section-padding-y-mobile) 0;
}

@media (min-width: 768px) {
  .testimonials {
    padding: var(--section-padding-y) 0;
  }
}

.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 600px) {
  .testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  margin: 0;
  padding: 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: transform 0.2s, border-color 0.2s;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
}

.testimonial-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent-muted);
}

.testimonial-card__stars {
  color: var(--accent);
  font-size: 1rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  display: inline-block;
  animation: stars-soft 4s ease-in-out infinite;
}

@keyframes stars-soft {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; }
}

.testimonial-card__quote {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  margin: 0;
  font-style: italic;
  flex: 1 1 auto;
}

.testimonial-card__author {
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1.25rem;
  flex-shrink: 0;
}

.testimonial-card__avatar {
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-card__author cite {
  font-style: normal;
  font-weight: 500;
  font-size: 0.9375rem;
  line-height: 1.35;
  color: var(--text-muted);
  margin: 0;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  padding: var(--section-padding-y-mobile) 0;
  background: var(--bg-elevated);
}

@media (min-width: 768px) {
  .faq {
    padding: var(--section-padding-y) 0;
  }
}

.faq-list {
  max-width: 640px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-radius: 12px 12px 0 0;
  overflow: hidden;
}

.faq-item:last-child {
  border-radius: 0 0 12px 12px;
  border-bottom: none;
}

.faq-item__question {
  padding: 1.25rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  /* gap only between the text block and the +; do not put gap between text / brand spans inside the block */
  gap: 0.75rem;
  transition: background 0.2s;
}

.faq-item__question-text {
  flex: 1;
  min-width: 0;
}

.faq-item__question::-webkit-details-marker {
  display: none;
}

.faq-item__question::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--accent);
  flex-shrink: 0;
  margin-left: auto;
  transition: transform 0.2s;
}

.faq-item[open] .faq-item__question::after {
  transform: rotate(45deg);
}

.faq-item__question:hover {
  background: var(--bg-card);
}

.faq-item__answer {
  padding: 0 1.5rem 1.25rem;
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.faq-item__answer .faq-item__video-link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq-item__answer .faq-item__video-link:hover {
  color: var(--accent-hover);
}

.faq-item__answer .faq-item__video-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* FAQ: wordmark is text (not image); keep it visually tight in running copy */
.faq .brand-mark {
  letter-spacing: normal;
  line-height: 1.2;
}

.faq .brand-mark__i {
  font-size: 1em;
  line-height: 1;
  vertical-align: -0.035em;
}

/* ============================================
   Final CTA
   ============================================ */
.cta-final {
  padding: var(--section-padding-y-mobile) 0;
}

@media (min-width: 768px) {
  .cta-final {
    padding: var(--section-padding-y) 0;
  }
}

.cta-final__box {
  max-width: 640px;
  margin: 0 auto;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, var(--accent-muted) 0%, var(--bg-card) 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  text-align: center;
}

.cta-final__urgency {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 0.5rem;
}

.cta-final__headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  margin: 0 0 0.75rem;
  color: var(--white);
}

.cta-final__text {
  font-size: 1rem;
  color: var(--text-muted);
  margin: 0 0 2rem;
  line-height: 1.6;
}

.cta-final__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ============================================
   B2B strip (above footer)
   ============================================ */
.b2b-strip {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  background: var(--bg-card);
  text-align: center;
}

.b2b-strip .container {
  max-width: 560px;
}

.b2b-strip__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--white);
  margin: 0 0 0.75rem;
}

.b2b-strip__text {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 0 1.25rem;
}

/* Same interaction as former footer B2B link */
.b2b-strip__cta {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.2s;
}

.b2b-strip__cta:hover {
  color: var(--accent);
}

@media (min-width: 768px) {
  .b2b-strip {
    padding: 3rem 0;
  }
}

/* Learn more (opens Our Story modal) */
.learn-more-strip {
  padding: 1.5rem 0 2rem;
  border-top: 1px solid var(--border);
  background: var(--bg-elevated);
}

.learn-more-strip__inner {
  display: flex;
  justify-content: center;
}

.learn-more-strip__btn {
  min-width: 10rem;
}

/* Contact (mailto, above footer) */
.contact-strip {
  padding: 1.25rem 0 1.75rem;
  border-top: 1px solid var(--border);
  background: var(--bg-dark);
}

.contact-strip__inner {
  display: flex;
  justify-content: center;
}

.contact-strip__link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(255, 107, 53, 0.45);
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.contact-strip__link:hover {
  color: var(--accent-hover);
  text-decoration-color: var(--accent-hover);
}

/* ============================================
   Our Story modal
   ============================================ */
.story-modal {
  position: fixed;
  inset: 0;
  z-index: 201;
  display: none;
}

.story-modal.is-open {
  display: block;
}

.story-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.story-modal__dialog {
  position: relative;
  max-width: 520px;
  margin: 4rem auto;
  padding: 1.75rem 1.75rem 1.5rem;
  background: var(--bg-card);
  border-radius: 16px;
  border: 1px solid var(--border);
  border-color: color-mix(in srgb, var(--brand-mark-red) 32%, var(--border));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
  max-height: calc(100vh - 4rem);
  overflow-y: auto;
}

@media (max-width: 599px) {
  .story-modal__dialog {
    margin: 3.5rem 1rem;
    padding: 1.5rem 1.25rem 1.25rem;
    max-height: calc(100vh - 3rem);
  }
}

.story-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease;
}

.story-modal__close:hover,
.story-modal__close:focus-visible {
  color: var(--brand-mark-yellow);
}

.story-modal__close:focus-visible {
  outline: 2px solid var(--brand-mark-red);
  outline-offset: 2px;
}

.story-modal__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  margin: 0 2rem 1rem 0;
  color: var(--white);
}

.story-modal__body {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.story-modal__body p {
  margin: 0 0 1rem;
}

.story-modal__body p:last-child {
  margin-bottom: 0;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  padding: 1rem 0;
  border-top: 1px solid var(--border);
  background: var(--bg-elevated);
}

.footer__copy {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
  text-align: left;
}

.footer__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  justify-self: start;
  min-width: 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

.footer__links {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem 1rem;
  justify-self: end;
  max-width: 100%;
}

.footer__credit-line {
  margin: 0;
  padding: 0;
  text-align: left;
  font-size: 0.875rem;
  line-height: 1.15;
}

.footer__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer__link:hover {
  color: var(--accent);
}

.footer__credit {
  font-size: inherit;
  font-weight: 600;
  color: var(--text-muted);
  line-height: inherit;
  transition: color 0.2s;
}

.footer__credit:hover {
  color: var(--accent);
}

.footer__top {
  justify-self: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  transition: transform 0.15s ease, border-color 0.2s ease, background 0.2s ease;
}

.footer__top:hover {
  transform: translateY(-1px);
  border-color: var(--accent);
  background: rgba(255, 107, 53, 0.08);
}

.footer__top:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.footer__top svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 520px) {
  .footer__inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer__left {
    align-items: center;
    justify-self: center;
    text-align: center;
  }

  .footer__copy {
    text-align: center;
  }

  .footer__credit-line {
    text-align: center;
  }

  .footer__links {
    justify-self: center;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
  }
}

/* ============================================
   Interest registration modal
   ============================================ */
.interest-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
}

.interest-modal.is-open {
  display: block;
}

.interest-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.interest-modal__dialog {
  position: relative;
  max-width: 480px;
  margin: 4rem auto;
  padding: 1.75rem 1.75rem 1.75rem;
  background: var(--bg-card);
  border-radius: 16px;
  border: 1px solid var(--border);
  border-color: color-mix(in srgb, var(--brand-mark-red) 32%, var(--border));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
  max-height: calc(100vh - 4rem);
  display: flex;
  flex-direction: column;
}

@media (max-width: 599px) {
  .interest-modal__dialog {
    margin: 3.5rem 1rem;
    padding: 1.75rem 1.5rem 1.5rem;
    max-height: calc(100vh - 3rem);
  }
}

.interest-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease;
}

.interest-modal__close:hover,
.interest-modal__close:focus-visible {
  color: var(--brand-mark-yellow);
}

.interest-modal__close:focus-visible {
  outline: 2px solid var(--brand-mark-red);
  outline-offset: 2px;
}

.interest-modal__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  margin: 0 0 0.35rem;
  color: var(--white);
}

.interest-modal__subtitle {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.interest-modal__icon {
  display: inline-block;
  margin-right: 0.35rem;
}

.interest-modal__hint {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.interest-modal__body {
  margin-top: 0.25rem;
  padding-top: 0.25rem;
  overflow-y: auto;
}

.interest-modal__fields {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 0.75rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 420px) {
  .interest-modal__fields {
    grid-template-columns: 1fr;
  }
}

.interest-modal__channels {
  grid-column: 1 / -1;
}

.interest-modal__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.interest-modal__label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
}

.interest-modal__input {
  padding: 0.6rem 0.75rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text);
  font-family: inherit;
  font-size: 0.9375rem;
}

.interest-modal__input:focus-visible {
  outline: 2px solid var(--brand-mark-red);
  outline-offset: 1px;
  border-color: var(--brand-mark-red);
}

.interest-modal__phone {
  display: flex;
  gap: 0.5rem;
}

.interest-modal__phone-code {
  min-width: 110px;
  padding: 0.6rem 0.5rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text);
  font-family: inherit;
  font-size: 0.9rem;
}

.interest-modal__phone-code:focus-visible {
  outline: 2px solid var(--brand-mark-red);
  outline-offset: 1px;
  border-color: var(--brand-mark-red);
}

.interest-modal__phone-input {
  flex: 1;
}

.interest-modal__channels {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.6rem 0.75rem 0.75rem;
  margin: 0;
  background: var(--bg-elevated);
}

.interest-modal__channels legend {
  margin: 0 0 0.35rem;
}

.interest-modal__channel-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.interest-modal__channel-options {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.interest-modal__phone-single {
  flex: 1;
  min-width: 220px;
}

.interest-modal__channel {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  cursor: pointer;
}

.interest-modal__channel input[type="radio"] {
  width: 1rem;
  height: 1rem;
}

.interest-modal__channel input[type="radio"]:checked + span {
  color: var(--brand-mark-yellow);
  font-weight: 500;
}

.interest-modal__error,
.interest-modal__success {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
}

.interest-modal__error {
  color: #f97373;
  color: color-mix(in srgb, var(--brand-mark-red) 72%, white);
}

.interest-modal__success {
  color: var(--brand-mark-yellow);
}

.interest-modal__submit {
  width: 100%;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.interest-modal__privacy {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.interest-modal__privacy a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255, 255, 255, 0.35);
}

.interest-modal__privacy a:hover {
  color: var(--brand-mark-yellow);
  text-decoration-color: var(--brand-mark-red);
}

.interest-modal .btn--secondary:hover {
  border-color: var(--brand-mark-red);
  color: var(--brand-mark-yellow);
}

.interest-modal .btn--secondary:focus-visible {
  outline: 2px solid var(--brand-mark-red);
  outline-offset: 2px;
}

/* ============================================
   Legal pages
   ============================================ */
.legal-header {
  border-bottom: 1px solid var(--border);
  background: var(--bg-elevated);
  padding: 0.75rem 0;
}

.legal-header__inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.legal-header__brand {
  display: inline-block;
  line-height: 0;
}

.legal-header__brand:focus-visible {
  outline: 2px solid var(--brand-mark-red);
  outline-offset: 4px;
  border-radius: 4px;
}

/* No display here — must not override .site-logo-lang--* (same specificity, later rule). */
.legal-header__logo {
  height: 36px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.legal {
  padding: 2rem 0 4rem;
}

.legal__container {
  max-width: 900px;
}

.legal__back {
  display: inline-block;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.legal__back:hover {
  color: var(--brand-mark-yellow);
}

.legal__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  margin: 0 0 0.5rem;
  color: var(--white);
}

.legal__updated {
  margin: 0 0 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.legal__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
}

.legal__heading {
  margin: 1.5rem 0 0.5rem;
  font-size: 1.125rem;
  color: var(--white);
}

.legal__heading:first-child {
  margin-top: 0;
}

.legal__text {
  margin: 0 0 0.75rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.legal-inline-badge {
  display: inline-block;
  width: 22px;
  height: 22px;
  margin: 0 0.12em 0 0.08em;
  vertical-align: -0.35em;
  border-radius: 4px;
  object-fit: contain;
}

.legal__list {
  margin: 0 0 0.75rem 1.25rem;
  padding: 0;
}

.legal__link {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255, 255, 255, 0.35);
}

.legal__link:hover {
  color: var(--brand-mark-yellow);
  text-decoration-color: var(--brand-mark-red);
}

/* ============================================
   Scroll reveal animation
   ============================================ */
.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

/* Progressive enhancement: only animate/hide when JS is running */
html.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

html.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
