:root {
  color-scheme: light;
  --ink: #111513;
  --muted: #58635d;
  --line: #dce3df;
  --paper: #f6f8f6;
  --mist: #eaf2ed;
  --white: #ffffff;
  --green: #246b49;
  --green-dark: #17432f;
  --gold: #ba8b2f;
  --blue: #2f6275;
  --red: #8e2f2f;
  --shadow: 0 24px 80px rgba(22, 22, 22, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 68px;
  padding: 0 5vw;
  border-bottom: 1px solid rgba(216, 222, 217, 0.78);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.brand,
nav,
.hero-actions,
.offer-grid,
.split {
  display: flex;
  align-items: center;
}

.brand {
  gap: 0.75rem;
  min-height: 44px;
  text-decoration: none;
  font-weight: 700;
}

.brand img {
  display: block;
  width: 61px;
  height: auto;
  filter: brightness(0);
}

nav {
  gap: 1.25rem;
  font-size: 0.95rem;
  font-weight: 700;
}

nav a {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.2rem;
  text-decoration: none;
}

.nav-cta {
  border-bottom: 2px solid var(--green);
}

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  padding: 4.5rem 5vw 5rem;
  background:
    linear-gradient(135deg, #ffffff 0%, #f7faf8 46%, #eaf2ed 100%);
  isolation: isolate;
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(660px, 100%);
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 14ch;
  font-size: 4.2rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.05rem;
}

.hero-lede {
  max-width: 48rem;
  margin: 1.35rem 0 0;
  color: #2b2e2c;
  font-size: 1.32rem;
}

.mobile-product-strip {
  display: none;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  position: relative;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.button.primary {
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(22, 22, 22, 0.18);
  isolation: isolate;
}

.button.primary::after {
  content: "";
  position: absolute;
  top: -35%;
  bottom: -35%;
  left: -65%;
  z-index: 0;
  width: 48%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.32),
    transparent
  );
  opacity: 0;
  transform: skewX(-18deg);
  pointer-events: none;
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--green-dark);
  box-shadow: 0 18px 40px rgba(22, 22, 22, 0.22);
  transform: translateY(-1px);
}

.button.primary:hover::after,
.button.primary:focus-visible::after {
  animation: button-sheen 900ms ease;
  opacity: 1;
}

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: rgba(36, 107, 73, 0.42);
  box-shadow: 0 12px 28px rgba(22, 22, 22, 0.08);
  transform: translateY(-1px);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

.button.secondary {
  background: var(--white);
  color: var(--ink);
  border-color: var(--line);
}

.button.full {
  width: 100%;
}

.disclosure {
  max-width: 44rem;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.product-stage {
  position: relative;
  flex: 0 0 min(490px, 40vw);
  min-height: 540px;
  border: 1px solid rgba(216, 222, 217, 0.9);
  border-radius: 8px;
  background:
    radial-gradient(circle at 22% 16%, rgba(186, 139, 47, 0.18), transparent 28%),
    linear-gradient(145deg, #10251b 0%, #1d4f35 48%, #eef4ed 49%, #ffffff 100%);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
  transform-style: preserve-3d;
}

.product-stage:hover,
.product-stage:focus-within {
  border-color: rgba(36, 107, 73, 0.45);
  box-shadow: 0 30px 90px rgba(22, 22, 22, 0.18);
  transform: translateY(-3px);
}

.hero-stage {
  margin-right: 1.2rem;
}

.stage-copy {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 2;
  width: min(260px, calc(100% - 2.5rem));
  display: grid;
  gap: 0.2rem;
  border-radius: 8px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 42px rgba(17, 21, 19, 0.16);
  will-change: transform;
}

.stage-copy span,
.phone-screen span {
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stage-copy strong {
  font-size: 2rem;
  line-height: 1;
}

.stage-copy small {
  color: var(--muted);
  font-size: 0.86rem;
}

.phone-preview {
  position: absolute;
  right: 2rem;
  bottom: 2.2rem;
  z-index: 1;
  width: 245px;
  min-height: 430px;
  border: 10px solid #111513;
  border-radius: 34px;
  background: #111513;
  box-shadow: 0 26px 70px rgba(17, 21, 19, 0.34);
  will-change: transform;
}

.phone-bar {
  position: absolute;
  top: 0.75rem;
  left: 50%;
  width: 72px;
  height: 8px;
  border-radius: 999px;
  background: #1f2522;
  transform: translateX(-50%);
}

.phone-screen {
  min-height: 410px;
  display: grid;
  align-content: start;
  gap: 0.85rem;
  border-radius: 24px;
  padding: 3rem 1rem 1rem;
  background: #fbfcfa;
}

.phone-screen strong {
  font-size: 1.45rem;
  line-height: 1.06;
}

.mini-row {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.65rem 0.75rem;
  background: var(--white);
  color: var(--muted);
  font-size: 0.88rem;
}

.mini-row b {
  color: var(--ink);
}

.stage-card {
  position: absolute;
  z-index: 3;
  width: 116px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 22px 26px rgba(17, 21, 19, 0.28));
  will-change: transform;
}

.stage-card-main {
  left: 3.1rem;
  bottom: 2.6rem;
  transform: rotate(-9deg);
}

.stage-card-side {
  left: 9.4rem;
  bottom: 4.7rem;
  width: 102px;
  transform: rotate(8deg);
}

.product-stage.is-visible .stage-copy {
  animation: stage-copy-float 7s ease-in-out 420ms infinite;
}

.product-stage.is-visible .phone-preview {
  animation: phone-float 8s ease-in-out 240ms infinite;
}

.product-stage.is-visible .stage-card-main {
  animation: card-main-float 6.6s ease-in-out 120ms infinite;
}

.product-stage.is-visible .stage-card-side {
  animation: card-side-float 7.2s ease-in-out 260ms infinite;
}

.section-inner {
  width: min(1160px, 90vw);
  margin: 0 auto;
}

.offer-band {
  padding: 4rem 0;
  background: var(--white);
}

.offer-band .section-inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) 1.7fr;
  gap: 2rem;
  align-items: start;
}

.offer-grid {
  align-items: stretch;
  gap: 1rem;
}

.offer,
.product-card,
.action-panel,
.signup-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.offer,
.pillar-card,
.keyword-card,
.product-card,
.faq-list details,
.source-links a,
.action-panel {
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.offer:hover,
.pillar-card:hover,
.keyword-card:hover,
.product-card:hover,
.faq-list details:hover,
.source-links a:hover,
.source-links a:focus-visible,
.action-panel:hover,
.action-panel:focus-within {
  border-color: rgba(36, 107, 73, 0.46);
  box-shadow: 0 18px 48px rgba(22, 22, 22, 0.1);
  transform: translateY(-3px);
}

.signup-form {
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.signup-form:focus-within {
  border-color: rgba(47, 98, 117, 0.5);
  box-shadow: 0 22px 64px rgba(22, 22, 22, 0.13);
}

.offer {
  flex: 1;
  min-width: 0;
  padding: 1.25rem;
}

.amount {
  display: block;
  color: var(--green-dark);
  font-size: 2rem;
  line-height: 1;
  font-weight: 900;
}

.offer p {
  margin: 0.8rem 0 0;
  color: var(--muted);
}

.products {
  padding: 5rem 0;
}

.homepage-pillars {
  padding: 5rem 0;
  background: var(--white);
}

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

.pillar-card {
  min-height: 390px;
  display: grid;
  align-content: start;
  gap: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem;
  background: #fbfcfa;
}

.pillar-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 6px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 15%, rgba(186, 139, 47, 0.14), transparent 28%),
    linear-gradient(135deg, #f7faf8, #e6efe8);
}

.cards-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.cards-visual img {
  width: 62px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 18px rgba(17, 21, 19, 0.18));
}

.cards-visual img:nth-child(1) {
  transform: rotate(-8deg) translateY(6px);
}

.cards-visual img:nth-child(2) {
  transform: translateY(-6px);
}

.cards-visual img:nth-child(3) {
  transform: rotate(8deg) translateY(6px);
}

.account-visual,
.security-visual {
  display: grid;
  align-content: center;
  gap: 0.45rem;
  padding: 1.25rem;
}

.account-visual span,
.security-visual span {
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.account-visual strong,
.security-visual strong {
  font-size: 2rem;
  line-height: 1;
}

.account-visual div,
.security-visual div {
  min-height: 34px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(216, 222, 217, 0.85);
  border-radius: 8px;
  padding: 0.4rem 0.65rem;
  background: rgba(255, 255, 255, 0.74);
  color: var(--muted);
  font-size: 0.9rem;
}

.pillar-card p {
  margin: 0;
  color: var(--muted);
}

.seo-section {
  padding: 5rem 0;
  background: #edf0e8;
}

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

.keyword-card {
  min-height: 210px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.25rem;
  background: var(--white);
}

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

.lead-section {
  padding: 5rem 0;
  background: #eef3ef;
}

.lead-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 3rem;
  align-items: start;
}

.lead-copy {
  max-width: 620px;
}

.lead-copy p {
  color: var(--muted);
}

.privacy-note {
  font-size: 0.95rem;
}

.signup-form {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  box-shadow: 0 18px 60px rgba(22, 22, 22, 0.1);
}

.field {
  display: grid;
  gap: 0.4rem;
}

.field label,
.consent {
  font-size: 0.92rem;
  font-weight: 800;
}

.field input,
.field select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.8rem 0.9rem;
  color: var(--ink);
  font: inherit;
  background: #fbfcfa;
}

.field input:focus,
.field select:focus,
.consent input:focus-visible,
.button:focus-visible {
  outline: 3px solid rgba(47, 98, 117, 0.24);
  outline-offset: 2px;
}

.consent {
  display: grid;
  grid-template-columns: 1.1rem 1fr;
  gap: 0.6rem;
  align-items: start;
  color: #2b2e2c;
}

.consent input {
  width: 1rem;
  height: 1rem;
  margin-top: 0.2rem;
}

.hp-field {
  display: none;
}

.form-status {
  min-height: 1.4rem;
  margin: 0;
  color: var(--green-dark);
  font-size: 0.95rem;
  font-weight: 700;
}

.form-status[data-tone="error"] {
  color: var(--red);
}

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

.section-heading p,
.steps p,
.site-footer p {
  color: var(--muted);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.45rem;
}

.product-card {
  min-height: 570px;
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  padding: 1.35rem;
  background: #f4f4f2;
}

.product-card-head {
  min-height: 165px;
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.product-card-head img {
  width: 102px;
  height: 165px;
  object-fit: contain;
  justify-self: start;
  filter: drop-shadow(0 18px 34px rgba(22, 22, 22, 0.16));
}

.product-card h3 {
  padding: 1.55rem 0 1rem;
  border-bottom: 1px solid #d2d4d1;
  font-size: 1.14rem;
  line-height: 1.16;
}

.product-card sup {
  font-size: 0.58em;
  line-height: 0;
}

.product-card p {
  margin: 1rem 0 0;
  color: var(--ink);
  font-size: 0.96rem;
}

.product-card p span {
  font-style: italic;
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.cashback-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.55rem 1rem;
  margin-top: auto;
}

.cashback-grid-compact {
  align-content: start;
  min-height: 137px;
}

.cashback-grid div {
  display: grid;
  gap: 0.15rem;
}

.cashback-grid strong {
  font-size: 1.85rem;
  line-height: 1;
  letter-spacing: 0;
}

.cashback-grid span {
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.product-facts {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 1rem;
  margin: 0;
  border-top: 1px solid #d2d4d1;
  padding-top: 1rem;
}

.product-facts div {
  display: grid;
  gap: 0.25rem;
}

.product-facts dt,
.product-facts dd {
  margin: 0;
}

.product-facts dt {
  color: var(--ink);
  font-size: 0.86rem;
}

.product-facts dd {
  color: var(--ink);
  font-size: 0.85rem;
  line-height: 1.12;
}

.product-card .button {
  margin-top: auto;
  text-transform: uppercase;
}

.product-footnote {
  max-width: 820px;
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.steps {
  padding: 4rem 0 5rem;
  background: #e9eee9;
}

.faq-section {
  padding: 4rem 0;
  background: var(--white);
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  background: #fbfcfa;
}

.faq-list summary {
  min-height: 44px;
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  margin: 0.8rem 0 0;
  color: var(--muted);
}

.research-section {
  padding: 5rem 0;
  background: #f7f8f4;
}

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

.guide-card {
  min-height: 160px;
  display: grid;
  align-content: space-between;
  gap: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.15rem;
  background: var(--white);
  color: inherit;
  text-decoration: none;
  transition:
    border-color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.guide-card:hover,
.guide-card:focus-visible {
  border-color: rgba(36, 107, 73, 0.55);
  box-shadow: 0 18px 48px rgba(22, 22, 22, 0.1);
  transform: translateY(-2px);
}

.guide-card span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.guide-card strong {
  font-size: 1.12rem;
  line-height: 1.15;
}

.source-section {
  padding: 4rem 0;
  background: #eef3ef;
}

.source-links {
  width: min(430px, 100%);
  display: grid;
  gap: 0.7rem;
}

.source-links a {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.8rem 0.95rem;
  background: var(--white);
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}

.source-links a::after {
  content: ">";
  color: var(--gold);
}

.landing-hero {
  padding: 4.75rem 0;
  background:
    linear-gradient(135deg, #ffffff 0%, #f7faf8 54%, #eaf2ed 100%);
}

.landing-layout,
.evidence-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 3rem;
  align-items: center;
}

.landing-copy h1 {
  max-width: 15ch;
}

.landing-stage {
  width: 100%;
  min-height: 500px;
  flex-basis: auto;
}

.landing-stage .stage-copy {
  width: 220px;
}

.landing-stage .phone-preview {
  right: 1.25rem;
  bottom: 1.25rem;
  width: 215px;
  min-height: 350px;
}

.landing-stage .phone-screen {
  min-height: 332px;
  padding-top: 2.7rem;
}

.landing-stage .phone-screen strong {
  font-size: 1.25rem;
}

.landing-stage .stage-card-main {
  left: 2.15rem;
  bottom: 2rem;
  width: 100px;
}

.landing-stage .stage-card-side {
  left: 7.4rem;
  bottom: 3.5rem;
  width: 90px;
}

.account-stage {
  background:
    radial-gradient(circle at 22% 16%, rgba(47, 98, 117, 0.14), transparent 28%),
    linear-gradient(145deg, #163626 0%, #246b49 48%, #eef4ed 49%, #ffffff 100%);
}

.savings-stage {
  background:
    radial-gradient(circle at 22% 16%, rgba(186, 139, 47, 0.18), transparent 28%),
    linear-gradient(145deg, #10251b 0%, #2f6275 48%, #eef4ed 49%, #ffffff 100%);
}

.credit-stage {
  background:
    radial-gradient(circle at 22% 16%, rgba(186, 139, 47, 0.18), transparent 28%),
    linear-gradient(145deg, #111513 0%, #17432f 48%, #eef4ed 49%, #ffffff 100%);
}

.evidence-section {
  padding: 4.5rem 0;
  background: var(--white);
}

.landing-points {
  display: grid;
  gap: 0.75rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.landing-points li {
  border-left: 4px solid var(--green);
  padding: 0.75rem 0 0.75rem 1rem;
  background: #fbfcfa;
  color: #2b2e2c;
  font-weight: 750;
}

.caution {
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.split {
  justify-content: space-between;
  gap: 3rem;
}

.split > div:first-child {
  max-width: 620px;
}

.action-panel {
  width: min(390px, 100%);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.action-panel p {
  margin: 1rem 0 0;
  font-size: 0.92rem;
}

.site-footer {
  padding: 2rem 5vw;
  background: var(--ink);
  color: var(--white);
}

.site-footer p {
  max-width: 920px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.site-footer a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--white);
  font-weight: 800;
}

.footer-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--white);
  font: inherit;
  font-weight: 800;
  text-decoration: underline;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 30;
  width: min(520px, calc(100vw - 2rem));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.9rem;
  background: var(--white);
  box-shadow: var(--shadow);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner h2 {
  font-size: 1rem;
}

.cookie-banner p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.cookie-actions {
  display: flex;
  gap: 0.6rem;
}

.cookie-actions .button {
  min-height: 44px;
  padding: 0.7rem 0.9rem;
}

.privacy-page {
  min-height: calc(100vh - 72px);
  padding: 5rem 0;
  background: var(--paper);
}

.privacy-page h1 {
  max-width: 12ch;
}

.privacy-content {
  max-width: 760px;
  margin-top: 2rem;
}

.privacy-content h2 {
  margin-top: 2rem;
  font-size: 1.25rem;
}

.privacy-content p {
  color: var(--muted);
}

.animate-ready [data-animate] {
  opacity: 0;
  transform: translate3d(0, 26px, 0);
  transition:
    opacity 680ms ease,
    transform 680ms cubic-bezier(0.2, 0.72, 0.18, 1);
  transition-delay: var(--animate-delay, 0ms);
  will-change: opacity, transform;
}

.animate-ready [data-animate="fade-right"] {
  transform: translate3d(-28px, 0, 0);
}

.animate-ready [data-animate="fade-left"] {
  transform: translate3d(28px, 0, 0);
}

.animate-ready [data-animate="zoom-in"] {
  transform: translate3d(0, 18px, 0) scale(0.965);
}

.animate-ready [data-animate].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

@keyframes button-sheen {
  0% {
    left: -65%;
  }

  100% {
    left: 120%;
  }
}

@keyframes phone-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -10px, 0);
  }
}

@keyframes stage-copy-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -6px, 0);
  }
}

@keyframes card-main-float {
  0%,
  100% {
    transform: rotate(-9deg) translate3d(0, 0, 0);
  }

  50% {
    transform: rotate(-7deg) translate3d(2px, -9px, 0);
  }
}

@keyframes card-side-float {
  0%,
  100% {
    transform: rotate(8deg) translate3d(0, 0, 0);
  }

  50% {
    transform: rotate(10deg) translate3d(-2px, -7px, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .animate-ready [data-animate] {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 900px) {
  .animate-ready [data-animate="fade-left"],
  .animate-ready [data-animate="fade-right"] {
    transform: translate3d(0, 24px, 0);
  }

  .site-header {
    position: static;
    min-height: auto;
    align-items: flex-start;
    flex-direction: column;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  nav {
    width: 100%;
    justify-content: flex-start;
    gap: 0.75rem;
    overflow-x: auto;
    padding-bottom: 0.25rem;
  }

  .hero {
    min-height: auto;
    align-items: stretch;
    flex-direction: column;
    padding-top: 3.5rem;
  }

  .product-stage {
    flex-basis: auto;
    width: min(520px, 100%);
    min-height: 500px;
  }

  .hero-stage {
    margin-right: 0;
  }

  .phone-preview {
    right: 1.4rem;
    bottom: 1.6rem;
  }

  .stage-card-main {
    left: 2rem;
  }

  .stage-card-side {
    left: 7.5rem;
  }

  h1 {
    font-size: 3.35rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  .offer-band .section-inner,
  .lead-layout,
  .landing-layout,
  .evidence-grid,
  .pillar-grid,
  .keyword-grid,
  .guide-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .offer-grid,
  .split {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  nav {
    flex-wrap: nowrap;
    font-size: 0.88rem;
  }

  nav a {
    min-height: 44px;
  }

  .hero {
    padding-top: 2.25rem;
    gap: 2rem;
  }

  h1 {
    font-size: 2.34rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  .hero-lede {
    margin-top: 1rem;
    font-size: 1rem;
  }

  .mobile-product-strip {
    width: 100%;
    min-height: 74px;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin: 0.5rem 0 1rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 0.65rem 0.75rem;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 12px 32px rgba(17, 21, 19, 0.08);
  }

  .mobile-product-strip img {
    width: 38px;
    height: auto;
    filter: drop-shadow(0 8px 10px rgba(17, 21, 19, 0.14));
  }

  .mobile-product-strip img:nth-child(2) {
    margin-left: -1rem;
  }

  .mobile-product-strip span {
    margin-left: 0.25rem;
    color: var(--ink);
    font-weight: 900;
    line-height: 1.15;
  }

  .button {
    width: 100%;
  }

  .cookie-banner {
    left: 0.75rem;
    bottom: 0.75rem;
    width: calc(100vw - 1.5rem);
    gap: 0.75rem;
    padding: 0.8rem;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    flex-direction: row;
  }

  .cookie-actions .button,
  .cookie-actions .button.secondary {
    width: 100%;
    min-height: 44px;
  }

  .offer-band,
  .products,
  .research-section,
  .source-section,
  .landing-hero,
  .evidence-section,
  .steps {
    padding: 3rem 0;
  }

  .product-card {
    min-height: auto;
    padding: 1rem;
  }

  .product-card-head {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 0.85rem;
  }

  .product-card-head img {
    width: 86px;
    height: 147px;
  }

  .product-card h3 {
    padding-top: 1.25rem;
    font-size: 1rem;
  }

  .cashback-grid {
    gap: 1.2rem 0.8rem;
  }

  .product-facts {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .product-stage {
    min-height: 430px;
  }

  .stage-copy {
    top: 0.9rem;
    left: 0.9rem;
    width: calc(100% - 1.8rem);
  }

  .phone-preview {
    right: 1rem;
    bottom: 1rem;
    width: 205px;
    min-height: 350px;
    border-width: 8px;
  }

  .phone-screen {
    min-height: 334px;
    padding-top: 2.7rem;
  }

  .stage-card {
    width: 92px;
  }

  .stage-card-main {
    left: 1.4rem;
    bottom: 1.3rem;
  }

  .stage-card-side {
    left: 6rem;
    bottom: 2.7rem;
    width: 82px;
  }
}
