/*
Theme Name: Belysian
Theme URI: https://belysian.com
Author: Belysian
Description: Official Belysian marketing and App Store legal site — dark, calm, premium.
Version: 2.1.0
Requires at least: 6.0
Text Domain: belysian
*/

:root {
  --bg: #080809;
  --bg-soft: #0e0e11;
  --bg-elevated: #141418;
  --bg-card: #121216;
  --text: #f5f2f8;
  --text-muted: #a8a0b3;
  --text-dim: #6f677a;
  --accent: #b892e8;
  --accent-soft: rgba(184, 146, 232, 0.12);
  --accent-line: rgba(184, 146, 232, 0.28);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.12);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 72px;
  --container: 1140px;
  --radius: 20px;
  --radius-lg: 28px;
}

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

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-weight: 400;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

.site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* —— Header —— */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 20px;
  min-height: var(--header-h);
  padding: 0 clamp(18px, 4vw, 40px);
  border-bottom: 1px solid transparent;
  background: rgba(8, 8, 9, 0.88);
  transition: border-color 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--border);
  background: rgba(8, 8, 9, 0.96);
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
}

.site-logo:hover {
  opacity: 0.88;
}

.site-logo img {
  width: 26px;
  height: 26px;
}

.site-logo span {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 22px;
  align-items: center;
}

.site-nav a {
  color: var(--text-muted);
  font-size: 0.86rem;
  font-weight: 400;
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--text);
}

.site-header-cta .store-badge {
  min-height: 40px;
  padding: 0 14px;
}

.site-header-cta .store-badge svg {
  width: 16px;
  height: 19px;
}

.site-header-cta .store-badge-text strong {
  font-size: 0.82rem;
}

.site-header-cta .store-badge-text small {
  font-size: 0.58rem;
}

/* —— Buttons & store badge —— */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  border: 1px solid transparent;
  transition: opacity 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn-ghost {
  color: var(--text-muted);
  border-color: var(--border-strong);
  background: transparent;
}

.btn-ghost:hover {
  color: var(--text);
  border-color: var(--accent-line);
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 14px;
  background: var(--text);
  color: #0a0a0b;
  border: 1px solid transparent;
  transition: opacity 0.2s ease, transform 0.25s var(--ease);
}

.store-badge:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.store-badge-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}

.store-badge-text small {
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.store-badge-text strong {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* —— Reveal —— */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

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

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .pill-strip-track {
    animation: none !important;
  }
}

/* —— Hero —— */

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 55% 50% at 78% 42%, rgba(120, 86, 168, 0.2), transparent 62%),
    var(--bg);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: calc(var(--container) + 80px);
  margin: 0 auto;
  padding: 48px clamp(20px, 4vw, 40px) 64px;
  min-height: calc(100svh - var(--header-h));
  align-items: center;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 540px;
}

.pill {
  display: inline-flex;
  align-self: flex-start;
  margin: 0;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-title {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.hero-title em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--text-muted);
}

.hero-lead {
  margin: 0;
  color: var(--text-muted);
  font-size: clamp(1rem, 2vw, 1.12rem);
  font-weight: 300;
  line-height: 1.75;
  max-width: 38ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 4px;
}

.hero-points {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.hero-points li {
  position: relative;
  padding-left: 16px;
  color: var(--text-dim);
  font-size: 0.84rem;
  font-weight: 400;
}

.hero-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 0 8px;
}

.hero-mark {
  position: relative;
  width: min(78vw, 440px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-mark-glow {
  position: absolute;
  inset: -12% -8%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(184, 146, 232, 0.22), transparent 58%),
    radial-gradient(circle at 50% 50%, rgba(139, 101, 184, 0.1), transparent 72%);
  pointer-events: none;
}

.hero-mark::before {
  content: '';
  position: absolute;
  inset: 4% 0;
  border-radius: 50%;
  border: 1px solid rgba(184, 146, 232, 0.1);
  pointer-events: none;
}

.hero-mark img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  max-width: 440px;
  aspect-ratio: 1024 / 956;
  object-fit: contain;
}

@media (min-width: 960px) {
  .hero-inner {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 48px;
    padding-top: 56px;
    padding-bottom: 72px;
  }

  .hero-visual {
    justify-content: flex-end;
    align-items: center;
    padding: 0 0 0 24px;
  }

  .hero-mark {
    width: min(100%, 480px);
  }

  .hero-mark img {
    max-width: 480px;
  }
}

/* —— Pill strip —— */

.pill-strip {
  overflow: hidden;
  border-block: 1px solid var(--border);
  background: var(--bg-soft);
  padding: 14px 0;
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
}

.pill-strip-track {
  display: flex;
  width: max-content;
  animation: pillScroll 36s linear infinite;
  will-change: transform;
}

.pill-strip-set {
  display: flex;
  flex-shrink: 0;
  align-items: center;
}

.pill-strip-set span {
  color: var(--text-dim);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  padding-right: 2.75rem;
}

.pill-strip-set span::after {
  content: '·';
  margin-left: 2.75rem;
  opacity: 0.45;
}

@keyframes pillScroll {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

/* —— Sections —— */

.section {
  padding: clamp(72px, 10vw, 120px) clamp(20px, 4vw, 40px);
}

.section-soft {
  background: var(--bg-soft);
}

.section-inner {
  max-width: var(--container);
  margin: 0 auto;
}

.section-head {
  max-width: 640px;
  margin-bottom: clamp(40px, 6vw, 64px);
}

.section-eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
}

.section-title {
  margin: 0 0 16px;
  font-family: var(--font-body);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.section-lead {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.75;
  max-width: 42ch;
}

/* —— Steps —— */

.steps {
  display: grid;
  gap: 20px;
}

.step {
  display: grid;
  gap: 20px;
  padding: clamp(24px, 4vw, 32px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.step-num {
  color: var(--text-dim);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  font-weight: 500;
}

.step-body h3 {
  margin: 8px 0 10px;
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.step-body p {
  margin: 0;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.7;
  max-width: 48ch;
}

.step-mock {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  padding: 20px;
}

.mock-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mock-label {
  color: var(--accent);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
}

.mock-card strong {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.mock-meta {
  color: var(--text-dim);
  font-size: 0.82rem;
}

.mock-quote {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (min-width: 820px) {
  .step {
    grid-template-columns: auto 1fr minmax(240px, 320px);
    align-items: center;
    gap: 28px 36px;
  }

  .step-num {
    align-self: start;
    padding-top: 6px;
  }
}

/* —— Feature grid —— */

.feature-grid {
  display: grid;
  gap: 16px;
}

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

@media (min-width: 960px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
}

.feature-card {
  padding: 28px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: border-color 0.25s ease, background 0.25s ease;
}

.feature-card:hover {
  border-color: var(--accent-line);
  background: var(--bg-elevated);
}

.feature-num {
  display: block;
  margin-bottom: 18px;
  color: var(--text-dim);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  font-weight: 500;
}

.feature-card h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.feature-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.65;
}

/* —— Split —— */

.split {
  display: grid;
  gap: 48px;
  align-items: center;
}

.split-copy .section-title {
  max-width: 16ch;
}

.list-checks {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.list-checks li {
  position: relative;
  padding-left: 18px;
  color: var(--text-muted);
  font-weight: 300;
}

.list-checks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.guide-showcase {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
}

/* —— Phone mock (Guide section) —— */

.phone-mock {
  display: flex;
  justify-content: center;
  padding: 8px 0;
}

.phone-mock-shell {
  position: relative;
  width: min(100%, 300px);
  padding: 10px;
  border-radius: 42px;
  background: linear-gradient(145deg, #3a3a40 0%, #1a1a1e 48%, #2e2e34 100%);
  box-shadow:
    0 40px 90px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.phone-mock-notch {
  position: absolute;
  top: 16px;
  left: 50%;
  z-index: 2;
  width: 92px;
  height: 26px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #0a0a0b;
}

.phone-mock-screen {
  overflow: hidden;
  border-radius: 34px;
  background: #0a0a0b;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.app-home {
  padding: 52px 18px 14px;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(ellipse 90% 40% at 50% 24%, rgba(184, 154, 221, 0.14), transparent 70%),
    #0a0a0b;
}

.app-home--verran {
  background:
    radial-gradient(ellipse 90% 40% at 50% 24%, rgba(212, 132, 106, 0.16), transparent 70%),
    #0a0a0b;
}

.app-home--verran .app-guide-glow {
  background: radial-gradient(circle, rgba(212, 132, 106, 0.38), transparent 68%);
}

.app-home--verran .app-attribution,
.app-home--verran .app-card-label,
.app-home--verran .app-tabs span.is-active {
  color: #d4846a;
}

.app-home--verran .app-card-label i {
  background: #d4846a;
}

.app-home--verran .app-card {
  border-color: rgba(212, 132, 106, 0.22);
}

.app-greeting-lead {
  margin: 0;
  color: #a8a0b3;
  font-size: 0.82rem;
  line-height: 1.3;
}

.app-greeting-name {
  margin: 2px 0 0;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.app-guide-stage {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 148px;
  margin: 18px 0 8px;
}

.app-guide-glow {
  position: absolute;
  inset: 10% 18% 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 154, 221, 0.35), transparent 68%);
  pointer-events: none;
}

.app-guide-stage img {
  position: relative;
  z-index: 1;
  width: 108px;
  height: auto;
  object-fit: contain;
}

.app-quote {
  margin: 0;
  padding: 0 4px;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-style: italic;
  line-height: 1.45;
  color: #f5f2f8;
}

.app-attribution {
  margin: 10px 4px 0;
  text-align: right;
  color: #b89add;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.app-card {
  margin-top: 22px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(184, 154, 221, 0.18);
  background: rgba(255, 255, 255, 0.03);
}

.app-card-head {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.app-card-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #b89add;
  font-weight: 500;
}

.app-card-label i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #b89add;
}

.app-card-meta {
  color: #6f677a;
}

.app-card-title {
  margin: 0 0 6px;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.35;
}

.app-card-body {
  margin: 0;
  color: #a8a0b3;
  font-size: 0.72rem;
  line-height: 1.45;
}

.app-tabs {
  margin-top: auto;
  padding-top: 18px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  font-size: 0.58rem;
  color: #6f677a;
}

.app-tabs span.is-active {
  color: #b89add;
  font-weight: 500;
}

@media (min-width: 900px) {
  .phone-mock-shell {
    width: 300px;
  }
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: 72px;
  }
}

/* —— Quotes —— */

.quotes {
  display: grid;
  gap: 18px;
}

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

.quote {
  margin: 0;
  padding: 28px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 100%;
}

.quote blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.55;
  color: var(--text-muted);
}

.quote figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  color: var(--text-dim);
  font-size: 0.82rem;
}

.quote-initial {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 500;
  flex-shrink: 0;
}

/* —— Trust band —— */

.trust-band {
  padding: clamp(64px, 8vw, 96px) clamp(20px, 4vw, 40px);
  border-block: 1px solid var(--border);
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(120, 86, 168, 0.12), transparent 65%),
    var(--bg-soft);
  text-align: center;
}

.trust-band .section-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.trust-band .section-title {
  max-width: none;
  margin-bottom: 28px;
}

.trust-tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.trust-tags li {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: var(--bg-card);
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* —— Final CTA —— */

.cta-final {
  padding: clamp(80px, 12vw, 140px) clamp(20px, 4vw, 40px);
  text-align: center;
}

.cta-final h2 {
  margin: 0 0 14px;
  font-family: var(--font-body);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.cta-final p {
  margin: 0 auto 28px;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 36ch;
  line-height: 1.7;
}

.cta-final .hero-actions {
  justify-content: center;
}

/* —— Footer —— */

.site-footer {
  margin-top: auto;
  padding: 56px clamp(20px, 4vw, 40px) 32px;
  border-top: 1px solid var(--border);
  background: var(--bg-soft);
}

.footer-grid {
  display: grid;
  gap: 36px 24px;
  max-width: var(--container);
  margin: 0 auto 40px;
}

.footer-brand .site-logo {
  margin-bottom: 12px;
}

.footer-tagline {
  margin: 0;
  color: var(--text-dim);
  font-size: 0.9rem;
  font-weight: 300;
}

.footer-col h3 {
  margin: 0 0 14px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 500;
}

.footer-col nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--text);
}

.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 0.82rem;
}

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

/* —— Legal pages —— */

.page-shell {
  flex: 1;
  background: var(--bg);
}

.legal-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 72px 24px 100px;
}

.legal-page h1 {
  margin: 0 0 12px;
  font-family: var(--font-body);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.legal-page .updated {
  color: var(--text-dim);
  font-size: 0.84rem;
  margin-bottom: 40px;
}

.legal-page h2 {
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: 500;
  margin: 40px 0 12px;
  letter-spacing: -0.02em;
}

.legal-page h3 {
  font-size: 1.05rem;
  font-weight: 500;
  margin: 28px 0 8px;
  color: var(--text);
}

.legal-page p,
.legal-page li {
  color: var(--text-muted);
  margin-bottom: 12px;
  font-weight: 300;
  line-height: 1.7;
}

.legal-page ul {
  padding-left: 1.25rem;
  margin-bottom: 16px;
}

.legal-page strong {
  color: var(--text);
  font-weight: 500;
}

.legal-page a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.support-email {
  display: inline-block;
  margin-top: 8px;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--accent);
}

.faq-block {
  margin-top: 12px;
  padding: 22px 0;
  border-top: 1px solid var(--border);
}

.faq-block:first-of-type {
  border-top: none;
  padding-top: 0;
}

.faq-block h3 {
  margin: 0 0 8px;
}

.faq-block p {
  margin: 0;
}

/* —— Mobile —— */

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .site-header-cta {
    justify-self: end;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .store-badge,
  .btn-ghost {
    width: 100%;
    justify-content: center;
  }
}
