/* ==========================================================================
   Novvy — marketing site styles
   Design tokens first, then base, then sections (top to bottom of the page).
   Desktop values are exact to the design; media queries at the end add
   responsive behaviour without changing the desktop look.
   ========================================================================== */

:root {
  /* Brand green */
  --green: #10B36B;
  --green-hover: #0d9459;
  --green-bright: #3DDC97;

  /* Ink / text */
  --ink: #0E1A12;
  --ink-strong: #26332b;
  --body: #4a5a50;
  --muted: #7a8a80;
  --faint: #9aa89e;
  --nav-text: #3f4d44;

  /* Backgrounds */
  --cream: #F6F8F4;
  --white: #ffffff;
  --tint: #f7faf4;
  --inset: #eef2ea;

  /* Borders */
  --border: #e4e9dd;
  --divider: #eef2ea;
  --divider-2: #f2f5ee;

  /* Green tints */
  --green-fill: #eaf7f0;
  --green-border: #c7ead8;

  /* Dark surfaces */
  --dark-base: #0E1A12;
  --dark-card: #16241b;
  --footer-bg: #0a130d;
  --footer-divider: #1a271f;
  --dark-border: #24352a;
  --on-dark: #e6efe9;
  --on-dark-muted: #a9bcae;
  --on-dark-soft: #8fa89a;
  --on-dark-label: #5f746a;
  --on-dark-link: #c2d2c9;

  /* Amber (pending) */
  --amber-fill: #fff4e6;
  --amber-text: #E8710A;
  --amber-border: #f1dfc0;

  /* Platform swatches */
  --google: #4285F4;
  --meta: #0866FF;
  --analytics: #E8710A;
  --microsoft: #00A4EF;
  --linkedin: #0A66C2;

  /* Type */
  --display: 'Bricolage Grotesque', sans-serif;
  --sans: 'Figtree', sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Layout */
  --container: 1160px;
  --gutter: 32px;

  /* Radii */
  --r-pill: 100px;
  --r-card: 20px;
  --r-mock: 16px;

  /* Shadows (green-tinted) */
  --shadow-hero: 0 40px 80px -34px rgba(16, 179, 107, .45);
  --shadow-mock: 0 24px 48px -28px rgba(16, 179, 107, .4);
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: var(--green); }
a:hover { color: var(--green-hover); }

img, svg { display: block; max-width: 100%; }

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* Visually-hidden helper for accessible labels */
.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;
}

/* ---------- Buttons / pills ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-family: var(--sans);
  cursor: pointer;
  border: 0;
  line-height: 1;
  transition: background-color .15s ease, color .15s ease, transform .15s ease;
}
.btn:hover { transform: translateY(-1px); }

.btn--green { background: var(--green); color: #fff; }
.btn--green:hover { background: var(--green-hover); color: #fff; }

.btn--ink { background: var(--ink); color: #fff; }
.btn--ink:hover { background: #1a2b20; color: #fff; }

.btn--nav { padding: 11px 22px; font-size: 15px; font-weight: 600; }
.btn--hero { padding: 17px 32px; font-size: 17px; }
.btn--cta { padding: 18px 34px; font-size: 17px; }

/* ============================ HEADER ============================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 248, 244, .82);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  padding-top: 16px;
  padding-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wordmark {
  font-family: var(--display);
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 15px;
  font-weight: 500;
}
.nav-link { color: var(--nav-text); }
.nav-link:hover { color: var(--ink); }
.nav-login { color: var(--ink); font-weight: 600; }
.nav-login:hover { color: var(--ink); }

/* ============================ HERO ============================ */
.hero {
  padding: 72px var(--gutter) 40px;
  text-align: center;
}
.hero__inner { max-width: 900px; margin: 0 auto; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 17px;
  border-radius: var(--r-pill);
  background: var(--green);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}
.badge--bright { background: var(--green-bright); color: var(--ink); }

.hero h1 {
  font-family: var(--display);
  font-size: clamp(40px, 8.2vw, 74px);
  line-height: 1.0;
  letter-spacing: -0.04em;
  font-weight: 800;
  color: var(--ink);
  margin: 24px 0 20px;
}
.hero h1 .accent { color: var(--green); }

.hero__sub {
  font-size: 20px;
  line-height: 1.5;
  color: var(--body);
  margin: 0 auto 32px;
  max-width: 600px;
}
.hero__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.hero__caption {
  font-size: 14px;
  color: var(--muted);
  margin: 20px 0 0;
}

/* Browser-frame product mock (shared) */
.browser {
  border-radius: var(--r-card);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--cream);
  text-align: left;
}
.browser__bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 15px;
  background: var(--inset);
  border-bottom: 1px solid var(--border);
}
.dots { display: flex; gap: 6px; }
.dots span {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: #d3dccb;
}
.address {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 7px 13px;
}
.address span {
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--body);
}

.hero__mock {
  max-width: 600px;
  margin: 44px auto 0;
  box-shadow: var(--shadow-hero);
}
.connect { background: var(--cream); padding: 28px 24px 24px; }
.connect__head { text-align: center; margin-bottom: 22px; }
.agency-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
  font-size: 24px;
  font-family: var(--display);
  margin-bottom: 14px;
}
.connect__title {
  font-family: var(--display);
  font-weight: 800;
  font-size: 26px;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.connect__desc { font-size: 14px; color: var(--muted); margin-top: 8px; }

.trust-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 11px 14px;
  margin-bottom: 16px;
}
.trust-row span {
  font-size: 13px;
  color: var(--ink-strong);
  line-height: 1.4;
}

.progress-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--body);
}
.progress {
  height: 6px;
  background: var(--inset);
  border-radius: var(--r-pill);
  overflow: hidden;
  margin-bottom: 16px;
}
.progress__fill { height: 100%; width: 50%; background: var(--green); }

.rows { display: flex; flex-direction: column; gap: 10px; }

/* platform row inside a mock */
.prow {
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 14px;
  padding: 13px 15px;
  background: #fff;
  border: 1px solid var(--border);
}
.prow--done { background: var(--green-fill); border-color: var(--green-border); }
.swatch { border-radius: 9px; flex-shrink: 0; }
.swatch--lg { width: 34px; height: 34px; }
.prow__body { min-width: 0; flex: 1; }
.prow__name { font-size: 15px; font-weight: 600; color: var(--ink); }
.prow__meta { font-size: 12.5px; color: var(--muted); }
.prow__meta--ok { color: var(--green); }
.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  border-radius: var(--r-pill);
  background: var(--green);
  flex-shrink: 0;
}
.pill-connect {
  padding: 9px 18px;
  background: var(--ink);
  border-radius: var(--r-pill);
  color: #fff;
  font-size: 13.5px;
  font-weight: 700;
  flex-shrink: 0;
}
.secured {
  text-align: center;
  margin-top: 18px;
  font-size: 12px;
  color: var(--faint);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

/* ============================ WORKS WITH ============================ */
.works { padding: 8px var(--gutter) 24px; }
.works__inner { text-align: center; padding: 40px 0; }
.works__label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--body);
  margin-bottom: 20px;
}
.chips {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 9px 15px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-strong);
}
.chip .swatch { width: 20px; height: 20px; border-radius: 6px; }

/* ============================ SECTION HEADING ============================ */
.section { padding: 90px var(--gutter); scroll-margin: 70px; }
.section--pad96 { padding: 96px var(--gutter); }

.section-head {
  max-width: 640px;
  margin: 0 auto 52px;
  text-align: center;
}
.eyebrow {
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.section-head h2 {
  font-family: var(--display);
  font-size: clamp(34px, 5.4vw, 48px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: var(--ink);
  margin: 12px 0 0;
}
.section-head h2.mt-tight + .section-head__sub { margin-top: 14px; }
.section-head__sub {
  font-size: 18px;
  line-height: 1.5;
  color: var(--body);
  margin: 14px 0 0;
}

/* ============================ HOW IT WORKS ============================ */
.step {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 52px;
  align-items: center;
  margin-bottom: 160px;
}
.step--reverse { grid-template-columns: 1.1fr .9fr; }
.step:last-child { margin-bottom: 0; }

.step-num {
  display: inline-block;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  text-align: center;
  line-height: 36px;
  font-weight: 700;
  font-family: var(--display);
}
.step h3 {
  font-family: var(--display);
  font-size: 30px;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--ink);
  margin: 16px 0 10px;
}
.step p {
  font-size: 17px;
  color: var(--body);
  line-height: 1.55;
}

/* Step 1 mock — account picker */
.picker {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-mock);
  padding: 22px;
  box-shadow: var(--shadow-mock);
}
.picker__title { font-weight: 700; color: var(--ink); margin-bottom: 6px; font-size: 15px; }
.picker__hint { font-size: 13px; color: var(--muted); margin-bottom: 14px; }
.picker__rows { display: flex; flex-direction: column; gap: 9px; }
.opt {
  display: flex;
  align-items: center;
  gap: 11px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 11px 13px;
}
.opt--sel { border-color: var(--ink); }
.opt .swatch { width: 26px; height: 26px; border-radius: 7px; }
.opt__body { flex: 1; min-width: 0; }
.opt__name { font-size: 14px; font-weight: 600; color: var(--ink); }
.opt__meta { font-size: 12px; color: var(--muted); }
.opt__check {
  width: 20px; height: 20px;
  border-radius: 6px;
  background: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.opt__check--empty { background: transparent; border: 1.5px solid var(--border); }
.picker__btn {
  margin-top: 14px;
  padding: 12px;
  background: var(--ink);
  border-radius: var(--r-pill);
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
}

/* Step 2 mock — approve page (smaller browser variant) */
.browser--sm { box-shadow: var(--shadow-mock); }
.browser--sm .browser__bar { padding: 10px 14px; }
.browser--sm .dots span { width: 10px; height: 10px; }
.browser--sm .address { padding: 6px 12px; }
.browser--sm .address span { font-size: 12px; }
.approve { background: var(--cream); padding: 24px 22px; }
.approve__head { text-align: center; margin-bottom: 18px; }
.approve .agency-badge {
  width: 40px; height: 40px;
  border-radius: 11px;
  font-size: 19px;
  margin-bottom: 10px;
}
.approve__title {
  font-family: var(--display);
  font-weight: 800;
  font-size: 17px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.approve__desc { font-size: 12.5px; color: var(--muted); margin-top: 2px; }
.approve .rows { gap: 9px; }
.approve .prow { border-radius: 12px; padding: 11px 13px; }
.approve .swatch { width: 30px; height: 30px; border-radius: 8px; }
.approve .prow__name { font-size: 14px; }
.approve .prow__meta { font-size: 12px; }
.approve .check { width: 24px; height: 24px; }
.approve .pill-connect { padding: 8px 16px; font-size: 13px; }
.approve .secured { margin-top: 16px; font-size: 11.5px; }

/* Step 3 mock — dashboard client list */
.dash {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-mock);
  padding: 8px;
  box-shadow: var(--shadow-mock);
}
.dash__head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--divider);
}
.dash__head-title { font-weight: 700; color: var(--ink); font-size: 14px; }
.dash__add {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 13px;
  background: var(--ink);
  border-radius: var(--r-pill);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}
.client {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  border-bottom: 1px solid var(--divider-2);
}
.client:last-child { border-bottom: 0; }
.client__avatar {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: var(--inset);
  color: var(--ink-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  font-family: var(--display);
}
.client__body { flex: 1; min-width: 0; }
.client__name { font-size: 14px; color: var(--ink); font-weight: 700; }
.client__stack { display: flex; gap: 6px; margin-top: 5px; }
.mini-wrap { position: relative; display: inline-flex; }
.mini {
  width: 18px; height: 18px;
  border-radius: 5px;
  display: inline-block;
}
.mini-dot {
  position: absolute;
  right: -3px; bottom: -3px;
  width: 11px; height: 11px;
  border-radius: var(--r-pill);
  background: var(--green);
  border: 2px solid #fff;
}
.status {
  padding: 4px 11px;
  border-radius: var(--r-pill);
  font-size: 11.5px;
  font-weight: 700;
  flex-shrink: 0;
}
.status--ok { background: var(--green-fill); color: var(--green); border: 1px solid var(--green-border); }
.status--pending { background: var(--amber-fill); color: var(--amber-text); border: 1px solid var(--amber-border); }
.status--wait { background: var(--inset); color: var(--body); border: 1px solid var(--border); }

/* ============================ INTEGRATIONS (dark) ============================ */
.integrations { background: var(--dark-base); }
.integrations .section-head h2 { color: #fff; }
.integrations .eyebrow { color: var(--green-bright); }
.integrations .section-head__sub { color: var(--on-dark-muted); }

.int-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.int-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 18px;
  padding: 26px;
}
.int-card__icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: inline-block;
}
.int-card h3 {
  font-family: var(--display);
  font-size: 21px;
  font-weight: 700;
  color: #fff;
  margin: 16px 0 6px;
}
.int-card p {
  font-size: 14.5px;
  color: var(--on-dark-muted);
  line-height: 1.5;
}
.int-card--more {
  background: var(--green);
  border: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.int-card--more h3 { margin: 0 0 6px; }
.int-card--more p { color: #eafff5; margin-bottom: 12px; }
.int-card--more a { font-size: 13.5px; color: #fff; font-weight: 700; }
.int-card--more a:hover { color: #fff; text-decoration: underline; }

/* ============================ PRICING ============================ */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
  max-width: 960px;
  margin: 0 auto;
}
.plan {
  background: var(--ink);
  border-radius: var(--r-card);
  padding: 38px;
  color: #fff;
}
.plan__price {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  margin: 22px 0 6px;
}
.plan__amount {
  font-family: var(--display);
  font-size: 72px;
  font-weight: 800;
  line-height: 1;
}
.plan__per { font-size: 18px; color: var(--on-dark-muted); margin-bottom: 12px; }
.plan__note { font-size: 15px; color: var(--on-dark-muted); margin: 0 0 24px; }
.plan__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.plan__feature {
  display: flex;
  gap: 10px;
  font-size: 15.5px;
  color: var(--on-dark);
}
.plan__feature .tick { color: var(--green-bright); }
.plan__btn {
  display: block;
  padding: 15px;
  background: var(--green);
  border-radius: 12px;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
}
.plan__btn:hover { background: var(--green-hover); color: #fff; }

.explainer {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 38px;
}
.explainer h3 {
  font-family: var(--display);
  font-size: 27px;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 8px;
}
.explainer p {
  font-size: 16px;
  color: var(--body);
  line-height: 1.6;
  margin: 0 0 20px;
}
.explainer b { color: var(--ink); }
.callout {
  background: var(--tint);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
}
.callout__title { font-size: 14px; color: var(--ink); font-weight: 700; margin-bottom: 6px; }
.callout p { font-size: 14.5px; color: var(--body); line-height: 1.55; margin: 0; }

/* ============================ FINAL CTA ============================ */
.cta {
  background: var(--green);
  text-align: center;
  padding: 96px var(--gutter);
}
.cta__inner { max-width: 900px; margin: 0 auto; }
.cta h2 {
  font-family: var(--display);
  font-size: clamp(38px, 6.2vw, 56px);
  line-height: 1.03;
  letter-spacing: -0.035em;
  font-weight: 800;
  color: #fff;
  margin: 0 0 18px;
}
.cta__sub {
  font-size: 20px;
  color: #eafff5;
  line-height: 1.5;
  margin: 0 auto 34px;
  max-width: 560px;
}
.cta__actions { display: flex; justify-content: center; align-items: center; }

/* ============================ FOOTER ============================ */
.site-footer { background: var(--footer-bg); padding: 56px var(--gutter) 40px; }
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--footer-divider);
}
.footer-brand { max-width: 320px; }
.footer-brand__name {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 800;
  color: #fff;
}
.footer-brand p {
  font-size: 14.5px;
  color: var(--on-dark-soft);
  line-height: 1.55;
  margin: 10px 0 0;
}
.footer-cols { display: flex; gap: 64px; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 11px; }
.footer-col__label {
  font-size: 12.5px;
  color: var(--on-dark-label);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 600;
}
.footer-col a { font-size: 14.5px; color: var(--on-dark-link); }
.footer-col a:hover { color: #fff; }
.footer-col a.ext { color: var(--green-bright); font-weight: 600; }
.footer-col a.ext:hover { color: var(--green-bright); text-decoration: underline; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
}
.footer-bottom__copy { font-size: 13.5px; color: var(--on-dark-label); }
.footer-bottom__made { font-size: 13.5px; color: var(--on-dark-soft); }
.footer-bottom__made a { color: var(--green-bright); font-weight: 600; }
.footer-bottom__made a:hover { color: var(--green-bright); text-decoration: underline; }

/* ============================ PLATFORM LOGOS ============================ */
/* Real brand logos sit on a white tile the same size/radius as the colour
   swatch they replace. On white areas the tile blends in; on the green rows
   and the dark integrations block the white backing keeps each logo legible. */
.logo {
  background: #fff;
  object-fit: contain;
  box-sizing: border-box;
}
.logo--off { opacity: .4; filter: grayscale(100%); }

.swatch--lg.logo { padding: 4px; }        /* 34px — hero connect rows */
.chip .swatch.logo { padding: 2px; }      /* 20px — works-with chips */
.opt .swatch.logo { padding: 3px; }       /* 26px — step 1 picker */
.approve .swatch.logo { padding: 3px; }   /* 30px — step 2 approve */
.mini.logo { padding: 2px; }              /* 18px — step 3 dashboard */
.int-card__icon.logo { padding: 7px; }    /* 46px — integrations cards */

/* ============================ RESPONSIVE ============================ */
/* Tablet and below */
@media (max-width: 900px) {
  :root { --gutter: 24px; }

  .section, .section--pad96 { padding-top: 72px; padding-bottom: 72px; }

  .step,
  .step--reverse {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 88px;
  }
  /* Always show the descriptive text before its mock on narrow screens */
  .step .step-copy { order: 1; }
  .step .step-visual { order: 2; }

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

  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
}

/* Phones */
@media (max-width: 640px) {
  :root { --gutter: 20px; }

  /* Simplify the nav: keep brand + primary CTA, hide the deep links */
  .nav { gap: 14px; }
  .nav-link, .nav-login { display: none; }
  .btn--nav { padding: 10px 18px; }

  .hero { padding-top: 48px; }
  .hero__sub { font-size: 18px; }
  .btn--hero { padding: 15px 26px; font-size: 16px; }

  .section, .section--pad96 { padding-top: 60px; padding-bottom: 60px; }
  .section-head { margin-bottom: 40px; }

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

  .connect { padding: 22px 16px 20px; }
  .connect__title { font-size: 22px; }

  .plan, .explainer { padding: 28px; }
  .plan__amount { font-size: 60px; }

  .footer-top { flex-direction: column; gap: 28px; }
  .footer-cols { gap: 40px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn:hover { transform: none; }
}
