:root {
  color-scheme: dark light;
  --bg: #000000;
  --panel: #0f0f11;
  --panel-2: #141416;
  --text: #e5e7eb;
  --muted: #a1a1aa;
  --border: #262626;
  --ring: #3b82f6;
  --accent: #22d3ee;
  --accent-2: #a78bfa;
  --brand: #ffb94a;
}

/* Robust viewport height for iOS Safari */
:root {
  --app-vh: 100vh;
}
@supports (height: 100svh) {
  :root {
    --app-vh: 100svh;
  }
}
@supports (height: -webkit-fill-available) {
  :root {
    --app-vh: -webkit-fill-available;
  }
}
@supports (height: 100dvh) {
  :root {
    --app-vh: 100dvh;
  }
}

/* Quiz page overrides formerly inline in index.html */
html,
body {
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
/* Allow -webkit-fill-available to take effect on iOS */
html {
  height: -webkit-fill-available;
}
body::-webkit-scrollbar {
  display: none;
}
/* Prevent layout from exceeding viewport height (no actual scroll) */
body {
  padding: 0 !important;
}
body.has-progress {
  padding-top: 0 !important;
}

/* Fit screens to viewport */
main.quiz {
  height: var(--app-vh);
  overflow: auto;
  margin: 0 !important;
  padding: 0 !important;
  width: 100vw !important;
  max-width: 100vw !important;
}
.landing {
  height: var(--app-vh);
  min-height: var(--app-vh);
  display: flex;
  flex-direction: column;
  width: 100vw;
  padding: 10px; /* outer padding around start screen */
  /* Full-bleed background behind icon, hero, and CTA with subtle dark overlay for contrast */
  background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url("../images/quiz.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #000;
}
.landing .hero {
  flex: 1 1 auto;
  padding: 8px 16px; /* reduce top/bottom to tighten gap */
}
.landing .brand-bar {
  padding: 6px 16px 2px; /* smaller bottom padding to reduce gap */
}
.landing .cta-wrap {
  padding: 10px 16px calc(12px + env(safe-area-inset-bottom));
}
.landing .legal {
  font-size: 12px;
  padding: 0 16px calc(12px + env(safe-area-inset-bottom));
}

#quiz {
  min-height: var(--app-vh);
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* move content to top */
  align-items: stretch;
  padding: 16px; /* add padding around content */
  gap: 12px;
}
#personalizing,
#plan,
#reviews,
#results {
  min-height: var(--app-vh);
}

/* Allow plan and reviews to scroll so bottom content (awards, etc.) isn't clipped */
#plan,
#reviews {
  overflow: auto;
  /* Keep content clear of fixed bottom bar (account for safe area) */
  padding-bottom: calc(84px + env(safe-area-inset-bottom));
}

/* Ensure quiz content clears the fixed top progress bar when visible */
body.has-progress #quiz {
  padding-top: calc(16px + 64px + env(safe-area-inset-top));
}

.quiz-hero {
  text-align: center;
  margin-bottom: 18px;
}
.quiz-hero p {
  margin-top: 6px;
}
.btn[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}
.result {
  margin-top: 12px;
}
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  margin: 0;
}
body {
  font-family: var(--font-geist-sans, ui-sans-serif), system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #000000;
  color: var(--text);
  /* Improve iOS full-height behavior */
  min-height: -webkit-fill-available;
}
.top-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: calc(env(safe-area-inset-top) + 10px) 16px 12px;
  background: #000000;
  border-bottom: 1px solid var(--border);
  backdrop-filter: none;
  z-index: 50;
}
.top-progress .segments {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4px; /* tighter space between laurels and text */
}
.top-progress .segment {
  height: 12px;
  background: #1f2126;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06), 0 1px 2px rgba(0, 0, 0, 0.3);
}
.top-progress .segment .fill {
  height: 100%;
  width: 0%;
  background: var(--brand);
  transition: width 180ms ease;
}
.container {
  max-width: 860px;
  margin: 12vh auto 0;
  padding: 0 20px;
}
h1 {
  font-size: 2.1rem;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
p {
  color: var(--muted);
}
code {
  background: #111214;
  padding: 0.2rem 0.35rem;
  border: 1px solid var(--border);
  border-radius: 6px;
}
.tip {
  opacity: 0.85;
}

.card {
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  background: #121317;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  text-decoration: none;
  transition: background 120ms, border-color 120ms, transform 60ms;
}
.btn:not(.btn-primary):hover {
  background: #181a20;
  border-color: #2f2f32;
}
.btn:active {
  transform: translateY(1px);
}
.btn-primary {
  background: var(--brand);
  border-color: transparent;
  color: #0a0a0a;
  font-weight: 600;
}
.btn-primary:hover {
  background: var(--brand);
  filter: brightness(1.05);
  box-shadow: 0 0 0 3px rgba(255, 185, 74, 0.35);
}

/* Quiz styles */
.quiz {
  max-width: 800px;
  margin: 16px auto 0;
  padding: 0 20px;
}
.quiz .progress {
  margin-bottom: 10px;
  color: var(--muted);
}
.section-label {
  color: #f5d97b;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 8px;
  text-align: center;
}
.quiz .prompt {
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
  text-align: center;
}
.options {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: grid;
  gap: 10px;
}
.option {
  display: block;
}
.option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.option .option-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #0f1013;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 18px;
  transition: border-color 120ms, box-shadow 120ms, background 120ms, color 120ms;
  font-size: 1.12rem;
  font-weight: 650;
}
.option:hover .option-card {
  border-color: #33343a;
  background: #111318;
}
.option .option-card.selected {
  border-color: transparent;
  background: var(--brand);
  color: #0a0a0a;
  box-shadow: 0 0 0 3px rgba(255, 185, 74, 0.35);
}
/* Wrong selection highlight */
.option .option-card.wrong {
  border-color: rgba(239, 68, 68, 0.9);
  background: #2a1416;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.35);
  color: #ffd9dc;
}
.option .option-card.selected.wrong {
  background: #2a1416;
  color: #ffd9dc;
  border-color: rgba(239, 68, 68, 0.9);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.35);
}

.controls {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.hidden {
  display: none !important;
}
.correct {
  color: #22c55e;
}
.wrong {
  color: #ef4444;
}

/* Bottom action bar */
.bottom-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: #000000;
  border-top: 1px solid var(--border);
  backdrop-filter: none;
  display: flex;
  justify-content: center;
  z-index: 999;
}
.bottom-bar .btn {
  min-width: 220px;
  font-size: 1rem;
  padding: 12px 16px;
  border-radius: 12px;
}

/* Ensure content not hidden behind bars */
/* Only reserve space when bottom CTA bar is visible */
body.has-bottom-bar {
  padding-bottom: calc(84px + env(safe-area-inset-bottom));
}
body.has-progress {
  padding-top: calc(64px + env(safe-area-inset-top));
}

/* Landing page styles */
.landing {
  min-height: var(--app-vh);
  display: flex;
  flex-direction: column;
}
/* Make start screen full-width (bleed outside centered container) */
.quiz .landing {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
}
.brand-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
}
.brand-bar .logo {
  width: 64px;
  height: 64px;
  display: inline-block;
  background-image: url("https://exploredays.app/assets/images/history.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border-radius: 16px;
  background-color: transparent;
}
.brand-bar .name {
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 0.2px;
}
.hero {
  position: relative;
  flex: 1 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 24px 20px;
  /* Background moved to .landing so it sits behind icon and CTA */
}
/* Remove dimming overlay so the image remains bright */
.hero::before {
  content: none;
}
.hero-inner {
  position: relative;
  text-align: center;
  width: 100%;
  max-width: 900px;
  padding: 6px 0; /* tighter to reduce gap */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* On landing/plan screens, make hero flex to available space without forcing a viewport-based minimum
   so the CTA stays above the iOS Safari toolbar. */
.landing .hero {
  min-height: 0 !important;
}
.hero-bottom {
  display: grid;
  gap: 14px;
  margin-bottom: 4px;
}
.tagline {
  color: var(--brand);
  font-weight: 700;
  font-size: 1rem;
  margin: 8px 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.tagline .tag-text {
  position: relative;
  display: grid;
  gap: 1px;
  line-height: 1.1;
  /* reserve space for laurels positioned inside; reduced to tighten gap */
  padding: 0 50px;
}
/* Move laurels from .tagline to .tag-text to better control spacing */
.tagline .tag-text::before,
.tagline .tag-text::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  pointer-events: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  filter: invert(77%) sepia(36%) saturate(900%) hue-rotate(338deg) brightness(101%) contrast(101%) drop-shadow(0 1px 0 rgba(0, 0, 0, 0.4));
}
.tagline .tag-text::before {
  left: 0;
  background-image: url("../images/left-laurel.png");
}
.tagline .tag-text::after {
  right: 0;
  background-image: url("../images/right-laurel.png");
}
.tagline .tag-top {
  font-size: 0.7em;
  font-weight: 800;
}
.tagline .tag-highlight {
  font-size: 1.2em;
  line-height: 1.1;
  font-weight: 900;
}
.tagline .tag-sub {
  font-size: 0.7em;
  font-weight: 800;
}
/* Tagline laurels rendered via ::before/::after now */

.headline {
  font-size: clamp(32px, 6.4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--brand);
  margin: 18px 0 5px;
  line-height: 1.06; /* tighter like the mock */
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);
}
.awards {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  color: var(--brand);
  opacity: 0.95;
  font-weight: 600;
  flex-wrap: wrap;
  margin-top: 0px;
}
.award {
  display: flex;
  align-items: center;
  gap: 0px;
  position: relative;
  font-size: 0.6rem;
}

/* Add small laurels around each award */
.award::before,
.award::after {
  content: "";
  display: inline-block;
  width: 36px;
  height: 36px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  filter: invert(77%) sepia(36%) saturate(900%) hue-rotate(338deg) brightness(101%) contrast(101%);
}
.award::before {
  background-image: url("../images/left-laurel.png");
}
.award::after {
  background-image: url("../images/right-laurel.png");
}
.award .medal {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--brand);
  color: #0a0a0a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}
.cta-wrap {
  padding: 14px 20px 18px;
}
.btn-cta {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 1.05rem;
  font-weight: 700;
  background: var(--brand);
  color: #0a0a0a;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.btn-cta:hover {
  background: var(--brand);
  filter: brightness(1.05);
  box-shadow: 0 0 0 3px rgba(255, 185, 74, 0.35);
}
.btn-cta:active {
  transform: translateY(1px);
}
.legal {
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  padding: 8px 24px 24px;
}
.legal a {
  color: #f5d97b;
}
/* CTA consistency */
.btn-cta[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
  filter: none;
}
.bottom-bar .btn-cta {
  width: 100%;
}

/* Reviews screen */
.reviews {
  padding: 18px 16px 24px;
}
/* Ensure awards on Plan sit above the fixed bottom bar */
#plan .hero-bottom {
  /* Small buffer above the fixed CTA bar */
  margin-bottom: 1px;
  /* Push to the bottom of the hero */
  margin-top: 10px;
  /* Increase spacing between badge, headline, and awards */
  gap: 18px;
}

/* Make the plan hero's inner container fill the hero height so
   the bottom block can sit at the bottom via margin-top:auto */
#plan .hero-inner {
  height: 100%;
}
/* Avoid extra spacing from default headline margins on Plan */
#plan .hero-bottom .headline {
  margin: 0;
}
.reviews-hero {
  text-align: center;
  max-width: 900px;
  margin: 6px auto 8px;
  padding: 0 16px;
}
.reviews-inner {
  max-width: 900px;
  margin: 0 auto;
  max-height: calc(100vh - 220px);
  overflow-y: auto;
  padding-right: 6px;
  padding-bottom: 120px;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.reviews-inner::-webkit-scrollbar {
  display: none;
}
.review {
  padding: 22px 6px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.review:last-child {
  border-bottom: none;
  padding-bottom: 32px;
}
.review .stars {
  color: var(--brand);
  letter-spacing: 4px;
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.review h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 0 10px;
}
.review p {
  color: #e6d7a8;
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
}

/* Personalizing interstitial */
.personalizing {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  gap: 14px;
}
.personalizing p {
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.02em;
}
.spinner {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.12);
  border-top-color: var(--brand);
  animation: spin 1s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Plan screen */
.plan {
  padding: 28px 16px 24px;
  text-align: center;
}
.plan-title {
  font-size: clamp(26px, 6.5vw, 44px);
  line-height: 1.1;
  margin: 0 auto 12px;
  max-width: 820px;
  font-weight: 900;
  letter-spacing: -0.01em;
}
.plan-title span {
  color: var(--brand);
}
.plan-sub {
  color: #e6d7a8;
  opacity: 0.95;
  /* default margins for plan-sub elsewhere */
  margin: 8px auto;
  max-width: 780px;
}
/* Tighter, consistent spacing under the app icon on Plan */
#plan .hero {
  padding-top: 8px;
}
#plan .plan-sub {
  margin-top: 4px;
  margin-bottom: 8px;
}
/* Larger plan result title styling */
#plan .plan-sub .score-line {
  font-size: 1.05rem;
  color: white;
}
#plan .plan-sub .result-title {
  display: inline-block;
  margin-top: 6px;
  font-size: clamp(22px, 5.5vw, 34px);
  font-weight: 900;
  letter-spacing: -0.01em;
  color: white;
  line-height: 1.06;
}
/* Plan grade summary */
.plan-results {
  margin: 20px auto 0;
  max-width: 820px;
  text-align: center;
}
.grade-badge {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  border: 2px solid var(--border);
  font-weight: 900;
  letter-spacing: 0.04em;
  font-size: clamp(20px, 5vw, 32px);
}
.grade-A {
  color: #22c55e;
  border-color: rgba(34, 197, 94, 0.6);
}
.grade-B {
  color: #60a5fa;
  border-color: rgba(96, 165, 250, 0.6);
}
.grade-C {
  color: #f59e0b;
  border-color: rgba(245, 158, 11, 0.6);
}
.grade-F {
  color: #ef4444;
  border-color: rgba(239, 68, 68, 0.6);
}

/* Fancy grade animation: pop-in, pulse glow, and a quick shine sweep */
/* (Animations removed by request; keep static badge) */
.knowledge {
  margin: 32px auto 12px;
  max-width: 760px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(20, 20, 22, 0.6), rgba(20, 20, 22, 0.2));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}
.k-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.k-title {
  font-weight: 800;
  letter-spacing: -0.01em;
}
.k-percent {
  font-weight: 900;
  color: var(--brand);
}
.k-track {
  position: relative;
  height: 16px;
  border-radius: 999px;
  background: #1f2126;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}
.k-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(--brand);
  transition: width 600ms ease;
}
.k-marks {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #d6cfbe;
  opacity: 0.9;
  margin-top: 8px;
}
.k-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 185, 74, 0.5);
  color: #f0d48a;
}
.k-pill .avatar {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #f4d18a;
  display: inline-block;
}
.plan-graph {
  position: relative;
  margin: 8vh auto 0;
  height: 300px;
  max-width: 720px;
}
.plan-graph .curve {
  position: absolute;
  inset: auto 0 48px 0;
  width: 100%;
  height: 180px;
}
.badge-now {
  position: absolute;
  left: 24px;
  top: 40px;
  background: #3f3a33;
  color: #e6dcc8;
  padding: 6px 10px;
  border-radius: 18px;
  font-weight: 700;
}
.pill-rate {
  position: absolute;
  right: 24px;
  top: 24px;
  border: 2px solid #caa95c;
  color: #f0d48a;
  padding: 8px 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.pill-rate .avatar {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #f4d18a;
  display: inline-block;
}
.date-left {
  position: absolute;
  left: 24px;
  bottom: 0;
  color: #e6dcc8;
  font-weight: 800;
  font-size: 1.4rem;
}
.date-right {
  position: absolute;
  right: 24px;
  bottom: 0;
  color: var(--brand);
  font-weight: 900;
  font-size: 1.4rem;
}

/* Subscribe screen */
.subscribe {
  padding: 18px 16px 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: calc(100vh - 84px);
}
.subscribe-hero {
  text-align: center;
  max-width: 900px;
  margin: 8px auto 16px;
  padding: 0 16px;
}
.countdown {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 140px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 185, 74, 0.5);
  color: #f0d48a;
  background: rgba(42, 34, 24, 0.55);
  font-weight: 900;
  letter-spacing: 0.04em;
}
.sub-offer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: calc(108px + env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 998;
  pointer-events: none;
}
.sub-offer .offer-label {
  color: #f0d48a;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  opacity: 0.95;
  font-size: 0.78rem;
}
.sub-offer .countdown {
  pointer-events: auto;
}
.pricing {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
  justify-items: center;
  margin-top: auto;
  margin-bottom: auto;
}
.price-card {
  position: relative;
  display: block;
  width: 100%;
  max-width: 680px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #1a1712;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  padding: 0;
  overflow: hidden;
}
.price-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.price-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 14px 16px;
  gap: 10px;
}
.price-left {
  display: grid;
  gap: 6px;
}
.price-title {
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: -0.01em;
}
.price-sub {
  color: #e6d7a8;
  font-size: 0.95rem;
}
.price-sub .old {
  opacity: 0.7;
  text-decoration: line-through;
  margin-right: 10px;
}
.price-right {
  text-align: right;
  display: grid;
  gap: 8px;
  align-items: start;
  justify-items: end;
}
.price-right .perday {
  font-size: 0.98rem;
  font-weight: 850;
}
.price-right .save {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  background: #2a2218;
  color: #f1d184;
  border-radius: 999px;
  font-weight: 900;
  font-size: 0.8rem;
  border: 1px solid rgba(255, 185, 74, 0.35);
}
.price-card:hover {
  border-color: rgba(255, 255, 255, 0.14);
  background: #201c16;
}
.price-card.selected {
  background: #f3c644;
  color: #0a0a0a;
  border-color: #0a0a0a;
  box-shadow: 0 0 0 3px rgba(255, 185, 74, 0.35), 0 4px 0 #0a0a0a;
}
.price-card.selected .price-sub {
  color: #2a2009;
}
.price-card.selected .price-right .save {
  background: #0a0a0a;
  color: #f3c644;
  border-color: rgba(0, 0, 0, 0.6);
}
.price-card.popular {
  border-color: rgba(255, 185, 74, 0.35);
}
.price-card.popular .price-inner {
  padding-top: 34px;
}
.price-card .banner {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  text-align: center;
  padding: 4px 10px;
  background: #f07a42;
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.02em;
  font-size: 0.7rem;
}
