/* --- Söhne (Klim Test fonts, self-hosted OTF) ---
   For now, every weight request (100–900) resolves to Söhne Buch (regular),
   so headlines render in the same weight as body text. Swap in the heavier
   Halbfett/Dreiviertelfett cuts later when we're ready to give display type
   its own weight. */
@font-face{
  font-family: 'Söhne';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('sohne-font-family/TestSohne-Buch-BF663d89cd32e6a.otf') format('opentype');
}
@font-face{
  font-family: 'Söhne';
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url('sohne-font-family/TestSohne-BuchKursiv-BF663d89cd3e887.otf') format('opentype');
}

:root{
  --bg: #ffffff;
  --bg-alt: #f0f0f0;
  --ink: #0a0a0a;
  --ink-2: #171717;
  --ink-dim: #525252;
  --ink-soft: #6e6e6e;
  --line: #d8d8d8;
  --line-strong: #b8b8b8;
  --accent: #5FBF26;       /* lime */
  --accent-light: #a8de5c;
  --radius: 10px;
  --radius-sm: 8px;

  /* Type system
     - Display: Söhne (commercial, Klim Type Foundry). Will use Söhne if
       self-hosted/licensed; otherwise falls back to Inter.
     - Body:    Inter (Google Fonts)
     - Mono:    IBM Plex Mono (Google Fonts) — for labels, eyebrows, data */
  --font-display: 'Söhne', 'Sohne', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono:    'IBM Plex Mono', 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
html{ background: var(--bg); overflow-x: hidden; }
body{
  background-color: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  position: relative;
}
canvas.bg-pattern{
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  display: block;
  filter: blur(3px);
}
body > *:not(.bg-pattern):not(.nav){ position: relative; z-index: 1; }

a{color:inherit;text-decoration:none}
p{margin:0}

/* --- NAV --- */
.nav{
  position: sticky; top: 0; z-index: 50;
  padding: 16px 0;
  background: rgba(255,255,255,.8);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.logo{
  display: inline-flex; align-items: center;
  height: 43px;
  position: relative;
  overflow: hidden;
}
.logo-video{
  display: block;
  height: 43px;
  width: auto;
}
.logo-video-hidden{
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}
.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0); border:0;
}

.nav-links{ display: flex; gap: 56px; align-items: center; font-size: 14px; }
.nav-links a{ color: var(--ink-dim); transition: color .15s; }
.nav-links a:hover{ color: var(--ink); }
.nav-cta{
  padding: 8px 14px;
  background: var(--ink);
  color: #fff !important;
  border-radius: var(--radius-sm);
  font-weight: 500;
}
.nav-cta:hover{ background: var(--ink-2); }

/* --- TYPOGRAPHY --- */
.display{
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.02;
  color: var(--ink);
  margin: 0 auto 28px;
  max-width: 980px;
}
.h2{
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--ink);
  margin: 0 auto 28px;
  max-width: 880px;
}
.eyebrow{
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

/* --- HERO --- */
.hero{
  position: relative;
  padding: 24px 24px 40px;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  /* Fill the viewport below the sticky nav on first paint. The nav is ~62px
     tall (30px logo + 16px*2 padding + 1px border). */
  min-height: calc(100vh - 63px);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Visible dot-grid + ambient color blobs (Vercel-signature backdrop) */
.hero-bg{
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-grid{
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(10,10,10,0.22) 1px, transparent 1.2px);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 35%, transparent 85%);
          mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 35%, transparent 85%);
}
.hero-blob{
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  mix-blend-mode: multiply;
  will-change: transform, filter, opacity;
}
.hero-blob-1{
  top: -10%;
  left: 18%;
  background: radial-gradient(circle, #e8d9c0 0%, transparent 60%);
  animation: blobDrift1 12s ease-in-out infinite;
}
.hero-blob-2{
  top: 20%;
  right: 10%;
  background: radial-gradient(circle, #c5e89a 0%, transparent 60%);
  animation: blobDrift2 15s ease-in-out infinite;
}
.hero-blob-3{
  bottom: -5%;
  left: 35%;
  width: 620px; height: 620px;
  background: radial-gradient(circle, #a8de5c 0%, transparent 60%);
  animation: blobDrift3 18s ease-in-out infinite;
}

/* Gentle drift within a beige→teal palette. No hue-rotate, so the
   blobs never cycle through yellow/red. */
@keyframes blobDrift1{
  0%   { transform: translate(0, 0)         scale(1);   filter: blur(80px); opacity: 0.85; }
  50%  { transform: translate(200px, 150px) scale(1.8); filter: blur(60px); opacity: 1; }
  100% { transform: translate(0, 0)         scale(1);   filter: blur(80px); opacity: 0.85; }
}
@keyframes blobDrift2{
  0%   { transform: translate(0, 0)           scale(1);    filter: blur(80px); opacity: 0.85; }
  50%  { transform: translate(-220px, 180px)  scale(0.5);  filter: blur(50px); opacity: 1; }
  100% { transform: translate(0, 0)           scale(1);    filter: blur(80px); opacity: 0.85; }
}
@keyframes blobDrift3{
  0%   { transform: translate(0, 0)          scale(1);    filter: blur(80px); opacity: 0.75; }
  50%  { transform: translate(180px, -200px) scale(1.6);  filter: blur(70px); opacity: 1; }
  100% { transform: translate(0, 0)          scale(1);    filter: blur(80px); opacity: 0.75; }
}

/* The stage is a relative container: the SVG backdrop fills it absolutely,
   and .hero-content sits on top. Aspect ratio locks the vertical layout so
   buttons land over the mid-section of the A regardless of viewport width. */
.hero-stage{
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  /* Fill the flex parent (.hero) which itself fills the viewport. */
  flex: 1;
  min-height: 0;
  align-self: stretch;
}
.hero-graphic{
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-a{
  width: 100%;
  height: 100%;
  display: block;
}
.hero-content{
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* anchor headline high (upper ~14% of frame), let actions land mid-frame */
  padding-top: 7%;
}
.hero-content .display{
  margin: 0 auto 18px;
  max-width: 900px;
}
.hero-content .hero-sub{
  max-width: 580px;
  margin: 0 auto 0;
}
.hero-content .actions{
  margin-top: calc(12% - 100px);
}

@media (max-width: 900px){
  .hero-content{ padding-top: 5%; }
  .hero-content .actions{ margin-top: calc(10% - 60px); }
}
.hero-sub{
  max-width: 640px;
  margin: 0 auto 40px;
  font-size: 18px;
  color: var(--ink-dim);
  line-height: 1.6;
}
.actions{
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}

/* --- BUTTONS (Vercel-style: solid black + outlined white) --- */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  font-family: inherit;
  letter-spacing: -0.005em;
  line-height: 1;
  border: 1px solid transparent;
  transition: background .15s ease, border-color .15s ease, color .15s ease, transform .15s ease;
  cursor: pointer;
}
.btn-primary{
  background: var(--ink);
  color: #ffffff;
  border-color: var(--ink);
}
.btn-primary:hover{ background: var(--ink-2); }
.btn-secondary{
  background: #ffffff;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-secondary:hover{
  background: var(--bg-alt);
  border-color: var(--ink);
}
.btn-mark{ display: block; flex-shrink: 0; }

/* --- SECTIONS --- */
.section{
  padding: 120px 24px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.section-alt{
  background: rgba(240,240,240,0.95);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  max-width: none;
  padding-left: 24px;
  padding-right: 24px;
}
.section-alt > *{ max-width: 1200px; margin-left: auto; margin-right: auto; }

/* Left-align section titles (eyebrow + h2) with the left edge of the content grid.
   The hero is .hero, not .section, so it stays centered automatically. */
.section > .eyebrow,
.section > .h2{
  display: block;
  text-align: left;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.section-lead{
  max-width: 680px;
  margin: 0 auto 36px;
  font-size: 17px;
  color: var(--ink-dim);
}
.section-close{
  max-width: 680px;
  margin: 0 auto;
  font-size: 16px;
  color: var(--ink-dim);
}

/* --- SPLITTING.JS reveal on scroll (one-time, no shimmer) --- */
[data-splitting] .char{
  display: inline-block;
  opacity: 0;
  transform: translateY(0.35em);
  transition:
    opacity .5s cubic-bezier(.2,.7,.2,1),
    transform .7s cubic-bezier(.2,.7,.2,1);
  transition-delay: calc(14ms * var(--char-index));
}
[data-splitting].is-visible .char{
  opacity: 1;
  transform: translateY(0);
}

/* --- FEATURES --- */
#features.section{
  max-width: none;
  background: rgba(242,242,242,0.95);
  padding: 96px 24px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
#features .eyebrow,
#features .h2{
  width: 100%;
  max-width: min(1600px, 92vw);
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  padding-left: 64px;
  padding-right: 64px;
  box-sizing: border-box;
}
@media (max-width: 1100px){
  #features .eyebrow,
  #features .h2{ padding-left: 32px; padding-right: 32px; }
}
@media (max-width: 640px){
  #features .eyebrow,
  #features .h2{ padding-left: 20px; padding-right: 20px; }
}
#features .feature-grid{
  max-width: min(1600px, 92vw);
  margin-left: auto;
  margin-right: auto;
}
.feature-grid{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  column-gap: 96px;
  row-gap: 72px;
  text-align: left;
  margin-top: 48px;
  padding: 0 64px;
}
@media (max-width: 1100px){
  .feature-grid{ grid-template-columns: repeat(2, 1fr); padding: 0 32px; }
}
@media (max-width: 640px){
  .feature-grid{ grid-template-columns: 1fr; padding: 0 20px; }
}
.feature{
  display: flex;
  flex-direction: column;
  background: transparent;
  border: 0;
  border-radius: 0;
}
.feature .mockup{
  flex: 1;
  min-height: 220px;
  padding: 0;
  background: transparent;
  border: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feature-info{
  padding: 0 0 32px;
}
.feature-cat{
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
  white-space: nowrap;
}
.feature h3{
  margin: 0;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}

/* Mockup shared bits */
.mockup{
  font-family: var(--font-body);
  font-size: 12.5px;
  color: var(--ink);
}

/* Card 1 — Templates / Library */
.lib-head{
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 4px;
}
.lib-title{ font-weight: 600; font-size: 13px; }
.lib-upload{
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  padding: 4px 8px;
  background: transparent;
  border: 0;
  border-radius: 0;
}
.file-list{ display: flex; flex-direction: column; gap: 8px; }
.file-item{
  display: flex; align-items: center; gap: 10px;
  padding: 10px;
  background: transparent;
  border: 0;
  border-radius: 0;
}
.file-icon{
  width: 32px; height: 32px;
  flex: 0 0 32px;
  box-sizing: border-box;
  display: grid; place-items: center;
  background: #2563eb;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  border-radius: 4px;
}
.file-icon-pdf{ background: #dc2626; color: #fff; }
.file-name{ font-size: 12.5px; font-weight: 500; }
.file-meta{
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--ink-dim);
  margin-top: 2px;
}

/* Card 2 — Insight */
.insight-head{ margin-bottom: 4px; }
.insight-label{
  font-family: var(--font-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--accent);
  background: transparent;
  padding: 4px 8px;
  border-radius: 0;
}
.insight-text{
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink);
  margin: 4px 0 6px;
}
.insight-hl{
  background: #d4f4dd;
  padding: 0 4px;
  border-radius: 3px;
  font-weight: 500;
}
.mini-chart{
  display: flex; align-items: flex-end; gap: 6px;
  height: 50px;
  margin-top: auto;
}
.mini-chart span{
  flex: 1;
  background: #6e6e6e;
  border-radius: 0;
}
.mini-chart span.hl{
  background: var(--accent);
}

/* Card 3 — Doc generation */
.doc-head{
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 6px;
}
.doc-title{ font-weight: 600; font-size: 13px; }
.ai-badge{
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #1F6ED8;
  background: transparent;
  padding: 4px 8px;
  border-radius: 0;
}
.ai-dot{
  width: 6px; height: 6px; border-radius: 50%;
  background: #1F6ED8;
  animation: aiPulse 1.6s ease-in-out infinite;
}
@keyframes aiPulse{ 0%,100%{opacity:.4} 50%{opacity:1} }
.doc-body p{
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 6px;
}
.caret{
  display: inline-block;
  width: 1px; height: 12px;
  background: var(--accent);
  margin-left: 2px;
  vertical-align: middle;
  animation: caret 1s steps(2) infinite;
}
@keyframes caret{ 50%{opacity:0} }

/* Card 4 — Notifications */
.mockup-notif{ gap: 8px; }
.notif{
  display: flex; align-items: flex-start; gap: 10px;
  padding: 10px;
  background: transparent;
  border: 0;
  border-radius: 0;
}
.notif.new{ border-left: 2px solid var(--accent); }
.notif-avatar{
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: #ffffff;
  display: grid; place-items: center;
  font-size: 10px;
  font-weight: 600;
  font-family: var(--font-mono);
  flex-shrink: 0;
}
.notif-text{ font-size: 12px; color: var(--ink); }
.mention{
  color: var(--accent);
  font-weight: 600;
}
.notif-time{
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-dim);
  margin-top: 2px;
}

/* Card 5 — Compliance findings */
.findings-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 4px;
}
.finding-item{
  padding: 10px 8px;
  border-radius: 0;
  text-align: center;
  border: 0;
  background: transparent;
}
.finding-item.ok,
.finding-item.warn,
.finding-item.minor{ background: transparent; }
.finding-count{
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}
.finding-item.ok .finding-count{ color: #3d7a17; }
.finding-item.warn .finding-count{ color: #d97706; }
.finding-item.minor .finding-count{ color: #1F6ED8; }
.finding-label{
  font-family: var(--font-mono);
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--ink-dim);
  margin-top: 4px;
}
.finding-cards{ display: flex; flex-direction: column; gap: 6px; }
.finding-card{
  display: flex; align-items: flex-start; gap: 8px;
  padding: 8px 10px;
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 11.5px;
  line-height: 1.4;
}
.finding-dot{
  width: 6px; height: 6px;
  border-radius: 50%;
  margin-top: 5px;
  flex-shrink: 0;
}
.finding-card.major .finding-dot{ background: #d97706; }
.finding-card.minor .finding-dot{ background: #1F6ED8; }

/* --- HUB --- */
.hub-chips{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 36px;
  max-width: 760px;
}
.hub-chips span{
  padding: 9px 16px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--ink-2);
  transition: all .2s ease;
}
.hub-chips span:hover{
  border-color: var(--accent);
  color: var(--accent);
}

/* --- HUB section compact overrides --- */
#hub.section{
  padding-top: 72px;
  padding-bottom: 72px;
  background: rgba(80,80,80,0.95);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
#hub .eyebrow,
#hub .h2{
  text-align: center !important;
  max-width: 880px;
  margin-left: auto !important;
  margin-right: auto !important;
}
#hub .h2{ margin-bottom: 16px; color: #ffffff; }
#hub .section-lead{ margin-bottom: 20px; font-size: 16px; color: #d0d0d0; }
#hub .section-close{ margin-top: 8px; font-size: 15px; color: #d0d0d0; }
#hub .globe-wrap{ margin-top: 16px; }
#hub .hub-chips span{ background: transparent; border-color: #9a9a9a; color: #f5f5f5; }
#hub .hub-chips span:hover{ border-color: var(--accent); color: var(--accent); }

/* --- GLOBAL NETWORK --- */
.globe-wrap{
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 48px auto 0;
  aspect-ratio: 1200 / 500;
}
.globe{
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}
.globe .arcs path{
  stroke-dasharray: 4 6;
  opacity: .7;
  animation: arcDrift 6s linear infinite;
}
.globe .pulses{ color: #c6f26d; fill: #c6f26d; }
@keyframes arcDrift{ to { stroke-dashoffset: -20; } }

.globe .node{ color: #c6f26d; }
.globe .node-teal{   color: #c6f26d; }
.globe .node-amber{  color: #ffc36b; }
.globe .node-violet{ color: #7fb4ff; }

.globe .node .ring{
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  opacity: .85;
  animation: nodePulse 2.8s ease-out infinite;
}
.globe .node:nth-child(2) .ring{ animation-delay: .4s }
.globe .node:nth-child(3) .ring{ animation-delay: .8s }
.globe .node:nth-child(4) .ring{ animation-delay: 1.2s }
.globe .node:nth-child(5) .ring{ animation-delay: 1.6s }
.globe .node:nth-child(6) .ring{ animation-delay: 2.0s }
@keyframes nodePulse{
  0%   { r: 6;  opacity: .8; }
  80%  { r: 22; opacity: 0;  }
  100% { r: 22; opacity: 0;  }
}
.globe .node .core{
  fill: currentColor;
}
.globe .node-label{
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  fill: currentColor;
  text-anchor: middle;
  letter-spacing: .02em;
  stroke: none;
}

/* --- PARTNERS --- */
#partners.section{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#partners > .eyebrow,
#partners > .h2{
  align-self: stretch;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
#partners .section-lead{
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  text-align: left;
}
.partner-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
  margin-top: 48px;
  border: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
}
.partner{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 44px 28px;
  min-height: 140px;
  border: 0;
  transition: background .25s ease;
}
.partner:hover{ background: var(--bg-alt); }
.partner img{
  max-width: 140px;
  max-height: 56px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%) contrast(0.9);
  opacity: 0.72;
  transition: filter .3s ease, opacity .3s ease;
}
.partner:hover img{
  filter: grayscale(0%) contrast(1);
  opacity: 1;
}
/* remove outer borders on edge cells */
.partner-grid{ position: relative; }
.partner-grid::after{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px transparent;
}

/* --- TEAMS --- */
#teams.section{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#teams > .eyebrow,
#teams > .h2{
  align-self: stretch;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
.teams-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  text-align: left;
  margin-top: 48px;
}
.team{
  padding: 26px 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}
.team h4{
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.005em;
}
.team p{
  color: var(--ink-dim);
  font-size: 14px;
  line-height: 1.55;
}

/* --- CTA --- */
.cta{ padding-bottom: 140px; }
.cta .section-lead{
  margin-bottom: 36px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
  width: 100%;
  text-align: left;
}
.cta .actions{
  justify-content: flex-start;
  max-width: 1200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

/* --- FOOTER --- */
.footer{
  display: flex;
  justify-content: space-between;
  padding: 32px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: -0.005em;
}

/* --- RESPONSIVE --- */
@media (max-width: 720px){
  .nav{ padding: 14px 20px; }
  .nav-links{ gap: 16px; }
  .nav-links a:not(.nav-cta){ display: none; }
  .hero{ padding: 80px 20px 72px; }
  .hero-content .actions{ margin-top: 32px; }
  .section{ padding: 80px 20px; }
  .section-alt{ padding-left: 20px; padding-right: 20px; }
  .footer{ flex-direction: column; gap: 8px; text-align: center; padding: 24px; }
}

@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
  [data-splitting] .char{ opacity: 1; transform: none; }
}
