:root {
  --ink: #0b1726;
  --muted: #5a6978;
  --paper: #f4f7f8;
  --white: #fff;
  --navy: #071a2d;
  --blue: #0b4a76;
  --cyan: #4bd3d8;
  --line: #d9e2e7;
  --shadow: 0 24px 70px rgba(5, 28, 46, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: "Segoe UI", Arial, sans-serif; line-height: 1.65; }
a { color: inherit; }

.site-header { min-height: 82px; padding: 16px clamp(24px, 5vw, 80px); display: flex; align-items: center; justify-content: space-between; gap: 24px; background: var(--navy); color: var(--white); }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark { width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; color: var(--cyan); font-weight: 800; letter-spacing: -.04em; }
.brand strong, .brand small { display: block; }
.brand strong { font-size: 15px; letter-spacing: .02em; }
.brand small { color: #a9bdcb; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
nav { display: flex; align-items: center; gap: 28px; }
nav a { color: #bed0dc; font-size: 14px; text-decoration: none; }
nav a:hover, nav a[aria-current="page"] { color: var(--white); }

.hero { min-height: 680px; padding: 90px clamp(24px, 7vw, 110px); display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr); align-items: center; gap: clamp(48px, 7vw, 110px); color: var(--white); background: radial-gradient(circle at 80% 25%, rgba(75,211,216,.20), transparent 26%), linear-gradient(135deg, #071a2d 0%, #0b3656 70%, #0a4d67 100%); overflow: hidden; }
.eyebrow { margin: 0 0 16px; color: #27838b; font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.hero .eyebrow, .contact-band .eyebrow { color: #86e9ed; }
.status-dot { width: 8px; height: 8px; margin-right: 8px; display: inline-block; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 6px rgba(75,211,216,.12); }
h1, h2, h3 { margin-top: 0; font-weight: 700; line-height: 1.08; letter-spacing: -.035em; }
.hero h1 { margin-bottom: 26px; font-size: clamp(52px, 6.5vw, 96px); }
.hero h1 span { color: var(--cyan); }
.intro { max-width: 700px; margin: 0; color: #d4e2e9; font-size: clamp(18px, 2vw, 23px); line-height: 1.55; }
.actions { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 14px; }
.button { min-height: 48px; padding: 12px 20px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid transparent; border-radius: 7px; font-size: 14px; font-weight: 700; text-decoration: none; transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--cyan); color: #062032; }
.button.secondary { border-color: rgba(255,255,255,.28); color: var(--white); }
.button.light { background: var(--white); color: var(--navy); }

.weather-panel { padding: 24px; border: 1px solid rgba(255,255,255,.18); border-radius: 22px; background: rgba(4,21,36,.54); box-shadow: var(--shadow); backdrop-filter: blur(8px); }
.panel-top { display: flex; justify-content: space-between; color: #d7e5ec; font-size: 13px; text-transform: uppercase; letter-spacing: .1em; }
.live-pill { padding: 3px 9px; border-radius: 99px; background: rgba(75,211,216,.14); color: var(--cyan); font-size: 10px; font-weight: 800; }
.orb { height: 260px; margin: 22px 0; position: relative; display: grid; place-items: center; overflow: hidden; border-radius: 16px; background: linear-gradient(160deg, rgba(76,195,222,.30), rgba(13,64,92,.16)); }
.orb::before { content: ""; width: 142px; height: 142px; border-radius: 50%; background: radial-gradient(circle at 35% 32%, #fffde0 0 5%, #ffd970 22%, #ffae3b 60%, #d97925 100%); box-shadow: 0 0 60px rgba(255,185,64,.42); }
.orb::after { content: ""; width: 230px; height: 72px; position: absolute; left: 38%; top: 53%; border-radius: 70px; background: linear-gradient(180deg, #eef8fb, #a9cbd7); box-shadow: -85px 24px 0 -10px #c8e2e9; }
.panel-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.panel-grid div { min-height: 82px; padding: 13px; border-radius: 10px; background: rgba(255,255,255,.07); }
.panel-grid small, .panel-grid strong { display: block; }
.panel-grid small { color: #8eacbd; font-size: 11px; text-transform: uppercase; }
.panel-grid strong { margin-top: 6px; font-size: 14px; }

.section { padding: 100px clamp(24px, 7vw, 110px); }
.section-heading { max-width: 760px; margin-bottom: 48px; }
.section h2, .contact-band h2, .policy-hero h1 { margin-bottom: 18px; font-size: clamp(34px, 4.5vw, 58px); }
.section-heading > p:last-child, .prose, .policy-hero > p:last-child { color: var(--muted); font-size: 18px; }
.card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.card { min-height: 260px; padding: 28px; border: 1px solid var(--line); border-radius: 14px; background: var(--white); }
.card-number { color: #4b8a93; font-size: 12px; font-weight: 800; letter-spacing: .12em; }
.card h3 { margin: 68px 0 12px; font-size: 23px; }
.card p { margin-bottom: 0; color: var(--muted); }
.split { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(40px, 8vw, 130px); border-top: 1px solid var(--line); background: var(--white); }
.prose p:first-child { margin-top: 0; }
.text-link { color: var(--blue); font-weight: 700; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.contact-band { margin: 0 clamp(24px, 7vw, 110px) 100px; padding: 46px; display: flex; justify-content: space-between; align-items: center; gap: 30px; border-radius: 18px; color: var(--white); background: var(--blue); }
.contact-band h2 { margin-bottom: 0; font-size: clamp(30px, 4vw, 48px); }

.policy-main { min-height: 70vh; }
.policy-hero { padding: 90px clamp(24px, 12vw, 190px); color: var(--white); background: linear-gradient(135deg, var(--navy), var(--blue)); }
.policy-hero .eyebrow { color: var(--cyan); }
.policy-hero > p:last-child { max-width: 720px; margin: 0; color: #d4e2e9; }
.policy-layout { max-width: 1180px; margin: 0 auto; padding: 80px 24px 110px; display: grid; grid-template-columns: 240px minmax(0, 1fr); gap: 70px; }
.policy-layout aside { align-self: start; padding: 22px; position: sticky; top: 24px; border-left: 3px solid var(--cyan); background: var(--white); box-shadow: 0 10px 30px rgba(5,28,46,.07); }
.policy-layout aside strong { display: block; margin-bottom: 14px; }
.policy-layout aside p { margin: 8px 0; color: var(--muted); font-size: 13px; }
.policy-content section { padding-bottom: 34px; margin-bottom: 34px; border-bottom: 1px solid var(--line); }
.policy-content section:last-child { border-bottom: 0; }
.policy-content h2 { margin-bottom: 14px; font-size: 27px; }
.policy-content p { color: #3f5060; }
.policy-content a { color: var(--blue); }

footer { padding: 28px clamp(24px, 5vw, 80px); display: flex; justify-content: space-between; gap: 20px; color: #9db2c0; background: var(--navy); font-size: 12px; }
footer p { margin: 0; }
footer div { display: flex; gap: 20px; }
footer a { color: #c8d7df; }

@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; }
  .weather-panel { max-width: 650px; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .site-header, footer, .contact-band { align-items: flex-start; flex-direction: column; }
  nav { gap: 16px; }
  .hero { padding-top: 64px; }
  .hero h1 { font-size: 48px; }
  .card-grid, .panel-grid, .policy-layout { grid-template-columns: 1fr; }
  .card { min-height: 0; }
  .card h3 { margin-top: 32px; }
  .policy-layout { gap: 34px; }
  .policy-layout aside { position: static; }
  .contact-band { padding: 32px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button { transition: none; }
}
