:root {
  --navy: #03436b;
  --blue: #1496ca;
  --blue-soft: #477088;
  --green: #58b227;
  --red: #d61f26;
  --orange: #f58214;
  --cream: #f3f0eb;
  --white: #ffffff;
  --text: #102536;
  --muted: #5f7282;
  --border: #dce5ea;
  --sky: #eef8fc;
  --navy-2: #062f49;
  --shadow: 0 18px 50px rgba(3, 67, 107, 0.1);
  --radius: 24px;
  --radius-sm: 14px;
  --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Aptos, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--navy); text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
a:hover { color: #075e8e; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }
.skip-link {
  position: fixed; z-index: 999; left: 12px; top: 12px; padding: 10px 15px;
  background: var(--navy); color: var(--white); border-radius: 9px;
  transform: translateY(-150%); transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 840px); margin-inline: auto; }
.section { padding: 92px 0; }
.section-sm { padding: 54px 0; }
.section-sky { background: var(--sky); }
.section-cream { background: var(--cream); }
.section-navy { background: var(--navy-2); color: var(--white); }
.section-head { max-width: 760px; margin-bottom: 42px; }
.section-head.center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px; margin: 0 0 15px;
  color: var(--navy); font-size: .76rem; font-weight: 800; letter-spacing: .12em;
  line-height: 1.4; text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 22px; height: 3px; border-radius: 3px; background: var(--orange); }
.section-navy .eyebrow { color: #9eddf6; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--text); line-height: 1.12; letter-spacing: -.025em; }
h1 { font-size: clamp(2.65rem, 6vw, 5rem); margin-bottom: 24px; }
h2 { font-size: clamp(2rem, 4vw, 3.35rem); margin-bottom: 20px; }
h3 { font-size: 1.25rem; margin-bottom: 11px; }
.section-navy h1, .section-navy h2, .section-navy h3 { color: var(--white); }
.lead { max-width: 720px; color: var(--muted); font-size: clamp(1.08rem, 2vw, 1.28rem); }
.section-navy .lead, .section-navy p { color: #c9dce6; }
.kicker { color: var(--navy); font-weight: 750; }
.muted { color: var(--muted); }
.fine-print { font-size: .86rem; color: var(--muted); }
.accent { color: var(--navy); }

.site-header {
  position: sticky; z-index: 100; top: 0; background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(220,229,234,.9); backdrop-filter: blur(12px);
}
.header-inner { min-height: 82px; display: flex; align-items: center; gap: 26px; }
.brand { flex: 0 0 auto; text-decoration: none; }
.brand img { width: clamp(230px, 20vw, 275px); height: auto; }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: 19px; margin-left: auto; }
.desktop-nav a { color: var(--text); font-size: .88rem; font-weight: 700; text-decoration: none; white-space: nowrap; }
.desktop-nav a:hover, .desktop-nav a[aria-current="page"] { color: var(--navy); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.mobile-menu { display: none; margin-left: auto; position: relative; }
.mobile-menu summary {
  cursor: pointer; list-style: none; min-width: 48px; min-height: 48px; display: grid;
  place-items: center; border: 1px solid var(--border); border-radius: 12px; font-weight: 800;
}
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-panel {
  position: absolute; right: 0; top: 58px; width: min(330px, calc(100vw - 32px)); padding: 16px;
  border: 1px solid var(--border); border-radius: 16px; background: var(--white); box-shadow: var(--shadow);
}
.mobile-panel nav { display: grid; }
.mobile-panel nav a { padding: 11px 8px; color: var(--text); font-weight: 700; text-decoration: none; }
.mobile-actions { display: grid; gap: 9px; margin-top: 12px; padding-top: 14px; border-top: 1px solid var(--border); }

.button-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.button {
  display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 12px 20px;
  border: 1px solid transparent; border-radius: 12px; background: var(--navy); color: var(--white);
  font-size: .94rem; font-weight: 800; line-height: 1.2; text-align: center; text-decoration: none;
  box-shadow: 0 9px 22px rgba(3,67,107,.14); transition: transform .15s ease, background .15s ease;
}
.button:hover { transform: translateY(-1px); background: #07577f; color: var(--white); }
.button-secondary { background: var(--white); color: var(--navy); border-color: var(--border); box-shadow: none; }
.button-secondary:hover { background: var(--sky); color: var(--navy); }
.button-light { background: var(--white); color: var(--navy); box-shadow: none; }
.button-light:hover { background: var(--cream); color: var(--navy); }
.button-ghost { background: transparent; border-color: rgba(255,255,255,.35); color: var(--white); box-shadow: none; }
.button-ghost:hover { background: rgba(255,255,255,.08); color: var(--white); }
.button-compact { min-height: 42px; padding: 10px 15px; }
.panel-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 20px; font-size: .95rem; font-weight: 750; }

.hero { overflow: hidden; padding: 88px 0 76px; background: linear-gradient(135deg, #fff 5%, #f6fbfd 62%, #f3f0eb 100%); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr); align-items: center; gap: 70px; }
.hero-copy h1 { max-width: 780px; }
.hero-copy .lead { margin-bottom: 30px; }
.hero-board {
  position: relative; padding: 28px; border: 1px solid var(--border); border-radius: 30px;
  background: rgba(255,255,255,.94); box-shadow: 0 30px 80px rgba(3,67,107,.14);
}
.hero-board::before { content: ""; position: absolute; inset: -9px auto auto 34px; width: 66px; height: 5px; border-radius: 4px; background: var(--green); }
.board-label { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.board-label strong { color: var(--navy); }
.status { display: inline-flex; align-items: center; gap: 7px; color: #377d15; font-size: .78rem; font-weight: 800; }
.status::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--green); }
.board-flow { display: grid; gap: 13px; margin: 22px 0; }
.flow-item { display: grid; grid-template-columns: 42px 1fr; align-items: center; gap: 13px; padding: 15px; border: 1px solid var(--border); border-radius: 14px; background: #fbfdfe; }
.flow-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 11px; background: var(--sky); color: var(--navy); font-weight: 900; }
.flow-item:nth-child(2) .flow-icon { background: #eff8e9; color: #377d15; }
.flow-item:nth-child(3) .flow-icon { background: #fff5e9; color: #a95100; }
.flow-item strong, .flow-item span { display: block; }
.flow-item span { color: var(--muted); font-size: .82rem; }
.board-note { margin: 0; color: var(--muted); font-size: .84rem; }

.proof-strip { border-block: 1px solid var(--border); background: var(--white); }
.proof-inner { display: grid; grid-template-columns: 1.2fr 2.8fr; align-items: center; gap: 32px; padding-block: 25px; }
.proof-inner > strong { color: var(--navy); font-size: 1.05rem; }
.proof-list { display: flex; flex-wrap: wrap; gap: 10px 22px; margin: 0; padding: 0; list-style: none; }
.proof-list li { color: var(--muted); font-size: .9rem; font-weight: 700; }
.proof-list li::before { content: "✓"; margin-right: 7px; color: #438f22; font-weight: 900; }

.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 70px; }
.pain-list, .check-list, .plain-list { margin: 24px 0 0; padding: 0; list-style: none; }
.pain-list { display: grid; gap: 13px; }
.pain-list li { display: flex; gap: 13px; color: var(--muted); }
.pain-list li::before { content: ""; flex: 0 0 9px; width: 9px; height: 9px; margin-top: .55em; border-radius: 50%; background: var(--orange); }
.solution-box { padding: 38px; border-radius: var(--radius); background: var(--navy); color: var(--white); box-shadow: var(--shadow); }
.solution-box h2, .solution-box h3 { color: var(--white); }
.solution-box p { color: #d2e4ed; }
.solution-box .eyebrow { color: #a8def2; }
.solution-box .check-list li::before { background: var(--green); color: var(--white); }
.check-list { display: grid; gap: 13px; }
.check-list li { display: grid; grid-template-columns: 24px 1fr; gap: 10px; }
.check-list li::before { content: "✓"; width: 22px; height: 22px; display: grid; place-items: center; border-radius: 50%; background: #eaf6e4; color: #377d15; font-size: .75rem; font-weight: 900; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card { padding: 28px; border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--white); }
.feature-card .number, .feature-card .icon-chip { display: inline-grid; place-items: center; min-width: 42px; height: 42px; margin-bottom: 24px; border-radius: 12px; background: var(--sky); color: var(--navy); font-size: .84rem; font-weight: 900; }
.feature-card:nth-child(3n+2) .icon-chip { background: #eff8e9; color: #377d15; }
.feature-card:nth-child(3n+3) .icon-chip { background: #fff3e5; color: #a95100; }
.feature-card p { margin-bottom: 0; color: var(--muted); font-size: .96rem; }
.feature-card a { display: inline-block; margin-top: 18px; font-weight: 800; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: steps; }
.step { position: relative; padding: 30px; border-top: 3px solid var(--blue); background: var(--white); box-shadow: 0 12px 32px rgba(3,67,107,.07); }
.step::before { counter-increment: steps; content: "0" counter(steps); display: block; margin-bottom: 28px; color: var(--blue); font-size: 1rem; font-weight: 900; letter-spacing: .08em; }
.step p { margin-bottom: 0; color: var(--muted); }
.step:nth-child(2) { border-top-color: var(--green); }
.step:nth-child(2)::before { color: #438f22; }
.step:nth-child(3) { border-top-color: var(--orange); }
.step:nth-child(3)::before { color: #ae5d10; }

.band { display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; gap: 50px; padding: 48px; border-radius: 28px; background: var(--navy-2); color: var(--white); }
.band h2 { color: var(--white); }
.band p { color: #c9dce6; }
.band-list { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.band-list li { padding: 14px 16px; border: 1px solid rgba(255,255,255,.16); border-radius: 12px; color: #e4eff4; background: rgba(255,255,255,.04); }
.band-list li::before { content: "•"; color: var(--green); margin-right: 9px; }

.tenant-card { display: grid; grid-template-columns: .72fr 1.28fr; overflow: hidden; border: 1px solid var(--border); border-radius: 28px; background: var(--white); box-shadow: var(--shadow); }
.tenant-mark { display: grid; place-items: center; min-height: 360px; padding: 45px; background: var(--sky); }
.tenant-mark img { width: min(260px, 80%); border-radius: 50%; }
.tenant-copy { padding: 55px; }
.pill-list { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0 0; padding: 0; list-style: none; }
.pill-list li { padding: 7px 12px; border: 1px solid var(--border); border-radius: 999px; color: var(--navy); background: #fbfdfe; font-size: .84rem; font-weight: 800; }

.company-panel { display: grid; grid-template-columns: 1fr .9fr; gap: 50px; align-items: start; }
.identity-card { padding: 30px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); }
.identity-list { margin: 0; }
.identity-list div { padding: 13px 0; border-bottom: 1px solid var(--border); }
.identity-list div:last-child { border: 0; }
.identity-list dt { color: var(--muted); font-size: .78rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.identity-list dd { margin: 3px 0 0; font-weight: 700; }

.final-cta { text-align: center; }
.final-cta .lead { margin-inline: auto; }
.final-cta .button-row { justify-content: center; margin-top: 30px; }

.page-hero { padding: 78px 0 70px; background: linear-gradient(135deg, #fff 10%, var(--sky) 100%); }
.page-hero .lead { margin-bottom: 0; }
.breadcrumbs { margin-bottom: 24px; color: var(--muted); font-size: .88rem; }
.breadcrumbs a { color: var(--muted); }
.page-hero-grid { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 60px; }
.page-summary { padding: 25px; border-left: 4px solid var(--blue); border-radius: 0 14px 14px 0; background: rgba(255,255,255,.75); color: var(--muted); }

.detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.detail-card { padding: 30px; border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--white); }
.detail-card h2, .contact-card h2 { font-size: 1.5rem; }
.detail-card p:last-child { margin-bottom: 0; }
.detail-card .tag { display: inline-block; margin-bottom: 18px; color: var(--blue-soft); font-size: .76rem; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.timeline { display: grid; gap: 0; }
.timeline-item { display: grid; grid-template-columns: 58px 1fr; gap: 20px; padding-bottom: 36px; }
.timeline-item:not(:last-child) .timeline-number::after { content: ""; position: absolute; top: 58px; bottom: -36px; left: 27px; width: 2px; background: var(--border); }
.timeline-number { position: relative; width: 56px; height: 56px; display: grid; place-items: center; border-radius: 50%; background: var(--navy); color: var(--white); font-size: .9rem; font-weight: 900; }
.timeline-copy { padding-top: 8px; }
.timeline-copy h2 { font-size: 1.65rem; }
.timeline-copy p { color: var(--muted); }
.callout { margin-top: 32px; padding: 24px; border: 1px solid #cce3ef; border-radius: 14px; background: var(--sky); }
.callout strong { color: var(--navy); }
.callout p:last-child { margin-bottom: 0; }
.callout-warm { border-color: #efddc8; background: #fff9f2; }

.prose { color: #294253; }
.prose h2 { margin-top: 54px; font-size: clamp(1.55rem, 3vw, 2.15rem); }
.prose h3 { margin-top: 30px; font-size: 1.18rem; }
.prose p, .prose li { max-width: 78ch; }
.prose ul, .prose ol { padding-left: 1.25rem; }
.prose li + li { margin-top: 8px; }
.prose .legal-intro { margin: 0 0 36px; padding: 24px; border-left: 4px solid var(--blue); background: var(--sky); }
.prose .updated { color: var(--muted); font-size: .9rem; }
.legal-nav { display: flex; flex-wrap: wrap; gap: 8px; margin: 28px 0 12px; }
.legal-nav a { padding: 6px 10px; border: 1px solid var(--border); border-radius: 999px; color: var(--muted); font-size: .8rem; text-decoration: none; }

.contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.contact-card { padding: 30px; border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--white); }
.contact-card p { color: var(--muted); }
.contact-card .button { margin-top: 10px; }
.contact-card .subject { display: block; margin-top: 14px; color: var(--muted); font-size: .82rem; }

.site-footer { padding: 62px 0 24px; background: #062f49; color: #c9dce6; }
.footer-grid { display: grid; grid-template-columns: 1.8fr repeat(4, 1fr); gap: 34px; }
.footer-brand img { width: 245px; border-radius: 4px; }
.footer-brand p { max-width: 330px; margin: 20px 0 0; font-size: .9rem; }
.footer-title { margin-bottom: 14px; color: var(--white); font-size: .84rem; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.footer-links { display: grid; gap: 9px; }
.footer-links a { color: #c9dce6; font-size: .9rem; text-decoration: none; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 50px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); font-size: .82rem; }
.footer-bottom p { margin: 0; }

@media (max-width: 1120px) {
  .desktop-nav { gap: 12px; }
  .desktop-nav a { font-size: .82rem; }
  .header-actions .button-secondary { display: none; }
  .footer-grid { grid-template-columns: 1.5fr repeat(2, 1fr); }
}

@media (max-width: 980px) {
  .desktop-nav, .header-actions { display: none; }
  .mobile-menu { display: block; }
  .header-inner { min-height: 74px; }
  .brand img { width: clamp(190px, 36vw, 225px); }
  .hero { padding-top: 66px; }
  .hero-grid, .split, .page-hero-grid, .company-panel { grid-template-columns: 1fr; gap: 44px; }
  .hero-board { max-width: 640px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-inner { grid-template-columns: 1fr; gap: 12px; }
  .band { grid-template-columns: 1fr; }
  .tenant-card { grid-template-columns: .8fr 1.2fr; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .container, .narrow { width: min(calc(100% - 32px), var(--container)); }
  .section { padding: 68px 0; }
  .section-sm { padding: 42px 0; }
  .hero { padding: 54px 0 56px; }
  h1 { font-size: clamp(2.35rem, 12vw, 3.45rem); }
  h2 { font-size: clamp(1.85rem, 8.8vw, 2.6rem); }
  .button-row { align-items: stretch; }
  .button-row .button { flex: 1 1 100%; }
  .hero-board { padding: 19px; border-radius: 22px; }
  .proof-list { display: grid; gap: 9px; }
  .feature-grid, .steps, .detail-grid, .contact-grid { grid-template-columns: 1fr; }
  .feature-card, .detail-card, .contact-card { padding: 24px; }
  .band { padding: 30px 24px; border-radius: 20px; }
  .tenant-card { grid-template-columns: 1fr; }
  .tenant-mark { min-height: 230px; }
  .tenant-copy { padding: 30px 24px; }
  .solution-box { padding: 28px 24px; }
  .page-hero { padding: 56px 0 52px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { display: grid; }
}

@media (max-width: 420px) {
  .container, .narrow { width: min(calc(100% - 26px), var(--container)); }
  .brand img { width: 184px; }
  .header-inner { min-height: 70px; }
  .mobile-panel { right: -3px; }
  .flow-item { grid-template-columns: 38px 1fr; padding: 12px; }
  .flow-icon { width: 38px; height: 38px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

@media print {
  .site-header, .site-footer, .button-row, .mobile-menu { display: none !important; }
  .section, .page-hero { padding: 24px 0; }
  body { color: #000; }
}
