/* ─────────────────────────────────────────────────────────────────────────
   Focentra AI — full landing page styles
   Design direction: Editorial Premium (D2)
   Tokens, base, layout, sections — all in one file for clean handoff.
   ───────────────────────────────────────────────────────────────────────── */

:root {
  /* surface */
  --bg:        #08090b;
  --surface:   #0d0e12;
  --card:      #11131a;
  --line:      rgba(255,255,255,0.07);
  --line-2:    rgba(255,255,255,0.12);
  --line-3:    rgba(255,255,255,0.2);

  /* type */
  --text:      #e9ecf0;
  --text-2:    #b8bdc6;
  --mute:      #7a8190;
  --dim:       #5a6070;

  /* brand */
  --accent:    #00d4ff;
  --accent-2:  #2563eb;
  --good:      #3dd68c;

  /* fonts */
  --f-display: 'Space Grotesk', system-ui, sans-serif;
  --f-italic:  'Instrument Serif', Georgia, serif;
  --f-body:    'Inter', system-ui, sans-serif;
  --f-mono:    'JetBrains Mono', ui-monospace, monospace;

  /* sizing */
  --pad-x:     64px;
  --section-y: 112px;
}

@media (max-width: 900px) {
  :root { --pad-x: 24px; --section-y: 72px; }
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

::selection { background: rgba(0,212,255,0.25); color: #fff; }

/* page-wide grain overlay */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 100; pointer-events: none;
  opacity: 0.35; mix-blend-mode: overlay;
  background-image: radial-gradient(rgba(255,255,255,0.5) 0.4px, transparent 0.4px);
  background-size: 3px 3px;
}

/* ambient bg orbs — only on hero so they don't pull focus elsewhere */
.bg-orbs {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  overflow: hidden;
}
.bg-orbs::before, .bg-orbs::after {
  content: ''; position: absolute; border-radius: 50%; filter: blur(80px);
}
.bg-orbs::before {
  width: 700px; height: 700px; left: 60%; top: -200px;
  background: radial-gradient(circle, rgba(37,99,235,0.18) 0%, transparent 60%);
}
.bg-orbs::after {
  width: 600px; height: 600px; left: -200px; top: 320px;
  background: radial-gradient(circle, rgba(0,212,255,0.12) 0%, transparent 60%);
}

/* utility: eyebrow label */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.16em; color: var(--accent);
  text-transform: uppercase;
}
.eyebrow::before {
  content: ''; width: 24px; height: 1px; background: currentColor;
}

/* italic accent in headlines */
.ital {
  font-family: var(--f-italic);
  font-style: italic; font-weight: 400;
  color: var(--accent);
  font-size: 1.05em;
  letter-spacing: -0.02em;
}

/* ──────────────── NAV ──────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--pad-x);
  background: rgba(8,9,11,0.72);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.nav-logo { display: inline-flex; align-items: center; gap: 10px; }
.nav-logo img { height: 26px; width: auto; display: block; }
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-family: var(--f-mono); font-size: 12px; font-weight: 500;
  color: var(--text-2); letter-spacing: 0.04em;
  padding: 6px 0; position: relative;
  transition: color .15s;
}
.nav-links a:hover { color: var(--accent); }
.nav-links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--accent); transform: scaleX(0);
  transform-origin: left; transition: transform .25s;
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-right { display: flex; align-items: center; gap: 18px; }
.nav-live {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-mono); font-size: 11px; color: var(--mute);
}
.nav-live::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--good); box-shadow: 0 0 8px var(--good);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 50% { opacity: 0.35; } }
.nav-cta {
  font-family: var(--f-display); font-size: 13.5px; font-weight: 500;
  padding: 10px 18px; background: #fff; color: #08090b;
  border: 0; border-radius: 6px;
  transition: transform .15s, background .15s;
}
.nav-cta:hover { background: #f0f0f0; transform: translateY(-1px); }

/* meta row */
.meta-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px var(--pad-x);
  font-family: var(--f-mono); font-size: 11px;
  color: var(--mute); letter-spacing: 0.06em;
  border-bottom: 1px solid var(--line);
  position: relative; z-index: 5;
}
@media (max-width: 900px) {
  .meta-row { font-size: 10px; }
  .meta-row span:nth-child(2) { display: none; }
}

/* ──────────────── HERO ──────────────── */
.hero {
  position: relative;
  padding: 80px var(--pad-x) 56px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: end;
}
.hero-left { position: relative; z-index: 2; }
.hero h1 {
  font-family: var(--f-display); font-weight: 500;
  font-size: clamp(48px, 7vw, 96px); line-height: 0.95;
  letter-spacing: -0.04em;
  margin: 24px 0 0; color: #fff;
}
.hero-right { padding-bottom: 12px; position: relative; z-index: 2; }
.hero-sub {
  font-family: var(--f-display); font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.4; color: #dadde2; font-weight: 400;
  margin: 0 0 18px; max-width: 540px;
  text-wrap: balance;
}
.hero-desc {
  font-size: 14.5px; line-height: 1.7; color: var(--mute);
  max-width: 460px; margin: 0 0 32px;
}
.hero-ctas { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.btn-primary {
  font-family: var(--f-display); font-size: 14px; font-weight: 500;
  padding: 14px 22px; background: var(--accent-2); color: #fff;
  border: 0; border-radius: 6px;
  display: inline-flex; gap: 10px; align-items: center;
  transition: background .15s, transform .15s;
}
.btn-primary:hover { background: #1a56db; transform: translateY(-1px); }
.btn-text {
  font-family: var(--f-display); font-size: 14px; font-weight: 500;
  color: #fff; background: transparent; border: 0;
  display: inline-flex; gap: 8px; align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding: 14px 0;
  transition: border-color .15s, color .15s;
}
.btn-text:hover { color: var(--accent); border-color: var(--accent); }

/* signal viz */
.signal-wrap { padding: 0 var(--pad-x); position: relative; z-index: 5; }
.signal {
  position: relative;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  height: 280px; margin-top: 56px;
  display: flex; flex-direction: column;
  background:
    linear-gradient(180deg, transparent, rgba(0,212,255,0.02)),
    repeating-linear-gradient(to right,
      transparent 0, transparent 79px,
      rgba(255,255,255,0.04) 79px, rgba(255,255,255,0.04) 80px);
}
.signal-meta {
  display: flex; justify-content: space-between;
  padding: 12px 16px 0;
  font-family: var(--f-mono); font-size: 10.5px;
  letter-spacing: 0.16em; color: var(--mute);
  text-transform: uppercase;
}
.signal-meta .ok { color: var(--good); }
.signal svg { width: 100%; flex: 1; display: block; }
.signal-foot {
  display: flex; justify-content: space-between;
  padding: 0 16px 10px;
  font-family: var(--f-mono); font-size: 10.5px;
  letter-spacing: 0.12em; color: var(--mute);
}

/* stats */
.stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.stat { padding: 24px 24px 0; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat .n {
  font-family: var(--f-mono); font-size: 10.5px;
  letter-spacing: 0.18em; color: var(--mute); margin-bottom: 14px;
}
.stat .v {
  font-family: var(--f-display); font-weight: 500; font-size: 44px;
  line-height: 1; color: #fff;
  letter-spacing: -0.03em;
}
.stat .l {
  margin-top: 12px; font-size: 13px; color: var(--text-2); line-height: 1.45;
  max-width: 280px;
}
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 32px; padding-top: 48px; }
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); padding-bottom: 24px; }
}

/* ──────────────── CLIENTS TICKER ──────────────── */
.clients {
  margin-top: 64px;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: stretch;
}
.clients-label {
  padding: 28px var(--pad-x);
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.18em; color: var(--mute);
  white-space: nowrap;
  background: var(--bg);
  border-right: 1px solid var(--line);
  z-index: 2;
  display: flex; align-items: center;
}
.clients-track {
  position: relative;
  overflow: hidden;
  display: flex; align-items: center;
  /* mask so logos fade in/out at edges */
  mask-image: linear-gradient(to right, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%);
}
.clients-logos {
  display: flex; gap: 64px; padding-left: 64px;
  font-family: var(--f-display); font-weight: 600;
  letter-spacing: 0.04em; font-size: 18px;
  color: rgba(255,255,255,0.6);
  white-space: nowrap;
  animation: ticker 28s linear infinite;
}
.clients-logos span { display: inline-block; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ──────────────── SERVICES ──────────────── */
.section { padding: var(--section-y) var(--pad-x); position: relative; }
.section-head { margin-bottom: 56px; max-width: 760px; }
h2.section-h {
  font-family: var(--f-display); font-weight: 500;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.05; letter-spacing: -0.03em;
  margin: 14px 0 0; color: #fff;
  text-wrap: balance;
}

.services-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-top: 1px solid var(--line);
}
.svc { padding: 36px 36px 36px 0; border-right: 1px solid var(--line); }
.svc:last-child { border-right: 0; padding-left: 36px; padding-right: 0; }
.svc .num {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.18em; color: var(--accent);
  margin-bottom: 28px;
}
.svc h3 {
  font-family: var(--f-display); font-weight: 500; font-size: 32px;
  letter-spacing: -0.02em; color: #fff;
  margin: 0 0 16px; line-height: 1.1;
}
.svc h3 .ital { font-size: 1.05em; }
.svc p { color: var(--text-2); line-height: 1.65; font-size: 15px; margin: 0 0 28px; max-width: 480px; }
.svc ul { list-style: none; padding: 0; margin: 0 0 32px; }
.svc li {
  display: flex; gap: 16px; padding: 14px 0;
  border-top: 1px solid var(--line);
  font-size: 14.5px; color: var(--text-2);
}
.svc li .x {
  font-family: var(--f-mono); font-size: 11px;
  color: var(--mute); min-width: 32px;
  letter-spacing: 0.08em;
}
.svc-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; border: 0; padding: 0;
  color: #fff; font-family: var(--f-display);
  font-size: 14px; font-weight: 500;
  border-bottom: 1px solid var(--line-3);
  padding-bottom: 6px;
  transition: color .15s, border-color .15s;
}
.svc-cta:hover { color: var(--accent); border-color: var(--accent); }
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
  .svc { padding: 32px 0 !important; border-right: 0; border-bottom: 1px solid var(--line); }
  .svc:last-child { border-bottom: 0; }
}

/* ──────────────── TECH STACK ──────────────── */
.tech {
  padding: var(--section-y) var(--pad-x);
  background: linear-gradient(180deg, transparent, rgba(0,212,255,0.025), transparent);
  border-top: 1px solid var(--line);
}
.tech-head { display: flex; justify-content: space-between; gap: 48px; align-items: end; margin-bottom: 56px; flex-wrap: wrap; }
.tech-head h2 { max-width: 560px; margin: 14px 0 0; }
.tech-head .lead {
  font-family: var(--f-display); font-size: 17px; line-height: 1.5;
  color: var(--text-2); max-width: 380px; margin: 0;
}
.tech-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.tool {
  background: var(--bg);
  padding: 28px 28px 32px;
  display: flex; flex-direction: column; gap: 18px;
  transition: background .25s;
  position: relative;
  min-height: 220px;
}
.tool:hover { background: var(--surface); }
.tool::after {
  content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 1px;
  background: var(--accent); transition: width .35s;
}
.tool:hover::after { width: 100%; }
.tool-mark {
  width: 40px; height: 40px; border-radius: 8px;
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.18);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-weight: 600; font-size: 16px;
  color: var(--accent);
}
.tool-mark.is-logo {
  background: transparent;
  border: 0;
  border-radius: 0;
  width: auto; height: 28px;
  display: inline-flex; align-items: center;
  margin-bottom: -6px; /* compensate the gap so logo row aligns with monogram row */
}
.tool-mark.is-logo img {
  height: 100%; width: auto; max-width: 110px;
  object-fit: contain; display: block;
}
.tool .nm {
  font-family: var(--f-display); font-weight: 500; font-size: 22px;
  color: #fff; letter-spacing: -0.01em;
}
.tool .nm .role {
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.14em; color: var(--mute);
  display: block; margin-bottom: 6px; font-weight: 500; text-transform: uppercase;
}
.tool p { color: var(--text-2); font-size: 13.5px; line-height: 1.55; margin: 0; }
@media (max-width: 900px) {
  .tech-grid { grid-template-columns: 1fr; }
}

/* ──────────────── WHY CHOOSE ──────────────── */
.why { padding: var(--section-y) var(--pad-x); }
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-top: 1px solid var(--line);
}
.benefit {
  display: grid; grid-template-rows: auto 1fr;
  padding: 48px 48px 48px 0;
  border-right: 1px solid var(--line);
}
.benefit:last-child { border-right: 0; padding: 48px 0 48px 48px; }
.benefit .num {
  font-family: var(--f-display); font-weight: 500;
  font-size: 72px; line-height: 1; color: var(--accent);
  letter-spacing: -0.04em;
  margin-bottom: 32px;
}
.benefit .num .slash {
  font-family: var(--f-mono); font-size: 14px; color: var(--mute);
  letter-spacing: 0.1em; margin-left: 12px; vertical-align: 18px;
}
.benefit h3 {
  font-family: var(--f-display); font-weight: 500;
  font-size: 32px; letter-spacing: -0.02em;
  color: #fff; margin: 0 0 16px; line-height: 1.15;
}
.benefit p { color: var(--text-2); line-height: 1.65; font-size: 15px; margin: 0; max-width: 480px; }
@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; }
  .benefit { padding: 32px 0 !important; border-right: 0; border-bottom: 1px solid var(--line); }
  .benefit:last-child { border-bottom: 0; }
}

/* ──────────────── FOUNDER ──────────────── */
.founder {
  padding: var(--section-y) var(--pad-x);
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.012));
}
.founder-grid {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px;
  align-items: center;
}
.founder-photo {
  position: relative;
  aspect-ratio: 3 / 4;
  background: var(--card);
  border: 1px solid var(--line);
  overflow: hidden;
  max-width: 420px;
}
.founder-photo img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(0.18) contrast(1.05);
  transition: filter .4s;
}
.founder-photo:hover img { filter: grayscale(0) contrast(1.05); }
.founder-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(8,9,11,0.55));
  pointer-events: none;
}
.founder-tag {
  position: absolute; top: 18px; left: 18px; z-index: 2;
  font-family: var(--f-mono); font-size: 10.5px;
  letter-spacing: 0.18em; color: #fff;
  background: rgba(8,9,11,0.55);
  backdrop-filter: blur(6px);
  padding: 6px 10px; border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.18);
}
.founder-cite {
  position: absolute; bottom: 18px; left: 18px; right: 18px; z-index: 2;
  font-family: var(--f-mono); font-size: 11px;
  color: rgba(255,255,255,0.85);
  display: flex; justify-content: space-between;
}
.founder-cite .name { font-family: var(--f-display); font-weight: 500; font-size: 13px; }
.founder-content .eyebrow { margin-bottom: 24px; }
.founder-quote {
  font-family: var(--f-display); font-weight: 400;
  font-size: clamp(24px, 2.6vw, 32px); line-height: 1.25;
  letter-spacing: -0.015em; color: #fff;
  margin: 0 0 24px; text-wrap: balance;
}
.founder-quote .ital { font-size: 1.05em; }
.founder-quote .mark {
  font-family: var(--f-italic); font-style: italic;
  font-size: 1.4em; color: var(--accent); line-height: 0;
  vertical-align: -0.1em; margin-right: 4px;
}
.founder-quote-2 { font-size: 16px; color: var(--text-2); line-height: 1.6; margin: 0 0 32px; max-width: 540px; }
.founder-sig {
  display: flex; align-items: center; gap: 16px;
  padding-top: 24px; border-top: 1px solid var(--line);
  font-family: var(--f-mono); font-size: 11px;
  color: var(--mute); letter-spacing: 0.12em;
}
.founder-sig .name { font-family: var(--f-display); font-weight: 500; font-size: 14px; color: #fff; letter-spacing: 0; }
.founder-sig .role { color: var(--mute); }
.founder-cta {
  display: inline-flex; align-items: center; gap: 10px;
  margin-left: auto;
  font-family: var(--f-display); font-size: 14px; font-weight: 500;
  color: var(--accent); background: transparent; border: 0;
  border-bottom: 1px solid currentColor; padding-bottom: 4px;
}
@media (max-width: 900px) {
  .founder-grid { grid-template-columns: 1fr; gap: 32px; }
  .founder-photo { max-width: 100%; }
}

/* ──────────────── TESTIMONIALS ──────────────── */
.testimonials { padding: var(--section-y) var(--pad-x); border-top: 1px solid var(--line); }
.tg { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.tcard {
  background: var(--bg);
  padding: 32px;
  display: flex; flex-direction: column; gap: 16px;
  min-height: 280px;
}
.tcard .stars {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.18em; color: var(--accent);
}
.tcard blockquote {
  font-family: var(--f-display); font-weight: 400;
  font-size: 17px; line-height: 1.5; letter-spacing: -0.01em;
  color: #fff; margin: 0; flex: 1;
  text-wrap: balance;
}
.tcard .who {
  display: flex; justify-content: space-between; align-items: end;
  padding-top: 18px; border-top: 1px solid var(--line);
  font-family: var(--f-mono); font-size: 10.5px;
  color: var(--mute); letter-spacing: 0.1em;
}
.tcard .who .name {
  font-family: var(--f-display); font-weight: 500; font-size: 14px;
  color: #fff; letter-spacing: 0;
}
.tcard .who .role { font-size: 11px; }
@media (max-width: 900px) {
  .tg { grid-template-columns: 1fr; }
}

.testimonials-more {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 32px;
  padding: 12px 0;
  font-family: var(--f-display); font-size: 14px; font-weight: 500;
  color: var(--accent);
  border-bottom: 1px solid currentColor;
  transition: color .15s;
}
.testimonials-more:hover { color: #fff; }

/* ──────────────── FAQ ──────────────── */
.faq { padding: var(--section-y) var(--pad-x); border-top: 1px solid var(--line); }
.faq-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px; align-items: start; }
.faq-list { border-top: 1px solid var(--line); }
.qitem { border-bottom: 1px solid var(--line); }
.qhead {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0; background: transparent; border: 0; text-align: left;
  font-family: var(--f-display); font-size: 19px; font-weight: 500;
  color: #fff; letter-spacing: -0.01em;
  transition: color .15s;
}
.qhead:hover { color: var(--accent); }
.qhead .qnum {
  font-family: var(--f-mono); font-size: 11px;
  color: var(--mute); letter-spacing: 0.16em;
  min-width: 50px;
}
.qhead .qtext { flex: 1; padding-right: 24px; }
.qhead .qicon {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid var(--line-2); display: flex; align-items: center; justify-content: center;
  color: var(--text-2); transition: transform .25s, border-color .15s, color .15s;
  flex-shrink: 0; font-size: 14px;
}
.qitem.open .qicon { transform: rotate(45deg); border-color: var(--accent); color: var(--accent); }
.qbody {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease;
}
.qbody-inner {
  padding: 0 0 24px 50px;
  font-size: 15px; line-height: 1.65; color: var(--text-2);
  max-width: 580px;
}
.qitem.open .qbody { max-height: 240px; }
@media (max-width: 900px) {
  .faq-grid { grid-template-columns: 1fr; }
}

/* ──────────────── FINAL CTA ──────────────── */
.cta {
  padding: var(--section-y) var(--pad-x);
  border-top: 1px solid var(--line);
  position: relative; overflow: hidden;
  text-align: center;
}
.cta::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle 600px at 50% 50%, rgba(37,99,235,0.18), transparent 60%),
    radial-gradient(circle 400px at 30% 80%, rgba(0,212,255,0.10), transparent 60%);
}
.cta-inner { position: relative; max-width: 900px; margin: 0 auto; }
.cta h2 {
  font-family: var(--f-display); font-weight: 500;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1; letter-spacing: -0.04em;
  margin: 14px 0 32px;
  text-wrap: balance;
}
.cta p {
  font-family: var(--f-display); font-size: 18px; color: var(--text-2);
  max-width: 560px; margin: 0 auto 40px;
  text-wrap: balance;
}
.cta .btn-primary { font-size: 15px; padding: 18px 28px; }

/* ──────────────── FOOTER ──────────────── */
.footer {
  border-top: 1px solid var(--line);
  padding: 48px var(--pad-x) 24px;
  display: grid; grid-template-columns: 1fr auto; gap: 48px;
  align-items: start;
}
.footer-left { display: flex; flex-direction: column; gap: 16px; max-width: 380px; }
.footer-left img { height: 35px; width: auto; align-self: flex-start; }
.footer-left p { color: var(--mute); font-size: 13px; line-height: 1.55; margin: 0; }
.footer-cols { display: flex; gap: 56px; }
.footer-col h4 {
  font-family: var(--f-mono); font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.18em; color: var(--mute);
  text-transform: uppercase; margin: 0 0 16px;
}
.footer-col a {
  display: block; font-family: var(--f-display); font-size: 14px;
  color: var(--text-2); padding: 6px 0;
  transition: color .15s;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  grid-column: 1 / -1;
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px; margin-top: 32px;
  border-top: 1px solid var(--line);
  font-family: var(--f-mono); font-size: 11px;
  color: var(--mute); letter-spacing: 0.08em;
}
@media (max-width: 900px) {
  .footer { grid-template-columns: 1fr; }
  .footer-cols { flex-wrap: wrap; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; align-items: flex-start; }
}

/* ──────────────── FADE-IN ANIMATIONS ──────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
.fade-in.in {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .fade-in { opacity: 1; transform: none; }
}
