:root {
  color-scheme: light;
  --ink: #071327;
  --muted: #536070;
  --line: #d8e2ee;
  --surface: #ffffff;
  --surface-soft: #f4f8ff;
  --surface-strong: #eaf2ff;
  --brand: #1167ff;
  --brand-dark: #071327;
  --brand-mid: #0d2a55;
  --accent: #1167ff;
  --accent-soft: #eaf2ff;
  --blue-soft: #dceaff;
  --shadow: 0 24px 58px rgba(7, 19, 39, 0.16);
  --radius: 8px;
  --container: 1160px;
  --focus: 3px solid #1167ff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: var(--focus);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 10;
  transform: translateY(-150%);
  background: var(--ink);
  color: #fff;
  padding: 0.7rem 1rem;
  border-radius: var(--radius);
}

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

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.section-pad {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.section-muted {
  background: var(--surface-soft);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

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

.brand {
  min-width: 285px;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(17, 103, 255, 0.18);
  box-shadow: 0 10px 24px rgba(7, 19, 39, 0.1);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-name,
.brand-meta {
  display: block;
}

.brand-name {
  font-weight: 900;
  line-height: 1.1;
}

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

.brand-meta {
  color: var(--muted);
  font-size: 0.86rem;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  color: var(--muted);
  font-size: 0.95rem;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--brand);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--brand);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--brand), #0057dc);
  color: #fff;
  padding: 0.8rem 1.15rem;
  font-weight: 850;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(17, 103, 255, 0.24);
}

.button:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
}

.button-secondary {
  background: #fff;
  color: var(--brand-dark);
  border-color: rgba(17, 103, 255, 0.35);
  box-shadow: none;
}

.button-secondary:hover {
  color: #fff;
}

.button-small {
  min-height: 42px;
  padding: 0.65rem 0.9rem;
  font-size: 0.93rem;
}

.phone-link {
  color: var(--brand-dark);
  font-size: 0.95rem;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

.phone-link:hover {
  color: var(--brand);
}

.hero {
  background:
    linear-gradient(90deg, rgba(244, 248, 255, 0.98), rgba(244, 248, 255, 0.78)),
    radial-gradient(circle at 83% 18%, rgba(17, 103, 255, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(7, 19, 39, 0.08), transparent 42%),
    var(--surface-soft);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4.75rem);
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

h1 {
  max-width: 13ch;
  font-size: clamp(2.65rem, 6vw, 5.45rem);
}

h2 {
  max-width: 18ch;
  font-size: clamp(2rem, 4vw, 3.35rem);
}

h3 {
  font-size: 1.08rem;
}

.hero-lede {
  max-width: 64ch;
  margin: 1.25rem 0 0;
  color: #263447;
  font-size: clamp(1.08rem, 2vw, 1.23rem);
}

.hero-actions,
.cta-stack {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1.75rem 0 0;
}

.quick-facts div {
  min-width: 0;
  border-left: 3px solid var(--accent);
  padding-left: 0.85rem;
}

.fact-label {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.quick-facts strong {
  display: block;
  margin-top: 0.15rem;
  font-weight: 750;
  line-height: 1.3;
}

.hero-media {
  margin: 0;
}

.brand-showcase {
  position: relative;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.9)),
    linear-gradient(135deg, rgba(17, 103, 255, 0.16), transparent 42%);
  border: 1px solid rgba(17, 103, 255, 0.18);
  box-shadow: var(--shadow);
  padding: clamp(1rem, 3vw, 1.6rem);
}

.hero-media img.hero-logo {
  width: 100%;
  aspect-ratio: 900 / 774;
  object-fit: contain;
  border-radius: var(--radius);
  border: 1px solid rgba(216, 226, 238, 0.85);
  background: #fff;
}

.launch-card {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  margin-top: 0.85rem;
}

.launch-card span {
  min-height: 46px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--brand-dark);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 850;
  text-align: center;
  line-height: 1.15;
}

.hero-media figcaption {
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.trust-bar {
  border-block: 1px solid var(--line);
  background: linear-gradient(90deg, #fff, #f8fbff);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-grid p {
  min-height: 116px;
  margin: 0;
  padding: 1.2rem;
  border-right: 1px solid var(--line);
}

.trust-grid p:first-child {
  border-left: 1px solid var(--line);
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  font-size: 1.03rem;
}

.trust-grid span {
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading p:not(.eyebrow) {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.service-card,
.reason-list article,
.quote-panel,
.process-list li,
.cta-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.service-card,
.reason-list article,
.process-list li {
  box-shadow: 0 14px 34px rgba(7, 19, 39, 0.05);
}

.service-card {
  min-height: 260px;
  padding: 1.25rem;
}

.card-icon,
.process-list span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 1.25rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--brand);
  font-weight: 900;
}

.service-card p,
.reason-list p,
.prose p,
.proof-grid p,
.process-list p,
.final-cta p {
  color: var(--muted);
}

.split,
.proof-grid,
.final-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
}

.prose p:first-child {
  margin-top: 0;
}

.prose p:last-child {
  margin-bottom: 0;
}

.reason-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.reason-list article {
  padding: 1.25rem;
}

.reason-list h3 {
  margin-bottom: 0.6rem;
}

.quote-panel {
  padding: clamp(1.25rem, 4vw, 2rem);
  border-left: 5px solid var(--brand);
}

.quote-panel p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.18rem, 2.5vw, 1.6rem);
  line-height: 1.35;
}

.quote-panel span {
  display: block;
  margin-top: 1rem;
  color: var(--muted);
  font-weight: 850;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  min-height: 255px;
  padding: 1.25rem;
}

.process-list h3 {
  margin-bottom: 0.6rem;
}

.final-cta {
  background:
    radial-gradient(circle at 84% 18%, rgba(17, 103, 255, 0.42), transparent 34%),
    linear-gradient(135deg, var(--brand-dark), #0b1d3a 62%, #10284f);
  color: #fff;
}

.final-cta .eyebrow {
  color: #8dbbff;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.82);
}

.final-cta .button {
  width: 100%;
  border-color: #fff;
  background: #fff;
  color: var(--brand-dark);
}

.cta-card {
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
}

.cta-card p {
  margin: 1rem 0 0;
}

.cta-card a:not(.button) {
  color: #fff;
  font-weight: 850;
}

.site-footer {
  background: #101820;
  color: rgba(255, 255, 255, 0.78);
  padding: 1.35rem 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  color: #fff;
}

@media (max-width: 980px) {
  .header-inner {
    flex-wrap: wrap;
    padding: 0.85rem 0;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.2rem;
  }

  .phone-link {
    margin-left: auto;
  }

  .hero-grid,
  .split,
  .proof-grid,
  .final-cta-inner {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 15ch;
  }

  h2 {
    max-width: 20ch;
  }

  .quick-facts,
  .trust-grid,
  .card-grid,
  .reason-list,
  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-grid p:nth-child(odd) {
    border-left: 1px solid var(--line);
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 1.2rem, var(--container));
  }

  .brand {
    min-width: 0;
  }

  .brand-meta {
    display: none;
  }

  .button,
  .button-small {
    width: 100%;
  }

  .header-inner > .button {
    width: auto;
    margin-left: auto;
  }

  .phone-link {
    width: 100%;
  }

  .site-nav {
    gap: 1rem;
  }

  .hero-actions,
  .cta-stack {
    align-items: stretch;
  }

  .quick-facts,
  .trust-grid,
  .card-grid,
  .reason-list,
  .process-list {
    grid-template-columns: 1fr;
  }

  .trust-grid p,
  .trust-grid p:first-child,
  .trust-grid p:nth-child(odd) {
    border-left: 1px solid var(--line);
  }

  .footer-inner {
    flex-direction: column;
  }
}

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