/* ────────────────────────────────────────────────────────────────────────────
   GLOBAL STYLES — getlong.lat
   ──────────────────────────────────────────────────────────────────────────── */

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

:root {
  /* Concept 02 palette */
  --bg:           #f2ece0;
  --bg-alt:       #ece5d4;
  --bg-dark:      #1a1208;
  --bg-dark2:     #251a0c;
  --surface:      #ffffff;
  --border:       #e0d4be;
  --border-mid:   #c8a97a;
  --ink:          #1a1208;
  --ink2:         #2c1a08;
  --muted:        #7a6245;
  --muted2:       #b0936a;
  --terra:        #b84c1e;
  --terra-light:  #e8703a;
  --terra-dim:    rgba(184,76,30,0.09);
  --terra-border: rgba(184,76,30,0.28);
  /* New Forest Green Accent */
  --accent-forest:       #3a5a40;
  --accent-forest-light: #588157;
  --accent-forest-dim:   rgba(58,90,64,0.09);
  --accent-forest-border:rgba(58,90,64,0.28);
  --gold:         #c8a97a;
  --gold-dim:     rgba(200,169,122,0.14);
  --gold-border:  rgba(200,169,122,0.4);
  /* semantic tag colors — muted to fit light theme */
  --tag-green:    #3d6b35;
  --tag-green-bg: rgba(61,107,53,0.07);
  --tag-green-br: rgba(61,107,53,0.22);
  --tag-blue:     #2a5f8f;
  --tag-blue-bg:  rgba(42,95,143,0.07);
  --tag-blue-br:  rgba(42,95,143,0.22);
  --tag-purple:   #5c3d8f;
  --tag-purple-bg:rgba(92,61,143,0.07);
  --tag-purple-br:rgba(92,61,143,0.22);
  --tag-orange:   #8f4a1e;
  --tag-orange-bg:rgba(143,74,30,0.07);
  --tag-orange-br:rgba(143,74,30,0.22);
  /* Good Omens brand */
  --go-red:        #F24E5A;
  --go-red-dim:    rgba(242,78,90,0.07);
  --go-red-border: rgba(242,78,90,0.22);
  --go-grey:       #5A5A5A;
}

html { scroll-behavior: smooth; }

body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
}

main { flex: 1; max-width: 800px; margin: 0 auto; padding: 60px 48px; width: 100%; }
h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 6vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 14px;
}

h1 span {
  color: var(--terra);
  font-style: italic;
}
/* ── LOGO WORDMARK ──────────────────────────────────────────────────────────
   get  = Playfair italic, weight 400 (light)
   long = Playfair upright, weight 700 (bold)
   .    = Playfair weight 900, terracotta
   lat  = Playfair upright, weight 700 (bold)
*/
.logo-mark {
  display: inline-flex;
  align-items: baseline;
  text-decoration: none;
  line-height: 1;
}
.logo-mark .l-get  {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.logo-mark .l-long {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.logo-mark .l-dot  {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  color: var(--terra);
  position: relative;
  top: -0.08em;
  margin: 0 0.01em;
}
.logo-mark .l-lat  {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* ── NAV ───────────────────────────────────────────────────────────────────── */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
  background: rgba(242,236,224,0.9);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo { font-size: 18px; color: var(--ink); }
.nav-logo .l-dot { font-size: 20px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--terra); }

/* ── HERO ──────────────────────────────────────────────────────────────────── */
.hero {
  max-width: 860px;
  margin: 0 auto;
  padding: 90px 48px 68px;
  text-align: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terra);
  border: 1px solid var(--terra-border);
  background: var(--terra-dim);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 36px;
  animation: fadeUp 0.5s ease both;
}
.hero-eyebrow::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--terra);
  animation: blink 2.4s ease infinite;
}
@keyframes blink {
  0%,100% { opacity:1; } 50% { opacity:0.3; }
}

.hero-wordmark {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 24px;
  animation: fadeUp 0.5s 0.08s ease both;
}
.hero-wordmark .l-get  { font-size: clamp(52px, 10vw, 90px); color: var(--ink); }
.hero-wordmark .l-long { font-size: clamp(52px, 10vw, 90px); color: var(--ink); }
.hero-wordmark .l-dot  { font-size: clamp(58px, 11vw, 98px); }
.hero-wordmark .l-lat  { font-size: clamp(52px, 10vw, 90px); color: var(--ink); }

.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(17px, 2.5vw, 22px);
  color: var(--muted);
  margin-bottom: 16px;
  animation: fadeUp 0.5s 0.14s ease both;
}

.hero-sub {
  font-size: 16px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.7;
  max-width: 440px;
  margin: 0 auto 40px;
  animation: fadeUp 0.5s 0.2s ease both;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 28px;
  margin-bottom: 2em;
  background: var(--accent-forest);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 15px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.15s;
  animation: fadeUp 0.5s 0.26s ease both;
  letter-spacing: 0.01em;
}
.hero-cta:hover { background: var(--accent-forest-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(58,90,64,0.28); }
.hero-cta svg { transition: transform 0.15s; }
.hero-cta:hover svg { transform: translateX(3px); }

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  animation: fadeUp 0.5s 0.32s ease both;
  flex-wrap: wrap;
}
.stat {
  padding: 0 40px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat:first-child { padding-left: 0; }
.stat:last-child  { border-right: none; padding-right: 0; }

.stat-value {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat-label {
  display: block;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted2);
  margin-top: 6px;
}

/* ── HAIRLINE ───────────────────────────────────────────────────────────────── */
.hairline {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

/* ── SECTION COMMON ─────────────────────────────────────────────────────────── */
.section       { max-width: 1020px; margin: 0 auto; padding: 80px 48px; }
.section-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted2);
  margin-bottom: 12px;
}
.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 14px;
  color: var(--ink);
}
.section-heading em { font-style: italic; font-weight: 400; color: var(--terra); }
.section-sub {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
  max-width: 480px;
  margin-bottom: 44px;
}

/* ── TOOLS GRID ─────────────────────────────────────────────────────────────── */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}
.tool-card {
  background: var(--surface);
  padding: 28px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: background 0.14s;
  position: relative;
}
a.tool-card:hover { background: #faf7f2; }
.tool-card.coming-soon { opacity: 0.45; pointer-events: none; }

.tool-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
}
.tool-icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: var(--terra-dim);
  border: 1px solid var(--terra-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.tool-icon.blue   { background: var(--tag-blue-bg);   border-color: var(--tag-blue-br); }
.tool-icon.yellow { background: var(--gold-dim);       border-color: var(--gold-border); }

.tool-badge {
  font-family: 'DM Mono', monospace;
  font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 100px; border: 1px solid;
}
.tool-badge.live { color: var(--terra); background: var(--terra-dim); border-color: var(--terra-border); }
.tool-badge.soon { color: var(--muted2); background: var(--bg-alt); border-color: var(--border); }

.tool-name { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: 5px; }
.tool-url  { font-family: 'DM Mono', monospace; font-size: 10px; color: var(--terra); margin-bottom: 12px; letter-spacing: 0.02em; }
.tool-url.blue   { color: var(--tag-blue); }
.tool-url.yellow { color: var(--muted2); }
.tool-desc { font-size: 13px; color: var(--muted); line-height: 1.6; font-weight: 300; flex: 1; margin-bottom: 18px; }
.tool-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.tool-tag  {
  font-family: 'DM Mono', monospace; font-size: 9px;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--muted2); background: var(--bg-alt);
  border: 1px solid var(--border); padding: 2px 7px; border-radius: 3px;
}
.tool-arrow {
  position: absolute; bottom: 26px; right: 26px;
  color: var(--border); font-size: 16px; transition: all 0.14s;
}
a.tool-card:hover .tool-arrow { color: var(--terra); transform: translate(3px, -3px); }

/* ── SOURCES SECTION ────────────────────────────────────────────────────────── */
.sources-section { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.sources-inner   { max-width: 1020px; margin: 0 auto; padding: 80px 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }

.sources-cta {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 24px; background: var(--accent-forest); color: #fff;
  font-family: 'DM Sans', sans-serif; font-weight: 500; font-size: 14px;
  border-radius: 6px; text-decoration: none; transition: all 0.14s;
}
.sources-cta:hover { background: var(--accent-forest-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(58,90,64,0.25); }
.sources-cta svg { transition: transform 0.14s; }
.sources-cta:hover svg { transform: translateX(3px); }

.sources-preview { display: flex; flex-direction: column; gap: 8px; }
.zoom-row {
  display: flex; align-items: center; gap: 12px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 8px; padding: 13px 16px; text-decoration: none;
  transition: all 0.14s;
}
.zoom-row:hover { border-color: var(--terra); transform: translateX(4px); }
.zoom-row-icon  { font-size: 17px; width: 30px; text-align: center; flex-shrink: 0; }
.zoom-row-body  { flex: 1; }
.zoom-row-title { font-size: 13px; font-weight: 500; color: var(--ink); margin-bottom: 1px; }
.zoom-row-sub   { font-family: 'DM Mono', monospace; font-size: 10px; color: var(--muted); }
.zoom-row-count {
  font-family: 'DM Mono', monospace; font-size: 10px;
  color: var(--terra); background: var(--terra-dim); border: 1px solid var(--terra-border);
  padding: 2px 8px; border-radius: 100px; white-space: nowrap; flex-shrink: 0;
}

/* ── PHILOSOPHY ─────────────────────────────────────────────────────────────── */
.philosophy { background: var(--bg-dark); }
.philosophy-inner {
  max-width: 1020px; margin: 0 auto; padding: 80px 48px;
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 52px;
}
.phil-num   { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.14em; color: var(--terra); display: block; margin-bottom: 14px; }
.phil-title { font-family: 'Playfair Display', serif; font-size: 19px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 10px; color: var(--bg); }
.phil-body  { font-size: 14px; color: rgba(242,236,224,0.55); line-height: 1.7; font-weight: 300; }

/* ── FEATURES ───────────────────────────────────────────────────────────────── */
.features-strip {
  max-width: 1020px; margin: 0 auto; padding: 80px 48px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.feature-list { margin-top: 28px; display: flex; flex-direction: column; gap: 18px; }
.feature-item { display: flex; align-items: flex-start; gap: 14px; }
.feature-icon {
  width: 34px; height: 34px; border-radius: 7px;
  background: var(--terra-dim); border: 1px solid var(--terra-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; flex-shrink: 0; margin-top: 1px;
}
.feature-text strong { display: block; font-size: 14px; font-weight: 500; color: var(--ink); margin-bottom: 3px; }
.feature-text span   { font-size: 13px; color: var(--muted); line-height: 1.55; font-weight: 300; }

/* code window */
.code-window { background: var(--bg-dark); border-radius: 12px; overflow: hidden; box-shadow: 0 20px 52px rgba(26,18,8,0.16); }
.code-topbar {
  display: flex; align-items: center; gap: 7px;
  padding: 11px 16px; border-bottom: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.03);
}
.code-dot { width: 9px; height: 9px; border-radius: 50%; }
.code-dot:nth-child(1){background:#f87171}
.code-dot:nth-child(2){background:#fbbf24}
.code-dot:nth-child(3){background:#4ade80}
.code-title   { font-family: 'DM Mono', monospace; font-size: 10px; color: rgba(242,236,224,0.35); margin-left: 6px; }
.code-body    { padding: 22px; font-family: 'DM Mono', monospace; font-size: 12px; line-height: 1.9; }
.code-comment { color: rgba(242,236,224,0.28); font-style: italic; }
.code-key     { color: #93c5fd; }
.code-str     { color: #86efac; }
.code-bracket { color: rgba(242,236,224,0.45); }
.code-line    { display: flex; }
.code-indent  { display: inline-block; width: 18px; }
.code-indent2 { display: inline-block; width: 36px; }

/* ── ABOUT ──────────────────────────────────────────────────────────────────── */
.about-section { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.about-inner   { max-width: 1020px; margin: 0 auto; padding: 80px 48px; }
.about-card    {
  border-radius: 14px; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr;
  box-shadow: 0 8px 32px rgba(26,18,8,0.1);
  border: 1px solid var(--border);
}
.about-left {
  background: var(--surface); border-right: 1px solid var(--border);
  padding: 48px; display: flex; flex-direction: column; justify-content: space-between; gap: 28px;
}
.about-right {
  background: #fff; padding: 48px;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative; overflow: hidden;
}
.about-right::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--go-red), transparent);
}
.about-studio-name {
  font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--terra); margin-bottom: 14px; display: block;
}
.about-heading {
  font-family: 'Playfair Display', serif; font-size: clamp(20px,3vw,28px);
  font-weight: 700; letter-spacing: -0.025em; line-height: 1.15; margin-bottom: 14px; color: var(--ink);
}
.about-heading em { font-style: italic; font-weight: 400; color: var(--terra); }
.about-body    { font-size: 14px; color: var(--muted); line-height: 1.75; font-weight: 300; }
.about-body p+p { margin-top: 12px; }
.about-link {
  display: inline-flex; align-items: center; gap: 9px;
  margin-top: 24px; padding: 11px 20px;
  background: var(--terra-dim); border: 1px solid var(--terra-border);
  border-radius: 7px; text-decoration: none; font-weight: 500; font-size: 13px;
  color: var(--terra); transition: all 0.14s; width: fit-content;
}
.about-link:hover { background: rgba(184,76,30,0.14); border-color: var(--terra); transform: translateY(-2px); }
.about-link svg { transition: transform 0.14s; }
.about-link:hover svg { transform: translate(2px,-2px); }
.about-divider   { height: 1px; background: var(--border); margin: 24px 0; }
.about-divider.go { background: #ede9e4; }
.about-meta      { display: flex; flex-direction: column; gap: 9px; }
.about-meta-item { display: flex; align-items: center; gap: 9px; font-family: 'DM Mono', monospace; font-size: 11px; color: var(--muted); }
.about-meta-dot  { width: 5px; height: 5px; border-radius: 50%; background: var(--terra); flex-shrink: 0; opacity: 0.65; }
/* GO brand side */
.go-line1 { display: block; font-family: 'Playfair Display', serif; font-size: clamp(24px,3.5vw,36px); font-weight: 700; color: var(--go-red); letter-spacing: -0.02em; line-height: 1.1; }
.go-line2 { display: block; font-family: 'Playfair Display', serif; font-size: clamp(19px,2.8vw,28px); font-weight: 400; color: var(--go-grey); letter-spacing: -0.02em; line-height: 1.2; }
.go-tagline { font-size: 13px; color: var(--go-grey); line-height: 1.7; margin-top: 16px; font-weight: 300; }
.go-tags    { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.go-tag     {
  font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--go-grey); background: rgba(90,90,90,0.06);
  border: 1px solid rgba(90,90,90,0.14); padding: 3px 8px; border-radius: 3px;
}
.go-url {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: 'DM Mono', monospace; font-size: 12px; font-weight: 500;
  color: var(--go-red); text-decoration: none;
  padding: 9px 16px; border: 1.5px solid var(--go-red-border);
  border-radius: 6px; background: var(--go-red-dim); transition: all 0.14s; width: fit-content;
}
.go-url:hover { background: var(--go-red); color: #fff; border-color: var(--go-red); transform: translateY(-1px); }

/* ── CTA ────────────────────────────────────────────────────────────────────── */
.cta-wrap  { max-width: 1020px; margin: 0 auto; padding: 0 48px 96px; }
.cta-inner {
  background: var(--bg-dark); border-radius: 16px; padding: 64px;
  text-align: center; position: relative; overflow: hidden;
}
.cta-inner::before {
  content: ''; position: absolute; bottom: -40%; left: 50%; transform: translateX(-50%);
  width: 500px; height: 300px;
  background: radial-gradient(ellipse, rgba(184,76,30,0.14) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px,4.5vw,46px); font-weight: 700; letter-spacing: -0.03em;
  margin-bottom: 12px; color: var(--bg);
}
.cta-inner h2 em { font-style: italic; font-weight: 400; }
.cta-inner p { font-size: 15px; color: rgba(242,236,224,0.5); margin-bottom: 32px; line-height: 1.65; font-weight: 300; }
.cta-btn-row { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 2em;}
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; background: var(--accent-forest); color: #fff;
  font-family: 'DM Sans', sans-serif; font-weight: 500; font-size: 14px;
  border-radius: 6px; text-decoration: none; transition: all 0.14s;
}
.btn-primary:hover { background: var(--accent-forest-light); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(58,90,64,0.3); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; background: transparent; color: rgba(242,236,224,0.5);
  font-family: 'DM Sans', sans-serif; font-weight: 500; font-size: 14px;
  border-radius: 6px; border: 1px solid rgba(242,236,224,0.14); text-decoration: none; transition: all 0.14s;
}
.btn-ghost:hover { border-color: rgba(242,236,224,0.35); color: var(--bg); }

/* ── FOOTER ─────────────────────────────────────────────────────────────────── */
footer { background: var(--bg-dark2); border-top: 1px solid rgba(255,255,255,0.05); }
.footer-inner {
  max-width: 1020px; margin: 0 auto; padding: 36px 48px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.footer-logo { font-size: 16px; }
.footer-logo .l-get,
.footer-logo .l-long,
.footer-logo .l-lat  { color: rgba(242,236,224,0.8); }
.footer-logo .l-dot  { font-size: 18px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--terra-light);text-decoration: none; transition: color 0.14s;
}
.footer-links a:hover { text-decoration: underline; }
.footer-copy { font-family: 'DM Mono', monospace; font-size: 10px; color: var(--bg); letter-spacing: 0.04em; }

/* ── ANIMATIONS ─────────────────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ─────────────────────────────────────────────────────────────── */
@media (max-width: 800px) {
  nav { padding: 16px 24px; }
  .hero { padding: 60px 24px 48px; }
  .hero-stats .stat { padding: 0 24px; }
  .section { padding: 60px 24px; }
  .sources-inner { grid-template-columns: 1fr; padding: 56px 24px; gap: 36px; }
  .philosophy-inner { grid-template-columns: 1fr; padding: 56px 24px; gap: 36px; }
  .features-strip { grid-template-columns: 1fr; padding: 60px 24px; gap: 44px; }
  .about-inner { padding: 60px 24px; }
  .about-card  { grid-template-columns: 1fr; }
  .about-left  { border-right: none; border-bottom: 1px solid var(--border); border-radius: 14px 14px 0 0; padding: 36px 28px; }
  .about-right { border-radius: 0 0 14px 14px; padding: 36px 28px; }
  .cta-wrap    { padding: 0 24px 72px; }
  .cta-inner   { padding: 44px 28px; }
  .footer-inner { padding: 28px 24px; flex-direction: column; align-items: flex-start; }
}
@media (max-width: 520px) { .nav-links { display: none; } }
