:root {
  --paper: #f2d69c;
  --paper-light: #f8e8bd;
  --paper-deep: #d9a65b;
  --ink: #24170d;
  --muted: rgba(36, 23, 13, 0.72);
  --soft: rgba(36, 23, 13, 0.52);
  --red: #a73518;
  --red-dark: #7e2617;
  --teal: #315f55;
  --teal-dark: #1f403b;
  --cream: #fff1c8;
  --mustard: #d49a2f;
  --positive: #2f7465;
  --negative: #b8522e;
  --warning: #ba8127;
  --line: rgba(36, 23, 13, 0.22);
  --line-soft: rgba(36, 23, 13, 0.12);
  --shadow: none;
  --font-script: "Lobster", "Brush Script MT", cursive;
  --font-display: "Rye", "Bebas Neue", Georgia, serif;
  --font-hero: "Lobster", "Brush Script MT", cursive;
  --font-condensed: "Bebas Neue", Impact, sans-serif;
  --font-body: "Libre Baskerville", Georgia, serif;
  --radius: 10px;
  --type--2: 0.72rem;
  --type--1: 0.83rem;
  --type-0: 1rem;
  --type-1: 1.2rem;
  --type-2: 1.44rem;
  --type-3: 1.728rem;
  --type-4: 2.074rem;
  --type-5: 2.488rem;
  --type-6: 2.986rem;
  --type-7: 3.583rem;
  --text-xs: var(--type--2);
  --text-sm: var(--type--1);
  --text-md: var(--type-0);
  --text-lg: var(--type-1);
  --text-xl: var(--type-2);
  --text-2xl: var(--type-3);
  --text-3xl: var(--type-4);
  --text-4xl: var(--type-5);
  --display-sm: var(--type-4);
  --display-md: var(--type-5);
  --display-lg: var(--type-6);
  --display-xl: var(--type-7);
}

@media (min-width: 700px) {
  :root {
    --type--2: 0.64rem;
    --type--1: 0.8rem;
    --type-0: 1rem;
    --type-1: 1.25rem;
    --type-2: 1.563rem;
    --type-3: 1.953rem;
    --type-4: 2.441rem;
    --type-5: 3.052rem;
    --type-6: 3.815rem;
    --type-7: 4.768rem;
  }
}

@media (min-width: 1121px) {
  :root {
    --type--2: 0.563rem;
    --type--1: 0.75rem;
    --type-0: 1rem;
    --type-1: 1.333rem;
    --type-2: 1.777rem;
    --type-3: 2.369rem;
    --type-4: 3.157rem;
    --type-5: 4.209rem;
    --type-6: 5.61rem;
    --type-7: 7.478rem;
  }
}

* {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-shadow: none;
  text-shadow: none;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--text-md);
  line-height: 1.58;
  letter-spacing: 0;
  background:
    radial-gradient(circle at 22% 8%, rgba(255, 242, 190, 0.65), transparent 28%),
    radial-gradient(circle at 86% 20%, rgba(167, 53, 24, 0.12), transparent 24%),
    repeating-linear-gradient(0deg, rgba(66, 37, 14, 0.045) 0 1px, transparent 1px 5px),
    linear-gradient(180deg, var(--paper-light), var(--paper) 42%, #e8c27f);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background-image:
    radial-gradient(rgba(44, 25, 10, 0.12) 0.8px, transparent 0.8px),
    radial-gradient(rgba(255, 255, 255, 0.28) 0.8px, transparent 0.8px);
  background-position: 0 0, 14px 11px;
  background-size: 28px 28px;
  mix-blend-mode: multiply;
  opacity: 0.55;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(480px circle at var(--cursor-x, 50%) var(--cursor-y, 20%), rgba(255, 242, 190, 0.44), transparent 55%),
    linear-gradient(90deg, rgba(36, 23, 13, 0.09), transparent 10%, transparent 90%, rgba(36, 23, 13, 0.09));
}

button,
a,
input,
textarea {
  font: inherit;
}

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

button {
  border: 0;
  cursor: pointer;
}

p,
h1,
h2,
h3 {
  margin-top: 0;
}

.page-shell {
  width: min(100%, 1460px);
  margin: 0 auto;
  padding: 22px clamp(16px, 4vw, 72px) 18px;
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 10px 14px;
  border: 1px solid rgba(36, 23, 13, 0.28);
  border-radius: var(--radius);
  background: rgba(247, 221, 165, 0.98);
  box-shadow: none;
  backdrop-filter: none;
}

.brand,
.main-nav,
.nav-actions,
.hero-actions,
.trust-line,
.social-proof,
.card-topline,
.cta-band,
.testimonial-grid article > div {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-family: var(--font-script);
  font-size: var(--text-xl);
  line-height: 1;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(36, 23, 13, 0.28);
  border-radius: 50%;
  color: var(--paper-light);
  background: var(--teal-dark);
  box-shadow: none;
}

.main-nav {
  justify-self: center;
  gap: clamp(14px, 2.4vw, 36px);
  font-family: var(--font-condensed);
  font-size: var(--text-lg);
  letter-spacing: 0.04em;
}

.main-nav a {
  transition: color 160ms ease, transform 160ms ease;
}

.main-nav a:hover {
  color: var(--red);
  transform: translateY(-1px);
}

.nav-actions {
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(36, 23, 13, 0.28);
  border-radius: var(--radius);
  color: var(--paper-light);
  background: var(--teal);
}

.primary-button,
.secondary-button,
.light-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid rgba(36, 23, 13, 0.28);
  border-radius: 6px;
  font-family: var(--font-condensed);
  font-size: var(--text-lg);
  letter-spacing: 0.04em;
  white-space: nowrap;
  box-shadow: none;
  transition: transform 180ms ease, background 180ms ease;
}

.primary-button,
.light-button {
  color: var(--cream);
  background: linear-gradient(180deg, #c94f25, var(--red));
}

.primary-button.small {
  min-height: 42px;
  padding: 0 16px;
  font-size: var(--text-md);
}

.secondary-button {
  color: var(--ink);
  background: rgba(255, 239, 196, 0.56);
}

.primary-button:hover,
.secondary-button:hover,
.light-button:hover {
  transform: translate(-1px, -2px);
  box-shadow: none;
}

.magnetic-button {
  transform: translate3d(var(--move-x, 0), var(--move-y, 0), 0);
}

.hero-section {
  position: relative;
  z-index: 0;
  display: grid;
  grid-template-columns: minmax(350px, 0.78fr) minmax(560px, 1.22fr);
  gap: clamp(18px, 3vw, 48px);
  align-items: center;
  width: 100vw;
  min-height: clamp(680px, calc(100vh - 74px), 860px);
  margin-left: calc(50% - 50vw);
  margin-top: -6px;
  padding: clamp(52px, 8vh, 96px) clamp(16px, 4vw, 72px) 42px;
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
}

.hero-section::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, rgba(247, 221, 165, 1) 0 280px, rgba(247, 221, 165, 0) 390px),
    linear-gradient(90deg, rgba(248, 232, 189, 0.98) 0%, rgba(248, 232, 189, 0.9) 25%, rgba(248, 232, 189, 0.46) 51%, rgba(248, 232, 189, 0.08) 100%),
    radial-gradient(circle at 18% 42%, rgba(248, 232, 189, 0.72), transparent 32%),
    linear-gradient(180deg, rgba(242, 214, 156, 0.1), rgba(217, 166, 91, 0.18));
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-copy {
  padding: clamp(10px, 2vw, 26px) 0;
}

.hero-visual {
  min-height: min(700px, 58vw);
}

.retro-hero-art {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  filter: saturate(0.96) contrast(1.02);
}

.hero-section > .retro-hero-art,
.hero-visual > .retro-hero-art {
  position: absolute;
}

.hero-section .retro-hero-art {
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  box-shadow: none;
}

.hero-visual .retro-hero-art {
  display: none;
}

.hero-section::before {
  color: var(--red);
  content: "*";
}

.hero-section::before {
  position: absolute;
  z-index: 2;
  top: 16%;
  left: 33%;
  font-family: var(--font-display);
  font-size: var(--text-3xl);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 22px;
  padding: 8px 12px;
  border: 1px solid rgba(36, 23, 13, 0.28);
  border-radius: 999px;
  color: var(--teal-dark);
  background: rgba(255, 239, 196, 0.58);
  font-family: var(--font-condensed);
  font-size: var(--text-md);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

h1 {
  max-width: 560px;
  margin-bottom: 18px;
  color: var(--teal);
  font-family: var(--font-hero);
  font-size: clamp(3.55rem, 6vw, 6.1rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0;
}

h1 span {
  display: block;
  margin: 0.03em 0 0.04em;
  color: var(--red-dark);
  font-family: var(--font-display);
  font-size: 1.02em;
  line-height: 0.9;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  text-shadow: none;
}

.hero-text {
  max-width: 540px;
  margin-bottom: 24px;
  color: var(--ink);
  font-size: var(--text-lg);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
}

.trust-line {
  flex-wrap: wrap;
  gap: 18px;
  font-family: var(--font-condensed);
  font-size: var(--text-md);
  letter-spacing: 0.04em;
}

.trust-line i {
  color: var(--red);
}

.social-proof {
  gap: 16px;
  margin-top: 30px;
}

.avatar-stack {
  display: flex;
}

.avatar-stack .retro-avatar {
  width: 42px;
  height: 42px;
  margin-right: -10px;
  background-size: 500% 300%;
}

.avatar-stack .retro-avatar:nth-child(1) { background-position: 0% 0%; }
.avatar-stack .retro-avatar:nth-child(2) { background-position: 25% 0%; }
.avatar-stack .retro-avatar:nth-child(3) { background-position: 50% 0%; }
.avatar-stack .retro-avatar:nth-child(4) { background-position: 75% 0%; }
.avatar-stack .retro-avatar:nth-child(5) { background-position: 100% 0%; }

.social-proof > div:not(.avatar-stack) > span {
  display: block;
  font-family: var(--font-condensed);
  font-size: var(--text-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.social-proof strong {
  display: block;
  max-width: 210px;
  font-size: var(--text-sm);
  line-height: 1.35;
}

.insights-card,
.glass-panel,
.metrics-strip,
.testimonial-grid article,
.faq-list details,
.report-dialog,
.result-card,
.metric-card,
.category-report-card,
.insight-section,
.insight-row,
.subscription-row,
.saving-row {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 243, 204, 0.82), rgba(222, 177, 102, 0.46)),
    rgba(244, 215, 161, 0.84);
  box-shadow: none;
}

.insights-card {
  position: absolute;
  z-index: 2;
  width: min(315px, 48%);
  padding: 18px;
  background: rgba(255, 232, 178, 0.88);
  backdrop-filter: blur(2px);
}

.insights-card {
  right: 6%;
  bottom: 8%;
}

.card-topline {
  justify-content: space-between;
  margin-bottom: 12px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--line-soft);
  font-family: var(--font-script);
  font-size: var(--text-xl);
  line-height: 1;
}

.breakdown-list,
.category-report-list,
.transaction-list {
  display: grid;
  gap: 10px;
}

.insight,
.feature-grid article {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px dashed var(--line-soft);
}

.insights-card .insight {
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 12px;
  padding-block: 12px;
}

.insight:last-child {
  border-bottom: 0;
}

.insight > span,
.feature-grid span,
.steps-grid span,
.metrics-strip span,
.document-tile {
  display: grid;
  place-items: center;
  flex: none;
  border: 1px solid rgba(36, 23, 13, 0.28);
  border-radius: 6px;
  color: var(--cream);
  background: var(--teal);
}

.insights-card .insight > span {
  width: 34px;
  height: 42px;
  align-self: center;
}

.insights-card .insight div {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  column-gap: 5px;
  row-gap: 3px;
}

.insight strong,
.feature-grid h3 {
  display: block;
  margin: 0;
  font-family: var(--font-condensed);
  font-size: var(--text-lg);
  line-height: 1;
  letter-spacing: 0.04em;
}

.insights-card .insight strong {
  grid-column: 1 / -1;
  margin: 0;
  line-height: 1;
}

.insight small,
.feature-grid p,
.steps-grid p,
.metrics-strip small,
.testimonial-grid small,
.footer-brand p,
.faq-list p,
.report-dialog p,
.processing-card p {
  color: var(--muted);
}

.feature-grid p {
  max-width: 22ch;
  margin: 0;
  font-size: var(--text-md);
  line-height: 1.38;
}

.insight b {
  color: var(--red);
  font-family: var(--font-condensed);
  font-size: var(--text-lg);
}

.insights-card .insight b,
.insights-card .insight small {
  line-height: 1.08;
}

.trend strong {
  display: block;
  margin-bottom: 8px;
  font-size: var(--text-sm);
}

.bars {
  display: flex;
  align-items: end;
  gap: 7px;
  height: 82px;
}

.bars i {
  flex: 1;
  min-width: 8px;
  border: 1px solid var(--ink);
  border-radius: 4px 4px 0 0;
  background: var(--red);
}

.bars i:nth-child(1) { height: 25%; }
.bars i:nth-child(2) { height: 38%; }
.bars i:nth-child(3) { height: 31%; }
.bars i:nth-child(4) { height: 52%; }
.bars i:nth-child(5) { height: 45%; }
.bars i:nth-child(6) { height: 66%; }
.bars i:nth-child(7) { height: 88%; }

.glass-panel {
  padding: clamp(24px, 4vw, 52px);
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 26px;
  text-align: center;
}

.section-heading.compact {
  margin-top: 34px;
}

.section-heading h2,
.cta-band h2,
.report-dialog h2,
.result-card h3,
.analysis-hero .section-heading h2 {
  margin: 0;
  font-family: var(--font-script);
  font-size: var(--display-sm);
  font-weight: 400;
  line-height: 1;
}

.section-heading p {
  margin: 8px 0 0;
  color: var(--muted);
}

.process-panel {
  margin-top: 16px;
}

.retro-process-art {
  display: block;
  width: 100%;
  max-height: 320px;
  margin: 0 auto 22px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: none;
}

.steps-grid,
.feature-grid,
.testimonial-grid,
.metrics-strip {
  display: grid;
  gap: 18px;
}

.steps-grid {
  grid-template-columns: repeat(3, 1fr);
}

.steps-grid article {
  position: relative;
  padding: 16px 20px;
  text-align: center;
  border-right: 1px dashed var(--line-soft);
}

.steps-grid article:last-child {
  border-right: 0;
}

.steps-grid span {
  width: 54px;
  height: 54px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--red);
}

.steps-grid h3 {
  margin-bottom: 6px;
  font-family: var(--font-condensed);
  font-size: var(--text-xl);
  letter-spacing: 0.04em;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(232, 198, 134, 0.5);
}

.feature-grid article {
  grid-template-columns: 54px minmax(0, 1fr);
  min-height: 150px;
  align-items: center;
  gap: 14px;
  padding: 22px;
  border-right: 1px dashed var(--line-soft);
  border-bottom: 1px dashed var(--line-soft);
}

.feature-grid span {
  width: 50px;
  height: 50px;
  color: var(--ink);
  background: var(--mustard);
}

.feature-grid article > div {
  display: grid;
  align-content: center;
  min-height: 82px;
  gap: 8px;
}

.metrics-strip {
  grid-template-columns: repeat(4, 1fr);
  margin: 28px 0;
  padding: 22px;
  color: var(--cream);
  background: var(--red);
  border-color: var(--red-dark);
}

.metrics-strip article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 14px;
  align-items: center;
}

.metrics-strip span {
  grid-row: span 2;
  width: 56px;
  height: 56px;
  border-color: var(--cream);
  color: var(--cream);
  background: var(--teal);
}

.metrics-strip strong {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  line-height: 1;
}

.metrics-strip small {
  color: rgba(255, 241, 200, 0.82);
}

.share-panel {
  display: none;
}

.testimonials,
.faq-section {
  padding: 28px 0;
}

.testimonials {
  overflow: hidden;
}

.testimonial-marquee {
  position: relative;
  width: calc(100% + clamp(32px, 8vw, 144px));
  margin-inline: calc(clamp(16px, 4vw, 72px) * -1);
  overflow: hidden;
  padding: 8px 0 18px;
}

.testimonial-marquee::before,
.testimonial-marquee::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: min(13vw, 150px);
  pointer-events: none;
  content: "";
}

.testimonial-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--paper) 0%, rgba(242, 214, 156, 0) 100%);
}

.testimonial-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--paper) 0%, rgba(242, 214, 156, 0) 100%);
}

.testimonial-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: testimonial-marquee 66s linear infinite;
  will-change: transform;
}

.testimonial-marquee:hover .testimonial-track,
.testimonial-marquee:focus-within .testimonial-track {
  animation-play-state: paused;
}

.testimonial-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 330px;
  gap: 18px;
}

.testimonial-grid article {
  display: grid;
  min-height: 258px;
  align-content: space-between;
  padding: 22px;
}

.testimonial-grid article > i {
  color: var(--red);
  font-size: var(--text-2xl);
}

.testimonial-grid p {
  min-height: 112px;
  font-style: italic;
}

.testimonial-grid article > div {
  gap: 12px;
}

.retro-avatar {
  width: 54px;
  height: 54px;
}

.retro-avatar {
  display: block;
  flex: none;
  border: 1px solid rgba(36, 23, 13, 0.28);
  border-radius: 50%;
  background-image: url("assets/retro-testimonial-avatars.webp");
  background-repeat: no-repeat;
  background-size: 500% 300%;
  box-shadow: none;
}

.testimonial-grid article:has(.avatar-female-1) .retro-avatar { background-position: 0% 0%; }
.testimonial-grid article:has(.avatar-female-2) .retro-avatar { background-position: 50% 0%; }
.testimonial-grid article:has(.avatar-female-3) .retro-avatar { background-position: 100% 0%; }
.testimonial-grid article:has(.avatar-female-4) .retro-avatar { background-position: 25% 50%; }
.testimonial-grid article:has(.avatar-female-5) .retro-avatar { background-position: 75% 50%; }
.testimonial-grid article:has(.avatar-female-6) .retro-avatar { background-position: 0% 100%; }
.testimonial-grid article:has(.avatar-female-7) .retro-avatar { background-position: 50% 100%; }
.testimonial-grid article:has(.avatar-male-1) .retro-avatar { background-position: 25% 0%; }
.testimonial-grid article:has(.avatar-male-2) .retro-avatar { background-position: 75% 0%; }
.testimonial-grid article:has(.avatar-male-3) .retro-avatar { background-position: 0% 50%; }
.testimonial-grid article:has(.avatar-male-4) .retro-avatar { background-position: 50% 50%; }
.testimonial-grid article:has(.avatar-male-5) .retro-avatar { background-position: 100% 50%; }
.testimonial-grid article:has(.avatar-male-6) .retro-avatar { background-position: 25% 100%; }
.testimonial-grid article:has(.avatar-male-7) .retro-avatar { background-position: 100% 100%; }
.testimonial-grid article:has(.avatar-male-8) .retro-avatar { background-position: 25% 0%; }

.testimonial-grid strong,
.testimonial-grid small {
  display: block;
}

@keyframes testimonial-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 9px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-track {
    animation: none;
  }
}

.faq-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  max-width: 860px;
  margin: 0 auto;
}

.faq-list details {
  border-radius: 5px;
  box-shadow: none;
}

.faq-list summary {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 14px;
  list-style: none;
  font-family: var(--font-condensed);
  font-size: var(--text-lg);
  letter-spacing: 0.03em;
  cursor: pointer;
}

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

.faq-list summary::after {
  content: "+";
  color: var(--red);
  font-size: var(--text-xl);
}

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

.faq-list p {
  margin: 0;
  padding: 0 14px 14px;
}

.cta-band {
  position: relative;
  min-height: 220px;
  justify-content: flex-start;
  gap: 24px;
  margin: 30px 0 10px;
  padding: clamp(24px, 4vw, 42px) clamp(24px, 5vw, 56px) clamp(24px, 4vw, 42px) clamp(390px, 46vw, 610px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 241, 200, 0.6);
}

.retro-cta-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  opacity: 0.86;
}

.cta-band > *:not(.retro-cta-art) {
  position: relative;
  z-index: 1;
}

.cta-band > div:not(.document-tile) {
  width: min(54%, 560px);
  padding: 0;
  border-left: 0;
  background: transparent;
}

.cta-band h2 {
  max-width: 560px;
  color: var(--red-dark);
  text-shadow: none;
}

.document-tile {
  display: none;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: end;
  padding: 20px 0;
  border-top: 1px solid rgba(36, 23, 13, 0.28);
}

.footer-brand p {
  max-width: 420px;
  margin: 12px 0 0;
  font-size: var(--text-sm);
}

.footer-brand .footer-support {
  margin-top: 8px;
}

.footer-support a {
  color: var(--red-dark);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.copyright {
  margin: 0;
  color: var(--muted);
  font-size: var(--text-sm);
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  max-width: min(360px, calc(100vw - 36px));
  padding: 14px 16px;
  border: 1px solid rgba(36, 23, 13, 0.28);
  border-radius: var(--radius);
  color: var(--cream);
  background: var(--teal-dark);
  box-shadow: none;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 180ms ease, transform 180ms ease;
  pointer-events: none;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.report-dialog {
  width: min(640px, calc(100vw - 32px));
  padding: 30px;
  color: var(--ink);
}

.report-dialog::backdrop {
  background: rgba(36, 23, 13, 0.58);
  backdrop-filter: blur(4px);
}

.dialog-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(36, 23, 13, 0.28);
  border-radius: 50%;
  color: var(--cream);
  background: var(--red);
}

.sample-report-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.sample-report-grid article,
.analyzer-form,
.selected-file-card,
.document-file-row,
.processing-card,
.document-status-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 239, 196, 0.54);
}

.sample-report-grid span,
.sample-report-grid strong {
  display: block;
}

.sample-report-grid strong {
  margin-top: 8px;
  color: var(--red);
  font-family: var(--font-display);
  font-size: var(--text-xl);
}

.upload-page,
.analysis-page {
  min-height: calc(100vh - 110px);
  padding: clamp(26px, 5vh, 58px) 0 46px;
}

.upload-page-inner,
.analysis-result-grid {
  display: grid;
  gap: 22px;
  width: min(100%, 1060px);
  margin: 0 auto;
}

.upload-heading {
  display: grid;
  gap: 12px;
}

.back-home {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-self: start;
  padding: 0;
  color: var(--teal-dark);
  background: transparent;
}

.upload-heading h1,
.report-intro h2 {
  margin: 0;
  color: var(--red);
  font-family: var(--font-script);
  font-size: var(--display-lg);
  font-weight: 400;
  line-height: 0.9;
}

.upload-heading > p,
.report-intro p {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
  font-size: var(--text-lg);
}

.privacy-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  background: rgba(127, 151, 123, 0.32);
}

.privacy-icon,
.upload-icon,
.processing-hero-icon {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border: 1px solid rgba(36, 23, 13, 0.28);
  border-radius: 50%;
  color: var(--cream);
  background: var(--teal);
}

.privacy-card h2 {
  margin-bottom: 8px;
  font-family: var(--font-script);
  font-size: var(--display-sm);
  font-weight: 400;
}

.privacy-pills,
.file-format-pills,
.analyzer-actions,
.share-actions,
.share-link-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.privacy-pills span,
.file-format-pills span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid rgba(36, 23, 13, 0.18);
  border-radius: 999px;
  background: rgba(255, 239, 196, 0.54);
  font-family: var(--font-condensed);
  letter-spacing: 0.04em;
}

.upload-form {
  display: grid;
  gap: 16px;
}

.drop-zone,
.upload-drop-zone {
  position: relative;
  display: grid;
  min-height: clamp(300px, 42vh, 460px);
  place-items: center;
  padding: clamp(30px, 6vw, 62px);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: rgba(255, 239, 196, 0.44);
  text-align: center;
  transition: background 180ms ease, transform 180ms ease;
}

.drop-zone input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.upload-icon {
  width: 108px;
  height: 108px;
  margin-bottom: 18px;
  background: var(--red);
}

.upload-icon svg {
  width: 56px;
  height: 56px;
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.drop-zone strong {
  display: block;
  font-family: var(--font-script);
  font-size: var(--display-sm);
  font-weight: 400;
  line-height: 1;
}

.drop-zone small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: var(--text-lg);
}

.drop-zone.is-dragging {
  background: rgba(167, 53, 24, 0.12);
  transform: translateY(-2px);
}

.selected-file-card,
.document-file-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
}

.selected-file-card > i,
.document-file-row > i {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  color: var(--cream);
  background: var(--teal);
}

.selected-file-card strong,
.selected-file-card small,
.document-file-row h3,
.document-file-row p {
  display: block;
  margin: 0;
}

.form-error {
  color: var(--red);
}

.analysis-page.is-processing .analysis-hero {
  width: min(100%, 900px);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 52px);
}

.analysis-page.is-processing .analysis-topbar,
.analysis-page.is-report-ready .analysis-hero {
  display: none;
}

.analysis-page.is-processing .analysis-hero .section-heading {
  text-align: center;
}

.analysis-page.is-processing .report-eyebrow,
.analysis-page.is-processing .document-status-card {
  display: none;
}

.analysis-page.is-processing .analysis-grid {
  display: grid;
  grid-template-columns: 1fr;
}

.processing-card {
  display: grid;
  gap: 14px;
}

.analysis-page.is-processing .processing-steps {
  position: relative;
  display: block;
  min-height: 250px;
  margin: 12px 0 0;
  padding: 0 0 56px;
  list-style: none;
}

.analysis-page.is-processing .processing-steps li {
  display: none;
}

.analysis-page.is-processing .processing-steps li.is-current-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: minmax(76px, 1fr) auto 18px;
  gap: 22px;
  min-height: 220px;
  align-items: center;
  padding: clamp(22px, 5vw, 40px) clamp(22px, 5vw, 40px) 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 239, 196, 0.58);
}

.analysis-page.is-processing .processing-steps li.is-current-card::before,
.analysis-page.is-processing .processing-steps li.is-current-card::after {
  position: absolute;
  right: clamp(22px, 5vw, 40px);
  bottom: 28px;
  left: clamp(22px, 5vw, 40px);
  height: 9px;
  border-radius: 999px;
  content: "";
}

.analysis-page.is-processing .processing-steps li.is-current-card::before {
  background: rgba(36, 23, 13, 0.16);
}

.analysis-page.is-processing .processing-steps li.is-current-card::after {
  width: calc((100% - (clamp(22px, 5vw, 40px) * 2)) * var(--step-ratio, 0));
  background: linear-gradient(90deg, var(--red), var(--teal));
}

.processing-steps {
  display: flex;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.processing-steps li {
  display: flex;
  flex: 1;
  gap: 8px;
  align-items: center;
  padding: 9px;
  border: 1px dashed var(--line);
}

.step-dot {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.processing-steps li.is-active .step-dot,
.processing-steps li.is-complete .step-dot {
  color: var(--cream);
  background: var(--red);
}

.processing-steps strong,
.processing-steps small {
  display: block;
}

.processing-steps strong {
  overflow: hidden;
  font-family: var(--font-condensed);
  font-size: var(--text-md);
  white-space: nowrap;
  text-overflow: ellipsis;
}

.processing-steps small {
  display: none;
}

.analysis-page.is-processing .processing-steps li.is-current-card em {
  grid-column: 1 / -1;
  grid-row: 2;
  align-self: start;
  width: max-content;
  max-width: 100%;
  font-family: var(--font-script);
  font-size: var(--text-2xl);
  font-style: normal;
  line-height: 1;
  white-space: nowrap;
}

.analysis-result-grid {
  padding-top: 22px;
}

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

.metric-card {
  display: grid;
  min-height: 132px;
  gap: 10px;
  padding: 18px;
}

.metric-card span,
.insight-row small,
.subscription-row small,
.saving-row small {
  color: var(--muted);
  font-family: var(--font-condensed);
  font-size: var(--text-lg);
  letter-spacing: 0.04em;
}

.metric-card strong,
.category-report-card strong {
  color: var(--red);
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  line-height: 1;
}

.is-positive {
  border-color: rgba(49, 95, 85, 0.5);
  background:
    linear-gradient(180deg, rgba(255, 241, 200, 0.7), rgba(229, 205, 143, 0.54)),
    rgba(207, 188, 128, 0.7);
}

.is-positive strong,
.is-positive b,
.positive {
  color: var(--teal-dark);
}

.is-negative {
  border-color: rgba(167, 53, 24, 0.42);
  background: rgba(167, 53, 24, 0.1);
}

.is-negative strong,
.is-negative b,
.negative {
  color: var(--negative);
}

.is-warning strong,
.is-warning b {
  color: var(--warning);
}

.spend-breakdown-card,
.monthly-pattern-card,
.recent-transactions {
  padding: clamp(20px, 4vw, 30px);
}

.breakdown-layout {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 24px;
  align-items: center;
}

.donut-chart {
  width: min(220px, 42vw);
  aspect-ratio: 1;
  margin: 10px auto;
  border-radius: 50%;
  background: conic-gradient(var(--red) 0 29%, var(--teal) 29% 52%, #7c9290 52% 67%, var(--mustard) 67% 79%, rgba(36, 23, 13, 0.28) 79% 100%);
  mask: radial-gradient(circle, transparent 0 38%, #000 39%);
  transition: filter 220ms ease, transform 220ms ease;
}

.breakdown-layout:has(.breakdown-row:hover) .donut-chart,
.breakdown-layout:has(.breakdown-row:focus-visible) .donut-chart {
  filter: saturate(1.12) brightness(1.04);
  transform: translateY(-2px) scale(1.02);
}

.breakdown-list p {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  margin: 0;
  padding: 10px 12px;
  border: 1px solid transparent;
  border-radius: 6px;
  outline: none;
  transition: background 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.breakdown-list span {
  width: 11px;
  height: 11px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--category-color, var(--red));
}

.breakdown-row:hover,
.breakdown-row:focus-visible {
  border-color: rgba(36, 23, 13, 0.2);
  background: rgba(255, 239, 196, 0.48);
  transform: translateX(4px);
}

.breakdown-row:hover strong,
.breakdown-row:focus-visible strong {
  color: var(--category-color, var(--red));
}

.category-report-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: 14px;
}

.category-report-card {
  display: grid;
  min-height: 180px;
  gap: 14px;
  padding: 18px;
  outline: none;
  transition: transform 180ms ease;
}

.category-report-card:hover,
.category-report-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: none;
}

.category-report-card span,
.category-report-card strong,
.category-report-card small {
  display: block;
}

.category-report-card i {
  display: block;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(36, 23, 13, 0.14);
}

.category-report-card i::before {
  display: block;
  width: var(--fill);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--red), var(--mustard));
  content: "";
}

.category-report-card.is-positive i::before {
  background: linear-gradient(90deg, var(--teal), #9aa940);
}

.monthly-bars {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
  align-items: end;
  height: 230px;
  padding-top: 20px;
}

.monthly-bars span {
  position: relative;
  display: flex;
  height: 100%;
  align-items: end;
  justify-content: center;
}

.monthly-bars span::before {
  width: 100%;
  max-width: 46px;
  height: var(--h);
  border: 1px solid rgba(36, 23, 13, 0.28);
  border-radius: 7px 7px 0 0;
  background: var(--teal);
  content: "";
}

.monthly-bars b {
  position: absolute;
  bottom: -24px;
  font-size: var(--text-xs);
}

.insight-section {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 3vw, 26px);
}

.insight-row,
.subscription-row,
.saving-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 16px;
  box-shadow: none;
}

.insight-row > span,
.subscription-row > span,
.saving-row > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(36, 23, 13, 0.28);
  border-radius: 50%;
  color: var(--cream);
  background: var(--red);
}

.saving-row > span {
  background: var(--teal);
}

.saving-row.is-positive small {
  color: rgba(36, 23, 13, 0.78);
}

.saving-row.is-positive a {
  color: var(--red-dark);
}

.insight-row strong,
.subscription-row strong,
.saving-row strong {
  display: block;
  margin: 3px 0;
}

.insight-row p,
.insight-row a,
.saving-row a {
  margin: 0;
  color: var(--muted);
}

.insight-row a,
.saving-row a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--red);
  font-family: var(--font-condensed);
  letter-spacing: 0.04em;
}

.subscription-row b {
  color: var(--red);
  font-family: var(--font-display);
  font-size: var(--text-xl);
}

.transaction-list p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0;
  padding: 13px 0;
  border-bottom: 1px dashed var(--line-soft);
}

.transaction-list p:last-child {
  border-bottom: 0;
}

.transaction-list span,
.transaction-list small {
  display: block;
}

.report-share-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: clamp(18px, 3vw, 26px);
}

.table-preview {
  overflow: auto;
}

.table-preview table {
  width: 100%;
  min-width: 420px;
  border-collapse: collapse;
}

.table-preview th,
.table-preview td {
  padding: 12px;
  border-bottom: 1px dashed var(--line);
  text-align: left;
}

.danger-button {
  color: var(--red);
}

.analysis-mode main > section:not(.analysis-page),
.upload-mode main > section:not(.upload-page) {
  display: none;
}

.analysis-page.is-report-ready .analysis-result-grid {
  display: grid;
}

.analysis-page:not(.is-report-ready) .analysis-result-grid[hidden],
[hidden] {
  display: none !important;
}

.motion-card {
  position: relative;
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateZ(0);
  transform-style: preserve-3d;
}

.motion-card::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: radial-gradient(300px circle at var(--spot-x, 50%) var(--spot-y, 50%), rgba(255, 241, 200, 0.22), transparent 45%);
  content: "";
  opacity: 0;
  transition: opacity 220ms ease;
}

.motion-card:hover::after {
  opacity: 1;
}

@media (min-width: 1500px) {
  .page-shell {
    width: min(100%, 1560px);
  }

  .hero-section {
    grid-template-columns: minmax(420px, 0.72fr) minmax(760px, 1.28fr);
    min-height: clamp(740px, calc(100vh - 74px), 940px);
    padding-inline: clamp(72px, 7vw, 132px);
  }

  .hero-visual {
    min-height: min(760px, 48vw);
  }

  .insights-card {
    right: 5%;
  }
}

@media (max-width: 1280px) {
  .site-header {
    gap: 14px;
  }

  .main-nav {
    gap: clamp(12px, 1.8vw, 24px);
    font-size: var(--text-md);
  }

  .primary-button.small {
    padding-inline: 12px;
  }

  .hero-section {
    grid-template-columns: minmax(320px, 0.82fr) minmax(500px, 1.18fr);
    min-height: clamp(650px, calc(100vh - 74px), 800px);
    padding-top: clamp(44px, 7vh, 82px);
  }

  h1 {
    font-size: clamp(3.2rem, 5.7vw, 5.55rem);
  }

  .hero-visual {
    min-height: min(650px, 58vw);
  }

  .insights-card {
    width: min(285px, 46%);
    padding: 15px;
  }
}

@media (max-width: 1180px) and (min-width: 900px) {
  .hero-section {
    grid-template-columns: minmax(300px, 0.9fr) minmax(430px, 1.1fr);
    gap: clamp(12px, 2vw, 28px);
    min-height: clamp(610px, calc(100vh - 70px), 760px);
    padding-inline: clamp(24px, 3.4vw, 44px);
  }

  .hero-section::after {
    background:
      linear-gradient(180deg, rgba(247, 221, 165, 1) 0 240px, rgba(247, 221, 165, 0) 340px),
      linear-gradient(90deg, rgba(248, 232, 189, 0.98) 0%, rgba(248, 232, 189, 0.82) 37%, rgba(248, 232, 189, 0.36) 66%, rgba(248, 232, 189, 0.08) 100%),
      radial-gradient(circle at 20% 40%, rgba(248, 232, 189, 0.7), transparent 30%);
  }

  .hero-visual {
    min-height: min(610px, 58vw);
  }

  .insights-card {
    width: min(255px, 48%);
    padding: 13px;
  }

  .insight {
    gap: 8px;
    padding-block: 7px;
  }

}

@media (max-width: 899px) {
  .hero-section {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 42px clamp(16px, 5vw, 36px) 34px;
  }

  .hero-section::after {
    background:
      linear-gradient(180deg, rgba(248, 232, 189, 0.94) 0%, rgba(248, 232, 189, 0.72) 42%, rgba(248, 232, 189, 0.25) 100%),
      radial-gradient(circle at 50% 18%, rgba(248, 232, 189, 0.68), transparent 38%);
  }

  .hero-visual {
    min-height: 620px;
  }

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

  .feature-grid article {
    min-height: 138px;
  }

  .metrics-strip,
  .report-metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .breakdown-layout,
  .privacy-card {
    grid-template-columns: 1fr;
  }

  .cta-band {
    justify-content: flex-start;
  }

  .cta-band > div:not(.document-tile) {
    width: min(100%, 620px);
    margin-left: auto;
  }
}

@media (max-width: 940px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: grid;
  }

  .main-nav,
  .nav-actions {
    display: none;
  }

  .site-header.menu-open .main-nav,
  .site-header.menu-open .nav-actions {
    display: flex;
    grid-column: 1 / -1;
    width: 100%;
  }

  .site-header.menu-open .main-nav {
    flex-direction: column;
    align-items: stretch;
  }

  .site-header.menu-open .main-nav a {
    padding: 10px;
    border-top: 1px dashed var(--line);
  }

  .site-header.menu-open .primary-button {
    width: 100%;
  }

  .steps-grid,
  .feature-grid,
  .faq-list,
  .metrics-strip,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .steps-grid article {
    border-right: 0;
    border-bottom: 1px dashed var(--line);
  }

  .cta-band {
    min-height: 360px;
    align-items: flex-end;
    padding: 190px clamp(20px, 5vw, 34px) 30px;
  }

  .retro-cta-art {
    inset: 0;
    width: 100%;
    height: 100%;
    object-position: left top;
    opacity: 0.82;
  }

  .cta-band > div:not(.document-tile) {
    width: 100%;
    margin: 0;
    border-left: 0;
  }

  .report-share-card {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 899px) and (orientation: portrait) {
  .insights-card {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    margin: 14px 0;
  }

  .hero-section .retro-hero-art {
    position: absolute;
    height: 100%;
    object-position: center bottom;
  }

}

@media (max-width: 899px) and (orientation: landscape) {
  .hero-section {
    grid-template-columns: minmax(270px, 0.86fr) minmax(350px, 1.14fr);
    min-height: max(520px, calc(100vh - 64px));
    padding: 28px clamp(16px, 4vw, 34px) 28px;
  }

  .hero-section::after {
    background:
      linear-gradient(180deg, rgba(247, 221, 165, 1) 0 180px, rgba(247, 221, 165, 0) 260px),
      linear-gradient(90deg, rgba(248, 232, 189, 0.98) 0%, rgba(248, 232, 189, 0.82) 43%, rgba(248, 232, 189, 0.22) 100%),
      radial-gradient(circle at 18% 42%, rgba(248, 232, 189, 0.64), transparent 32%);
  }

  h1 {
    font-size: clamp(2.55rem, 6.25vw, 3.45rem);
  }

  .eyebrow,
  .social-proof {
    margin-bottom: 12px;
  }

  .hero-text {
    margin-bottom: 14px;
    font-size: var(--text-md);
  }

  .hero-actions {
    margin-bottom: 12px;
  }

  .hero-visual {
    min-height: 430px;
  }

  .insights-card {
    width: min(240px, 48%);
    padding: 12px;
  }

  .insights-card {
    right: 0;
    bottom: 4%;
  }

}

@media (max-width: 620px) {
  .page-shell {
    padding: 14px;
  }

  .section-heading {
    display: block;
    text-align: left;
  }

  .section-heading h2 {
    display: block;
    margin-bottom: 8px;
  }

  .section-heading p {
    margin-top: 0;
  }

  .hero-section {
    padding-top: 30px;
    padding-bottom: 28px;
  }

  .hero-section::before {
    display: none;
  }

  h1 {
    font-size: clamp(2.95rem, 13.2vw, 4rem);
  }

  .primary-button,
  .secondary-button,
  .light-button {
    width: 100%;
  }

  .cta-band {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(154px, 0.92fr);
    align-content: start;
    min-height: 360px;
    padding: 26px 24px 28px;
  }

  .cta-band > div:not(.document-tile) {
    grid-column: 2;
    grid-row: 1;
    align-self: start;
    width: 100%;
    margin: 0 0 0 auto;
    text-align: right;
  }

  .cta-band h2 {
    max-width: 190px;
    margin-left: auto;
    font-size: clamp(2rem, 10vw, 2.7rem);
    line-height: 0.92;
  }

  .cta-band .light-button {
    grid-column: 2;
    grid-row: 2;
    align-self: end;
    justify-self: end;
    width: min(100%, 210px);
    margin-top: 150px;
  }

  .cta-band .retro-cta-art {
    object-fit: contain;
    object-position: left bottom;
    background: rgba(255, 241, 200, 0.72);
  }

  .privacy-card {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px;
  }

  .privacy-icon {
    width: 48px;
    height: 48px;
  }

  .privacy-card h2 {
    font-size: var(--text-2xl);
  }

  .privacy-pills {
    gap: 8px;
  }

  .privacy-pills span {
    min-height: 32px;
    padding: 0 10px;
    font-size: var(--text-sm);
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-section .retro-hero-art {
    height: 100%;
    object-position: 62% bottom;
    opacity: 0.82;
  }

  .hero-copy {
    padding-top: 0;
  }

  .trust-line {
    gap: 10px 14px;
  }

  .social-proof {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 18px;
  }

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

  .metric-card strong,
  .category-report-card strong {
    font-size: var(--text-2xl);
  }

  .selected-file-card,
  .document-file-row,
  .insight-row,
  .subscription-row,
  .saving-row {
    grid-template-columns: auto 1fr;
  }

  .subscription-row b,
  .selected-file-card .ghost-button {
    grid-column: 2;
  }
}
