*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --cream: #f6f3ed;
  --cream-dark: #ece7de;
  --warm-white: #faf8f4;
  --ink: #1a1714;
  --ink-80: #3d3830;
  --ink-60: #635c52;
  --ink-40: #908678;
  --ink-25: #b8b0a4;
  --ink-15: #d4cfc7;
  --ink-08: #e8e4de;
  --rust: #b04a2e;
  --rust-light: #c8613d;
  --rust-wash: rgba(176, 74, 46, 0.06);
  --rust-border: rgba(176, 74, 46, 0.18);
  --green-ink: #2d6e45;
  --green-wash: rgba(45, 110, 69, 0.06);
  --green-border: rgba(45, 110, 69, 0.18);
  --red-ink: #a03030;
  --red-wash: rgba(160, 48, 48, 0.06);
  --serif: 'Fraunces', Georgia, serif;
  --mono: 'IBM Plex Mono', monospace;
  --sans: 'Source Sans 3', -apple-system, system-ui, sans-serif;
  --max: 990px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--rust);
  color: var(--cream);
}

/* ═══════════ LAYOUT ═══════════ */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

/* ═══════════ NAV ═══════════ */
nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 243, 237, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--ink-08);
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-mark {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-mark span {
  color: var(--rust);
}

.nav-r {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-r a {
  font-size: 14px;
  color: var(--ink-60);
  text-decoration: none;
  transition: color 0.15s;
}

.nav-r a:hover {
  color: var(--ink);
}

.nav-cta-btn {
  font-family: var(--mono) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  color: var(--cream) !important;
  background: var(--ink) !important;
  padding: 8px 18px !important;
  border-radius: 6px !important;
  transition: background 0.15s !important;
}

.nav-cta-btn:hover {
  background: var(--ink-80) !important;
}






/* ═══════════ HERO ═══════════ */
.hero {
  padding: 100px 28px 80px;
  max-width: var(--max);
  margin: 0 auto;
}

/* Flag */
.hero-flag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--rust);
  background: var(--rust-wash);
  border: 1px solid var(--rust-border);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 32px;
  animation: fadeIn 0.4s var(--ease) both;
}

.hero-flag .dot {
  width: 5px;
  height: 5px;
  background: var(--rust);
  border-radius: 50%;
  animation: blink 2.5s infinite;
}

/* Title + copy */
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(38px, 5.4vw, 58px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.025em;
  max-width: 680px;
  margin: 0 0 28px;
  animation: fadeUp 0.5s 0.06s var(--ease) both;
}

.hero h1 em {
  font-style: italic;
  color: var(--rust);
}

.hero-body {
  font-size: 19px;
  line-height: 1.65;
  color: var(--ink-60);
  max-width: 500px;
  margin: 0 0 40px;
  animation: fadeUp 0.5s 0.12s var(--ease) both;
}

/* CTA row */
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fadeUp 0.5s 0.18s var(--ease) both;
}

/* Layout: stable 2-col that collapses cleanly */
.hero-main {
  display: grid;
  grid-template-columns: minmax(280px, 680px) minmax(260px, 1fr);
  align-items: center;
  column-gap: clamp(24px, 4vw, 56px);
  width: 100%;
}

/* Left column */
.hero-content {
  min-width: 280px;
}

/* Right column “stage” */
.hero-visual {
  position: relative;
  min-width: 260px;
  overflow: visible;
  /* desktop: allow art to hang */
}

/* This wrapper is where we “nudge” the art on desktop (replaces margin-left:-370px) */
.hero-art {
  position: relative;
  width: 100%;
  display: grid;
  justify-items: start;
  /* keep the same “starts left” feel */
  align-items: start;

  /* controlled offset that scales with viewport */
  transform: translateX(clamp(-300px, -14vw, -80px));
}

/* Desktop fade under mascot (same idea, but stable) */
.hero-visual::after {
  content: '';
  position: absolute;
  left: 60%;
  transform: translateX(-50%);
  bottom: -2px;

  width: clamp(560px, 42vw, 920px);
  height: 120px;

  background: linear-gradient(to bottom,
      rgba(246, 243, 237, 0) 0%,
      rgba(246, 243, 237, 1) 90%);
  pointer-events: none;
  z-index: 2;
}

/* Mascot */
.mascot-img {
  display: block;
  width: clamp(560px, 42vw, 920px);
  max-width: 300%;
  height: auto;
  object-fit: contain;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* Buttons (unchanged) */
.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--cream);
  background: var(--ink);
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
}

.btn-dark:hover {
  background: var(--ink-80);
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-60);
  background: transparent;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid var(--ink-15);
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}

.btn-outline:hover {
  border-color: var(--ink-40);
  color: var(--ink);
}

/* Proof bar */
.hero-proof {
  display: flex;
  gap: 40px;
  padding-top: 32px;
  margin-top: 0;
  border-top: 1px solid var(--ink-08);
  flex-wrap: wrap;
  animation: fadeUp 0.5s 0.24s var(--ease) both;
}

.hero-proof-item {
  min-width: 140px;
}

.hero-proof-item .num {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

.hero-proof-item .lbl {
  font-size: 13px;
  color: var(--ink-40);
}

/* ═══════════ RIBBON ═══════════ */
.ribbon {
  background: var(--ink);
  color: var(--cream);
  padding: 18px 0;
  overflow: hidden;
}

.ribbon-inner {
  display: flex;
  gap: 56px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

.ribbon-stat {
  display: flex;
  align-items: baseline;
  gap: 8px;
  white-space: nowrap;
}

.ribbon-stat .v {
  font-family: var(--mono);
  font-size: 16px;
  font-weight: 600;
  color: var(--rust-light);
}

.ribbon-stat .l {
  font-size: 13px;
  color: rgba(246, 243, 237, 0.55);
}

/* ═══════════ EDITORIAL SECTION ═══════════ */
section {
  padding: 88px 28px;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 18px;
}

.sect-heading {
  font-family: var(--serif);
  font-size: clamp(28px, 3.8vw, 40px);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.sect-heading em {
  font-style: italic;
  color: var(--rust);
}

.sect-sub {
  font-size: 17px;
  color: var(--ink-60);
  max-width: 520px;
  line-height: 1.65;
}

/* ═══════════ THE PROBLEM ═══════════ */
.problem {
  background: var(--cream);
}

.problem-cols {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.problem-prose p {
  font-size: 16.5px;
  line-height: 1.72;
  color: var(--ink-80);
  margin-bottom: 20px;
}

.problem-prose strong {
  color: var(--ink);
  font-weight: 600;
}

.problem-prose .pullquote {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: var(--rust);
  padding: 20px 0 20px 24px;
  border-left: 3px solid var(--rust);
  margin: 28px 0;
}

.problem-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.problem-card {
  background: var(--warm-white);
  border: 1px solid var(--ink-08);
  border-radius: 10px;
  padding: 24px;
  transition: border-color 0.2s;
}

.problem-card:hover {
  border-color: var(--ink-15);
}

.problem-card h3 {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 6px;
}

.problem-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-60);
}

/* ═══════════ COMPARISON TABLE ═══════════ */
.compare-sect {
  background: var(--warm-white);
  border-top: 1px solid var(--ink-08);
  border-bottom: 1px solid var(--ink-08);
}

.compare-table {
  margin-top: 48px;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--cream);
  border-radius: 12px;
  border: 1px solid var(--ink-08);
  overflow: hidden;
}

.compare-table thead th {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-40);
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid var(--ink-08);
  background: var(--warm-white);
}

.compare-table thead th:first-child {
  color: var(--ink);
}

.compare-table tbody td {
  font-size: 14.5px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--ink-08);
  color: var(--ink-60);
  vertical-align: top;
  line-height: 1.5;
}

.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.compare-table tbody td:first-child {
  font-weight: 600;
  color: var(--ink-80);
  font-size: 14px;
}

.compare-table .check {
  color: var(--green-ink);
  font-weight: 600;
}

.compare-table .warn {
  color: var(--rust);
  font-weight: 500;
}

.compare-table .neutral {
  color: var(--ink-25);
}

.compare-note {
  margin-top: 18px;
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--ink-25);
  text-align: center;
}

/* ═══════════ PRICING ═══════════ */
.pricing-sect {
  background: var(--cream);
}

.pricing-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.price-card {
  background: var(--warm-white);
  border: 1px solid var(--ink-08);
  border-radius: 12px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.price-card:hover {
  border-color: var(--ink-15);
  box-shadow: 0 4px 20px rgba(26, 23, 20, 0.04);
}

.price-card.featured {
  border-color: var(--rust-border);
  background: linear-gradient(135deg, var(--rust-wash), var(--warm-white));
  position: relative;
}

.price-card.featured::after {
  content: 'MOST POPULAR';
  position: absolute;
  top: -10px;
  left: 36px;
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--cream);
  background: var(--rust);
  padding: 3px 12px;
  border-radius: 4px;
}

.price-card-duration {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 12px;
}

.price-card h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.price-card .desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-60);
  margin-bottom: 24px;
  flex-grow: 1;
}

.price-card-includes {
  list-style: none;
  margin-bottom: 28px;
}

.price-card-includes li {
  font-size: 13.5px;
  color: var(--ink-60);
  display: flex;
  align-items: flex-start;
  gap: 7px;
  line-height: 1.45;
  padding: 5px 0;
}

.price-card-includes li::before {
  content: '→';
  color: var(--rust);
  font-family: var(--mono);
  font-weight: 600;
  flex-shrink: 0;
  font-size: 12px;
  margin-top: 2px;
}

.price-block {
  padding: 20px;
  background: var(--cream);
  border: 1px solid var(--ink-08);
  border-radius: 8px;
  margin-bottom: 16px;
}

.price-block .amount {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.price-block .per-min {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-40);
  margin-top: 4px;
}

.price-card-cta {
  display: block;
  width: 100%;
  text-align: center;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  padding: 14px;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, background 0.15s;
  margin-bottom: 10px;
}

.price-card-cta:hover {
  transform: translateY(-1px);
}

.price-card-cta--dark {
  color: var(--cream);
  background: var(--ink);
}

.price-card-cta--dark:hover {
  background: var(--ink-80);
}

.price-card-cta--outline {
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--ink-15);
}

.price-card-cta--outline:hover {
  border-color: var(--ink-40);
}

.price-card-guarantee {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-25);
  text-align: center;
}

/* ═══════════ PROCESS ═══════════ */
.process {
  background: var(--warm-white);
  border-top: 1px solid var(--ink-08);
  border-bottom: 1px solid var(--ink-08);
}

.process-row {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.p-step {
  background: var(--cream);
  border: 1px solid var(--ink-08);
  padding: 28px 22px;
}

.p-step:first-child {
  border-radius: 10px 0 0 10px;
}

.p-step:last-child {
  border-radius: 0 10px 10px 0;
}

.p-step .n {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--rust);
  margin-bottom: 12px;
}

.p-step h3 {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 6px;
}

.p-step p {
  font-size: 13.5px;
  color: var(--ink-40);
  line-height: 1.55;
}

/* ═══════════ QUOTE ═══════════ */
.quote-sect {
  padding: 72px 28px;
  background: var(--ink);
  color: var(--cream);
}

.quote-sect .wrap {
  max-width: 700px;
  text-align: center;
}

.quote-sect blockquote {
  font-family: var(--serif);
  font-size: clamp(20px, 2.8vw, 28px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.45;
  color: rgba(246, 243, 237, 0.75);
}

.quote-sect blockquote strong {
  color: var(--cream);
  font-weight: 500;
  font-style: normal;
}

.quote-sect .attr {
  margin-top: 18px;
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(246, 243, 237, 0.35);
}

.quote-sect .attr strong {
  color: var(--rust-light);
  font-weight: 600;
}

/* ═══════════ WHO THIS IS FOR ═══════════ */
.for-sect {
  background: var(--cream);
}

.for-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.for-card {
  background: var(--warm-white);
  border: 1px solid var(--ink-08);
  border-radius: 8px;
  padding: 22px;
  transition: border-color 0.2s;
}

.for-card:hover {
  border-color: var(--ink-15);
}

.for-card .ico {
  font-size: 22px;
  margin-bottom: 10px;
}

.for-card h3 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.for-card p {
  font-size: 13px;
  color: var(--ink-40);
  line-height: 1.5;
}

/* ═══════════ FAQ ═══════════ */
.faq-sect {
  background: var(--warm-white);
  border-top: 1px solid var(--ink-08);
  border-bottom: 1px solid var(--ink-08);
}

.faq-list {
  margin-top: 40px;
  max-width: 660px;
}

.faq-item {
  padding: 22px 0;
  border-bottom: 1px solid var(--ink-08);
}

.faq-item:first-child {
  border-top: 1px solid var(--ink-08);
}

.faq-item h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}

.faq-item p {
  font-size: 14.5px;
  color: var(--ink-60);
  line-height: 1.6;
}

/* ═══════════ FINAL CTA ═══════════ */
.final {
  padding: 112px 28px;
  text-align: center;
  background: var(--cream);
}

.final h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.8vw, 42px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.final h2 em {
  font-style: italic;
  color: var(--rust);
}

.final .sub {
  font-size: 17px;
  color: var(--ink-60);
  max-width: 460px;
  margin: 0 auto 36px;
}

.final .cta-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.final .aside {
  margin-top: 20px;
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--ink-25);
}

/* ═══════════ FOOTER ═══════════ */
footer {
  padding: 32px 28px;
  border-top: 1px solid var(--ink-08);
}

.ft-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer p {
  font-size: 12px;
  color: var(--ink-25);
}

.ft-links {
  display: flex;
  gap: 20px;
}

.ft-links a {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-25);
  text-decoration: none;
}

.ft-links a:hover {
  color: var(--ink-60);
}

/* ═══════════ ANIM ═══════════ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 900px) {
  .problem-cols {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

  .process-row {
    grid-template-columns: 1fr;
  }

  .p-step,
  .p-step:first-child,
  .p-step:last-child {
    border-radius: 0;
  }

  .p-step:first-child {
    border-radius: 10px 10px 0 0;
  }

  .p-step:last-child {
    border-radius: 0 0 10px 10px;
  }

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

  .hero-proof {
    flex-wrap: wrap;
    gap: 24px;
  }

  .ribbon-inner {
    gap: 24px;
  }

  .nav-r a:not(.nav-cta-btn) {
    display: none;
  }

  .compare-table {
    font-size: 13px;
  }

  .compare-table thead th,
  .compare-table tbody td {
    padding: 12px 14px;
  }
}

@media (max-width: 600px) {

  .hero-cta-row,
  .final .cta-group {
    flex-direction: column;
    width: 100%;
  }

  .btn-dark,
  .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .ft-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .ft-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}


/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 980px) {
  .mascot-img {
    /* Reduce max size slightly to prevent overflow before stack */
    max-width: 200%;
  }
}

@media (max-width: 900px) {
  .pitch-cols {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .svc {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .svc-includes {
    grid-template-columns: 1fr;
  }

  .process-row {
    grid-template-columns: 1fr;
  }

  .p-step,
  .p-step:first-child,
  .p-step:last-child {
    border-radius: 0;
  }

  .p-step:first-child {
    border-radius: 10px 10px 0 0;
  }

  .p-step:last-child {
    border-radius: 0 0 10px 10px;
  }

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

  .hero-proof {
    flex-wrap: wrap;
    gap: 24px;
  }

  .ribbon-inner {
    gap: 24px;
  }

  .nav-r a:not(.nav-cta-btn) {
    display: none;
  }
}






/* ═══════════ RESPONSIVE (single source of truth) ═══════════ */
@media (max-width: 900px) {
  .hero {
    padding: 72px 20px 56px;
        overflow-x: hidden; /* prevents page/body from widening */

  }

  .hero-main {
    grid-template-columns: 1fr;
    row-gap: 18px;
    align-items: start;
        overflow: visible;

  }

  .hero-visual {
    width: 100%;
    overflow: visible;
    /* prevent horizontal scroll when mascot is huge */
    padding-bottom: 0px;
    /* gives fade room */
  }

  /* remove desktop nudge; center on mobile */
  .hero-art {
    transform: none;
    justify-items: center;
  }

  /* “lighting” under mascot on mobile */
  .hero-visual::after {
    bottom: 0;
    width: 140vw;
    /* tune 110–180vw */
    height: 140px;
    /* tune 100–180px */
    background: linear-gradient(to bottom,
        rgba(246, 243, 237, 0) 0%,
        rgba(246, 243, 237, 1) 85%);
  }

  .mascot-img {
    width: 88vw;
    max-width: none;
    /* allow big */
    left: 25%;
    transform: translateX(-50%);
  }

  .hero-proof {
    gap: 24px;
  }
}

@media (max-width: 600px) {
  .hero-cta-row {
    flex-direction: column;
    width: 100%;
  }

  .btn-dark,
  .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .mascot-img {
    width: 170vw;
  }

  .hero-visual::after {
    width: 220vw;
    height: 170px;
  }
}

/* iPhone Pro Max (portrait) */
@media only screen and (max-width: 430px) {
  .mascot-img {
    transform: translateX(-50%) scaleY(0.98);
  }
}

/* ===== Responsive Compare Table (no HTML changes) ===== */
/* ===== Mobile swipe table (FULLY EDITED) ===== */

/* Swipe hint wrapper (always) */
.compare-scrollhint {
  position: relative;
}

/* Mobile: make the WRAPPER scroll, not the table */
@media (max-width: 900px) {
  .compare-scrollhint {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 12px;
  }

  /* Keep the table as a real table (better sticky + layout) */
  .compare-table {
    width: 100%;
    min-width: 760px;
    /* forces horizontal swipe on mobile */
    border-radius: 12px;
    /* matches your design */
    white-space: normal;
    /* allow wrapping inside cells */
  }

  /* Keep cells readable */
  .compare-table thead th,
  .compare-table tbody td {
    min-width: 190px;
    /* column width */
    white-space: normal;
    /* allow wrapping inside cells */
  }

  /* Sticky row-label column (first column) */
  .compare-table thead th:first-child,
  .compare-table tbody td:first-child {
    position: sticky;
    left: 0;
    z-index: 4;
    background: var(--warm-white);
  }

  .compare-table tbody td:first-child {
    background: var(--cream);
    z-index: 3;
  }

  /* Optional: slightly smaller text */
  .compare-table tbody td {
    font-size: 13.5px;
    padding: 14px 16px;
  }

  .compare-table thead th {
    padding: 16px 16px;
  }

  /* Right-edge fade (mobile only) */
  .compare-scrollhint::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 64px;
    height: 100%;
    pointer-events: none;
    border-radius: 12px;
    z-index: 5;
  }

  /* Swipe hint chip (mobile only) */
  .compare-scrollhint::before {
    content: 'Swipe →';
    position: absolute;
    right: 12px;
    top: 14px;
    z-index: 6;
    pointer-events: none;

    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-40);

    background: rgba(255, 255, 255, 0.78);
    border: 1px solid var(--ink-08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 6px 10px;
    border-radius: 999px;

    animation: swipeNudge 1.6s var(--ease) infinite;
  }

  @keyframes swipeNudge {

    0%,
    100% {
      transform: translateX(0);
      opacity: 0.85;
    }

    50% {
      transform: translateX(-6px);
      opacity: 1;
    }
  }
}

/* Extra small phones */
@media (max-width: 430px) {

  .compare-table thead th,
  .compare-table tbody td {
    min-width: 170px;
  }

  /* Optional: slightly smaller min table width on very small screens */
  .compare-table {
    min-width: 680px;
  }
}