﻿:root {
  --ink: #20272d;
  --muted: #5f6b77;
  --line: #dce5ef;
  --paper: #f5f8fc;
  --white: #ffffff;
  --blue: #2f74f6;
  --blue-bright: #3f86ff;
  --blue-dark: #061f5f;
  --navy: #061747;
  --charcoal: #20272d;
  --pale-blue: #eaf2ff;
  --soft-green: #eaf7f0;
  --green: #16784f;
  --shadow: 0 22px 60px rgba(6, 31, 95, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background: var(--paper);
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 94px;
  flex: 0 0 auto;
}

.site-logo {
  display: block;
  width: 76px;
  height: 80px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--charcoal);
  font-size: 0.88rem;
  line-height: 1.15;
  flex-wrap: wrap;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--blue);
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
}

.header-cta,
.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  box-shadow: 0 12px 24px rgba(47, 116, 246, 0.22);
}

.button.secondary {
  color: var(--blue-dark);
  background: var(--white);
  border-color: var(--line);
}

.section-band {
  padding: clamp(64px, 8vw, 108px) clamp(18px, 4vw, 56px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  min-height: calc(100vh - 75px);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.97), rgba(234, 242, 255, 0.9)),
    radial-gradient(circle at 78% 18%, rgba(47, 116, 246, 0.16), transparent 35%),
    radial-gradient(circle at 14% 80%, rgba(22, 120, 79, 0.1), transparent 36%),
    #f5f8fb;
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(2.35rem, 5vw, 5.1rem);
  line-height: 0.98;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  line-height: 1.04;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
}

.hero-lede,
.hero-support {
  max-width: 720px;
  color: #3d4a57;
}

.hero-lede {
  font-size: clamp(1.06rem, 1.6vw, 1.32rem);
}

.hero-support {
  font-size: 1.03rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.trust-row,
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.trust-row span,
.area-grid span,
.tag-list span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 14px;
  color: #2b3846;
  background: var(--white);
  font-size: 0.9rem;
}

.hero-visual {
  display: grid;
  gap: 18px;
  justify-items: center;
}

.brand-tile {
  display: grid;
  width: min(100%, 520px);
  min-height: 190px;
  place-items: center;
  border: 1px solid rgba(6, 31, 95, 0.12);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(6, 31, 95, 0.1);
}

.brand-tile img {
  display: block;
  width: min(260px, 72%);
  height: 160px;
  object-fit: contain;
}

.network-panel {
  width: min(100%, 520px);
  overflow: hidden;
  border: 1px solid rgba(6, 31, 95, 0.16);
  border-radius: 8px;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.panel-logo-wrap {
  display: inline-flex;
  width: 70px;
  height: 72px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: var(--white);
}

.panel-logo-wrap img {
  display: block;
  width: 58px;
  height: 62px;
  object-fit: contain;
}

.status-pill {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 5px 10px;
  color: #dceaff;
  font-size: 0.78rem;
}

.network-map {
  position: relative;
  height: 310px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}

.network-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  stroke: rgba(63, 134, 255, 0.62);
  stroke-width: 3;
  fill: none;
}

.node {
  position: absolute;
  z-index: 2;
  display: grid;
  min-width: 82px;
  min-height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.86rem;
  font-weight: 800;
}

.node.core {
  top: 132px;
  left: calc(50% - 42px);
  min-width: 84px;
  min-height: 84px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 10px rgba(63, 134, 255, 0.2);
  font-size: 1.35rem;
}

.n1 { top: 54px; left: 36px; }
.n2 { top: 30px; right: 34px; }
.n3 { right: 28px; bottom: 60px; }
.n4 { bottom: 42px; left: 32px; }
.n5 { top: 22px; left: calc(50% - 41px); }

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.metric-grid div {
  min-height: 124px;
  padding: 18px;
  color: rgba(255, 255, 255, 0.78);
  background: #0b225e;
}

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

.metric-grid strong {
  margin-bottom: 8px;
  color: var(--white);
}

.strip {
  padding: 28px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: var(--blue-dark);
}

.strip p {
  max-width: 1040px;
  margin: 0 auto;
  font-size: clamp(1.02rem, 1.9vw, 1.35rem);
  text-align: center;
}

.section-heading {
  max-width: 880px;
  margin-bottom: 34px;
}

.section-heading p,
.feature p,
.about p,
.packages p,
.legal p {
  color: var(--muted);
}

.service-grid,
.package-grid,
.legal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card,
.package-card,
.legal-grid article,
.check-panel,
.review-form,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-card {
  min-height: 250px;
  padding: 24px;
}

.service-card p,
.steps p,
.proof-list span,
.contact-copy p,
.compliance-box p,
.site-footer span,
.form-note,
.fine-print {
  color: var(--muted);
}

.icon {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  font-size: 0.78rem;
  font-weight: 800;
}

.feature:nth-of-type(even),
.packages,
.legal {
  background: var(--white);
}

.split,
.capture-grid,
.two-column-lists {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: start;
}

.check-panel {
  padding: clamp(24px, 4vw, 36px);
}

.check-panel h3 {
  color: var(--blue-dark);
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  color: #344252;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px var(--soft-green);
}

.notice {
  max-width: 760px;
  margin-top: 24px;
  padding: 18px;
  border-left: 4px solid var(--green);
  border-radius: 0 8px 8px 0;
  color: #244034;
  background: var(--soft-green);
}

.review-form,
.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(24px, 4vw, 36px);
}

.review-form label,
.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--blue-dark);
  font-size: 0.9rem;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.form-note {
  margin: 0;
  font-size: 0.92rem;
}

.fine-print {
  margin: 24px 0 0;
  font-size: 0.95rem;
}

.package-grid {
  grid-template-columns: repeat(3, 1fr);
}

.package-card,
.legal-grid article {
  padding: 26px;
}

.package-card {
  min-height: 210px;
}

.package-card.featured {
  color: var(--white);
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  box-shadow: var(--shadow);
}

.package-card.featured p {
  color: rgba(255, 255, 255, 0.78);
}

.about {
  background: var(--paper);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1fr);
  gap: clamp(28px, 6vw, 76px);
  background: var(--white);
  border-top: 1px solid var(--line);
}

.contact-note {
  display: grid;
  gap: 6px;
  max-width: 540px;
  margin-top: 26px;
  padding: 18px;
  border-left: 4px solid var(--blue);
  background: var(--pale-blue);
}

.contact-note a {
  color: var(--blue-dark);
  font-weight: 800;
}

.legal-grid {
  grid-template-columns: repeat(4, 1fr);
}

.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 30px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: var(--charcoal);
}

.site-footer div,
.site-footer span,
.footer-links {
  display: grid;
  gap: 6px;
}

.footer-disclaimer {
  max-width: 980px;
  font-size: 0.84rem;
}

.footer-links {
  justify-items: end;
  flex: 0 0 auto;
}

@media (max-width: 1120px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
    flex-wrap: nowrap;
  }

  .hero,
  .split,
  .capture-grid,
  .two-column-lists,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .service-grid,
  .package-grid,
  .legal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .site-header {
    position: static;
  }

  .brand {
    min-width: 0;
  }

  .site-logo {
    width: 78px;
    height: 82px;
  }

  .header-cta {
    width: 100%;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .service-grid,
  .package-grid,
  .legal-grid,
  .metric-grid,
  .review-form,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact {
    grid-template-columns: minmax(0, 1fr);
  }

  .network-panel {
    width: 100%;
  }

  .node {
    min-width: 72px;
    font-size: 0.75rem;
  }

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

  .footer-links {
    justify-items: start;
  }
}
