/* RenniLink — light grey · mid grey · navy · white (logo on light only) */
:root {
  --white: #ffffff;
  --grey-light: #f0f2f5;
  --grey-mid: #8a93a0;
  --grey-border: #d0d5dd;
  --grey-soft: #e4e7ec;
  --navy: #0c1f3d;
  --navy-mid: #143056;
  --navy-deep: #081628;
  --blue: #1a4d8c;
  --blue-bright: #2563a8;
  --text: #0c1f3d;
  --text-secondary: #4a5568;
  --muted: #6b7280;
  --ok: #1a7a4c;
  --warn: #a66a12;
  --danger: #b33a3a;
  --radius: 12px;
  --radius-lg: 16px;
  --shadow: 0 4px 20px rgba(12, 31, 61, 0.06);
  --shadow-lg: 0 12px 40px rgba(12, 31, 61, 0.1);
  --max: 1120px;
  --font: "Segoe UI", system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--grey-light);
  color: var(--text);
  line-height: 1.55;
  overflow-x: hidden;
}
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--navy-mid); }
img { max-width: 100%; display: block; }
code {
  font-family: ui-monospace, "Cascadia Code", "Segoe UI Mono", monospace;
  font-size: .88em;
  background: var(--grey-soft);
  color: var(--navy);
  padding: .12em .4em;
  border-radius: 4px;
  border: 1px solid var(--grey-border);
}

.wrap { position: relative; z-index: 1; min-height: 100vh; display: flex; flex-direction: column; }

/* ——— Nav (white / light — logo safe) ——— */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--grey-border);
  box-shadow: 0 1px 0 rgba(12, 31, 61, 0.04);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto;
  padding: 0 20px;
  height: 72px;
  display: flex; align-items: center; gap: 20px; justify-content: space-between;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none !important;
  flex-shrink: 0;
  background: var(--white);
  padding: 4px 8px;
  border-radius: 10px;
}
.brand img.logo {
  height: 56px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}
.brand img.app-mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 1px 4px rgba(12, 31, 61, 0.12);
}
.brand-with-app .logo { height: 44px; max-width: 180px; }
.nav-links {
  display: flex; gap: 2px 4px; align-items: center;
  font-size: .875rem; flex-wrap: wrap; justify-content: flex-end;
}
.nav-links a {
  color: var(--text-secondary);
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 550;
  transition: .15s ease;
}
.nav-links a:hover {
  color: var(--navy);
  background: var(--grey-light);
}
.nav-links a.active {
  color: var(--navy);
  background: var(--grey-soft);
  font-weight: 650;
}
.nav-links .btn { margin-left: 6px; }

/* ——— Buttons ——— */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 20px; border-radius: 8px; font-weight: 650; font-size: .92rem;
  border: 1px solid transparent; cursor: pointer; transition: .15s ease;
  text-decoration: none !important;
  letter-spacing: .01em;
}
.btn-primary {
  background: var(--navy);
  color: var(--white) !important;
  border-color: var(--navy);
  box-shadow: 0 2px 10px rgba(12, 31, 61, 0.2);
}
.btn-primary:hover {
  background: var(--navy-mid);
  color: var(--white) !important;
  transform: translateY(-1px);
}
.btn-ghost {
  background: var(--white);
  color: var(--navy) !important;
  border-color: var(--grey-border);
  box-shadow: var(--shadow);
}
.btn-ghost:hover {
  border-color: var(--navy);
  background: var(--grey-light);
  color: var(--navy) !important;
}
/* Outline on light sections */
.btn-navy-outline {
  background: var(--white);
  color: var(--navy) !important;
  border-color: var(--navy);
}
.btn-navy-outline:hover {
  background: var(--navy);
  color: var(--white) !important;
}
/* Outline when on navy band */
.final .btn-navy-outline,
.section-navy .btn-navy-outline {
  background: transparent;
  color: var(--white) !important;
  border-color: rgba(255, 255, 255, 0.55);
}
.final .btn-navy-outline:hover,
.section-navy .btn-navy-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white) !important;
}
.final .btn-primary {
  background: var(--white);
  color: var(--navy) !important;
  border-color: var(--white);
}
.final .btn-primary:hover {
  background: var(--grey-light);
  color: var(--navy) !important;
}
.btn-paypal {
  background: linear-gradient(135deg, #0070ba, #003087);
  color: #fff !important;
  border: 0;
  box-shadow: 0 4px 16px rgba(0, 112, 186, 0.28);
}
.btn-paypal:hover { transform: translateY(-1px); color: #fff !important; }
.btn-lg { padding: 14px 26px; font-size: 1rem; }
.btn-sm { padding: 8px 16px; font-size: .84rem; }

/* ——— Hero (light — logo safe) ——— */
.hero {
  background: var(--grey-light);
  color: var(--text);
  padding: 56px 20px 48px;
  border-bottom: 1px solid var(--grey-border);
  position: relative;
}
.hero::after { display: none; }
.hero-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: center;
  position: relative; z-index: 1;
}
.hero.solo .hero-inner { grid-template-columns: 1fr; max-width: 720px; text-align: center; }
.hero.solo .lead { margin-left: auto; margin-right: auto; }
.hero.solo .hero-cta { justify-content: center; }
.hero.solo .trust-row { justify-content: center; }
.hero.solo .eyebrow { justify-content: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 16px;
}
.eyebrow::before {
  content: ""; width: 22px; height: 2px;
  background: var(--navy);
  border-radius: 1px;
}
h1 {
  font-size: clamp(2rem, 4.2vw, 2.85rem);
  line-height: 1.12; font-weight: 800; letter-spacing: -.025em;
  margin-bottom: 18px; color: var(--navy);
}
.hero h1 .grad {
  color: var(--blue);
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
}
.lead {
  font-size: 1.08rem; color: var(--text-secondary); max-width: 40em; margin-bottom: 22px;
  line-height: 1.6;
}
.lead strong { color: var(--navy); font-weight: 600; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
.trust-row {
  display: flex; flex-wrap: wrap; gap: 12px 20px;
  font-size: .84rem; color: var(--muted);
}
.trust-row span { display: flex; align-items: center; gap: 7px; }
.trust-row i {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--ok);
}

/* Hero cards / logo plates — always light */
.hero-card {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  box-shadow: var(--shadow-lg);
}
.hero-card h3 {
  font-size: .72rem; color: var(--blue); margin-bottom: 16px;
  letter-spacing: .12em; text-transform: uppercase; font-weight: 700;
}
.pillar {
  margin-bottom: 14px; padding-bottom: 14px;
  border-bottom: 1px solid var(--grey-soft);
}
.pillar:last-child { margin-bottom: 0; padding-bottom: 0; border: 0; }
.pillar b { display: block; color: var(--navy); font-size: 1rem; margin-bottom: 4px; }
.pillar span { font-size: .9rem; color: var(--text-secondary); }

.hero-logo {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--grey-border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-logo img {
  width: 100%;
  max-width: 380px;
  height: auto;
  display: block;
}

/* App icon on light panel only */
.app-icon-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 32px 28px;
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.app-icon-hero img {
  width: 148px;
  height: 148px;
  border-radius: 28px;
  box-shadow: 0 8px 28px rgba(12, 31, 61, 0.15);
  object-fit: cover;
}
.app-icon-hero .app-icon-caption {
  text-align: center;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.app-icon-hero .app-icon-caption strong {
  display: block;
  color: var(--navy);
  font-size: 1.05rem;
  letter-spacing: .02em;
  text-transform: none;
  margin-bottom: 4px;
  font-weight: 800;
}

.product-icon-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.product-icon-row img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(12, 31, 61, 0.12);
  object-fit: cover;
  flex-shrink: 0;
}
.product-icon-row h3 { margin: 0; }

/* ——— Sections ——— */
main { flex: 1; }
section { padding: 56px 20px; }
.section-inner { max-width: var(--max); margin: 0 auto; }
.section-label {
  font-size: .7rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 10px;
}
h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.05rem); font-weight: 800;
  letter-spacing: -.02em; margin-bottom: 12px; line-height: 1.22;
  color: var(--navy);
}
.sub { color: var(--text-secondary); font-size: 1.02rem; max-width: 48em; margin-bottom: 28px; }

.band {
  background: var(--white);
  border-block: 1px solid var(--grey-border);
  padding: 16px 20px; text-align: center; font-size: .95rem; color: var(--text-secondary);
}
.band strong { color: var(--navy); }

.section-white { background: var(--white); }
.section-sky { background: var(--grey-light); }
/* Navy reserved for final CTA / optional bands — no logo here */
.section-navy {
  background: var(--navy);
  color: var(--white);
}
.section-navy h2 { color: var(--white); }
.section-navy .sub { color: rgba(255, 255, 255, 0.78); }
.section-navy .section-label { color: rgba(255, 255, 255, 0.65); }

/* Product cards */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.product-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.product-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }

.product-card {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: border-color .2s, box-shadow .2s, transform .2s;
  position: relative;
}
.product-card:hover {
  border-color: var(--navy-mid);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.product-card.coming-soon:hover { transform: none; }
.product-card .shot-wrap {
  /* Match app chrome — cool light grey or pure black makes paper look olive */
  background: #2c2c2c;
  min-height: 168px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border-bottom: 1px solid var(--grey-border);
}
.product-card .shot-wrap img {
  max-height: 180px;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
  filter: none;
}
.product-card .body { padding: 22px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.badge-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.os-badge, .status-badge {
  display: inline-flex;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}
.os-badge.win {
  background: var(--grey-soft);
  color: var(--navy);
  border: 1px solid var(--grey-border);
}
.os-badge.linux {
  background: #e8f0e8;
  color: #1a5c3a;
  border: 1px solid #c5d9c8;
}
.status-badge.coming {
  background: #f5f0e6;
  color: #6b5420;
  border: 1px solid #e0d4b8;
}
.status-badge.available {
  background: #e6f2ea;
  color: #1a5c3a;
  border: 1px solid #b8d4c0;
}
.status-badge.sales {
  background: var(--grey-soft);
  color: var(--navy-mid);
  border: 1px solid var(--grey-border);
}
.status-badge.free {
  background: #e6f2ea;
  color: #145a32;
  border: 1px solid #9dceb0;
  letter-spacing: .1em;
}
/* Free product callout */
.free-banner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #e6f2ea;
  color: #145a32;
  border: 1px solid #9dceb0;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: .85rem;
  font-weight: 750;
  letter-spacing: .04em;
  margin-bottom: 14px;
}
.free-banner em {
  font-style: normal;
  background: var(--ok);
  color: var(--white);
  padding: 2px 10px;
  border-radius: 999px;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 800;
}
.func-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  font-size: .92rem;
  margin-bottom: 8px;
}
.func-table th,
.func-table td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--grey-soft);
  vertical-align: top;
}
.func-table th {
  background: var(--navy);
  color: var(--white);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 700;
}
.func-table tr:last-child td { border-bottom: 0; }
.func-table tr:nth-child(even) td { background: #f7f9fc; }
.func-table td:first-child {
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
  width: 28%;
}
.func-table code { font-size: .82em; }
.product-card h3 { font-size: 1.2rem; margin-bottom: 8px; color: var(--navy); }
.product-card p { color: var(--text-secondary); font-size: .92rem; margin-bottom: 16px; flex: 1; }
.product-card .meta { font-size: .8rem; color: var(--muted); margin-bottom: 12px; }
.product-card .meta strong { color: var(--navy-mid); }
.product-card .cta-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: auto; }

.ribbon {
  position: absolute;
  top: 14px; right: -36px;
  background: var(--navy);
  color: var(--white);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 40px;
  transform: rotate(35deg);
  box-shadow: 0 2px 8px rgba(12, 31, 61, 0.25);
  z-index: 2;
}

/* Features */
.features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.feat {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  padding: 24px 22px;
  box-shadow: var(--shadow);
}
.feat:hover { border-color: var(--grey-mid); }
.feat.wide { grid-column: 1 / -1; }
.feat .icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: grid; place-items: center; margin-bottom: 12px;
  background: var(--grey-soft);
  color: var(--navy);
  font-size: .95rem;
  border: 1px solid var(--grey-border);
  font-weight: 700;
}
.feat h3 { font-size: 1.08rem; margin-bottom: 8px; color: var(--navy); }
.feat p { color: var(--text-secondary); font-size: .94rem; }
.feat ul { margin: 12px 0 0 1.1em; color: var(--text-secondary); font-size: .92rem; }
.feat ul li { margin-bottom: 6px; }
.feat ul li strong { color: var(--text); }

.spotlight { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.spot {
  border-radius: var(--radius-lg); padding: 26px 24px;
  border: 1px solid var(--grey-border);
  background: var(--white);
  box-shadow: var(--shadow);
}
.spot.alt {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.spot .tag {
  font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 10px;
}
.spot.alt .tag { color: rgba(255, 255, 255, 0.7); }
.spot h3 { font-size: 1.25rem; margin-bottom: 10px; color: var(--navy); }
.spot.alt h3 { color: var(--white); }
.spot p { color: var(--text-secondary); font-size: .94rem; margin-bottom: 10px; }
.spot.alt p { color: rgba(255, 255, 255, 0.78); }
.spot ul { margin-left: 1.1em; font-size: .92rem; color: var(--text-secondary); }
.spot.alt ul { color: rgba(255, 255, 255, 0.8); }
.spot ul li { margin-bottom: 8px; }
.spot ul li strong { color: var(--text); font-weight: 600; }
.spot.alt ul li strong { color: var(--white); }

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.shot {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.shot.wide { grid-column: 1 / -1; }
.shot figure {
  margin: 0;
  /* Match app chrome — pure #000 makes warm e-ink/paper greys read olive-green */
  background: #2c2c2c;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  padding: 20px 16px 16px;
}
.shot img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  border-radius: 4px;
  /* Avoid browser colour filters / forced-color weirdness */
  filter: none;
  image-rendering: auto;
}
.shot figcaption {
  padding: 14px 16px 16px;
  border-top: 1px solid var(--grey-soft);
  background: var(--white);
}
.shot figcaption strong {
  display: block;
  color: var(--navy);
  font-size: .95rem;
  margin-bottom: 4px;
}
.shot figcaption span {
  font-size: .85rem;
  color: var(--muted);
}

/* Screenshot click zoom */
.gallery.gallery-zoom .shot figure.shot-zoom-trigger {
  cursor: zoom-in;
  position: relative;
}
.gallery.gallery-zoom .shot figure.shot-zoom-trigger::after {
  content: "Click to enlarge";
  position: absolute;
  right: 12px;
  bottom: 10px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(12, 31, 61, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 5px 10px;
  border-radius: 999px;
  opacity: 0;
  transition: opacity .18s ease;
  pointer-events: none;
}
.gallery.gallery-zoom .shot figure.shot-zoom-trigger:hover::after,
.gallery.gallery-zoom .shot figure.shot-zoom-trigger:focus-visible::after {
  opacity: 1;
}
.gallery.gallery-zoom .shot figure.shot-zoom-trigger:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}
.shot-zoom-overlay {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .18s ease, visibility .18s ease;
}
.shot-zoom-overlay.is-open {
  opacity: 1; visibility: visible; pointer-events: auto;
}
.shot-zoom-backdrop {
  position: absolute; inset: 0;
  background: rgba(8, 16, 28, 0.88);
  backdrop-filter: blur(6px);
}
.shot-zoom-panel {
  position: relative; z-index: 1;
  max-width: min(96vw, 1400px);
  max-height: 92vh;
  display: flex; flex-direction: column; align-items: center;
  background: #2c2c2c;
  border: 1px solid var(--grey-mid);
  border-radius: 14px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
  padding: 16px 16px 12px;
  overflow: hidden;
}
.shot-zoom-img {
  display: block;
  max-width: min(92vw, 1360px);
  max-height: calc(92vh - 88px);
  width: auto; height: auto;
  object-fit: contain;
  border-radius: 6px;
  /* Same as app chrome — pure black inflates green cast on warm greys */
  background: #2c2c2c;
  filter: none;
}
.shot-zoom-cap { margin-top: 12px; text-align: center; max-width: 40em; }
.shot-zoom-cap strong { display: block; color: #e8eef6; font-size: 1rem; margin-bottom: 4px; }
.shot-zoom-cap span { color: #8b9bb0; font-size: .9rem; }
.shot-zoom-hint { margin-top: 6px; font-size: .72rem; color: #6b7c92; letter-spacing: .04em; }
.shot-zoom-close {
  position: absolute; top: 8px; right: 10px;
  width: 36px; height: 36px; border: 0; border-radius: 50%;
  background: rgba(255, 255, 255, 0.12); color: #fff;
  font-size: 1.4rem; line-height: 1; cursor: pointer; z-index: 2;
}
.shot-zoom-close:hover { background: var(--navy-mid); }
body.shot-zoom-open { overflow: hidden; }
@media (hover: none) {
  .gallery.gallery-zoom .shot figure.shot-zoom-trigger::after {
    content: "Tap to enlarge";
    opacity: .85;
  }
}

/* Tables / req */
.req-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.req {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: var(--shadow);
}
.req h3 { font-size: 1.02rem; margin-bottom: 10px; color: var(--navy); }
.req ul { margin: 0 0 0 1.1em; color: var(--text-secondary); font-size: .92rem; }
.req ul li { margin-bottom: 7px; }
.req ul li strong { color: var(--text); font-weight: 600; }
.req .note {
  margin-top: 12px; font-size: .85rem; color: var(--muted);
  border-top: 1px solid var(--grey-soft); padding-top: 10px;
}
.req p { color: var(--text-secondary); font-size: .92rem; }

.cap-table {
  width: 100%; border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--grey-border);
  box-shadow: var(--shadow);
}
.cap-table th, .cap-table td {
  padding: 12px 16px; text-align: left; font-size: .9rem;
  border-bottom: 1px solid var(--grey-soft);
}
.cap-table th {
  background: var(--navy);
  font-size: .7rem; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}
.cap-table td:first-child { color: var(--navy); font-weight: 600; width: 28%; }
.cap-table td { color: var(--text-secondary); }

/* Pricing */
.pricing {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 18px; align-items: stretch;
}
.price-card {
  border-radius: var(--radius-lg); padding: 28px 26px;
  border: 1px solid var(--grey-border);
  background: var(--white);
  box-shadow: var(--shadow);
}
.price-card.featured {
  border-color: var(--navy);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.price-card.featured::after {
  content: "START HERE";
  position: absolute; top: 14px; right: 14px;
  font-size: .62rem; font-weight: 800; letter-spacing: .08em;
  background: var(--navy);
  color: var(--white); padding: 5px 10px; border-radius: 999px;
}
.price-card h3 { font-size: 1.2rem; margin-bottom: 6px; color: var(--navy); }
.price-card .tag { color: var(--muted); font-size: .88rem; margin-bottom: 18px; }
.price {
  font-size: 2.4rem; font-weight: 800; color: var(--navy); line-height: 1;
  margin-bottom: 6px;
}
.price small { font-size: 1rem; color: var(--muted); font-weight: 500; }
.price-note { font-size: .88rem; color: var(--text-secondary); margin-bottom: 20px; }
.price-list { list-style: none; margin-bottom: 22px; }
.price-list li {
  padding: 8px 0 8px 28px; position: relative; font-size: .93rem;
  border-bottom: 1px solid var(--grey-soft);
  color: var(--text-secondary);
}
.price-list li::before {
  content: "✓"; position: absolute; left: 0; color: var(--ok); font-weight: 800;
}
.pay-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }

.sales-cta {
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1px solid var(--grey-border);
  background: var(--white);
  box-shadow: var(--shadow-lg);
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.sales-cta h3 { font-size: 1.3rem; margin-bottom: 10px; color: var(--navy); }
.sales-cta p { color: var(--text-secondary); margin-bottom: 20px; font-size: 1rem; }
.sales-cta .email {
  font-size: 1.2rem; font-weight: 700; color: var(--blue);
  margin-bottom: 20px; word-break: break-all;
}

.faq { max-width: 720px; }
details {
  background: var(--white);
  border-radius: 10px;
  margin-bottom: 10px;
  border: 1px solid var(--grey-border);
  padding: 2px 18px;
  box-shadow: var(--shadow);
}
summary {
  cursor: pointer; font-weight: 700; padding: 14px 0; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  color: var(--navy);
}
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; color: var(--blue); font-size: 1.3rem; font-weight: 400; }
details[open] summary::after { content: "−"; }
details p { color: var(--text-secondary); padding: 0 0 16px; font-size: .95rem; }

/* Final CTA — navy only, no logo */
.final {
  text-align: center; padding: 64px 20px 52px;
  background: var(--navy);
  color: var(--white);
}
.final h2 { color: var(--white); margin-bottom: 12px; }
.final p { color: rgba(255, 255, 255, 0.78); max-width: 38em; margin: 0 auto 24px; }
.final .hero-cta { justify-content: center; }
.final-app-icon {
  width: 72px; height: 72px; border-radius: 16px;
  margin: 0 auto 18px; display: block;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  background: var(--white);
  padding: 6px;
  object-fit: contain;
}

/* Footer — light grey so logo is allowed */
footer {
  background: var(--grey-light);
  border-top: 1px solid var(--grey-border);
  padding: 32px 20px 40px;
  color: var(--muted);
  font-size: .85rem;
}
.footer-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 16px 24px;
  justify-content: space-between; align-items: flex-start;
}
.footer-inner strong { color: var(--navy); }
.footer-inner a { color: var(--blue); }
.footer-inner a:hover { color: var(--navy); }
.footer-links { display: flex; flex-wrap: wrap; gap: 12px 18px; }
.footer-logo {
  height: 56px;
  width: auto;
  max-width: 160px;
  margin-bottom: 12px;
  object-fit: contain;
  background: var(--white);
  padding: 6px 10px;
  border-radius: 10px;
  border: 1px solid var(--grey-border);
}

.formats { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.formats span {
  display: inline-block;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: .8rem; font-weight: 600;
  background: var(--grey-soft);
  border: 1px solid var(--grey-border);
  color: var(--navy-mid);
}
.profiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.prof {
  border-radius: var(--radius); padding: 18px 16px;
  border: 1px solid var(--grey-border);
  background: var(--white);
  box-shadow: var(--shadow);
}
.prof .n {
  font-size: .68rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--blue); font-weight: 700; margin-bottom: 6px;
}
.prof h3 { font-size: 1.05rem; margin-bottom: 6px; color: var(--navy); }
.prof p { font-size: .86rem; color: var(--text-secondary); }

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 1100px) {
  .mission-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.mission {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  padding: 24px 22px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.mission::before {
  content: "";
  position: absolute; top: 0; left: 0; width: 3px; height: 100%;
  background: var(--navy);
}
.mission .num {
  font-size: .68rem; font-weight: 800; letter-spacing: .12em;
  color: var(--blue); margin-bottom: 10px;
}
.mission h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 8px; }
.mission p { font-size: .92rem; color: var(--text-secondary); }

.sticky-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 40;
  padding: 12px 16px; background: rgba(255, 255, 255, 0.97);
  border-top: 1px solid var(--grey-border);
  box-shadow: 0 -4px 20px rgba(12, 31, 61, 0.08);
}
.sticky-cta .btn { width: 100%; }

@media (max-width: 960px) {
  .hero-inner, .spotlight, .pricing, .product-grid,
  .product-grid.cols-3, .product-grid.cols-4,
  .features, .profiles, .mission-grid, .req-grid {
    grid-template-columns: 1fr;
  }
  .gallery { grid-template-columns: 1fr; }
  .shot.wide { grid-column: auto; }
  .shot img { max-height: none; }
  .nav-links .hide-sm { display: none; }
  .sticky-cta { display: block; }
  body { padding-bottom: 72px; }
  .feat.wide { grid-column: auto; }
  .ribbon { display: none; }
  .brand img.logo { height: 40px; }
  .nav-inner { height: 64px; }
}
