:root {
  --bg: #151515;
  --bg-deep: #090909;
  --panel: rgba(255, 255, 255, 0.075);
  --panel-strong: rgba(255, 255, 255, 0.12);
  --line: rgba(255, 255, 255, 0.18);
  --line-strong: rgba(255, 255, 255, 0.34);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --soft: rgba(255, 255, 255, 0.54);
  --yellow: #ffd037;
  --blue: #4e7aff;
  --green: #58e6a4;
  --danger: #ff6d6d;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.45);
  --radius: 32px;
  --radius-lg: 52px;
  --container: 1180px;
  --font-sans: 'Inter', Arial, Helvetica, sans-serif;
  --font-display: 'Syne', 'Inter', Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 10%, rgba(78,122,255,.22), transparent 30rem),
    radial-gradient(circle at 84% 2%, rgba(255,208,55,.16), transparent 26rem),
    linear-gradient(180deg, #111 0%, var(--bg) 45%, #0a0a0a 100%);
  font: 400 16px/1.45 var(--font-sans);
  overflow-x: hidden;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
.container { width: min(calc(100% - 36px), var(--container)); margin: 0 auto; }
.skip-link { position: absolute; left: -999px; top: 16px; z-index: 999; }
.skip-link:focus { left: 16px; padding: 12px 16px; background: var(--yellow); color: #000; border-radius: 999px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 18px 0;
  backdrop-filter: blur(18px);
  background: linear-gradient(180deg, rgba(12,12,12,.82), rgba(12,12,12,.42));
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-shell { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; font-family: var(--font-display); font-weight: 700; letter-spacing: .12em; }
.logo-mark { width: 38px; height: 38px; border-radius: 50%; background: var(--yellow); color: #111; display: grid; place-items: center; font-weight: 900; box-shadow: 0 0 36px rgba(255,208,55,.35); }
.logo-word { font-size: clamp(20px, 2.1vw, 32px); }
.nav-toggle { display: none; align-items: center; justify-content: center; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 999px; color: #fff; background: rgba(255,255,255,.06); }
.nav-toggle span, .nav-toggle:before, .nav-toggle:after { content: ''; width: 20px; height: 2px; background: currentColor; display: block; position: absolute; transition: transform .25s ease, opacity .25s ease; }
.nav-toggle:before { transform: translateY(-7px); }
.nav-toggle:after { transform: translateY(7px); }
.nav-toggle[aria-expanded='true'] span { opacity: 0; }
.nav-toggle[aria-expanded='true']:before { transform: rotate(45deg); }
.nav-toggle[aria-expanded='true']:after { transform: rotate(-45deg); }
.nav-links { display: flex; align-items: center; gap: 10px; margin: 0; padding: 0; list-style: none; }
.nav-links a { display: inline-flex; align-items: center; min-height: 42px; padding: 0 16px; color: var(--muted); text-decoration: none; border: 1px solid transparent; border-radius: 999px; transition: color .2s ease, border-color .2s ease, background .2s ease; }
.nav-links a:hover, .nav-links a[aria-current='page'] { color: #fff; border-color: var(--line); background: rgba(255,255,255,.06); }
.nav-cta { background: var(--yellow) !important; border-color: var(--yellow) !important; color: #111 !important; font-weight: 800; }

main { overflow: hidden; }
.section { padding: clamp(64px, 8vw, 120px) 0; position: relative; }
.section.compact { padding: clamp(42px, 6vw, 86px) 0; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin: 0 0 18px; color: var(--yellow); text-transform: uppercase; font-size: 13px; font-weight: 800; letter-spacing: .22em; }
.eyebrow:before { content: ''; width: 34px; height: 2px; background: currentColor; border-radius: 999px; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; letter-spacing: -.06em; line-height: .9; margin: 0; }
h1 { font-size: clamp(58px, 10.8vw, 156px); }
h2 { font-size: clamp(44px, 7.5vw, 104px); }
h3 { font-size: clamp(27px, 3vw, 44px); letter-spacing: -.04em; line-height: 1; }
h4 { font-size: clamp(21px, 2vw, 30px); letter-spacing: -.035em; line-height: 1.08; }
p { color: var(--muted); margin: 0 0 1rem; }
.lede { font-size: clamp(20px, 2.4vw, 31px); line-height: 1.18; color: rgba(255,255,255,.88); letter-spacing: -.035em; }
.yellow { color: var(--yellow); }
.blue { color: var(--blue); }
.soft { color: var(--soft); }

.btn-row { display: flex; align-items: center; flex-wrap: wrap; gap: 16px; margin-top: 30px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 58px; padding: 0 24px; border-radius: 999px; border: 1px solid var(--line-strong); color: #fff; background: rgba(255,255,255,.06); text-decoration: none; font-weight: 800; transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease; }
.btn:hover { transform: translateY(-3px); border-color: #fff; box-shadow: 0 14px 32px rgba(0,0,0,.32); }
.btn-primary { background: var(--yellow); color: #111; border-color: var(--yellow); box-shadow: 0 16px 42px rgba(255,208,55,.22); }
.btn-blue { background: var(--blue); color: #fff; border-color: var(--blue); box-shadow: 0 16px 42px rgba(78,122,255,.22); }
.btn .arrow { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; background: rgba(0,0,0,.16); }

.hero { min-height: calc(100vh - 76px); display: grid; align-items: center; padding: clamp(70px, 9vw, 126px) 0 clamp(48px, 7vw, 96px); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(340px, .78fr); align-items: center; gap: clamp(34px, 5vw, 74px); }
.hero-copy { position: relative; z-index: 2; }
.hero-title .line { display: block; }
.hero-title .small { font-size: .58em; letter-spacing: -.055em; }
.hero-panel { position: relative; border: 1px solid var(--line); border-radius: var(--radius-lg); background: linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.025)); box-shadow: var(--shadow); overflow: hidden; isolation: isolate; }
.hero-panel:before { content: ''; position: absolute; inset: -20%; background: radial-gradient(circle at var(--mx, 60%) var(--my, 40%), rgba(255,208,55,.30), transparent 18rem), radial-gradient(circle at 20% 80%, rgba(78,122,255,.28), transparent 16rem); opacity: .8; transition: opacity .2s ease; z-index: -1; }
.hero-visual { width: 100%; aspect-ratio: 1.28 / 1; object-fit: cover; opacity: .96; }
.metric-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 30px; }
.metric-card { padding: 18px; border: 1px solid var(--line); border-radius: 22px; background: rgba(255,255,255,.06); }
.metric-card strong { display: block; font-family: var(--font-display); font-size: clamp(30px, 3.2vw, 48px); letter-spacing: -.06em; line-height: 1; color: #fff; }
.metric-card span { display: block; margin-top: 7px; color: var(--soft); font-size: 13px; }

.trust-marquee { border-block: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.035); overflow: hidden; }
.marquee-track { display: flex; gap: 14px; width: max-content; padding: 16px 0; animation: marquee 26s linear infinite; }
.marquee-track span { display: inline-flex; align-items: center; height: 40px; padding: 0 18px; border: 1px solid var(--line); border-radius: 999px; color: rgba(255,255,255,.78); font-weight: 700; white-space: nowrap; }
@keyframes marquee { to { transform: translateX(-50%); } }

.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(28px, 5vw, 70px); align-items: center; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 36px; }
.section-head p { max-width: 520px; font-size: 18px; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card { position: relative; min-height: 310px; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(145deg, rgba(255,255,255,.095), rgba(255,255,255,.035)); overflow: hidden; box-shadow: 10px 10px 0 rgba(255,255,255,.12); transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.card:hover { transform: translateY(-8px); border-color: rgba(255,255,255,.45); box-shadow: 16px 16px 0 rgba(255,255,255,.18); }
.card:nth-child(2) { background: linear-gradient(145deg, rgba(255,208,55,.9), rgba(255,208,55,.65)); color: #111; box-shadow: 10px 10px 0 #fff; }
.card:nth-child(2) p, .card:nth-child(2) .card-kicker { color: rgba(0,0,0,.72); }
.card:nth-child(3) { background: linear-gradient(145deg, rgba(78,122,255,.88), rgba(78,122,255,.56)); }
.card-kicker { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 46px; color: var(--yellow); font-family: var(--font-display); font-weight: 800; text-transform: uppercase; letter-spacing: -.03em; }
.card p { margin-top: 16px; }
.card-link { position: absolute; left: 24px; bottom: 24px; color: inherit; font-weight: 900; text-decoration: none; }

.visual-card { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 12px; background: rgba(255,255,255,.06); box-shadow: var(--shadow); }
.visual-card img { border-radius: calc(var(--radius-lg) - 14px); aspect-ratio: 1.42 / 1; object-fit: cover; width: 100%; }
.pill-list { display: grid; gap: 12px; margin-top: 24px; padding: 0; list-style: none; }
.pill-list li { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px 18px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.045); color: rgba(255,255,255,.84); }
.pill-list li:after { content: '->'; color: var(--yellow); font-weight: 900; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; counter-reset: step; }
.step { counter-increment: step; padding: 22px; border: 1px solid var(--line); border-radius: 28px; background: rgba(255,255,255,.055); min-height: 210px; }
.step:before { content: '0' counter(step); display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; margin-bottom: 28px; border-radius: 50%; background: var(--yellow); color: #111; font-weight: 900; }
.step p { margin-top: 12px; font-size: 15px; }

.service-hero { padding: clamp(82px, 9vw, 132px) 0 clamp(40px, 6vw, 86px); }
.service-grid { display: grid; grid-template-columns: minmax(0, .92fr) minmax(340px, .8fr); gap: clamp(32px, 5vw, 70px); align-items: center; }
.breadcrumb { display: inline-flex; gap: 9px; margin-bottom: 18px; color: var(--soft); font-size: 14px; }
.breadcrumb a { color: var(--muted); text-decoration: none; }
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.feature { padding: 24px; border-radius: 28px; border: 1px solid var(--line); background: rgba(255,255,255,.055); }
.feature strong { display: block; margin-bottom: 10px; color: #fff; font-size: 20px; }
.feature p { margin: 0; }

.proof-band { border-radius: var(--radius-lg); padding: clamp(28px, 5vw, 56px); background: linear-gradient(120deg, rgba(255,208,55,.95), rgba(78,122,255,.78)); color: #101010; box-shadow: var(--shadow); }
.proof-band p, .proof-band .soft { color: rgba(0,0,0,.76); }
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 28px; }
.proof-item { padding: 20px; background: rgba(255,255,255,.28); border-radius: 24px; }
.proof-item strong { font-family: var(--font-display); font-size: 34px; letter-spacing: -.05em; }

.contact-layout { display: grid; grid-template-columns: .82fr 1fr; gap: clamp(28px, 5vw, 70px); align-items: start; }
.contact-form { display: grid; gap: 16px; padding: clamp(22px, 4vw, 34px); border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.07); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.field { display: grid; gap: 8px; }
.field label { color: rgba(255,255,255,.82); font-weight: 800; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }
.field input, .field textarea, .field select { width: 100%; border: 1px solid var(--line); border-radius: 18px; background: rgba(0,0,0,.28); color: #fff; padding: 15px 16px; outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--yellow); box-shadow: 0 0 0 4px rgba(255,208,55,.12); }
.field textarea { min-height: 150px; resize: vertical; }
.full { grid-column: 1 / -1; }
.form-note { min-height: 24px; color: var(--muted); }
.form-note.success { color: var(--green); }
.form-note.error { color: var(--danger); }
.contact-list { display: grid; gap: 14px; margin-top: 26px; }
.contact-list a, .contact-list span { display: block; padding: 18px; border: 1px solid var(--line); border-radius: 22px; text-decoration: none; background: rgba(255,255,255,.045); }

.footer { padding: 44px 0 34px; border-top: 1px solid rgba(255,255,255,.12); background: rgba(0,0,0,.22); }
.footer-grid { display: grid; grid-template-columns: .9fr 1.1fr .7fr; gap: 28px; align-items: start; }
.footer h4 { font-size: 20px; margin-bottom: 12px; }
.footer a { color: var(--muted); text-decoration: none; }
.footer a:hover { color: #fff; }
.footer-links { display: grid; gap: 8px; }
.legal { margin-top: 30px; color: var(--soft); font-size: 13px; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.float-orb { position: absolute; width: 14vw; max-width: 180px; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(255,208,55,.38), transparent 70%); filter: blur(4px); pointer-events: none; animation: float 9s ease-in-out infinite; }
.orb-blue { background: radial-gradient(circle, rgba(78,122,255,.38), transparent 70%); animation-delay: -3s; }
@keyframes float { 50% { transform: translate3d(18px, -24px, 0) scale(1.08); } }

@media (max-width: 960px) {
  .nav-toggle { display: inline-flex; position: relative; }
  .nav-links { position: fixed; left: 18px; right: 18px; top: 78px; display: none; flex-direction: column; align-items: stretch; padding: 16px; border: 1px solid var(--line); border-radius: 28px; background: rgba(12,12,12,.96); box-shadow: var(--shadow); }
  .nav-links.is-open { display: flex; }
  .nav-links a { justify-content: center; }
  .hero-grid, .service-grid, .split, .contact-layout, .footer-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .section-head { display: block; }
  .section-head p { margin-top: 18px; }
  .card-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .metric-strip, .card-grid, .feature-grid, .process-grid, .proof-grid, .form-grid { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .hero-panel, .visual-card, .proof-band { border-radius: 28px; }
  h1 { font-size: clamp(50px, 15vw, 80px); }
}
@media (prefers-reduced-motion: reduce) {
  *, *:before, *:after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}
