/* ============================================================
   PetcomVet — Landing v2 (editorial / forest)
   Dark forest canvas, oversized display type, photo-led hero.
   ============================================================ */

* { box-sizing: border-box; }

:root {
  /* ─── Brand (Grass) ─── */
  --brand-primary:      #16A34A;
  --brand-primary-dark: #15903F;
  --brand-primary-pale: #22C55E;

  /* ─── Forest canvas ─── */
  --ink-dark:      #08160e;
  --ink-deep:      #0a1c12;
  --ink-mid:       #112619;
  --ink-line:      rgba(255, 252, 246, .12);
  --ink-line-soft: rgba(255, 252, 246, .07);
  --ink-text:      rgba(255, 252, 246, .92);
  --ink-text-mute: rgba(255, 252, 246, .58);
  --ink-text-dim:  rgba(255, 252, 246, .38);

  /* ─── Aliases used by components ─── */
  --accent:      var(--brand-primary);
  --accent-soft: #7eb89a;

  /* ─── Type ─── */
  --f-display: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --f-body:    "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  /* ─── Motion ─── */
  --t-fast: 150ms;
  --t-mid:  250ms;
  --t-slow: 400ms;
  --ease:   cubic-bezier(.2, 0, 0, 1);
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--ink-dark);
  color: var(--ink-text);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

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

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

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  vertical-align: middle;
}

/* ─── Type system — editorial display ─── */
.display {
  font-family: var(--f-display);
  font-weight: 900;
  font-stretch: 87%;
  line-height: .92;
  letter-spacing: -.035em;
  color: #fff;
  text-wrap: balance;
}
.display em {
  font-style: italic;
  font-weight: 900;
  color: var(--accent);
  font-stretch: 100%;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--ink-text);
}
.eyebrow .bracket { color: var(--accent); }
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}

.section-num {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .26em;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
}
.section-num::before {
  content: '';
  width: 56px; height: 1px;
  background: var(--accent);
}
.section-num--sm { font-size: 11px; margin-bottom: 8px; }

/* ─── Container ─── */
.wrap {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ─── Nav ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 24px 0;
  transition:
    background var(--t-mid) var(--ease),
    backdrop-filter var(--t-mid) var(--ease),
    padding var(--t-mid) var(--ease);
}
.nav.scrolled {
  background: rgba(8, 22, 14, .82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  padding: 14px 0;
  border-bottom: 1px solid var(--ink-line-soft);
}
.nav .wrap { display: flex; align-items: center; gap: 40px; }
.brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: #fff;
}
.brand img {
  width: 32px; height: 32px; border-radius: 7px;
  box-shadow: 0 6px 16px -4px rgba(22, 163, 74, .5);
}
.brand-mark { color: var(--accent); }
.nav-links { display: flex; gap: 28px; margin-left: 8px; }
.nav-links a {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-text-mute);
  transition: color var(--t-fast) var(--ease);
}
.nav-links a:hover { color: #fff; }
.nav-cta { margin-left: auto; display: flex; gap: 12px; align-items: center; }
.btn-login {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-text-mute);
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 8px 4px;
}
.btn-login:hover { color: #fff; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  cursor: pointer;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 16px 26px;
  border-radius: 0;
  transition:
    transform var(--t-fast) var(--ease),
    background var(--t-fast) var(--ease),
    color var(--t-fast) var(--ease),
    box-shadow var(--t-fast) var(--ease);
  position: relative;
  white-space: nowrap;
}
.btn--sm { padding: 13px 22px; font-size: 11.5px; }
.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 28px -10px rgba(22, 163, 74, .6);
}
.btn--primary:hover {
  background: var(--brand-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -10px rgba(22, 163, 74, .8);
}
.btn--ghost-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 252, 246, .3);
}
.btn--ghost-light:hover {
  background: rgba(255, 252, 246, .06);
  border-color: rgba(255, 252, 246, .55);
}
.btn .arrow {
  width: 22px; height: 22px;
  display: inline-grid; place-items: center;
  background: rgba(255, 255, 255, .14);
  border-radius: 50%;
  transition: transform var(--t-fast) var(--ease);
}
.btn--primary .arrow { background: rgba(255, 255, 255, .18); }
.btn:hover .arrow { transform: translateX(3px); }
.btn .arrow .material-symbols-outlined { font-size: 13px; }

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 160px 0 100px;
  overflow: hidden;
  color: #fff;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 75% center;
  filter: saturate(1.05) contrast(1.04);
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 22, 14, .55) 0%, rgba(8, 22, 14, .35) 35%, rgba(8, 22, 14, .82) 100%),
    linear-gradient(90deg, rgba(8, 22, 14, .92) 0%, rgba(8, 22, 14, .55) 38%, rgba(8, 22, 14, 0) 65%);
  pointer-events: none;
}
.hero::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 110px;
  height: 1px;
  background: rgba(255, 252, 246, .14);
  z-index: 1;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-vol {
  position: absolute;
  top: 95px; left: 40px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(255, 252, 246, .85);
  z-index: 3;
}
.hero-vol .sep { color: var(--accent); margin: 0 8px; }
.hero-corner-r {
  position: absolute;
  top: 95px; right: 40px;
  z-index: 3;
  display: flex; align-items: center; gap: 10px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(255, 252, 246, .85);
}
.hero-corner-r .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(22, 163, 74, .25);
  animation: pulse 2.4s ease-in-out infinite;
}

.hero-left { max-width: 720px; }
.hero-left .eyebrow { margin-bottom: 26px; color: rgba(255, 252, 246, .95); }
.hero h1 {
  margin: 0 0 32px;
  font-size: clamp(56px, 9vw, 124px);
  text-shadow: 0 2px 24px rgba(0, 0, 0, .35);
}
.hero h1 .row { display: block; }
.hero h1 .row.indent { padding-left: clamp(40px, 8vw, 110px); }
.hero h1 .row.shift  { padding-left: clamp(20px, 4vw, 60px); }
.hero-lead {
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 252, 246, .82);
  max-width: 480px;
  margin: 0 0 36px;
  text-wrap: pretty;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .4);
}
.hero-meta {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 252, 246, .18);
  max-width: 640px;
}
.hero-meta .stat .num {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -.01em;
  color: #fff;
  line-height: 1;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .35);
}
.hero-meta .stat .num .accent { color: var(--accent); }
.hero-meta .stat .lbl {
  font-family: var(--f-display);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 252, 246, .7);
  margin-top: 6px;
}

/* Pet caption — sits over the photo */
.hero-pet-caption {
  position: relative;
  z-index: 2;
  align-self: end;
  display: flex; flex-direction: column;
  align-items: flex-end;
  text-align: right;
  gap: 14px;
  padding-bottom: 8px;
}
.hero-pet-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(255, 252, 246, .92);
  background: rgba(8, 22, 14, .55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 7px 12px;
  border: 1px solid rgba(255, 252, 246, .22);
}
.hero-pet-tag .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
}

.hero-card {
  width: 320px;
  background: rgba(8, 22, 14, .72);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(255, 252, 246, .14);
  padding: 20px;
  border-radius: 4px;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .65);
  align-self: end;
}
.hero-card .hc-num {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .22em;
  color: var(--accent);
}
.hero-card .hc-row {
  display: flex; gap: 14px;
  align-items: flex-start;
  margin-top: 4px;
}
.hero-card .hc-body { flex: 1; }
.hero-card h4 {
  margin: 6px 0 4px;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  letter-spacing: -.005em;
}
.hero-card p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 252, 246, .68);
  line-height: 1.5;
}
.hero-card .hc-ico {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(22, 163, 74, .18);
  display: grid; place-items: center;
  color: var(--accent);
  flex-shrink: 0;
}
.hero-card .hc-ico .material-symbols-outlined {
  font-size: 22px;
  font-variation-settings: 'FILL' 1;
}

/* ─── Sticker row ─── */
.sticker-row {
  position: relative;
  background: var(--ink-deep);
  border-top: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
  padding: 22px 0;
  overflow: hidden;
}
.sticker-track {
  display: flex; gap: 64px; align-items: center;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-text-mute);
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}
.sticker-track > span { display: inline-flex; align-items: center; gap: 64px; flex: none; }
.sticker-track .ticker-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  flex: none;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .sticker-track { animation: none; }
}

/* ─── Section frame ─── */
section { padding: 140px 0; position: relative; }
.section-head {
  display: flex;
  gap: 56px;
  align-items: flex-end;
  margin-bottom: 80px;
}
.section-head .left { flex: 1; max-width: 720px; }
.section-head h2 {
  margin: 18px 0 0;
  font-size: clamp(40px, 5.8vw, 84px);
}
.section-head .desc {
  margin: 28px 0 0;
  font-size: 17px;
  color: var(--ink-text-mute);
  max-width: 460px;
  line-height: 1.55;
  text-wrap: pretty;
}

/* ─── Manifesto ─── */
.manifesto { padding: 120px 0; border-top: 1px solid var(--ink-line); }
.manifesto-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 56px;
  align-items: flex-start;
}
.manifesto p {
  margin: 0;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(24px, 2.6vw, 38px);
  line-height: 1.18;
  letter-spacing: -.015em;
  color: #fff;
  text-wrap: balance;
}
.manifesto p em {
  font-style: normal;
  color: var(--accent);
  font-weight: 600;
}
.manifesto .signature {
  margin-top: 32px;
  font-family: var(--f-display);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-text-mute);
}

/* ─── Spotlight ─── */
.spotlight { border-top: 1px solid var(--ink-line); }
.spotlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.photo-cell {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
  background: var(--ink-mid);
}
.photo-cell .photo-bg { position: absolute; inset: 0; }
.photo-bg--tutor {
  background: url('./pet-profile.png') center / cover no-repeat;
  filter: saturate(1.05) contrast(1.02);
}
/* Bottom darkening so the kicker + big title stay readable over the photo. */
.photo-cell .photo-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8, 22, 14, 0) 45%, rgba(8, 22, 14, .78) 100%);
}
.photo-cell .photo-corner {
  position: absolute;
  top: 20px; left: 20px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(255, 252, 246, .85);
  display: flex; align-items: center; gap: 8px;
  background: rgba(8, 22, 14, .55);
  backdrop-filter: blur(6px);
  padding: 6px 10px;
  border: 1px solid rgba(255, 252, 246, .14);
}
.photo-cell .photo-corner .material-symbols-outlined {
  font-size: 14px;
  color: var(--accent);
}
.photo-cell .photo-bottom {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  color: #fff;
}
.photo-cell .photo-bottom .kicker {
  font-family: var(--f-display);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255, 252, 246, .7);
  margin-bottom: 6px;
}
.photo-cell .photo-bottom .big {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -.01em;
  line-height: 1.1;
}

.content-cell h3 {
  margin: 14px 0 22px;
  font-family: var(--f-display);
  font-weight: 800;
  font-stretch: 87%;
  font-size: clamp(34px, 4vw, 56px);
  line-height: .98;
  letter-spacing: -.025em;
  color: #fff;
  text-wrap: balance;
}
.content-cell h3 em { font-style: normal; color: var(--accent); }

.feat-rows {
  display: flex; flex-direction: column;
  margin-bottom: 32px;
  border-top: 1px solid var(--ink-line);
}
.feat-row {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--ink-line);
  align-items: flex-start;
}
.feat-row .feat-ico {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--ink-line);
  display: grid; place-items: center;
  color: var(--accent);
  background: var(--ink-deep);
}
.feat-row .feat-ico .material-symbols-outlined {
  font-size: 22px;
  font-variation-settings: 'FILL' 1;
}
.feat-row h4 {
  margin: 0 0 4px;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 17px;
  color: #fff;
  letter-spacing: -.005em;
}
.feat-row p {
  margin: 0;
  font-size: 14.5px;
  color: var(--ink-text-mute);
  line-height: 1.5;
}
.feat-row .feat-num {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .18em;
  color: var(--ink-text-dim);
}

/* ─── 4-up audience grid ─── */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ink-line);
}
.audience-tile {
  padding: 32px 28px;
  border-right: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
  display: flex; flex-direction: column; gap: 14px;
  transition: background var(--t-fast) var(--ease);
  position: relative;
  min-height: 240px;
}
.audience-tile:nth-child(4n) { border-right: 0; }
.audience-tile:hover { background: rgba(22, 163, 74, .06); }
.audience-tile .tile-num {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .2em;
  color: var(--accent);
}
.audience-tile h4 {
  margin: 0;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -.01em;
  color: #fff;
  line-height: 1.1;
}
.audience-tile p {
  margin: 0;
  font-size: 14px;
  color: var(--ink-text-mute);
  line-height: 1.5;
  margin-top: auto;
}
.audience-tile .tile-ico {
  position: absolute;
  top: 24px; right: 24px;
  color: var(--ink-text-dim);
  transition:
    color var(--t-fast) var(--ease),
    transform var(--t-fast) var(--ease);
}
.audience-tile:hover .tile-ico {
  color: var(--accent);
  transform: translate(2px, -2px);
}
.audience-tile .tile-ico .material-symbols-outlined { font-size: 22px; }

/* ─── Roadmap ─── */
.roadmap-list {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--ink-line);
}
.phase {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  padding: 56px 0;
  border-bottom: 1px solid var(--ink-line);
  position: relative;
}
.phase-meta { display: flex; flex-direction: column; gap: 6px; }
.phase-meta .ph-status {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-text-mute);
  display: flex; align-items: center; gap: 8px;
}
.phase-meta .ph-status .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--ink-line);
}
.phase.now .ph-status { color: var(--accent); }
.phase.now .ph-status .dot {
  background: var(--accent);
  animation: pulse 2.4s ease-in-out infinite;
}
.phase.building .ph-status { color: var(--accent-soft); }
.phase.building .ph-status .dot {
  background: transparent;
  border: 1.5px solid var(--accent-soft);
}
.phase.next .ph-status .dot {
  background: transparent;
  border: 1.5px dashed var(--ink-text-mute);
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .55; transform: scale(.7); }
}
.phase-meta h3 {
  margin: 6px 0 0;
  font-family: var(--f-display);
  font-weight: 800;
  font-stretch: 87%;
  font-size: 38px;
  letter-spacing: -.02em;
  line-height: .95;
  color: #fff;
}
.phase.next .phase-meta h3 { color: var(--ink-text-mute); }
.phase-meta .ph-version {
  font-family: var(--f-display);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-text-dim);
  margin-top: 12px;
}

.phase-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.phase-item {
  padding: 18px 22px;
  border-left: 1px solid var(--ink-line);
  display: flex; gap: 14px;
  align-items: flex-start;
  min-height: 90px;
}
.phase-item .pi-check {
  width: 24px; height: 24px;
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.phase.now .pi-check { background: var(--accent); color: #fff; }
.phase.building .pi-check {
  background: transparent;
  border: 1.5px solid var(--accent-soft);
  color: var(--accent-soft);
}
.phase.next .pi-check {
  background: transparent;
  border: 1.5px dashed var(--ink-text-mute);
  color: var(--ink-text-mute);
}
.phase-item .pi-check .material-symbols-outlined {
  font-size: 15px;
  font-variation-settings: 'FILL' 1, 'wght' 600;
}
.phase-item h5 {
  margin: 0 0 3px;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 15px;
  color: #fff;
}
.phase.next .phase-item h5 { color: var(--ink-text-mute); }
.phase-item p {
  margin: 0;
  font-size: 13px;
  color: var(--ink-text-mute);
  line-height: 1.5;
}
.phase-item .pi-tag {
  display: inline-block;
  margin-top: 8px;
  font-family: var(--f-display);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-text-dim);
}
.roadmap-foot { text-align: center; margin-top: 56px; }

/* ─── Lead form / role tabs ─── */
.lead-block { max-width: 480px; }
.role-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  max-width: 100%;
  margin-bottom: 16px;
  border: 1px solid var(--ink-line);
}
.role-tabs button {
  background: transparent;
  border: 0;
  border-right: 1px solid var(--ink-line);
  padding: 10px 16px;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-text-mute);
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 7px;
  transition: all var(--t-fast) var(--ease);
}
.role-tabs button:last-child { border-right: 0; }
.role-tabs button:hover { color: #fff; background: rgba(255, 255, 255, .04); }
.role-tabs button.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.role-tabs button .material-symbols-outlined {
  font-size: 14px;
  font-variation-settings: 'FILL' 1;
}

.lead-form {
  display: flex;
  border: 1px solid var(--ink-line);
  background: var(--ink-deep);
  transition: border-color var(--t-fast) var(--ease);
}
.lead-form:focus-within { border-color: var(--accent); }
.lead-form input {
  flex: 1;
  border: 0; outline: 0;
  background: transparent;
  padding: 18px 20px;
  font-family: var(--f-body);
  font-size: 15px;
  color: #fff;
  min-width: 0;
}
.lead-form input::placeholder { color: var(--ink-text-dim); }
.lead-form .btn {
  border-radius: 0;
  padding: 16px 22px;
  font-size: 12px;
}

.lead-success {
  display: flex; align-items: center; gap: 14px;
  background: rgba(22, 163, 74, .08);
  border: 1px solid var(--accent);
  padding: 20px 22px;
  color: #fff;
}
.lead-success .material-symbols-outlined {
  font-size: 28px;
  color: var(--accent);
  font-variation-settings: 'FILL' 1;
}
.lead-success .ls-title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 16px;
}
.lead-success .ls-sub {
  font-size: 13px;
  color: var(--ink-text-mute);
  margin-top: 4px;
}

/* ─── CTA banner ─── */
.cta-banner {
  position: relative;
  padding: 0;
  border-top: 1px solid var(--ink-line);
}
.cta-banner-inner {
  position: relative;
  min-height: 640px;
  overflow: hidden;
}
.cta-bg { position: absolute; inset: 0; z-index: 0; }
.cta-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(.85) brightness(.45);
}
.cta-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 22, 14, .35) 0%, rgba(8, 22, 14, .85) 100%),
    linear-gradient(90deg, rgba(8, 22, 14, .85) 0%, rgba(8, 22, 14, .15) 60%);
}
.cta-banner .wrap {
  position: relative; z-index: 2;
  padding-top: 120px; padding-bottom: 120px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
}
.cta-banner h2 {
  margin: 18px 0 24px;
  font-size: clamp(40px, 5.8vw, 84px);
}
.cta-banner p {
  margin: 0 0 32px;
  font-size: 17px;
  color: rgba(255, 252, 246, .8);
  max-width: 460px;
  line-height: 1.6;
  text-wrap: pretty;
}
.cta-banner .cta-accent { color: var(--accent); font-style: normal; font-weight: 600; }
.cta-banner .helper {
  font-family: var(--f-display);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-text-mute);
  margin-top: 14px;
}

/* ─── Footer ─── */
footer {
  background: var(--ink-deep);
  border-top: 1px solid var(--ink-line);
  padding: 80px 0 40px;
  font-size: 14px;
}
footer .footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--ink-line);
}
footer .brand { margin-bottom: 18px; }
footer .blurb {
  font-size: 14.5px;
  line-height: 1.6;
  max-width: 340px;
  color: var(--ink-text-mute);
  margin: 0 0 24px;
}
footer h5 {
  margin: 0 0 18px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #fff;
}
footer ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 12px;
}
footer ul a {
  font-size: 14px;
  color: var(--ink-text-mute);
  transition: color var(--t-fast) var(--ease);
}
footer ul a:hover { color: var(--accent); }
footer .legal {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px;
  font-family: var(--f-display);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-text-dim);
  flex-wrap: wrap; gap: 12px;
}
.social { display: flex; gap: 8px; margin-top: 6px; }
.social a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 1px solid var(--ink-line);
  color: var(--ink-text-mute);
  transition: all var(--t-fast) var(--ease);
}
.social a:hover { color: var(--accent); border-color: var(--accent); }
.social a .material-symbols-outlined { font-size: 18px; }

/* ─── Responsive ─── */
@media (max-width: 1100px) {
  .hero { padding: 140px 0 80px; min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-bg img { object-position: 70% center; }
  .hero-bg::after {
    background:
      linear-gradient(180deg, rgba(8, 22, 14, .55) 0%, rgba(8, 22, 14, .45) 40%, rgba(8, 22, 14, .9) 100%),
      linear-gradient(90deg, rgba(8, 22, 14, .85) 0%, rgba(8, 22, 14, .55) 60%, rgba(8, 22, 14, .35) 100%);
  }
  .hero-corner-r { display: none; }
  .hero-pet-caption { align-items: flex-start; text-align: left; }
  .hero-card { width: 100%; max-width: 360px; }
  .section-head { flex-direction: column; gap: 24px; align-items: flex-start; }
  .manifesto-grid { grid-template-columns: 1fr; gap: 28px; }
  .spotlight-grid { grid-template-columns: 1fr; gap: 48px; }
  .photo-cell { aspect-ratio: 16 / 11; }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-tile:nth-child(4n) { border-right: 1px solid var(--ink-line); }
  .audience-tile:nth-child(2n) { border-right: 0; }
  .phase { grid-template-columns: 1fr; gap: 28px; padding: 40px 0; }
  .phase-items { grid-template-columns: 1fr; }
  .phase-item {
    border-left: 0;
    border-top: 1px solid var(--ink-line);
    padding: 18px 0;
  }
  .cta-banner .wrap {
    grid-template-columns: 1fr;
    padding-top: 80px; padding-bottom: 80px;
  }
  footer .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .wrap { padding: 0 20px; }
  section { padding: 80px 0; }
  .nav .wrap { gap: 16px; }
  .nav-links { display: none; }
  .nav-cta .btn-login { display: none; }
  .hero { padding: 110px 0 60px; }
  .hero-bg img { object-position: 80% center; }
  .hero-bg::after {
    background:
      linear-gradient(180deg, rgba(8, 22, 14, .55) 0%, rgba(8, 22, 14, .45) 40%, rgba(8, 22, 14, .95) 100%),
      linear-gradient(90deg, rgba(8, 22, 14, .88) 0%, rgba(8, 22, 14, .55) 55%, rgba(8, 22, 14, .25) 100%);
  }
  .hero-vol { left: 20px; }
  .hero h1 { font-size: clamp(44px, 12vw, 72px); }
  .hero h1 .row.indent, .hero h1 .row.shift { padding-left: 0; }
  .hero-card { display: none; }
  .hero-pet-caption { display: none; }
  .hero-meta { gap: 18px; }
  .hero-lead { font-size: 16px; }
  .lead-block { width: 100%; max-width: 100%; }
  .role-tabs { width: 100%; }
  .role-tabs button {
    flex: 1 1 auto;
    min-width: 0;
    padding: 10px 10px;
    justify-content: center;
    letter-spacing: .1em;
  }
  .lead-form { flex-direction: column; }
  .lead-form input { width: 100%; }
  .lead-form .btn { width: 100%; }
  .section-head h2 { font-size: clamp(34px, 9vw, 56px); }
  .audience-grid { grid-template-columns: 1fr; }
  .audience-tile { border-right: 0 !important; }
  .phase-meta h3 { font-size: 28px; }
  footer .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid > div:not(:first-child) {
    padding-top: 24px;
    border-top: 1px solid var(--ink-line);
  }
  footer .legal { font-size: 10px; }
}
