/* ============================================================
   Lynkd — Global styles
   Built by operators, for operators.
   Source of truth: docs/design-system.html
   ============================================================ */

/* Google Fonts — Plus Jakarta Sans (display) + Inter (body) */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@600;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
  /* Colour */
  --color-slate: #1E2A3A;   /* Primary — headers, nav, text */
  --color-amber: #E8A020;   /* Accent — CTAs, highlights only. Never as a text colour. */
  --color-fog:   #F4F6F8;   /* Background — page, cards, section breaks */
  --color-stone: #6B7A8D;   /* Secondary text — labels, captions, metadata */
  --color-body:  #1F2937;   /* Long-form body text */
  --color-white: #FFFFFF;   /* Default surface */
  --color-hair:  #E5E7EB;   /* 1px borders, separators */

  /* Type */
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Shape & rhythm */
  --border-radius: 0px;     /* Sharp corners everywhere — no rounding */
  --spacing-unit:  8px;

  /* Motion */
  --ease: cubic-bezier(.2,.7,.2,1);
  --dur-1: 120ms;

  /* Rules on dark surfaces */
  --rule-soft: rgba(255, 255, 255, 0.10);
  --rule-firm: rgba(255, 255, 255, 0.15);
}

/* ------------------------------------------------------------
   Base reset
   ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

/* Visually-hidden — screen-reader-only labels */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--color-body);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ------------------------------------------------------------
   Typography scale
   ------------------------------------------------------------ */
.t-display { font-family: var(--font-display); font-weight: 800; font-size: 80px; line-height: 0.98; letter-spacing: -0.03em; color: var(--color-slate); }
.t-h1      { font-family: var(--font-display); font-weight: 700; font-size: 56px; line-height: 1.06; letter-spacing: -0.02em; color: var(--color-slate); }
.t-h2      { font-family: var(--font-display); font-weight: 700; font-size: 40px; line-height: 1.1;  letter-spacing: -0.01em; color: var(--color-slate); }
.t-h3      { font-family: var(--font-display); font-weight: 600; font-size: 28px; line-height: 1.2;  color: var(--color-slate); }
.t-body-lg { font-family: var(--font-body);    font-weight: 400; font-size: 20px; line-height: 1.5;  color: var(--color-body); }
.t-body    { font-family: var(--font-body);    font-weight: 400; font-size: 16px; line-height: 1.6;  color: var(--color-body); }
.t-caption { font-family: var(--font-body);    font-weight: 500; font-size: 13px; line-height: 1.5;  color: var(--color-stone); letter-spacing: 0.01em; }
.t-eyebrow { font-family: var(--font-body);    font-weight: 600; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-stone); }

/* ------------------------------------------------------------
   Buttons
   ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  padding: 16px 32px;
  border-radius: var(--border-radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: -0.005em;
  transition:
    background-color var(--dur-1) var(--ease),
    color var(--dur-1) var(--ease),
    border-color var(--dur-1) var(--ease);
}

.btn-primary {
  background: var(--color-amber);
  color: var(--color-slate);
  border-color: var(--color-amber);
}
.btn-primary:hover { background: #D9941A; border-color: #D9941A; }

.btn-secondary {
  background: var(--color-slate);
  color: var(--color-white);
  border-color: var(--color-slate);
}
.btn-secondary:hover { background: #131C28; border-color: #131C28; }

.btn-ghost {
  background: transparent;
  color: var(--color-slate);
  border-color: var(--color-slate);
}
.btn-ghost:hover { background: var(--color-slate); color: var(--color-white); }

.btn-outline-light {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}
.btn-outline-light:hover { background: var(--color-white); color: var(--color-slate); }

/* ------------------------------------------------------------
   Product card — canonical pattern
   White surface, hairline border, 3px Amber left accent.
   ------------------------------------------------------------ */
.product-card {
  background: var(--color-white);
  border: 1px solid var(--color-hair);
  border-left: 3px solid var(--color-amber);
  border-radius: var(--border-radius);
  padding: 32px;
  max-width: 460px;
}
.product-card .pc-tag {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-stone);
  margin: 0 0 16px;
}
.product-card .pc-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 28px;
  line-height: 1.2;
  color: var(--color-slate);
  margin: 0 0 8px;
}
.product-card .pc-desc {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--color-body);
  margin: 0 0 24px;
}
.product-card .pc-link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: var(--color-amber);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-1) var(--ease);
}
.product-card .pc-link:hover { border-bottom-color: var(--color-amber); }

/* ------------------------------------------------------------
   Navigation bar — 64px tall, Slate ground.
   Logo asset:
     /images/lynkd-logo.svg        — primary mark (light surfaces)
     /images/lynkd-logo-white.svg  — knockout (Slate / dark surfaces)
   ------------------------------------------------------------ */
.nav {
  height: 64px;
  width: 100%;
  background: var(--color-slate);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.nav-inner {
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  text-decoration: none;
}
.nav-logo img {
  height: 32px;
  width: auto;
  max-height: 32px;
  display: block;
}
.nav-links {
  display: flex;
  justify-content: center;
  gap: 36px;
}
.nav-links a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  color: var(--color-white);
  text-decoration: none;
  opacity: 0.85;
  transition: opacity var(--dur-1) var(--ease);
}
.nav-links a:hover { opacity: 1; }
.nav-links a.is-current { opacity: 1; }
.nav-right {
  display: flex;
  justify-content: flex-end;
}
.nav .btn-primary {
  padding: 10px 20px;
  font-size: 14px;
}

/* ------------------------------------------------------------
   Hero — full-viewport Slate, type-led. No image, no gradient.
   Amber confined to three places only:
   the eyebrow rule, the headline accent underline, and the primary CTA.
   ------------------------------------------------------------ */
.hero-shell {
  min-height: 100vh;
  background: var(--color-slate);
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 32px;
}
.hero-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero .btn { padding: 18px 40px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-amber);
  margin: 0 0 32px;
}
.hero-eyebrow::before {
  content: "";
  display: block;
  width: 1px;
  height: 16px;
  background: var(--color-amber);
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 72px;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--color-white);
  max-width: 800px;
  margin: 0;
  text-wrap: balance;
}
.hero-headline .accent {
  color: var(--color-white);
  text-decoration: underline;
  text-decoration-color: var(--color-amber);
  text-decoration-thickness: 4px;
  text-underline-offset: 10px;
  text-decoration-skip-ink: none;
}

.hero-subline {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.45;
  color: var(--color-stone);
  max-width: 560px;
  margin: 24px 0 0;
  text-wrap: pretty;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-trust {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-stone);
  margin: 32px 0 0;
  text-align: center;
}

/* Hamburger toggle — hidden on desktop, shown <768px.
   Lives inside .nav-right next to the "Talk to us" button. */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-left: 8px;
}
.nav-toggle-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-white);
  transition: transform var(--dur-1) var(--ease),
              opacity var(--dur-1) var(--ease);
}
.nav.is-open .nav-toggle-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav-toggle-line:nth-child(2) { opacity: 0; }
.nav.is-open .nav-toggle-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav panel — slate full-width drop-down below the bar. */
.nav { position: relative; }
.nav-panel { display: none; }
.nav.is-open .nav-panel {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--color-slate);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 20px 24px;
  z-index: 50;
}
.nav-panel a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 18px;
  color: var(--color-white);
  text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0.95;
  transition: opacity var(--dur-1) var(--ease);
}
.nav-panel a:hover,
.nav-panel a:focus { opacity: 1; }
.nav-panel .btn {
  margin-top: 16px;
  padding: 14px 24px;
  font-size: 15px;
  align-self: stretch;
  border-bottom: 0;
}

/* Responsive guardrails — hero + nav */
@media (max-width: 900px) {
  .nav-inner {
    grid-template-columns: auto 1fr auto;
    gap: 16px;
    padding: 0 20px;
  }
  .hero { padding: 56px 24px; }
  .hero-headline { font-size: 52px; }
  .hero-subline { font-size: 20px; }
}
@media (max-width: 767px) {
  .nav-links { display: none; }
  .nav-right .btn { display: none; }
  .nav-toggle { display: inline-flex; }
}
@media (max-width: 520px) {
  .hero-headline { font-size: 40px; letter-spacing: -0.025em; }
  .hero-headline .accent { text-decoration-thickness: 3px; text-underline-offset: 7px; }
  .hero-subline { font-size: 18px; }
  .hero-ctas { width: 100%; flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
}

/* ------------------------------------------------------------
   Products section — Fog ground, 4-column grid.
   Amber confined to: the Live badge, the live card left accent,
   and the Visit link. Coming-soon tiles are locked rooms, not
   empty placeholders.
   ------------------------------------------------------------ */
.products-section {
  background: var(--color-fog);
  padding: 96px 32px;
}
.products-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.products-head {
  text-align: center;
  margin: 0 auto;
  max-width: 720px;
}
.products-eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-amber);
  margin: 0;
}
.products-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--color-slate);
  margin: 12px 0 0;
  text-wrap: balance;
}
.products-subline {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.55;
  color: var(--color-stone);
  max-width: 560px;
  margin: 16px auto 0;
  text-wrap: pretty;
}

.products-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-tile {
  position: relative;
  background: var(--color-white);
  border: 1px solid var(--color-hair);
  border-left-width: 3px;
  border-left-color: transparent;
  border-radius: var(--border-radius);
  padding: 24px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  transition: border-color 150ms var(--ease);
}
.product-tile .badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--border-radius);
}
.product-tile .badge.is-live {
  background: var(--color-amber);
  color: var(--color-slate);
}
.product-tile .badge.is-soon {
  background: rgba(107, 122, 141, 0.15);
  color: var(--color-stone);
}
.product-tile .name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--color-slate);
  margin: 36px 0 0;
}
.product-tile .copy {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.55;
  color: var(--color-stone);
  margin: 12px 0 0;
  max-width: 32ch;
}
.product-tile .foot {
  margin-top: auto;
  padding-top: 24px;
}
.product-tile .visit {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--color-amber);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-1) var(--ease);
}
.product-tile .visit:hover { border-bottom-color: var(--color-amber); }

.product-tile.is-live { border-left-color: var(--color-amber); }
.product-tile.is-live:hover {
  border-top-color: var(--color-slate);
  border-right-color: var(--color-slate);
  border-bottom-color: var(--color-slate);
}

.product-tile.is-soon {
  background: var(--color-fog);
  border-color: var(--color-hair);
  border-left-color: var(--color-hair);
}
.product-tile.is-soon .name { color: var(--color-stone); }
.product-tile.is-soon .copy { color: var(--color-stone); opacity: 0.85; }

@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .products-section { padding: 72px 20px; }
  .products-grid { grid-template-columns: 1fr; }
  .products-headline { font-size: 32px; }
  .products-subline { font-size: 16px; }
}

/* ------------------------------------------------------------
   Why Lynkd — Slate ground. The dark contrast section between
   Products (Fog) and Bespoke (Fog).
   Amber confined to: the eyebrow, the three numbers, and the
   40px rule under the quote. Nothing else.
   ------------------------------------------------------------ */
.why-section {
  background: var(--color-slate);
  padding: 96px 32px;
  color: var(--color-white);
}
.why-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.why-head {
  text-align: center;
  margin: 0 auto;
  max-width: 760px;
}
.why-eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-amber);
  margin: 0;
}
.why-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 48px;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--color-white);
  margin: 12px 0 0;
  text-wrap: balance;
}
.why-subline {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.6;
  color: var(--color-stone);
  max-width: 600px;
  margin: 16px auto 0;
  text-wrap: pretty;
}

.why-stats {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.why-stat {
  padding: 0 32px;
}
.why-stat + .why-stat {
  border-left: 1px solid var(--rule-soft);
}
.why-stat .number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 64px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--color-amber);
  margin: 0;
  font-variant-numeric: lining-nums;
}
.why-stat .unit {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  color: var(--color-stone);
  margin: 4px 0 0;
}
.why-stat .label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.35;
  letter-spacing: -0.005em;
  color: var(--color-white);
  margin: 16px 0 0;
}
.why-stat .support {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-stone);
  margin: 8px 0 0;
  max-width: 34ch;
}

.why-quote-wrap {
  margin-top: 72px;
  border-top: 1px solid var(--rule-firm);
  padding-top: 48px;
  text-align: center;
}
.why-quote {
  font-family: var(--font-display);
  font-weight: 600;
  font-style: italic;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: -0.005em;
  color: var(--color-white);
  max-width: 720px;
  margin: 0 auto;
  text-wrap: pretty;
}
.why-quote em {
  font-style: normal;
  font-weight: 700;
  padding-inline: 0.08em;
}
.why-rule-amber {
  width: 40px;
  height: 1px;
  background: var(--color-amber);
  margin: 32px auto 0;
  border: 0;
}

@media (max-width: 900px) {
  .why-stats { grid-template-columns: 1fr; }
  .why-stat { padding: 32px 0; }
  .why-stat + .why-stat {
    border-left: 0;
    border-top: 1px solid var(--rule-soft);
  }
  .why-stat:first-child { padding-top: 0; }
}
@media (max-width: 560px) {
  .why-section { padding: 72px 20px; }
  .why-headline { font-size: 36px; }
  .why-subline { font-size: 17px; }
  .why-stat .number { font-size: 56px; }
  .why-quote { font-size: 20px; }
}

/* ------------------------------------------------------------
   Bespoke + Contact — White ground. Two-column: founder pitch
   on the left, slim form card on the right. Amber stays confined
   to the eyebrow, the 3px card top accent, the em-dash bullets,
   and the submit button.
   ------------------------------------------------------------ */
.bespoke-section {
  background: var(--color-white);
  padding: 96px 32px;
}
.bespoke-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
}

.bespoke-eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-amber);
  margin: 0;
}
.bespoke-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--color-slate);
  margin: 12px 0 0;
  text-wrap: balance;
}
.bespoke-copy {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-body);
  max-width: 480px;
  margin: 24px 0 0;
  text-wrap: pretty;
}
.bespoke-copy + .bespoke-copy { margin-top: 20px; }

.bespoke-bullets {
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 480px;
}
.bespoke-bullets li {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  color: var(--color-stone);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: baseline;
}
.bespoke-bullets li::before {
  content: "\2014";
  color: var(--color-amber);
  font-weight: 500;
  line-height: 1;
}

.bespoke-form {
  background: var(--color-white);
  border: 1px solid var(--color-hair);
  border-top: 3px solid var(--color-amber);
  border-radius: var(--border-radius);
  padding: 40px;
  width: 100%;
  max-width: 520px;
  justify-self: end;
}
.bespoke-form-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--color-slate);
  margin: 0 0 32px;
}

.bespoke-form-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.bespoke-field {
  display: flex;
  flex-direction: column;
}
.bespoke-field label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  line-height: 1.3;
  color: var(--color-slate);
  margin-bottom: 6px;
}
.bespoke-field input,
.bespoke-field textarea {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: var(--color-body);
  background: var(--color-white);
  border: 1px solid var(--color-hair);
  border-radius: var(--border-radius);
  padding: 0 12px;
  width: 100%;
  height: 44px;
  outline: none;
  transition: border-color var(--dur-1) var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
.bespoke-field textarea {
  height: 120px;
  padding: 12px;
  resize: vertical;
  min-height: 88px;
}
.bespoke-field input::placeholder,
.bespoke-field textarea::placeholder {
  color: var(--color-stone);
  opacity: 1;
}
.bespoke-field input:focus,
.bespoke-field textarea:focus {
  border-color: var(--color-slate);
}

.bespoke-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 44px;
  margin-top: 8px;
  background: var(--color-amber);
  color: var(--color-slate);
  border: 1.5px solid var(--color-amber);
  border-radius: var(--border-radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: background-color var(--dur-1) var(--ease),
              border-color var(--dur-1) var(--ease);
}
.bespoke-submit:hover {
  background: #D9941A;
  border-color: #D9941A;
}

.bespoke-smallprint {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  line-height: 1.5;
  color: var(--color-stone);
  text-align: center;
  margin: 16px 0 0;
}

@media (max-width: 960px) {
  .bespoke-inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .bespoke-form {
    justify-self: stretch;
    max-width: none;
  }
}
@media (max-width: 560px) {
  .bespoke-section { padding: 72px 20px; }
  .bespoke-headline { font-size: 32px; }
  .bespoke-copy { font-size: 16px; }
  .bespoke-form { padding: 28px; }
}

/* ------------------------------------------------------------
   Site footer — Slate ground, no amber. The quiet, confident
   close. 4 cols (Brand / Products / Company / Legal) → 2×2 at
   tablet → single stack on mobile. Divider at 8% white (not the
   shared 10% --rule-soft, per design spec).
   ------------------------------------------------------------ */
.site-footer {
  background: var(--color-slate);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 64px 32px 40px;
  color: var(--color-stone);
}
.site-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.site-footer-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}

.site-footer-brand .site-footer-logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.site-footer-brand .site-footer-logo img {
  height: 28px;
  width: auto;
  display: block;
}
.site-footer-tagline {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-stone);
  margin: 16px 0 0;
  max-width: 28ch;
}
.site-footer-registered {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  line-height: 1.6;
  color: var(--color-stone);
  opacity: 0.7;
  margin: 16px 0 0;
  max-width: 32ch;
}

.site-footer-col h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-white);
  margin: 0 0 20px;
}
.site-footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.site-footer-col a,
.site-footer-col .site-footer-static {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.4;
  color: var(--color-stone);
  text-decoration: none;
  transition: color 150ms var(--ease);
  display: inline-block;
}
.site-footer-col a:hover {
  color: var(--color-white);
}
.site-footer-col a.is-current { color: var(--color-white); }
.site-footer-col .site-footer-static {
  cursor: default;
  opacity: 0.5;
}
.site-footer-col .site-footer-soft {
  opacity: 0.5;
  margin-left: 6px;
}

.site-footer-divider {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 48px 0 32px;
}

.site-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.site-footer-bottom p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  line-height: 1.5;
  color: var(--color-stone);
  opacity: 0.7;
  margin: 0;
}

@media (max-width: 900px) {
  .site-footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
@media (max-width: 560px) {
  .site-footer { padding: 56px 20px 32px; }
  .site-footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .site-footer-divider { margin: 40px 0 24px; }
  .site-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* ------------------------------------------------------------
   About page — four stacked sections:
     1. Page hero (Slate)
     2. Story (white) — 55/45 grid, copy on left, sticky
        founding-principle callout on right
     3. Founders (Fog) — three cards, circular initials avatar
        (the only sanctioned round element on the site)
     4. Closer (Slate) — centered CTA pair
   Amber confined to eyebrows, accent borders, role labels,
   and the primary CTA.
   ------------------------------------------------------------ */
.about-eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-amber);
  margin: 0;
}

/* Section 1 — Page hero */
.about-page-hero {
  background: var(--color-slate);
  padding: 96px 32px 80px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.about-page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.about-page-hero-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 56px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-white);
  max-width: 760px;
  margin: 12px 0 0;
  text-wrap: balance;
}
.about-page-hero-subline {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.6;
  color: var(--color-stone);
  max-width: 600px;
  margin: 24px 0 0;
  text-wrap: pretty;
}

/* Section 2 — Story */
.about-story {
  background: var(--color-white);
  padding: 96px 32px;
}
.about-story-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 80px;
  align-items: start;
}
.about-story-copy .about-eyebrow { margin-bottom: 32px; }
.about-story-copy p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.8;
  color: var(--color-body);
  margin: 0;
  text-wrap: pretty;
}
.about-story-copy p + p { margin-top: 24px; }
.about-story-copy .about-story-emphasis {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--color-slate);
  font-style: normal;
}

.about-callout {
  position: sticky;
  top: 96px;
  background: var(--color-white);
  border: 1px solid var(--color-hair);
  border-left: 3px solid var(--color-amber);
  border-radius: var(--border-radius);
  padding: 40px;
}
.about-callout-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-stone);
  margin: 0 0 20px;
}
.about-callout-quote {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--color-slate);
  margin: 0 0 24px;
  text-wrap: balance;
}
.about-callout-explanation {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-stone);
  margin: 0;
}
.about-callout hr {
  border: 0;
  border-top: 1px solid var(--color-hair);
  margin: 32px 0;
}
.about-facts {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-fact-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--color-slate);
  margin: 0;
}
.about-fact-desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-stone);
  margin: 4px 0 0;
}

/* Section 3 — Founders */
.about-founders {
  background: var(--color-fog);
  padding: 96px 32px;
}
.about-founders-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.about-founders-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.about-founders-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--color-slate);
  margin: 12px 0 0;
  text-wrap: balance;
}
.about-founders-subline {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.55;
  color: var(--color-stone);
  max-width: 520px;
  margin: 16px auto 0;
  text-wrap: pretty;
}
.about-founders-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.about-founder {
  background: var(--color-white);
  border: 1px solid var(--color-hair);
  border-top: 3px solid var(--color-amber);
  border-radius: var(--border-radius);
  padding: 40px;
  display: flex;
  flex-direction: column;
}
.about-founder-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-slate);
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.01em;
}
.about-founder-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--color-slate);
  margin: 20px 0 0;
}
.about-founder-role {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.3;
  letter-spacing: 0.01em;
  color: var(--color-amber);
  margin: 4px 0 0;
}
.about-founder-bio {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-stone);
  margin: 16px 0 0;
}

/* Section 4 — Closer */
.about-closer {
  background: var(--color-slate);
  padding: 80px 32px;
  text-align: center;
}
.about-closer-inner {
  max-width: 720px;
  margin: 0 auto;
}
.about-closer-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 40px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--color-white);
  margin: 0;
  text-wrap: balance;
}
.about-closer-subline {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  color: var(--color-stone);
  margin: 16px 0 0;
}
.about-closer-ctas {
  margin-top: 40px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .about-story-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-callout { position: static; }
  .about-founders-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .about-page-hero { padding: 72px 24px 64px; }
  .about-page-hero-headline { font-size: 42px; }
  .about-page-hero-subline { font-size: 19px; }
  .about-story { padding: 72px 24px; }
  .about-founders { padding: 72px 24px; }
  .about-founders-headline { font-size: 32px; }
  .about-closer { padding: 64px 24px; }
  .about-closer-headline { font-size: 32px; }
}
@media (max-width: 560px) {
  .about-page-hero { padding: 64px 20px 56px; }
  .about-page-hero-headline { font-size: 34px; }
  .about-page-hero-subline { font-size: 17px; }
  .about-story { padding: 64px 20px; }
  .about-story-copy p { font-size: 16px; }
  .about-callout { padding: 28px; }
  .about-callout-quote { font-size: 22px; }
  .about-founders { padding: 64px 20px; }
  .about-founder { padding: 28px; }
  .about-closer { padding: 56px 20px; }
  .about-closer-headline { font-size: 26px; }
  .about-closer-subline { font-size: 17px; }
  .about-closer-ctas { flex-direction: column; }
  .about-closer-ctas .btn { width: 100%; }
}

/* ------------------------------------------------------------
   Legal documents — Privacy, Terms, Cookies.
   Long-form reading column, 740px max. Slate headings, stone
   section-number prefixes, hairline rules under H2s, em-dash
   bullets, fog-banded tables with slate header strip. No amber
   anywhere — these are reference documents, not pitches.
   ------------------------------------------------------------ */
.legal-doc {
  background: var(--color-white);
  padding: 80px 32px 96px;
}
.legal-doc-inner {
  max-width: 740px;
  margin: 0 auto;
}

.legal-doc h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 40px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--color-slate);
  margin: 0;
}
.legal-doc .updated {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-stone);
  margin: 8px 0 0;
}

.legal-doc .lede {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.8;
  color: var(--color-body);
  background: var(--color-fog);
  border-left: 3px solid var(--color-hair);
  padding: 20px 24px;
  margin: 32px 0 0;
}

.legal-doc h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: -0.005em;
  color: var(--color-slate);
  border-bottom: 1px solid var(--color-hair);
  padding-bottom: 12px;
  margin: 56px 0 24px;
}
.legal-doc h2 .num {
  color: var(--color-stone);
  font-weight: 700;
  margin-right: 12px;
}

.legal-doc h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  line-height: 1.3;
  letter-spacing: -0.005em;
  color: var(--color-slate);
  margin: 28px 0 12px;
}
.legal-doc h3 .num {
  color: var(--color-stone);
  font-weight: 600;
  margin-right: 8px;
}

.legal-doc p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.8;
  color: var(--color-body);
  margin: 0 0 16px;
}
.legal-doc p:last-child { margin-bottom: 0; }

.legal-doc ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}
.legal-doc ul li {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.8;
  color: var(--color-body);
  padding-left: 20px;
  position: relative;
}
.legal-doc ul li::before {
  content: "\2014";
  color: var(--color-stone);
  position: absolute;
  left: 0;
  top: 0;
}

.legal-doc address {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.8;
  color: var(--color-body);
  margin: 0 0 16px;
}
.legal-doc address .line { display: block; }

.legal-doc a {
  color: var(--color-slate);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}
.legal-doc a:hover { text-decoration-thickness: 2px; }

.legal-doc .table-wrap {
  border: 1px solid var(--color-hair);
  border-radius: var(--border-radius);
  overflow-x: auto;
  margin: 0 0 16px;
}
.legal-doc table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  color: var(--color-body);
}
.legal-doc thead th {
  background: var(--color-slate);
  color: var(--color-white);
  text-align: left;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 12px 16px;
  border-bottom: 1px solid var(--color-hair);
}
.legal-doc tbody td {
  padding: 12px 16px;
  border-top: 1px solid var(--color-hair);
  vertical-align: top;
}
.legal-doc tbody tr:nth-child(odd) td { background: var(--color-white); }
.legal-doc tbody tr:nth-child(even) td { background: var(--color-fog); }
.legal-doc tbody td:first-child {
  font-weight: 500;
  color: var(--color-slate);
  white-space: nowrap;
}
.legal-doc tbody td.wrap:first-child { white-space: normal; }

@media (max-width: 900px) {
  .legal-doc { padding: 64px 24px 80px; }
  .legal-doc h1 { font-size: 32px; }
}
@media (max-width: 560px) {
  .legal-doc { padding: 56px 20px 72px; }
  .legal-doc h1 { font-size: 28px; }
  .legal-doc h2 { font-size: 20px; }
  .legal-doc p,
  .legal-doc ul li,
  .legal-doc address { font-size: 16px; }
  .legal-doc table { font-size: 14px; }
  .legal-doc thead th,
  .legal-doc tbody td { padding: 10px 12px; }
}
