:root {
  --bg: #0B2118;
  --ivory: #F3EDDF;
  --ivory-dim: rgba(243, 237, 223, 0.74);
  --ivory-muted: rgba(243, 237, 223, 0.5);
  --gold-light: #E9C87E;
  --gold-primary: #D8B36A;
  --green-label: #6FD6A2;
  --red-suit: #D86A55;
  --dark-text: #122A1F;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ivory);
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: rgba(216, 179, 106, 0.35); color: #fff; }

a { color: inherit; }

img { max-width: 100%; }

section { scroll-margin-top: 88px; }

.serif {
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
}

/* ===== Page shell ===== */

.page {
  min-height: 100vh;
  background: radial-gradient(125% 75% at 50% -5%, #25543F 0%, #1A4231 30%, #102A1F 62%, #0A1D15 100%);
  overflow: hidden;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding-left: clamp(18px, 4vw, 40px);
  padding-right: clamp(18px, 4vw, 40px);
}

/* ===== Header ===== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  background: rgba(10, 29, 21, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.site-header__inner {
  padding-top: 14px;
  padding-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand__mark {
  display: inline-flex;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: #163C2C;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--gold-light);
  border: 1px solid rgba(233, 200, 126, 0.3);
}

.brand__name {
  font-size: 23px;
  letter-spacing: 0.01em;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lang-toggle {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 3px;
}

.lang-toggle button {
  border: 0;
  background: transparent;
  color: rgba(243, 237, 223, 0.65);
  font: inherit;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.03em;
  padding: 6px 13px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.lang-toggle button.is-active {
  background: #EDE6D6;
  color: #16140F;
}

.btn-cta {
  display: inline-block;
  text-decoration: none;
  background: var(--ivory);
  color: var(--dark-text);
  font-size: 13.5px;
  font-weight: 800;
  padding: 10px 18px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
}

/* ===== Feature row (hero + alternating feature sections) ===== */

.feature-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(32px, 5vw, 64px);
}

.feature-row--reverse { flex-direction: row-reverse; }

.feature-row__copy { flex: 1 1 360px; min-width: 300px; }

.feature-row__media {
  flex: 1 1 300px;
  min-width: 260px;
  display: flex;
  justify-content: center;
}

.feature-row__media img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 26px 52px rgba(0, 0, 0, 0.5));
}

.eyebrow {
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 14px;
}

/* ===== Hero ===== */

.hero {
  padding-top: clamp(40px, 7vw, 86px);
  padding-bottom: clamp(20px, 4vw, 40px);
}

.hero__badge-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}

.hero__icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.45);
}

.hero h1 {
  font-size: clamp(46px, 7vw, 82px);
  line-height: 0.98;
  margin: 0 0 22px;
  letter-spacing: -0.01em;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero__sub {
  font-size: clamp(16px, 1.6vw, 18.5px);
  line-height: 1.55;
  color: var(--ivory-dim);
  max-width: 540px;
  margin: 0 0 30px;
}

.hero__media img { max-width: 380px; }

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 22px;
}

.store-badge {
  display: inline-block;
  line-height: 0;
  text-decoration: none;
  border-radius: 11px;
  transition: transform 0.2s;
}

.store-badge:hover { transform: translateY(-2px); }

.store-badge img { height: 54px; width: auto; display: block; }

.hero__trust {
  font-size: 13px;
  color: var(--ivory-muted);
  margin: 0;
  letter-spacing: 0.01em;
}

/* ===== How it works ===== */

.section-head {
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 60px);
}

.section-head h2 {
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.05;
  margin: 0;
}

.how { padding-top: clamp(48px, 7vw, 96px); padding-bottom: clamp(48px, 7vw, 96px); }

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(18px, 2.5vw, 28px);
}

.step-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  padding: 30px 28px;
}

.step-card__num {
  font-size: 40px;
  color: var(--gold-primary);
  line-height: 1;
  margin-bottom: 18px;
}

.step-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin: 0 0 10px;
  font-family: inherit;
}

.step-card p {
  font-size: 15px;
  line-height: 1.5;
  color: rgba(243, 237, 223, 0.66);
  margin: 0;
}

/* ===== Feature sections (variants / scoring / scoreboard) ===== */

.feature-section { padding-top: clamp(40px, 6vw, 80px); padding-bottom: clamp(40px, 6vw, 80px); }

.feature-section h2 {
  font-size: clamp(30px, 4.2vw, 48px);
  line-height: 1.04;
  margin: 0 0 16px;
}

.feature-section__body {
  font-size: 16.5px;
  line-height: 1.55;
  color: rgba(243, 237, 223, 0.72);
  margin: 0 0 24px;
  max-width: 500px;
}

/* Variants grid */

.variant-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 12px;
}

.variant-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  padding: 15px 16px;
}

.variant-card__glyph {
  font-size: 19px;
  background: var(--ivory);
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.variant-card__glyph--black { color: #1a1a1a; }
.variant-card__glyph--red { color: var(--red-suit); }

.variant-card__title { font-size: 15.5px; font-weight: 700; }

.variant-card__desc {
  font-size: 13px;
  color: rgba(243, 237, 223, 0.6);
  margin-top: 2px;
}

/* Scoring checklist */

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15.5px;
  color: rgba(243, 237, 223, 0.85);
}

.checklist .check {
  color: var(--green-label);
  flex-shrink: 0;
}

/* ===== Why / trust grid ===== */

.why { padding-top: clamp(40px, 6vw, 80px); padding-bottom: clamp(40px, 6vw, 80px); }

.why h2 {
  font-size: clamp(30px, 4.2vw, 48px);
  line-height: 1.04;
  margin: 0 0 clamp(28px, 4vw, 48px);
  text-align: center;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(16px, 2vw, 22px);
}

.trust-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  padding: 26px 24px;
}

.trust-card--gold {
  background: linear-gradient(180deg, rgba(216, 179, 106, 0.12), rgba(216, 179, 106, 0.04));
  border: 1px solid rgba(216, 179, 106, 0.3);
}

.trust-card__icon { font-size: 22px; margin-bottom: 14px; }

.trust-card h3 {
  font-size: 17.5px;
  font-weight: 700;
  margin: 0 0 8px;
  font-family: inherit;
}

.trust-card--gold h3 { color: var(--gold-light); }

.trust-card p {
  font-size: 14.5px;
  line-height: 1.5;
  color: rgba(243, 237, 223, 0.68);
  margin: 0;
}

/* ===== Download CTA ===== */

.download-section { padding: clamp(20px, 4vw, 40px) 0 clamp(56px, 7vw, 96px); }

.download-panel {
  background: radial-gradient(120% 140% at 50% 0%, #235340 0%, #15392B 55%, #0E2A20 100%);
  border: 1px solid rgba(233, 200, 126, 0.22);
  border-radius: 28px;
  padding: clamp(40px, 6vw, 72px) clamp(24px, 5vw, 56px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.download-panel__suit {
  position: absolute;
  inset: 0;
  pointer-events: none;
  font-size: 300px;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  top: -40px;
  left: 20px;
}

.download-panel h2 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
  margin: 0 0 16px;
  position: relative;
}

.download-panel__sub {
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.5;
  color: rgba(243, 237, 223, 0.72);
  max-width: 520px;
  margin: 0 auto 30px;
  position: relative;
}

.download-panel .store-badges { justify-content: center; position: relative; margin-bottom: 0; }

/* ===== FAQ ===== */

.faq {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(20px, 4vw, 40px) clamp(18px, 4vw, 40px) clamp(56px, 7vw, 90px);
}

.faq h2 {
  font-size: clamp(30px, 4.2vw, 48px);
  line-height: 1.04;
  margin: 0 0 clamp(26px, 4vw, 40px);
  text-align: center;
}

.faq-list { display: flex; flex-direction: column; gap: 14px; }

.faq-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  padding: 22px 24px;
}

.faq-item h3 {
  font-size: 16.5px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--gold-light);
  font-family: inherit;
}

.faq-item p {
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(243, 237, 223, 0.7);
  margin: 0;
}

/* ===== Footer ===== */

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 22, 16, 0.6);
}

.site-footer__top {
  padding: clamp(36px, 5vw, 56px) clamp(18px, 4vw, 40px);
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-brand { flex: 1 1 280px; min-width: 240px; }

.footer-brand__row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-brand__name { font-size: 22px; }

.footer-brand__tagline {
  font-size: 14px;
  color: rgba(243, 237, 223, 0.55);
  margin: 0;
  max-width: 300px;
}

.footer-links {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

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

.footer-links a {
  text-decoration: none;
  font-size: 14px;
  color: rgba(243, 237, 223, 0.7);
}

.site-footer__legal {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 40px) clamp(30px, 4vw, 44px);
}

.site-footer__legal p {
  font-size: 12px;
  color: rgba(243, 237, 223, 0.4);
  line-height: 1.5;
  margin: 0 0 6px;
  max-width: 620px;
}

.site-footer__legal p:last-child { margin-bottom: 0; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

@media (max-width: 520px) {
  .site-header__inner { flex-wrap: wrap; }
}

/* ===== Legal / support article pages ===== */

.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(36px, 6vw, 64px) clamp(18px, 4vw, 40px) clamp(64px, 8vw, 100px);
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 22px;
}

.legal-back:hover { text-decoration: underline; }

.legal-page h1 {
  font-size: clamp(32px, 4.5vw, 50px);
  line-height: 1.05;
  margin: 0 0 10px;
}

.legal-updated {
  font-size: 13px;
  color: var(--ivory-muted);
  margin: 0 0 clamp(28px, 4vw, 40px);
}

.legal-subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 clamp(32px, 4vw, 48px);
}

.legal-subnav a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  color: rgba(243, 237, 223, 0.75);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 7px 15px;
}

.legal-subnav a.is-current {
  color: #16140F;
  background: var(--ivory);
  border-color: var(--ivory);
}

.legal-summary {
  background: linear-gradient(180deg, rgba(216, 179, 106, 0.12), rgba(216, 179, 106, 0.04));
  border: 1px solid rgba(216, 179, 106, 0.3);
  border-radius: 18px;
  padding: 22px 24px;
  margin: 0 0 clamp(32px, 4vw, 48px);
}

.legal-summary h2 {
  font-size: 15px;
  font-family: inherit;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 0 0 12px;
}

.legal-summary ul {
  margin: 0;
  padding: 0 0 0 18px;
}

.legal-summary li {
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(243, 237, 223, 0.85);
  margin-bottom: 6px;
}

.legal-summary li:last-child { margin-bottom: 0; }

.legal-body h2 {
  font-size: clamp(21px, 2.6vw, 26px);
  line-height: 1.2;
  margin: clamp(32px, 4vw, 44px) 0 14px;
}

.legal-body h2:first-child { margin-top: 0; }

.legal-body h3 {
  font-size: 15.5px;
  font-weight: 700;
  font-family: inherit;
  margin: 20px 0 8px;
  color: var(--ivory);
}

.legal-body p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(243, 237, 223, 0.75);
  margin: 0 0 14px;
}

.legal-body ul, .legal-body ol {
  margin: 0 0 14px;
  padding-left: 20px;
}

.legal-body li {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(243, 237, 223, 0.75);
  margin-bottom: 8px;
}

.legal-body strong { color: var(--ivory); font-weight: 700; }

.legal-body a { color: var(--gold-light); text-decoration: underline; }

.legal-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 18px;
  font-size: 14px;
}

.legal-body th, .legal-body td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(243, 237, 223, 0.8);
}

.legal-body th {
  color: var(--gold-light);
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.legal-contact {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  padding: 22px 24px;
  margin-top: clamp(28px, 4vw, 40px);
}

.legal-contact p {
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(243, 237, 223, 0.75);
  margin: 0;
}

.legal-contact a { color: var(--gold-light); text-decoration: underline; }
