
:root {
  --navy: #071b34;
  --blue: #0b5ea8;
  --sky: #6ec6ff;
  --teal: #0f766e;
  --gold: #d28a16;
  --ink: #132033;
  --muted: #5e6b7f;
  --line: #d9e2ef;
  --soft: #f4f8fc;
  --warm: #fff8ec;
  --white: #ffffff;
  --glow: rgba(110, 198, 255, 0.24);
  --shadow: 0 24px 70px rgba(7, 27, 52, 0.14);
  --radius: 8px;
  --max: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff 0, #ffffff 68%, #f7fafc 100%);
  line-height: 1.55;
}

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

p {
  margin: 0 0 1rem;
}

h1, h2, h3 {
  margin: 0 0 1rem;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  font-size: 4.8rem;
}

h2 {
  font-size: 3rem;
}

h3 {
  font-size: 1.25rem;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  background: var(--navy);
  color: var(--white);
  padding: .75rem 1rem;
  z-index: 20;
}

.skip-link:focus {
  top: 1rem;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  width: min(var(--max), calc(100% - 2rem));
  margin: .75rem auto 0;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(217, 226, 239, .85);
  border-radius: 12px;
  box-shadow: 0 18px 50px rgba(7, 27, 52, .08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-weight: 800;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: var(--navy);
  box-shadow: 0 12px 30px rgba(7, 27, 52, .2);
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.brand-text {
  font-size: 1.25rem;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-weight: 650;
  color: var(--muted);
}

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

.nav-links a[aria-current="page"] {
  color: var(--navy);
}

.nav-links a[aria-current="page"]:not(.nav-cta)::after {
  content: "";
  display: block;
  height: 3px;
  width: 100%;
  margin-top: .35rem;
  border-radius: 999px;
  background: var(--gold);
}

.nav-cta {
  color: var(--white) !important;
  background: var(--navy);
  padding: .72rem 1rem;
  border-radius: 999px;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 999px;
  width: 44px;
  height: 40px;
  padding: 0;
  font-weight: 700;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--navy);
}

.hero,
.page-hero,
.section,
.cta-section,
.site-footer {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 3rem;
  align-items: center;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.hero-home {
  background:
    linear-gradient(120deg, rgba(11, 94, 168, .08), transparent 38%),
    linear-gradient(180deg, #fff, #f8fbff 88%);
}

.eyebrow {
  color: var(--blue);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .11em;
  font-size: .78rem;
  margin-bottom: 1rem;
}

.hero-lede,
.page-hero p,
.section-header p {
  font-size: 1.22rem;
  color: var(--muted);
  max-width: 780px;
}

.button-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: .95rem 1.2rem;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(11, 94, 168, .22);
}

.button.primary:hover {
  background: #084f91;
}

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

.button.secondary:hover {
  border-color: rgba(11, 94, 168, .35);
  color: var(--blue);
}

.button.light {
  background: var(--white);
  color: var(--navy);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(210, 138, 22, .45);
  outline-offset: 3px;
}

.hero-panel {
  position: relative;
}

.screen-card {
  background: linear-gradient(180deg, var(--navy), #0d315c);
  color: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, .14);
}

.screen-card.large {
  min-height: 430px;
}

.screen-topbar {
  display: flex;
  gap: .45rem;
  margin-bottom: 2rem;
}

.screen-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .36);
}

.status {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--sky);
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.signal-grid div {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .06);
  border-radius: var(--radius);
}

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

.signal-grid span {
  color: rgba(255,255,255,.7);
  margin-top: .35rem;
}

.page-hero {
  padding-top: 6.5rem;
  padding-bottom: 4rem;
  background:
    linear-gradient(120deg, rgba(15, 118, 110, .08), transparent 42%),
    linear-gradient(180deg, #fff, #f8fbff);
}

.page-hero h1 {
  max-width: 980px;
  font-size: 3.7rem;
}

.section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.section-header {
  max-width: 840px;
  margin-bottom: 2.5rem;
}

.card-grid {
  display: grid;
  gap: 1.25rem;
}

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

.card-grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.card,
.feature-card,
.price-card,
.contact-card,
.contact-form {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 12px 40px rgba(7, 27, 52, .06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.card:hover,
.feature-card:hover,
.price-card:hover {
  transform: translateY(-2px);
  border-color: rgba(11, 94, 168, .28);
  box-shadow: 0 18px 54px rgba(7, 27, 52, .1);
}

.card p,
.feature-card p,
.price-card p,
.contact-card p {
  color: var(--muted);
}

.feature-card {
  padding: 2rem;
}

.label {
  color: var(--blue);
  font-weight: 800;
  margin-bottom: .7rem;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0;
}

.check-list li {
  position: relative;
  padding-left: 1.75rem;
  margin: .6rem 0;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: .1rem;
  top: .55rem;
  width: .58rem;
  height: .58rem;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(15, 118, 110, .12);
}

.text-link {
  color: var(--blue);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(11, 94, 168, .28);
  text-decoration-thickness: 2px;
  text-underline-offset: .24em;
}

.text-link::after {
  content: " \2192";
}

.dark-band {
  max-width: none;
  background: var(--navy);
  color: var(--white);
  padding-left: calc((100vw - var(--max)) / 2 + 1.25rem);
  padding-right: calc((100vw - var(--max)) / 2 + 1.25rem);
}

.dark-band p {
  color: rgba(255,255,255,.76);
}

.muted {
  max-width: none;
  background: var(--soft);
  padding-left: calc((100vw - var(--max)) / 2 + 1.25rem);
  padding-right: calc((100vw - var(--max)) / 2 + 1.25rem);
}

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.service-strip div {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
}

.service-strip span,
.timeline span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  color: var(--white);
  background: var(--teal);
  font-weight: 900;
  margin-bottom: 1rem;
}

.cta-section {
  margin-top: 2rem;
  margin-bottom: 4rem;
  border-radius: 12px;
  background:
    linear-gradient(120deg, rgba(210, 138, 22, .22), transparent 28%),
    linear-gradient(135deg, var(--blue), var(--navy));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.cta-section p {
  color: rgba(255,255,255,.78);
  max-width: 720px;
}

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

.timeline div {
  border-left: 4px solid var(--teal);
  padding: 1.2rem 1.2rem 1.2rem 1.4rem;
  background: var(--white);
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: 0 12px 40px rgba(7, 27, 52, .06);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.price-card.featured {
  border-color: rgba(210, 138, 22, .45);
  background: linear-gradient(180deg, var(--warm), #fff 46%);
  box-shadow: 0 24px 70px rgba(210, 138, 22, .12);
}

.service-detail {
  display: grid;
  grid-template-columns: .55fr 1fr;
  gap: 3rem;
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.contact-section {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 1.5rem;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-details {
  border-top: 1px solid var(--line);
  margin-top: 1.6rem;
  padding-top: 1.4rem;
}

.contact-details h3 {
  margin-bottom: .3rem;
}

.contact-details a {
  display: table;
  margin-top: .65rem;
}

label {
  display: grid;
  gap: .4rem;
  color: var(--navy);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  font: inherit;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: .9rem 1rem;
  color: var(--ink);
  background: #fff;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(210, 138, 22, .42);
  border-color: var(--blue);
}

.form-note {
  color: var(--muted);
  font-size: .92rem;
}

.form-status {
  min-height: 1.5rem;
  margin: 0;
  color: var(--teal);
  font-weight: 800;
}

.form-status.is-error {
  color: #b42318;
}

.contact-form code {
  font-size: .9em;
  color: var(--navy);
}

.contact-form button:disabled {
  cursor: progress;
  opacity: .72;
  transform: none;
}

.site-footer {
  padding-top: 4rem;
  padding-bottom: 2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr 1fr;
  gap: 2rem;
}

.site-footer h3 {
  color: var(--navy);
  font-size: 1rem;
  letter-spacing: 0;
}

.site-footer a {
  display: block;
  margin: .55rem 0;
  color: var(--muted);
}

.site-footer a:hover {
  color: var(--blue);
}

.footer-brand {
  color: var(--navy);
  margin-bottom: 1rem;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .92rem;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    top: 82px;
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 1rem;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: .6rem .4rem;
  }

  .nav-cta {
    text-align: center;
  }

  .hero,
  .split,
  .service-detail,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 3.5rem;
  }

  .card-grid.three,
  .card-grid.two,
  .service-strip,
  .timeline,
  .pricing-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-section {
    flex-direction: column;
    align-items: flex-start;
  }

  h1 {
    font-size: 3.25rem;
  }

  .page-hero h1 {
    font-size: 2.65rem;
  }

  h2 {
    font-size: 2.25rem;
  }
}

@media (max-width: 540px) {
  h1 {
    font-size: 2.45rem;
  }

  .page-hero h1 {
    font-size: 2.15rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  .site-nav {
    width: calc(100% - 1rem);
    margin-top: .5rem;
    padding: .75rem;
  }

  .brand-text {
    font-size: 1.08rem;
  }

  .signal-grid {
    grid-template-columns: 1fr;
  }

  .screen-card {
    padding: 1.25rem;
  }

  .section,
  .page-hero {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .hero-lede,
  .page-hero p,
  .section-header p {
    font-size: 1.05rem;
  }
}


.proof-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.quote-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 12px 40px rgba(7, 27, 52, .06);
}

.quote {
  font-size: 1.45rem;
  color: var(--navy);
  font-weight: 750;
  letter-spacing: 0;
}

.quote-source {
  color: var(--muted);
}

.article-card h2 {
  font-size: 2rem;
}

.article-preview {
  min-height: 100%;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 2rem;
  align-items: start;
}

.article-body {
  max-width: 820px;
}

.article-body .lead {
  font-size: 1.25rem;
  color: var(--muted);
}

.article-body h2 {
  font-size: 2.2rem;
  margin-top: 2.5rem;
}

.article-image {
  margin: 2rem 0;
}

.article-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article-sidebar {
  position: sticky;
  top: 100px;
}

.number-list {
  margin: 1.2rem 0;
  padding-left: 1.25rem;
}

.number-list li {
  margin: .8rem 0;
  padding-left: .35rem;
}

@media (max-width: 900px) {
  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
  }
}


.supporting-line {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--blue);
  margin-top: .35rem;
}

.hero-image-card {
  padding: 0;
  overflow: hidden;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid rgba(11, 94, 168, .12);
  box-shadow: var(--shadow);
}

.image-frame {
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: var(--shadow);
  background: #dfe8f3;
}

.image-frame img {
  width: 100%;
  display: block;
  height: auto;
}

.hero-image-card img {
  min-height: 460px;
  object-fit: cover;
}

.visual-band-section {
  padding-top: 0;
}

.visual-grid-section {
  padding-top: 1rem;
  padding-bottom: 2rem;
}

.visual-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

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

.visual-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.wide-visual img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.image-feature {
  padding-top: 2rem;
}

.image-story {
  align-items: center;
}

.feature-image {
  width: 100%;
}

.proof-section + .image-feature,
.image-feature + .proof-section {
  padding-top: 2rem;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 2rem;
  }

  .hero-image-card img {
    min-height: 320px;
  }

  .visual-grid,
  .visual-grid.three {
    grid-template-columns: 1fr;
  }
}
