:root {
  --ink: #171816;
  --ink-soft: #44463f;
  --muted: #77796f;
  --paper: #f7f6f1;
  --paper-deep: #efeee7;
  --panel: #fcfbf7;
  --white: #ffffff;
  --line: #d7d6cf;
  --line-dark: #34352f;
  --orange: #ff5101;
  --orange-dark: #d94300;
  --orange-pale: #fff0e8;
  --blue: #2d67df;
  --green: #1c8c61;
  --amber: #d88a12;
  --red: #d9432f;
  --shadow: 0 28px 70px rgba(36, 35, 30, 0.12);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
button, a { font: inherit; }
button { color: inherit; }
a { color: inherit; }
.shell { width: min(1240px, calc(100% - 64px)); margin-inline: auto; }

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 246, 241, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.navbar__inner { height: 68px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; }
.brand { display: inline-flex; align-items: center; gap: 9px; width: fit-content; text-decoration: none; }
.brand__mark { width: 32px; height: 32px; }
.brand__name { font-family: Georgia, "Times New Roman", serif; font-size: 24px; letter-spacing: -0.03em; }
.nav-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Fragment Mono", monospace;
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.status-dot, .live-indicator span, .model-freshness i {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(28, 140, 97, 0.1);
}
.navbar .button { justify-self: end; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 3px;
  text-decoration: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}
.button:hover { transform: translateY(-1px); }
.button--primary { background: var(--orange); color: var(--white); }
.button--primary:hover { background: var(--orange-dark); }
.button--large { min-height: 48px; padding-inline: 22px; }
.button--dark { background: var(--ink); color: var(--white); }
.button--light { background: var(--white); color: var(--ink); }
.text-link { font-size: 13px; font-weight: 600; text-underline-offset: 4px; }

.hero { border-bottom: 1px solid var(--line); }
.section-grid {
  background-image:
    linear-gradient(rgba(23, 24, 22, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 24, 22, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
}
.hero__inner { min-height: 720px; display: grid; grid-template-columns: 0.84fr 1.16fr; align-items: center; gap: 72px; padding-block: 84px; }
.hero__copy { position: relative; z-index: 2; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--muted);
  font-family: "Fragment Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 2px; background: var(--orange); }
.eyebrow span { color: var(--orange); }
h1, h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-weight: 400; letter-spacing: -0.045em; }
h1 { max-width: 610px; font-size: clamp(54px, 5.2vw, 78px); line-height: 0.98; }
h2 { font-size: clamp(42px, 4.1vw, 58px); line-height: 1.02; }
.hero__lede { max-width: 590px; margin: 30px 0 0; color: var(--ink-soft); font-size: 16px; line-height: 1.7; }
.hero__lede strong { color: var(--ink); font-weight: 600; }
.hero__actions { display: flex; align-items: center; gap: 26px; margin-top: 34px; }
.hero__meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 56px; padding-top: 22px; border-top: 1px solid var(--line); }
.hero__meta div { padding-right: 12px; }
.hero__meta span, .terminal-kicker, .field > span, .payout-control span, .quote-result span, .ui-header span, .capacity-metrics span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-family: "Fragment Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero__meta strong { font-size: 11px; font-weight: 600; }

.risk-terminal { overflow: hidden; border: 1px solid #c8c7c0; border-radius: 8px; background: var(--panel); box-shadow: var(--shadow); }
.terminal-bar { min-height: 62px; display: flex; justify-content: space-between; align-items: center; padding: 12px 16px; border-bottom: 1px solid var(--line); }
.terminal-bar strong { display: block; font-size: 13px; font-weight: 600; }
.terminal-kicker { margin-bottom: 4px; }
.live-indicator { display: flex; align-items: center; gap: 8px; font-family: "Fragment Mono", monospace; font-size: 9px; text-transform: uppercase; color: var(--green); }
.live-indicator span { animation: livePulse 2.4s ease-in-out infinite; }
.peril-tabs { display: flex; gap: 4px; padding: 8px; background: #f0efe9; border-bottom: 1px solid var(--line); }
.peril-tab { padding: 7px 14px; border: 1px solid transparent; border-radius: 3px; color: var(--muted); background: transparent; cursor: pointer; font-family: "Fragment Mono", monospace; font-size: 9px; text-transform: uppercase; }
.peril-tab:hover { color: var(--ink); }
.peril-tab.is-active { color: var(--ink); background: var(--white); border-color: var(--line); box-shadow: 0 2px 7px rgba(23, 24, 22, 0.05); }
.map { position: relative; min-height: 440px; overflow: hidden; isolation: isolate; background: #e9e8df; }
.map-grid {
  position: absolute;
  inset: 0;
  opacity: 0.75;
  background-image:
    linear-gradient(32deg, transparent 48.6%, rgba(96, 98, 91, 0.26) 49%, rgba(96, 98, 91, 0.26) 49.5%, transparent 50%),
    linear-gradient(121deg, transparent 48.8%, rgba(96, 98, 91, 0.2) 49%, rgba(96, 98, 91, 0.2) 49.35%, transparent 49.6%),
    linear-gradient(rgba(96, 98, 91, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(96, 98, 91, 0.13) 1px, transparent 1px);
  background-size: 154px 116px, 180px 146px, 28px 28px, 28px 28px;
  z-index: -5;
}
.waterway { position: absolute; z-index: -4; height: 18px; border-radius: 50%; border-top: 6px solid rgba(49, 103, 168, 0.4); transform-origin: center; }
.waterway--one { width: 72%; top: 55%; left: -7%; transform: rotate(-8deg); }
.waterway--two { width: 45%; top: 25%; right: -8%; transform: rotate(32deg); }
.road { position: absolute; z-index: -3; height: 7px; border-block: 1px solid rgba(255,255,255,.7); background: rgba(150, 150, 143, 0.25); transform-origin: center; }
.road--one { width: 120%; top: 44%; left: -10%; transform: rotate(10deg); }
.road--two { width: 100%; top: 48%; left: 4%; transform: rotate(72deg); }
.road--three { width: 75%; top: 21%; left: 12%; transform: rotate(-24deg); }
.risk-field { position: absolute; z-index: -2; border-radius: 46% 54% 60% 40% / 56% 44% 56% 44%; filter: blur(2px); opacity: 0.78; transition: background 500ms ease, transform 700ms ease, opacity 500ms ease; animation: fieldBreathe 8s ease-in-out infinite alternate; }
.risk-field--a { width: 56%; height: 52%; left: 4%; top: 34%; background: radial-gradient(circle at 58% 54%, rgba(255,81,1,.92) 0 8%, rgba(255,133,53,.72) 12% 27%, rgba(255,206,75,.44) 39%, transparent 68%); }
.risk-field--b { width: 46%; height: 44%; right: -2%; top: 2%; background: radial-gradient(circle at 44% 52%, rgba(255,81,1,.78) 0 7%, rgba(255,153,58,.62) 18%, rgba(255,212,90,.36) 40%, transparent 70%); animation-delay: -4s; }
.risk-field--c { width: 34%; height: 34%; left: 34%; bottom: -7%; background: radial-gradient(circle, rgba(255,120,26,.66), rgba(255,201,71,.36) 34%, transparent 68%); animation-delay: -2s; }
.map[data-layer="wildfire"] .risk-field--a { background: radial-gradient(circle at 58% 54%, rgba(171,36,16,.92) 0 8%, rgba(240,79,31,.72) 18%, rgba(255,175,66,.38) 42%, transparent 68%); transform: translate(38%, -42%) scale(.85); }
.map[data-layer="wildfire"] .risk-field--b { background: radial-gradient(circle, rgba(131,30,15,.8), rgba(236,73,29,.56) 28%, transparent 67%); transform: translate(-34%, 50%) scale(1.2); }
.map[data-layer="wildfire"] .risk-field--c { background: radial-gradient(circle, rgba(255,104,28,.65), rgba(255,197,80,.3) 40%, transparent 70%); transform: translate(-70%, -80%); }
.map[data-layer="wind"] .risk-field { border-radius: 58% 42% 66% 34%; filter: blur(4px); }
.map[data-layer="wind"] .risk-field--a { width: 86%; height: 36%; left: -10%; top: 28%; background: radial-gradient(ellipse, rgba(53,94,170,.75), rgba(86,146,199,.55) 32%, rgba(158,201,219,.25) 54%, transparent 72%); transform: rotate(-14deg); }
.map[data-layer="wind"] .risk-field--b { width: 78%; height: 30%; right: -18%; top: 52%; background: radial-gradient(ellipse, rgba(47,82,146,.68), rgba(91,149,199,.45) 38%, transparent 72%); transform: rotate(-14deg); }
.map[data-layer="wind"] .risk-field--c { opacity: 0; }
.map-label { position: absolute; z-index: 1; font-family: "Fragment Mono", monospace; color: rgba(49, 51, 47, 0.48); font-size: 8px; letter-spacing: 0.15em; }
.map-label--city { top: 46%; left: 38%; font-size: 11px; font-weight: 600; color: rgba(49, 51, 47, 0.64); }
.map-label--bay { bottom: 31%; left: 19%; transform: rotate(-8deg); color: rgba(38, 86, 142, 0.7); }
.location-pin { position: absolute; z-index: 5; display: flex; align-items: center; gap: 7px; border: 0; background: transparent; cursor: pointer; text-align: left; }
.location-pin--one { left: 34%; top: 57%; }
.location-pin--two { right: 22%; top: 21%; }
.location-pin--three { left: 16%; top: 26%; }
.pin-dot { width: 11px; height: 11px; border-radius: 50%; border: 2px solid var(--white); background: var(--ink); box-shadow: 0 0 0 1px rgba(23,24,22,.45), 0 2px 5px rgba(23,24,22,.2); }
.location-pin.is-elevated .pin-dot { background: var(--orange); box-shadow: 0 0 0 5px rgba(255,81,1,.16), 0 0 0 1px var(--orange); animation: pinPulse 2.4s ease-out infinite; }
.pin-card { display: none; min-width: 110px; padding: 7px 9px; border: 1px solid rgba(23,24,22,.18); border-radius: 3px; background: rgba(255,255,255,.9); box-shadow: 0 5px 14px rgba(23,24,22,.08); }
.location-pin:hover .pin-card, .location-pin:focus-visible .pin-card, .location-pin.is-elevated .pin-card { display: block; }
.pin-card b, .pin-card small { display: block; }
.pin-card b { font-size: 10px; }
.pin-card small { margin-top: 2px; color: var(--muted); font-size: 8px; }
.map-legend { position: absolute; left: 14px; bottom: 14px; z-index: 5; width: 118px; padding: 9px; border: 1px solid rgba(23,24,22,.15); border-radius: 3px; background: rgba(255,255,255,.88); backdrop-filter: blur(8px); }
.map-legend > span { font-family: "Fragment Mono", monospace; color: var(--muted); font-size: 7px; text-transform: uppercase; }
.legend-scale { height: 5px; margin-top: 7px; background: linear-gradient(90deg, #ffe388, #ff963b, #ff5101, #b82412); }
.map[data-layer="wildfire"] .legend-scale { background: linear-gradient(90deg, #ffd786, #ee7830, #b92f18, #63170f); }
.map[data-layer="wind"] .legend-scale { background: linear-gradient(90deg, #dbe9ed, #8bbbd3, #4b83bf, #2d4f8f); }
.legend-labels { display: flex; justify-content: space-between; margin-top: 3px; color: var(--muted); font-size: 7px; }
.quote-float { position: absolute; z-index: 8; right: 14px; bottom: 14px; width: 214px; padding: 14px; border: 1px solid rgba(23,24,22,.2); border-radius: 4px; background: rgba(255,255,255,.94); box-shadow: 0 18px 34px rgba(23,24,22,.15); backdrop-filter: blur(12px); }
.quote-float__top { display: flex; align-items: center; justify-content: space-between; font-family: "Fragment Mono", monospace; color: var(--muted); font-size: 7px; text-transform: uppercase; }
.quote-float__top b { padding: 3px 5px; border-radius: 2px; color: var(--green); background: rgba(28,140,97,.1); font-weight: 500; }
.quote-float__price { margin-top: 10px; font-family: Georgia, serif; font-size: 32px; letter-spacing: -0.04em; }
.quote-float__unit { margin-top: -2px; color: var(--muted); font-size: 8px; }
.quote-float dl { margin: 12px 0 0; padding-top: 8px; border-top: 1px solid var(--line); }
.quote-float dl div { display: flex; justify-content: space-between; gap: 10px; padding: 4px 0; font-size: 8px; }
.quote-float dt { color: var(--muted); }
.quote-float dd { margin: 0; font-weight: 600; text-align: right; }
.quote-refresh { display: flex; align-items: center; gap: 6px; margin-top: 10px; padding-top: 9px; border-top: 1px solid var(--line); color: var(--muted); font-family: "Fragment Mono", monospace; font-size: 7px; text-transform: uppercase; }
.quote-refresh span { width: 5px; height: 5px; border-radius: 50%; background: var(--orange); animation: livePulse 1.8s ease infinite; }
.terminal-footer { display: grid; grid-template-columns: repeat(3, 1fr); padding: 10px 14px; border-top: 1px solid var(--line); color: var(--muted); font-family: "Fragment Mono", monospace; font-size: 7px; text-transform: uppercase; }
.terminal-footer span:nth-child(2) { text-align: center; }
.terminal-footer span:last-child { text-align: right; }
.terminal-footer b { color: var(--ink); font-weight: 500; }

.data-strip { border-bottom: 1px solid var(--line); background: var(--ink); color: var(--white); }
.data-strip__inner { min-height: 70px; display: flex; align-items: center; gap: 36px; }
.data-strip__inner > span { color: #909187; font-family: "Fragment Mono", monospace; font-size: 9px; text-transform: uppercase; white-space: nowrap; }
.data-strip ul { display: flex; justify-content: space-between; flex: 1; gap: 18px; margin: 0; padding: 0; list-style: none; }
.data-strip li { display: flex; align-items: center; gap: 9px; font-size: 11px; }
.data-strip li i { width: 5px; height: 5px; border-radius: 50%; background: var(--orange); }

.section { padding-block: 130px; border-bottom: 1px solid var(--line); }
.section-intro { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(320px, .7fr); align-items: end; gap: 80px; margin-bottom: 64px; }
.section-intro .eyebrow { grid-column: 1 / -1; margin-bottom: -42px; }
.section-intro > p, .split-copy > p, .closing-cta p { margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.75; }
.model-list { border-top: 1px solid var(--line); }
.model-row { min-height: 94px; display: grid; grid-template-columns: 1fr 1.5fr 1fr .75fr; align-items: center; gap: 28px; border-bottom: 1px solid var(--line); }
.model-name { display: flex; align-items: center; gap: 14px; }
.model-name strong { font-family: Georgia, serif; font-size: 24px; font-weight: 400; }
.model-icon { position: relative; display: block; width: 32px; height: 32px; border: 1px solid var(--line); border-radius: 50%; background: var(--panel); }
.model-icon::before, .model-icon::after { content: ""; position: absolute; }
.model-icon--flood::before { width: 12px; height: 12px; left: 9px; top: 8px; border-radius: 50% 50% 55% 45%; background: #4386c9; transform: rotate(45deg); }
.model-icon--fire::before { width: 11px; height: 15px; left: 10px; top: 7px; border-radius: 60% 40% 60% 40%; background: var(--orange); transform: rotate(35deg); }
.model-icon--temp::before { width: 5px; height: 15px; left: 13px; top: 6px; border: 1px solid var(--red); border-radius: 5px; }
.model-icon--temp::after { width: 9px; height: 9px; left: 11px; top: 17px; border-radius: 50%; background: var(--red); }
.model-icon--rain::before { width: 3px; height: 11px; left: 10px; top: 10px; border-radius: 2px; background: #4386c9; box-shadow: 6px -3px #4386c9, 12px 1px #4386c9; transform: rotate(22deg); }
.model-icon--wind::before { width: 17px; height: 7px; left: 7px; top: 9px; border-top: 1px solid var(--blue); border-radius: 50%; box-shadow: 0 6px 0 -1px var(--panel), 0 7px 0 -1px var(--blue); }
.model-row > p { margin: 0; color: var(--ink-soft); font-size: 12px; }
.model-freshness { display: flex; align-items: center; justify-content: flex-end; gap: 8px; color: var(--muted); font-family: "Fragment Mono", monospace; font-size: 8px; text-transform: uppercase; }
.model-freshness i { width: 5px; height: 5px; box-shadow: none; }
.spark-bars { height: 36px; display: flex; align-items: end; gap: 4px; }
.spark-bars i { flex: 1; border-radius: 1px 1px 0 0; background: #d4d5ce; }
.spark-bars i:nth-child(1) { height: 22%; }.spark-bars i:nth-child(2) { height: 35%; }.spark-bars i:nth-child(3) { height: 30%; }.spark-bars i:nth-child(4) { height: 58%; }.spark-bars i:nth-child(5) { height: 72%; background: #ffa172; }.spark-bars i:nth-child(6) { height: 89%; background: var(--orange); }.spark-bars i:nth-child(7) { height: 63%; background: #ff7e41; }.spark-bars i:nth-child(8) { height: 48%; }
.spark-bars--rain i:nth-child(1) { height: 12%; }.spark-bars--rain i:nth-child(2) { height: 20%; }.spark-bars--rain i:nth-child(3) { height: 52%; }.spark-bars--rain i:nth-child(4) { height: 86%; background:#4386c9; }.spark-bars--rain i:nth-child(5) { height: 66%; background:#79a9d8; }.spark-bars--rain i:nth-child(6) { height: 38%; }.spark-bars--rain i:nth-child(7) { height: 24%; }.spark-bars--rain i:nth-child(8) { height: 16%; }
.spark-line { position: relative; height: 36px; overflow: hidden; background: repeating-linear-gradient(0deg, transparent 0 11px, rgba(23,24,22,.05) 11px 12px); }
.spark-line i { position: absolute; inset: 5px 0 4px; border-top: 2px solid var(--orange); clip-path: polygon(0 68%, 12% 58%, 24% 65%, 35% 34%, 47% 44%, 59% 18%, 71% 32%, 84% 9%, 100% 23%, 100% 31%, 84% 17%, 71% 40%, 59% 26%, 47% 52%, 35% 42%, 24% 73%, 12% 66%, 0 76%); background: rgba(255,81,1,.17); }
.spark-line--temp i { border-color: var(--red); background: rgba(217,67,47,.14); transform: scaleY(.75); }
.spark-line--wind i { border-color: var(--blue); background: rgba(45,103,223,.13); transform: scaleY(.88) scaleX(-1); }

.product-section { background: var(--paper-deep); }
.split-section { display: grid; grid-template-columns: .78fr 1.22fr; gap: 100px; align-items: center; }
.split-copy { max-width: 480px; }
.split-copy h2 { margin-bottom: 26px; }
.check-list { display: grid; gap: 12px; margin: 30px 0 0; padding: 0; list-style: none; }
.check-list li { display: flex; align-items: center; gap: 12px; font-size: 12px; }
.check-list li::before { content: "✓"; display: grid; place-items: center; width: 20px; height: 20px; border: 1px solid var(--line); border-radius: 50%; color: var(--green); background: var(--panel); font-size: 9px; }
.quote-builder, .capacity-ui { overflow: hidden; border: 1px solid #c9c8c1; border-radius: 6px; background: var(--panel); box-shadow: 0 18px 45px rgba(36,35,30,.08); }
.ui-header { min-height: 70px; display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid var(--line); }
.ui-header strong { display: block; font-size: 14px; }
.ui-header span { margin-bottom: 4px; }
.ui-badge { margin: 0 !important; padding: 6px 8px; border-radius: 3px; color: var(--green) !important; background: rgba(28,140,97,.09); }
.ui-badge--neutral { color: var(--ink-soft) !important; background: #eeede7; }
.quote-fields { display: grid; grid-template-columns: repeat(2, 1fr); }
.field { min-height: 96px; padding: 17px 20px; border-bottom: 1px solid var(--line); }
.field:nth-child(odd) { border-right: 1px solid var(--line); }
.field strong { display: block; font-family: Georgia, serif; font-size: 21px; font-weight: 400; }
.field small, .quote-result small, .capacity-metrics small { display: block; margin-top: 5px; color: var(--muted); font-size: 9px; }
.payout-control { padding: 18px 20px; border-bottom: 1px solid var(--line); }
.payout-control > div:first-child { display: flex; align-items: center; justify-content: space-between; }
.payout-control strong { font-family: Georgia, serif; font-size: 22px; font-weight: 400; }
.payout-track { position: relative; height: 3px; margin-top: 17px; background: #d7d6d0; }
.payout-track i { position: absolute; inset: 0 auto 0 0; width: 38%; background: var(--orange); }
.payout-track b { position: absolute; left: 38%; top: 50%; width: 13px; height: 13px; border: 3px solid var(--white); border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 1px var(--orange); transform: translate(-50%, -50%); }
.payout-labels { display: flex; justify-content: space-between; margin-top: 6px; color: var(--muted); font-family: "Fragment Mono", monospace; font-size: 7px; }
.quote-result { display: grid; grid-template-columns: 1fr 1fr auto; align-items: center; gap: 20px; padding: 20px; }
.quote-result strong { display: block; font-family: Georgia, serif; font-size: 24px; font-weight: 400; }
.legal-note { margin: 0; padding: 10px 20px; border-top: 1px solid var(--line); color: var(--muted); font-size: 8px; }

.monitoring-section { background: var(--panel); }
.section-intro--wide { align-items: end; }
.section-intro--wide .eyebrow { margin-bottom: -42px; }
.monitoring-ui { overflow: hidden; border: 1px solid #c9c8c1; border-radius: 6px; background: var(--paper); box-shadow: 0 20px 48px rgba(36,35,30,.08); }
.monitoring-topbar { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 14px 20px; border-bottom: 1px solid var(--line); }
.monitoring-topbar > div:first-child span { display: block; margin-bottom: 5px; color: var(--muted); font-family: "Fragment Mono", monospace; font-size: 8px; text-transform: uppercase; }
.monitoring-topbar strong { font-size: 13px; }
.monitor-summary { display: flex; gap: 32px; color: var(--muted); font-family: "Fragment Mono", monospace; font-size: 8px; text-transform: uppercase; }
.monitor-summary b { margin-left: 6px; color: var(--ink); font-size: 10px; }
.monitoring-body { display: grid; grid-template-columns: .88fr 1.12fr; min-height: 400px; }
.portfolio-map { position: relative; overflow: hidden; border-right: 1px solid var(--line); background: #e8e8e0; }
.portfolio-map::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(23,24,22,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(23,24,22,.05) 1px, transparent 1px); background-size: 24px 24px; }
.us-shape { position: absolute; inset: 17% 10% 18%; background: #d1d2ca; clip-path: polygon(4% 4%, 29% 10%, 41% 9%, 47% 17%, 58% 12%, 73% 18%, 93% 13%, 97% 34%, 90% 53%, 86% 78%, 75% 88%, 62% 85%, 51% 98%, 42% 73%, 24% 67%, 10% 49%); box-shadow: inset 0 0 0 1px #bfc0b8; }
.portfolio-dot { position: absolute; width: 8px; height: 8px; border: 2px solid var(--paper); border-radius: 50%; background: var(--ink-soft); box-shadow: 0 0 0 1px rgba(23,24,22,.28); }
.portfolio-dot.is-alert { width: 10px; height: 10px; background: var(--orange); box-shadow: 0 0 0 6px rgba(255,81,1,.16); animation: pinPulse 2.5s ease-out infinite; }
.dot--seattle { left: 17%; top: 25%; }.dot--la { left: 16%; top: 59%; }.dot--denver { left: 36%; top: 44%; }.dot--dallas { left: 49%; top: 61%; }.dot--houston { left: 51%; top: 69%; }.dot--chicago { left: 64%; top: 37%; }.dot--atlanta { left: 70%; top: 60%; }.dot--miami { left: 81%; top: 78%; }.dot--nyc { left: 85%; top: 34%; }
.portfolio-alert { position: absolute; left: 54%; top: 62%; width: 142px; padding: 9px 11px; border: 1px solid rgba(255,81,1,.38); border-radius: 3px; background: rgba(255,255,255,.92); box-shadow: 0 8px 24px rgba(23,24,22,.12); }
.portfolio-alert span, .portfolio-alert b, .portfolio-alert small { display: block; }
.portfolio-alert span { color: var(--orange); font-family: "Fragment Mono", monospace; font-size: 7px; }
.portfolio-alert b { margin-top: 4px; font-size: 10px; }
.portfolio-alert small { margin-top: 3px; color: var(--muted); font-size: 8px; }
.location-table { display: flex; flex-direction: column; background: var(--panel); }
.location-row { min-height: 74px; display: grid; grid-template-columns: 1.35fr .7fr .85fr .75fr .8fr; align-items: center; gap: 12px; padding: 0 18px; border-bottom: 1px solid var(--line); font-size: 10px; }
.location-row:last-child { border-bottom: 0; }
.location-row--header { min-height: 40px; color: var(--muted); background: #f0efe9; font-family: "Fragment Mono", monospace; font-size: 7px; text-transform: uppercase; }
.location-row > span:first-child b, .location-row > span:first-child small { display: block; }
.location-row > span:first-child small { margin-top: 4px; color: var(--muted); font-size: 8px; }
.location-row > span:nth-child(3) { display: flex; align-items: center; gap: 6px; }
.location-row > span:nth-child(3) i { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.location-row.is-alert { background: var(--orange-pale); }
.location-row.is-alert > span:nth-child(3) { color: var(--orange-dark); font-weight: 600; }
.location-row.is-alert > span:nth-child(3) i { background: var(--orange); }
.location-row button { justify-self: start; padding: 6px 8px; border: 1px solid transparent; border-radius: 3px; background: transparent; font-size: 9px; }
.location-row.is-alert button { border-color: #ffcab1; color: var(--orange-dark); background: var(--white); cursor: pointer; }

.quant-section { background: var(--ink); color: var(--white); }
.split-section--quant { grid-template-columns: .85fr 1.15fr; }
.quant-section .eyebrow { color: #92948a; }
.quant-section .split-copy > p { color: #b9bbb1; }
.pricing-inputs { display: grid; grid-template-columns: repeat(2, 1fr); margin-top: 32px; border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.pricing-inputs span { min-height: 54px; display: flex; align-items: center; padding: 0 12px; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); color: #d2d3cc; font-family: "Fragment Mono", monospace; font-size: 8px; text-transform: uppercase; }
.capacity-ui { color: var(--ink); background: #f7f6f1; box-shadow: 0 28px 60px rgba(0,0,0,.24); }
.capacity-metrics { display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: 1px solid var(--line); }
.capacity-metrics > div { padding: 18px 20px; border-right: 1px solid var(--line); }
.capacity-metrics > div:last-child { border-right: 0; }
.capacity-metrics strong { display: block; font-family: Georgia, serif; font-size: 24px; font-weight: 400; }
.capacity-chart { height: 250px; display: grid; grid-template-columns: 42px 1fr; padding: 24px 24px 14px 12px; }
.chart-axis { display: flex; flex-direction: column; justify-content: space-between; padding-bottom: 28px; color: var(--muted); font-family: "Fragment Mono", monospace; font-size: 7px; }
.chart-bars { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; align-items: end; border-bottom: 1px solid var(--line); background: repeating-linear-gradient(0deg, transparent 0 49px, rgba(23,24,22,.07) 49px 50px); }
.chart-bars > div { height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: end; gap: 8px; }
.chart-bars i { width: 55%; height: var(--h); max-height: calc(100% - 26px); border-radius: 2px 2px 0 0; background: linear-gradient(180deg, var(--orange), #ff9f72); transform-origin: bottom; animation: chartGrow 1s cubic-bezier(.2,.8,.2,1) both; }
.chart-bars > div:nth-child(2) i { background: linear-gradient(180deg, #c9471e, #e8996e); }.chart-bars > div:nth-child(3) i { background: linear-gradient(180deg, var(--blue), #8faddf); }.chart-bars > div:nth-child(4) i { background: linear-gradient(180deg, #587a9e, #aabac9); }.chart-bars > div:nth-child(5) i { background: linear-gradient(180deg, #4386c9, #9fc1dc); }
.chart-bars span { min-height: 18px; color: var(--muted); font-family: "Fragment Mono", monospace; font-size: 7px; text-transform: uppercase; }
.capacity-foot { display: flex; justify-content: space-between; padding: 13px 20px; border-top: 1px solid var(--line); color: var(--muted); font-family: "Fragment Mono", monospace; font-size: 7px; text-transform: uppercase; }
.capacity-foot span:first-child { display: flex; align-items: center; gap: 7px; color: var(--green); }
.capacity-foot i { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }

.closing-cta { background: var(--ink); color: var(--white); }
.closing-cta__inner { display: grid; grid-template-columns: 1.35fr .65fr; align-items: end; gap: 100px; padding-block: 110px; border-top: 1px solid var(--line-dark); }
.eyebrow--dark { color: #96988e; }
.closing-cta p { max-width: 420px; margin-bottom: 28px; color: #b9bbb1; }
.footer { background: var(--ink); color: var(--white); border-top: 1px solid var(--line-dark); }
.footer__inner { min-height: 98px; display: grid; grid-template-columns: auto 1fr auto auto; align-items: center; gap: 44px; }
.brand--footer .brand__mark { width: 28px; height: 28px; }
.brand--footer .brand__name { font-size: 22px; }
.footer p, .footer > span { margin: 0; color: #8e9087; font-size: 10px; }
.footer__links { display: flex; gap: 24px; }
.footer__links a { color: #b8bab0; font-size: 10px; text-decoration: none; }
.footer__links a:hover { color: var(--white); }
.footer__inner > span { color: #7d7f77; font-family: "Fragment Mono", monospace; font-size: 8px; text-transform: uppercase; }

.reveal { opacity: 0; transform: translateY(14px); transition: opacity 500ms ease, transform 500ms ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@keyframes livePulse { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }
@keyframes fieldBreathe { from { scale: 1; } to { scale: 1.05; } }
@keyframes pinPulse { 0% { box-shadow: 0 0 0 0 rgba(255,81,1,.34); } 70%,100% { box-shadow: 0 0 0 9px rgba(255,81,1,0); } }
@keyframes chartGrow { from { transform: scaleY(0); } to { transform: scaleY(1); } }

@media (max-width: 1050px) {
  .hero__inner { grid-template-columns: 1fr; gap: 56px; padding-block: 72px; }
  .hero__copy { max-width: 760px; }
  .hero__meta { max-width: 630px; }
  .risk-terminal { width: 100%; }
  .section-intro { grid-template-columns: 1fr 1fr; gap: 50px; }
  .model-row { grid-template-columns: .9fr 1.2fr .8fr; }
  .model-freshness { display: none; }
  .split-section { gap: 52px; }
  .monitoring-body { grid-template-columns: 1fr; }
  .portfolio-map { min-height: 360px; border-right: 0; border-bottom: 1px solid var(--line); }
}

@media (max-width: 760px) {
  .shell { width: min(100% - 32px, 1240px); }
  .navbar__inner { grid-template-columns: 1fr auto; }
  .nav-status { display: none; }
  .navbar .button { min-height: 36px; padding-inline: 12px; font-size: 11px; }
  .hero__inner { min-height: 0; padding-block: 56px 48px; gap: 42px; }
  h1 { font-size: clamp(46px, 14vw, 62px); }
  h2 { font-size: clamp(38px, 11vw, 50px); }
  .hero__lede { font-size: 14px; }
  .hero__actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .hero__meta { grid-template-columns: 1fr; gap: 14px; margin-top: 38px; }
  .hero__meta div { display: flex; justify-content: space-between; gap: 16px; padding-bottom: 10px; border-bottom: 1px solid var(--line); }
  .hero__meta span { margin: 0; }
  .risk-terminal { margin-inline: -8px; width: calc(100% + 16px); }
  .map { min-height: 500px; }
  .quote-float { right: 10px; bottom: 10px; width: calc(100% - 20px); }
  .location-pin--one { left: 22%; top: 47%; }
  .location-pin--two { right: 10%; top: 20%; }
  .location-pin.is-elevated .pin-card { display: none; }
  .map-legend { bottom: 219px; }
  .terminal-footer { grid-template-columns: 1fr 1fr; gap: 4px; }
  .terminal-footer span:nth-child(2) { text-align: right; }
  .terminal-footer span:last-child { display: none; }
  .data-strip__inner { align-items: flex-start; flex-direction: column; gap: 14px; padding-block: 22px; }
  .data-strip ul { display: grid; grid-template-columns: repeat(2, 1fr); width: 100%; gap: 12px; }
  .section { padding-block: 86px; }
  .section-intro, .section-intro--wide { display: block; margin-bottom: 42px; }
  .section-intro .eyebrow, .section-intro--wide .eyebrow { margin-bottom: 22px; }
  .section-intro > p, .section-intro--wide > p { margin-top: 24px; }
  .model-row { grid-template-columns: 1fr; gap: 10px; padding-block: 22px; }
  .model-row > p { padding-left: 46px; }
  .spark-bars, .spark-line { margin-left: 46px; }
  .split-section, .split-section--quant { grid-template-columns: 1fr; gap: 48px; }
  .quote-builder, .capacity-ui { margin-inline: -8px; }
  .quote-fields { grid-template-columns: 1fr; }
  .field:nth-child(odd) { border-right: 0; }
  .quote-result { grid-template-columns: 1fr 1fr; }
  .quote-result .button { grid-column: 1 / -1; }
  .monitoring-topbar { align-items: flex-start; flex-direction: column; }
  .monitor-summary { justify-content: space-between; width: 100%; gap: 12px; }
  .monitor-summary span { display: flex; flex-direction: column; gap: 4px; }
  .monitor-summary b { margin: 0; }
  .portfolio-map { min-height: 300px; }
  .location-table { overflow-x: auto; }
  .location-row { min-width: 620px; }
  .pricing-inputs { grid-template-columns: 1fr; }
  .capacity-metrics { grid-template-columns: 1fr; }
  .capacity-metrics > div { border-right: 0; border-bottom: 1px solid var(--line); }
  .capacity-metrics > div:last-child { border-bottom: 0; }
  .closing-cta__inner { grid-template-columns: 1fr; gap: 34px; padding-block: 82px; }
  .footer__inner { grid-template-columns: 1fr auto; gap: 18px; padding-block: 28px; }
  .footer__inner > p { grid-row: 2; }
  .footer__inner > span { text-align: right; }
}

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