:root {
  --ink: #0e1412;
  --ink-2: #1b2320;
  --paper: #f4efe6;
  --paper-2: #ede6d8;
  --cream: #fbf7ee;
  --moss: #2e4a3a;
  --moss-2: #3a5c48;
  --lime: #c8f45a;
  --lime-2: #d9ff7e;
  --tangerine: #ff6b35;
  --amber: #f4a93f;
  --sky: #9dc8d8;
  --line: rgb(14 20 18 / 12%);
  --line-strong: rgb(14 20 18 / 22%);
  --shadow: 0 28px 90px -40px rgb(14 20 18 / 42%), 0 12px 30px -20px rgb(14 20 18 / 28%);
  --radius: 8px;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --page-width: min(1120px, calc(100% - 72px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgb(200 244 90 / 13%), transparent 32rem),
    linear-gradient(315deg, rgb(157 200 216 / 20%), transparent 32rem),
    var(--paper);
  font-family: var(--sans);
  font-variant-numeric: tabular-nums;
  font-feature-settings: "kern";
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(rgb(14 20 18 / 4%) 1px, transparent 1px);
  background-size: 4px 4px;
  content: "";
}

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

img {
  max-width: 100%;
  height: auto;
}

/* ─── ANNOUNCEMENT BAR ─── */
.announcement-bar {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  background: var(--ink);
  color: rgb(251 247 238 / 88%);
  font-size: 13px;
  font-weight: 650;
  text-align: center;
}

.announcement-bar strong {
  color: var(--lime);
}

.announcement-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

/* ─── HEADER ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  width: var(--page-width);
  margin: 14px auto 0;
  padding: 10px 10px 10px 14px;
  border: 1px solid rgb(14 20 18 / 10%);
  border-radius: 999px;
  background: rgb(251 247 238 / 86%);
  box-shadow: 0 12px 34px -28px var(--ink);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  font-variation-settings: "SOFT" 70;
  letter-spacing: 0;
}

.brand-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  box-shadow: 0 10px 24px -16px var(--ink);
}

.nav {
  display: flex;
  gap: 12px;
  justify-content: center;
  color: rgb(27 35 32 / 76%);
  font-size: 14px;
  font-weight: 700;
}

.nav a {
  border-radius: 999px;
  padding: 7px 8px;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--ink);
}

.nav a[aria-current="page"] {
  background: rgb(46 74 58 / 10%);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgb(251 247 238 / 72%);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 17px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.18s ease, opacity 0.18s ease;
  content: "";
}

.nav-toggle-lines {
  position: relative;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  position: absolute;
  left: 0;
}

.nav-toggle-lines::before {
  top: -6px;
}

.nav-toggle-lines::after {
  top: 6px;
}

.site-header.nav-open .nav-toggle-lines {
  background: transparent;
}

.site-header.nav-open .nav-toggle-lines::before {
  transform: translateY(6px) rotate(45deg);
}

.site-header.nav-open .nav-toggle-lines::after {
  transform: translateY(-6px) rotate(-45deg);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.header-cta,
.button.primary {
  color: var(--lime);
  background: var(--ink);
}

.button.secondary {
  color: var(--ink);
  background: rgb(251 247 238 / 78%);
  border-color: var(--line);
}

.button.large {
  min-height: 52px;
  padding: 0 28px;
  font-size: 16px;
}

.button:hover,
.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -12px rgb(14 20 18 / 40%);
}

.section-shell {
  width: var(--page-width);
  margin: 0 auto;
}

/* ─── SUBPAGES ─── */
.subpage-main {
  padding-top: clamp(28px, 5vw, 56px);
}

.subpage-hero {
  margin: 0 auto clamp(34px, 5vw, 52px);
  text-align: center;
}

.subpage-hero h1 {
  max-width: 820px;
  margin: 12px auto 0;
  font-family: var(--serif);
  font-size: clamp(36px, 4.4vw, 56px);
  font-weight: 600;
  font-variation-settings: "SOFT" 70;
  line-height: 1;
  letter-spacing: 0;
}

.subpage-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 16px auto 0;
  color: rgb(27 35 32 / 72%);
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.48;
}

/* ─── HERO ─── */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(350px, 0.95fr);
  gap: clamp(34px, 6vw, 72px);
  align-items: center;
  min-height: calc(100vh - 108px);
  padding: 44px 0 58px;
}

.hero-copy,
.hero-visual {
  min-width: 0;
}

.eyebrow-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow,
.mini-label {
  margin: 0;
  color: var(--moss);
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.calc-copy h2,
.product-copy h2,
.pricing-copy h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  font-variation-settings: "SOFT" 70;
  line-height: 0.96;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero h1 {
  max-width: 760px;
  margin-top: 16px;
  font-size: clamp(40px, 4.6vw, 58px);
}

.hero h1 em {
  font-style: normal;
  color: var(--moss);
}

.savings-equation {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
  max-width: 680px;
  margin-top: 22px;
}

.savings-equation > div {
  min-height: 140px;
  padding: 18px 20px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: rgb(251 247 238 / 72%);
  box-shadow: 0 14px 34px -30px var(--ink);
}

.savings-equation span {
  display: block;
  color: rgb(27 35 32 / 66%);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.savings-equation strong {
  display: block;
  margin-top: 16px;
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 650;
  font-variation-settings: "SOFT" 70;
  line-height: 0.9;
}

.savings-equation strong small {
  font-family: var(--sans);
  font-size: 0.38em;
  font-weight: 600;
  vertical-align: middle;
  margin-left: 4px;
  color: rgb(27 35 32 / 54%);
}

.savings-equation .eq-dark {
  color: var(--lime);
  background: var(--ink);
  border-color: var(--ink);
}

.savings-equation .eq-dark span {
  color: rgb(251 247 238 / 62%);
}

.savings-equation .eq-dark strong small {
  color: rgb(200 244 90 / 60%);
}

.hero-lede {
  max-width: 620px;
  margin: 20px 0 0;
  color: rgb(27 35 32 / 82%);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.5;
}

.hero-disclaimer {
  max-width: 620px;
  margin: 10px 0 0;
  color: rgb(27 35 32 / 56%);
  font-size: 12px;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

/* ─── FREE TIER CALLOUT ─── */
.free-tier-callout {
  max-width: 620px;
  margin-top: 20px;
  padding: 16px;
  border: 1.5px solid rgb(46 74 58 / 18%);
  border-radius: 10px;
  background: rgb(251 247 238 / 80%);
  box-shadow: 0 14px 36px -32px var(--ink);
}

.free-tier-left {
  display: flex;
  gap: 14px;
  align-items: center;
}

.free-count-badge {
  display: grid;
  flex: 0 0 52px;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  color: var(--lime);
  background: var(--ink);
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 700;
  font-variation-settings: "SOFT" 70;
  line-height: 1;
  box-shadow: inset 0 0 0 1px rgb(200 244 90 / 20%);
}

.free-tier-callout strong {
  display: block;
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
}

.free-tier-callout p {
  margin: 4px 0 0;
  color: rgb(27 35 32 / 68%);
  font-size: 13.5px;
  line-height: 1.4;
}

/* ─── PROOF STRIP ─── */
.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.proof-strip span {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgb(251 247 238 / 78%);
  box-shadow: 0 10px 24px -22px var(--ink);
  color: rgb(27 35 32 / 78%);
  font-size: 13px;
  font-weight: 700;
}

.proof-strip span::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--moss);
  box-shadow: 0 0 0 4px rgb(46 74 58 / 10%);
  content: "";
  flex-shrink: 0;
}

.proof-strip span[data-tone="lime"]::before {
  background: var(--lime);
  box-shadow: 0 0 0 4px rgb(200 244 90 / 22%);
}

.proof-strip span[data-tone="sky"]::before {
  background: var(--sky);
  box-shadow: 0 0 0 4px rgb(157 200 216 / 22%);
}

.proof-strip span[data-tone="tangerine"]::before {
  background: var(--tangerine);
  box-shadow: 0 0 0 4px rgb(255 107 53 / 16%);
}

/* ─── TRUST ROW ─── */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 18px;
}

.trust-item {
  display: flex;
  gap: 6px;
  align-items: center;
  color: rgb(27 35 32 / 64%);
  font-size: 13px;
  font-weight: 600;
}

.trust-separator {
  width: 1px;
  height: 16px;
  background: var(--line-strong);
}

/* ─── HERO VISUAL ─── */
.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 700px;
}

.savings-billboard {
  position: absolute;
  top: 48px;
  left: 0;
  z-index: 4;
  width: min(240px, 48%);
  padding: 18px;
  border: 1px solid rgb(255 107 53 / 36%);
  border-radius: 10px;
  background: var(--tangerine);
  box-shadow: 0 28px 70px -38px var(--ink);
  transform: rotate(-4deg);
}

.savings-billboard p,
.savings-billboard span {
  display: block;
  margin: 0;
  color: rgb(14 20 18 / 76%);
  font-size: 11.5px;
  font-weight: 850;
  letter-spacing: 0.06em;
  line-height: 1.35;
  text-transform: uppercase;
}

.savings-billboard strong {
  display: block;
  margin: 6px 0 4px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 650;
  font-variation-settings: "SOFT" 70;
  line-height: 0.9;
}

/* ─── PHONE ─── */
.phone {
  position: relative;
  width: min(338px, 100%);
  padding: 8px;
  border-radius: 48px;
  background: var(--ink);
  box-shadow: var(--shadow), inset 0 0 0 1px rgb(255 255 255 / 8%);
}

.phone-main {
  transform: rotate(2deg);
}

.phone-screen {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  border-radius: 40px;
  background: linear-gradient(180deg, rgb(251 247 238 / 100%), rgb(237 230 216 / 100%));
}

.island {
  position: absolute;
  top: 12px;
  left: 50%;
  z-index: 3;
  width: 100px;
  height: 28px;
  border-radius: 999px;
  background: var(--ink);
  transform: translateX(-50%);
}

.app-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 72px 22px 22px;
  color: var(--cream);
  background: linear-gradient(145deg, var(--ink), var(--moss-2)), var(--ink);
}

.app-top .mini-label {
  color: rgb(200 244 90 / 76%);
}

.app-top h2 {
  margin: 6px 0 2px;
  font-family: var(--serif);
  font-size: 58px;
  font-weight: 600;
  font-variation-settings: "SOFT" 70;
  line-height: 0.9;
}

.app-top p:last-child {
  margin: 0;
  color: rgb(251 247 238 / 70%);
  font-size: 13px;
}

.live-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  padding: 7px 12px;
  border: 1px solid rgb(200 244 90 / 35%);
  border-radius: 999px;
  color: var(--lime);
  font-size: 11.5px;
  font-weight: 800;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  animation: livepulse 1.6s ease-in-out infinite;
}

@keyframes livepulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.route-card,
.review-card {
  margin: 14px 14px 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgb(255 255 255 / 72%);
}

.route-map {
  position: relative;
  height: 210px;
  overflow: hidden;
  border-radius: 16px;
  background:
    linear-gradient(90deg, rgb(46 74 58 / 8%) 1px, transparent 1px),
    linear-gradient(0deg, rgb(46 74 58 / 8%) 1px, transparent 1px),
    linear-gradient(135deg, rgb(157 200 216 / 44%), rgb(251 247 238 / 90%));
  background-size: 34px 34px, 34px 34px, auto;
}

.map-grid-overlay {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 33px,
      rgb(46 74 58 / 6%) 33px,
      rgb(46 74 58 / 6%) 34px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 33px,
      rgb(46 74 58 / 6%) 33px,
      rgb(46 74 58 / 6%) 34px
    );
}

.pin {
  position: absolute;
  z-index: 2;
  width: 18px;
  height: 18px;
  border: 4px solid var(--cream);
  border-radius: 50%;
  box-shadow: 0 8px 18px -10px var(--ink);
}

.pin.start {
  top: 42px;
  left: 52px;
  background: var(--moss);
}

.pin.end {
  right: 50px;
  bottom: 42px;
  background: var(--tangerine);
}

.route-line {
  position: absolute;
  height: 8px;
  border-radius: 999px;
  background: var(--moss);
  opacity: 0.86;
  transform-origin: left center;
}

.route-line.a {
  top: 64px;
  left: 66px;
  width: 106px;
  transform: rotate(20deg);
}

.route-line.b {
  top: 118px;
  left: 158px;
  width: 96px;
  transform: rotate(72deg);
}

.route-line.c {
  right: 56px;
  bottom: 64px;
  width: 106px;
  transform: rotate(-17deg);
}

.route-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-top: 10px;
  color: rgb(27 35 32 / 78%);
  font-size: 13px;
  font-weight: 650;
}

.route-label {
  display: block;
  font-size: 12px;
  color: rgb(27 35 32 / 60%);
  margin-bottom: 4px;
}

.route-tags {
  display: flex;
  gap: 6px;
}

.tag-business {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 999px;
  color: var(--lime);
  background: var(--moss);
  font-size: 11px;
  font-weight: 750;
}

.route-value {
  color: var(--ink);
  font-size: 22px;
  font-family: var(--serif);
  font-weight: 600;
  font-variation-settings: "SOFT" 70;
}

.review-card {
  margin-bottom: 0;
}

.review-card h3 {
  margin: 6px 0 10px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  font-variation-settings: "SOFT" 70;
  line-height: 1.05;
}

.swipe-row {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: center;
  color: rgb(27 35 32 / 78%);
  font-size: 13px;
  font-weight: 650;
}

.swipe-row span {
  flex: 1;
  padding: 11px 10px;
  border-radius: 12px;
  text-align: center;
}

.swipe-row span:first-child {
  background: rgb(157 200 216 / 28%);
}

.swipe-row .swipe-yes {
  color: var(--lime);
  background: var(--moss);
}

.tabbar {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  padding: 10px 8px 22px;
  border-top: 1px solid var(--line);
  background: rgb(251 247 238 / 90%);
  backdrop-filter: blur(14px);
}

.tabbar span {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 8px 2px;
  border-radius: 12px;
  color: rgb(27 35 32 / 50%);
  font-size: 9px;
  font-weight: 750;
  text-align: center;
}

.tabbar .active {
  color: var(--moss);
  background: rgb(46 74 58 / 9%);
}

/* ─── TRY FREE STAMP ─── */
.try-free-stamp {
  position: absolute;
  bottom: 48px;
  right: -10px;
  z-index: 10;
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--tangerine);
  border: 3px dashed rgb(14 20 18 / 28%);
  transform: rotate(-10deg);
  box-shadow: 0 12px 32px -10px rgb(255 107 53 / 55%), 0 4px 12px -6px rgb(14 20 18 / 28%);
}

.stamp-inner {
  text-align: center;
  line-height: 1;
}

.stamp-line1 {
  display: block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: rgb(14 20 18 / 60%);
  text-transform: uppercase;
}

.stamp-line2 {
  display: block;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 700;
  font-variation-settings: "SOFT" 70;
  color: var(--ink);
  line-height: 1;
  margin: 1px 0;
}

.stamp-line3 {
  display: block;
  font-size: 9px;
  font-weight: 900;
  color: rgb(14 20 18 / 60%);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}


/* ─── VALUE SECTION ─── */
.value-section,
.driver-section,
.comparison-section,
.faq-section {
  padding: clamp(48px, 6vw, 72px) 0;
}

.comparison-section,
.faq-section {
  width: var(--page-width);
  margin-right: auto;
  margin-left: auto;
}

.section-heading {
  display: block;
  max-width: 760px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.section-heading.compact {
  max-width: 760px;
}

.section-heading h2,
.calc-copy h2,
.product-copy h2,
.pricing-copy h2,
.final-cta h2 {
  font-size: clamp(26px, 2.8vw, 38px);
  line-height: 1.02;
}

.pricing-copy h2 {
  font-size: clamp(26px, 2.6vw, 36px);
}

.section-heading h2 {
  margin-top: 10px;
}

.roi-grid,
.driver-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.roi-grid article,
.driver-grid article,
.faq-grid details,
.comparison-column,
.price-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgb(251 247 238 / 64%);
}

.roi-grid article {
  min-height: 250px;
  padding: 24px;
}

.metric {
  display: block;
  margin-bottom: 30px;
  font-family: var(--serif);
  font-size: clamp(38px, 4.5vw, 56px);
  font-weight: 650;
  font-variation-settings: "SOFT" 70;
  line-height: 0.9;
}

/* ─── LANDING BILLBOARD ─── */
.landing-billboard {
  aspect-ratio: 1672 / 941;
  margin: 32px auto 0;
  overflow: hidden;
  border-radius: 10px;
}

.landing-billboard img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1672 / 941;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--cream);
  box-shadow: 0 24px 80px -52px var(--ink);
  object-fit: contain;
}

.app-download-band {
  display: flex;
  gap: 32px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: clamp(32px, 4.6vw, 52px);
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.app-download-copy {
  max-width: 650px;
}

.app-download-copy .eyebrow {
  margin-bottom: 7px;
}

.app-download-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 600;
  font-variation-settings: "SOFT" 70;
  line-height: 1.08;
}

.app-download-copy > p:last-child {
  margin: 8px 0 0;
  color: rgb(27 35 32 / 66%);
  font-size: 14px;
  line-height: 1.5;
}

.app-download-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 20px;
  align-items: center;
}

.app-store-badge {
  display: block;
  padding: 8px 0;
}

.app-store-badge img {
  display: block;
  width: 144px;
}

.app-store-qr {
  display: grid;
  grid-template-columns: 92px 110px;
  gap: 12px;
  align-items: center;
  color: rgb(27 35 32 / 70%);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.35;
}

.app-store-qr img {
  display: block;
  width: 92px;
  padding: 5px;
  border: 1px solid var(--line);
  background: #fff;
}

.app-download-band + .hero {
  min-height: auto;
  padding-top: 0;
}

.home-product-intro {
  align-items: start;
  padding-bottom: 72px;
}

.home-product-intro .hero-copy {
  padding-top: clamp(10px, 3vw, 28px);
}

.home-product-intro h1 {
  max-width: 650px;
  font-size: clamp(34px, 3.8vw, 48px);
  line-height: 1.03;
}

.home-product-intro .hero-lede {
  max-width: 590px;
  font-size: clamp(17px, 1.7vw, 19px);
}

/* ─── INCLUDED SECTION ─── */
.included-section {
  width: var(--page-width);
  margin: 0 auto 86px;
}

.included-card {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgb(200 244 90 / 14%), transparent 34rem),
    rgb(251 247 238 / 66%);
  box-shadow: 0 20px 60px -52px var(--ink);
}

.included-copy h2 {
  margin: 12px 0 0;
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  font-variation-settings: "SOFT" 70;
  line-height: 1.02;
}

.included-copy p:not(.eyebrow) {
  max-width: 520px;
  margin: 18px 0 0;
  color: rgb(27 35 32 / 76%);
  font-size: 17px;
  line-height: 1.52;
}

.included-list {
  display: grid;
  gap: 9px;
}

.included-list div {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgb(255 255 255 / 58%);
  color: rgb(27 35 32 / 84%);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.included-list span {
  display: inline-grid;
  flex: 0 0 22px;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
  font-size: 13px;
  font-weight: 900;
  margin-top: 1px;
}

/* ─── COMPETITOR SECTION ─── */
.competitor-section {
  width: var(--page-width);
  margin: 0 auto 86px;
}

.competitor-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
  margin-top: 28px;
}

.comparison-price {
  min-height: 196px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgb(251 247 238 / 66%);
}

.comparison-price.od {
  position: relative;
  overflow: hidden;
  color: var(--lime);
  background:
    linear-gradient(145deg, rgb(14 20 18 / 96%), rgb(46 74 58 / 98%)),
    var(--ink);
  border-color: rgb(200 244 90 / 22%);
}

.savings-tag {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--lime);
  font-size: 11.5px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.comparison-price p {
  margin: 0;
  color: rgb(27 35 32 / 66%);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.comparison-price.od p {
  color: rgb(200 244 90 / 72%);
  padding-right: 140px;
}

.comparison-price strong {
  display: block;
  margin-top: 18px;
  font-family: var(--serif);
  font-size: clamp(38px, 4.5vw, 58px);
  font-weight: 650;
  font-variation-settings: "SOFT" 70;
  line-height: 0.9;
}

.comparison-price span {
  display: block;
  max-width: 410px;
  margin-top: 16px;
  color: rgb(27 35 32 / 70%);
  font-size: 16px;
  line-height: 1.42;
}

.comparison-price.od span {
  color: rgb(251 247 238 / 68%);
}

.price-divider {
  display: grid;
  place-items: center;
  color: var(--tangerine);
  font-size: 13.5px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-table {
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: rgb(251 247 238 / 62%);
}

.feature-row {
  display: grid;
  grid-template-columns: 1.3fr 0.95fr 1.05fr;
  gap: 18px;
  align-items: center;
  min-height: 60px;
  padding: 13px 18px;
  border-top: 1px solid var(--line);
  color: rgb(27 35 32 / 72%);
  font-size: 15px;
  font-weight: 700;
}

.feature-row:first-child {
  border-top: 0;
}

.feature-row > div:first-child {
  color: var(--ink);
  font-weight: 800;
}

.feature-row > div:last-child {
  color: var(--ink);
}

.table-head {
  min-height: 52px;
  background: rgb(14 20 18 / 5%);
  color: rgb(27 35 32 / 58%);
  font-size: 12.5px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.table-head > div {
  display: flex;
  gap: 10px;
  align-items: center;
}

.table-head > div:first-child,
.table-head > div:last-child {
  color: rgb(27 35 32 / 58%);
}

.feature-row > div:last-child {
  align-self: stretch;
  display: flex;
  align-items: center;
  margin: -13px -18px;
  padding: 13px 18px;
  border-left: 1px solid rgb(46 74 58 / 12%);
  background: rgb(200 244 90 / 9%);
}

.table-head > div:last-child {
  color: var(--ink);
  background: rgb(200 244 90 / 18%);
}

.table-app-logo,
.table-app-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  box-shadow: 0 8px 18px -14px var(--ink);
}

.table-app-icon.generic {
  position: relative;
  display: inline-block;
  background: linear-gradient(145deg, rgb(27 35 32 / 22%), rgb(27 35 32 / 8%));
  border: 1px solid rgb(27 35 32 / 18%);
}

.table-app-icon.generic::before {
  position: absolute;
  inset: 7px;
  border: 2px solid rgb(27 35 32 / 54%);
  border-radius: 5px;
  content: "";
}

.table-app-icon.generic::after {
  position: absolute;
  right: 6px;
  bottom: 6px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--tangerine);
  content: "";
}

.ok {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-right: 6px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
  font-size: 13px;
  font-weight: 900;
  flex-shrink: 0;
}

.muted-mark {
  color: rgb(27 35 32 / 48%);
  font-weight: 750;
}

.pricing-note {
  max-width: 820px;
  margin: 16px 0 0;
  color: rgb(27 35 32 / 54%);
  font-size: 13px;
  line-height: 1.45;
}

h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  font-variation-settings: "SOFT" 70;
  line-height: 1.08;
}

.roi-grid p,
.driver-grid p,
.feature-list p,
.pricing-copy p,
.calc-copy p,
.comparison p,
.faq-grid p,
.price-card p,
footer p {
  margin: 9px 0 0;
  color: rgb(27 35 32 / 76%);
  line-height: 1.55;
}

/* ─── CALCULATOR ─── */
.calculator-section {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 56px;
  align-items: center;
  width: var(--page-width);
  margin: 30px auto 86px;
  padding: clamp(28px, 6vw, 62px);
  border-radius: 10px;
  color: var(--cream);
  background:
    linear-gradient(145deg, rgb(14 20 18 / 95%), rgb(46 74 58 / 98%)),
    var(--ink);
  box-shadow: var(--shadow);
}

.calc-copy .eyebrow {
  color: var(--lime);
}

.calc-copy p {
  color: rgb(251 247 238 / 72%);
  font-size: 17px;
}

.calculator {
  padding: 22px;
  border: 1px solid rgb(251 247 238 / 14%);
  border-radius: 10px;
  background: rgb(251 247 238 / 7%);
}

.calc-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  font-weight: 750;
}

.calc-top span {
  color: rgb(251 247 238 / 70%);
}

.calc-top strong {
  color: var(--lime);
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 650;
  font-variation-settings: "SOFT" 70;
  line-height: 1;
}

input[type="range"] {
  width: 100%;
  margin: 24px 0;
  accent-color: var(--lime);
  cursor: pointer;
}

.calc-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.calc-results div {
  min-height: 110px;
  padding: 14px;
  border: 1px solid rgb(251 247 238 / 12%);
  border-radius: 8px;
  background: rgb(14 20 18 / 24%);
}

.calc-results span {
  display: block;
  min-height: 38px;
  color: rgb(251 247 238 / 64%);
  font-size: 13px;
  line-height: 1.35;
}

.calc-results strong {
  display: block;
  margin-top: 12px;
  color: var(--cream);
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 600;
  font-variation-settings: "SOFT" 70;
  line-height: 1;
}

.calc-cta {
  display: block;
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 8px;
  background: var(--lime);
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  transition: transform 0.15s ease;
}

.calc-cta:hover {
  transform: translateY(-2px);
}

/* ─── DRIVER GRID ─── */
.driver-grid article {
  min-height: 190px;
  padding: 22px;
}

.driver-grid h3::before {
  display: block;
  width: 34px;
  height: 3px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: var(--tangerine);
  content: "";
}

.driver-grid article:nth-child(2n) h3::before {
  background: var(--moss);
}

.driver-grid article:nth-child(3n) h3::before {
  background: var(--sky);
}

/* ─── PRODUCT SECTION ─── */
.product-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(34px, 8vw, 92px);
  align-items: center;
  width: var(--page-width);
  margin: 34px auto 92px;
}

.cluster-one {
  justify-self: center;
  transform: rotate(-2deg);
}

.report-screen {
  min-height: 600px;
  padding: 72px 20px 22px;
  background:
    radial-gradient(260px 220px at 88% 6%, rgb(200 244 90 / 28%), transparent 66%),
    linear-gradient(180deg, var(--cream), var(--paper-2));
}

.report-screen h2 {
  margin: 12px 0 20px;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 600;
  font-variation-settings: "SOFT" 70;
  line-height: 1.02;
}

.report-list {
  display: grid;
  gap: 10px;
}

.report-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgb(255 255 255 / 60%);
}

.report-list span {
  color: rgb(27 35 32 / 68%);
  font-size: 13px;
  font-weight: 650;
}

.report-list strong {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  font-variation-settings: "SOFT" 70;
}

.report-screen button {
  width: 100%;
  min-height: 50px;
  margin-top: 140px;
  border: 0;
  border-radius: 16px;
  color: var(--lime);
  background: var(--moss);
  font: 750 15px var(--sans);
  cursor: pointer;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.feature-list div {
  padding: 0 0 20px;
  border-bottom: 1px solid var(--line);
}

/* ─── COMPARISON SECTION ─── */
.comparison {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 14px;
  margin-top: 28px;
}

.comparison-column {
  padding: 26px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgb(251 247 238 / 64%);
}

.comparison-column h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  font-variation-settings: "SOFT" 70;
}

.comparison-column.highlight {
  color: var(--cream);
  background: var(--ink);
  border-color: var(--ink);
}

.comparison-column.highlight p {
  color: rgb(251 247 238 / 72%);
}

/* ─── PRICING SECTION ─── */
.pricing-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: start;
  width: var(--page-width);
  margin: 12px auto 86px;
  padding: clamp(26px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgb(251 247 238 / 54%);
}

.price-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.price-card {
  position: relative;
  padding: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.price-card.free-card {
  background: linear-gradient(160deg, rgb(200 244 90 / 14%), rgb(251 247 238 / 70%));
  border-color: rgb(200 244 90 / 40%);
}

.free-card-badge {
  display: inline-block;
  margin: 8px 0;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  font-size: 11.5px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.best-value-ribbon {
  position: absolute;
  top: 14px;
  right: -28px;
  padding: 5px 36px;
  background: var(--lime);
  color: var(--ink);
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transform: rotate(40deg);
}

.price-card.featured {
  color: var(--cream);
  background: linear-gradient(155deg, var(--ink), var(--moss));
  border-color: rgb(200 244 90 / 22%);
}

.price-card .card-label-area {
  min-height: 52px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 6px;
}

.price-card h3 {
  margin-top: 10px;
  font-family: var(--serif);
  font-size: clamp(32px, 3.2vw, 38px);
  font-weight: 650;
  font-variation-settings: "SOFT" 70;
  line-height: 0.95;
}

.price-card h3 span {
  color: rgb(27 35 32 / 55%);
  font-family: var(--sans);
  font-size: 15px;
}

.price-card.featured .mini-label,
.price-card.featured h3 span {
  color: var(--lime);
}

.price-card.featured p {
  color: rgb(251 247 238 / 72%);
}

.price-feature-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: grid;
  gap: 7px;
  flex: 1;
}

.price-feature-list li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 13px;
  font-weight: 650;
  color: rgb(27 35 32 / 75%);
}

.price-feature-list li::before {
  content: "✓";
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  font-size: 10px;
  font-weight: 900;
  margin-top: 1px;
}

.price-card.featured .price-feature-list li {
  color: rgb(251 247 238 / 72%);
}

.price-card .button {
  width: 100%;
  margin-top: 20px;
  flex-shrink: 0;
}

.pricing-footnote {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  color: rgb(27 35 32 / 52%);
  font-size: 13px;
  text-align: center;
}

/* ─── FAQ ─── */
.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq-grid details {
  padding: 20px;
}

.faq-grid summary {
  cursor: pointer;
  font-size: 17px;
  font-weight: 750;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

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

.faq-grid summary::after {
  content: "+";
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgb(46 74 58 / 10%);
  color: var(--moss);
  font-size: 18px;
  font-weight: 400;
  transition: transform 0.2s ease;
}

.faq-grid details[open] summary::after {
  transform: rotate(45deg);
}

/* --- SUPPORT PAGE --- */
.support-section {
  margin-bottom: 34px;
}

.support-hero-card,
.support-form-card {
  display: grid;
  gap: 28px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgb(251 247 238 / 66%);
  box-shadow: 0 20px 60px -52px var(--ink);
}

.support-hero-card {
  grid-template-columns: minmax(0, 1fr) auto;
  padding: clamp(28px, 5vw, 52px);
  background:
    linear-gradient(135deg, rgb(200 244 90 / 14%), transparent 34rem),
    rgb(251 247 238 / 72%);
}

.support-hero-card h2,
.support-form-card h2 {
  margin: 12px 0 0;
  font-family: var(--serif);
  font-size: clamp(26px, 2.8vw, 38px);
  font-weight: 600;
  font-variation-settings: "SOFT" 70;
  line-height: 0.98;
}

.support-hero-card p:not(.eyebrow),
.support-form-heading p {
  max-width: 720px;
  margin: 14px 0 0;
  color: rgb(27 35 32 / 76%);
  font-size: 16px;
  line-height: 1.6;
}

.support-hero-card a:not(.button),
.support-form-note a,
.support-card a,
.support-topic a {
  color: var(--moss);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.support-form-card {
  scroll-margin-top: 110px;
  padding: clamp(22px, 4vw, 36px);
  background:
    linear-gradient(135deg, rgb(200 244 90 / 16%), transparent 32rem),
    rgb(251 247 238 / 74%);
}

.support-form-heading {
  max-width: 720px;
}

.support-form {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.support-form-group {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.support-form label {
  display: grid;
  gap: 8px;
  color: rgb(27 35 32 / 78%);
  font-size: 13px;
  font-weight: 850;
}

.support-form label span {
  color: rgb(27 35 32 / 48%);
  font-size: 12px;
  font-weight: 750;
}

.support-form input,
.support-form select,
.support-form textarea {
  width: 100%;
  border: 1px solid rgb(14 20 18 / 16%);
  border-radius: 8px;
  background: rgb(255 255 255 / 62%);
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.support-form input,
.support-form select {
  min-height: 48px;
  padding: 0 14px;
}

.support-form textarea {
  min-height: 132px;
  padding: 13px 14px;
  resize: vertical;
}

.support-form input:focus,
.support-form select:focus,
.support-form textarea:focus {
  border-color: rgb(46 74 58 / 58%);
  background: rgb(255 255 255 / 84%);
  box-shadow: 0 0 0 4px rgb(200 244 90 / 24%);
}

.support-form button {
  justify-self: start;
  cursor: pointer;
}

.support-form button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.support-form-actions {
  display: flex;
  gap: 14px;
  align-items: center;
}

.support-form-note {
  margin: 0;
  color: rgb(27 35 32 / 62%);
  font-size: 14px;
  font-weight: 650;
}

.form-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-success,
.form-error {
  margin: 20px 0 0;
  padding: 13px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
}

.form-success {
  border: 1px solid rgb(46 74 58 / 20%);
  background: rgb(200 244 90 / 20%);
  color: var(--moss);
}

.form-error {
  border: 1px solid rgb(255 107 53 / 28%);
  background: rgb(255 107 53 / 10%);
  color: rgb(111 42 18);
}

.form-error a {
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.support-contact-grid,
.support-topic-grid {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.support-contact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.support-card,
.support-topic {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgb(251 247 238 / 64%);
}

.support-card {
  min-height: 250px;
  padding: 24px;
}

.support-card-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  border-radius: 12px;
  color: var(--ink);
  background: var(--lime);
  font-family: var(--mono);
  font-size: 18px;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgb(14 20 18 / 10%);
}

.support-card:nth-child(2) .support-card-icon {
  background: var(--sky);
}

.support-card:nth-child(3) .support-card-icon {
  background: var(--tangerine);
}

.support-card h3,
.support-topic h3 {
  margin-top: 8px;
}

.support-card p:not(.mini-label),
.support-topic p:not(.mini-label) {
  margin: 9px 0 0;
  color: rgb(27 35 32 / 76%);
  line-height: 1.55;
}

.support-card > a {
  display: inline-block;
  margin-top: 18px;
}

.support-topic {
  padding: 24px;
}

.support-topic h3::before {
  display: block;
  width: 34px;
  height: 3px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: var(--moss);
  content: "";
}

.support-topic:nth-child(2n) h3::before {
  background: var(--tangerine);
}

.support-topic:nth-child(3n) h3::before {
  background: var(--sky);
}

/* ─── FINAL CTA ─── */
.final-cta {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  width: var(--page-width);
  margin: 0 auto 76px;
  padding: clamp(30px, 5vw, 52px);
  border-radius: 12px;
  color: var(--cream);
  background:
    linear-gradient(135deg, rgb(255 107 53 / 18%), transparent 36%),
    linear-gradient(145deg, var(--moss), var(--ink));
}

.final-cta .eyebrow {
  color: var(--lime);
}

.final-cta h2 {
  max-width: 680px;
  margin-top: 12px;
  font-size: clamp(28px, 3vw, 38px);
}

.final-cta-sub {
  margin: 14px 0 0 !important;
  color: rgb(251 247 238 / 68%) !important;
  font-size: 17px;
  max-width: 520px;
}

.final-cta-actions {
  flex-shrink: 0;
  text-align: center;
}

.final-cta .button.primary {
  color: var(--ink);
  background: var(--lime);
  white-space: nowrap;
}

.final-cta-note {
  margin: 12px 0 0 !important;
  font-size: 12px !important;
  color: rgb(251 247 238 / 50%) !important;
}

/* ─── FOOTER ─── */
.footer-disclaimer {
  width: var(--page-width);
  margin: 36px auto 0;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgb(251 247 238 / 60%);
  color: rgb(27 35 32 / 70%);
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
}

footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  width: var(--page-width);
  margin: 14px auto 0;
  padding: 28px 0 42px;
  border-top: 1px solid var(--line);
}

footer .brand {
  font-size: 22px;
}

footer .brand-icon {
  width: 32px;
  height: 32px;
}

footer p {
  margin: 0;
  font-size: 14px;
}

footer div {
  display: flex;
  gap: 14px;
  color: rgb(27 35 32 / 72%);
  font-size: 14px;
  font-weight: 650;
}

/* ─── REVEAL ANIMATIONS ─── */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.js-reveal-ready .reveal {
  opacity: 0;
  transform: translateY(18px);
}

.js-reveal-ready .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1020px) {
  .price-cards,
  .support-contact-grid {
    grid-template-columns: 1fr;
  }

  .pricing-section,
  .support-hero-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .announcement-bar {
    font-size: 12px;
    padding: 8px 14px;
  }

  .site-header {
    position: sticky;
    grid-template-columns: minmax(0, 1fr) auto auto;
    border-radius: 24px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: grid;
    gap: 4px;
    justify-content: stretch;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgb(251 247 238 / 96%);
    box-shadow: 0 20px 50px -34px var(--ink);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.16s ease, transform 0.16s ease;
    backdrop-filter: blur(18px);
  }

  .site-header.nav-open .nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav a {
    padding: 13px 14px;
    border-radius: 10px;
  }

  .nav a:hover,
  .nav a[aria-current="page"] {
    background: rgb(46 74 58 / 10%);
  }

  .hero,
  .section-heading,
  .calculator-section,
  .included-card,
  .competitor-card,
  .product-section,
  .support-topic-grid,
  footer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

  .savings-equation {
    max-width: none;
  }

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

  .pricing-section {
    padding: 26px;
    grid-template-columns: 1fr;
  }

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

  footer {
    justify-items: start;
  }
}

@media (max-width: 640px) {
  :root {
    --page-width: calc(100% - 24px);
  }

  .announcement-bar {
    display: block;
    font-size: 11.5px;
    text-align: center;
    line-height: 1.25;
  }

  .announcement-dot {
    margin-right: 8px;
  }

  .site-header {
    gap: 10px;
    margin-top: 10px;
    padding: 8px 8px 8px 10px;
  }

  .brand {
    min-width: 0;
    font-size: 19px;
  }

  .brand span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand-icon {
    width: 32px;
    height: 32px;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 13px;
  }

  .header-cta svg {
    display: none;
  }

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

  .support-form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .support-form button {
    width: 100%;
  }

  .eyebrow,
  .mini-label {
    font-size: 11px;
    letter-spacing: 0.05em;
    line-height: 1.35;
  }

  .hero {
    padding-top: 38px;
  }

  .hero h1 {
    font-size: clamp(36px, 10vw, 44px);
  }

  .home-product-intro h1 {
    font-size: clamp(30px, 8vw, 34px);
  }

  .subpage-hero h1 {
    font-size: clamp(34px, 10vw, 42px);
  }

  .hero h1 br {
    display: none;
  }

  .savings-equation {
    grid-template-columns: 1fr;
  }

  .savings-equation > div {
    min-height: 120px;
  }

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

  .landing-billboard {
    margin: 20px auto 0;
  }

  .landing-billboard img {
    height: auto;
  }

  .app-download-band {
    gap: 18px;
    align-items: start;
    flex-direction: column;
    margin-bottom: 44px;
    padding: 18px 0 22px;
  }

  .app-download-copy h2 {
    font-size: 26px;
  }

  .app-download-actions {
    width: 100%;
  }

  .app-store-badge img {
    width: 140px;
  }

  .app-store-qr {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .phone {
    width: min(316px, 100%);
  }

  .phone-screen {
    min-height: 650px;
  }

  .try-free-stamp {
    top: -14px;
    right: -14px;
    width: 76px;
    height: 76px;
  }

  .try-free-stamp {
    right: 0;
    bottom: 30px;
    width: 82px;
    height: 82px;
  }

  .savings-billboard {
    top: 18px;
    width: 200px;
  }

  .app-top h2 {
    font-size: 48px;
  }

  .route-map {
    height: 180px;
  }

  .roi-grid,
  .driver-grid,
  .feature-list,
  .comparison,
  .competitor-card,
  .price-cards,
  .faq-grid,
  .calc-results {
    grid-template-columns: 1fr;
  }

  .feature-table {
    overflow-x: auto;
  }

  .feature-row {
    grid-template-columns: 200px 155px 215px;
    min-width: 570px;
  }

  .price-divider {
    min-height: 28px;
  }

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

  .report-screen button {
    margin-top: 100px;
  }

  .trust-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .trust-separator {
    display: none;
  }
}

@media (max-width: 360px) {
  .brand span {
    display: none;
  }
}
