/* ═══════════════════════════════════════════════════════
   ANLYRA — Editorial Financial Report
   Design direction: FT Weekend meets Monocle meets Swiss
   private banking collateral. Not a SaaS landing page.
   ═══════════════════════════════════════════════════════
   
   Rules this CSS follows religiously:
   - Boxes only where structure demands it (form, hero widget, ROI data)
   - Sections are typographic compositions, not containers
   - No gradients. Flat colour, strong typography, intentional whitespace.
   - Cards only earn their borders if they hold interactive UI
   - Pricing: editorial comparison table, not three boxes
   - Colour: ink on paper. Navy = authority. Terracotta = warmth.
   ═══════════════════════════════════════════════════════ */

/* ─ Tokens ─────────────────────────────────────────── */
:root {
  --ink:      #111111;
  --ink-2:    #555555;
  --ink-3:    #888888;
  --paper:    #faf9f7;
  --paper-2:  #f2f0ec;
  --rule:     #dbd6ce;
  --rule-soft:#ede9e3;
  --navy:     #0d2240;
  --navy-mid: #1e3f70;
  --rust:     #b83a08;
  --rust-mid: #d44510;
  --white:    #ffffff;
  --max-w:    1220px;
  --col-gap:  48px;
}

/* ─ Reset ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.68;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
img { display: block; max-width: 100%; }

/* ─ The one decorative element: navy rule at top ────── */
body::before {
  content: "";
  display: block;
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--navy);
  z-index: 200;
}

/* ─ Utility ─────────────────────────────────────────── */
.page-bg { display: none; } /* unused */

/* ─ Layout shell ─────────────────────────────────────── */
.nav,
main > *,
.footer {
  width: min(calc(100% - var(--col-gap)), var(--max-w));
  margin-inline: auto;
}

/* ─ Nav ──────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 3px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 16px 0 14px;
  background: rgba(250, 249, 247, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--rule);
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 32px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-2);
  transition: color 120ms;
}
.nav-links a:hover { color: var(--navy); }

/* The only button that's a "real" button — sharp, authoritative */
.nav-cta {
  flex-shrink: 0;
  display: inline-block;
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
  background: var(--navy);
  border: 1px solid var(--navy);
  border-radius: 2px;
  cursor: pointer;
  transition: background 120ms;
}
.nav-cta:hover { background: #091829; }

/* ─ Buttons ──────────────────────────────────────────── */
.primary {
  display: inline-block;
  padding: 13px 28px;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  background: var(--navy);
  border: 1px solid var(--navy);
  border-radius: 2px;
  cursor: pointer;
  transition: background 120ms;
}
.primary:hover { background: #091829; }

.secondary {
  display: inline-block;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  background: transparent;
  border: 1px solid var(--navy);
  border-radius: 2px;
  cursor: pointer;
  transition: background 120ms;
}
.secondary:hover { background: rgba(13,34,64,0.05); }

/* ─ Hero ──────────────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  padding: 80px 0 64px;
  border-bottom: 1px solid var(--rule);
  opacity: 0;
  animation: appear 600ms ease 80ms forwards;
}

/* Eyebrow tag */
.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 20px;
}

.hero-copy h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.6rem, 4.2vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--navy);
  max-width: 14ch;
  margin-bottom: 24px;
}

.lead {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-2);
  max-width: 50ch;
}

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

/* Metrics — FT financial data ticker, NOT equal-box grid */
.hero-metrics {
  display: flex;
  gap: 0;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}
.hero-metrics > div {
  padding: 0 32px 0 0;
  margin-right: 32px;
  border-right: 1px solid var(--rule);
}
.hero-metrics > div:last-child {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}
.metric {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 2.6rem;
  line-height: 1;
  color: var(--navy);
  letter-spacing: -0.025em;
  margin-bottom: 5px;
}
.label {
  font-size: 13px;
  color: var(--ink-3);
  letter-spacing: 0.01em;
}

/* ─ Hero panel: floating paper artifact ───────────────── */
.hero-panel {
  opacity: 0;
  animation: appear 600ms ease 250ms forwards;
}

/* The "paper sheet" floating artifact — deliberately NOT a card */
.panel-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 2px;
  padding: 28px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.6),
    0 2px 4px rgba(13,34,64,0.04),
    0 20px 48px rgba(13,34,64,0.09),
    0 48px 80px rgba(13,34,64,0.05);
  transform: none;
  transform-origin: left center;
  position: relative;
}
/* Thin navy left accent — newspaper column rule */
.panel-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--navy);
  border-radius: 2px 0 0 2px;
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule-soft);
}
.panel-header h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  color: var(--navy);
}
.panel-header p {
  font-size: 13px;
  color: var(--ink-3);
  margin-top: 3px;
}

/* Tag/pill — square editorial stamp, not a SaaS chip */
.pill {
  display: inline-block;
  padding: 3px 8px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rust);
  background: transparent;
  border: 1px solid var(--rust);
  border-radius: 0;
  white-space: nowrap;
}

/* Panel rows — editorial data rows, not mini-cards */
.panel-grid { display: grid; gap: 0; }
.panel-item {
  display: grid;
  gap: 2px;
  padding: 12px 0;
  border-bottom: 1px solid var(--rule-soft);
}
.panel-item:last-child { border-bottom: none; }
.panel-item h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}
.panel-item p {
  font-size: 12.5px;
  color: var(--ink-2);
  line-height: 1.4;
}
.panel-item span {
  font-size: 11.5px;
  color: var(--rust);
  font-weight: 600;
  margin-top: 2px;
}

.panel-footer {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--rule-soft);
}
.panel-footer button {
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 2px;
  cursor: pointer;
  border: 1px solid var(--navy);
  background: var(--navy);
  color: var(--white);
  transition: background 120ms;
}
.panel-footer button:hover { background: #091829; }
.panel-footer .ghost {
  background: transparent;
  color: var(--navy);
}
.panel-footer .ghost:hover { background: rgba(13,34,64,0.06); }

/* ─ Logo strip ───────────────────────────────────────── */
.logo-strip {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  background: var(--navy);
  padding: 16px 0;
  margin-top: 0 !important;
}
.logo-strip p {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  text-align: center;
  margin-bottom: 10px;
}
.logo-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.logo-row span {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.04em;
}

/* ─ Shared section rhythm ────────────────────────────── */
.journey, .modules, .pricing, .examples, .faq, .security { padding-top: 96px; }
.contact { padding-top: 0; }

.section-title { max-width: 680px; margin-bottom: 48px; }
.section-title h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.9rem, 3vw, 2.9rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 12px;
}
.section-title p { color: var(--ink-2); font-size: 17px; }

/* Section header rule — thin navy line above h2 */
.section-title::before {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: var(--rust);
  margin-bottom: 20px;
}

/* ─ Journey ──────────────────────────────────────────── */
/* Three editorial columns, no borders, no cards */
.journey-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  counter-reset: journey-step;
}

.journey-card {
  background: transparent;
  border: none;
  padding: 0;
  border-top: 2px solid var(--navy);
  padding-top: 24px;
  counter-increment: journey-step;
}

/* Step number — inline with heading, not a giant ghost */
.journey-card h3::before {
  display: block;
  content: counter(journey-step, decimal-leading-zero);
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  color: var(--rust);
  font-weight: 400;
  margin-bottom: 8px;
  letter-spacing: 0.06em;
}

.journey-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.2;
}

.journey-card p { color: var(--ink-2); font-size: 15.5px; }

.journey-card ul {
  list-style: none;
  display: grid;
  gap: 8px;
  margin-top: 16px;
  color: var(--ink-2);
  font-size: 15px;
}
.journey-card li {
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.journey-card li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.75em;
  width: 7px; height: 1px;
  background: var(--rust);
}

/* ─ Modules ──────────────────────────────────────────── */
/* Typographic 2-col list, no card boxes */
.module-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.module {
  background: transparent;
  border: none;
  border-top: 1px solid var(--rule);
  padding: 28px 32px 28px 0;
}
.module:nth-child(even) {
  padding-left: 40px;
  padding-right: 0;
  border-left: 1px solid var(--rule);
}
.module h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.module p { color: var(--ink-2); font-size: 15.5px; }

/* ─ Pricing — editorial comparison, NOT three boxes ──── */
/* Table-style layout: feature rows with columns */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--rule);
  border-radius: 2px;
}

.pricing-card {
  background: transparent;
  border: none;
  border-right: 1px solid var(--rule);
  border-radius: 0;
  padding: 32px 28px;
}
.pricing-card:last-child { border-right: none; }

/* Featured: navy top bar — singular emphasis */
.pricing-card.featured {
  background: var(--paper-2);
  border-top: 3px solid var(--navy);
  position: relative;
  top: -3px; /* align bottom visually */
}

.pricing-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule);
}
.pricing-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  color: var(--navy);
}
.pricing-card p { color: var(--ink-2); font-size: 14.5px; margin-bottom: 4px; }

.pricing-pill {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.pricing-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 18px;
  font-size: 14.5px;
  color: var(--ink-2);
}
.pricing-card li {
  padding-left: 16px;
  position: relative;
  line-height: 1.45;
}
.pricing-card li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.72em;
  width: 7px; height: 1px;
  background: var(--rust);
}

/* ─ ROI — the ONE dark block ─────────────────────────── */
.roi {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  background: var(--navy);
  color: var(--white);
  padding: 88px 0 80px;
  margin-top: 96px;
}
.roi .section-title,
.roi-grid {
  width: min(calc(100% - var(--col-gap)), var(--max-w));
  margin-inline: auto;
}
.roi .section-title::before { background: rgba(255,255,255,0.25); }
.roi .section-title h2 { color: var(--white); }
.roi .section-title p { color: rgba(255,255,255,0.65); }

.roi-tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 8px;
}

.roi-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 32px;
}

/* ROI metric rows — clean typographic, no mini-cards */
.roi-metrics { display: grid; gap: 0; }
.roi-card {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  border-radius: 0;
  padding: 22px 0;
}
.roi-card:first-child { padding-top: 0; }
.roi-card:last-child { border-bottom: none; }
.roi-card h3 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}
.roi-value {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
}
.roi-note { font-size: 13.5px; color: rgba(255,255,255,0.55); margin-top: 8px; }

/* ROI visual panel — only box on dark bg (appropriate) */
.roi-visual {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 2px;
  padding: 28px;
  display: grid;
  gap: 22px;
}
.roi-visual-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
}
.roi-visual-header h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  color: var(--white);
}
.roi-pill {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 3px 8px;
  border-radius: 0;
}
.roi-bars { display: grid; gap: 14px; }
.roi-bar { display: grid; gap: 7px; }
.roi-bar > div:first-child {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  color: rgba(255,255,255,0.8);
}
.roi-bar > div:first-child span { color: rgba(255,255,255,0.45); }
.roi-track {
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 0;
  overflow: hidden;
}
.roi-track span { display: block; height: 100%; background: rgba(255,255,255,0.55); }
.roi-track.savings span { background: var(--rust-mid); }
.roi-track.uplift span  { background: rgba(255,255,255,0.8); }

.roi-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.roi-summary > div { padding-right: 16px; }
.roi-summary p { font-size: 11.5px; color: rgba(255,255,255,0.45); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 6px; }
.roi-summary strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
}

/* ─ Examples ─────────────────────────────────────────── */
.example-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
}
.example-card {
  background: transparent;
  border: none;
  border-right: 1px solid var(--rule);
  border-radius: 0;
  padding: 32px 28px 32px 0;
}
.example-card:last-child { border-right: none; }
.example-card:nth-child(2), .example-card:nth-child(3) { padding-left: 28px; }
.example-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.example-card p { color: var(--ink-2); font-size: 15px; }
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}
.chips span {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-3);
  border-bottom: 1px solid var(--rule);
  padding-bottom: 2px;
}

/* ─ Security ─────────────────────────────────────────── */
.security {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.security-copy h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.7rem, 2.6vw, 2.6rem);
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.security-copy p { color: var(--ink-2); }
.security-copy ul {
  list-style: none;
  display: grid;
  gap: 9px;
  margin-top: 18px;
  color: var(--ink-2);
  font-size: 15.5px;
}
.security-copy li { padding-left: 16px; position: relative; }
.security-copy li::before {
  content: ""; position: absolute; left: 0; top: 0.75em;
  width: 7px; height: 1px; background: var(--rust);
}
.security-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 2px solid var(--navy);
}
.security-stat {
  background: transparent;
  border: none;
  border-right: 1px solid var(--rule);
  border-radius: 0;
  padding: 24px 20px 0 0;
}
.security-stat:last-child { border-right: none; }
.security-stat span {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: 8px;
}
.security-stat p { font-size: 13.5px; color: var(--ink-3); line-height: 1.4; }

/* ─ FAQ ──────────────────────────────────────────────── */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
}
.faq-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--rule);
  border-radius: 0;
  padding: 28px 32px 28px 0;
}
.faq-item:nth-child(even) {
  padding-left: 40px;
  padding-right: 0;
  border-left: 1px solid var(--rule);
}
.faq-item h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}
.faq-item p { color: var(--ink-2); font-size: 15px; line-height: 1.6; }

/* ─ Contact ──────────────────────────────────────────── */
.contact {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  background: var(--paper-2);
  border-top: 1px solid var(--rule);
  padding: 80px 0;
  margin-top: 96px;
}
.contact-card {
  width: min(calc(100% - var(--col-gap)), var(--max-w));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
}
.contact-copy h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.7rem, 2.6vw, 2.6rem);
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.contact-copy p { color: var(--ink-2); font-size: 16px; }
.contact-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}
.contact-highlights strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 1.9rem;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 5px;
}
.contact-highlights span { font-size: 12.5px; color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.07em; }

/* Contact form — the one "real" form container */
.contact-form {
  display: grid;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 2px;
  padding: 32px;
}
.contact-form label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.contact-form label span:first-child {
  display: flex;
  gap: 3px;
  align-items: baseline;
}
.required { color: var(--rust); }
.contact-form input {
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid var(--rule);
  border-radius: 2px;
  background: var(--paper);
  color: var(--ink);
  font-size: 15px;
  transition: border-color 120ms;
}
.contact-form input::placeholder { color: #aaa; }
.contact-form input:focus {
  outline: none;
  border-color: var(--navy);
  background: var(--white);
}

/* ─ CTA bar ──────────────────────────────────────────── */
.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 48px 0;
  border-top: 1px solid var(--rule);
  flex-wrap: wrap;
  margin-top: 0;
}
.cta h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.5rem, 2.4vw, 2.3rem);
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 22ch;
}
.cta p { color: var(--ink-2); max-width: 52ch; margin-top: 8px; font-size: 16px; }

/* ─ Footer ───────────────────────────────────────────── */
.footer {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  padding: 40px 0 56px;
  border-top: 1px solid var(--rule);
}
.footer strong {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  display: block;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.footer p { font-size: 14px; color: var(--ink-3); }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; align-content: start; }
.footer a { font-size: 14px; color: var(--ink-3); transition: color 120ms; }
.footer a:hover { color: var(--navy); }

/* ─ Keyframes ────────────────────────────────────────── */
@keyframes appear {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─ Responsive ──────────────────────────────────────── */
@media (max-width: 1060px) {
  .hero { grid-template-columns: 1fr; }
  .panel-card { transform: none; }
  .security { grid-template-columns: 1fr; gap: 40px; }
  .roi-grid, .contact-card { grid-template-columns: 1fr; gap: 40px; }
  .pricing-grid { grid-template-columns: 1fr; border: 1px solid var(--rule); }
  .pricing-card { border-right: none; border-bottom: 1px solid var(--rule); }
  .pricing-card:last-child { border-bottom: none; }
  .pricing-card.featured { top: 0; border-top: 3px solid var(--navy); }
  .journey-grid, .example-grid { grid-template-columns: 1fr; }
  .journey-card:nth-child(n) { grid-column: auto; }
  .example-card { border-right: none; border-bottom: 1px solid var(--rule); padding: 24px 0; }
  .example-card:last-child { border-bottom: none; }
  .module-grid { grid-template-columns: 1fr; }
  .module:nth-child(even) { padding-left: 0; border-left: none; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-item:nth-child(even) { padding-left: 0; border-left: none; }
  .security-panel { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 780px) {
  :root { --col-gap: 28px; }
  .nav { display:grid; grid-template-columns: 1fr auto; align-items:center; gap:10px 16px; }
  .logo { font-size: 1.35rem; }
  .nav-cta { padding: 8px 14px; font-size: 12px; }
  .nav-links { grid-column: 1 / -1; order: 3; display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 8px 10px; width: 100%; }
  .nav-links a { font-size: 11px; letter-spacing: 0.08em; text-align:center; padding: 8px 4px; border-top: 1px solid var(--rule-soft); }
  .hero-metrics {
    flex-direction: column;
    gap: 0;
  }
  .hero-metrics > div {
    border-right: none;
    border-bottom: 1px solid var(--rule);
    padding: 14px 0;
    margin-right: 0;
  }
  .hero-metrics > div:last-child { border-bottom: none; }
  .cta { flex-direction: column; align-items: flex-start; }
  .footer { grid-template-columns: 1fr; gap: 20px; }
  .roi-summary, .contact-highlights { grid-template-columns: repeat(3, 1fr); }
  .security-panel { grid-template-columns: 1fr; }
  .security-stat { border-right: none; border-bottom: 1px solid var(--rule); padding-bottom: 20px; }
  .security-stat:last-child { border-bottom: none; }
}

@media (max-width: 540px) {
  .roi-summary, .contact-highlights { grid-template-columns: 1fr; }
  .hero-copy h1 { max-width: none; }
}
