:root {
  --bg: #06101d;
  --bg-soft: #0b1628;
  --bg-deep: #050c17;
  --surface: #edf3f9;
  --surface-2: #f7fbff;
  --text: #f4f8fc;
  --muted: #a6b5ca;
  --title-dark: #091525;
  --text-dark: #486079;
  --white: #ffffff;
  --line: rgba(255,255,255,0.12);
  --line-soft: rgba(255,255,255,0.08);
  --line-dark: rgba(9,21,37,0.08);
  --card: rgba(255,255,255,0.06);
  --card-strong: rgba(255,255,255,0.1);
  --purple: #7c5cff;
  --purple-2: #a078ff;
  --blue: #46b6ff;
  --cyan: #72ecff;
  --green: #7df0bf;
  --shadow: 0 24px 64px rgba(3,10,25,0.24);
  --radius-2xl: 34px;
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --max: 1220px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 0% 0%, rgba(124,92,255,0.22), transparent 26%),
    radial-gradient(circle at 100% 0%, rgba(70,182,255,0.16), transparent 24%),
    linear-gradient(180deg, #040a14 0%, #091321 38%, #f4f8fc 38%, #eef4fa 100%);
  overflow-x: hidden;
}
.page-internal {
  color: var(--title-dark);
  background: linear-gradient(180deg, #f6f9fd 0%, #eef4fa 100%);
}
.page-internal .nav-shell { backdrop-filter: blur(14px); }
.page-internal .navbar {
  background: rgba(255,255,255,0.82);
  border-color: rgba(9,21,37,0.08);
  box-shadow: 0 16px 36px rgba(12,22,40,0.08);
}
.page-internal .brand,
.page-internal .nav-toggle { color: var(--title-dark); }
.page-internal .nav-menu { color: #62768e; }
.page-internal .nav-menu a:hover,
.page-internal .nav-menu a.active { color: var(--title-dark); }
.page-internal .page-banner {
  min-height: 420px;
  border-color: rgba(9,21,37,0.08);
  box-shadow: 0 20px 48px rgba(12,22,40,0.10);
}
.page-internal .page-banner::after {
  background: linear-gradient(180deg, rgba(247,250,255,0.08), rgba(9,21,37,0.62));
}
.page-internal .page-banner .overlay-content,
.page-internal .page-banner .overlay-content h1,
.page-internal .page-banner .overlay-content h2,
.page-internal .page-banner .overlay-content h3 {
  color: var(--white);
}
.page-internal .page-banner .overlay-content .lead {
  color: rgba(244,248,252,0.88);
}
.page-internal .page-banner .overlay-content .eyebrow {
  border-color: rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.08);
  color: var(--cyan);
}
.page-internal .section:not(:first-of-type) .panel,
.page-internal .section:not(:first-of-type) .card {
  background: var(--white);
  border-color: var(--line-dark);
  box-shadow: 0 16px 38px rgba(12,22,40,0.08);
}
.page-internal .section:not(:first-of-type) .copy,
.page-internal .section:not(:first-of-type) .small-copy,
.page-internal .section:not(:first-of-type) li { color: var(--text-dark); }
.page-internal .section:not(:first-of-type) .eyebrow,
.page-internal .panel .eyebrow,
.page-internal .card .eyebrow {
  border-color: rgba(9,21,37,0.08);
  background: rgba(124,92,255,0.08);
  color: #5d43e8;
}
.page-internal .proof-strip {
  background: rgba(9,21,37,0.03);
  border-color: rgba(9,21,37,0.08);
}
.page-internal .proof-strip span { color: #5a6d86; }
.page-internal .timeline-item {
  background: var(--white);
  border-color: var(--line-dark);
}
.page-internal .btn-dark { background: #10203a; }
.page-contact .cta-panel h1 {
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  max-width: 900px;
}
.page-contact .cta-panel .lead {
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.62;
  max-width: 820px;
}
a { color: inherit; text-decoration: none; transition: color .2s ease, opacity .2s ease, transform .2s ease; }
a:hover { opacity: .98; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
::selection { background: rgba(124,92,255,0.24); color: var(--white); }
.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
.section { position: relative; padding: 92px 0; }
.section.light {
  color: var(--title-dark);
  background: linear-gradient(180deg, rgba(255,255,255,0.62), rgba(244,248,252,0.92));
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; min-height: 38px; padding: 0 14px;
  border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,0.05);
  color: var(--cyan); font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
}
.light .eyebrow {
  border-color: rgba(9,21,37,0.08); background: rgba(124,92,255,0.08); color: #5d43e8;
}
h1,h2,h3,h4 { margin: 0 0 14px; font-family: 'Space Grotesk', Inter, sans-serif; line-height: 1.02; }
h1 { font-size: clamp(46px, 7vw, 88px); letter-spacing: -0.06em; }
h2 { font-size: clamp(36px, 5vw, 60px); letter-spacing: -0.045em; }
h3 { font-size: clamp(25px, 3vw, 36px); letter-spacing: -0.04em; }
h4 { font-size: 22px; letter-spacing: -0.025em; }
p { margin: 0; }
.lead {
  max-width: 780px; color: var(--muted); font-size: clamp(18px, 2vw, 22px); line-height: 1.68;
}
.light .lead { color: #60748c; }
.copy { color: var(--muted); line-height: 1.72; }
.light .copy { color: var(--text-dark); }
.small-copy { color: var(--muted); font-size: 14px; line-height: 1.65; }
.light .small-copy { color: #687d96; }
.label { color: var(--muted); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; font-weight: 800; }
.kicker { font-weight: 700; color: var(--cyan); }
.nav-shell { position: sticky; top: 0; z-index: 100; backdrop-filter: blur(18px); }
.navbar {
  position: relative;
  width: min(calc(100% - 24px), var(--max));
  margin: 14px auto 0;
  padding: 14px 18px;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  background: linear-gradient(180deg, rgba(10,20,36,0.88), rgba(7,17,31,0.78));
  border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow);
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: .05em; }
.brand-mark {
  width: 40px; height: 40px; display: grid; place-items: center; border-radius: 13px;
  background: linear-gradient(135deg, var(--purple), var(--blue)); box-shadow: 0 14px 30px rgba(124,92,255,0.34);
  font-family: 'Space Grotesk', Inter, sans-serif;
}
.nav-menu { display: flex; gap: 18px; align-items: center; color: #c7d4e6; font-size: 14px; }
.nav-menu a:hover, .nav-menu a.active { color: var(--white); }
.nav-toggle { display: none; background: transparent; color: var(--white); border: 0; font-size: 28px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 22px; border-radius: 14px; font-weight: 700;
  border: 1px solid transparent; cursor: pointer; transition: .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible,
.input:focus-visible,
textarea:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 4px rgba(124,92,255,0.16);
}
.btn-primary {
  background: linear-gradient(135deg, var(--purple), var(--blue)); color: var(--white);
  box-shadow: 0 18px 34px rgba(124,92,255,0.28);
}
.btn-secondary { background: rgba(255,255,255,0.08); color: var(--white); border-color: rgba(255,255,255,0.24); }
.btn-secondary:hover { background: rgba(255,255,255,0.14); }
.btn-dark { background: #0c1a31; color: var(--white); }
.btn-dark:hover { background: #112746; }
.hero { padding: 60px 0 88px; }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 28px; align-items: stretch; }
.hero-copy { padding-top: 26px; }
.hero-copy h1 {
  font-size: clamp(38px, 5.4vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.05em;
  max-width: 760px;
}
.hero-copy .lead {
  margin-top: 22px;
  max-width: 720px;
  font-size: clamp(17px, 1.65vw, 20px);
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 38px; }
.metric {
  padding: 18px; border-radius: 18px; background: var(--card); border: 1px solid var(--line);
}
.metric strong { display: block; font-family: 'Space Grotesk'; font-size: clamp(28px, 3vw, 42px); }
.metric span { display: block; margin-top: 6px; color: var(--muted); font-size: 14px; }
.hero-visual, .page-banner {
  position: relative; min-height: 640px; overflow: hidden; border-radius: var(--radius-2xl);
  border: 1px solid var(--line); background-color: #081321; background-size: cover; background-position: center; box-shadow: var(--shadow);
}
.page-banner { min-height: 450px; }
.hero-visual::after, .page-banner::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,16,29,0.15), rgba(6,16,29,0.82));
}
.overlay-content { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 36px; }
.overlay-content > * { max-width: 860px; }
.float-card {
  position: absolute; z-index: 2; padding: 18px; border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.12); background: rgba(8,19,33,0.76);
  backdrop-filter: blur(16px); box-shadow: var(--shadow);
}
.float-card strong { display: block; margin-top: 8px; font-size: 38px; font-family: 'Space Grotesk'; }
.float-card small { display: block; margin-top: 6px; color: var(--muted); line-height: 1.5; }
.fc-1 { top: 26px; right: 24px; width: 220px; }
.fc-2 { left: 24px; bottom: 24px; width: 290px; }
.fc-3 { right: 24px; bottom: 136px; width: 220px; }
.panel, .card {
  padding: 30px; border-radius: var(--radius-xl); background: var(--card); border: 1px solid var(--line);
  box-shadow: 0 16px 38px rgba(0,0,0,0.12);
}
.card, .case-card, .contract-card, .stat-card, .mini-card {
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.card:hover, .case-card:hover, .contract-card:hover, .stat-card:hover, .mini-card:hover {
  transform: translateY(-4px);
}
.light .panel, .light .card {
  background: rgba(255,255,255,0.84); border-color: var(--line-dark); box-shadow: 0 16px 38px rgba(12,22,40,0.08);
}
.light .card:hover,
.light .panel:hover,
.light .contract-card:hover,
.light .stat-card:hover {
  box-shadow: 0 20px 44px rgba(12,22,40,0.12);
}
.panel-strong {
  background: linear-gradient(160deg, rgba(124,92,255,0.16), rgba(70,182,255,0.10));
}
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.stack-16 > * + * { margin-top: 16px; }
.stack-20 > * + * { margin-top: 20px; }
.stack-24 > * + * { margin-top: 24px; }
.badge-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.badge {
  min-height: 44px; display: inline-flex; align-items: center; padding: 0 18px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.05); font-weight: 700;
}
.light .badge { border-color: rgba(9,21,37,0.08); background: rgba(9,21,37,0.05); }
.proof-strip {
  margin-top: 24px; padding: 18px 20px; border-radius: 18px; border: 1px solid var(--line);
  background: rgba(255,255,255,0.04); display: flex; gap: 14px; flex-wrap: wrap; align-items: center;
}
.light .proof-strip { background: rgba(9,21,37,0.03); border-color: rgba(9,21,37,0.08); }
.proof-strip span { font-weight: 700; color: var(--muted); }
.light .proof-strip span { color: #5a6d86; }
.kpi-band { display: grid; grid-template-columns: 1.12fr .88fr; gap: 18px; margin-top: 34px; }
.kpi-hero {
  padding: 36px; border-radius: var(--radius-2xl); border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(124,92,255,0.16), rgba(70,182,255,0.10)); box-shadow: var(--shadow);
}
.kpi-hero .big { font-family: 'Space Grotesk'; font-size: clamp(78px, 12vw, 150px); line-height: .88; margin: 18px 0 10px; }
.kpi-side { display: grid; gap: 16px; }
.kpi-box {
  padding: 24px; border-radius: 22px; border: 1px solid var(--line); background: var(--card);
}
.light .kpi-box { background: var(--white); border-color: var(--line-dark); }
.kpi-box strong { display: block; font-family: 'Space Grotesk'; font-size: 34px; margin-bottom: 8px; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: center; }
.media-card {
  position: relative; min-height: 500px; overflow: hidden; border-radius: var(--radius-2xl);
  background-size: cover; background-position: center; box-shadow: var(--shadow);
}
.media-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(9,21,37,0.06), rgba(9,21,37,0.78));
}
.media-note { position: absolute; left: 24px; right: 24px; bottom: 24px; z-index: 2; }
.timeline { display: grid; gap: 18px; }
.timeline-item {
  padding: 22px; border-radius: 20px; border: 1px solid var(--line);
  background: rgba(255,255,255,0.05);
}
.light .timeline-item { background: var(--white); border-color: var(--line-dark); }
.timeline-item h4 { margin-bottom: 8px; }
.card ul, .panel ul, .timeline ul { margin: 0; padding-left: 18px; }
.card li, .panel li, .timeline li { color: var(--muted); line-height: 1.7; }
.light .card li, .light .panel li, .light .timeline li { color: var(--text-dark); }
.contract-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 30px; }
.contract-card {
  padding: 26px; border-radius: 24px; background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border: 1px solid var(--line); box-shadow: 0 16px 36px rgba(0,0,0,0.12);
}
.light .contract-card {
  background: var(--white);
  color: var(--title-dark);
  border-color: var(--line-dark);
  box-shadow: 0 16px 36px rgba(12,22,40,0.08);
}
.light .contract-card .copy { color: var(--text-dark); }
.contract-card strong { display: block; font-size: 22px; margin-bottom: 10px; }
.case-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; margin-top: 34px; }
.case-card {
  overflow: hidden; border-radius: 28px; background: var(--white); color: var(--title-dark);
  border: 1px solid var(--line-dark); box-shadow: 0 18px 42px rgba(12,22,40,0.10);
}
.case-media {
  position: relative; height: 240px; background-size: cover; background-position: center;
}
.case-media::after {
  content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(9,21,37,0.04), rgba(9,21,37,0.82));
}
.case-media .content { position: absolute; left: 22px; right: 22px; bottom: 18px; z-index: 2; color: var(--white); }
.case-body { padding: 24px; }
.case-body .copy { color: var(--text-dark); }
.client-line { color: #44576d; font-weight: 700; margin-bottom: 14px; }
.result-box {
  margin-top: 18px; padding: 16px 18px; border-radius: 18px; font-weight: 700; color: #112136;
  background: linear-gradient(135deg, rgba(124,92,255,0.08), rgba(70,182,255,0.10)); border: 1px solid rgba(124,92,255,0.14);
}
.case-spotlight { grid-column: span 2; display: grid; grid-template-columns: 1fr 1fr; }
.case-spotlight .case-media { height: auto; min-height: 100%; }
.results-band {
  padding: 38px; border-radius: 32px; border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(145deg, #0a1324, #111e36); box-shadow: var(--shadow);
}
.light .results-band {
  color: var(--white);
  border-color: rgba(255,255,255,0.10);
  background: linear-gradient(145deg, #0c1730, #172847);
}
.light .results-band h1,
.light .results-band h2,
.light .results-band h3,
.light .results-band h4,
.light .results-band p,
.light .results-band .copy,
.light .results-band .small-copy,
.light .results-band .label,
.light .results-band .source-list,
.light .results-band span {
  color: rgba(244,248,252,0.92);
}
.light .results-band .eyebrow {
  border-color: rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.08);
  color: var(--cyan);
}
.mini-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 24px; }
.mini-card {
  padding: 22px; border-radius: 22px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
}
.light .results-band .mini-card {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.10);
}
.results-band .mini-card strong, .mini-card strong { display: block; font-family: 'Space Grotesk'; font-size: 34px; margin-bottom: 8px; }
.callout-row { display: grid; grid-template-columns: 1.05fr .95fr; gap: 22px; margin-top: 32px; }
.callout {
  padding: 30px; border-radius: 28px; background: linear-gradient(160deg, rgba(124,92,255,0.12), rgba(70,182,255,0.06));
  border: 1px solid var(--line); box-shadow: var(--shadow);
}
.light .case-grid + .results-band { margin-top: 34px; }
.stat-band {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 28px;
}
.stat-card {
  padding: 22px; border-radius: 22px; background: rgba(255,255,255,0.05); border: 1px solid var(--line);
}
.light .stat-card { background: var(--white); border-color: var(--line-dark); }
.stat-card strong { display: block; font-family: 'Space Grotesk'; font-size: 34px; margin-bottom: 8px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
.input, textarea {
  width: 100%; padding: 16px 18px; border-radius: 16px; border: 1px solid rgba(9,21,37,0.10); background: var(--white); color: #122036;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.input::placeholder,
textarea::placeholder { color: #7d8fa5; }
textarea { min-height: 150px; resize: vertical; grid-column: span 2; }
.cta-panel {
  padding: 40px; border-radius: 32px; border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(124,92,255,0.16), rgba(70,182,255,0.11)); box-shadow: var(--shadow);
}
.flow { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }
.flow span {
  min-height: 46px; display: inline-flex; align-items: center; padding: 0 18px; border-radius: 16px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); font-weight: 700;
}
.footer { background: #edf3f9; color: #6f8198; font-size: 14px; padding: 34px 0 48px; border-top: 1px solid rgba(9,21,37,0.06); }
.footer-grid { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.footer a:hover { color: var(--title-dark); }
.source-list { margin-top: 18px; color: var(--muted); font-size: 13px; line-height: 1.6; }
.light .source-list { color: #6b7f98; }
@media (max-width: 1080px) {
  .hero-grid, .split, .kpi-band, .case-spotlight, .callout-row { grid-template-columns: 1fr; }
  .grid-3, .grid-4, .contract-grid, .mini-grid, .stat-band, .case-grid { grid-template-columns: 1fr 1fr; }
  .case-spotlight { grid-column: span 1; }
}
@media (max-width: 760px) {
  .section { padding: 70px 0; }
  .navbar { padding: 14px; }
  .hero-copy h1 {
    font-size: clamp(34px, 9vw, 46px);
    letter-spacing: -0.045em;
  }
  .hero-copy .lead {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-contact .cta-panel h1 {
    font-size: clamp(30px, 8vw, 42px);
  }
  .page-contact .cta-panel .lead {
    font-size: 16px;
    line-height: 1.58;
  }
  .nav-toggle { display: block; }
  .nav-menu {
    display: none; position: absolute; left: 12px; right: 12px; top: 74px;
    padding: 16px; border-radius: 18px; background: rgba(7,17,31,0.96); border: 1px solid var(--line);
    flex-direction: column; align-items: flex-start;
  }
  .page-internal .nav-menu {
    background: rgba(255,255,255,0.98);
    border-color: rgba(9,21,37,0.08);
    color: var(--title-dark);
  }
  .nav-menu.open { display: flex; }
  .metrics, .grid-2, .grid-3, .grid-4, .contract-grid, .mini-grid, .stat-band, .case-grid, .form-grid { grid-template-columns: 1fr; }
  textarea { grid-column: span 1; }
  .hero-visual, .page-banner, .media-card { min-height: 430px; }
  .fc-1, .fc-2, .fc-3 { width: min(80vw, 260px); }
  .fc-1 { right: 18px; top: 18px; }
  .fc-2 { left: 18px; bottom: 18px; }
  .fc-3 { right: 18px; bottom: 118px; }
}
