:root {
  --navy: #101d2f;
  --navy-2: #17283d;
  --ink: #1b2430;
  --paper: #f7f3ea;
  --white: #ffffff;
  --red: #d9413a;
  --red-dark: #b52f2b;
  --gold: #c9973c;
  --gold-soft: #e8c778;
  --line: rgba(16, 29, 47, 0.14);
  --muted: #5f6b78;
  --shadow: 0 18px 44px rgba(16, 29, 47, 0.16);
  --radius: 8px;
  --font-display: "Archivo", sans-serif;
  --font-body: "Inter", sans-serif;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

[hidden] {
  display: none !important;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font-family: inherit;
}

a {
  color: inherit;
}

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

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

svg {
  flex: 0 0 auto;
}

/* Trust strip */
.trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  min-height: 34px;
  padding: 7px 16px;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0;
  overflow: hidden;
}

.trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.trust-strip i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-soft);
  flex: 0 0 auto;
}

/* Top bar */
.topbar {
  position: relative;
  z-index: 30;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 20px;
}

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

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--white);
  background: var(--red);
  border: 2px solid var(--navy);
  flex: 0 0 auto;
}

.brand-mark svg {
  width: 22px;
  height: 22px;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 900;
  letter-spacing: 0;
  color: var(--navy);
}

.brand-name em {
  font-style: normal;
  color: var(--red);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  flex: 0 0 auto;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.lang-btn {
  min-width: 38px;
  height: 30px;
  padding: 0 9px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.lang-btn.is-active {
  background: var(--white);
  color: var(--red);
  box-shadow: 0 2px 8px rgba(16, 29, 47, 0.14);
}

.official-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--navy);
  border-radius: var(--radius);
  color: var(--navy);
  background: transparent;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.official-link svg {
  width: 16px;
  height: 16px;
}

.official-link:hover {
  background: var(--navy);
  color: var(--white);
}

/* Hero */
.hero {
  position: relative;
  min-height: 82svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 16, 27, 0.52) 0%, rgba(9, 16, 27, 0.58) 45%, rgba(9, 16, 27, 0.88) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 52px;
  padding-bottom: 52px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold-soft);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-family: var(--font-display);
  font-size: 2.9rem;
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: 0;
}

.hero-sub {
  max-width: 560px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.02rem;
  line-height: 1.65;
}

.hero-actions {
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease, border-color 0.16s ease;
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(217, 65, 58, 0.34);
}

.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.btn-secondary {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}

.btn-secondary:hover {
  background: var(--navy);
  color: var(--white);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-width: 620px;
  margin-top: 34px;
}

.hero-stat {
  min-height: 70px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(16, 29, 47, 0.42);
  backdrop-filter: blur(8px);
}

.hero-stat strong,
.hero-stat span {
  display: block;
}

.hero-stat strong {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 900;
  color: var(--white);
}

.hero-stat span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.74rem;
  font-weight: 600;
}

/* Quiz */
.quiz-section {
  padding: 56px 0 64px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.quiz-shell {
  max-width: 860px;
}

.quiz-head {
  margin-bottom: 26px;
}

.quiz-progress-copy {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.quiz-step {
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--red);
  text-transform: uppercase;
}

.quiz-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
}

.progress-track {
  height: 6px;
  border-radius: 999px;
  background: rgba(16, 29, 47, 0.1);
  overflow: hidden;
}

.progress-fill {
  display: block;
  width: 25%;
  height: 100%;
  border-radius: inherit;
  background: var(--red);
  transition: width 0.32s ease;
}

.question-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.7rem;
  line-height: 1.16;
  font-weight: 900;
  letter-spacing: 0;
  color: var(--navy);
}

.question-hint {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(176px, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.option-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 6px;
  min-height: 112px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.option-card:hover {
  border-color: var(--red);
  box-shadow: 0 10px 24px rgba(16, 29, 47, 0.1);
  transform: translateY(-1px);
}

.option-card.is-selected {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(217, 65, 58, 0.16);
}

.option-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: var(--radius);
  color: var(--navy);
  background: rgba(16, 29, 47, 0.07);
  flex: 0 0 auto;
}

.option-icon svg {
  width: 20px;
  height: 20px;
}

.option-label {
  font-family: var(--font-display);
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.22;
  color: var(--ink);
}

.option-sub {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.option-card--media {
  min-height: 0;
  padding: 0;
  overflow: hidden;
}

.option-card--media .option-media {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.option-card--media .option-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.option-card--media:hover .option-media img {
  transform: scale(1.04);
}

.option-card--media .option-copy {
  width: 100%;
  padding: 12px 14px 14px;
}

.option-card--media .option-label {
  font-size: 0.9rem;
}

.mini-chip-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 14px;
}

.mini-chip {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: repeating-conic-gradient(from 0deg, var(--chip-a) 0deg 18deg, var(--chip-b) 18deg 36deg);
  box-shadow: 0 6px 14px rgba(16, 29, 47, 0.18), inset 0 0 0 4px rgba(255, 255, 255, 0.16);
  flex: 0 0 auto;
}

.mini-chip-face {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  margin: 6px;
  border-radius: 50%;
  background: var(--chip-a);
  color: var(--chip-ink);
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 900;
}

.option-card--color {
  flex-direction: row;
  min-height: 96px;
  align-items: center;
}

.option-card--color .option-label {
  font-size: 0.92rem;
}

.option-card--qty {
  align-items: center;
  justify-content: center;
  min-height: 108px;
  text-align: center;
}

.option-card--qty .option-label {
  font-size: 1.05rem;
}

.quiz-nav {
  display: flex;
  justify-content: flex-start;
  margin-top: 24px;
}

.quiz-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 12px;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
}

.quiz-back svg {
  width: 17px;
  height: 17px;
}

.quiz-back:hover {
  color: var(--navy);
  background: rgba(16, 29, 47, 0.06);
}

/* Match animation */
.match-anim {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  padding: 60px 20px;
  background: var(--white);
}

.match-anim-inner {
  text-align: center;
}

.chip-stack {
  position: relative;
  width: 150px;
  height: 150px;
  margin: 0 auto 26px;
}

.stack-chip {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 118px;
  height: 118px;
  margin: -59px 0 0 -59px;
  border-radius: 50%;
  background: repeating-conic-gradient(from 0deg, var(--red) 0deg 18deg, var(--gold-soft) 18deg 36deg);
  box-shadow: inset 0 0 0 10px var(--navy), 0 14px 30px rgba(16, 29, 47, 0.2);
}

.stack-chip::after {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 50%;
  background: var(--navy);
  border: 3px dashed rgba(255, 255, 255, 0.55);
}

.stack-chip-1 {
  animation: stackFloat 1.8s ease-in-out infinite;
}

.stack-chip-2 {
  transform: translate(-34%, -6%) rotate(12deg);
  animation: stackSpin 2.4s linear infinite;
  opacity: 0.82;
}

.stack-chip-3 {
  transform: translate(18%, -18%) rotate(-10deg);
  animation: stackSpinReverse 2.8s linear infinite;
  opacity: 0.7;
}

.stack-chip-4 {
  transform: translate(-12%, 24%) rotate(24deg);
  animation: stackFloat 2.2s ease-in-out 0.2s infinite;
  opacity: 0.6;
}

@keyframes stackSpin {
  from { transform: translate(-34%, -6%) rotate(12deg); }
  to { transform: translate(-34%, -6%) rotate(372deg); }
}

@keyframes stackSpinReverse {
  from { transform: translate(18%, -18%) rotate(-10deg); }
  to { transform: translate(18%, -18%) rotate(-370deg); }
}

@keyframes stackFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.match-kicker {
  margin: 0 0 8px;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.match-anim h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--navy);
}

/* Result */
.result-section {
  padding: 64px 0 80px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.result-shell {
  max-width: 980px;
}

.result-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 44px;
}

.chip-stage {
  text-align: center;
}

.chip-preview {
  width: min(72vw, 250px);
  height: auto;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  border-radius: 50%;
  background: repeating-conic-gradient(from 0deg, var(--chip-a) 0deg 18deg, var(--chip-b) 18deg 36deg);
  box-shadow: 0 24px 54px rgba(16, 29, 47, 0.28), inset 0 0 0 3px rgba(255, 255, 255, 0.24);
  animation: chipPop 0.5s cubic-bezier(0.2, 0.9, 0.3, 1.2) both;
}

@keyframes chipPop {
  from { transform: scale(0.72) rotate(-8deg); opacity: 0; }
  to { transform: scale(1) rotate(0deg); opacity: 1; }
}

.chip-face {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 22px);
  height: calc(100% - 22px);
  margin: 11px;
  border-radius: 50%;
  background: var(--chip-a);
}

.chip-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: calc(100% - 34px);
  height: calc(100% - 34px);
  border: 2px dashed var(--chip-ink);
  border-radius: 50%;
  color: var(--chip-ink);
}

.chip-monogram {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1;
}

.chip-label {
  margin-top: 6px;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-align: center;
  max-width: 80%;
  overflow-wrap: anywhere;
}

.chip-sub {
  margin-top: 5px;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  opacity: 0.72;
}

.chip-caption {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 600;
}

.result-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(217, 65, 58, 0.1);
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.result-info h2 {
  margin: 16px 0 0;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1.12;
  font-weight: 900;
  color: var(--navy);
}

.result-meta {
  margin: 10px 0 0;
  color: var(--red-dark);
  font-size: 0.92rem;
  font-weight: 800;
}

.result-blurb {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.benefit-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink);
}

.benefit-list svg {
  width: 16px;
  height: 16px;
  color: var(--red);
}

.btn-wide {
  width: 100%;
  margin-top: 18px;
}

.btn-secondary.btn-wide {
  margin-top: 10px;
}

.text-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 16px auto 0;
  padding: 8px 10px;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
}

.text-btn svg {
  width: 16px;
  height: 16px;
}

.text-btn:hover {
  color: var(--navy);
  background: rgba(16, 29, 47, 0.06);
}

/* Generic sections */
.section {
  padding: 72px 0;
}

.section-eyebrow {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 2.2rem;
  line-height: 1.1;
  font-weight: 900;
  color: var(--navy);
}

.section-sub {
  max-width: 620px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

/* Logos */
.logos-section {
  padding: 38px 0;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.9);
}

.logos-section .section-eyebrow {
  color: var(--gold-soft);
  text-align: center;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 38px;
  margin-top: 16px;
}

.logo-row span {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.72);
  white-space: nowrap;
}

/* Reasons */
.why {
  background: var(--paper);
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 36px;
}

.reason-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 238px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.reason-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--navy);
}

.reason-icon svg {
  width: 24px;
  height: 24px;
}

.reason-card h3 {
  margin: 16px 0 0;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 900;
  color: var(--navy);
}

.reason-card p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.reason-card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 14px;
  color: var(--red-dark);
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
}

.reason-card a:hover {
  text-decoration: underline;
}

/* Materials */
.materials {
  background: var(--white);
  border-top: 1px solid var(--line);
}

.material-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 36px;
}

.material-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}

.material-media {
  aspect-ratio: 1 / 1;
  background: var(--paper);
  overflow: hidden;
}

.material-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.material-body {
  padding: 16px;
}

.material-tag {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(16, 29, 47, 0.08);
  color: var(--navy);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.material-body h3 {
  margin: 10px 0 0;
  font-family: var(--font-display);
  font-size: 1.06rem;
  font-weight: 900;
  color: var(--navy);
}

.material-body p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.material-body a {
  display: inline-block;
  margin-top: 12px;
  color: var(--red-dark);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
}

.material-body a:hover {
  text-decoration: underline;
}

/* Sample band */
.sample-band {
  background: var(--navy);
  color: var(--white);
}

.sample-band-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: 44px;
}

.sample-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.34);
}

.sample-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.sample-sticker {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  min-height: 54px;
  padding: 0 10px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(217, 65, 58, 0.42);
}

.sample-copy .section-eyebrow {
  color: var(--gold-soft);
}

.sample-copy h2 {
  margin: 12px 0 0;
  font-family: var(--font-display);
  font-size: 2.1rem;
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: 0;
  color: var(--white);
}

.sample-copy .section-sub {
  color: rgba(255, 255, 255, 0.78);
}

.sample-copy .btn {
  margin-top: 22px;
}

/* Moments */
.moments {
  background: var(--paper);
}

.moment-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 36px;
}

.moment-card {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  box-shadow: var(--shadow);
}

.moment-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.moment-card:hover img {
  transform: scale(1.05);
}

.moment-label {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 10px 12px;
  border-radius: var(--radius);
  background: rgba(16, 29, 47, 0.82);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.25;
  backdrop-filter: blur(6px);
}

/* Final CTA */
.final-cta {
  background: var(--navy);
  color: var(--white);
}

.final-cta-inner {
  text-align: center;
}

.final-cta .section-eyebrow {
  color: var(--gold-soft);
}

.final-cta h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 2.3rem;
  line-height: 1.1;
  font-weight: 900;
}

.final-cta .section-sub {
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.78);
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.final-cta .btn-secondary {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
}

.final-cta .btn-secondary:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--navy);
}

/* Footer */
.footer {
  padding: 34px 0;
  background: #0b1522;
  color: rgba(255, 255, 255, 0.72);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-brand .brand-name {
  color: var(--white);
}

.footer p {
  margin: 0;
  max-width: 520px;
  font-size: 0.82rem;
  line-height: 1.5;
}

.footer-link {
  color: var(--gold-soft);
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
}

.footer-link:hover {
  text-decoration: underline;
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(16, 29, 47, 0.94);
  backdrop-filter: blur(10px);
  box-shadow: 0 -8px 30px rgba(16, 29, 47, 0.22);
}

.sticky-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 640px;
  min-height: 50px;
  margin: 0 auto;
  border-radius: var(--radius);
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.94rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(217, 65, 58, 0.4);
}

.sticky-cta svg {
  width: 17px;
  height: 17px;
}

body.has-sticky {
  padding-bottom: 86px;
}

@media (max-width: 960px) {
  .reason-grid,
  .material-grid,
  .moment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reason-card {
    min-height: 220px;
  }

  .sample-band-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .sample-media {
    max-width: 560px;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 16px;
  }

  .trust-strip {
    gap: 0;
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .trust-strip::-webkit-scrollbar {
    display: none;
  }

  .trust-strip span {
    padding: 0 14px;
  }

  .trust-strip span + span {
    border-left: 1px solid rgba(255, 255, 255, 0.16);
  }

  .topbar-inner {
    padding: 12px 16px;
  }

  .official-link span {
    display: none;
  }

  .official-link {
    width: 42px;
    justify-content: center;
    padding: 0;
  }

  .topbar-inner {
    gap: 8px;
  }

  .lang-btn {
    min-width: 34px;
    padding: 0 7px;
  }

  .hero {
    min-height: 84svh;
  }

  .hero-content {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .hero h1 {
    font-size: 2.35rem;
  }

  .hero-sub {
    font-size: 0.94rem;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-stat {
    min-height: 64px;
  }

  .quiz-section {
    padding: 44px 0 52px;
  }

  .question-title {
    font-size: 1.42rem;
  }

  .option-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .option-card {
    min-height: 108px;
    padding: 12px;
  }

  .option-card--color {
    min-height: 92px;
  }

  .option-card--qty {
    min-height: 102px;
  }

  .option-card--media .option-media {
    aspect-ratio: 16 / 9;
  }

  .mini-chip {
    width: 50px;
    height: 50px;
  }

  .mini-chip-wrap {
    padding: 12px;
  }

  .result-section {
    padding: 48px 0 60px;
  }

  .result-panel {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .chip-preview {
    width: min(68vw, 230px);
  }

  .result-info h2 {
    font-size: 1.7rem;
  }

  .benefit-list {
    grid-template-columns: 1fr;
  }

  .sample-copy h2 {
    font-size: 1.75rem;
  }

  .section {
    padding: 56px 0;
  }

  .section-head h2,
  .final-cta h2 {
    font-size: 1.75rem;
  }

  .logo-row {
    gap: 12px 22px;
  }

  .logo-row span {
    font-size: 0.94rem;
  }

  .final-actions {
    flex-direction: column;
  }

  .final-actions .btn {
    width: 100%;
  }
}

@media (max-width: 360px) {
  .brand-name {
    display: none;
  }

  .hero h1 {
    font-size: 2.1rem;
  }

  .option-grid {
    grid-template-columns: 1fr;
  }

  .option-card {
    min-height: 100px;
  }

  .option-card--color {
    min-height: 88px;
  }

  .option-card--qty {
    min-height: 96px;
  }

  .reason-card {
    min-height: 200px;
  }
}
