@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Fraunces:opsz,wght,SOFT@9..144,600..800,50&display=swap");

:root {
  --bg: #eff5f7;
  --bg-deep: #dfeef1;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #ffffff;
  --surface-soft: #f6fbfc;
  --ink: #163042;
  --ink-soft: #5f7382;
  --brand: #0e859d;
  --brand-deep: #0d3f56;
  --accent: #ff7b47;
  --accent-soft: #ffd1b9;
  --line: rgba(22, 48, 66, 0.1);
  --shadow: 0 18px 44px rgba(13, 44, 66, 0.08);
  --shadow-soft: 0 10px 24px rgba(13, 44, 66, 0.06);
  --radius: 24px;
  --radius-sm: 16px;
  --content: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  line-height: 1.6;
  background:
    radial-gradient(circle at top left, rgba(255, 123, 71, 0.18), transparent 22%),
    radial-gradient(circle at 85% 0%, rgba(14, 133, 157, 0.12), transparent 18%),
    linear-gradient(180deg, #f7fbfc 0%, #eef5f7 48%, #e8f0f2 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.24) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.24) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.25), transparent 90%);
}

a {
  color: var(--brand-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.14em;
}

img {
  display: block;
  max-width: 100%;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 999;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  color: #fff;
  background: var(--ink);
}

.site-shell {
  width: min(calc(100% - 2rem), var(--content));
  margin: 0 auto;
}

.site-header {
  padding: 1.1rem 0 0.7rem;
}

.topbar {
  display: grid;
  grid-template-columns: minmax(220px, 300px) 1fr auto;
  align-items: center;
  gap: 1.1rem;
  padding: 0.75rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(22, 48, 66, 0.08);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--ink);
  text-decoration: none;
  min-width: 0;
}

.brand-logo-shell {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  padding: 0.35rem;
  border-radius: 16px;
  background: #0e1822;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  flex: 0 0 auto;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
}

.brand-copy {
  display: grid;
  gap: 0.16rem;
}

.brand-mark {
  display: block;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--brand);
  margin-bottom: 0.18rem;
}

.brand-title {
  display: block;
  font-family: "Fraunces", serif;
  font-size: 1.32rem;
  line-height: 1;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 1.1rem;
  flex-wrap: wrap;
}

.nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 800;
  padding: 0.62rem 0.82rem;
  border-radius: 999px;
}

.nav a:hover {
  background: rgba(14, 133, 157, 0.08);
  color: var(--brand-deep);
}

.topbar-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #122f43, #0d5169);
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(13, 63, 84, 0.18);
  flex: 0 0 auto;
}

.cta-logo-shell {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  flex: 0 0 auto;
}

.cta-logo {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.cta-text {
  white-space: nowrap;
}

.hero {
  padding: 1rem 0 1.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(280px, 0.84fr);
  gap: 1rem;
  align-items: start;
}

.hero-copy,
.hero-card,
.content-card,
.cta-band,
.faq-card,
.footer-card,
.rail-card {
  border: 1px solid rgba(18, 37, 54, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-copy {
  position: relative;
  overflow: hidden;
  padding: 1.8rem;
  color: #f8f3ea;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.08), transparent 22%),
    linear-gradient(145deg, #123347 0%, #0c5d73 62%, #0e8a9d 100%);
}

.hero-copy::before {
  content: "";
  position: absolute;
  right: -60px;
  top: -40px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  opacity: 0.8;
}

.hero-copy::after {
  content: "";
  position: absolute;
  left: -12%;
  bottom: -14%;
  width: 56%;
  height: 34%;
  background: radial-gradient(circle, rgba(239, 134, 87, 0.26), transparent 70%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.46rem 0.88rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #d9edf3;
  font-size: 0.73rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0 0 0.8rem;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

h1,
h2,
h3 {
  font-family: "Fraunces", serif;
}

h1 {
  max-width: 10ch;
  margin-top: 0.85rem;
  font-size: clamp(2.15rem, 4.4vw, 4rem);
  line-height: 0.92;
}

h2 {
  font-size: clamp(1.7rem, 2.6vw, 2.7rem);
}

h3 {
  font-size: 1.28rem;
}

h4 {
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
}

h5 {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lede {
  max-width: 56ch;
  margin-top: 0.95rem;
  color: rgba(248, 243, 234, 0.88);
  font-size: 0.99rem;
}

.hero-actions,
.button-row,
.section-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-actions,
.button-row {
  margin-top: 1.2rem;
}

.button,
.button-outline,
.button-ghost,
.section-jump a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.82rem 1.15rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.92rem;
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.button:hover,
.button-outline:hover,
.button-ghost:hover,
.section-jump a:hover,
.topbar-call:hover {
  transform: translateY(-1px);
}

.button {
  color: #fff;
  background: linear-gradient(135deg, #ff7b47, #e45f2e);
  box-shadow: 0 12px 24px rgba(228, 95, 46, 0.2);
}

.button-outline {
  color: #f7f2ea;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.button-ghost {
  color: var(--ink);
  background: rgba(18, 37, 54, 0.06);
}

.fact-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 1.35rem;
}

.fact-strip div {
  padding: 0.8rem 0.85rem 0.85rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.fact-strip strong,
.mini-grid strong {
  display: block;
  margin-bottom: 0.28rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.hero-card {
  display: grid;
  gap: 0.8rem;
  align-content: start;
  padding: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(247, 251, 252, 0.98)),
    #ffffff;
}

.hero-card-top {
  padding: 0.95rem;
  border-radius: 16px;
  background: linear-gradient(180deg, #f7fbfc, #edf6f8);
  border: 1px solid rgba(22, 48, 66, 0.08);
}

.hero-partner-shell {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 118px;
  height: 48px;
  margin-bottom: 0.8rem;
}

.hero-partner-logo {
  max-width: 100%;
  max-height: 100%;
  height: auto;
}

.hero-card .quote {
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--brand-deep);
  font-family: "Fraunces", serif;
  font-size: 1.2rem;
  line-height: 1.08;
  box-shadow: none;
}

.hero-card-copy {
  margin: 0.55rem 0 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.48;
}

.mini-grid {
  display: grid;
  gap: 0.7rem;
}

.mini-grid article {
  padding: 0.9rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(18, 37, 54, 0.08);
  min-height: 0;
}

.mini-grid article strong {
  font-size: 0.77rem;
}

.main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 315px);
  gap: 1rem;
  padding-bottom: 1.5rem;
}

.article-flow,
.faq-wrap,
.checklist {
  display: grid;
  gap: 1.35rem;
}

.content-card,
.faq-card {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
}

.content-card p,
.content-card li,
.faq-card p,
.faq-card li,
.rail-card p,
.rail-card li {
  color: var(--ink-soft);
}

.content-card ul,
.rail-card ul,
.footer-card ul {
  margin: 0;
  padding-left: 1.1rem;
}

.kicker {
  margin-bottom: 0.65rem;
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.inline-note {
  margin: 1rem 0;
  padding: 0.9rem 1rem;
  border-left: 4px solid var(--accent);
  border-radius: 0 18px 18px 0;
  background: linear-gradient(90deg, rgba(255, 213, 184, 0.7), rgba(255, 249, 241, 0.75));
  color: var(--ink);
}

.cta-band {
  padding: 1.4rem;
  color: #fff7ef;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), transparent 26%),
    linear-gradient(135deg, #ef8657 0%, #c55e39 38%, #0f5f74 100%);
}

.cta-band h2 {
  max-width: 14ch;
}

.cta-band a {
  color: #fff;
}

.article-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.article-columns article,
.checklist article {
  padding: 1rem;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 240, 230, 0.9));
  border: 1px solid rgba(18, 37, 54, 0.08);
}

.sticky-rail {
  position: sticky;
  top: 1rem;
  display: grid;
  gap: 0.85rem;
  align-self: start;
}

.rail-card {
  padding: 1.05rem;
  background: rgba(255, 251, 245, 0.92);
}

.sticky-rail .rail-card:first-child {
  color: #f7f2ea;
  background: linear-gradient(165deg, #13364a, #0b5b6d);
}

.sticky-rail .rail-card:first-child p,
.sticky-rail .rail-card:first-child li,
.sticky-rail .rail-card:first-child a,
.sticky-rail .rail-card:first-child h3 {
  color: #f7f2ea;
}

.sticky-rail .rail-card:first-child .button-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.rail-card .button,
.rail-card .button-outline,
.rail-card .button-ghost {
  width: 100%;
}

.faq-card details {
  padding: 1rem 0;
  border-top: 1px solid rgba(18, 37, 54, 0.1);
}

.faq-card details:first-of-type {
  padding-top: 0;
  border-top: 0;
}

summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--ink);
}

.section-jump {
  margin-top: 1rem;
}

.section-jump a {
  min-height: auto;
  padding: 0.7rem 0.95rem;
  color: #e7f7fa;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.footer {
  padding: 0 0 2rem;
}

.footer-card {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 1.2rem;
  padding: 1.4rem;
  color: #e9f4f7;
  background:
    radial-gradient(circle at top right, rgba(239, 134, 87, 0.16), transparent 24%),
    linear-gradient(165deg, #102b3c 0%, #12384d 52%, #0f5564 100%);
}

.footer-card p,
.footer-card li,
.footer-card a,
.footer-card h3,
.footer-card h4,
.footer-card .kicker,
.disclosure {
  color: #e9f4f7;
}

.footer-card h4 {
  color: #ffd4bc;
}

.disclosure {
  font-size: 0.92rem;
}

@media (max-width: 1080px) {
  .topbar {
    grid-template-columns: 1fr;
    justify-items: start;
    border-radius: 28px;
  }

  .nav {
    justify-content: flex-start;
  }

  .topbar-call {
    width: 100%;
    justify-content: center;
  }

  .hero-grid,
  .main-grid,
  .footer-card {
    grid-template-columns: 1fr;
  }

  .sticky-rail {
    position: static;
  }
}

@media (max-width: 760px) {
  .hero-copy,
  .hero-card,
  .content-card,
  .faq-card,
  .cta-band,
  .footer-card,
  .rail-card {
    padding: 1.15rem;
  }

  h1 {
    max-width: none;
    font-size: clamp(2.2rem, 13vw, 3.6rem);
  }

  h2 {
    font-size: clamp(1.7rem, 9vw, 2.4rem);
  }

  .fact-strip,
  .article-columns {
    grid-template-columns: 1fr;
  }

  .button,
  .button-outline,
  .button-ghost {
    width: 100%;
  }

  .brand-logo {
    width: 100%;
    height: 100%;
  }

  .brand-logo-shell {
    width: 52px;
    height: 52px;
  }
}
