/* Eden Street Agency — site styles. Implemented from "Eden Street Homepage.dc.html". */

:root {
  --accent: #3a86f5;
  --accent-hover: #2f6fd0;
  --ink: #14181f;
  --ink-muted: #4a5361;
  --navy: #081527;
  --navy-text-muted: #9fb0c4;
  --hero-bg: #0a0908;
  --nav-link: #e8e9eb;
  --card-border: #e3e6ea;
  --gutter: 64px;
}

*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: 'Figtree', sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; }
:focus { outline: none; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* ── Nav ─────────────────────────────────────────────────────────── */

.site-header {
  background: #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 var(--gutter);
  height: 96px;
}

.brand { display: flex; align-items: center; }
.brand-logo {
  display: block;
  height: 54px;
  width: auto;
  /* logo art is dark on transparent — render it white on the black bar */
  filter: brightness(0) invert(1);
}

.site-nav { display: flex; align-items: center; gap: 40px; }
.site-nav a {
  color: var(--nav-link);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.site-nav a:hover { color: var(--accent); }
.site-nav a[aria-current='page'] {
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 4px;
}

.nav-toggle { display: none; }
.nav-toggle-btn { display: none; }

/* ── Hero ────────────────────────────────────────────────────────── */

.hero { position: relative; background: var(--hero-bg); overflow: hidden; }

/* Each hero supplies its own backdrop through --hero-image, so pages don't
   share artwork. To change a page's background photo, edit only its url()
   below (homepage here, About further down under "About page"). */
.hero { --hero-image: url('../assets/hero-backdrop.png'); }

.hero-media {
  position: absolute;
  inset: 0;
  background: var(--hero-image) center / cover no-repeat;
}
.hero-product {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  height: 92%;
  max-height: 540px;
  width: auto;
  pointer-events: none;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,5,6,0.92) 0%, rgba(5,5,6,0.82) 32%, rgba(5,5,6,0.25) 62%, rgba(5,5,6,0.05) 100%);
  pointer-events: none;
}
.hero-content { position: relative; padding: 88px var(--gutter) 96px; max-width: 640px; }
.hero h1 {
  margin: 0;
  font-size: 64px;
  font-weight: 800;
  line-height: 1.08;
  color: #fff;
  letter-spacing: -0.01em;
}
.hero h1 .accent { color: var(--accent); }
.hero-lede {
  margin: 28px 0 0;
  font-size: 20px;
  line-height: 1.55;
  color: #eef1f4;
  max-width: 430px;
  text-wrap: pretty;
  /* The hero photo has a bright POS screen behind this copy — a tight contact
     shadow plus a wider soft halo keeps the text legible over it. */
  text-shadow:
    0 0 3px rgba(0, 0, 0, 1),
    0 1px 3px rgba(0, 0, 0, 1),
    0 0 12px rgba(0, 0, 0, 0.95),
    0 0 28px rgba(0, 0, 0, 0.85);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 36px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 16px 26px;
  border-radius: 8px;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); }
.btn-outline { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.65); }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

/* ── About page ──────────────────────────────────────────────────── */

.kicker {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.subhead { color: var(--accent); font-size: 20px; font-weight: 700; margin: 0 0 16px; }

/* ↓↓ ABOUT PAGE HERO IMAGERY — put your filenames here ↓↓
   Background photo (fills the whole hero, behind the text): */
.hero.about-hero { --hero-image: url('../assets/about-hero.svg'); }
/* The foreground product cut-out is an <img> in about.html — swap its src
   there, or delete that <img class="hero-product"> line to drop it entirely. */

.about-hero-content { max-width: 560px; padding-top: 72px; padding-bottom: 80px; }
.about-hero-content h1 { font-size: 42px; margin: 0 0 22px; }
/* On wide screens let the copy use more of the space left of the product photo. */
@media (min-width: 1280px) {
  .about-hero-content { max-width: 46vw; }
  .about-hero-content h1 { font-size: 48px; }
  .about-hero-text { font-size: 17px; }
}
/* Scale the headline with its container so it never wraps past two lines.
   The fixed sizes above are the fallback for browsers without cqw support. */
.about-hero-content { container-type: inline-size; }
.hero .about-hero-content h1 {
  font-size: clamp(15px, 5.9cqw, 48px);
  text-wrap: balance;
}
.about-hero-content .subhead { margin: 22px 0 14px; }
.about-hero-text { margin: 0 0 16px; font-size: 16px; line-height: 1.6; color: #dfe2e6; text-wrap: pretty; }
.about-quote {
  margin: 26px 0 0;
  padding-left: 18px;
  border-left: 4px solid var(--accent);
  font-size: 18px;
  line-height: 1.45;
}
.about-quote strong { display: block; color: #fff; font-weight: 700; }
.about-quote span { color: var(--accent); font-weight: 700; }

.about-split {
  padding: 80px var(--gutter);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}
.about-split h2 { margin: 0 0 8px; font-size: 32px; font-weight: 800; letter-spacing: -0.01em; }
.about-split p { margin: 0 0 14px; font-size: 16px; line-height: 1.6; color: #2b323d; }
.split-photo {
  align-self: stretch;
  min-height: 420px;
  border-radius: 12px;
  background: #10141b url('../assets/about-bar.png') center / cover no-repeat;
}
.checklist-label { font-weight: 700; color: var(--ink); margin: 20px 0 12px; }
.checklist {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px 28px;
}
.checklist li {
  position: relative;
  padding-left: 30px;
  font-size: 15px;
  color: #2b323d;
}
.checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1px;
  width: 19px;
  height: 19px;
  border: 1.6px solid var(--accent);
  border-radius: 50%;
}
.checklist li::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 6px;
  width: 9px;
  height: 5px;
  border-left: 1.8px solid var(--accent);
  border-bottom: 1.8px solid var(--accent);
  transform: rotate(-45deg);
}
.callout {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #eaf2fe;
  border-radius: 10px;
  padding: 20px 22px;
  color: var(--accent);
}
.callout p { margin: 0; font-size: 15.5px; line-height: 1.5; color: var(--ink); }
.callout .accent-text { color: var(--accent); font-weight: 700; }
.callout svg { flex-shrink: 0; margin-top: 1px; }

.about-why {
  background: var(--navy);
  padding: 84px var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.about-why h2 { margin: 0 0 8px; font-size: 30px; font-weight: 800; color: #fff; letter-spacing: -0.01em; }
.about-why > div > p { margin: 0 0 14px; font-size: 16px; line-height: 1.6; color: #c3cdda; }
.why-heading { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; color: var(--accent); }
.why-heading h2 { margin: 0; }
.why-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.why-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 10px;
  padding: 26px 22px;
  text-align: center;
  color: var(--accent);
}
.why-card-title { color: #fff; font-size: 16px; font-weight: 800; margin: 12px 0 8px; }
.why-card p { margin: 0; font-size: 14px; line-height: 1.5; color: var(--navy-text-muted); }

/* No portrait yet: a single centered column. When a portrait arrives, switch
   back to a two-column grid and unhide .founder-photo. */
.about-founder {
  padding: 84px var(--gutter);
  max-width: 820px;
  margin: 0 auto;
}
.about-founder .kicker, .about-founder h2 { text-align: center; }
.about-founder h2 { margin: 0 0 22px; font-size: 34px; font-weight: 800; letter-spacing: -0.01em; }
.about-founder p { margin: 0 0 14px; font-size: 16px; line-height: 1.6; color: #2b323d; }
.founder-photo { display: none; border-radius: 12px; }

.about-cta {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  padding: 56px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.about-cta .cta-copy { align-items: flex-start; max-width: 640px; }
.about-cta .cta-title { font-size: 24px; font-weight: 800; }
.about-cta .cta-sub { margin-top: 8px; }
.cta-accent { color: var(--accent); font-size: 16px; font-weight: 700; margin-top: 10px; }
.about-cta .btn { position: relative; padding: 17px 30px; gap: 12px; white-space: nowrap; }
.cta-decor {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 420px;
  height: auto;
  color: #24406e;
  pointer-events: none;
}

/* ── Merchant services page ──────────────────────────────────────── */

/* Gradient hero so the page is complete without artwork. Drop a photo in
   later by naming it assets/merchant-hero.png — it layers over the gradient. */
.hero.ms-hero {
  --hero-image: url('../assets/merchant-hero.png');
  background:
    radial-gradient(ellipse 70% 60% at 78% 30%, rgba(58,134,245,0.22), transparent 70%),
    linear-gradient(160deg, #04060a 0%, #071120 55%, #0a1a30 100%);
}
.ms-hero .hero-scrim {
  background: linear-gradient(90deg, rgba(5,5,6,0.88) 0%, rgba(5,5,6,0.7) 45%, rgba(5,5,6,0.2) 100%);
}
.ms-hero-content { max-width: 660px; padding-top: 76px; padding-bottom: 84px; }
.ms-hero-content h1 {
  margin: 0 0 22px;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.14;
  color: #fff;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.ms-hero-text { margin: 0 0 16px; font-size: 16.5px; line-height: 1.6; color: #dfe2e6; text-wrap: pretty; }
.ms-hero-content .btn { margin-top: 16px; }

.ms-models .ind-lede { margin-bottom: 40px; }
.ms-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 44px; }
.ms-grid .ind-card p + p { margin-top: 12px; }

.ms-methods { background: #f6f8fb; padding: 76px var(--gutter) 84px; }
.ms-methods-inner { max-width: 1080px; margin: 0 auto; }
.ms-methods h2 { margin: 0; text-align: center; font-size: 34px; font-weight: 800; color: var(--ink); letter-spacing: -0.01em; text-wrap: balance; }
.ms-methods .ind-lede { margin-bottom: 34px; }
.ms-methods .checklist { grid-template-columns: repeat(3, 1fr); margin-bottom: 0; gap: 14px 32px; }

.ms-analysis { background: #fff; padding: 80px var(--gutter); }
.ms-analysis-card {
  max-width: 780px;
  margin: 0 auto;
  border: 1px solid var(--card-border);
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(16,24,40,0.06);
  padding: 40px 44px 44px;
}
.ms-analysis-card h2 { margin: 20px 0 6px; font-size: 32px; font-weight: 800; letter-spacing: -0.01em; text-wrap: balance; }
.ms-analysis-card > p { margin: 0 0 14px; font-size: 16px; line-height: 1.6; color: #2b323d; }
.ms-analysis-card .checklist { grid-template-columns: 1fr; gap: 11px; margin-bottom: 20px; }
.ms-noobligation { font-weight: 700; color: var(--ink); }
.ms-analysis-card .btn { margin-top: 6px; }

@media (max-width: 900px) {
  .ms-hero-content h1 { font-size: 32px; }
  .ms-grid { grid-template-columns: 1fr; }
  .ms-methods .checklist { grid-template-columns: 1fr 1fr; }
  .ms-analysis-card { padding: 32px 26px 36px; }
}
@media (max-width: 640px) {
  .ms-methods .checklist { grid-template-columns: 1fr; }
  .ms-methods h2, .ms-analysis-card h2 { font-size: 26px; }
  .ms-analysis { padding: 60px var(--gutter); }
}

/* ── Industries page ─────────────────────────────────────────────── */

.ind-hero {
  background:
    radial-gradient(ellipse 60% 55% at 72% 88%, rgba(58,134,245,0.28), transparent 70%),
    linear-gradient(180deg, #04060a 0%, #071120 100%);
  overflow: hidden;
}
.ind-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 64px var(--gutter) 72px;
  max-width: 1440px;
  margin: 0 auto;
}
.ind-hero-copy h1 {
  margin: 0 0 22px;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  letter-spacing: -0.01em;
}
.ind-hero-copy p { margin: 0 0 16px; font-size: 16px; line-height: 1.6; color: #dfe2e6; max-width: 480px; text-wrap: pretty; }
.ind-hero-copy .btn { margin-top: 14px; }
.ind-hero-art { width: 100%; height: auto; }

.ind-section { background: #fff; padding: 76px var(--gutter) 84px; max-width: 1240px; margin: 0 auto; }
.ind-section h2 { margin: 0; text-align: center; font-size: 36px; font-weight: 800; color: var(--ink); letter-spacing: -0.01em; }
.ind-lede { margin: 12px 0 44px; text-align: center; font-size: 17px; color: var(--ink-muted); }

.ind-wide {
  border: 1px solid var(--card-border);
  border-radius: 12px;
  box-shadow: var(--shadow-card, 0 1px 3px rgba(16,24,40,0.06));
  padding: 28px 32px;
  margin-bottom: 22px;
}
.ind-wide-head { display: flex; align-items: center; gap: 16px; }
.ind-wide-head h3 { margin: 0; font-size: 22px; font-weight: 800; color: var(--ink); }
.ind-wide-head p { margin: 6px 0 0; font-size: 14.5px; line-height: 1.55; color: var(--ink-muted); }
.ind-icon-ring {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.6px solid #c9dcfc;
  border-radius: 50%;
  color: var(--accent);
}
.ind-wide-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 22px; }
.ind-wide-cols > div:last-child { border-left: 1px solid var(--card-border); padding-left: 40px; }
.ind-sub-head { display: flex; align-items: center; gap: 10px; color: var(--accent); margin-bottom: 10px; }
.ind-sub-head h4 { margin: 0; font-size: 16px; font-weight: 800; color: var(--ink); }
.ind-wide-cols p { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--ink-muted); }

.ind-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 22px; }
.ind-card {
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 26px 24px;
  color: var(--accent);
  box-shadow: 0 1px 3px rgba(16,24,40,0.06);
}
.ind-card h3 { margin: 14px 0 10px; font-size: 17px; font-weight: 800; color: var(--ink); }
.ind-card p { margin: 0; font-size: 14px; line-height: 1.6; color: var(--ink-muted); }

.ind-why { background: var(--navy); padding: 72px var(--gutter) 80px; }
.ind-why h2 { margin: 0 0 40px; text-align: center; font-size: 30px; font-weight: 800; color: #fff; letter-spacing: -0.01em; }
.ind-why-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: 1240px; margin: 0 auto; }

.ind-cta { background: linear-gradient(135deg, #050b14 0%, #0a1a30 100%); padding: 72px var(--gutter); }
.ind-icon-ring-dark { width: 72px; height: 72px; border-color: rgba(127,169,232,0.5); align-self: flex-start; }
.ind-cta .cta-title { font-size: 28px; }
.ind-cta .cta-sub { max-width: 560px; }
/* The text column holds the button; without min-width:0 its nowrap button sets
   a min-content floor that overflows narrow screens (and .ind-cta clips it). */
.ind-cta .cta-copy > div { min-width: 0; }
.ind-cta-btn { margin-top: 22px; }
.cta-note { margin-top: 12px; font-size: 13.5px; color: var(--navy-text-muted); }

@media (max-width: 1100px) {
  .ind-grid { grid-template-columns: 1fr 1fr; }
  .ind-why-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .ind-hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .ind-hero-copy h1 { font-size: 32px; }
  .ind-hero-copy h1 br { display: none; }
}
@media (max-width: 700px) {
  .ind-grid { grid-template-columns: 1fr; }
  .ind-why-cards { grid-template-columns: 1fr; }
  .ind-wide-cols { grid-template-columns: 1fr; gap: 24px; }
  .ind-wide-cols > div:last-child { border-left: none; padding-left: 0; border-top: 1px solid var(--card-border); padding-top: 24px; }
  .ind-wide-head { align-items: flex-start; }
}

@media (max-width: 640px) {
  /* Stack the icon above the copy and let the button wrap, so nothing is
     forced wider than the screen (these sections clip their overflow). */
  .cta-copy { flex-direction: column; align-items: flex-start; gap: 16px; }
  .cta-copy > div { min-width: 0; }
  .about-cta .btn, .cta-banner .btn, .ind-cta-btn {
    white-space: normal;
    padding: 15px 20px;
    text-align: left;
  }
  .ind-icon-ring-dark { width: 56px; height: 56px; }
  .ind-cta { padding: 56px var(--gutter); }
  .ind-cta .cta-title { font-size: 24px; }
}

/* ── Feature strip ───────────────────────────────────────────────── */

.features {
  background: var(--navy);
  padding: 44px var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 6px 28px;
  border-left: 1px solid rgba(255,255,255,0.12);
}
.feature:first-child { border-left: none; }
.feature-icon { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.feature-title { color: #fff; font-size: 16px; font-weight: 800; letter-spacing: 0.06em; }
.feature-body {
  color: var(--navy-text-muted);
  font-size: 15px;
  line-height: 1.5;
  margin-top: 8px;
  text-wrap: pretty;
}

/* ── Partners ────────────────────────────────────────────────────── */

.partners { background: #fff; padding: 72px var(--gutter) 80px; }
.partners h2 {
  margin: 0;
  text-align: center;
  font-size: 38px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.partners-lede { margin: 14px 0 0; text-align: center; font-size: 18px; color: var(--ink-muted); }
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 18px;
  margin: 48px auto 0;
  max-width: 1440px;
}
.partner {
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 8px;
  height: 64px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.partner.stacked { flex-direction: column; gap: 0; }
.partner-name { font-size: 17px; font-weight: 700; color: #1a1f28; letter-spacing: 0.01em; }
.partner-icon { height: 26px; width: 26px; object-fit: contain; flex-shrink: 0; }
.logo-full { max-height: 40px; max-width: 85%; width: auto; object-fit: contain; }

.more-tile { background: #f6f8fb; border-style: dashed; }
.more-tile .partner-name { color: var(--ink-muted); letter-spacing: 0.06em; text-transform: uppercase; font-size: 14px; }

/* ── Contact page ────────────────────────────────────────────────── */

.contact-hero { background: var(--hero-bg); padding: 72px var(--gutter) 64px; }
.contact-hero h1 {
  margin: 0;
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  letter-spacing: -0.01em;
}
.contact-hero .accent { color: var(--accent); }
.contact-lede { margin: 20px 0 0; font-size: 19px; line-height: 1.55; color: #dfe2e6; max-width: 560px; text-wrap: pretty; }

.contact-body { padding: 56px var(--gutter) 88px; max-width: 760px; }
.contact-form { display: flex; flex-direction: column; gap: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label { font-size: 14px; font-weight: 700; letter-spacing: 0.04em; color: var(--ink); }
.form-field input,
.form-field select,
.form-field textarea {
  font: inherit;
  font-size: 16px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #c9cfd8;
  border-radius: 8px;
  padding: 13px 14px;
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-field input:hover, .form-field select:hover, .form-field textarea:hover { border-color: #9aa4b2; }
.form-field input:focus-visible, .form-field select:focus-visible, .form-field textarea:focus-visible {
  border-color: var(--accent);
  outline: 2px solid var(--accent);
  outline-offset: 0;
}
.contact-form .btn { align-self: flex-start; border: 0; cursor: pointer; font-family: inherit; }
.form-note { margin: 0; font-size: 13px; color: var(--ink-muted); }
.form-error { margin: 0; font-size: 15px; font-weight: 600; color: #c0392b; }
.form-error a { color: inherit; text-decoration: underline; }
.form-error[hidden] { display: none; }
.contact-form .btn:disabled { opacity: 0.6; cursor: wait; }

.form-success { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; color: var(--ink); }
.form-success[hidden] { display: none; }
.form-success svg { color: #2e9e5b; }
.form-success h2 { margin: 0; font-size: 30px; font-weight: 800; }
.form-success p { margin: 0; font-size: 17px; color: var(--ink-muted); }
.btn-outline-dark { background: transparent; color: var(--ink); border: 1px solid #c9cfd8; margin-top: 10px; }
.btn-outline-dark:hover { border-color: var(--ink); background: rgba(20,24,31,0.05); }

/* ── Consultation CTA ────────────────────────────────────────────── */

.cta-banner {
  background: var(--navy);
  padding: 40px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.cta-copy { display: flex; align-items: center; gap: 24px; }
.cta-copy svg { flex-shrink: 0; }
.cta-title { color: #fff; font-size: 20px; font-weight: 700; }
.cta-sub { color: var(--navy-text-muted); font-size: 16px; margin-top: 6px; }
.cta-banner .btn { padding: 17px 30px; gap: 12px; white-space: nowrap; }

/* ── Responsive ──────────────────────────────────────────────────── */

@media (max-width: 1200px) {
  .features { grid-template-columns: repeat(2, 1fr); row-gap: 32px; }
  .feature:nth-child(3) { border-left: none; }
}

@media (max-width: 900px) {
  :root { --gutter: 32px; }

  .site-header { height: auto; padding-top: 18px; padding-bottom: 18px; flex-wrap: wrap; }
  .nav-toggle-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: #fff;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 8px;
  }
  .site-nav {
    display: none;
    flex-basis: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 18px 0 8px;
  }
  .nav-toggle:checked ~ .site-nav { display: flex; }

  .hero h1 { font-size: 44px; }
  .hero-content { padding-top: 64px; padding-bottom: 72px; }
  .hero-product { height: 60%; right: 2%; opacity: 0.85; }
  .brand-logo { height: 44px; }

  .cta-banner { flex-direction: column; align-items: flex-start; }
  .contact-hero h1 { font-size: 38px; }
  .form-row { grid-template-columns: 1fr; }

  .about-hero-content h1 { font-size: 32px; }
  .about-split, .about-why, .about-founder { grid-template-columns: 1fr; gap: 36px; }
  .split-photo { min-height: 300px; }
  .founder-photo { display: none; }
  .about-cta { flex-direction: column; align-items: flex-start; }
  .cta-decor { opacity: 0.4; }
}

@media (max-width: 640px) {
  .features { grid-template-columns: 1fr; }
  .feature { border-left: none; padding-left: 0; padding-right: 0; }
  .partners h2 { font-size: 30px; }
  .hero h1 { font-size: 38px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-product { display: none; }
}
