/* ----------  Tokens  ---------- */
:root {
  --bg: #FFFFFF;
  --bg-2: #F8FAFC;
  --surface: #FFFFFF;
  --surface-strong: #F8FAFC;
  --border: rgba(15, 23, 42, 0.08);
  --border-strong: rgba(15, 23, 42, 0.14);
  --text: #0F172A;
  --text-soft: #475569;
  --text-dim: #64748B;
  --brand-1: #0EA5E9;
  --brand-2: #6366F1;
  --grad: linear-gradient(90deg, #0EA5E9 0%, #6366F1 100%);
  --radius: 16px;
  --radius-lg: 22px;
  --shadow: 0 20px 50px -20px rgba(14, 165, 233, 0.30),
            0 10px 25px -15px rgba(99, 102, 241, 0.25);
  --shadow-card: 0 1px 2px rgba(15,23,42,0.04), 0 8px 24px rgba(15,23,42,0.06);
  --maxw: 1140px;
}

/* ----------  Base  ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ----------  Typography  ---------- */
h1, h2, h3 {
  color: var(--text);
  font-family: 'Source Serif 4', Georgia, 'Times New Roman', serif;
  letter-spacing: -0.022em;
  font-weight: 400;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); line-height: 1.04; }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); line-height: 1.08; font-weight: 400; }
h3 { font-size: 1.3rem; font-weight: 500; }
p  { margin: 0 0 1em; color: var(--text-soft); }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-block;
  font-family: ui-monospace, 'SF Mono', Menlo, Monaco, Consolas, monospace;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--brand-1);
  margin-bottom: 14px;
}

/* ----------  Header  ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: linear-gradient(135deg, #0B1220 0%, #1E1B4B 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 24px -12px rgba(15, 23, 42, 0.25);
}
.site-header::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 1px;
  background: var(--grad);
  opacity: 0.55;
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  position: relative;
}
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-mark { width: 36px; height: 36px; }
.brand-text { display: inline-flex; align-items: baseline; gap: 8px; font-weight: 700; font-size: 1.15rem; color: #fff; letter-spacing: -0.01em; }
.brand-sub {
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.32em;
  color: rgba(255, 255, 255, 0.5); text-transform: uppercase;
}
.brand-sm .brand-mark { width: 28px; height: 28px; }
.brand-sm .brand-text { font-size: 1rem; color: var(--text); }
.brand-sm .brand-sub { color: var(--text-dim); }

.nav-links {
  display: flex; align-items: center; gap: 28px;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s ease;
}
.nav-links a:hover { color: #fff; }
.nav-cta {
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--grad);
  color: #fff !important;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(99, 102, 241, 0.35);
}
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  width: 40px; height: 40px;
  padding: 0;
  cursor: pointer;
  flex-direction: column; justify-content: center; align-items: center; gap: 4px;
}
.nav-toggle span {
  display: block; width: 18px; height: 2px;
  background: #fff; border-radius: 2px;
}

/* ----------  Buttons  ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600; font-size: 0.95rem;
  cursor: pointer; border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad); color: #fff;
  box-shadow: var(--shadow);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 25px 60px -20px rgba(14,165,233,0.45), 0 12px 30px -15px rgba(99,102,241,0.40); }
.btn-ghost {
  background: var(--surface);
  color: var(--text); border-color: var(--border-strong);
}
.btn-ghost:hover { background: var(--surface-strong); border-color: rgba(15,23,42,0.22); }
.btn-block { width: 100%; }

/* ----------  Hero (dark island) ---------- */
.hero {
  position: relative;
  padding: 28px 0 60px;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  min-height: calc(100vh - 72px);
  background:
    linear-gradient(180deg, #0B1220 0%, #060A16 55%, #06080F 100%);
  color: #e7ecf5;
}

.hero::before {
  content: '';
  position: absolute;
  inset: -5%;
  background: url('images/conny-schneider-pREq0ns_p_E-unsplash.jpg') center/cover no-repeat;
  opacity: 0.7;
  z-index: -3;
  pointer-events: none;
  animation: hero-bg-drift 30s ease-in-out infinite;
  will-change: transform;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 25%,
      transparent 0%,
      rgba(6, 10, 22, 0.25) 40%,
      rgba(6, 10, 22, 0.55) 70%),
    linear-gradient(180deg,
      rgba(11, 18, 32, 0.15) 0%,
      rgba(11, 18, 32, 0.45) 35%,
      rgba(6, 10, 22, 0.8) 70%,
      rgba(6, 8, 15, 0.96) 100%);
  z-index: -2;
  pointer-events: none;
}

@keyframes hero-bg-drift {
  0%   { transform: scale(1)    translate(0%, 0%); }
  25%  { transform: scale(1.05) translate(-1.5%, -1%); }
  50%  { transform: scale(1.08) translate(-2%, 1%); }
  75%  { transform: scale(1.05) translate(1%, 1.5%); }
  100% { transform: scale(1)    translate(0%, 0%); }
}

.hero-halo {
  position: absolute;
  top: -80px;
  left: 50%;
  width: min(900px, 110vw);
  height: 900px;
  transform: translateX(-50%);
  background:
    radial-gradient(circle at 50% 38%,
      rgba(99,102,241,0.45) 0%,
      rgba(99,102,241,0.22) 22%,
      rgba(14,165,233,0.14) 42%,
      transparent 65%);
  filter: blur(30px);
  pointer-events: none;
  z-index: -1;
  animation: halo-pulse 8s ease-in-out infinite;
}

.hero-stage {
  position: absolute;
  top: 24px;
  left: 50%;
  width: clamp(230px, 28vw, 330px);
  height: clamp(230px, 28vw, 330px);
  transform: translateX(-50%);
  z-index: -1;
  pointer-events: none;
}

.hero-badge {
  width: 100%;
  height: 100%;
  filter:
    drop-shadow(0 0 24px rgba(14, 165, 233, 0.7))
    drop-shadow(0 0 60px rgba(99, 102, 241, 0.55))
    drop-shadow(0 24px 50px rgba(0, 0, 0, 0.5));
}

.hero-chevs { transform-origin: center; }
.chev { transform-box: fill-box; transform-origin: center; }
.chev-1 { opacity: 1;    animation: chev-flow 4.2s ease-in-out infinite; animation-delay: 0.8s; }
.chev-2 { opacity: 0.75; animation: chev-flow 4.2s ease-in-out infinite; animation-delay: 0.4s; }
.chev-3 { opacity: 0.45; animation: chev-flow 4.2s ease-in-out infinite; animation-delay: 0s; }

@keyframes chev-flow {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(4px); }
}

@keyframes halo-pulse {
  0%, 100% { opacity: 0.85; transform: translateX(-50%) scale(1); }
  50%      { opacity: 1;    transform: translateX(-50%) scale(1.05); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
  padding-top: clamp(250px, 26vw, 340px);
}

.hero h1 {
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
  font-weight: 400;
  letter-spacing: -0.022em;
  line-height: 1.15;
  margin: 0 auto 16px;
  max-width: 780px;
}

.lead {
  font-size: clamp(1.02rem, 1.3vw, 1.12rem);
  color: var(--text-soft);
  max-width: 680px;
  margin: 0 auto 24px;
}

.hero h1 { color: #fff; }
.hero .lead { color: rgba(255, 255, 255, 0.78); }
.hero .eyebrow {
  color: var(--brand-1);
  font-size: clamp(1.15rem, 1.4vw, 1.35rem);
  letter-spacing: 0.14em;
  margin-bottom: 14px;
}

.hero-tagline {
  margin: 22px 0 0;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.55);
}

.hero-actions {
  display: flex; gap: 18px; justify-content: center; align-items: center; flex-wrap: wrap;
}
.hero-actions .hero-link {
  flex-basis: 100%;
  text-align: center;
  margin-top: 4px;
}

.pill-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 22px 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 0.96rem;
  font-weight: 500;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.pill-cta:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
}
.pill-cta--featured {
  background: var(--grad);
  border-color: transparent;
  box-shadow: 0 10px 28px rgba(99, 102, 241, 0.35);
}
.pill-cta--featured:hover {
  background: var(--grad);
  border-color: transparent;
  transform: translateY(-1px);
  box-shadow: 0 14px 36px rgba(99, 102, 241, 0.45);
}
.pill-cta--featured .pill-icon {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  box-shadow: none;
}
.pill-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  box-shadow: 0 6px 18px rgba(99,102,241,0.45);
}
.pill-icon svg { width: 14px; height: 14px; }

.hero-link {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
}
.hero-link:hover { color: #fff; }

/* ----------  Sections  ---------- */
.section { padding: 90px 0; position: relative; }

.section--panel {
  padding: 0;
  margin: 32px 0;
}
.section--panel > .container {
  padding: 80px 56px;
  border-radius: 28px;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04),
              0 16px 36px rgba(15, 23, 42, 0.06);
}
.section-head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.section-sub { color: var(--text-soft); font-size: 1.05rem; margin-top: 12px; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.prose p { color: var(--text-soft); font-size: 1.05rem; }
.prose em { color: var(--text); font-style: normal; font-weight: 600; }

/* ----------  Cards  ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-3px);
  border-color: rgba(99,102,241,0.35);
  box-shadow: 0 6px 16px rgba(15,23,42,0.06), 0 20px 40px rgba(99,102,241,0.10);
}
.card h3 { margin-bottom: 8px; }
.card p { font-size: 0.95rem; margin: 0; }
.card-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(14,165,233,0.10), rgba(99,102,241,0.12));
  border: 1px solid rgba(99,102,241,0.18);
  color: #4f46e5;
  margin-bottom: 18px;
}
.card-icon svg { width: 22px; height: 22px; }

/* ----------  Gap (What/How/Who) cards ---------- */
.gap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.gap-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.gap-card:hover {
  transform: translateY(-3px);
  border-color: rgba(99, 102, 241, 0.35);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06), 0 20px 40px rgba(99, 102, 241, 0.10);
}
.gap-title {
  font-size: clamp(1.35rem, 2vw, 1.55rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0 0 18px;
  color: var(--text);
}
.gap-title .grad-text { font-weight: 800; }
.gap-problem {
  font-size: 0.95rem;
  color: var(--text-soft);
  margin: 0 0 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.gap-answer {
  font-size: 0.95rem;
  color: var(--text);
  margin: 0;
  line-height: 1.55;
}

.case-card { position: relative; }
.case-tag {
  position: absolute; top: 22px; right: 22px;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-2);
  background: rgba(99,102,241,0.08);
  border: 1px solid rgba(99,102,241,0.22);
  padding: 4px 10px; border-radius: 999px;
}

/* ----------  Steps  ---------- */
.steps {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  counter-reset: step;
}
.steps li {
  background: #F8FAFC;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 34px 28px 28px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}
.steps li::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--brand-1);
}
.step-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--brand-1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-1);
  margin-bottom: 22px;
}
.step-icon svg { width: 22px; height: 22px; }
.step-num {
  position: absolute;
  top: 22px;
  right: 26px;
  display: block;
  font-family: 'Source Serif 4', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.1rem;
  letter-spacing: 0;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  color: var(--brand-1);
  margin: 0;
  text-transform: none;
}
.steps h3 {
  font-size: clamp(1.4rem, 2.2vw, 1.65rem);
  font-weight: 500;
  margin: 0 0 12px;
}
.steps p { font-size: 0.95rem; line-height: 1.55; color: var(--text-soft); margin: 0; }

/* ----------  Approach (image + text rows) ---------- */
.approach {
  display: flex;
  flex-direction: column;
  gap: 90px;
}
.approach-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.approach-row--reverse .approach-media { order: 2; }
.approach-row--reverse .approach-copy { order: 1; }
.approach-media {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04),
              0 24px 48px rgba(15, 23, 42, 0.12);
  aspect-ratio: 4 / 3;
}
.approach-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.approach-num {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 14px;
}
.approach-copy h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 14px;
  line-height: 1.2;
}
.approach-copy p {
  font-size: 1.02rem;
  color: var(--text-soft);
  margin: 0;
}

/* ----------  Uses marquee ---------- */
.uses {
  padding: 80px 0;
  overflow: hidden;
  background: #FFFFFF;
}
.uses .section-head { margin-bottom: 44px; }

.marquee-rows {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
}

.marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.marquee-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: marquee-scroll 55s linear infinite;
  will-change: transform;
}
.marquee-track--reverse { animation-direction: reverse; }
.marquee:hover .marquee-track { animation-play-state: paused; }

@keyframes marquee-scroll {
  0%   { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 22px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.10);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
  user-select: none;
  flex-shrink: 0;
}
.chip-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--brand-2);
}

/* ----------  Team  ---------- */
.team {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.team-card:hover {
  transform: translateY(-3px);
  border-color: rgba(99,102,241,0.35);
  box-shadow: 0 6px 16px rgba(15,23,42,0.06), 0 20px 40px rgba(99,102,241,0.10);
}
.team-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(14,165,233,0.10), rgba(99,102,241,0.12));
  border: 1px solid var(--border-strong);
}
.team-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.team-card h3 { margin-bottom: 2px; }
.team-role {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 14px;
}
.team-bio { font-size: 0.95rem; color: var(--text-soft); margin: 0; }

/* ----------  Contact  ---------- */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 60px;
  align-items: start;
}
.contact-copy h2 { font-size: clamp(1.7rem, 2.8vw, 2.2rem); }
.contact-list {
  list-style: none; padding: 0; margin: 28px 0 0;
  display: flex; flex-direction: column; gap: 14px;
}
.contact-list li {
  display: grid; grid-template-columns: 140px 1fr; align-items: baseline;
  font-size: 0.95rem;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.contact-list strong { color: var(--text-dim); font-weight: 600; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; }
.contact-list a { color: var(--text); }
.contact-list a:hover { color: var(--brand-2); }

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
}
.field select {
  width: 100%;
  background: #fff;
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  padding: 13px 40px 13px 14px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.97rem;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field select:focus {
  outline: none;
  border-color: rgba(99, 102, 241, 0.6);
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.15);
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-soft);
  margin-bottom: 8px;
}
.field input,
.field textarea {
  width: 100%;
  background: #fff;
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  padding: 13px 14px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.97rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(99,102,241,0.6);
  box-shadow: 0 0 0 4px rgba(99,102,241,0.15);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-status { margin: 14px 0 0; font-size: 0.9rem; min-height: 1.2em; }
.form-status.success { color: #047857; }
.form-status.error { color: #b91c1c; }

/* ----------  Footer  ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
  margin-top: 60px;
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-meta { color: var(--text-dim); font-size: 0.88rem; margin: 0; }

/* ----------  Responsive  ---------- */
@media (max-width: 960px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .gap-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .team { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .two-col { grid-template-columns: 1fr; gap: 24px; }
  .contact-wrap { grid-template-columns: 1fr; gap: 40px; }
  .approach { gap: 56px; }
  .approach-row { grid-template-columns: 1fr; gap: 24px; }
  .approach-row--reverse .approach-media { order: 0; }
  .approach-row--reverse .approach-copy { order: 1; }
  .approach-media { aspect-ratio: 16 / 10; }
}

@media (max-width: 720px) {
  .nav-links {
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: linear-gradient(135deg, #0B1220 0%, #1E1B4B 100%);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 24px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transform: translateY(-12px);
    opacity: 0; pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .nav-links.open { opacity: 1; transform: none; pointer-events: auto; }
  .nav-links a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links a:last-child { border-bottom: none; }
  .nav-cta { text-align: center; margin-top: 8px; }
  .nav-toggle { display: inline-flex; }

  .hero { padding: 40px 0 80px; }
  .hero-inner { padding-top: clamp(220px, 65vw, 320px); }
  .hero-stage { top: 20px; }
  .section { padding: 70px 0; }
  .section--panel { margin: 20px 0; }
  .section--panel > .container { padding: 50px 24px; border-radius: 20px; }
  .uses { padding: 60px 0; }
  .marquee-rows { gap: 12px; }
  .marquee-track { gap: 12px; }
  .chip { padding: 9px 16px; font-size: 0.88rem; }
  .cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .contact-list li { grid-template-columns: 1fr; gap: 4px; }
  .contact-form { padding: 24px; }
}

/* ----------  Scroll reveal ---------- */
.reveal,
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal.is-visible,
.reveal-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.24s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.32s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.40s; }

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; scroll-behavior: auto !important; }
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; }
}
