:root {
  --bg: #071227;
  --bg-deep: #030815;
  --panel: rgba(12, 28, 57, 0.86);
  --panel-strong: rgba(14, 34, 69, 0.96);
  --line: rgba(176, 204, 255, 0.2);
  --line-strong: rgba(132, 201, 255, 0.42);
  --text: #f1f6ff;
  --muted: #c4d2ef;
  --muted-2: #91a4ca;
  --blue: #48b6ff;
  --teal: #4fd2b5;
  --gold: #f8c735;
  --green: #65e5ac;
  --shadow: 0 26px 70px rgba(0, 0, 0, 0.38);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 4%, rgba(72, 182, 255, 0.2), transparent 30rem),
    radial-gradient(circle at 90% 0%, rgba(79, 210, 181, 0.16), transparent 27rem),
    linear-gradient(155deg, #081833 0%, var(--bg) 48%, var(--bg-deep) 100%);
  font-family: Outfit, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}
a { color: inherit; }
img { max-width: 100%; }
.shell { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; }
.wide-shell { width: min(1280px, calc(100% - 2rem)); margin: 0 auto; }
.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(189, 213, 255, 0.12);
  background: rgba(4, 11, 24, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.topbar-row { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: inline-flex; align-items: center; text-decoration: none; flex: 0 0 auto; }
.brand img { width: 188px; height: auto; display: block; }
.nav-shell { display: flex; align-items: center; gap: 1rem; }
.nav { display: flex; align-items: center; gap: 0.45rem; }
.nav-link {
  color: var(--muted);
  text-decoration: none;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.7rem 0.78rem;
  border-radius: 999px;
}
.nav-link:hover { color: var(--text); background: rgba(255,255,255,0.06); }
.nav-ctas { display: flex; align-items: center; gap: 0.62rem; }
.cta-small,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 0.78rem 1rem;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0;
  border: 1px solid transparent;
  text-align: center;
}
.cta-small.primary,
.btn.primary { color: #061425; background: linear-gradient(135deg, var(--gold), #ffe681); box-shadow: 0 16px 34px rgba(248, 199, 53, 0.24); }
.cta-small.secondary,
.btn.secondary { color: var(--text); background: rgba(255,255,255,0.07); border-color: var(--line); }
.btn.ghost { color: var(--text); border-color: rgba(189, 213, 255, 0.28); background: rgba(255,255,255,0.04); }
.menu-toggle { display: none; }
.hero { padding: clamp(4.2rem, 7vw, 7rem) 0 clamp(3.4rem, 6vw, 5rem); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.74fr); gap: clamp(1.6rem, 4vw, 3rem); align-items: center; }
.eyebrow,
.section-kicker {
  display: inline-flex;
  color: #9bf8e6;
  margin: 0 0 0.72rem;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
h1, h2, h3 { font-family: "Space Grotesk", Outfit, system-ui, sans-serif; }
h1 { margin: 0; font-size: clamp(2.85rem, 6vw, 5.8rem); line-height: 0.94; letter-spacing: 0; max-width: 940px; }
.hero-subtitle { margin: 1.1rem 0 0; color: var(--muted); font-size: clamp(1.14rem, 1.7vw, 1.38rem); line-height: 1.68; max-width: 790px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.45rem; }
.client-note { margin: 1rem 0 0; color: var(--muted-2); font-weight: 700; }
.client-note a { color: #b6fff1; font-weight: 900; }
.hero-card,
.panel,
.final-cta {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(155deg, rgba(12, 30, 61, 0.88), rgba(8, 21, 45, 0.86));
  box-shadow: var(--shadow);
}
.hero-card { padding: clamp(1.25rem, 2.7vw, 2rem); }
.hero-card h2 { margin: 0 0 1rem; font-size: 1.42rem; }
.brief-list { display: grid; gap: 0.85rem; }
.brief-row { display: grid; grid-template-columns: 46px 1fr; gap: 0.8rem; align-items: start; padding: 1rem; border: 1px solid rgba(171,205,255,0.18); border-radius: 18px; background: rgba(8, 24, 50, 0.72); }
.brief-row b { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 14px; color: #061425; background: linear-gradient(135deg, var(--blue), var(--teal)); font-size: 1.08rem; }
.brief-row strong { display: block; font-size: 1.03rem; line-height: 1.25; }
.brief-row span { display: block; margin-top: 0.28rem; color: var(--muted); line-height: 1.5; }
section { padding: clamp(3.8rem, 7vw, 5.8rem) 0; }
.section-accent { background: linear-gradient(180deg, rgba(5,16,34,0), rgba(10,30,58,0.28), rgba(5,16,34,0)); }
.section-head { max-width: 860px; margin-bottom: 1.5rem; }
.section-title { margin: 0; font-size: clamp(2rem, 3.8vw, 3.4rem); line-height: 1.05; }
.section-sub { margin: 0.85rem 0 0; color: var(--muted); font-size: clamp(1.04rem, 1.45vw, 1.2rem); line-height: 1.72; }
.grid-2, .grid-3 { display: grid; gap: 1rem; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card { border: 1px solid var(--line); border-radius: var(--radius-lg); background: rgba(9, 25, 51, 0.78); padding: clamp(1.15rem, 2vw, 1.55rem); }
.card.highlight { border-color: rgba(79,210,181,0.42); background: linear-gradient(150deg, rgba(8,62,70,0.7), rgba(9,30,58,0.86)); }
.card h3 { margin: 0; font-size: 1.22rem; line-height: 1.24; }
.card p { margin: 0.58rem 0 0; color: var(--muted); font-size: 1.03rem; line-height: 1.66; }
.list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.72rem; }
.list li { display: grid; grid-template-columns: 24px 1fr; gap: 0.58rem; color: #dce9ff; font-weight: 750; line-height: 1.5; }
.list li::before { content: ""; width: 22px; height: 22px; margin-top: 0.08rem; border-radius: 999px; background: rgba(148,163,184,0.18); border: 1px solid rgba(148,163,184,0.32); }
.highlight .list li::before,
.steps li::before { content: "✓"; display: grid; place-items: center; color: #061425; font-size: 0.82rem; font-weight: 900; background: var(--green); border-color: rgba(101,229,172,0.72); }
.steps { counter-reset: step; list-style: none; margin: 0; padding: 0; display: grid; gap: 0.85rem; }
.steps li { counter-increment: step; display: grid; grid-template-columns: 42px 1fr; gap: 0.78rem; align-items: start; color: #dce9ff; font-weight: 750; line-height: 1.56; padding: 1rem; border: 1px solid rgba(171,205,255,0.17); border-radius: 18px; background: rgba(8,24,50,0.66); }
.steps li::before { content: counter(step); width: 38px; height: 38px; border-radius: 13px; }
.founding-panel { display: grid; grid-template-columns: 1fr 0.8fr; gap: 1.4rem; align-items: center; padding: clamp(1.4rem, 3vw, 2.2rem); border-radius: var(--radius-xl); border: 1px solid rgba(79,210,181,0.32); background: linear-gradient(150deg, rgba(8,62,70,0.68), rgba(9,30,58,0.86)); box-shadow: var(--shadow); }
.founding-panel h2 { margin: 0; font-size: clamp(2rem, 3.8vw, 3.5rem); line-height: 1.04; }
.founding-panel p { color: var(--muted); font-size: 1.12rem; line-height: 1.7; }
.other-trades { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.other-trades a { color: #dcecff; text-decoration: none; font-weight: 900; border: 1px solid rgba(189,213,255,0.22); background: rgba(255,255,255,0.05); border-radius: 999px; padding: 0.72rem 0.9rem; }
.other-trades a:hover { border-color: rgba(79,210,181,0.6); color: #b6fff1; }
.faq-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.faq-card { border: 1px solid var(--line); border-radius: var(--radius-lg); background: rgba(9,25,51,0.78); padding: 1.2rem; }
.faq-card h3 { margin: 0; font-size: 1.12rem; }
.faq-card p { margin: 0.55rem 0 0; color: var(--muted); font-size: 1.02rem; line-height: 1.65; }
.final-cta { padding: clamp(1.5rem, 3vw, 2.25rem); text-align: center; }
.final-cta h2 { margin: 0 auto; max-width: 800px; font-size: clamp(2.1rem, 4vw, 3.8rem); line-height: 1.02; }
.final-cta p { color: var(--muted); font-size: 1.12rem; line-height: 1.7; max-width: 760px; margin: 1rem auto 0; }
.final-cta .hero-actions { justify-content: center; }
.footer { padding: 2rem 0 6rem; color: var(--muted-2); }
.footer-row { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer a { color: #cfe7ff; font-weight: 800; text-decoration: none; }
.mobile-sticky-cta { display: none; }
@media (max-width: 980px) {
  .hero-grid, .grid-2, .grid-3, .founding-panel, .faq-grid { grid-template-columns: 1fr; }
  .nav { display: none; }
  .brand img { width: 166px; }
  h1 { font-size: clamp(2.55rem, 12vw, 4.1rem); }
}
@media (max-width: 640px) {
  .shell, .wide-shell { width: min(100% - 1rem, 1120px); }
  .topbar-row { min-height: 70px; }
  .nav-shell { gap: 0.5rem; }
  .cta-small.secondary { display: none; }
  .cta-small { min-height: 42px; padding: 0.66rem 0.82rem; font-size: 0.9rem; }
  .hero { padding-top: 2.6rem; }
  .hero-actions .btn { width: 100%; }
  section { padding: 3.2rem 0; }
  .brief-row, .steps li { grid-template-columns: 38px 1fr; }
  .brief-row b, .steps li::before { width: 36px; height: 36px; }
  .mobile-sticky-cta { display: inline-flex; position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 50; align-items: center; justify-content: center; min-height: 54px; border-radius: 999px; color: #061425; background: linear-gradient(135deg, var(--gold), #ffe681); box-shadow: 0 18px 40px rgba(0,0,0,0.34); text-decoration: none; font-weight: 950; }
}
