:root {
  --bg: #f8fafc;
  --bg-soft: #eef4fb;
  --surface: #ffffff;
  --surface-soft: #f7fafc;
  --surface-tint: #f2f8f7;
  --text: #102034;
  --muted: #607086;
  --line: rgba(16, 32, 52, 0.1);
  --accent: #0f9a8a;
  --accent-strong: #0d7c70;
  --accent-soft: #dcf5f1;
  --highlight: #f5a524;
  --shadow-lg: 0 28px 70px rgba(15, 29, 55, 0.08);
  --shadow-md: 0 16px 40px rgba(15, 29, 55, 0.07);
  --shadow-sm: 0 10px 24px rgba(15, 29, 55, 0.05);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(15, 154, 138, 0.08), transparent 28%),
    radial-gradient(circle at 100% 0, rgba(245, 165, 36, 0.08), transparent 20%),
    linear-gradient(180deg, #fcfdff 0%, #f7fafc 45%, #f3f7fb 100%);
  line-height: 1.6;
}

:focus-visible {
  outline: 3px solid rgba(15, 154, 138, 0.28);
  outline-offset: 3px;
}

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

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

button,
input {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 30;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  font-weight: 700;
}

.skip-link:focus-visible {
  top: 1rem;
}

.hero,
.section,
.footer {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.nav,
.hero-content,
.section > *,
.footer p {
  width: min(100%, var(--max-width));
  margin-left: auto;
  margin-right: auto;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 1.35rem;
}

.nav-actions,
.hero-actions,
.trust-pill-group,
.result-actions,
.quiz-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.brand,
.nav-link,
.eyebrow,
.step-number,
.stat-label,
.result-topline,
.result-label,
#question-counter,
#progress-percent,
.quiz-kicker,
.media-fallback-label {
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.brand,
h1,
h2,
h3,
.faq-item summary {
  font-family: "Trebuchet MS", "Avenir Next Condensed", sans-serif;
}

.brand {
  font-weight: 700;
}

.nav-link {
  padding: 0.8rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-weight: 700;
}

.hero {
  padding-top: 0.5rem;
  padding-bottom: 5rem;
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 2rem;
  align-items: center;
  padding-top: 4.6rem;
}

.hero-copy {
  padding: 3rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.86));
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-lg);
}

.hero-visual {
  display: grid;
  gap: 1rem;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

h1 {
  margin-top: 0.85rem;
  font-size: clamp(2.8rem, 6vw, 5rem);
  max-width: 11ch;
}

h2 {
  margin-top: 0.7rem;
  font-size: clamp(2rem, 4vw, 3.25rem);
}

h3 {
  font-size: 1.45rem;
}

.eyebrow,
.step-number,
.stat-label,
.result-topline,
.result-label,
.quiz-kicker,
.media-fallback-label {
  color: var(--accent-strong);
  font-weight: 700;
}

.subheadline,
.section-intro,
.section-heading p,
.info-card p,
.step-card p,
.faq-item p,
.stat-card p,
.quiz-helper,
.result-disclaimer,
.email-capture p,
.result-summary {
  color: var(--muted);
}

.subheadline {
  max-width: 58ch;
  margin: 1.3rem 0 0;
  font-size: 1.08rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.4rem;
}

.hero-badge,
.trust-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(16, 32, 52, 0.08);
  background: var(--surface-soft);
  font-weight: 600;
  color: var(--text);
}

.hero-actions {
  margin-top: 1.8rem;
}

.trust-row {
  margin-top: 2rem;
  display: grid;
  gap: 0.8rem;
}

.trust-copy {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 3.45rem;
  padding: 0.95rem 1.45rem;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.98rem;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent) 0%, #0cb2a0 100%);
  box-shadow: 0 18px 36px rgba(15, 154, 138, 0.22);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.button-small {
  min-height: 2.9rem;
  padding: 0.72rem 1.1rem;
}

.hero-media {
  min-height: 420px;
}

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

.stat-card,
.info-card,
.step-card,
.quiz-shell,
.result-card,
.email-capture,
.faq-item {
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-md);
}

.stat-card,
.info-card,
.step-card {
  padding: 1.6rem;
}

.stat-card strong {
  display: block;
  margin-top: 0.28rem;
  font-size: 1.45rem;
}

.section {
  padding-top: 5.4rem;
  padding-bottom: 5.4rem;
}

.section-split {
  width: min(100%, var(--max-width));
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: 2rem;
  align-items: center;
}

.section-split-reverse {
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
}

.section-split-reverse .section-copy {
  order: 2;
}

.section-split-reverse .section-visual {
  order: 1;
}

.section-heading {
  margin-bottom: 2rem;
  max-width: 48rem;
}

.section-heading-centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-intro {
  margin-top: 1.1rem;
  max-width: 60ch;
}

.section-cta {
  margin-top: 1.5rem;
}

.section-cta-centered {
  display: flex;
  justify-content: center;
}

.card-grid,
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.6rem;
}

.media-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(16, 32, 52, 0.08);
  background:
    linear-gradient(145deg, rgba(15, 154, 138, 0.08), rgba(245, 165, 36, 0.08)),
    var(--surface);
  box-shadow: var(--shadow-md);
}

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

.media-frame.is-empty {
  min-height: 320px;
}

.hero-media .media-fallback,
.side-media .media-fallback {
  position: absolute;
  inset: auto 1.4rem 1.4rem 1.4rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(16, 32, 52, 0.08);
  box-shadow: var(--shadow-sm);
}

.media-fallback strong {
  display: block;
  margin-top: 0.4rem;
  font-size: 1.05rem;
  line-height: 1.45;
  color: var(--text);
}

.side-media {
  min-height: 420px;
}

.quiz-shell,
.result-card,
.email-capture {
  padding: 1.9rem;
}

.quiz-shell {
  width: min(100%, 860px);
  margin: 0 auto;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 252, 255, 0.92));
}

.quiz-progress {
  margin-bottom: 1rem;
}

.progress-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.progress-bar {
  height: 0.92rem;
  border-radius: 999px;
  background: rgba(16, 32, 52, 0.08);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 16.66%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent) 0%, var(--highlight) 100%);
  transition: width 240ms ease;
}

.quiz-meta {
  margin-bottom: 1rem;
}

.quiz-kicker {
  display: inline-flex;
  align-items: center;
  padding: 0.46rem 0.72rem;
  border-radius: 999px;
  background: var(--accent-soft);
}

.quiz-helper {
  margin: 0.65rem 0 0;
}

.quiz-card {
  min-height: 23.5rem;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(16, 32, 52, 0.08);
  background: linear-gradient(180deg, #ffffff, #f8fbfd);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.quiz-card.is-animating {
  animation: cardSwap 280ms ease;
}

.quiz-question fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.quiz-question legend {
  padding: 0;
}

.quiz-question h3 {
  font-size: clamp(1.55rem, 3vw, 2rem);
}

.quiz-question p {
  margin: 0.7rem 0 0;
  color: var(--muted);
}

.answer-list {
  display: grid;
  gap: 0.95rem;
  margin-top: 1.3rem;
}

.answer-option {
  position: relative;
}

.answer-option input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.answer-option label {
  display: block;
  position: relative;
  padding: 1rem 1rem 1rem 3.6rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(16, 32, 52, 0.1);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  font-weight: 600;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.answer-option label::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 50%;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  border: 2px solid rgba(16, 32, 52, 0.26);
  transform: translateY(-50%);
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.answer-option label:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 154, 138, 0.24);
}

.answer-option input:focus-visible + label {
  border-color: rgba(15, 154, 138, 0.55);
  box-shadow: 0 0 0 4px rgba(15, 154, 138, 0.14);
}

.answer-option input:checked + label {
  background: linear-gradient(180deg, #ffffff, var(--accent-soft));
  border-color: rgba(15, 154, 138, 0.55);
  box-shadow: 0 16px 34px rgba(15, 154, 138, 0.14);
  transform: translateY(-2px);
}

.answer-option input:checked + label::before {
  border-color: var(--accent);
  background: var(--accent);
  box-shadow: inset 0 0 0 3px #ffffff;
}

.quiz-feedback {
  min-height: 1.4rem;
  margin: 1rem 0 0;
  color: var(--accent-strong);
  font-size: 0.95rem;
  font-weight: 700;
}

.quiz-controls {
  justify-content: space-between;
  margin-top: 1.35rem;
}

.quiz-controls .button[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

.result-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(15, 154, 138, 0.14);
  box-shadow: 0 32px 80px rgba(15, 29, 55, 0.1);
  background:
    radial-gradient(circle at top right, rgba(15, 154, 138, 0.18), transparent 28%),
    radial-gradient(circle at top left, rgba(245, 165, 36, 0.12), transparent 24%),
    linear-gradient(180deg, #ffffff, #f5fbff);
}

.result-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 10px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--highlight) 100%);
}

.result-media-link {
  position: absolute;
  top: 1.9rem;
  right: 1.9rem;
  display: block;
  border-radius: 24px;
  cursor: pointer;
}

.result-media-panel {
  position: relative;
  width: 280px;
  height: 176px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(16, 32, 52, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 252, 0.94));
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, opacity 180ms ease, box-shadow 180ms ease;
  animation: resultMediaGlow 5.6s ease-in-out infinite;
}

.result-media-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.result-media-link:hover .result-media-panel,
.result-media-link:focus-visible .result-media-panel {
  transform: translateY(-2px) scale(1.01);
  opacity: 0.96;
  box-shadow: 0 18px 34px rgba(15, 29, 55, 0.12);
}

.result-media-panel.is-empty {
  background:
    radial-gradient(circle at top right, rgba(15, 154, 138, 0.08), transparent 45%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 252, 0.94));
}

.result-media-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: resultImageGlow 5.6s ease-in-out infinite;
}

.result-status {
  display: inline-flex;
  margin: 0.85rem 0 0;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 0.9rem;
  font-weight: 700;
}

.result-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-top: 0.9rem;
  max-width: calc(100% - 320px);
}

.wallet-icon-link {
  display: inline-flex;
  flex: 0 0 auto;
  border-radius: 32px;
}

.wallet-icon-link:hover .wallet-icon-shell,
.wallet-icon-link:focus-visible .wallet-icon-shell {
  transform: translateY(-2px);
  box-shadow: 0 20px 34px rgba(15, 154, 138, 0.16);
  border-color: rgba(15, 154, 138, 0.24);
}

.wallet-icon-shell {
  position: relative;
  flex: 0 0 auto;
  width: 108px;
  height: 108px;
  border-radius: 28px;
  border: 1px solid rgba(16, 32, 52, 0.08);
  background: linear-gradient(180deg, #ffffff, #f4f8fc);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.wallet-icon-shell.is-empty .wallet-icon-fallback {
  opacity: 1;
}

.wallet-icon {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.wallet-icon-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--accent-strong);
  opacity: 0;
}

.result-heading-block h3 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.result-summary {
  margin: 0.6rem 0 0;
  max-width: 48ch;
  font-size: 1.02rem;
}

.result-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 1rem;
  margin-top: 1.9rem;
}

.result-topline,
.result-status {
  max-width: calc(100% - 320px);
}

.result-main,
.result-side-block {
  padding: 1.3rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(16, 32, 52, 0.08);
  background: rgba(255, 255, 255, 0.94);
}

.result-why-list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
  font-size: 1rem;
}

.result-why-list li + li {
  margin-top: 0.6rem;
}

.result-primary-cta {
  margin-top: 1.4rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(16, 32, 52, 0.08);
}

.button-affiliate {
  position: relative;
  overflow: hidden;
  min-height: 3.8rem;
  padding: 1.05rem 1.6rem;
  font-size: 1.02rem;
  color: #1c1404;
  background: linear-gradient(135deg, #ffc94d 0%, #f5a524 100%);
  box-shadow: 0 22px 42px rgba(245, 165, 36, 0.3);
  animation: affiliateButtonGlow 5.2s ease-in-out infinite;
}

.button-affiliate:hover,
.button-affiliate:focus-visible {
  box-shadow: 0 26px 46px rgba(245, 165, 36, 0.36);
}

.button-affiliate::after {
  content: "";
  position: absolute;
  top: -130%;
  left: -34%;
  width: 26%;
  height: 360%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0));
  transform: rotate(18deg) translateX(0);
  opacity: 0;
  pointer-events: none;
  animation: affiliateButtonShine 5.2s ease-in-out infinite;
}

.result-cta-note {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.result-side-panel {
  display: grid;
  gap: 1rem;
}

.result-side-block p {
  margin: 0.45rem 0 0;
  color: var(--muted);
}

.result-actions {
  margin-top: 1.2rem;
}

.result-disclaimer {
  margin: 1rem 0 0;
  font-size: 0.92rem;
}

.result-small-link {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--accent-strong);
  font-weight: 700;
}

.result-reset {
  margin-top: 1rem;
}

.result-section .section-heading {
  max-width: 54rem;
}

.email-capture {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.email-copy h3 {
  margin-top: 0.45rem;
}

.email-capture-actions {
  display: flex;
  align-items: center;
}

.faq-list {
  width: min(100%, 880px);
  margin: 0 auto;
  display: grid;
  gap: 0.95rem;
}

.faq-item {
  padding: 1.1rem 1.2rem;
}

.faq-item summary {
  position: relative;
  padding-right: 2rem;
  cursor: pointer;
  list-style: none;
  font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  color: var(--accent-strong);
  font-size: 1.2rem;
}

.faq-item[open] summary::after {
  content: "-";
}

.footer {
  padding-top: 0.25rem;
  padding-bottom: 2rem;
}

.footer-links {
  width: min(100%, var(--max-width));
  margin: 0 auto 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a {
  color: var(--accent-strong);
  font-weight: 700;
}

.footer p {
  color: var(--muted);
  border-top: 1px solid rgba(16, 32, 52, 0.1);
  padding-top: 1.7rem;
  font-size: 0.95rem;
}

.page-shell {
  padding: 1.5rem 1.25rem 0;
}

.page-nav,
.page-card {
  width: min(100%, 860px);
  margin-left: auto;
  margin-right: auto;
}

.page-nav {
  padding-top: 0.75rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--accent-strong);
  font-weight: 700;
}

.page-card {
  margin-top: 1.25rem;
  margin-bottom: 3rem;
  padding: 2.1rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-md);
}

.page-card h1 {
  max-width: none;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
}

.page-intro {
  margin-top: 1rem;
  color: var(--muted);
  max-width: 62ch;
  font-size: 1.04rem;
}

.content-stack {
  margin-top: 1.75rem;
  display: grid;
  gap: 1rem;
}

.content-stack section {
  padding: 1.15rem 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(16, 32, 52, 0.08);
  background: var(--surface-soft);
}

.content-stack h2 {
  margin-top: 0;
  margin-bottom: 0.55rem;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.content-stack p,
.content-stack li {
  color: var(--muted);
}

.content-stack p {
  margin: 0;
  max-width: 65ch;
}

.content-stack ul {
  margin: 0.65rem 0 0;
  padding-left: 1.2rem;
}

.content-stack li + li {
  margin-top: 0.35rem;
}

.page-meta {
  margin-top: 1.6rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hidden {
  display: none;
}

@keyframes cardSwap {
  0% {
    opacity: 0;
    transform: translateY(10px) scale(0.99);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes affiliateButtonShine {
  0%,
  70%,
  100% {
    opacity: 0;
    transform: rotate(18deg) translateX(0);
  }
  76% {
    opacity: 0.88;
  }
  86% {
    opacity: 0;
    transform: rotate(18deg) translateX(430%);
  }
}

@keyframes affiliateButtonGlow {
  0%,
  70%,
  100% {
    box-shadow: 0 22px 42px rgba(245, 165, 36, 0.3);
  }
  78% {
    box-shadow: 0 24px 46px rgba(245, 165, 36, 0.34);
  }
}

@keyframes resultMediaGlow {
  0%,
  100% {
    box-shadow: var(--shadow-sm);
  }
  50% {
    box-shadow: 0 14px 30px rgba(15, 29, 55, 0.11);
  }
}

@keyframes resultImageGlow {
  0%,
  100% {
    opacity: 0.98;
    filter: brightness(1) saturate(1);
  }
  50% {
    opacity: 1;
    filter: brightness(1.04) saturate(1.03);
  }
}

@media (prefers-reduced-motion: reduce) {
  .button-affiliate,
  .button-affiliate::after,
  .result-media-panel,
  .result-media-image {
    animation: none;
  }

  .button-affiliate,
  .button-affiliate:hover,
  .button-affiliate:focus-visible,
  .result-media-panel,
  .result-media-link:hover .result-media-panel,
  .result-media-link:focus-visible .result-media-panel {
    transform: none;
  }
}

@media (max-width: 1040px) {
  .hero-content,
  .section-split,
  .section-split-reverse {
    grid-template-columns: 1fr;
  }

  .section-split-reverse .section-copy,
  .section-split-reverse .section-visual {
    order: initial;
  }

  .hero-copy {
    padding: 2.5rem;
  }

  .hero-stats,
  .card-grid,
  .steps,
  .result-layout,
  .email-capture {
    grid-template-columns: 1fr;
  }

  .hero-media,
  .side-media {
    min-height: 340px;
  }
}

@media (max-width: 760px) {
  .hero,
  .section,
  .footer,
  .page-shell {
    padding-left: 1rem;
    padding-right: 1rem;
  }

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

  .nav-actions {
    width: 100%;
  }

  .hero {
    padding-bottom: 3.3rem;
  }

  .hero-content {
    padding-top: 3.2rem;
    gap: 1.4rem;
  }

  .section {
    padding-top: 3.6rem;
    padding-bottom: 3.6rem;
  }

  .hero-copy,
  .quiz-shell,
  .result-card,
  .email-capture,
  .stat-card,
  .info-card,
  .step-card,
  .faq-item {
    border-radius: 22px;
  }

  .button,
  .quiz-controls .button,
  .result-actions .button,
  .nav-actions .button {
    width: 100%;
  }

  .nav-actions,
  .hero-actions,
  .quiz-controls,
  .result-actions {
    flex-direction: column;
  }

  .hero-badge,
  .trust-pill {
    width: 100%;
  }

  .hero-media,
  .side-media {
    min-height: 280px;
  }

  .quiz-shell,
  .result-card,
  .email-capture {
    padding: 1.3rem;
  }

  .email-capture {
    grid-template-columns: 1fr;
  }

  .quiz-card {
    min-height: auto;
    padding: 1.2rem;
  }

  .answer-option label {
    padding: 0.95rem 0.95rem 0.95rem 3.2rem;
  }

  .result-card::before {
    inset: 0 0 auto 0;
    width: 100%;
    height: 7px;
  }

  .result-media-panel {
    width: 100%;
    height: 190px;
    margin: 1rem 0 0;
    border-radius: 22px;
  }

  .result-media-link {
    position: relative;
    top: auto;
    right: auto;
    border-radius: 22px;
  }

  .result-topline,
  .result-status,
  .result-header {
    max-width: none;
  }

  .result-header {
    align-items: flex-start;
  }

  .wallet-icon-shell {
    width: 112px;
    height: 112px;
    border-radius: 28px;
  }

  .wallet-icon {
    width: 76px;
    height: 76px;
  }

  .wallet-icon-link {
    border-radius: 30px;
  }

  .footer-links {
    flex-direction: column;
    gap: 0.6rem;
  }

  .page-card {
    padding: 1.45rem;
    border-radius: 22px;
  }
}
