:root {
  --bg: #07101b;
  --bg-soft: #0b1727;
  --panel: #0a1422;
  --panel-2: #0f1d2f;
  --line: rgba(255,255,255,.12);
  --line-soft: rgba(255,255,255,.08);
  --text: #f7f9fc;
  --muted: #b9c4d0;
  --muted-2: #8d98a7;
  --gold: #f0b94d;
  --gold-deep: #d9971d;
  --shadow: 0 22px 60px rgba(0,0,0,.28);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: linear-gradient(180deg, #050c15 0%, #07101b 48%, #08111d 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  padding-bottom: calc(92px + env(safe-area-inset-bottom));
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }

.skip-link {
  position: absolute;
  left: 12px;
  top: -50px;
  z-index: 2000;
  background: #fff;
  color: #111;
  padding: 10px 12px;
  border-radius: 10px;
}
.skip-link:focus { top: 12px; }

.container {
  width: min(calc(100% - 28px), var(--container));
  margin-inline: auto;
}

.practice-notice {
  text-align: center;
  padding: 10px 14px;
  background: #040b14;
  color: #96a3b1;
  font-size: .73rem;
  border-bottom: 1px solid var(--line-soft);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1200;
  padding: 14px 0 0;
  background: linear-gradient(180deg, rgba(4,10,18,.95), rgba(4,10,18,.82));
  backdrop-filter: blur(12px);
}
.header-shell {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 14px;
  background: rgba(9,17,29,.92);
  border: 1px solid var(--line-soft);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 14px 16px;
}
.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 12px;
  overflow: hidden;
  background: #02070d;
  border: 1px solid rgba(255,255,255,.12);
}
.brand-mark img { width: 100%; height: 100%; object-fit: cover; }
.brand-copy { min-width: 0; display: grid; }
.brand-copy strong {
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.05;
  white-space: nowrap;
}
.brand-copy small {
  color: #c8d1db;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .18em;
}
.call-pill {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 800;
  background: linear-gradient(180deg, #f1bb50 0%, #e8ab31 100%);
  color: #111720;
}
.call-pill svg, .button svg, .mobile-call-bar svg, .cta-icon svg { width: 20px; fill: currentColor; }
.menu-button {
  margin-left: auto;
  display: inline-grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: transparent;
  color: #fff;
}
.menu-button span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 3px;
  margin: 2px 0;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.primary-nav {
  display: none;
  grid-column: 1 / -1;
  padding-top: 6px;
}
.primary-nav.open { display: grid; gap: 2px; }
.primary-nav a {
  padding: 12px 10px;
  color: #d4dce5;
  text-decoration: none;
  border-radius: 10px;
}
.primary-nav a:hover { background: rgba(255,255,255,.05); }

.section-dark { padding: 28px 0 0; }
.hero-panel {
  position: relative;
  display: grid;
  gap: 24px;
  padding: 22px;
  border-radius: 30px;
  background: radial-gradient(circle at 0% 0%, rgba(25,70,130,.22), transparent 30%), linear-gradient(180deg, #071120 0%, #07101b 100%);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-panel::after {
  content: "";
  position: absolute;
  inset: auto -40px -40px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 36px solid rgba(240,185,77,.06);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: #eab148;
  font-size: .76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .2em;
}
.eyebrow span { width: 22px; height: 2px; background: currentColor; border-radius: 99px; }
.eyebrow-dark { color: #e2a73b; }
.hero-copy h1 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(2.8rem, 12vw, 5.3rem);
  line-height: .95;
  letter-spacing: -.06em;
}
.hero-lede {
  max-width: 36rem;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 3.2vw, 1.3rem);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.button {
  min-height: 60px;
  padding: 0 24px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid transparent;
}
.button-primary {
  background: linear-gradient(180deg, #f1bb50 0%, #e8ab31 100%);
  color: #111720;
  box-shadow: 0 14px 30px rgba(232,171,49,.18);
}
.button-ghost {
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.02);
  color: #fff;
}
.trust-cards {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}
.trust-card {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 92px;
  padding: 16px 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(12,21,36,.92), rgba(9,17,29,.96));
  border: 1px solid rgba(255,255,255,.10);
}
.trust-card strong { display: block; font-size: 1.15rem; }
.trust-card span { color: var(--muted); font-size: .9rem; }
.trust-icon {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  font-weight: 900;
  background: rgba(255,255,255,.04);
}
.google-icon {
  color: #fff;
  font-size: 1.6rem;
  background: conic-gradient(#4285f4 0 25%, #34a853 25% 50%, #fbbc05 50% 75%, #ea4335 75% 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
.bbb-icon { color: var(--gold); font-size: 1.1rem; }
.build-icon { color: var(--gold); font-size: 1.4rem; }
.stars {
  color: var(--gold);
  letter-spacing: .1em;
  font-size: .88rem;
  margin: 2px 0;
}
.microcopy {
  margin: 12px 2px 0;
  color: var(--muted-2);
  font-size: .78rem;
  max-width: 52rem;
}
.hero-visual {
  position: relative;
  min-height: 420px;
  border-radius: 24px;
  overflow: hidden;
}
.hero-visual-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(240,185,77,.18), transparent 20%),
    radial-gradient(circle at 74% 68%, rgba(19,91,165,.28), transparent 28%),
    linear-gradient(180deg, rgba(14,23,38,.96), rgba(7,17,29,.92));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
}
.hero-circuit,
.hero-node,
.hero-logo-card,
.hero-photo-frame { position: absolute; z-index: 2; }
.hero-circuit {
  border: 1px solid rgba(240,185,77,.28);
  border-left: 0;
  border-bottom: 0;
}
.hero-circuit-a { width: 120px; height: 120px; left: 16px; top: 72px; border-radius: 0 26px 0 0; }
.hero-circuit-b { width: 110px; height: 110px; right: 12px; bottom: 18px; border-radius: 26px 0 0 0; transform: rotate(180deg); }
.hero-node {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 10px rgba(240,185,77,.08), 0 0 22px rgba(240,185,77,.7);
}
.hero-node-a { left: 132px; top: 132px; }
.hero-node-b { right: 126px; top: 62px; }
.hero-node-c { right: 64px; bottom: 122px; }
.hero-logo-card {
  left: 14px;
  bottom: 18px;
  width: 92px;
  height: 92px;
  padding: 14px;
  border-radius: 22px;
  background: rgba(3,8,14,.76);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 40px rgba(0,0,0,.28);
}
.hero-logo-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo-frame {
  right: 0;
  left: 72px;
  bottom: 0;
  top: 22px;
  border-radius: 24px 24px 24px 110px;
  overflow: hidden;
  background: #0d1828;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 30px 60px rgba(0,0,0,.32);
}
.hero-photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6,12,22,.56) 0%, rgba(6,12,22,.16) 35%, rgba(6,12,22,.08) 100%);
}
.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.signal-strip { padding: 20px 0 0; }
.signal-grid {
  display: grid;
  gap: 0;
  background: rgba(255,255,255,.03);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.signal-grid article {
  padding: 22px 0;
  border-bottom: 1px solid var(--line-soft);
}
.signal-grid article:last-child { border-bottom: 0; }
.signal-kicker {
  display: inline-block;
  color: #d8a744;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.signal-grid strong {
  display: block;
  margin-top: 8px;
  font-size: 1.12rem;
}
.signal-grid p {
  margin: 8px 0 0;
  color: var(--muted);
}

.section { padding: 56px 0; }
.services-grid, .contact-grid {
  display: grid;
  gap: 24px;
  align-items: start;
}
.section-copy h2 {
  margin: 0;
  font-size: clamp(2.3rem, 10vw, 4rem);
  line-height: .98;
  letter-spacing: -.05em;
}
.section-copy p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 38rem;
}
.card-dark {
  padding: 26px;
  border-radius: 24px;
  background: linear-gradient(180deg, #091322 0%, #0b1727 100%);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
}
.service-focus {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
}
.service-focus-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(240,185,77,.44);
  color: var(--gold);
}
.service-focus-icon svg { width: 28px; fill: currentColor; }
.service-focus h3, .why-item h3, .feature-copy h3, .cta-copy h2 {
  margin: 0;
  letter-spacing: -.04em;
}
.service-focus h3 { font-size: 2rem; }
.service-focus p { margin: 10px 0 0; color: var(--muted); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--gold);
  text-decoration: none;
  font-weight: 700;
}

.why-grid {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}
.why-item {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-soft);
}
.why-item:last-child { border-bottom: 0; }
.why-icon {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: var(--gold);
  background: rgba(240,185,77,.10);
  border: 1px solid rgba(240,185,77,.18);
  font-weight: 900;
  font-size: 1.2rem;
}
.why-item p { margin: 8px 0 0; color: var(--muted); }
.feature-strip {
  display: grid;
  gap: 0;
  margin-top: 24px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, #091322 0%, #0b1727 100%);
  box-shadow: var(--shadow);
}
.feature-image img { width: 100%; height: 100%; object-fit: cover; min-height: 250px; }
.feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
}
.feature-copy h3 { font-size: clamp(1.9rem, 7vw, 3.1rem); }
.feature-copy p { margin: 12px 0 0; color: var(--muted); font-size: 1.05rem; max-width: 28rem; }

.cta-banner {
  display: grid;
  gap: 20px;
  padding: 26px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 74% 50%, rgba(240,185,77,.16), transparent 30%),
    linear-gradient(180deg, rgba(20,24,32,.86), rgba(18,24,31,.90));
  border: 1px solid rgba(240,185,77,.16);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -68px;
  top: -72px;
  border-radius: 50%;
  border: 26px solid rgba(240,185,77,.09);
}
.cta-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(240,185,77,.10);
  color: var(--gold);
  border: 1px solid rgba(240,185,77,.18);
}
.cta-copy h2 {
  font-size: clamp(2.1rem, 9vw, 4rem);
  line-height: .98;
}
.cta-copy p { margin: 10px 0 0; color: var(--muted); }
.cta-button { width: fit-content; min-width: 220px; }

.form-card { padding: 22px; }
.form-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(240,185,77,.10);
  color: #f3d9a4;
  border: 1px solid rgba(240,185,77,.18);
  margin-bottom: 18px;
}
.form-note strong { font-size: .88rem; }
.form-note span { font-size: .74rem; }
.form-row { display: grid; gap: 14px; }
.field { display: grid; gap: 8px; margin-bottom: 14px; }
.field label { font-size: .88rem; font-weight: 700; color: #f2f6fa; }
.field label span { color: var(--muted); font-weight: 500; }
.field input, .field textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  background: rgba(255,255,255,.03);
  color: var(--text);
  padding: 14px 16px;
  min-height: 54px;
  outline: none;
}
.field textarea { resize: vertical; min-height: 132px; }
.field input::placeholder, .field textarea::placeholder { color: #94a0b0; }
.field input:focus, .field textarea:focus { border-color: rgba(240,185,77,.44); box-shadow: 0 0 0 3px rgba(240,185,77,.10); }
.button-submit { width: 100%; }
.form-status { min-height: 20px; margin: 12px 0 0; color: #c6ced8; font-size: .86rem; }

.site-footer { padding: 0 0 110px; }
.footer-shell {
  display: grid;
  gap: 12px;
  padding: 24px 0 0;
  color: var(--muted-2);
}
.footer-shell p { margin: 0; font-size: .86rem; }
.footer-brand .brand-mark { width: 38px; height: 38px; flex-basis: 38px; }
.footer-brand .brand-copy strong { font-size: .95rem; }
.footer-brand .brand-copy small { font-size: .76rem; }

.mobile-call-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1250;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(4,10,18,.94);
  border-top: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(12px);
}
.mobile-call-bar a {
  min-height: 58px;
  border-radius: 16px;
  background: linear-gradient(180deg, #f1bb50 0%, #e8ab31 100%);
  color: #111720;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 800;
}
.mobile-call-bar span { display: grid; line-height: 1.05; }
.mobile-call-bar small { font-size: .72rem; opacity: .72; }
.mobile-call-bar strong { margin-top: 4px; font-size: .95rem; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.js .reveal.in-view { opacity: 1; transform: translateY(0); }

@media (min-width: 640px) {
  .container { width: min(calc(100% - 44px), var(--container)); }
  .trust-cards { grid-template-columns: repeat(3, 1fr); }
  .signal-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .signal-grid article { border-bottom: 0; padding: 26px 0; }
  .form-row { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .why-item { padding: 0 18px 0 0; border-bottom: 0; border-right: 1px solid var(--line-soft); }
  .why-item:last-child { border-right: 0; }
}

@media (min-width: 900px) {
  body { padding-bottom: 0; }
  .mobile-call-bar { display: none; }
  .header-shell {
    grid-template-columns: auto 1fr auto auto;
    gap: 20px;
    padding: 16px 18px;
  }
  .menu-button { display: none; }
  .primary-nav {
    display: flex;
    grid-column: auto;
    justify-content: center;
    gap: 14px;
    padding-top: 0;
  }
  .primary-nav a { padding: 10px 12px; }
  .call-pill { display: inline-flex; }

  .section-dark { padding-top: 18px; }
  .hero-panel {
    grid-template-columns: 1.08fr .92fr;
    align-items: center;
    gap: 28px;
    padding: 34px 34px 30px;
    min-height: 760px;
  }
  .hero-copy { align-self: start; padding-top: 14px; }
  .hero-visual { min-height: 560px; }
  .hero-photo-frame {
    left: 110px;
    top: 28px;
    bottom: 34px;
    border-radius: 30px 30px 30px 130px;
  }
  .hero-logo-card {
    width: 120px;
    height: 120px;
    left: 26px;
    bottom: 40px;
  }
  .hero-circuit-a { width: 148px; height: 148px; left: 24px; top: 86px; }
  .hero-circuit-b { width: 142px; height: 142px; right: 18px; bottom: 34px; }
  .hero-node-a { left: 162px; top: 168px; }
  .hero-node-b { right: 144px; top: 88px; }
  .hero-node-c { right: 94px; bottom: 142px; }

  .section { padding: 86px 0; }
  .services-grid, .contact-grid { grid-template-columns: 1fr 1fr; gap: 44px; }
  .feature-strip { grid-template-columns: 1.08fr .92fr; }
  .feature-copy { padding: 38px; }
  .cta-banner {
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
    padding: 28px 32px;
  }
  .footer-shell { grid-template-columns: auto 1fr; align-items: center; }
  .footer-shell p { justify-self: end; text-align: right; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
}
