/* =================================================================
   THEME — change these to re-skin the whole site.
   Palette + type are modeled on the live Carta homepage design.
   NOTE: Carta's heading font is "SangBleu Versailles" (a licensed
   commercial typeface). It is NOT embedded here. "Fraunces" (Google
   Fonts, free) is used as a close, high-contrast serif substitute.
   Body = Plus Jakarta Sans, labels = IBM Plex Mono (both real, free).
   ================================================================= */
:root {
  /* --- Brand palette (sampled from carta.com) --- */
  --color-bg:          #ffffff;  /* page background */
  --color-surface:     #f1f1f1;  /* light block / card tint */
  --color-surface-2:   #dedfdf;  /* slightly deeper gray block */
  --color-ink:         #1a1a1a;  /* primary text (near-black) */
  --color-ink-soft:    #656b6b;  /* secondary text */
  --color-muted:       #a7aaaa;  /* tertiary / captions */
  --color-accent:      #0f9d63;  /* emerald accent */
  --color-accent-ink:  #0a4d31;  /* readable dark text on accent */
  --color-dark:        #394040;  /* dark slate sections */
  --color-darker:      #1a1a1a;  /* near-black sections / buttons */
  --color-on-dark:     #ffffff;  /* text on dark */
  --color-line:        #e6e6e6;  /* hairline borders */

  /* --- Typography --- */
  --font-display: "Cormorant Garamond", "Times New Roman", serif; /* sub for SangBleu Versailles */
  --font-body:    "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono:    "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  --fs-hero:   clamp(2.75rem, 7vw, 5.25rem); /* ~84px */
  --fs-mega:   clamp(3rem, 10vw, 9rem);      /* statement headline ~144px */
  --fs-h2:     clamp(2rem, 4.5vw, 3.5rem);
  --fs-h3:     1.4rem;
  --fs-stat:   clamp(2.25rem, 4.5vw, 3.5rem);
  --fs-body:   1.0625rem;
  --lh-body:   1.6;
  --track-display: -0.03em; /* tight letter-spacing like the real site */

  /* --- Shape & rhythm --- */
  --radius:        8px;     /* Carta uses small 8px radii */
  --radius-lg:     16px;
  --radius-pill:   999px;
  --maxw:          1240px;
  --gutter:        clamp(1.25rem, 4vw, 3.5rem);
  --section-pad:   clamp(4rem, 9vw, 8rem);
  --shadow:        0 18px 50px rgba(26, 26, 26, 0.10);
}

/* =================================================================
   BASE
   ================================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--color-ink);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 300;            /* delicate Cormorant Garamond at light weight */
  line-height: 1.04;
  letter-spacing: var(--track-display);
  margin: 0;
}
p { margin: 0; color: var(--color-ink-soft); }
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-pad); }

/* Mono uppercase eyebrow/labels with a leading accent square — a signature Carta detail */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-ink-soft);
  margin-bottom: 1.25rem;
}
.eyebrow::before { content: ""; width: 11px; height: 11px; background: var(--color-accent); flex: none; }

/* Section-background utilities for Carta-style rhythm */
.bg-surface { background: var(--color-surface); }

/* Centered oversized section header (Carta pattern) */
.feature-head.center { max-width: 26ch; text-align: center; margin: 0 auto 3.5rem; }
.feature-head.center h2 { font-size: clamp(2.6rem, 6vw, 4.4rem); }

/* =================================================================
   BUTTONS  (near-black solid + light outline, 8px radius)
   ================================================================= */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 500; font-size: 0.97rem;
  padding: 0.8rem 2rem 0.9rem;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.05s;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--color-ink); color: #fff; }
.btn-primary:hover { background: #000; }
.btn-secondary { background: var(--color-bg); color: var(--color-ink); border-color: var(--color-ink); }
.btn-secondary:hover { background: var(--color-ink); color: #fff; }
.btn-on-dark { background: var(--color-bg); color: var(--color-ink); }
.btn-on-dark:hover { background: var(--color-accent); color: #fff; }
.btn-ghost-dark { background: transparent; color: var(--color-on-dark); border-color: rgba(255,255,255,0.6); }
.btn-ghost-dark:hover { background: var(--color-on-dark); color: var(--color-ink); }

/* =================================================================
   HEADER / NAV
   ================================================================= */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-line);
}
.nav { display: flex; align-items: center; gap: 2.25rem; height: 70px; }
.logo { font-family: var(--font-display); font-size: 1.7rem; font-weight: 400; letter-spacing: -0.04em; }
.nav-links { display: flex; gap: 1.75rem; list-style: none; margin: 0; padding: 0; }
.nav-links a { font-weight: 500; font-size: 0.95rem; color: var(--color-ink); }
.nav-links a:hover { color: var(--color-accent); }
.nav-actions { margin-left: auto; display: flex; align-items: center; gap: 1.1rem; }
.nav-actions .signin { font-weight: 500; font-size: 0.92rem; }
.nav-toggle { display: none; background: none; border: 0; font-size: 1.5rem; cursor: pointer; color: var(--color-ink); }

/* =================================================================
   HERO
   ================================================================= */
.hero { padding-block: clamp(3.5rem, 8vw, 7rem) clamp(2.5rem, 6vw, 4.5rem); }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 3rem; align-items: center; }
.hero h1 { font-size: var(--fs-hero); max-width: 15ch; }
.hero p { font-size: 1.25rem; max-width: 50ch; margin-top: 1.75rem; color: var(--color-ink-soft); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.5rem; }

/* Wireframe globe diagram (inline SVG) */
.hero-visual svg { width: 100%; height: auto; display: block; }
.globe { color: var(--color-accent); }
.globe .wire        { fill: none; stroke: currentColor; stroke-width: 1.5; }
.globe .wire-dash   { fill: none; stroke: currentColor; stroke-width: 1.5; stroke-dasharray: 14 10; opacity: 0.55; }
.globe .tag         { fill: currentColor; }
.globe .tag-gray    { fill: var(--color-surface-2); }
.globe .marker      { fill: var(--color-ink); }
.globe .glabel      { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.5px; font-weight: 500; fill: var(--color-ink); }

/* --- motion --- */
.globe .globe-back { opacity: 0.4; }
.gbox { transform-box: fill-box; transform-origin: left center; }
.gpt { transform-box: fill-box; transform-origin: center; }
.globe .wire-dash { animation: globe-dashmove 3.2s linear infinite; }
@keyframes globe-dashmove { to { stroke-dashoffset: -48; } }
/* JS drives the phase in/out + meridian sweep on this group */
#globe-stage { transform-box: fill-box; transform-origin: center; }
@media (prefers-reduced-motion: reduce) {
  #globe-stage, .globe .wire-dash { animation: none; opacity: 1; transform: none; }
}
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 460px; margin-top: 1rem; }
}

/* =================================================================
   SUITE CARDS
   ================================================================= */
.suite-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.suite-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex; flex-direction: column; min-height: 300px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.suite-card:nth-child(2) { background: var(--color-surface-2); }
.suite-card:nth-child(3) { background: var(--color-accent); }
.suite-card:nth-child(3) h3, .suite-card:nth-child(3) p { color: var(--color-bg); }
.suite-card:nth-child(3) .arrow { color: #fff; }
.suite-card:hover { transform: translateY(-4px); }
.suite-card .thumb {
  height: 150px; border-radius: var(--radius); margin-bottom: 1.5rem;
  background: rgba(26,26,26,0.06);
}
.suite-card:nth-child(3) .thumb { background: rgba(255,255,255,0.18); }
.suite-card h3 { font-size: 1.55rem; margin-bottom: 0.6rem; }
.suite-card .arrow { margin-top: auto; color: var(--color-ink); font-weight: 500; font-family: var(--font-body); }

/* =================================================================
   INTRO STATEMENT (giant serif)
   ================================================================= */
.intro-band { text-align: center; }
.intro-band h2 { font-size: var(--fs-mega); max-width: 14ch; margin: 0 auto; line-height: 0.95; }
.intro-band p { font-size: 1.3rem; max-width: 56ch; margin: 2rem auto 0; }

/* =================================================================
   SOLUTIONS PILLS
   ================================================================= */
.pill-row { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; margin-top: 2.5rem; }
.pill {
  border: 1.5px solid var(--color-ink);
  border-radius: var(--radius-pill);
  padding: 0.6rem 1.4rem; font-weight: 500; font-size: 0.95rem;
  transition: background 0.18s, color 0.18s;
}
.pill:hover { background: var(--color-ink); color: var(--color-bg); }

/* =================================================================
   FEATURE GRID ("The difference")
   ================================================================= */
.feature-head { max-width: 24ch; margin-bottom: 3.5rem; }
.feature-head h2 { font-size: var(--fs-h2); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem 2.5rem; }
.feature { padding-top: 0; }
/* Dotted-grid panel with corner tick-marks behind the icon — Carta "difference" pattern */
.feature .icon {
  width: 100%; height: 150px; border-radius: 0; margin-bottom: 1.5rem;
  display: grid; place-items: center; color: var(--color-accent); font-size: 2rem;
  background-color: transparent;
  background-image:
    radial-gradient(var(--color-line) 1.1px, transparent 1.3px),
    linear-gradient(var(--color-ink), var(--color-ink)),
    linear-gradient(var(--color-ink), var(--color-ink)),
    linear-gradient(var(--color-ink), var(--color-ink)),
    linear-gradient(var(--color-ink), var(--color-ink));
  background-size: 15px 15px, 7px 7px, 7px 7px, 7px 7px, 7px 7px;
  background-position: 3px 3px, 0 0, 100% 0, 0 100%, 100% 100%;
  background-repeat: repeat, no-repeat, no-repeat, no-repeat, no-repeat;
}
.feature h3 { font-size: var(--fs-h3); margin-bottom: 0.6rem; letter-spacing: -0.02em; }

/* =================================================================
   AI BANNER (dark slate)
   ================================================================= */
.ai-banner { background: var(--color-dark); color: var(--color-on-dark); border-radius: var(--radius-lg); }
.ai-banner .inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 3rem; align-items: center; padding: clamp(2rem, 5vw, 4rem); }
.ai-banner .eyebrow { color: var(--color-accent); }
.ai-banner h2 { font-size: var(--fs-h2); color: var(--color-on-dark); }
.ai-banner p { color: rgba(255,255,255,0.78); font-size: 1.2rem; margin-top: 1.25rem; }
.ai-banner .btn { margin-top: 2rem; }
.ai-banner .media { aspect-ratio: 4 / 3; border-radius: var(--radius); background: var(--color-accent); }

/* =================================================================
   CUSTOMER QUOTES
   ================================================================= */
.quotes-head { font-family: var(--font-mono); text-align: center; margin-bottom: 2.5rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--color-ink-soft); font-size: 0.85rem; }
.quote-track { display: flex; gap: 1.25rem; overflow-x: auto; padding-bottom: 1rem; scroll-snap-type: x mandatory; }
.quote-card {
  flex: 0 0 min(440px, 86%); scroll-snap-align: start;
  background: var(--color-surface); border-radius: var(--radius-lg); padding: 2.25rem;
}
.quote-card blockquote { margin: 0 0 1.75rem; font-family: var(--font-display); font-size: 1.4rem; line-height: 1.3; letter-spacing: -0.02em; color: var(--color-ink); }
.quote-author { display: flex; align-items: center; gap: 0.85rem; }
.quote-author .avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--color-surface-2); flex: none; }
.quote-author .name { font-weight: 500; font-size: 0.95rem; color: var(--color-ink); }
.quote-author .role { font-size: 0.85rem; color: var(--color-ink-soft); }

/* =================================================================
   LOGO STRIP
   ================================================================= */
.logo-strip { display: flex; flex-wrap: wrap; gap: 2.5rem 3.5rem; align-items: center; justify-content: center; }
.logo-strip .brand { font-family: var(--font-display); font-size: 1.4rem; font-weight: 400; color: var(--color-muted); }

/* =================================================================
   STATS BAND (near-black) — mono numerals
   ================================================================= */
.stats-band { background: var(--color-darker); color: var(--color-on-dark); }
.stats-band .label { font-family: var(--font-mono); text-align: center; text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.8rem; color: var(--color-accent); margin-bottom: 3.5rem; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3.5rem 2rem; }
.stats-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.stat { text-align: center; }
.stat .num { font-family: var(--font-display); font-size: var(--fs-stat); color: var(--color-on-dark); letter-spacing: -0.02em; }
.stat .desc { font-family: var(--font-mono); color: rgba(255,255,255,0.7); margin-top: 0.75rem; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.03em; }

/* =================================================================
   LEAD TEXT (intro lead paragraphs)
   ================================================================= */
.lead { font-size: 1.3rem; max-width: 60ch; color: var(--color-ink-soft); }
.intro-band .lead { font-size: 1.35rem; max-width: 58ch; }

/* =================================================================
   STEPS (How it works)
   ================================================================= */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.75rem; margin-top: 3rem; }
.step { padding-top: 1.5rem; border-top: 1.5px solid var(--color-ink); }
.step .num { font-family: var(--font-mono); font-size: 0.85rem; letter-spacing: 0.05em; color: var(--color-accent); }
.step h3 { font-size: 1.35rem; margin: 0.7rem 0 0.5rem; letter-spacing: -0.02em; }

/* =================================================================
   APPROACH GRID
   ================================================================= */
.approach-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 3rem; }
.approach { padding-top: 1.5rem; border-top: 1.5px solid var(--color-line); }
.approach h3 { font-size: 1.3rem; margin-bottom: 0.5rem; letter-spacing: -0.02em; }

/* =================================================================
   FAQ (native accordion)
   ================================================================= */
.faq { max-width: 760px; margin-top: 2.5rem; }
.faq details { border-top: 1px solid var(--color-line); padding: 1.2rem 0; }
.faq details:last-child { border-bottom: 1px solid var(--color-line); }
.faq summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1.5rem;
  font-family: var(--font-display); font-size: 1.4rem; letter-spacing: -0.02em; color: var(--color-ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--font-body); font-weight: 400; font-size: 1.6rem; color: var(--color-accent); line-height: 1; }
.faq details[open] summary::after { content: "\2013"; }
.faq details p { margin-top: 1rem; font-size: 1.08rem; max-width: 60ch; }

/* =================================================================
   REFERRAL FORM
   ================================================================= */
.refer-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem 1.5rem; max-width: 720px; margin: 2.75rem auto 0; text-align: left; }
.refer-form .full { grid-column: 1 / -1; }
.refer-form label { display: block; font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--color-ink-soft); margin-bottom: 0.5rem; }
.refer-form input,
.refer-form select,
.refer-form textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--color-ink);
  background: var(--color-bg); border: 1.5px solid var(--color-line); border-radius: var(--radius);
  padding: 0.8rem 0.9rem; transition: border-color 0.15s ease;
}
.refer-form input::placeholder, .refer-form textarea::placeholder { color: var(--color-muted); }
.refer-form .other-input { margin-top: 0.65rem; }
.refer-form .other-input[hidden] { display: none; }
.refer-form textarea { min-height: 120px; resize: vertical; font-family: var(--font-body); }
.refer-form input[type="file"] { padding: 0.7rem 0.9rem; background: var(--color-surface); cursor: pointer; }
.refer-form .field-hint { display: block; margin-top: 0.5rem; font-size: 0.85rem; color: var(--color-ink-soft); }
.form-note { grid-column: 1 / -1; text-align: center; margin-top: 0.75rem; font-family: var(--font-mono); font-size: 0.8rem; color: var(--color-ink-soft); }
.form-consent { grid-column: 1 / -1; margin-top: 1.5rem; max-width: 660px; margin-inline: auto; text-align: left; }
.consent-lead { font-size: 0.72rem; line-height: 1.55; color: var(--color-muted); margin-bottom: 1rem; }
.consent-item { display: flex; align-items: flex-start; gap: 0.65rem; margin-bottom: 0.85rem; cursor: pointer; }
.consent-item input[type="checkbox"] { margin-top: 2px; width: 18px; height: 18px; flex: none; accent-color: var(--color-accent); cursor: pointer; }
.consent-item span { font-size: 0.72rem; line-height: 1.55; color: var(--color-muted); }
.consent-item strong { color: var(--color-ink-soft); font-weight: 600; }
.form-consent a { color: var(--color-ink-soft); text-decoration: underline; }

/* Contact section */
.contact-row { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 2rem; }
.contact-item { display: flex; flex-direction: column; gap: 0.35rem; padding: 1.1rem 2rem; border: 1px solid var(--color-line); border-radius: var(--radius); min-width: 220px; transition: border-color 0.15s; }
.contact-item:hover { border-color: var(--color-accent); }
.contact-item .ci-label { font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.04em; font-size: 0.72rem; color: var(--color-accent); }
.contact-item .ci-value { font-family: var(--font-display); font-size: 1.4rem; color: var(--color-ink); letter-spacing: -0.02em; }

/* About body */
.about-body { max-width: 60ch; margin: 0 auto 3rem; text-align: center; }
.about-body p { font-size: 1.15rem; margin-bottom: 1.1rem; }

/* Hero eyebrow + lead spacing */
.hero .eyebrow { margin-bottom: 1rem; }
.hero .lead { font-family: var(--font-display); font-weight: 300; font-size: clamp(1.4rem, 2.5vw, 2rem); color: var(--color-ink); letter-spacing: -0.02em; margin-top: 1.25rem; }
.refer-form input:focus, .refer-form select:focus, .refer-form textarea:focus { outline: none; border-color: var(--color-accent); }
.refer-divider { grid-column: 1 / -1; font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--color-accent); border-top: 1px solid var(--color-line); padding-top: 1.4rem; margin: 0.5rem 0 0; }
.form-actions { grid-column: 1 / -1; display: flex; justify-content: center; margin-top: 0.75rem; }
.form-status { grid-column: 1 / -1; text-align: center; margin-top: 0.5rem; font-weight: 500; color: var(--color-accent); }
@media (max-width: 680px) { .refer-form { grid-template-columns: 1fr; } }

/* =================================================================
   CTA + RESOURCES
   ================================================================= */
.cta { text-align: center; }
.cta h2 { font-size: var(--fs-mega); line-height: 0.95; }
.cta .hero-actions { justify-content: center; margin-top: 2rem; }
.resource-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-top: 4rem; text-align: left; }
.resource-card { border-radius: var(--radius-lg); overflow: hidden; background: var(--color-surface); transition: transform 0.2s; }
.resource-card:hover { transform: translateY(-4px); }
.resource-card .cover { aspect-ratio: 16 / 11; background: var(--color-surface-2); }
.resource-card:nth-child(2) .cover { background: var(--color-accent); }
.resource-card:nth-child(3) .cover { background: var(--color-dark); }
.resource-card .body { padding: 1.25rem; }
.resource-card .tag { font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--color-ink-soft); }
.resource-card h3 { font-family: var(--font-body); font-size: 1.05rem; font-weight: 600; margin: 0.6rem 0 0.85rem; line-height: 1.3; letter-spacing: 0; }
.resource-card .date { font-family: var(--font-mono); font-size: 0.8rem; color: var(--color-muted); }

/* =================================================================
   FOOTER (near-black)
   ================================================================= */
.site-footer { background: var(--color-darker); color: var(--color-on-dark); padding-block: clamp(3.5rem, 6vw, 5.5rem); }
.footer-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 2.5rem; }
.footer-grid-4 { grid-template-columns: repeat(4, 1fr); }
.footer-col h4 { font-family: var(--font-mono); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--color-accent); margin: 0 0 1.1rem; font-weight: 500; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col a { color: rgba(255,255,255,0.75); font-size: 0.92rem; }
.footer-col a:hover { color: var(--color-on-dark); }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center;
  margin-top: 4rem; padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,0.16);
  font-size: 0.85rem; color: rgba(255,255,255,0.6);
}
.footer-bottom .links { display: flex; gap: 1.5rem; flex-wrap: wrap; }

/* =================================================================
   LEGAL PAGES (privacy / terms)
   ================================================================= */
.legal { max-width: 760px; margin: 0 auto; }
.legal h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); margin-bottom: 0.5rem; }
.legal .updated { font-family: var(--font-mono); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--color-ink-soft); margin-bottom: 2.5rem; }
.legal h2 { font-size: 1.6rem; letter-spacing: -0.02em; margin: 2.75rem 0 0.75rem; }
.legal h3 { font-family: var(--font-body); font-size: 1.02rem; font-weight: 600; letter-spacing: 0; margin: 1.5rem 0 0.4rem; }
.legal p { font-size: 1rem; line-height: 1.7; margin-bottom: 1rem; color: var(--color-ink-soft); }
.legal ul { margin: 0 0 1.25rem 1.4rem; color: var(--color-ink-soft); line-height: 1.7; }
.legal li { margin-bottom: 0.4rem; }
.legal a { color: var(--color-ink); text-decoration: underline; }
.legal strong { color: var(--color-ink); font-weight: 600; }
.legal .caps { text-transform: none; }

/* =================================================================
   RESPONSIVE
   ================================================================= */
@media (max-width: 960px) {
  .suite-grid, .feature-grid, .stats-grid, .stats-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .resource-grid, .steps-grid, .approach-grid { grid-template-columns: repeat(2, 1fr); }
  .ai-banner .inner { grid-template-columns: 1fr; }
  .footer-grid, .footer-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .nav-links, .nav-actions .signin { display: none; }
  .nav-toggle { display: block; }
  .suite-grid, .feature-grid, .stats-grid, .stats-grid.cols-4,
  .resource-grid, .steps-grid, .approach-grid { grid-template-columns: 1fr; }
  .footer-grid, .footer-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
