:root {
  --navy: #0b1020;
  --navy-2: #121a30;
  --navy-3: #1a2540;
  --ink: #e8e5da;
  --muted: #a8abc0;
  --gold: #d8b56a;
  --gold-2: #f1d894;
  --red: #b3402e;
  --line: rgba(216, 181, 106, 0.28);
  --line-soft: rgba(232, 229, 218, 0.14);
  --paper: #f4f1e8;
  --paper-ink: #171a22;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--navy);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

button {
  font-family: inherit;
}

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

.trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  min-height: 34px;
  padding: 7px 16px;
  background: var(--gold);
  color: #2a1c06;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

.trust-strip i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #2a1c06;
  display: inline-block;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(11, 16, 32, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 12px 20px;
}

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

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

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

.brand-name {
  font-family: var(--font-display);
  font-size: 1.42rem;
  font-weight: 700;
  color: var(--ink);
}

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

.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(--navy-2);
}

.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(--gold);
  color: #2a1c06;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
}

.official-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--gold);
  background: transparent;
  font-size: 0.84rem;
  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(--gold);
  color: var(--navy);
}

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

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

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 16, 32, 0.96) 0%, rgba(11, 16, 32, 0.72) 46%, rgba(11, 16, 32, 0.45) 100%),
    linear-gradient(180deg, rgba(11, 16, 32, 0.2) 0%, rgba(11, 16, 32, 0.94) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 88px 20px 120px;
}

.hero-eyebrow,
.section-eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  font-family: var(--font-display);
  font-size: 3.7rem;
  line-height: 1.02;
  font-weight: 700;
}

.hero-sub {
  max-width: 540px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

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

.btn svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.btn-primary {
  background: var(--gold);
  color: #241703;
  box-shadow: 0 12px 30px rgba(216, 181, 106, 0.26);
}

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

.btn-wide {
  width: 100%;
}

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

.hero-stat {
  min-height: 64px;
  padding: 12px 14px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(18, 26, 48, 0.66);
}

.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  line-height: 1;
  color: var(--gold-2);
}

.hero-stat span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.72rem;
}

.hero-cards {
  position: absolute;
  right: -60px;
  bottom: 8%;
  z-index: 1;
  width: 470px;
  height: 360px;
  pointer-events: none;
}

.hero-card {
  position: absolute;
  width: 210px;
  height: 294px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(241, 216, 148, 0.5);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.55);
  transform-origin: 50% 100%;
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card--1 {
  left: 4px;
  bottom: 8px;
  transform: rotate(-22deg) translateY(10px);
}

.hero-card--2 {
  left: 96px;
  bottom: 2px;
  transform: rotate(-8deg);
  z-index: 2;
}

.hero-card--3 {
  left: 188px;
  bottom: 8px;
  transform: rotate(8deg) translateY(8px);
  z-index: 1;
}

.hero-card--4 {
  left: 272px;
  bottom: 22px;
  transform: rotate(21deg) translateY(16px);
}

/* Quiz */
.quiz-section {
  padding: 70px 0 80px;
  background:
    radial-gradient(1200px 480px at 50% -10%, rgba(216, 181, 106, 0.12), transparent 60%),
    var(--navy);
}

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

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

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

.quiz-step {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
}

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

.progress-track {
  height: 6px;
  border-radius: 99px;
  background: rgba(232, 229, 218, 0.12);
  overflow: hidden;
}

.progress-fill {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  transition: width 0.35s ease;
}

.question-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 2.35rem;
  line-height: 1.08;
  font-weight: 700;
}

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

.option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.option-card {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 108px;
  padding: 12px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--navy-2);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.18s ease, background 0.2s ease;
}

.option-card:hover {
  border-color: var(--line);
  transform: translateY(-1px);
}

.option-card.is-selected {
  border-color: var(--gold);
  background: rgba(216, 181, 106, 0.12);
  box-shadow: 0 0 0 1px var(--gold);
}

.option-media {
  width: 68px;
  height: 88px;
  border-radius: 6px;
  overflow: hidden;
  flex: 0 0 auto;
  border: 1px solid rgba(241, 216, 148, 0.4);
}

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

.option-copy {
  min-width: 0;
}

.option-label {
  display: block;
  font-weight: 800;
  font-size: 0.96rem;
}

.option-sub {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.35;
}

.option-card--minimal {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 130px;
}

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

.quiz-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 4px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
  cursor: pointer;
}

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

.quiz-back:hover {
  color: var(--gold);
}

/* Reveal */
.reveal-section {
  padding: 120px 0;
  text-align: center;
}

.reveal-inner {
  position: relative;
}

.shuffle-cards {
  position: relative;
  width: 180px;
  height: 130px;
  margin: 0 auto 30px;
}

.shuffle-card {
  position: absolute;
  top: 0;
  width: 108px;
  height: 150px;
  border-radius: 8px;
  border: 1px solid rgba(241, 216, 148, 0.45);
  background:
    linear-gradient(135deg, rgba(216, 181, 106, 0.24), rgba(216, 181, 106, 0.04)),
    var(--navy-3);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
}

.shuffle-card::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(241, 216, 148, 0.35);
  border-radius: 5px;
}

.shuffle-card--a {
  left: 6px;
  animation: shuffleA 1.6s ease-in-out infinite;
}

.shuffle-card--b {
  left: 40px;
  animation: shuffleB 1.6s ease-in-out 0.12s infinite;
}

.shuffle-card--c {
  right: 40px;
  animation: shuffleC 1.6s ease-in-out 0.24s infinite;
}

.shuffle-card--d {
  right: 6px;
  animation: shuffleD 1.6s ease-in-out 0.36s infinite;
}

@keyframes shuffleA {
  0%, 100% { transform: translateY(8px) rotate(-12deg); }
  50% { transform: translateY(-8px) rotate(-6deg); }
}

@keyframes shuffleB {
  0%, 100% { transform: translateY(-6px) rotate(-3deg); }
  50% { transform: translateY(9px) rotate(2deg); }
}

@keyframes shuffleC {
  0%, 100% { transform: translateY(8px) rotate(3deg); }
  50% { transform: translateY(-7px) rotate(0deg); }
}

@keyframes shuffleD {
  0%, 100% { transform: translateY(-7px) rotate(12deg); }
  50% { transform: translateY(8px) rotate(6deg); }
}

.reveal-kicker {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.reveal-section h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
}

/* Result */
.result-section {
  padding: 76px 0 88px;
  background:
    radial-gradient(1100px 460px at 50% -8%, rgba(216, 181, 106, 0.14), transparent 60%),
    var(--navy);
}

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

.result-head {
  max-width: 720px;
  margin-bottom: 36px;
}

.result-badge {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 99px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.result-head h2 {
  margin: 14px 0 0;
  font-family: var(--font-display);
  font-size: 2.7rem;
  line-height: 1.06;
  font-weight: 700;
}

.result-sub {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.match-stage {
  display: grid;
  grid-template-columns: minmax(0, 380px) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.flip-card {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 5 / 7;
  perspective: 1200px;
  cursor: pointer;
}

.flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.flip-card.is-flipped .flip-inner {
  transform: rotateY(180deg);
}

.flip-front,
.flip-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(241, 216, 148, 0.55);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
}

.flip-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flip-tag {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 7px 12px;
  border-radius: 6px;
  background: rgba(11, 16, 32, 0.78);
  color: var(--gold-2);
  font-size: 0.74rem;
  font-weight: 800;
}

.flip-back {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  transform: rotateY(180deg);
  background:
    radial-gradient(220px 300px at 50% 40%, rgba(216, 181, 106, 0.2), transparent 70%),
    linear-gradient(145deg, #16203a, #0b1020);
  color: var(--gold-2);
}

.flip-back::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(241, 216, 148, 0.35);
  border-radius: 8px;
}

.back-ace {
  position: absolute;
  top: 22px;
  left: 26px;
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--gold);
}

.back-ace::after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  margin-top: -2px;
  background:
    linear-gradient(135deg, transparent 42%, var(--gold) 43%, var(--gold) 57%, transparent 58%),
    linear-gradient(45deg, transparent 42%, var(--gold) 43%, var(--gold) 57%, transparent 58%);
}

.back-mark {
  width: 52px;
  height: 52px;
}

.back-label {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.match-info {
  min-width: 0;
}

.deck-name {
  display: block;
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--gold-2);
}

.deck-desc {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.deck-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 24px;
}

.deck-meta span {
  padding: 7px 11px;
  border: 1px solid var(--line-soft);
  border-radius: 99px;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 700;
}

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

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

.text-btn:hover {
  color: var(--gold);
}

.also-head {
  margin: 70px 0 22px;
}

.also-head h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
}

.deck-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.deck-strip-card {
  display: block;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--navy-2);
  overflow: hidden;
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.18s ease;
}

.deck-strip-card:hover {
  border-color: var(--line);
  transform: translateY(-2px);
}

.deck-strip-card img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.deck-strip-body {
  padding: 12px 14px 14px;
}

.deck-strip-body strong {
  display: block;
  font-size: 0.9rem;
}

.deck-strip-body span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.76rem;
}

/* Collections */
.section {
  padding: 84px 0;
}

.collections {
  background: var(--navy-2);
}

.section-head {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 2.7rem;
  line-height: 1.06;
  font-weight: 700;
}

.section-sub {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.collection-card {
  display: block;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--navy-3);
  overflow: hidden;
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.18s ease;
}

.collection-card:hover {
  border-color: var(--line);
  transform: translateY(-2px);
}

.collection-card img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.collection-name {
  display: block;
  padding: 14px 16px 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold-2);
}

.collection-line {
  display: block;
  padding: 4px 16px 16px;
  color: var(--muted);
  font-size: 0.8rem;
}

/* Why */
.why {
  background:
    radial-gradient(900px 420px at 50% 110%, rgba(216, 181, 106, 0.1), transparent 60%),
    var(--navy);
}

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

.fact-card {
  padding: 22px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(18, 26, 48, 0.72);
}

.fact-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold);
  margin-bottom: 14px;
}

.fact-icon svg {
  width: 21px;
  height: 21px;
}

.fact-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
}

.fact-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

/* Final CTA */
.final-cta {
  padding: 100px 0 110px;
  text-align: center;
  background:
    radial-gradient(800px 340px at 50% 0%, rgba(216, 181, 106, 0.16), transparent 62%),
    var(--navy-2);
}

.final-cta-inner {
  max-width: 720px;
}

.final-cta h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1.04;
  font-weight: 700;
}

.final-cta .section-sub {
  margin-top: 16px;
}

.final-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

/* Footer */
.footer {
  padding: 42px 0;
  border-top: 1px solid var(--line-soft);
  background: #070b16;
}

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

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

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

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

.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(7, 11, 22, 0.94);
  backdrop-filter: blur(10px);
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.3);
}

.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(--gold);
  color: #241703;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(216, 181, 106, 0.3);
}

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

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

/* Responsive */
@media (max-width: 960px) {
  .hero-cards {
    right: -130px;
    opacity: 0.75;
  }

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

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

  .match-stage {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .flip-card {
    max-width: 360px;
  }
}

@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(42, 28, 6, 0.3);
  }

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

  .official-link span {
    display: none;
  }

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

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

  .hero {
    min-height: 88svh;
  }

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

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

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

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

  .hero-card {
    width: 148px;
    height: 208px;
  }

  .hero-cards {
    right: -40px;
    bottom: 4%;
    width: 330px;
    height: 250px;
    opacity: 0.6;
  }

  .hero-card--1 { left: 0; }
  .hero-card--2 { left: 66px; }
  .hero-card--3 { left: 132px; }
  .hero-card--4 { left: 194px; }

  .quiz-section {
    padding: 54px 0 64px;
  }

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

  .option-grid {
    gap: 10px;
    margin-top: 22px;
  }

  .option-card {
    min-height: 96px;
    gap: 10px;
    padding: 10px;
  }

  .option-media {
    width: 56px;
    height: 74px;
  }

  .option-label {
    font-size: 0.88rem;
  }

  .option-sub {
    font-size: 0.74rem;
  }

  .reveal-section {
    padding: 92px 0;
  }

  .reveal-section h2 {
    font-size: 2.1rem;
  }

  .result-section {
    padding: 58px 0 72px;
  }

  .result-head h2 {
    font-size: 2.15rem;
  }

  .match-stage {
    gap: 30px;
  }

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

  .deck-strip-card:last-child {
    display: none;
  }

  .section {
    padding: 64px 0;
  }

  .section-head h2 {
    font-size: 2.15rem;
  }

  .collection-grid {
    gap: 12px;
  }

  .collection-name {
    font-size: 1.15rem;
  }

  .final-cta {
    padding: 78px 0 88px;
  }

  .final-cta h2 {
    font-size: 2.4rem;
  }

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

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

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

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

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

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

  .deck-strip {
    grid-template-columns: 1fr;
  }

  .deck-strip-card:nth-child(2) {
    display: none;
  }
}
