:root {
  --text: #ecedf4;
  --text-muted: #9095a8;
  --text-dim: #6b708a;
  --radius: 14px;
  --radius-lg: 20px;
  --max: 1200px;
  --panel-glow: 0 0 0 1px rgba(255,255,255,0.03), 0 18px 50px rgba(0,0,0,0.24), 0 0 28px rgba(255,255,255,0.04);
  --panel-glow-strong: 0 0 0 1px rgba(255,255,255,0.05), 0 24px 70px rgba(0,0,0,0.28), 0 0 34px rgba(255,255,255,0.06);
}

/* Background themes — swap via data-bg on <html> */
:root, :root[data-bg="midnight"] {
  --bg: #0a0b14;       --bg-rgb: 10, 11, 20;
  --bg-elev: #12141f;  --bg-elev-rgb: 18, 20, 31;
  --bg-card: #171927;  --bg-card-rgb: 23, 25, 39;
  --border: #232639;
  --border-strong: #2e3147;
}
:root[data-bg="slate"] {
  --bg: #0f172a;       --bg-rgb: 15, 23, 42;
  --bg-elev: #1a2744;  --bg-elev-rgb: 26, 39, 68;
  --bg-card: #24314c;  --bg-card-rgb: 36, 49, 76;
  --border: #334155;
  --border-strong: #475569;
}
:root[data-bg="carbon"] {
  --bg: #1a2744;       --bg-rgb: 26, 39, 68;
  --bg-elev: #0f172a;  --bg-elev-rgb: 15, 23, 42;
  --bg-card: #24314c;  --bg-card-rgb: 36, 49, 76;
  --border: #334155;
  --border-strong: #475569;
}
:root[data-bg="ocean"] {
  --bg: #0a1a24;       --bg-rgb: 10, 26, 36;
  --bg-elev: #122634;  --bg-elev-rgb: 18, 38, 52;
  --bg-card: #18334a;  --bg-card-rgb: 24, 51, 74;
  --border: #234456;
  --border-strong: #2f5a72;
}
:root[data-bg="plum"] {
  --bg: #140a1a;       --bg-rgb: 20, 10, 26;
  --bg-elev: #22132c;  --bg-elev-rgb: 34, 19, 44;
  --bg-card: #2e1a3b;  --bg-card-rgb: 46, 26, 59;
  --border: #3d2550;
  --border-strong: #513367;
}

/* Accent themes — swap via data-theme on <html> */
:root, :root[data-theme="indigo"] {
  --accent: #6366f1;  --accent-2: #22d3ee;
  --accent-rgb: 99, 102, 241;   --accent-2-rgb: 34, 211, 238;
  --gradient: linear-gradient(135deg, #6366f1 0%, #22d3ee 100%);
  --gradient-soft: linear-gradient(135deg, rgba(var(--accent-rgb),0.15) 0%, rgba(var(--accent-2-rgb),0.08) 100%);
  --accent-glow: rgba(var(--accent-rgb), 0.35);
}
:root[data-theme="violet"] {
  --accent: #be123c;  --accent-2: #be123c;
  --accent-rgb: 190, 18, 60;  --accent-2-rgb: 190, 18, 60;
  --gradient: linear-gradient(135deg, #be123c 0%, #be123c 100%);
  --gradient-soft: linear-gradient(135deg, rgba(190,18,60,0.15) 0%, rgba(190,18,60,0.08) 100%);
  --accent-glow: rgba(190, 18, 60, 0.35);
}
:root[data-theme="emerald"] {
  --accent: #34d399;  --accent-2: #2dd4bf;
  --accent-rgb: 52, 211, 153;   --accent-2-rgb: 45, 212, 191;
  --gradient: linear-gradient(135deg, #34d399 0%, #2dd4bf 100%);
  --gradient-soft: linear-gradient(135deg, rgba(52,211,153,0.15) 0%, rgba(45,212,191,0.08) 100%);
  --accent-glow: rgba(52, 211, 153, 0.35);
}
:root[data-theme="amber"] {
  --accent: #ED7D31;  --accent-2: #ED7D31;
  --accent-rgb: 237, 125, 49;   --accent-2-rgb: 237, 125, 49;
  --gradient: linear-gradient(135deg, #ED7D31 0%, #ED7D31 100%);
  --gradient-soft: linear-gradient(135deg, rgba(237,125,49,0.15) 0%, rgba(237,125,49,0.08) 100%);
  --accent-glow: rgba(237, 125, 49, 0.35);
}
:root[data-theme="sky"] {
  --accent: #60a5fa;  --accent-2: #38bdf8;
  --accent-rgb: 96, 165, 250;   --accent-2-rgb: 56, 189, 248;
  --gradient: linear-gradient(135deg, #60a5fa 0%, #38bdf8 100%);
  --gradient-soft: linear-gradient(135deg, rgba(96,165,250,0.15) 0%, rgba(56,189,248,0.08) 100%);
  --accent-glow: rgba(96, 165, 250, 0.35);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

/* Background effect */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 100vh;
  background:
    radial-gradient(ellipse 80% 50% at 20% 0%, rgba(var(--accent-rgb), 0.15), transparent 50%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(var(--accent-2-rgb), 0.1), transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* ============ NAV ============ */
nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 34px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--text); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.005em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 30px var(--accent-glow);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
}

.btn-ghost:hover {
  border-color: var(--accent);
  background: rgba(var(--accent-rgb), 0.08);
}

@media (max-width: 768px) {
  .nav-links a:not(.btn) { display: none; }
}

/* ============ HERO ============ */
section { position: relative; z-index: 1; }

.hero {
  padding: 180px 32px 120px;
  min-height: 70vh;
  max-width: var(--max);
  margin: 0 auto;
  text-align: left;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  bottom: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
  background: var(--bg-elev);
}

/* Dark readability overlay — fades photos into the dark canvas */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 800px;
  margin-left: -45px;
  padding: 36px 44px 40px;
  border-radius: 18px;
  background: rgba(var(--bg-rgb), 0.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}
.hero-content h1 {
  color: #ffffff;
  font-size: clamp(35px, 5.35vw, 66px);
  letter-spacing: -0.035em;
  margin-bottom: 20px;
}
.hero-content .hero-sub { color: rgba(255, 255, 255, 0.82); max-width: none; }

.hero-scene {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1s ease, transform 6s ease;
  will-change: opacity, transform;
  backface-visibility: hidden;
  transform-origin: center center;
}

.hero-scene.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-scene img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.88) contrast(1.02) saturate(0.95);
  transform: translateZ(0);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(var(--accent-rgb), 0.12);
  border: 1px solid rgba(var(--accent-rgb), 0.3);
  color: var(--accent);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

h1 {
  font-size: clamp(40px, 6.5vw, 80px);
  font-weight: 200;
  line-height: 1.02;
  letter-spacing: -0.045em;
  margin-bottom: 24px;
}
h1 strong, h1 b { font-weight: 500; }

h1 .grad { color: var(--accent); }

.hero-sub {
  font-size: clamp(17px, 1.6vw, 20px);
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 0 20px;
  line-height: 1.6;
}

.hero h1 { max-width: 720px; }

.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 14px;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 15px;
}

/* ============ SECTION HEADER ============ */
section.block { padding: 100px 32px; }

.container {
  max-width: var(--max);
  margin: 0 auto;
}

.section-head { text-align: center; margin-bottom: 64px; }

.section-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

h2 {
  font-size: clamp(32px, 4.2vw, 48px);
  font-weight: 200;
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
}

/* ============ MISSION ============ */
.mission {
  background: #ffffff;
  color: #0a0b14;
}
.mission h2 { color: #0a0b14; }

.mission-text {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.mission-text p {
  font-size: 19px;
  line-height: 1.7;
  color: rgba(10, 11, 20, 0.72);
  margin-bottom: 24px;
}



/* ============ PLATFORM (3-step) ============ */
.platform-lead {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 780px;
  margin: 0 auto 40px;
  text-align: center;
}

.pipeline {
  max-width: 960px;
  margin: 0 auto 72px;
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--panel-glow);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.pipeline svg { width: 100%; height: auto; display: block; }

.pipeline-mobile { display: none; }

@media (max-width: 760px) {
  #platform.block { padding-left: 16px; padding-right: 16px; }
  .pipeline { display: none; }
  .pipeline-mobile {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    max-width: 560px;
    margin: 0 auto 56px;
    padding: 20px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--panel-glow);
  }
  .pipe-col { display: flex; flex-direction: column; gap: 10px; }
  .pipe-col-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 2px;
    text-align: center;
  }
  .pipe-item {
    background: var(--bg-elev);
    border: 1px solid var(--border-strong);
    border-radius: 10px;
    padding: 12px 14px;
    text-align: center;
  }
  .pipe-item-title {
    font-size: 15px;
    color: #ecedf4;
    letter-spacing: -0.01em;
    margin-bottom: 3px;
  }
  .pipe-item-sub {
    font-size: 13px;
    color: #9095a8;
    font-weight: 300;
  }
  .pipe-arrow {
    text-align: center;
    color: var(--accent);
    font-size: 22px;
    line-height: 1;
    opacity: 0.8;
  }
  .pipe-center {
    background: var(--accent);
    border-radius: 14px;
    padding: 18px 20px;
    text-align: center;
  }
  .pipe-center-title {
    font-size: 18px;
    font-weight: 300;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  }
  .pipe-center-copy {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.45;
  }
}

.pipeline.reveal.in:hover {
  transform: translateY(-4px) scale(1.012);
  border-color: var(--border-strong);
  box-shadow: var(--panel-glow-strong);
}

/* ============ TRUSTED ============ */
.trusted {
  background: #ffffff;
  color: #0a0b14;
}

.trusted h2 {
  color: #0a0b14;
}

.trusted-copy {
  max-width: 760px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(10, 11, 20, 0.72);
}

.trusted-grid {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 48px;
}

.trusted-list {
  list-style: none;
  padding: 0 0 0 28px;
  margin: 0;
  display: grid;
  gap: 16px;
}

.trusted-list:first-child {
  padding-left: 120px;
}

.trusted-list li {
  position: relative;
  padding-left: 24px;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.45;
  color: #0a0b14;
}

.trusted-list li::before {
  content: '';
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(var(--accent-rgb), 0.12);
}

@media (max-width: 1289px) {
  .hero-content {
    margin-left: -22px;
    padding-left: 21px;
  }
}

@media (max-width: 760px) {
  .trusted-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .trusted-list {
    padding-left: 12px;
  }

  .trusted-list:first-child {
    padding-left: 12px;
  }
}

/* ============ DELIVERIES (4 cards) ============ */
.deliveries {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elev) 100%);
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width: 860px) { .cards { grid-template-columns: 1fr; } }

.card {
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.3s;
}

.card:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px) scale(1.015);
}

.card:hover::before { opacity: 1; }

.card-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 10px;
  font-weight: 500;
  color: var(--accent-2);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 18px;
  padding: 4px 10px;
  background: rgba(var(--accent-2-rgb), 0.08);
  border-radius: 6px;
  border: 1px solid rgba(var(--accent-2-rgb), 0.2);
}

.card h3 {
  font-size: 22px;
  font-weight: 300;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.card-hook {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--accent);
  margin-bottom: 16px;
}

.card p { color: var(--text-muted); font-size: 15px; line-height: 1.65; }

.card > p:last-of-type {
  flex: 1;
  margin-bottom: 24px;
}

.card-viz {
  padding: 16px;
  background: var(--bg-elev);
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.02), 0 0 18px rgba(255,255,255,0.025);
}
.card-viz svg { width: 100%; height: auto; display: block; }

/* ============ BUILT FOR ============ */
.built-for {
  background: #ffffff;
  color: #0a0b14;
}

.built-for-head {
  max-width: 920px;
  margin: 0 auto 84px;
  text-align: center;
  padding-left: 0;
}

.built-for-head .section-tag {
  margin-bottom: 22px;
}

.built-for-head h2 {
  color: #0a0b14;
  margin-bottom: 0;
}

.built-for-copy {
  max-width: 760px;
  margin: 18px auto 0;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(10, 11, 20, 0.72);
}

.built-for-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.9fr 1.02fr;
  gap: 0;
  padding-left: 36px;
}

.built-for-col {
  min-height: 100%;
  padding: 0 44px 0 0;
}

.built-for-col + .built-for-col {
  border-left: 1px solid rgba(var(--accent-rgb), 0.22);
  padding-left: 48px;
}

.built-for-col h3 {
  position: relative;
  margin-bottom: 26px;
  padding-left: 20px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0a0b14;
}

.built-for-col h3::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 10px;
  height: 2px;
  background: var(--accent);
  transform: translateY(-50%);
  border-radius: 999px;
}

.built-for-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 18px;
}

.built-for-list li {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(10, 11, 20, 0.72);
}

@media (max-width: 980px) {
  .built-for-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .built-for-head {
    padding-left: 0;
  }

  .built-for-grid {
    padding-left: 0;
  }

  .built-for-col {
    padding-right: 0;
  }

  .built-for-col + .built-for-col {
    border-left: none;
    border-top: 1px solid rgba(var(--accent-rgb), 0.22);
    padding-left: 0;
    padding-top: 28px;
  }
}

@media (max-width: 640px) {
  .built-for-head {
    margin-bottom: 56px;
  }

  .built-for-list li {
    font-size: 15px;
  }
}

/* ============ TEAM ============ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 680px) { .team-grid { grid-template-columns: 1fr; } }

.team-card {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--panel-glow);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.team-card.reveal.in:hover {
  transform: translateY(-4px) scale(1.015);
  border-color: var(--border-strong);
  box-shadow: var(--panel-glow-strong);
}

.team-photo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background:
    linear-gradient(135deg, rgba(var(--accent-rgb), 0.15), rgba(var(--accent-2-rgb), 0.15)),
    var(--bg-elev);
  border: 2px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  font-size: 36px;
  overflow: hidden;
}

.team-photo-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
  transform: scale(1.18);
}

.team-card h3 {
  font-size: 19px;
  font-weight: 300;
  letter-spacing: -0.015em;
  margin-bottom: 4px;
}

.team-role {
  font-size: 11px;
  font-weight: 500;
  color: var(--accent-2);
  margin-bottom: 16px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.team-bio {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* ============ CONTACT ============ */
.contact {
  background: #ffffff;
  color: #0a0b14;
}

.contact h2 {
  color: #0a0b14;
}

.contact .section-sub {
  color: rgba(10, 11, 20, 0.72);
}

.contact-box {
  max-width: 640px;
  margin: 0 auto;
  padding: 48px;
  background: #f1f5f9;
  border: 1px solid rgba(var(--accent-rgb), 0.14);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  box-shadow:
    0 24px 60px rgba(15, 23, 42, 0.16),
    0 0 60px rgba(71, 85, 105, 0.14),
    0 0 90px rgba(51, 65, 85, 0.1);
}

.contact-box::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.22) 38%, transparent 72%);
  pointer-events: none;
}

@media (max-width: 600px) { .contact-box { padding: 32px 24px; } }

form { display: flex; flex-direction: column; gap: 18px; position: relative; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

@media (max-width: 520px) { .form-row { grid-template-columns: 1fr; } }

.field label {
  display: block;
  font-size: 13px;
  color: rgba(10, 11, 20, 0.68);
  margin-bottom: 8px;
  font-weight: 500;
}

.field input, .field textarea {
  width: 100%;
  padding: 13px 16px;
  background: #ffffff;
  border: 1px solid rgba(10, 11, 20, 0.12);
  border-radius: 10px;
  color: #0a0b14;
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  resize: vertical;
}

.field input::placeholder, .field textarea::placeholder {
  color: rgba(10, 11, 20, 0.42);
}

.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.15);
}

.field textarea { min-height: 120px; }

.btn-submit {
  width: 100%;
  justify-content: center;
}

.btn-submit:disabled {
  opacity: 0.72;
  cursor: not-allowed;
  transform: none;
  box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-submit:disabled:hover {
  transform: none;
  box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-submit-icon {
  transition: transform 0.2s ease;
}

.btn-submit:hover .btn-submit-icon {
  transform: translateX(2px);
}

.form-success {
  margin-top: 18px;
  font-size: 14px;
  font-weight: 600;
  color: #0f766e;
}

.form-error {
  margin-top: 14px;
  font-size: 14px;
  color: #dc2626;
}

.optional {
  color: rgba(10, 11, 20, 0.46);
  font-weight: 400;
  font-size: 12px;
}

/* ============ FOOTER ============ */
footer {
  padding: 60px 32px 40px;
  border-top: 1px solid var(--border);
  background: var(--bg);
  position: relative;
  z-index: 1;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-logo {
  height: 28px;
  width: auto;
  display: block;
  opacity: 0.75;
}

.footer-text {
  color: var(--text-dim);
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 28px;
  color: var(--text-muted);
  font-size: 14px;
}

.footer-links a:hover { color: var(--text); }

/* ============ REVEAL ANIMATION ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.reveal-left {
  transform: translateX(-36px);
}

.reveal.reveal-right {
  transform: translateX(36px);
}

.reveal.reveal-deep {
  transform: translateY(60px);
  transition-duration: 0.6s;
  transition-timing-function: ease-out;
}

.reveal.stagger-1 {
  transition-delay: 0s;
}

.reveal.stagger-2 {
  transition-delay: 0.1s;
}

.reveal.stagger-3 {
  transition-delay: 0.2s;
}

.reveal.stagger-4 {
  transition-delay: 0.3s;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.card.reveal.in:hover {
  transform: translateY(-4px) scale(1.015);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .hero-scene,
  .card,
  .pipeline,
  .team-card,
  .btn,
  .team-links a,
  .field input,
  .field textarea,
  .btn-submit-icon {
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .card:hover,
  .card.reveal.in:hover,
  .pipeline.reveal.in:hover,
  .team-card.reveal.in:hover,
  .btn-primary:hover,
  .btn-ghost:hover,
  .btn-submit:hover .btn-submit-icon {
    transform: none;
  }
}

/* ============ IMPRINT PAGE ============ */
.imprint-page {
  min-height: 100vh;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elev) 100%);
}

.imprint-nav-bar {
  position: sticky;
  top: 0;
  z-index: 120;
  background: rgba(var(--bg-rgb), 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.imprint-nav-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.imprint-main {
  padding: 0 32px 96px;
  position: relative;
  z-index: 1;
}

.imprint-wrap {
  max-width: 980px;
  padding: 40px 0 80px;
  background: #ffffff;
}

.imprint-panel {
  padding: 44px;
  border-radius: 0;
  background: transparent;
  color: #0a0b14;
  box-shadow: none;
}

.imprint-panel h2,
.imprint-panel h3 {
  color: #0a0b14;
}

.imprint-section {
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(10, 11, 20, 0.08);
}

.imprint-section-no-divider-border {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.imprint-section-last {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.imprint-section h2 {
  margin-bottom: 12px;
}

.imprint-section h3 {
  font-size: 24px;
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.imprint-subtitle {
  font-size: 14px;
  color: rgba(10, 11, 20, 0.52);
}

.imprint-block {
  margin-top: 18px;
}

.imprint-block p + p {
  margin-top: 6px;
}

.imprint-panel p,
.imprint-panel li {
  font-size: 16px;
  line-height: 1.58;
  color: rgba(10, 11, 20, 0.78);
}

.imprint-strong {
  font-weight: 600;
  color: #0a0b14;
}

.imprint-strong-light {
  font-weight: 600;
  color: #0a0b14;
}

.imprint-link {
  color: #0a0b14;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.imprint-link:hover {
  color: var(--accent);
}

.imprint-list {
  margin: 14px 0 0 20px;
}

.imprint-list li + li {
  margin-top: 6px;
}

.imprint-legal {
  margin-top: 16px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  color: rgba(10, 11, 20, 0.58);
}

.imprint-divider {
  height: 3px;
  border: none;
  margin: 34px 0 48px;
  background: linear-gradient(90deg, rgba(var(--accent-rgb), 0), rgba(var(--accent-rgb), 0.6), rgba(var(--accent-rgb), 0));
}

.imprint-footer {
  background: transparent;
}

@media (max-width: 760px) {
  .imprint-main {
    padding: 0 20px 72px;
  }

  .imprint-wrap {
    padding: 28px 0 56px;
  }

  .imprint-panel {
    padding: 28px 24px;
  }

  .imprint-nav-actions {
    gap: 10px;
  }

  .imprint-nav-actions .btn {
    padding: 10px 14px;
  }

  .imprint-panel p,
  .imprint-panel li {
    font-size: 15px;
  }
}

@media (max-width: 560px) {
  .imprint-nav-actions .btn-ghost {
    display: none;
  }

  .imprint-section h3 {
    font-size: 21px;
  }
}
