@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700;800&family=Source+Sans+3:wght@400;500;600;700&display=swap');

:root {
  --bg: #eef4fb;
  --paper: rgba(255, 255, 255, 0.95);
  --surface: #f8fbff;
  --line: rgba(53, 57, 80, 0.12);
  --text: #12345f;
  --muted: #48617d;
  --navy: #1f3f82;
  --blue: #2f5fa8;
  --light-blue: #a6c3e9;
  --pale-blue: #eaf2fb;
  --red: #cf1f2e;
  --deep-red: #9f1730;
  --white: #ffffff;
  --shadow-soft: 0 24px 60px rgba(28, 66, 139, 0.12);
  --shadow-strong: 0 28px 80px rgba(28, 66, 139, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  font-family: 'Source Sans 3', sans-serif;
  background:
    radial-gradient(circle at 0% 0%, rgba(166, 195, 233, 0.42), transparent 26%),
    radial-gradient(circle at 100% 12%, rgba(225, 22, 49, 0.1), transparent 22%),
    linear-gradient(180deg, #f6faff 0%, #eef4fb 44%, #e8f0f9 100%);
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.2), transparent 35%),
    repeating-linear-gradient(
      90deg,
      rgba(28, 66, 139, 0.02) 0,
      rgba(28, 66, 139, 0.02) 1px,
      transparent 1px,
      transparent 36px
    );
}

.page-shell,
.site-frame {
  width: min(1320px, calc(100% - 24px));
  min-height: calc(100vh - 24px);
  margin: 12px auto;
  padding: 18px;
  border: 1px solid rgba(29, 36, 51, 0.08);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 250, 255, 0.98));
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.page-shell::before,
.page-shell::after,
.site-frame::before,
.site-frame::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.page-shell::before,
.site-frame::before {
  width: 520px;
  height: 520px;
  top: -180px;
  right: -120px;
  background: radial-gradient(circle, rgba(166, 195, 233, 0.34), transparent 64%);
}

.page-shell::after,
.site-frame::after {
  width: 420px;
  height: 420px;
  bottom: -140px;
  left: -110px;
  background: radial-gradient(circle, rgba(225, 22, 49, 0.1), transparent 68%);
}

.site-nav,
.hero-section,
.hero,
.metrics-strip,
.story-section,
.process-section,
.services-section,
.cta-section,
.quote-header,
.quote-section,
.policy-layout,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(28, 66, 139, 0.1);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 32px rgba(28, 66, 139, 0.08);
}

.brand-mark,
.brand,
.nav-links a {
  text-decoration: none;
  color: var(--navy);
  font-weight: 800;
}

.brand-mark,
.brand {
  letter-spacing: 0.03em;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 1.04rem;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.92rem;
  background: rgba(234, 242, 251, 0.58);
  border: 1px solid rgba(28, 66, 139, 0.08);
}

.nav-links a:hover,
.nav-links a.active,
.brand-mark.active,
.brand.active {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 12px 24px rgba(26, 36, 59, 0.08);
}

.nav-links a.active {
  border: 1px solid rgba(34, 49, 76, 0.12);
}

.nav-links a.nav-cta {
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--deep-red));
  border: 1px solid rgba(162, 15, 48, 0.24);
  box-shadow: 0 14px 26px rgba(162, 15, 48, 0.2);
}

.nav-links a.nav-cta:hover,
.nav-links a.nav-cta.active {
  color: var(--white);
  background: linear-gradient(135deg, #c8132d, var(--deep-red));
  box-shadow: 0 16px 28px rgba(162, 15, 48, 0.24);
}

.site-nav .brand-mark.active,
.site-nav .brand.active {
  padding: 12px 18px;
  font-size: 1.28rem;
  box-shadow: 0 14px 28px rgba(26, 36, 59, 0.1);
}

.hero-section,
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 38px;
  padding: 68px 20px 34px;
  align-items: center;
}

.eyebrow,
.card-label {
  display: inline-flex;
  margin: 0 0 16px;
  padding: 9px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  font-weight: 800;
}

.eyebrow {
  color: var(--blue);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 24px rgba(28, 66, 139, 0.08);
  border: 1px solid rgba(28, 66, 139, 0.08);
}

.card-label {
  color: var(--deep-red);
  background: rgba(255, 244, 246, 0.95);
  border: 1px solid rgba(225, 22, 49, 0.08);
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: -0.035em;
}

.hero-section h1,
.hero h1 {
  max-width: 11ch;
  margin-bottom: 0;
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.95;
}

.hero-text,
.brand-line,
.hero-kicker,
.story-copy p,
.service-card p,
.process-step p,
.quote-copy,
.quote-intro,
.support-copy,
.fine-print,
.policy-layout p,
.site-footer p,
.metrics-strip span,
.cta-copy p,
.consent-note {
  color: var(--muted);
  line-height: 1.78;
}

.brand-line {
  margin: 0 0 16px;
  color: var(--deep-red);
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.hero-kicker {
  margin: 0 0 16px;
  color: var(--deep-red);
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.centered-line {
  text-align: center;
}

.hero-text {
  max-width: 620px;
  margin-top: 18px;
  font-size: 1.05rem;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 15px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-solid,
.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--deep-red));
  box-shadow: 0 20px 36px rgba(162, 15, 48, 0.24);
}

.btn-outline,
.btn-secondary {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(28, 66, 139, 0.2);
  box-shadow: 0 14px 26px rgba(28, 66, 139, 0.08);
}

.btn-light {
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 16px 28px rgba(17, 25, 40, 0.18);
}

.btn-ghost,
.btn-outline-light {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.cta-section .btn-light {
  color: var(--navy);
  background: #fff7ee;
  border: 1px solid rgba(34, 49, 76, 0.16);
}

.cta-section .btn-ghost {
  color: #fff9f2;
  background: rgba(22, 34, 58, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.52);
}

.btn-outline:hover,
.btn-light:hover {
  background: var(--white);
  box-shadow: 0 18px 30px rgba(17, 25, 40, 0.16);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.28);
  box-shadow: 0 16px 28px rgba(17, 25, 40, 0.18);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.28);
  box-shadow: 0 16px 28px rgba(17, 25, 40, 0.18);
}

.cta-section .btn-light:hover {
  background: #ffffff;
}

.cta-section .btn-ghost:hover {
  background: rgba(22, 34, 58, 0.5);
}

.hero-tags,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.hero-tags span,
.tag-row span,
.mini-pill,
.floating-note {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 12px 22px rgba(28, 66, 139, 0.08);
  border: 1px solid rgba(28, 66, 139, 0.08);
}

.hero-panel,
.hero-art {
  min-height: 460px;
  position: relative;
}

.floating-card,
.hero-card {
  position: absolute;
  border-radius: 32px;
  border: 1px solid rgba(28, 66, 139, 0.08);
  background: var(--paper);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}

.floating-card::before,
.hero-card::before,
.service-card::before,
.metrics-strip div::before,
.policy-layout::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--navy), var(--light-blue), var(--red));
}

.card-primary,
.hero-card-main {
  top: 24px;
  right: 10px;
  width: min(100%, 470px);
  padding: 30px;
  transform: rotate(-3deg);
}

.card-primary h2,
.hero-card-main h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.03;
}

.card-secondary,
.hero-card-list {
  left: 8px;
  bottom: 28px;
  width: min(100%, 280px);
  padding: 22px 24px;
  transform: rotate(4deg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(234, 242, 251, 0.98));
}

.card-secondary ul,
.hero-card-list ul {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--text);
  line-height: 1.8;
}

.mini-pill,
.floating-note {
  position: absolute;
}

.pill-top,
.note-top { top: -8px; left: 42px; }
.pill-bottom,
.note-bottom { right: 12px; bottom: -2px; }

.metrics-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 0 20px;
  margin-top: 6px;
}

.metrics-strip div {
  position: relative;
  padding: 24px 22px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(28, 66, 139, 0.08);
  box-shadow: 0 14px 28px rgba(28, 66, 139, 0.06);
}

.metrics-strip strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
}

.story-section,
.process-section,
.services-section,
.quote-header,
.quote-section,
.policy-layout {
  padding-left: 20px;
  padding-right: 20px;
}

.story-section,
.process-section,
.services-section,
.policy-layout {
  margin-top: 72px;
}

.section-head { margin-bottom: 26px; }
.centered { text-align: center; }
.centered h2 { margin-left: auto; margin-right: auto; }

.section-head h2,
.policy-layout h1,
.quote-header h1 {
  max-width: 13ch;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1.02;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.78fr);
  gap: 36px;
}

.promise-card {
  padding: 30px;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(234, 242, 251, 0.98));
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(28, 66, 139, 0.08);
}

.process-section {
  padding-top: 64px;
  padding-bottom: 8px;
  border-radius: 42px;
  background:
    radial-gradient(circle at top left, rgba(166, 195, 233, 0.28), transparent 24%),
    linear-gradient(135deg, rgba(241, 247, 255, 0.96), rgba(232, 240, 249, 0.98));
  border: 1px solid rgba(28, 66, 139, 0.08);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.step-id,
.step-number {
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  box-shadow: 0 16px 26px rgba(28, 66, 139, 0.1);
  border: 2px solid rgba(28, 66, 139, 0.08);
}

.process-step h3,
.service-card h3 {
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.services-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 36px;
  align-items: start;
}

.services-head p { max-width: 34ch; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  position: relative;
  padding: 26px 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(28, 66, 139, 0.08);
  box-shadow: 0 16px 30px rgba(28, 66, 139, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 34px rgba(28, 66, 139, 0.1);
}

.feature-card {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(234, 242, 251, 0.98));
}

.cta-section {
  margin: 72px 20px 18px;
  padding: 38px;
  border-radius: 36px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 20%),
    linear-gradient(135deg, var(--navy) 0%, #2452a0 54%, var(--deep-red) 100%);
  box-shadow: var(--shadow-strong);
  border: 1px solid rgba(28, 66, 139, 0.12);
}

.cta-section h2,
.cta-section p,
.cta-section a {
  color: var(--white);
}

.cta-section .eyebrow {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 24px rgba(17, 25, 40, 0.14);
}

.cta-section h2 {
  margin-bottom: 12px;
  max-width: 11ch;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 0.98;
}

.consent-note {
  margin-top: 20px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.84);
}

.consent-note a { font-weight: 800; }

.quote-header {
  padding-top: 64px;
  text-align: center;
}

.quote-header,
.policy-layout {
  animation: fade-rise 0.65s ease both;
}

.quote-header h1 {
  margin-left: auto;
  margin-right: auto;
}

.quote-copy {
  max-width: 700px;
  margin: 14px auto 0;
  font-size: 1.04rem;
}

.quote-art {
  max-width: 520px;
  margin: 28px auto 0;
  padding: 20px 24px 12px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(234, 242, 251, 0.98));
  border: 1px solid rgba(28, 66, 139, 0.08);
  box-shadow: 0 18px 34px rgba(28, 66, 139, 0.08);
}

.quote-art-badge,
.quote-badge {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(225, 22, 49, 0.08);
  color: var(--deep-red);
  font-size: 0.82rem;
  font-weight: 700;
}

.quote-art svg {
  display: block;
  width: 100%;
  height: auto;
}

.quote-section {
  max-width: 920px;
  margin: 0 auto;
  padding-bottom: 12px;
}

.quote-intro,
.support-copy,
.fine-print {
  text-align: center;
}

.quote-intro {
  max-width: 720px;
  margin: 0 auto 18px;
  font-size: 1.02rem;
}

.embed-frame {
  overflow: hidden;
  margin-top: 24px;
  border-radius: 28px;
  border: 1px solid rgba(28, 66, 139, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(236, 244, 252, 0.96));
  box-shadow: var(--shadow-soft);
}

.embed-frame iframe {
  display: block;
  width: 100%;
  height: 1200px;
  border: 0;
}

.support-copy a,
.fine-print a,
.policy-layout a,
.site-footer a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

.support-copy a:hover,
.fine-print a:hover,
.policy-layout a:hover,
.site-footer a:hover {
  text-decoration: underline;
}

.fine-print {
  max-width: 760px;
  margin: 22px auto 0;
  font-size: 0.9rem;
}

.policy-layout {
  position: relative;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  padding: 26px 34px 24px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(28, 66, 139, 0.08);
  box-shadow: 0 20px 44px rgba(28, 66, 139, 0.08);
}

.policy-layout h2 {
  margin-top: 34px;
  margin-bottom: 12px;
  font-size: 1.7rem;
  color: var(--navy);
}

.policy-layout ul {
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.8;
}

.policy-layout > p:first-of-type + h1,
.policy-layout h1 {
  margin-bottom: 10px;
}

.policy-layout > p strong {
  color: var(--navy);
}

.policy-layout p + p {
  margin-top: 14px;
}

.policy-layout h2 + p,
.policy-layout h2 + ul {
  margin-top: 0;
}

.policy-layout a {
  text-underline-offset: 0.14em;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.9fr;
  gap: 20px;
  margin-top: 56px;
  padding: 28px 20px 10px;
  border-top: 1px solid rgba(28, 66, 139, 0.12);
  background: linear-gradient(180deg, rgba(248, 251, 255, 0.72), rgba(233, 242, 251, 0.72));
  border-radius: 28px;
}

.site-footer strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
}

.site-footer p {
  margin: 8px 0;
}

@keyframes fade-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .hero-section,
  .hero,
  .services-section,
  .story-grid,
  .site-footer,
  .metrics-strip,
  .process-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel,
  .hero-art { min-height: 400px; }
  .services-grid .feature-card { grid-column: auto; }

  .site-nav {
    flex-direction: column;
    align-items: stretch;
    border-radius: 24px;
  }

  .nav-links { justify-content: center; }

  .policy-layout {
    padding: 24px 24px 18px;
  }

  .site-nav .brand-mark.active,
  .site-nav .brand.active {
    font-size: 1.16rem;
  }
}

@media (max-width: 760px) {
  .page-shell,
  .site-frame {
    width: calc(100% - 12px);
    margin: 6px auto;
    padding: 10px;
    border-radius: 22px;
  }

  .hero-section,
  .hero,
  .story-section,
  .process-section,
  .services-section,
  .quote-header,
  .quote-section,
  .policy-layout,
  .site-footer {
    padding-left: 10px;
    padding-right: 10px;
  }

  .hero-section,
  .hero {
    padding-top: 40px;
    grid-template-columns: 1fr;
  }

  .hero-section h1,
  .hero h1 {
    max-width: none;
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .hero-panel,
  .hero-art { min-height: 340px; }

  .card-primary,
  .card-secondary,
  .hero-card-main,
  .hero-card-list {
    position: relative;
    transform: none;
    width: 100%;
    top: auto;
    right: auto;
    left: auto;
    bottom: auto;
    margin-bottom: 16px;
  }

  .mini-pill,
  .floating-note {
    position: static;
    display: inline-flex;
    margin: 0 8px 8px 0;
  }

  .cta-section {
    margin-left: 10px;
    margin-right: 10px;
    padding: 28px 22px;
    border-radius: 28px;
  }

  .embed-frame iframe { height: 1320px; }

  .policy-layout {
    padding: 18px 16px 14px;
    border-radius: 24px;
  }
}
