:root {
  --ink: #071a2d;
  --ink-soft: #18334d;
  --blue: #0a68f0;
  --blue-dark: #0752bd;
  --cyan: #4fd7ff;
  --mint: #6ee7c0;
  --paper: #f5f8fb;
  --white: #ffffff;
  --line: #dce6ef;
  --muted: #607386;
  --shadow: 0 24px 70px rgba(4, 28, 52, 0.14);
  --radius: 22px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--blue);
  border-radius: 8px;
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  color: var(--white);
  background: rgba(7, 26, 45, 0.93);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(18px);
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-inner { min-height: 76px; }

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  text-decoration: none;
}

.brand-name {
  color: var(--white);
  font-size: 1.06rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.brand-name span { color: var(--cyan); }

.brand-mark {
  position: relative;
  display: inline-block;
  width: 34px;
  height: 34px;
  transform: rotate(-10deg);
}

.brand-mark i {
  position: absolute;
  display: block;
  width: 11px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--cyan), var(--blue));
}

.brand-mark i:nth-child(1) { bottom: 4px; left: 2px; height: 15px; }
.brand-mark i:nth-child(2) { bottom: 4px; left: 13px; height: 24px; }
.brand-mark i:nth-child(3) { bottom: 4px; left: 24px; height: 31px; }

.primary-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  font-size: 0.92rem;
  font-weight: 650;
}

.primary-nav a {
  color: #cbd9e5;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible { color: var(--white); }

.primary-nav .nav-cta {
  padding: 11px 17px;
  color: var(--white);
  background: var(--blue);
  border-radius: 999px;
}

.primary-nav .nav-cta:hover { background: var(--blue-dark); }

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(116deg, rgba(7, 26, 45, 0.98), rgba(8, 38, 66, 0.94)),
    var(--ink);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.15;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to right, transparent, black 45%, black);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 84px;
  align-items: center;
  min-height: 690px;
  padding-top: 78px;
  padding-bottom: 90px;
}

.hero-copy { max-width: 660px; }

.eyebrow {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0 0 20px;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow span {
  display: inline-block;
  width: 24px;
  height: 2px;
  background: currentColor;
}

.eyebrow.dark { color: var(--blue); }
.eyebrow.light { color: var(--cyan); }

h1,
h2,
h3,
p { margin-top: 0; }

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 5.5vw, 5.3rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero-lede {
  max-width: 630px;
  margin-bottom: 30px;
  color: #c5d5e3;
  font-size: clamp(1.05rem, 1.5vw, 1.26rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 760;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--blue); }
.button-primary:hover { background: #1978f5; }
.button-secondary { color: var(--white); border-color: rgba(255,255,255,.24); background: rgba(255,255,255,.06); }
.button-secondary:hover { border-color: rgba(255,255,255,.45); background: rgba(255,255,255,.11); }

.hero-note { color: #8fa5b8; font-size: 0.83rem; }

.quote-preview {
  position: relative;
  padding: 24px;
  color: var(--ink);
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 28px;
  box-shadow: 0 38px 90px rgba(0,0,0,.28);
  transform: rotate(1.2deg);
}

.quote-preview::before {
  position: absolute;
  z-index: -1;
  inset: 18px -18px -18px 18px;
  content: "";
  border: 1px solid rgba(79,215,255,.32);
  border-radius: 28px;
}

.preview-topline {
  display: flex;
  gap: 9px;
  align-items: center;
  padding-bottom: 18px;
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0.02em;
}

.preview-topline small {
  margin-left: auto;
  padding: 5px 9px;
  color: var(--blue);
  background: #eaf2ff;
  border-radius: 999px;
  font-weight: 800;
  text-transform: uppercase;
}

.status-dot {
  width: 9px;
  height: 9px;
  background: #20c58a;
  border-radius: 50%;
  box-shadow: 0 0 0 4px #d7f8ec;
}

.voice-card {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 18px;
  background: var(--ink);
  border-radius: 17px;
}

.play-button {
  display: grid;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  place-items: center;
  padding-left: 2px;
  color: var(--ink);
  background: var(--cyan);
  border-radius: 50%;
  font-size: 0.75rem;
}

.voice-lines {
  display: flex;
  flex: 1;
  gap: 3px;
  align-items: center;
  height: 38px;
}

.voice-lines i {
  flex: 1;
  height: 18%;
  background: #6f8ca6;
  border-radius: 99px;
}

.voice-lines i:nth-child(2), .voice-lines i:nth-child(9) { height: 42%; }
.voice-lines i:nth-child(3), .voice-lines i:nth-child(7) { height: 76%; background: var(--cyan); }
.voice-lines i:nth-child(4), .voice-lines i:nth-child(6) { height: 100%; background: var(--cyan); }
.voice-lines i:nth-child(5) { height: 58%; background: var(--cyan); }
.voice-lines i:nth-child(8), .voice-lines i:nth-child(10) { height: 32%; }
.voice-card > span { color: #9db0c2; font-size: 0.72rem; }

.workflow-arrow {
  position: relative;
  display: flex;
  justify-content: center;
  height: 58px;
  padding-top: 20px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.workflow-arrow::before {
  position: absolute;
  top: 0;
  width: 1px;
  height: 17px;
  content: "";
  background: var(--line);
}

.document-card { padding: 18px; border: 1px solid var(--line); border-radius: 17px; }
.document-heading { display: flex; gap: 11px; align-items: center; padding-bottom: 15px; border-bottom: 1px solid var(--line); }
.document-heading div { display: grid; gap: 2px; }
.document-heading small { color: var(--muted); }
.pdf-badge { padding: 8px; color: var(--white); background: #e34848; border-radius: 8px; font-size: 0.7rem; font-weight: 900; }
.check-mark { display: grid; width: 28px; height: 28px; margin-left: auto; place-items: center; color: #087b54; background: #d8f7ec; border-radius: 50%; font-weight: 900; }
.document-row { display: flex; justify-content: space-between; padding-top: 14px; color: var(--muted); font-size: 0.78rem; }
.document-row strong { color: var(--ink-soft); font-weight: 760; }

.hero-orb { position: absolute; border-radius: 50%; filter: blur(2px); }
.hero-orb-one { right: -120px; bottom: -230px; width: 520px; height: 520px; background: rgba(10,104,240,.17); }
.hero-orb-two { top: 120px; left: 44%; width: 190px; height: 190px; background: rgba(79,215,255,.08); }

.proof-strip { background: var(--paper); border-bottom: 1px solid var(--line); }
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.proof-grid div { display: grid; gap: 3px; padding: 27px 34px; border-right: 1px solid var(--line); }
.proof-grid div:first-child { padding-left: 0; }
.proof-grid div:last-child { border-right: 0; }
.proof-grid strong { color: var(--blue); font-size: 1.15rem; }
.proof-grid span { color: var(--muted); font-size: 0.8rem; }

.section { padding: 112px 0; }
.section-heading { display: grid; grid-template-columns: 1.25fr .75fr; gap: 80px; align-items: end; margin-bottom: 54px; }
.section-heading h2,
.process-intro h2,
.experience-grid h2,
.contact-card h2 {
  margin-bottom: 0;
  font-size: clamp(2.25rem, 4vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}
.section-heading > p { margin-bottom: 4px; color: var(--muted); line-height: 1.75; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { position: relative; display: flex; flex-direction: column; min-height: 380px; padding: 30px; overflow: hidden; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); }
.service-card.featured { color: var(--white); background: var(--ink); border-color: var(--ink); box-shadow: var(--shadow); }
.card-number { position: absolute; top: 22px; right: 24px; color: #94a7b8; font-size: 0.76rem; font-weight: 800; }
.service-icon { display: grid; width: 52px; height: 52px; margin-bottom: 50px; place-items: center; color: var(--blue); background: var(--white); border: 1px solid var(--line); border-radius: 15px; font-size: 1.5rem; font-weight: 800; }
.featured .service-icon { color: var(--ink); background: var(--cyan); border-color: var(--cyan); }
.service-card h3 { margin-bottom: 14px; font-size: 1.4rem; letter-spacing: -0.025em; }
.service-card p { margin-bottom: 24px; color: var(--muted); line-height: 1.7; }
.featured p { color: #b8c9d8; }
.service-outcome { margin-top: auto; padding-top: 20px; color: var(--blue); border-top: 1px solid var(--line); font-size: 0.78rem; font-weight: 800; }
.featured .service-outcome { color: var(--cyan); border-color: rgba(255,255,255,.14); }

.process-section { color: var(--white); background: var(--ink); }
.process-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 110px; align-items: start; }
.process-intro { position: sticky; top: 120px; }
.process-intro h2 { margin-bottom: 24px; }
.process-intro > p:not(.eyebrow) { color: #aebfd0; line-height: 1.75; }
.text-link { display: inline-flex; gap: 12px; align-items: center; margin-top: 12px; color: var(--cyan); font-weight: 780; text-decoration: none; }
.process-list { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.process-list li { display: grid; grid-template-columns: 70px 1fr; gap: 24px; padding: 38px 0; border-top: 1px solid rgba(255,255,255,.13); }
.process-list li:last-child { border-bottom: 1px solid rgba(255,255,255,.13); }
.process-list > li > span { color: var(--cyan); font-size: 0.78rem; font-weight: 850; }
.process-list h3 { margin-bottom: 11px; font-size: 1.35rem; }
.process-list p { max-width: 560px; margin-bottom: 0; color: #aebfd0; line-height: 1.7; }

.experience-section { background: var(--paper); }
.experience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: end; }
.experience-grid h2 { margin-bottom: 26px; }
.experience-copy { color: var(--muted); line-height: 1.75; }
.client-list { display: grid; grid-template-columns: 1fr 1fr; margin: 0; padding: 0; border-top: 1px solid #bfcedb; list-style: none; }
.client-list li { position: relative; padding: 21px 16px 21px 28px; border-bottom: 1px solid #bfcedb; font-weight: 760; }
.client-list li::before { position: absolute; left: 4px; color: var(--blue); content: "◆"; font-size: 0.56rem; }
.client-list li:nth-child(odd) { border-right: 1px solid #bfcedb; }

.contact-section { padding: 84px 0; background: var(--white); }
.contact-card { display: grid; grid-template-columns: 1.15fr .85fr; gap: 70px; padding: 64px; color: var(--white); background: linear-gradient(130deg, #071a2d, #0a355d); border-radius: 30px; box-shadow: var(--shadow); }
.contact-card h2 { margin-bottom: 22px; }
.contact-card p:not(.eyebrow) { max-width: 620px; margin-bottom: 0; color: #b9cbda; line-height: 1.7; }
.contact-actions { display: grid; align-content: center; }
.contact-actions a { display: grid; grid-template-columns: 1fr auto; gap: 4px 18px; padding: 21px 0; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.17); }
.contact-actions a:first-child { border-top: 1px solid rgba(255,255,255,.17); }
.contact-actions small { color: var(--cyan); font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.contact-actions strong { grid-column: 1; font-size: 1.18rem; overflow-wrap: anywhere; }
.contact-actions span { grid-row: 1 / 3; grid-column: 2; align-self: center; color: var(--cyan); font-size: 1.3rem; }

.site-footer { padding: 34px 0; color: #aebfd0; background: #041321; }
.footer-inner { gap: 28px; }
.footer-inner p { margin: 0; font-size: 0.76rem; }
.footer-brand { flex: 0 0 auto; }

:focus-visible { outline: 3px solid var(--cyan); outline-offset: 3px; }

@media (max-width: 900px) {
  .primary-nav a:not(.nav-cta) { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 54px; padding-top: 70px; }
  .quote-preview { width: min(620px, 94%); margin: 0 auto; }
  .section-heading,
  .process-grid,
  .experience-grid,
  .contact-card { grid-template-columns: 1fr; }
  .section-heading { gap: 24px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 320px; }
  .process-grid { gap: 58px; }
  .process-intro { position: static; }
  .experience-grid { gap: 48px; }
  .contact-card { gap: 44px; }
  .footer-inner { flex-wrap: wrap; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1160px); }
  .header-inner { min-height: 68px; }
  .primary-nav { gap: 10px; }
  .primary-nav .nav-cta { padding: 9px 13px; }
  .hero-grid { min-height: auto; padding-top: 64px; padding-bottom: 76px; }
  h1 { font-size: clamp(2.7rem, 14vw, 4.1rem); }
  .hero-actions { display: grid; }
  .quote-preview { width: 100%; padding: 16px; transform: none; }
  .quote-preview::before { display: none; }
  .document-row { gap: 10px; }
  .proof-grid { grid-template-columns: 1fr; padding: 11px 0; }
  .proof-grid div, .proof-grid div:first-child { padding: 16px 4px; border-right: 0; border-bottom: 1px solid var(--line); }
  .proof-grid div:last-child { border-bottom: 0; }
  .section { padding: 82px 0; }
  .section-heading { margin-bottom: 38px; }
  .section-heading h2,
  .process-intro h2,
  .experience-grid h2,
  .contact-card h2 { font-size: 2.35rem; }
  .service-card { padding: 24px; }
  .process-list li { grid-template-columns: 42px 1fr; gap: 12px; }
  .client-list { grid-template-columns: 1fr; }
  .client-list li:nth-child(odd) { border-right: 0; }
  .contact-section { padding: 54px 0; }
  .contact-card { width: calc(100% - 20px); padding: 34px 24px; border-radius: 22px; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
