:root {
  --v8-ink: #07111e;
  --v8-ink-2: #102238;
  --v8-paper: #f3f1eb;
  --v8-paper-2: #e9edf5;
  --v8-white: #ffffff;
  --v8-blue: #2f68ff;
  --v8-blue-2: #0e4ee4;
  --v8-sky: #a8c1ff;
  --v8-acid: #c9ff58;
  --v8-text: #101c2a;
  --v8-muted: #647080;
  --v8-line: rgba(7, 17, 30, .11);
  --v8-radius-lg: 44px;
  --v8-radius-md: 28px;
  --v8-shadow: 0 34px 90px rgba(7, 17, 30, .12);
  --v8-ease: cubic-bezier(.2, .8, .2, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: hidden;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--v8-paper);
  color: var(--v8-text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection {
  background: var(--v8-acid);
  color: var(--v8-ink);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(7, 17, 30, .07);
  background: rgba(250, 250, 248, .9);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  backdrop-filter: blur(22px) saturate(150%);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
  flex-shrink: 0;
}

.brand-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 48px;
  padding: 7px 10px;
  border: 1px solid rgba(7, 17, 30, .08);
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(7, 17, 30, .07);
  flex-shrink: 0;
}

.brand-badge img { width: auto; max-height: 31px; }

.brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 14px;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--v8-ink);
}

.brand-text > span { display: none; }

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.desktop-nav a {
  position: relative;
  padding: 10px 11px;
  border-radius: 999px;
  font-size: 13px;
  transition: color .2s ease, background .2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  background: #fff;
  color: var(--v8-blue-2);
  box-shadow: 0 8px 24px rgba(7, 17, 30, .06);
}

.desktop-nav a::after { display: none; }

.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.header-right .social-links { gap: 6px; }

.social-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-link {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(7, 17, 30, .08);
  border-radius: 50%;
  background: #f2f4f7;
  color: var(--v8-ink);
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.social-link:hover { background: var(--v8-blue); color: #fff; transform: translateY(-2px); }
.social-link svg { width: 18px; height: 18px; fill: currentColor; }

.header-right .btn,
.mobile-menu .btn {
  min-height: 46px;
  padding: 0 19px;
  border-radius: 999px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -.01em;
  white-space: nowrap;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--v8-blue), #4b79ff);
  box-shadow: 0 18px 42px rgba(47, 104, 255, .27);
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #1d58f2, #3b6eff);
  box-shadow: 0 23px 52px rgba(47, 104, 255, .33);
}

.btn-secondary {
  border-color: rgba(7, 17, 30, .12);
  background: #fff;
  color: var(--v8-ink);
}

.btn-secondary:hover { transform: translateY(-2px); border-color: rgba(7, 17, 30, .22); }

.mobile-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(7, 17, 30, .1);
  border-radius: 13px;
  background: #fff;
  cursor: pointer;
}

.mobile-toggle span,
.mobile-toggle span::before,
.mobile-toggle span::after {
  position: relative;
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--v8-ink);
  content: "";
  transition: transform .2s ease, opacity .2s ease;
}

.mobile-toggle span::before { position: absolute; top: -6px; }
.mobile-toggle span::after { position: absolute; top: 6px; }
.mobile-toggle[aria-expanded="true"] span { background: transparent; }
.mobile-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.mobile-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

.mobile-menu {
  display: none;
  border-top: 1px solid rgba(7, 17, 30, .07);
  background: #fff;
}

.mobile-menu.open { display: block; }
.mobile-menu-inner { display: grid; gap: 8px; padding: 18px 0 24px; }
.mobile-menu a:not(.btn):not(.social-link) { padding: 11px 0; border-bottom: 1px solid rgba(7, 17, 30, .06); font-weight: 700; }
.mobile-menu .btn { width: 100%; margin-top: 8px; }
.mobile-social { display: flex; gap: 9px; margin-top: 7px; }

.v8-page {
  overflow: hidden;
  background: var(--v8-paper);
}

.v8-page h1,
.v8-page h2,
.v8-page h3,
.v8-page p { text-wrap: pretty; }

.v8-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(92px, 8vw, 132px) 0 clamp(92px, 8vw, 132px);
  background:
    radial-gradient(850px 620px at 8% 4%, rgba(47, 104, 255, .24), transparent 68%),
    radial-gradient(720px 520px at 98% 46%, rgba(91, 137, 255, .17), transparent 70%),
    linear-gradient(145deg, #050b13, #091929 58%, #102a49);
  color: #fff;
}

.v8-hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: .38;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: linear-gradient(90deg, #000, transparent 90%);
  mask-image: linear-gradient(90deg, #000, transparent 90%);
}

.v8-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -18vw;
  bottom: -34vw;
  width: 68vw;
  aspect-ratio: 1;
  border: 1px solid rgba(143, 177, 255, .16);
  border-radius: 50%;
  box-shadow: 0 0 0 110px rgba(52, 111, 255, .025), 0 0 0 220px rgba(52, 111, 255, .018);
}

.v8-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(410px, .75fr);
  gap: clamp(54px, 7vw, 112px);
  align-items: center;
}

.v8-hero-home .v8-hero-shell { min-height: 650px; }

@media (min-width: 1241px) {
  .v8-hero-home .v8-hero-shell { grid-template-columns: minmax(0, 1.18fr) minmax(390px, .62fr); }
  .v8-hero-home h1 { max-width: 850px; font-size: clamp(68px, 5.15vw, 92px); line-height: .94; letter-spacing: -.06em; }
}

.v8-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.v8-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--v8-acid);
  box-shadow: 0 0 0 7px rgba(201, 255, 88, .12), 0 0 26px rgba(201, 255, 88, .52);
}

.v8-hero .v8-kicker { color: rgba(255,255,255,.68); }

.v8-hero h1 {
  max-width: 920px;
  margin: 30px 0 30px;
  font-size: clamp(66px, 7.25vw, 118px);
  line-height: .89;
  letter-spacing: -.07em;
  color: #fff;
}

.v8-hero-internal h1 {
  max-width: 930px;
  font-size: clamp(58px, 6.15vw, 94px);
}

.v8-hero-lead {
  max-width: 720px;
  margin: 0;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.62;
  color: rgba(255,255,255,.68);
}

.v8-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 38px;
}

.v8-actions .btn {
  min-height: 58px;
  padding-inline: 28px;
}

.v8-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 2px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: gap .25s ease;
}

.v8-link:hover { gap: 16px; }
.v8-hero .v8-link { color: #fff; }

.v8-human-proof {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 42px;
}

.v8-human-proof span {
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.045);
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,.65);
}

.v8-signal-card {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 48px;
  background:
    radial-gradient(420px 380px at 70% 42%, rgba(59, 117, 255, .3), transparent 70%),
    linear-gradient(150deg, rgba(255,255,255,.085), rgba(255,255,255,.025));
  box-shadow: 0 50px 130px rgba(0,0,0,.35), inset 0 1px rgba(255,255,255,.09);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.v8-signal-card::before,
.v8-signal-card::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 47%;
  border: 1px solid rgba(143,177,255,.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.v8-signal-card::before { width: 430px; height: 430px; }
.v8-signal-card::after { width: 290px; height: 290px; border-style: dashed; }

.v8-signal-top,
.v8-signal-bottom {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: rgba(255,255,255,.52);
}

.v8-signal-top i {
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--v8-acid);
  box-shadow: 0 0 0 8px rgba(201,255,88,.1), 0 0 22px rgba(201,255,88,.55);
}

.v8-signal-core {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 47%;
  width: min(72%, 360px);
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  background: radial-gradient(circle at 40% 24%, #2f68ff, #102b4c 64%, #091626);
  box-shadow: 0 34px 90px rgba(0,0,0,.34), inset 0 1px rgba(255,255,255,.16);
  transform: translate(-50%, -50%);
  text-align: center;
}

.v8-signal-core small {
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--v8-acid);
}

.v8-signal-core strong {
  max-width: 260px;
  margin-top: 18px;
  font-size: clamp(31px, 3vw, 46px);
  line-height: .96;
  letter-spacing: -.055em;
  color: #fff;
}

.v8-signal-core span {
  margin-top: 16px;
  font-size: 12px;
  color: rgba(255,255,255,.6);
}

.v8-signal-bottom {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
}

.v8-section {
  position: relative;
  padding: clamp(92px, 9vw, 150px) 0;
}

.v8-section-white { background: #fff; }
.v8-section-paper { background: var(--v8-paper); }
.v8-section-soft { background: var(--v8-paper-2); }

.v8-home-services { padding-top: clamp(78px, 7vw, 108px); padding-bottom: clamp(78px, 7vw, 108px); }

.v8-home-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 42px;
}

.v8-home-heading h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(46px, 5vw, 76px);
  line-height: .94;
  letter-spacing: -.06em;
  color: var(--v8-ink);
}

.v8-essential-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--v8-line);
}

.v8-essential-link {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 18px;
  align-items: center;
  min-height: 150px;
  padding: 24px 26px;
  border-bottom: 1px solid var(--v8-line);
  color: var(--v8-ink);
  transition: background .25s ease, padding .25s ease;
}

.v8-essential-link:nth-child(odd) { border-right: 1px solid var(--v8-line); }
.v8-essential-link:hover { padding-left: 34px; background: var(--v8-paper); }
.v8-essential-link > span { font-size: 10px; font-weight: 850; color: var(--v8-blue); }
.v8-essential-link strong,
.v8-essential-link small { display: block; }
.v8-essential-link strong { font-size: clamp(25px, 2.2vw, 34px); line-height: 1; letter-spacing: -.04em; }
.v8-essential-link small { margin-top: 8px; font-size: 13px; line-height: 1.45; color: var(--v8-muted); }
.v8-essential-link > i { font-size: 22px; font-style: normal; color: var(--v8-blue); }

.v8-home-about { padding-top: clamp(72px, 7vw, 108px); padding-bottom: clamp(72px, 7vw, 108px); }
.v8-home-about .v8-profile-media { min-height: 560px; }

.v8-section-grid {
  background-image:
    linear-gradient(rgba(7,17,30,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7,17,30,.035) 1px, transparent 1px);
  background-size: 56px 56px;
}

.v8-section-head {
  display: grid;
  grid-template-columns: minmax(170px, .32fr) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: start;
  margin-bottom: 58px;
}

.v8-section-head h2,
.v8-split-copy h2,
.v8-profile-copy h2,
.v8-local-copy h2 {
  max-width: 930px;
  margin: 0;
  font-size: clamp(50px, 5.6vw, 86px);
  line-height: .94;
  letter-spacing: -.065em;
  color: var(--v8-ink);
}

.v8-section-head p,
.v8-split-copy > p,
.v8-profile-copy > p,
.v8-local-copy > p {
  max-width: 780px;
  margin: 25px 0 0;
  font-size: 18px;
  line-height: 1.68;
  color: var(--v8-muted);
}

.v8-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding-top: 9px;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--v8-blue-2);
}

.v8-label::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--v8-blue);
  box-shadow: 0 0 0 6px rgba(47,104,255,.11);
}

.v8-grid-2,
.v8-grid-3,
.v8-grid-4 {
  display: grid;
  gap: 18px;
}

.v8-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.v8-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.v8-grid-4 { grid-template-columns: repeat(12, minmax(0, 1fr)); }

.v8-card {
  position: relative;
  overflow: hidden;
  min-height: 290px;
  padding: 32px;
  border: 1px solid var(--v8-line);
  border-radius: var(--v8-radius-md);
  background: rgba(255,255,255,.78);
  box-shadow: 0 22px 64px rgba(7,17,30,.07);
}

.v8-card::after {
  content: "";
  position: absolute;
  right: -94px;
  bottom: -105px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(47,104,255,.12);
  border-radius: 50%;
  box-shadow: 0 0 0 34px rgba(47,104,255,.025);
}

.v8-card-number {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: #e8eeff;
  font-size: 12px;
  font-weight: 850;
  color: var(--v8-blue-2);
}

.v8-card h3 {
  position: relative;
  z-index: 2;
  max-width: 460px;
  margin: 52px 0 12px;
  font-size: clamp(27px, 2.6vw, 39px);
  line-height: 1;
  letter-spacing: -.045em;
  color: var(--v8-ink);
}

.v8-card p {
  position: relative;
  z-index: 2;
  max-width: 500px;
  margin: 0;
  font-size: 15px;
  line-height: 1.62;
  color: var(--v8-muted);
}

.v8-card-dark {
  border-color: rgba(255,255,255,.1);
  background:
    radial-gradient(300px 260px at 100% 100%, rgba(47,104,255,.22), transparent 70%),
    linear-gradient(145deg, var(--v8-ink), #112a48);
  box-shadow: 0 32px 90px rgba(7,17,30,.19);
}

.v8-card-dark h3 { color: #fff; }
.v8-card-dark p { color: rgba(255,255,255,.64); }
.v8-card-dark .v8-card-number { background: rgba(255,255,255,.1); color: var(--v8-acid); }

.v8-service-card {
  grid-column: span 6;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px;
  border: 1px solid var(--v8-line);
  border-radius: 34px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 24px 72px rgba(7,17,30,.07);
  transition: transform .35s var(--v8-ease), box-shadow .35s var(--v8-ease);
}

.v8-service-card:nth-child(1),
.v8-service-card:nth-child(4) {
  background:
    radial-gradient(320px 240px at 100% 100%, rgba(47,104,255,.25), transparent 70%),
    linear-gradient(145deg, var(--v8-ink), #102641);
  color: #fff;
}

.v8-service-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 36px 96px rgba(7,17,30,.13);
}

.v8-service-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--v8-blue-2);
}

.v8-service-card:nth-child(1) .v8-service-top,
.v8-service-card:nth-child(4) .v8-service-top { color: var(--v8-acid); }

.v8-service-card h3 {
  margin: 70px 0 14px;
  font-size: clamp(34px, 3.2vw, 52px);
  line-height: .96;
  letter-spacing: -.055em;
  color: var(--v8-ink);
}

.v8-service-card:nth-child(1) h3,
.v8-service-card:nth-child(4) h3 { color: #fff; }

.v8-service-card p {
  max-width: 560px;
  margin: 0;
  font-size: 16px;
  line-height: 1.58;
  color: var(--v8-muted);
}

.v8-service-card:nth-child(1) p,
.v8-service-card:nth-child(4) p { color: rgba(255,255,255,.64); }

.v8-service-card .v8-link { align-self: flex-start; margin-top: 34px; }

.v8-profile {
  display: grid;
  grid-template-columns: minmax(330px, .76fr) minmax(0, 1.24fr);
  overflow: hidden;
  border-radius: var(--v8-radius-lg);
  background: var(--v8-ink);
  box-shadow: var(--v8-shadow);
}

.v8-profile-media {
  position: relative;
  min-height: 650px;
  overflow: hidden;
}

.v8-profile-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(7,17,30,.46));
}

.v8-profile-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
}

.v8-profile-chip {
  position: absolute;
  z-index: 2;
  left: 24px;
  bottom: 24px;
  padding: 10px 13px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(7,17,30,.6);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  font-size: 11px;
  font-weight: 800;
  color: #fff;
}

.v8-profile-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(46px, 7vw, 96px);
}

.v8-profile-copy h2 { color: #fff; }
.v8-profile-copy > p { color: rgba(255,255,255,.65); }
.v8-profile-copy .v8-label { color: var(--v8-acid); }
.v8-profile-copy .v8-label::before { background: var(--v8-acid); box-shadow: 0 0 0 6px rgba(201,255,88,.1); }

.v8-profile-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 36px;
}

.v8-profile-facts span {
  padding: 15px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  font-size: 11px;
  font-weight: 750;
  color: rgba(255,255,255,.7);
}

.v8-portrait-hero {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 48px;
  background: #111;
  box-shadow: 0 50px 130px rgba(0,0,0,.36);
}

.v8-portrait-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(7,17,30,.82));
}

.v8-portrait-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
}

.v8-portrait-hero figcaption {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 27px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,.72);
}

.v8-split {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(420px, 1.15fr);
  gap: clamp(44px, 7vw, 110px);
  align-items: center;
}

.v8-panel-dark {
  padding: clamp(30px, 5vw, 62px);
  border-radius: var(--v8-radius-lg);
  background:
    radial-gradient(420px 300px at 100% 0%, rgba(47,104,255,.28), transparent 70%),
    linear-gradient(145deg, var(--v8-ink), #102a49);
  box-shadow: var(--v8-shadow);
  color: #fff;
}

.v8-panel-dark h3 {
  margin: 34px 0 16px;
  font-size: clamp(34px, 3.4vw, 54px);
  line-height: .98;
  letter-spacing: -.055em;
  color: #fff;
}

.v8-panel-dark > p {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255,255,255,.66);
}

.v8-panel-dark .v8-label { color: var(--v8-acid); }
.v8-panel-dark .v8-label::before { background: var(--v8-acid); box-shadow: 0 0 0 6px rgba(201,255,88,.1); }
.v8-panel-dark .v8-link { color: #fff; }

.v8-flow {
  display: grid;
  gap: 12px;
}

.v8-flow article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 110px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  background: rgba(255,255,255,.055);
}

.v8-flow article > span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(47,104,255,.22);
  font-size: 11px;
  font-weight: 850;
  color: var(--v8-sky);
}

.v8-flow strong,
.v8-flow small { display: block; }
.v8-flow strong { font-size: 19px; color: #fff; }
.v8-flow small { margin-top: 5px; font-size: 13px; line-height: 1.45; color: rgba(255,255,255,.58); }

.v8-list {
  display: grid;
  gap: 0;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.v8-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  padding: 17px 0;
  border-top: 1px solid var(--v8-line);
  color: var(--v8-text);
}

.v8-list li::before {
  content: "↗";
  color: var(--v8-blue);
  font-weight: 850;
}

.v8-panel-dark .v8-list li {
  border-color: rgba(255,255,255,.1);
  color: rgba(255,255,255,.72);
}

.v8-local {
  position: relative;
  overflow: hidden;
  border-radius: var(--v8-radius-lg);
  background:
    radial-gradient(500px 350px at 88% 10%, rgba(47,104,255,.28), transparent 70%),
    linear-gradient(145deg, #fff, #e9efff);
  box-shadow: 0 30px 90px rgba(7,17,30,.09);
}

.v8-local-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, .7fr);
  gap: clamp(44px, 7vw, 100px);
  align-items: end;
  padding: clamp(42px, 7vw, 90px);
}

.v8-local-links {
  display: grid;
  gap: 10px;
}

.v8-local-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 64px;
  padding: 0 20px;
  border: 1px solid rgba(7,17,30,.1);
  border-radius: 18px;
  background: rgba(255,255,255,.65);
  font-size: 13px;
  font-weight: 800;
  transition: transform .25s ease, background .25s ease;
}

.v8-local-links a:hover { transform: translateX(5px); background: #fff; }
.v8-local-links a span { color: var(--v8-blue); }

.v8-band {
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,.09);
  border-bottom: 1px solid rgba(255,255,255,.09);
  background: var(--v8-ink);
  color: #fff;
}

.v8-band-track {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  overflow: hidden;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: rgba(255,255,255,.56);
}

.v8-band-track span { white-space: nowrap; }
.v8-band-track i { color: var(--v8-acid); font-style: normal; }

.v8-cta-section {
  padding: clamp(80px, 8vw, 120px) 0;
  background:
    radial-gradient(700px 420px at 90% 30%, rgba(47,104,255,.2), transparent 70%),
    var(--v8-ink);
}

.v8-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  padding: clamp(40px, 6vw, 76px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--v8-radius-lg);
  background: rgba(255,255,255,.055);
}

.v8-cta h2 {
  max-width: 900px;
  margin: 18px 0 16px;
  font-size: clamp(50px, 5.6vw, 84px);
  line-height: .94;
  letter-spacing: -.065em;
  color: #fff;
}

.v8-cta p {
  max-width: 740px;
  margin: 0;
  font-size: 17px;
  line-height: 1.62;
  color: rgba(255,255,255,.64);
}

.v8-cta .v8-label { color: var(--v8-acid); }
.v8-cta .v8-label::before { background: var(--v8-acid); box-shadow: 0 0 0 6px rgba(201,255,88,.1); }
.v8-cta .btn { min-height: 58px; padding-inline: 28px; }

.v8-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.v8-contact-card {
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--v8-line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 52px rgba(7,17,30,.06);
}

.v8-contact-card small {
  display: block;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--v8-blue-2);
}

.v8-contact-card strong {
  display: block;
  margin-top: 48px;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.05;
  letter-spacing: -.04em;
  color: var(--v8-ink);
}

.v8-contact-card span {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--v8-muted);
}

.v8-faq {
  display: grid;
  gap: 10px;
}

.v8-faq details {
  border: 1px solid var(--v8-line);
  border-radius: 20px;
  background: rgba(255,255,255,.8);
}

.v8-faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 23px 24px;
  cursor: pointer;
  list-style: none;
  font-size: 17px;
  font-weight: 800;
  color: var(--v8-ink);
}

.v8-faq summary::-webkit-details-marker { display: none; }
.v8-faq summary::after { content: "+"; color: var(--v8-blue); font-size: 24px; }
.v8-faq details[open] summary::after { content: "−"; }
.v8-faq details p { margin: 0; padding: 0 24px 24px; color: var(--v8-muted); line-height: 1.65; }

.v8-note {
  padding: 18px 20px;
  border-radius: 18px;
  background: #e8eeff;
  font-size: 13px;
  line-height: 1.55;
  color: #31425a;
}

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

.v8-js .v8-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .72s var(--v8-ease), transform .72s var(--v8-ease);
}

.v8-js .v8-reveal.is-visible {
  opacity: 1;
  transform: none;
}

.site-footer {
  padding: 42px 0;
  border-top: 1px solid rgba(7,17,30,.08);
  background: #fff;
  color: var(--v8-muted);
  font-size: 13px;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(220px, .8fr) minmax(150px, .55fr) minmax(330px, 1.35fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: flex-start;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-brand strong { display: block; color: var(--v8-ink); }
.footer-brand > div > span { display: block; margin-top: 4px; line-height: 1.45; color: var(--v8-muted); }
.footer-right { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: 14px; }
.footer-business { line-height: 1.55; color: var(--v8-muted); }
.footer-legal { display: flex; flex-wrap: wrap; align-items: center; gap: 11px; }
.footer-legal a,
.footer-legal button { color: var(--v8-muted); }
.footer-legal button { padding: 0; border: 0; background: transparent; cursor: pointer; }
.footer-legal a:hover,
.footer-legal button:hover { color: var(--v8-ink); }
.footer-brand > div > span { max-width: 300px; }
.footer-business { font-size: 11px; }
.footer-legal a,
.footer-legal button { font-size: 11px; }

.v8-footer-services {
  display: grid;
  gap: 8px;
}

.v8-footer-services strong {
  margin-bottom: 3px;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--v8-blue-2);
}

.v8-footer-services a {
  width: fit-content;
  font-size: 12px;
  color: var(--v8-muted);
}

.v8-footer-services a:hover { color: var(--v8-ink); }

@media (max-width: 1240px) {
  .container { width: min(100% - 40px, 1080px); }
  .desktop-nav,
  .header-right { display: none; }
  .mobile-toggle { display: inline-flex; }
  .brand-text { display: none; }
  .v8-hero-shell { grid-template-columns: 1fr; }
  .v8-hero-copy { max-width: 980px; }
  .v8-signal-card { width: min(100%, 760px); min-height: 610px; justify-self: center; }
  .v8-split { grid-template-columns: 1fr; }
  .v8-split-copy { max-width: 900px; }
}

@media (max-width: 900px) {
  .v8-hero { padding-top: 82px; }
  .v8-hero h1 { font-size: clamp(60px, 11vw, 88px); }
  .v8-section-head { grid-template-columns: 1fr; gap: 22px; }
  .v8-grid-3 { grid-template-columns: 1fr; }
  .v8-profile { grid-template-columns: 1fr; }
  .v8-profile-media { min-height: 560px; }
  .v8-portrait-hero { width: min(100%, 760px); min-height: 720px; justify-self: center; }
  .v8-local-inner { grid-template-columns: 1fr; }
  .v8-cta { grid-template-columns: 1fr; }
  .v8-contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-right { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  .container { width: min(100% - 28px, 680px); }
  .header-inner { min-height: 78px; }
  .brand-badge { width: 90px; height: 48px; }
  .v8-hero { padding: 66px 0 78px; }
  .v8-hero::before { background-size: 42px 42px; }
  .v8-hero-home .v8-hero-shell { min-height: 0; }
  .v8-hero-shell { gap: 48px; }
  .v8-hero h1,
  .v8-hero-internal h1 { margin-top: 23px; font-size: clamp(52px, 14.8vw, 68px); line-height: .91; }
  .v8-hero-lead { font-size: 16px; }
  .v8-actions { align-items: stretch; flex-direction: column; }
  .v8-actions .btn { width: 100%; }
  .v8-link { align-self: flex-start; }
  .v8-signal-card { min-height: 500px; padding: 22px; border-radius: 30px; }
  .v8-signal-card::before { width: 340px; height: 340px; }
  .v8-signal-card::after { width: 230px; height: 230px; }
  .v8-signal-core { width: 220px; }
  .v8-signal-core strong { font-size: 32px; }
  .v8-signal-bottom { left: 22px; right: 22px; bottom: 21px; }
  .v8-signal-bottom span:nth-child(2) { display: none; }
  .v8-section { padding: 82px 0; }
  .v8-home-heading { align-items: flex-start; flex-direction: column; margin-bottom: 28px; }
  .v8-home-heading h2 { font-size: clamp(44px, 12.5vw, 58px); }
  .v8-essential-grid { grid-template-columns: 1fr; }
  .v8-essential-link { min-height: 132px; padding-inline: 10px; }
  .v8-essential-link:nth-child(odd) { border-right: 0; }
  .v8-essential-link:hover { padding-left: 16px; }
  .v8-section-head { margin-bottom: 40px; }
  .v8-section-head h2,
  .v8-split-copy h2,
  .v8-profile-copy h2,
  .v8-local-copy h2 { font-size: clamp(46px, 13vw, 62px); }
  .v8-section-head p,
  .v8-split-copy > p,
  .v8-profile-copy > p,
  .v8-local-copy > p { font-size: 16px; }
  .v8-grid-2,
  .v8-grid-4 { grid-template-columns: 1fr; }
  .v8-card { min-height: 270px; padding: 25px; }
  .v8-card h3 { margin-top: 44px; }
  .v8-service-card { grid-column: auto; min-height: 320px; padding: 27px; border-radius: 28px; }
  .v8-service-card h3 { margin-top: 54px; font-size: 38px; }
  .v8-profile { border-radius: 30px; }
  .v8-profile-media { min-height: 430px; }
  .v8-portrait-hero { min-height: 520px; border-radius: 30px; }
  .v8-profile-copy { padding: 38px 28px 44px; }
  .v8-profile-facts { grid-template-columns: 1fr; }
  .v8-panel-dark { padding: 20px; border-radius: 30px; }
  .v8-local { border-radius: 30px; }
  .v8-local-inner { padding: 36px 25px; }
  .v8-band-track span:nth-child(even) { display: none; }
  .v8-cta { padding: 34px 24px; border-radius: 30px; }
  .v8-cta h2 { font-size: clamp(48px, 13vw, 62px); }
  .v8-contact-card { min-height: 190px; }
  .site-footer { padding-bottom: 88px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-right { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .v8-js .v8-reveal,
  .v8-service-card,
  .v8-local-links a { opacity: 1; transform: none; transition: none; }
}
