/* =========================================================
   Local Notion — design tokens
   ========================================================= */
:root {
  /* palette */
  --ink: #2a1b12;
  --ink-soft: #6b5443;
  --ink-faint: #b9a88f;
  --paper: #C2B280;
  --paper-card: #C2B280;
  --paper-alt: #C2B280;
  --ring-cream: #efe0c4;
  --border-muted: #c9b79b;

  --accent: #b34a1f; /* burnt orange — primary */
  --accent-deep: #8f3a17;
  --terracotta: #d4622c;
  --mustard: #e3a72f;
  --mustard-text: #4a3524;
  --gold: #b4841a;
  --dusty-rose: #d98873;
  --teal: #2c7a85;
  --teal-tint: #a8dce2;
  --teal-tint-soft: #dceef1;
  --teal-tint-softer: #d6edf0;
  --sage: #4e9e82;
  --sage-bg: #eaf3ee;
  --sage-ink: #123a2c;
  --gold-bg: #fbebd5;

  /* type */
  --font-display: "Chicle", Georgia, serif;
  --font-body: "Tilt Neon", "Trebuchet MS", system-ui, sans-serif;

  /* layout */
  --max: 75rem;
  --space: clamp(1.25rem, 5vw, 7.5rem);
  --space-section: clamp(3rem, 8vh, 6rem);
  --radius-card: 22px;
  --radius-pill: 999px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  /* shadows (offset "sticker" shadow used everywhere) */
  --shadow-sm: 3px 3px 0 var(--ink);
  --shadow-md: 5px 5px 0 var(--ink);
  --shadow-lg: 7px 7px 0 var(--ink);
  --shadow-xl: 9px 9px 0 var(--ink);
}

/* =========================================================
   Reset & base
   ========================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.55;
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

/* subtle grain over the whole page */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

.page {
  position: relative;
  z-index: 1;
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

a:hover {
  color: var(--teal);
}

svg {
  flex-shrink: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.005em;
  margin: 0;
}

p {
  margin: 0;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.85rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
}

.section-head {
  max-width: 45rem;
  margin: 0 0 clamp(2.25rem, 5vw, 3.25rem);
}

.section-head h2 {
  font-size: clamp(1.8rem, 4.2vw, 2.9rem);
  line-height: 1.1;
}

/* =========================================================
   Layout helpers
   ========================================================= */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--space);
  padding-right: var(--space);
}

.section {
  padding-top: var(--space-section);
  padding-bottom: var(--space-section);
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 3.3rem;
  padding: 0.9rem 1.7rem;
  border: 3px solid var(--ink);
  border-radius: var(--radius-pill);
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition:
    transform 0.2s var(--ease),
    box-shadow 0.2s var(--ease),
    background-color 0.2s var(--ease);
}

.btn:hover {
  color: var(--ink);
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--ink);
}

.btn:active {
  transform: translate(0, 0);
  box-shadow: 2px 2px 0 var(--ink);
}

.btn--accent {
  background: var(--accent);
  color: var(--paper);
}

.btn--sm {
  min-height: 2.9rem;
  padding: 0.7rem 1.4rem;
  border-width: 2px;
  box-shadow: var(--shadow-sm);
}

.btn--sm:hover {
  box-shadow: 5px 5px 0 var(--ink);
}

.btn--block {
  width: 100%;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1rem;
}

/* =========================================================
   Icon sprite helpers
   ========================================================= */
.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  flex-shrink: 0;
}

.icon--spin {
  animation: ln-spin 22s linear infinite;
}

@keyframes ln-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* =========================================================
   Header / nav
   ========================================================= */
.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem var(--space);
  border-bottom: 2px solid var(--ink);
  background: var(--paper);
}

.nav-logo img {
  width: clamp(7.5rem, 14vw, 9rem);
  height: auto;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2.25rem;
}

.nav-links a {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 600;
}

.nav-links a:hover {
  color: var(--teal);
}

.nav-cta {
  display: none;
}

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.9rem;
  height: 2.9rem;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--paper);
  cursor: pointer;
}

.nav-toggle .icon-close {
  display: none;
}

.nav-toggle[aria-expanded="true"] .icon-burger {
  display: none;
}

.nav-toggle[aria-expanded="true"] .icon-close {
  display: block;
}

.nav-panel {
  display: none;
  flex-direction: column;
  gap: 0.9rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.1rem var(--space) 1.4rem;
  background: var(--paper);
  border-bottom: 2px solid var(--ink);
}

.nav-panel.is-open {
  display: flex;
}

.nav-panel a {
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 700;
}

@media (min-width: 880px) {
  .nav-links {
    display: flex;
  }

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

  .nav-toggle,
  .nav-panel {
    display: none !important;
  }

  .nav-links-inline {
    display: flex;
    align-items: center;
    gap: 2.25rem;
  }
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(2.25rem, 8vh, 5.75rem);
  padding-bottom: clamp(2.75rem, 9vh, 6.5rem);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  top: clamp(8rem, 24vw, 2.5rem);
  right: clamp(-8rem, -18vw, -4rem);
  width: clamp(18rem, 46vw, 34.5rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    var(--accent) 0% 28%,
    var(--terracotta) 28% 46%,
    var(--mustard) 46% 64%,
    var(--dusty-rose) 64% 82%,
    var(--ring-cream) 82% 100%
  );
}

.hero .wrap {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(2rem, 6vw, 4.5rem);
  align-items: center;
}

@media (min-width: 960px) {
  .hero .wrap {
    grid-template-columns: 1fr minmax(360px, 26rem);
  }

  .hero-mock-wrap {
    justify-self: end;
  }
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(1.1rem, 2.5vw, 1.6rem);
}

.hero-copy h1 {
  max-width: 14ch;
  font-size: clamp(2.3rem, 5.5vw, 4.1rem);
  line-height: 1.05;
  text-wrap: balance;
}

.hero-copy h1 .accent {
  color: var(--accent);
}

.hero-copy .lede {
  max-width: 32rem;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.6;
  color: var(--ink-soft);
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.hero-mock-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 26rem;
}

/* =========================================================
   Device / mock-card component (reused in hero + product demo)
   ========================================================= */
.device-card {
  position: relative;
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  padding: 1.35rem;
}

.device-card--dome {
  border-radius: clamp(120px, 30vw, 250px) clamp(120px, 30vw, 250px) 22px 22px;
  padding-top: clamp(2.25rem, 6vw, 3.4rem);
}

.device-card__eyebrow {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.35rem;
}

.device-card__title {
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ink);
  margin-bottom: 1.1rem;
}

.mini-calendar {
  background: var(--paper-card);
  border: 2px solid var(--ink);
  border-radius: 18px;
  padding: 1rem;
}

.mini-calendar__dow,
.mini-calendar__days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.4rem;
}

.mini-calendar__dow {
  margin-bottom: 0.5rem;
}

.mini-calendar__dow span {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--ink-soft);
}

.mini-calendar__days span {
  height: 2.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
}

.mini-calendar__days span.is-muted {
  color: var(--ink-faint);
}

.mini-calendar__days span.is-selected {
  font-weight: 800;
  color: var(--paper);
  background: var(--accent);
  border: 2px solid var(--ink);
  border-radius: 50%;
}

.time-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.5rem;
  margin-top: 0.9rem;
}

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

.time-chip {
  text-align: center;
  padding: 0.7rem 0.3rem;
  min-height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
  background: var(--paper-card);
  border: 2px solid var(--ink);
  border-radius: var(--radius-pill);
}

.time-chip.is-selected {
  background: var(--mustard);
  box-shadow: 3px 3px 0 var(--ink);
}

.time-chip.is-disabled {
  color: var(--ink-faint);
  background: var(--paper-alt);
  border-color: var(--border-muted);
}

.mock-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.9rem;
  padding: 0.75rem 1rem;
  background: var(--sage-bg);
  border: 2px solid var(--sage);
  border-radius: 14px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
}

.mock-note strong {
  color: var(--teal);
}

.mock-cta {
  margin-top: 0.9rem;
  text-align: center;
  padding: 0.95rem;
  min-height: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  color: var(--paper);
  background: var(--accent);
  border: 2px solid var(--ink);
  border-radius: var(--radius-pill);
}

/* =========================================================
   Marquee
   ========================================================= */
.marquee {
  overflow: hidden;
  background: var(--terracotta);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  padding: 0.85rem 0;
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: ln-marquee 26s linear infinite;
}

.marquee__group {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  padding-right: 1.6rem;
}

.marquee__group span {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.25rem);
  color: var(--ink);
  white-space: nowrap;
}

@keyframes ln-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* =========================================================
   Trust strip
   ========================================================= */
.trust {
  background: var(--paper-alt);
  border-bottom: 2px solid var(--ink);
  padding: clamp(1.6rem, 4vw, 2.5rem) 0;
  text-align: center;
}

.trust__label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 1.1rem;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}

.tag {
  padding: 0.6rem 1.3rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--radius-pill);
}

/* =========================================================
   Who it's for — audience cards
   ========================================================= */
.audience-grid {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: 1fr;
}

.audience-card {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  padding: 1.4rem;
}

.audience-card__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.6rem;
}

.audience-card__icon {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 2px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
}

.audience-card h3 {
  font-size: 1.2rem;
}

.audience-card p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

@media (min-width: 640px) {
  .audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .audience-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.75rem;
  }

  .audience-card {
    padding: 1.75rem;
  }

  .audience-card__head {
    display: block;
  }

  .audience-card__icon {
    width: 3.25rem;
    height: 3.25rem;
    margin-bottom: 1.1rem;
  }

  .audience-card h3 {
    font-size: 1.375rem;
  }

  .audience-card p {
    font-size: 1rem;
  }
}

/* =========================================================
   How it works — steps
   ========================================================= */
.steps-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

.step-card {
  background: var(--ring-cream);
  border: 3px solid var(--ink);
  border-radius: clamp(120px, 25vw, 200px) clamp(120px, 25vw, 200px) 20px 20px;
  box-shadow: var(--shadow-lg);
  padding: clamp(2.1rem, 5vw, 3.25rem) clamp(1.5rem, 4vw, 2rem) clamp(1.6rem, 3vw, 2.25rem);
  text-align: center;
}

.step-card__num {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 3.9rem);
  line-height: 1;
  margin-bottom: 0.6rem;
}

.step-card h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  margin-bottom: 0.6rem;
}

.step-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

@media (min-width: 900px) {
  .steps-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
  }
}

/* =========================================================
   Product demo / showcase
   ========================================================= */
.showcase-grid {
  display: grid;
  gap: clamp(2.5rem, 5vw, 3.5rem);
  grid-template-columns: 1fr;
  align-items: start;
}

.showcase figcaption {
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-top: 1.25rem;
}

.showcase figcaption strong {
  color: var(--ink);
}

.list-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  background: var(--paper-card);
  border: 2px solid var(--ink);
  border-radius: 14px;
}

.list-row + .list-row {
  margin-top: 0.6rem;
}

.list-row.is-highlighted {
  background: var(--mustard);
  box-shadow: 3px 3px 0 var(--ink);
}

.list-row__title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--ink);
}

.list-row__meta {
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-top: 0.15rem;
}

.list-row__price {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--accent);
}

.owner-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.owner-head__day {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.owner-head__date {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--ink);
  margin-top: 0.2rem;
}

.badge-row {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.badge {
  padding: 0.5rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--ink);
  border: 2px solid;
  border-radius: var(--radius-pill);
}

.badge--sage {
  background: var(--sage-bg);
  border-color: var(--sage);
}

.badge--gold {
  background: var(--gold-bg);
  border-color: var(--gold);
}

.schedule {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.schedule-row {
  display: grid;
  grid-template-columns: 3.25rem 1fr;
  gap: 0.75rem;
  align-items: center;
}

.schedule-row__time {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--ink-soft);
}

.schedule-row__slot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--ink);
}

.schedule-row__slot span:last-child {
  font-weight: 700;
  font-size: 0.8rem;
}

.schedule-row__slot.is-open {
  background: var(--paper-card);
  border: 2px dashed var(--border-muted);
  font-weight: 400;
  color: var(--ink-faint);
}

.schedule-row__slot.is-sage {
  background: var(--sage);
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-sm);
}

.schedule-row__slot.is-mustard {
  background: var(--mustard);
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-sm);
}

.schedule-row__slot.is-teal {
  background: var(--teal);
  color: var(--paper);
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-sm);
}

@media (min-width: 900px) {
  .showcase-grid {
    grid-template-columns: 26rem 1fr;
  }
}

/* =========================================================
   Why local (teal band)
   ========================================================= */
.wave {
  display: block;
  width: 100%;
  height: clamp(28px, 5vw, 54px);
}

.wave--flip {
  transform: rotate(180deg);
}

.why-local {
  background: var(--teal);
  padding: clamp(1.5rem, 5vw, 2.5rem) 0 clamp(2.5rem, 7vw, 5.5rem);
}

.why-local .eyebrow {
  color: var(--teal-tint);
}

.why-local .section-head h2 {
  color: var(--paper);
}

.why-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

.why-item {
  display: grid;
  grid-template-columns: 1.75rem 1fr;
  gap: 0.9rem;
  align-items: start;
}

.why-item h3 {
  font-size: 1.25rem;
  color: var(--paper);
  margin-bottom: 0.4rem;
}

.why-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--teal-tint-soft);
}

@media (min-width: 760px) {
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.75rem 3.25rem;
  }
}

/* =========================================================
   Pricing
   ========================================================= */
.price-grid {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: 1fr;
}

.price-card {
  position: relative;
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: clamp(90px, 20vw, 170px) clamp(90px, 20vw, 170px) 20px 20px;
  box-shadow: var(--shadow-lg);
  padding: clamp(2rem, 4vw, 2.9rem) clamp(1.5rem, 3vw, 2rem) clamp(1.6rem, 3vw, 2.15rem);
}

.price-card--featured {
  background: var(--mustard);
  box-shadow: var(--shadow-xl);
}

.price-card--featured p,
.price-card--featured .price-card__period {
  color: var(--mustard-text);
}

.price-card__ribbon {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  padding: 0.5rem 1.25rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--accent);
  border: 2px solid var(--ink);
  border-radius: var(--radius-pill);
}

.price-card__head {
  text-align: center;
  margin-bottom: 1.1rem;
}

.price-card__head h3 {
  font-size: 1.7rem;
  margin-bottom: 0.35rem;
}

.price-card__head p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}

.price-card__amount {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--accent);
}

.price-card--featured .price-card__amount {
  color: var(--ink);
}

.price-card__period {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink-soft);
}

.price-card__features {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin: 1.2rem 0 0;
}

.price-card__features li {
  display: grid;
  grid-template-columns: 1.1rem 1fr;
  gap: 0.6rem;
  align-items: start;
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--ink);
}

.price-card__features .icon {
  margin-top: 0.2rem;
}

.price-card .btn {
  margin-top: 1.5rem;
  width: 100%;
}

.pricing-note {
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin-top: clamp(1.5rem, 3vw, 2.15rem);
}

@media (min-width: 900px) {
  .price-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.85rem;
    align-items: start;
  }
}

/* =========================================================
   Testimonial
   ========================================================= */
.testimonial {
  background: var(--paper-alt);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  text-align: center;
}

.testimonial__mark {
  margin: 0 auto 1.1rem;
}

.testimonial blockquote {
  max-width: 58rem;
  margin: 0 auto;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  line-height: 1.32;
  color: var(--ink);
  text-wrap: balance;
}

.testimonial__name {
  margin-top: 1.4rem;
  font-size: 1rem;
  font-weight: 800;
  color: var(--ink);
}

.testimonial__meta {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-top: 0.15rem;
}

/* =========================================================
   Final CTA
   ========================================================= */
.cta-final {
  background: var(--accent);
  padding: clamp(2.75rem, 7vw, 5.25rem) 0;
  text-align: center;
}

.cta-final h2 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  color: var(--paper);
  margin-bottom: 1rem;
}

.cta-final__lede {
  max-width: 40rem;
  margin: 0 auto clamp(1.5rem, 3vw, 2.1rem);
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  line-height: 1.6;
  color: #fbe4d3;
}

.cta-final .btn-row {
  justify-content: center;
}

.cta-final .btn {
  background: var(--paper);
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: var(--paper);
  border-top: 3px solid var(--ink);
  padding: clamp(2.25rem, 5vw, 3.25rem) 0 clamp(1.75rem, 3vw, 2.5rem);
}

.footer-grid {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: 1fr;
  padding-bottom: clamp(1.5rem, 4vw, 2.15rem);
}

.footer-brand img {
  width: 7.5rem;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  max-width: 18rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

.footer-col h3 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.9rem;
}

.footer-col-links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-col-links a,
.footer-col-links span {
  font-size: 0.95rem;
  color: var(--ink);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  border-top: 2px solid var(--ink);
  padding-top: 1.35rem;
}

.footer-bottom span:first-child {
  font-size: 0.875rem;
  color: var(--ink-soft);
}

.footer-bottom span:last-child {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--teal);
}

@media (min-width: 640px) {
  .footer-col-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem 1.25rem;
  }
}

@media (min-width: 900px) {
  .footer-grid {
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 2.5rem;
  }

  .footer-col-links {
    display: flex;
    flex-direction: column;
  }
}

/* =========================================================
   Scroll reveal
   ========================================================= */
/* Only animate-in when JS is actually running (see the has-js class set
   in <head>) — otherwise .reveal content stays visible by default so it's
   never stranded invisible for no-JS visitors or if the script errors. */
.has-js .reveal {
  opacity: 0;
  transform: translateY(1rem);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}

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

.audience-grid .reveal:nth-child(2),
.steps-grid .reveal:nth-child(2),
.price-grid .reveal:nth-child(2) {
  transition-delay: 0.06s;
}

.audience-grid .reveal:nth-child(3),
.steps-grid .reveal:nth-child(3),
.price-grid .reveal:nth-child(3) {
  transition-delay: 0.12s;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .marquee__track,
  .icon--spin {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn:hover {
    transform: none;
  }
}
