:root {
  --bg: #071015;
  --bg-deep: #03070a;
  --ink: #f7fbff;
  --muted: #c6d4df;
  --soft: #8fa3b2;
  --line: rgba(255, 255, 255, .16);
  --cyan: #4de7ff;
  --teal: #2ed3b7;
  --blue: #4c8dff;
  --violet: #8b7dff;
  --amber: #ffd166;
  --red: #ff5b72;
  --green: #54d896;
  --shadow: 0 34px 90px rgba(0, 0, 0, .32);
}

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

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--ink);
  font-family: Geologica, system-ui, sans-serif;
  line-height: 1.5;
  background: var(--bg-deep);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.modal-open {
  overflow: hidden;
}

a { color: inherit; }
p { margin: 0; color: var(--muted); }
img { max-width: 100%; }

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 max(clamp(22px, 5vw, 72px), calc((100vw - 1180px) / 2));
  background: linear-gradient(180deg, rgba(3, 7, 10, .72), rgba(3, 7, 10, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: clamp(26px, 2.6vw, 40px);
  line-height: 1;
}

.brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.brand .brand-logo {
  width: clamp(152px, 17vw, 226px);
  height: auto;
  display: block;
}

.brand span span {
  color: rgba(255, 255, 255, .68);
  font-weight: 400;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
}

.nav-links a {
  color: rgba(255, 255, 255, .76);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.nav-links a:hover { color: #fff; }

.nav-cta {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin-left: -8px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  color: #063039;
  background:
    linear-gradient(110deg, rgba(255,255,255,.96), rgba(255,209,102,.9), rgba(77,231,255,.88), rgba(255,255,255,.96));
  background-size: 260% 260%;
  font: 750 12px/1 Geologica, system-ui, sans-serif;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(3, 7, 10, .22);
  white-space: nowrap;
  animation: latest-alert-action-gradient 5s ease-in-out infinite;
}

.nav-cta:hover {
  transform: translateY(-1px);
}

.button.early-access-large {
  min-height: 64px;
  padding: 0 34px;
  border: 0;
  color: #063039;
  background:
    linear-gradient(110deg, rgba(255,255,255,.98), rgba(255,209,102,.92), rgba(77,231,255,.9), rgba(255,255,255,.98));
  background-size: 260% 260%;
  box-shadow:
    0 24px 56px rgba(3, 7, 10, .22),
    0 0 0 7px rgba(255, 255, 255, .12);
  cursor: pointer;
  font-size: 17px;
  animation: latest-alert-action-gradient 5s ease-in-out infinite;
}

.nav-toggle {
  appearance: none;
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 8px;
  color: #fff;
  background: rgba(3, 7, 10, .38);
  cursor: pointer;
  backdrop-filter: blur(14px);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .18s ease, opacity .18s ease;
}

.nav-toggle:focus-visible {
  outline: 3px solid rgba(255, 209, 102, .86);
  outline-offset: 3px;
}

.nav.is-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav.is-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav.is-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@keyframes latest-alert-gradient {
  0% { background-position: 0% 50%, 0% 50%; }
  50% { background-position: 100% 50%, 100% 50%; }
  100% { background-position: 0% 50%, 0% 50%; }
}

.alert-image-close:focus-visible,
.access-close:focus-visible,
.facebook-live-close:focus-visible,
.nav-cta:focus-visible,
.access-actions .button:focus-visible {
  outline: 3px solid rgba(255, 209, 102, .86);
  outline-offset: 3px;
}

.latest-alert-label {
  color: rgba(255,255,255,.72);
  font: 700 11px/1 "JetBrains Mono", ui-monospace, monospace;
  letter-spacing: .14em;
  text-transform: uppercase;
}

@keyframes latest-alert-action-gradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.alert-image-modal,
.access-modal,
.facebook-live-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 52px);
}

.alert-image-modal[hidden],
.access-modal[hidden],
.facebook-live-modal[hidden] {
  display: none;
}

.alert-image-backdrop,
.access-backdrop,
.facebook-live-backdrop {
  appearance: none;
  border: 0;
  padding: 0;
  position: absolute;
  inset: 0;
  background: rgba(3, 7, 10, .78);
  backdrop-filter: blur(12px);
  cursor: pointer;
}

.access-panel {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  max-height: min(88vh, 760px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 18px;
  background: #071015;
  box-shadow: 0 36px 120px rgba(0, 0, 0, .58);
}

.facebook-live-dialog {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  max-height: min(90vh, 900px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 18px;
  background: #05090d;
  box-shadow: 0 36px 120px rgba(0, 0, 0, .58);
}

.alert-image-panel {
  position: relative;
  z-index: 1;
  width: min(940px, 100%);
  max-height: min(86vh, 900px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 24px;
  background: #071015;
  box-shadow: 0 36px 120px rgba(0, 0, 0, .58);
}

.alert-image-head,
.access-head,
.facebook-live-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(135deg, rgba(18, 51, 66, .98), rgba(19, 115, 110, .96));
}

.alert-image-head .latest-alert-label,
.access-head .latest-alert-label,
.facebook-live-head .latest-alert-label {
  margin-bottom: 8px;
}

.alert-image-head h2,
.access-head h2,
.facebook-live-head h2 {
  max-width: none;
  font-size: clamp(20px, 2.5vw, 30px);
  line-height: 1.1;
}

.alert-generated-text {
  max-width: 76ch;
  margin-top: 10px;
  color: rgba(255,255,255,.78);
  font-size: clamp(14px, 1.6vw, 17px);
  line-height: 1.55;
}

.alert-generated-text[hidden] {
  display: none;
}

.alert-image-close,
.access-close,
.facebook-live-close {
  appearance: none;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  color: #fff;
  background: rgba(255,255,255,.1);
  cursor: pointer;
  font: 400 30px/1 Geologica, system-ui, sans-serif;
}

.alert-image-close:hover,
.access-close:hover,
.facebook-live-close:hover {
  background: rgba(255,255,255,.18);
}

.facebook-live-frame-wrap {
  min-height: 0;
  display: grid;
  place-items: center;
  overflow: auto;
  padding: 20px;
  background:
    radial-gradient(circle at 10% 0%, rgba(24, 119, 242, .18), transparent 34%),
    linear-gradient(180deg, #070b10, #030507);
}

.facebook-live-frame-wrap iframe {
  display: block;
  width: min(500px, 100%);
  max-width: 100%;
  height: min(720px, 66vh);
  border: 0;
  background: #050505;
}

.facebook-live-fallback {
  display: flex;
  justify-content: flex-end;
  padding: 12px 18px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.facebook-live-fallback a {
  color: #9cefff;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.facebook-live-fallback a:hover {
  color: #fff;
}

.access-form {
  display: grid;
  gap: 16px;
  overflow-y: auto;
  padding: 22px;
}

.access-form label {
  display: grid;
  gap: 8px;
}

.access-form label span {
  color: rgba(255,255,255,.76);
  font-size: 13px;
  font-weight: 700;
}

.access-form input,
.access-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  color: #fff;
  background: rgba(255,255,255,.08);
  font: 500 16px/1.4 Geologica, system-ui, sans-serif;
  outline: none;
}

.access-form input {
  height: 46px;
  padding: 0 13px;
}

.access-form textarea {
  min-height: 132px;
  resize: vertical;
  padding: 12px 13px;
}

.access-form input:focus,
.access-form textarea:focus {
  border-color: rgba(77, 231, 255, .78);
  box-shadow: 0 0 0 3px rgba(77, 231, 255, .16);
}

.access-status {
  min-height: 22px;
  color: rgba(255,255,255,.7);
  font-size: 14px;
}

.access-status[data-tone="success"] {
  color: var(--green);
}

.access-status[data-tone="error"] {
  color: #ff9aa8;
}

.access-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.access-actions .button {
  min-height: 46px;
  border-radius: 8px;
  cursor: pointer;
  font: 700 15px/1 Geologica, system-ui, sans-serif;
}

.access-actions .button:disabled {
  cursor: wait;
  opacity: .68;
}

.alert-image-panel img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  background: #03070a;
}

.alert-image-panel img[hidden] {
  display: none;
}

.alert-image-error {
  min-height: 360px;
  display: grid;
  place-items: center;
  padding: 32px;
  color: rgba(255,255,255,.78);
  background: #03070a;
  text-align: center;
  font-size: 18px;
}

.alert-image-error[hidden] {
  display: none;
}

.hero {
  position: relative;
  min-height: 112vh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 120px clamp(24px, 6vw, 88px) 150px;
  isolation: isolate;
  background:
    radial-gradient(circle at 15% 20%, rgba(77, 231, 255, .32), transparent 30%),
    radial-gradient(circle at 76% 28%, rgba(139, 125, 255, .34), transparent 32%),
    linear-gradient(135deg, #123342 0%, #13736e 42%, #214376 100%);
}

.hero:after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  background: linear-gradient(180deg, transparent, #f6fcff);
  z-index: -1;
}

.aurora {
  position: absolute;
  inset: -18% -8%;
  z-index: -2;
  background:
    radial-gradient(ellipse at 30% 10%, rgba(255,255,255,.42), transparent 20%),
    radial-gradient(ellipse at 64% 26%, rgba(77,231,255,.42), transparent 26%),
    conic-gradient(from 210deg at 50% 45%, rgba(46,211,183,.14), rgba(76,141,255,.34), rgba(139,125,255,.24), rgba(46,211,183,.14));
  filter: blur(20px);
  opacity: .95;
}

.hero-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(36px, 6vw, 76px);
  align-items: center;
}

.hero-copy {
  max-width: 650px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, .78);
  font: 600 12px/1 "JetBrains Mono", ui-monospace, monospace;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: #fff;
  font-weight: 650;
  letter-spacing: 0;
}

h1 {
  max-width: 11ch;
  font-size: clamp(58px, 9vw, 116px);
  line-height: .95;
}

h2 {
  max-width: 12ch;
  font-size: clamp(36px, 5.6vw, 72px);
  line-height: 1;
}

h3 {
  font-size: 24px;
  line-height: 1.12;
}

.hero-copy p {
  max-width: 58ch;
  margin-top: 28px;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.58;
}

.facebook-live-panel {
  appearance: none;
  width: min(520px, 100%);
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  background:
    radial-gradient(circle at 10% 0%, rgba(255,255,255,.24), transparent 36%),
    linear-gradient(135deg, rgba(8, 34, 54, .88), rgba(24, 119, 242, .78));
  box-shadow:
    0 18px 46px rgba(3, 7, 10, .24),
    0 0 0 5px rgba(255, 255, 255, .08);
  backdrop-filter: blur(18px);
  cursor: pointer;
  font-family: inherit;
  font-size: clamp(15px, 1.35vw, 17px);
  font-weight: 750;
  line-height: 1.2;
  text-align: left;
}

.facebook-live-panel:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, .52);
  background:
    radial-gradient(circle at 10% 0%, rgba(255,255,255,.3), transparent 36%),
    linear-gradient(135deg, rgba(8, 34, 54, .92), rgba(24, 119, 242, .88));
}

.facebook-live-panel:focus-visible {
  outline: 3px solid rgba(255, 209, 102, .86);
  outline-offset: 4px;
}

.facebook-live-logo {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #1877f2;
  background: #fff;
}

.facebook-live-logo svg {
  width: 24px;
  height: 24px;
  display: block;
  fill: currentColor;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .34);
  text-decoration: none;
  font-weight: 600;
  transition: transform .2s, background .2s, box-shadow .2s;
}

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

.button.primary {
  color: #063039;
  background: #fff;
  box-shadow: 0 20px 46px rgba(0, 0, 0, .22);
}

.button.secondary {
  color: #fff;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(12px);
}

.hero-visual {
  position: relative;
  min-height: 760px;
}

.radar-orb {
  position: absolute;
  z-index: 0;
  inset: 50% auto auto 50%;
  width: min(560px, 72vw);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.18), rgba(77,231,255,.08) 42%, transparent 68%);
}

.ring {
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
}

.r2 { inset: 28%; }
.r3 { inset: 44%; }

.sweep {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 50%;
  height: 50%;
  transform-origin: 0 0;
  background: conic-gradient(from -14deg at 0 0, rgba(255,255,255,.32) 0deg, rgba(77,231,255,.12) 22deg, transparent 42deg);
  clip-path: polygon(0 0, 100% 0, 100% 56%);
  animation: sweep 9s linear infinite;
}

@keyframes sweep {
  to { transform: rotate(360deg); }
}

.phone-card {
  position: absolute;
  z-index: 2;
  right: calc(6% - 100px);
  top: 8%;
  width: min(530px, 78vw);
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,.32);
  background: rgba(7,16,21,.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transform: rotate(2deg);
}

.phone-top {
  display: flex;
  justify-content: space-between;
  padding: 18px 20px;
  color: rgba(255,255,255,.72);
  font-size: 13px;
}

.phone-card img {
  display: block;
  width: 100%;
}

.phone-message {
  display: grid;
  gap: 8px;
  padding: 20px;
}

.phone-message strong { color: #fff; font-size: 19px; }
.phone-message span { color: rgba(255,255,255,.72); }

.source-card {
  position: absolute;
  z-index: 1;
  right: 44%;
  top: 2%;
  left: auto;
  bottom: auto;
  max-width: 430px;
  padding: 22px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.26);
  background: rgba(255,255,255,.1);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transform: rotate(-2deg);
}

.source-card span {
  color: rgba(255,255,255,.66);
  font: 600 11px/1 "JetBrains Mono", monospace;
  letter-spacing: .16em;
}

.source-card strong {
  display: block;
  margin-top: 12px;
  color: #fff;
  font-size: 19px;
}

.source-card p {
  margin-top: 8px;
  color: rgba(255,255,255,.74);
  white-space: pre-line;
  font: 500 12px/1.55 "JetBrains Mono", ui-monospace, monospace;
  letter-spacing: 0;
}

.discover {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  color: rgba(255,255,255,.8);
  text-decoration: none;
  font: 600 12px/1 "JetBrains Mono", monospace;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.discover:after {
  content: "";
  display: block;
  width: 1px;
  height: 34px;
  margin: 12px auto 0;
  background: rgba(255,255,255,.5);
}

.feature,
.process,
.audiences,
.imagery-quality,
.live-map,
.tropical-alerts,
.product,
.alert-types,
.cta {
  padding: clamp(86px, 11vw, 150px) clamp(24px, 6vw, 88px);
}

.feature,
.product {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(42px, 7vw, 92px);
  align-items: center;
  background: #fff;
  color: #18313b;
}

.live-map {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(42px, 7vw, 92px);
  align-items: center;
  color: #18313b;
}

.feature.reverse {
  background: #f4fbff;
}

.feature h2,
.product h2,
.process h2,
.audiences h2,
.imagery-quality h2,
.alert-types h2,
.cta h2 {
  color: #15313d;
}

.copy p,
.section-head p,
.product p,
.imagery-quality p,
.alert-types p,
.cta p {
  max-width: 60ch;
  margin-top: 24px;
  color: #5c7180;
  font-size: 18px;
  line-height: 1.72;
}

.feature .eyebrow,
.process .eyebrow,
.audiences .eyebrow,
.imagery-quality .eyebrow,
.product .eyebrow,
.alert-types .eyebrow,
.cta .eyebrow {
  color: #2ca9be;
}

.signal-graphic {
  position: relative;
  display: block;
  border-radius: 44px;
  box-shadow: 0 24px 80px rgba(38, 132, 155, .16);
  overflow: hidden;
}

.signal-graphic img {
  display: block;
  width: 100%;
  height: auto;
}

.live-map-preview {
  display: block;
  overflow: hidden;
  border-radius: 36px;
  border: 1px solid rgba(44,169,190,.16);
  box-shadow: 0 24px 80px rgba(38, 132, 155, .16);
  transition: transform .2s ease, box-shadow .2s ease;
}

.live-map-preview:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 90px rgba(38, 132, 155, .22);
}

.live-map-preview:focus-visible {
  outline: 3px solid rgba(44,169,190,.64);
  outline-offset: 5px;
}

.live-map-preview img {
  display: block;
  width: 100%;
  height: auto;
}

.live-map-button {
  min-height: 58px;
  padding: 0 30px;
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #178b87, #3159bc);
  box-shadow: 0 20px 46px rgba(23, 139, 135, .22);
}

.live-map-button:hover {
  box-shadow: 0 26px 58px rgba(49, 89, 188, .28);
}

.imagery-quality {
  background: #fff;
  color: #18313b;
}

.imagery-quality .section-head {
  max-width: 900px;
  margin: 0 auto clamp(34px, 5vw, 62px);
  text-align: center;
}

.imagery-quality .section-head h2 {
  margin-right: auto;
  margin-left: auto;
}

.imagery-quality .section-head p {
  margin-right: auto;
  margin-left: auto;
}

.imagery-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
  max-width: 1120px;
  margin: 0 auto;
}

.imagery-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(44, 169, 190, .16);
  border-radius: 8px;
  background: #f8fbfd;
  box-shadow: 0 24px 80px rgba(38, 132, 155, .14);
}

.imagery-card-clearwarn {
  border-color: rgba(44, 169, 190, .36);
  box-shadow: 0 28px 86px rgba(38, 132, 155, .22);
}

.imagery-example {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 260px;
  object-fit: cover;
  background: #d8e4ea;
}

.imagery-card figcaption {
  display: grid;
  gap: 6px;
  padding: 18px 20px 20px;
}

.imagery-card figcaption span {
  color: #2ca9be;
  font: 700 12px/1 var(--font-mono);
  letter-spacing: .13em;
  text-transform: uppercase;
}

.imagery-card figcaption strong {
  color: #15313d;
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.2;
}

.tropical-alerts {
  background:
    radial-gradient(circle at 18% 18%, rgba(77,231,255,.16), transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(46,211,183,.14), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f6fcff 100%);
}

.tropical-alerts-container {
  width: min(1160px, 100%);
  margin: 0 auto;
  padding: 0;
}

.tropical-alerts .copy h2 {
  color: #15313d;
}

.tropical-alerts .copy p {
  color: #5c7180;
}

.tropical-image {
  margin: 0;
  overflow: hidden;
  max-width: 520px;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,.32);
  background: rgba(7,16,21,.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.tropical-image img {
  display: block;
  width: 100%;
  height: auto;
}

.signal-callout {
  grid-column: 1 / -1;
  width: min(82%, 620px);
  margin: clamp(10px, 2vw, 22px) auto 0;
  padding: clamp(16px, 2.4vw, 24px) clamp(18px, 3vw, 34px);
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 999px;
  color: #fff;
  background:
    radial-gradient(circle at 20% 0%, rgba(255,255,255,.34), transparent 42%),
    linear-gradient(135deg, #123948, #178b87 52%, #3159bc);
  box-shadow:
    0 24px 56px rgba(16, 75, 104, .32),
    0 0 0 10px rgba(77,231,255,.08);
  text-align: center;
  font-size: clamp(20px, 3vw, 34px);
  font-weight: 750;
  line-height: 1.08;
}

.before-after {
  overflow: hidden;
  border-radius: 42px;
  background: linear-gradient(135deg, #123948, #234d72);
  box-shadow: var(--shadow);
}

.raw,
.clear {
  padding: clamp(24px, 4vw, 40px);
}

.raw {
  background: rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.raw span,
.clear span {
  display: block;
  margin-bottom: 12px;
  color: var(--cyan);
  font: 600 11px/1 "JetBrains Mono", monospace;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.raw pre {
  margin: 0;
  white-space: pre-wrap;
  color: #81919c;
  font: 500 15px/1.7 "JetBrains Mono", monospace;
}

.clear {
  background: linear-gradient(135deg, rgba(77,231,255,.12), rgba(139,125,255,.12));
}

.clear p {
  color: #fff;
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.25;
  font-weight: 600;
}

.clear strong { color: var(--cyan); }

.process,
.audiences {
  position: relative;
  overflow: hidden;
}

.process {
  background:
    radial-gradient(circle at 14% 10%, rgba(255,255,255,.22), transparent 26%),
    radial-gradient(circle at 82% 80%, rgba(139,125,255,.22), transparent 34%),
    linear-gradient(135deg, #0f6f7d 0%, #14526f 48%, #243f83 100%);
}

.audiences {
  background:
    radial-gradient(circle at 18% 18%, rgba(77,231,255,.24), transparent 28%),
    radial-gradient(circle at 82% 12%, rgba(139,125,255,.16), transparent 30%),
    linear-gradient(180deg, #f6fcff 0%, #e9f8ff 100%);
}

.section-head {
  max-width: 780px;
  margin: 0 auto 58px;
  text-align: center;
}

.process h2,
.audiences h2 {
  max-width: 14ch;
  margin: 0 auto;
}

.process h2 {
  color: #fff;
}

.audiences h2 {
  color: #15313d;
}

.process .section-head p,
.audiences .section-head p {
  margin-left: auto;
  margin-right: auto;
}

.process .section-head p {
  color: rgba(255,255,255,.68);
}

.audiences .section-head p {
  color: #5c7180;
}

.process-grid,
.audience-grid {
  width: min(1160px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.process-grid article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 22px;
  align-items: end;
  align-self: stretch;
  align-content: start;
  padding: 34px;
  border-radius: 32px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.25);
  box-shadow: 0 24px 70px rgba(5, 38, 58, .16);
  backdrop-filter: blur(14px);
}

.icon {
  color: rgba(255,255,255,.92);
  font-size: clamp(72px, 8vw, 118px);
  font-weight: 800;
  line-height: .82;
}

.process-grid h3 {
  padding-bottom: .08em;
}

.process-grid h3,
.audience-grid h3 {
  color: #fff;
}

.process-grid p {
  grid-column: 1 / -1;
}

.process-grid p,
.audience-grid p {
  margin-top: 14px;
  color: rgba(255,255,255,.68);
}

.audience-grid h3 {
  color: #15313d;
}

.audience-grid p {
  color: #5c7180;
}

.audience-grid {
  width: min(1320px, 100%);
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.audience-grid article {
  overflow: hidden;
  min-height: 390px;
  border-radius: 30px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(44,169,190,.14);
  box-shadow: 0 22px 70px rgba(38, 132, 155, .13);
}

.audience-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 1.15;
  object-fit: cover;
}

.audience-grid h3,
.audience-grid p {
  padding-left: 22px;
  padding-right: 22px;
}

.audience-grid h3 {
  margin-top: 22px;
}

.audience-grid p {
  padding-bottom: 24px;
}

.home-atlas,
.layout-customization {
  width: 100%;
  margin: 0 auto;
  padding: clamp(72px, 8vw, 112px) clamp(24px, 6vw, 88px);
  background: #fff;
}

.home-atlas.feature,
.layout-customization.feature {
  grid-template-columns: minmax(0, 520px) minmax(0, 420px);
  justify-content: center;
  gap: clamp(32px, 5vw, 64px);
}

.layout-customization.feature {
  grid-template-columns: minmax(0, 630px) minmax(0, 480px);
}

.home-atlas .copy h2,
.layout-customization .copy h2 {
  color: #15313d;
}

.home-atlas .copy p,
.layout-customization .copy p {
  color: #5c7180;
}

.home-atlas-logo {
  display: grid;
  place-items: center;
  min-height: 340px;
  text-decoration: none;
}

.home-atlas-logo img {
  display: block;
  width: min(100%, 340px);
  height: auto;
}

.layout-customization {
  padding-top: 0;
}

.layout-image {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,.32);
  background: rgba(7,16,21,.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.layout-image img {
  display: block;
  width: 100%;
  height: auto;
}

.layout-image-caption,
.image-card-caption {
  position: static;
  padding: 20px;
  color: rgba(255,255,255,.72);
  background: rgba(7,16,21,.72);
  box-shadow: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.mini-alert {
  min-height: 210px;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  color: #fff;
  font-size: 24px;
  line-height: 1.15;
  font-weight: 650;
  background: linear-gradient(135deg, rgba(255,209,102,.9), rgba(255,91,114,.78));
}

.mini-alert.cyan {
  background: linear-gradient(135deg, rgba(77,231,255,.84), rgba(76,141,255,.78));
}

.product {
  background: #fff;
}

.dashboard {
  overflow: hidden;
  border-radius: 36px;
  box-shadow: var(--shadow);
}

.dashboard img {
  display: block;
  width: 100%;
  height: auto;
}

.alert-types {
  background:
    radial-gradient(circle at 12% 12%, rgba(77,231,255,.22), transparent 30%),
    radial-gradient(circle at 88% 8%, rgba(139,125,255,.14), transparent 28%),
    linear-gradient(180deg, #f6fcff 0%, #ffffff 100%);
}

.alert-types h2 {
  max-width: 13ch;
  margin: 0 auto;
}

.alert-source-head {
  width: min(1160px, 100%);
  margin: 0 auto 18px;
}

.alert-type-grid {
  width: min(1160px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.alert-type-grid article {
  min-height: 230px;
  padding: 26px;
  border-radius: 26px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(44,169,190,.16);
  box-shadow: 0 18px 54px rgba(38, 132, 155, .11);
}

.alert-type-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: #063039;
  background: linear-gradient(135deg, rgba(77,231,255,.74), rgba(46,211,183,.68));
  font: 800 12px/1 "JetBrains Mono", monospace;
}

.alert-type-grid h3 {
  margin-top: 24px;
  color: #15313d;
  font-size: 22px;
}

.alert-type-grid p {
  margin-top: 12px;
  color: #5c7180;
  font-size: 15px;
  line-height: 1.6;
}

.tropical-weather-inline {
  width: min(1160px, 100%);
  margin: 36px auto 0;
  padding-top: 30px;
  border-top: 1px solid rgba(44,169,190,.18);
}

.tropical-weather-inline-head {
  max-width: 760px;
  margin-bottom: 20px;
}

.tropical-weather-inline-head h3 {
  margin-top: 8px;
  color: #15313d;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.08;
}

.tropical-weather-inline-head p {
  margin-top: 12px;
  color: #5c7180;
  font-size: 16px;
  line-height: 1.58;
}

.tropical-weather-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.tropical-weather-grid article {
  min-height: 210px;
  padding: 22px;
  border: 1px solid rgba(44,169,190,.16);
  border-radius: 8px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 18px 54px rgba(38, 132, 155, .11);
}

.tropical-weather-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: #063039;
  background: linear-gradient(135deg, rgba(77,231,255,.74), rgba(46,211,183,.68));
  font: 800 12px/1 "JetBrains Mono", monospace;
}

.tropical-weather-grid h3 {
  margin-top: 24px;
  color: #15313d;
  font-size: 22px;
}

.tropical-weather-grid p {
  margin-top: 12px;
  color: #5c7180;
  font-size: 15px;
  line-height: 1.6;
}

.cta {
  position: relative;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,.34), transparent 24%),
    linear-gradient(135deg, #178b87, #3159bc 70%, #6158c8);
}

.cta-inner {
  max-width: 780px;
  margin: 0 auto;
}

.cta h2 {
  max-width: 13ch;
  margin: 0 auto;
  color: #fff;
}

.cta p {
  margin-left: auto;
  margin-right: auto;
  color: rgba(255,255,255,.78);
}

.cta .actions {
  justify-content: center;
}

.footer {
  padding: 42px clamp(24px, 6vw, 88px);
  background:
    radial-gradient(circle at 15% 0%, rgba(77,231,255,.18), transparent 34%),
    linear-gradient(135deg, #0d3b47, #173b6a);
  border-top: 1px solid rgba(255,255,255,.16);
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer p {
  max-width: 470px;
  color: rgba(255,255,255,.58);
  font-size: 14px;
}

.footer-meta {
  display: grid;
  gap: 10px;
  justify-items: end;
}

.footer-legal-links {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-meta a {
  color: rgba(255,255,255,.76);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.footer-meta a:hover {
  color: #fff;
}

.legal-page {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 100vh;
  padding: 140px clamp(24px, 6vw, 88px) 96px;
  background: #fff;
}

.legal-content {
  width: min(920px, 100%);
  margin: 0 auto;
  color: #15313d;
}

.legal-page::before,
.pricing-page::before,
.tvstations-page::before,
.atlas-page::before,
.smartlayouts-page::before,
.tropical-page::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 112vh;
  z-index: -2;
  background:
    radial-gradient(circle at 15% 20%, rgba(77, 231, 255, .32), transparent 30%),
    radial-gradient(circle at 76% 28%, rgba(139, 125, 255, .34), transparent 32%),
    linear-gradient(135deg, #123342 0%, #13736e 42%, #214376 100%);
}

.legal-page::after,
.pricing-page::after,
.tvstations-page::after,
.atlas-page::after,
.smartlayouts-page::after,
.tropical-page::after {
  content: "";
  position: absolute;
  inset: 84vh 0 auto;
  height: 28vh;
  z-index: -1;
  background: linear-gradient(180deg, transparent, #f6fcff);
}

.pricing-page .pricing-hero::before,
.tvstations-page .tvstations-hero::before,
.atlas-page .atlas-hero::before,
.smartlayouts-page .smartlayouts-hero::before,
.tropical-page .tropical-hero::before,
.legal-page .legal-content::before {
  content: "";
  position: absolute;
  inset: -18vh -8vw auto;
  height: 130vh;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 30% 10%, rgba(255,255,255,.42), transparent 20%),
    radial-gradient(ellipse at 64% 26%, rgba(77,231,255,.42), transparent 26%),
    conic-gradient(from 210deg at 50% 45%, rgba(46,211,183,.14), rgba(76,141,255,.34), rgba(139,125,255,.24), rgba(46,211,183,.14));
  filter: blur(20px);
  opacity: .95;
}

.legal-content .eyebrow {
  color: rgba(255,255,255,.78);
}

.legal-content h1 {
  max-width: 12ch;
  color: #fff;
  font-size: clamp(48px, 7vw, 82px);
}

.legal-content > p:first-of-type,
.legal-content > p:nth-of-type(2) {
  color: rgba(255,255,255,.78);
}

.legal-content h2 {
  max-width: none;
  margin-top: 42px;
  color: #15313d;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.14;
}

.legal-content p,
.legal-content li {
  color: #5c7180;
  font-size: 17px;
  line-height: 1.72;
}

.legal-content p {
  margin-top: 18px;
}

.legal-content ul {
  margin: 16px 0 0;
  padding-left: 22px;
}

.pricing-page {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 100vh;
  padding: 142px clamp(24px, 6vw, 88px) 104px;
  background: #fff;
}

.pricing-hero {
  width: min(1160px, 100%);
  margin: 0 auto clamp(22px, 3.5vw, 38px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 360px);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.pricing-hero-copy .eyebrow {
  color: rgba(255,255,255,.78);
}

.pricing-hero h1 {
  max-width: 11ch;
  color: #fff;
  font-size: clamp(48px, 7vw, 88px);
}

.pricing-hero p {
  max-width: 64ch;
  margin-top: 24px;
  color: rgba(255,255,255,.78);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.68;
}

.pricing-trial-image {
  display: block;
  width: min(100%, 360px);
  justify-self: end;
  transform: rotate(10deg);
  filter: drop-shadow(0 22px 48px rgba(3, 7, 10, .26));
}

.pricing-toggle-row {
  width: min(1160px, 100%);
  margin: 0 auto clamp(34px, 5vw, 60px);
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing-toggle {
  width: max-content;
}

.billing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border: 1px solid rgba(44,169,190,.22);
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 18px 48px rgba(38, 132, 155, .12);
}

.billing-toggle button {
  appearance: none;
  min-width: 104px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 0;
  border-radius: 999px;
  color: #426071;
  background: transparent;
  cursor: pointer;
  font: 750 14px/1 Geologica, system-ui, sans-serif;
}

.billing-toggle button.active {
  color: #063039;
  background: linear-gradient(135deg, rgba(77,231,255,.74), rgba(46,211,183,.68));
  box-shadow: 0 10px 28px rgba(38, 132, 155, .18);
}

.annual-toggle-chip {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 7px;
  border-radius: 999px;
  color: #063039;
  background: rgba(255,209,102,.96);
  font: 800 10px/1 "JetBrains Mono", ui-monospace, monospace;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.pricing-plans {
  width: min(1160px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.pricing-plan {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 520px;
  padding: 28px;
  border: 1px solid rgba(44,169,190,.18);
  border-radius: 8px;
  color: #15313d;
  background: rgba(255,255,255,.9);
  box-shadow: 0 22px 70px rgba(38, 132, 155, .13);
}

.pricing-plan-featured {
  border-color: rgba(23,139,135,.42);
  box-shadow: 0 30px 92px rgba(38, 132, 155, .2);
}

.pricing-badge {
  width: max-content;
  margin-bottom: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #063039;
  background: rgba(255,209,102,.9);
  font: 800 11px/1 "JetBrains Mono", ui-monospace, monospace;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.pricing-plan-head {
  display: grid;
  gap: 18px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(44,169,190,.16);
}

.pricing-plan h2 {
  max-width: none;
  color: #15313d;
  font-size: clamp(28px, 3.2vw, 40px);
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.pricing-amount strong {
  color: #0f6f7d;
  font-size: clamp(46px, 5vw, 64px);
  line-height: .9;
}

.pricing-amount span {
  color: #5c7180;
  font-size: 18px;
  font-weight: 700;
}

.pricing-amount .annual-plan-savings-chip {
  align-self: center;
  margin-left: 2px;
  padding: 5px 8px;
  border-radius: 999px;
  color: #063039;
  background: rgba(255,209,102,.94);
  font: 800 11px/1 "JetBrains Mono", ui-monospace, monospace;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-amount .annual-plan-savings-chip[hidden] {
  display: none;
}

.pricing-plan-fit {
  margin: -4px 0 0;
  color: #4f6574;
  font-size: 15px;
  line-height: 1.45;
}

.pricing-plan ul {
  display: grid;
  gap: 15px;
  margin: 24px 0 30px;
  padding: 0;
  list-style: none;
}

.pricing-plan li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  color: #4f6574;
  font-size: 16px;
  line-height: 1.45;
}

.pricing-plan li.pricing-plan-inherits {
  display: block;
  color: #15313d;
  font-weight: 800;
}

.subscription-feature-mark {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(77,231,255,.92), rgba(46,211,183,.86));
  box-shadow: 0 0 0 4px rgba(77,231,255,.14);
}

.subscription-feature-mark:after {
  content: "";
  display: block;
  width: 7px;
  height: 4px;
  margin: 5px 0 0 5px;
  border: solid #063039;
  border-width: 0 0 2px 2px;
  transform: rotate(-45deg);
}

.pricing-plan-button {
  width: 100%;
  min-height: 54px;
  margin-top: auto;
  border-color: transparent;
  color: #fff;
  background: linear-gradient(135deg, #178b87, #3159bc);
  box-shadow: 0 20px 46px rgba(23, 139, 135, .2);
  cursor: pointer;
  font: 750 15px/1 Geologica, system-ui, sans-serif;
}

.pricing-plan-enterprise {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .9fr);
  min-height: 0;
  gap: 28px;
  align-items: start;
  border-color: rgba(23,139,135,.34);
  background:
    radial-gradient(circle at 8% 0%, rgba(77,231,255,.18), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.95), rgba(246,252,255,.95));
}

.pricing-plan-enterprise-copy {
  display: grid;
  gap: 14px;
}

.pricing-enterprise-label {
  width: max-content;
  padding: 7px 10px;
  border-radius: 999px;
  color: #063039;
  background: rgba(255,209,102,.9);
  font: 800 11px/1 "JetBrains Mono", ui-monospace, monospace;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.pricing-plan-enterprise p {
  max-width: 58ch;
  color: #5c7180;
  font-size: 17px;
  line-height: 1.58;
}

.pricing-plan-enterprise ul {
  margin: 0;
}

.pricing-enterprise-actions {
  grid-column: 2;
}

.pricing-enterprise-button {
  min-width: 220px;
}

.smartlayouts-page {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 100vh;
  padding: 142px clamp(24px, 6vw, 88px) 104px;
  background: #fff;
}

.smartlayouts-hero {
  width: min(1160px, 100%);
  margin: 0 auto clamp(42px, 6vw, 78px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 520px);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}

.smartlayouts-hero .eyebrow,
.smartlayout-brand .eyebrow {
  color: #2ca9be;
}

.smartlayouts-hero .eyebrow {
  color: rgba(255,255,255,.78);
}

.smartlayouts-hero h1 {
  max-width: 12ch;
  color: #fff;
  font-size: clamp(48px, 7vw, 88px);
}

.smartlayouts-hero p {
  max-width: 66ch;
  margin-top: 24px;
  color: rgba(255,255,255,.78);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.68;
}

.smartlayout-editor-preview {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 8px;
  background: rgba(7, 16, 21, .86);
  box-shadow: 0 32px 92px rgba(3, 7, 10, .34);
  backdrop-filter: blur(18px);
}

.smartlayout-toolbar {
  display: flex;
  gap: 8px;
  padding: 14px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.08);
}

.smartlayout-toolbar span {
  width: 34px;
  height: 28px;
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(77,231,255,.7), rgba(46,211,183,.56));
}

.smartlayout-canvas {
  position: relative;
  padding: 18px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px) 0 0 / 22px 22px,
    linear-gradient(180deg, rgba(255,255,255,.05) 1px, transparent 1px) 0 0 / 22px 22px,
    #071015;
}

.smartlayout-canvas img {
  display: block;
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(0,0,0,.28);
}

.smartlayout-selection {
  position: absolute;
  right: 11%;
  bottom: 18%;
  width: 38%;
  height: 18%;
  border: 2px solid #ffd166;
  border-radius: 6px;
  box-shadow: 0 0 0 4px rgba(255,209,102,.18);
}

.smartlayout-selection::before,
.smartlayout-selection::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ffd166;
}

.smartlayout-selection::before {
  top: -6px;
  left: -6px;
}

.smartlayout-selection::after {
  right: -6px;
  bottom: -6px;
}

.smartlayout-properties {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 14px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.smartlayout-properties div {
  display: grid;
  gap: 5px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  background: rgba(255,255,255,.08);
}

.smartlayout-properties span,
.smartlayout-feature-card span,
.smartlayout-control-stack span {
  color: #2ca9be;
  font: 800 11px/1.2 "JetBrains Mono", ui-monospace, monospace;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.smartlayout-properties strong {
  color: #fff;
  font-size: 14px;
  line-height: 1.2;
}

.smartlayout-feature-grid {
  width: min(1160px, 100%);
  margin: 0 auto clamp(48px, 7vw, 86px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.smartlayout-feature-card {
  min-height: 310px;
  padding: 28px;
  border: 1px solid rgba(44,169,190,.18);
  border-radius: 8px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 22px 70px rgba(38, 132, 155, .12);
}

.smartlayout-feature-card h2 {
  max-width: 12ch;
  margin-top: 18px;
  color: #15313d;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.08;
}

.smartlayout-feature-card p {
  margin-top: 18px;
  color: #5c7180;
  font-size: 16px;
  line-height: 1.62;
}

.smartlayout-clarity {
  width: min(1160px, 100%);
  margin: 0 auto clamp(48px, 7vw, 86px);
  padding: 0;
}

.smartlayout-clarity .eyebrow {
  color: #2ca9be;
}

.smartlayout-clarity h2 {
  color: #15313d;
}

.smartlayout-clarity p {
  color: #5c7180;
}

.smartlayout-clarity-placeholder {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(44,169,190,.18);
  border-radius: 8px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 22px 70px rgba(38, 132, 155, .12);
}

.smartlayout-clarity-placeholder div {
  min-height: 340px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 12px;
  padding: 30px;
  text-align: center;
  background:
    radial-gradient(circle at 26% 20%, rgba(255,209,102,.24), transparent 30%),
    radial-gradient(circle at 74% 72%, rgba(77,231,255,.22), transparent 34%),
    linear-gradient(135deg, #123342, #13736e 56%, #214376);
}

.smartlayout-clarity-placeholder span {
  color: #2ca9be;
  font: 800 11px/1.2 "JetBrains Mono", ui-monospace, monospace;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.smartlayout-clarity-placeholder strong {
  max-width: 12ch;
  color: #fff;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.02;
}

.smartlayout-clarity-placeholder figcaption {
  padding: 18px 20px 20px;
  color: #5c7180;
  font-size: 16px;
  line-height: 1.55;
}

.smartlayout-clarity-image {
  height: clamp(240px, calc(38vw - 100px), 420px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 0;
  padding: 0;
  background: #071015;
}

.smartlayout-clarity-placeholder .smartlayout-clarity-image {
  display: flex;
  min-height: 0;
  padding: 0;
  background: #071015;
}

.smartlayout-clarity-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.smartlayout-brand {
  width: min(1160px, 100%);
  margin: 0 auto;
  padding: 0;
}

.smartlayout-brand h2 {
  color: #15313d;
}

.smartlayout-brand p {
  color: #5c7180;
}

.smartlayout-control-stack {
  display: grid;
  gap: 16px;
}

.smartlayout-control-stack article {
  padding: 22px;
  border: 1px solid rgba(44,169,190,.16);
  border-radius: 8px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 20px 58px rgba(38, 132, 155, .11);
}

.smartlayout-control-stack p {
  margin-top: 10px;
  color: #15313d;
  font-size: 18px;
  line-height: 1.48;
}

.smartlayout-assets {
  width: min(1160px, 100%);
  margin: clamp(48px, 7vw, 86px) auto 0;
  padding-top: clamp(42px, 6vw, 72px);
  border-top: 1px solid rgba(44,169,190,.18);
}

.smartlayout-assets-intro {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.smartlayout-assets-copy {
  max-width: 820px;
}

.smartlayout-assets-copy .eyebrow {
  color: #2ca9be;
}

.smartlayout-assets-copy h2 {
  max-width: 14ch;
  color: #15313d;
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.02;
}

.smartlayout-assets-copy p {
  max-width: 72ch;
  margin-top: 22px;
  color: #5c7180;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.66;
}

.smartlayout-assets-image {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(44,169,190,.18);
  border-radius: 8px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 22px 70px rgba(38, 132, 155, .14);
}

.smartlayout-assets-image img {
  display: block;
  width: 100%;
  height: auto;
}

.smartlayout-asset-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.smartlayout-asset-grid article {
  min-height: 230px;
  padding: 24px;
  border: 1px solid rgba(44,169,190,.16);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(246,252,255,.92));
  box-shadow: 0 20px 58px rgba(38, 132, 155, .1);
}

.smartlayout-asset-grid span {
  color: #2ca9be;
  font: 800 11px/1.2 "JetBrains Mono", ui-monospace, monospace;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.smartlayout-asset-grid p {
  margin-top: 18px;
  color: #15313d;
  font-size: 18px;
  line-height: 1.52;
}

.tropical-page {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 100vh;
  padding: 142px clamp(24px, 6vw, 88px) 104px;
  background: #fff;
}

.tropical-hero {
  width: min(1160px, 100%);
  margin: 0 auto clamp(42px, 6vw, 78px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}

.tropical-hero .eyebrow,
.tropical-capabilities .eyebrow {
  color: #2ca9be;
}

.tropical-hero .eyebrow {
  color: rgba(255,255,255,.78);
}

.tropical-hero h1 {
  max-width: 12ch;
  color: #fff;
  font-size: clamp(48px, 7vw, 88px);
}

.tropical-hero p {
  max-width: 66ch;
  margin-top: 24px;
  color: rgba(255,255,255,.78);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.68;
}

.tropical-product-panel {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(44,169,190,.18);
  border-radius: 8px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 28px 84px rgba(38, 132, 155, .16);
}

.tropical-product-row {
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid rgba(44,169,190,.13);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(246,252,255,.9), rgba(255,255,255,.94));
}

.tropical-product-row span,
.tropical-capability-stack span,
.tropical-placeholder-frame span {
  color: #2ca9be;
  font: 800 11px/1.2 "JetBrains Mono", ui-monospace, monospace;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.tropical-product-row strong {
  color: #15313d;
  font-size: 21px;
  line-height: 1.22;
}

.tropical-visuals {
  width: min(1160px, 100%);
  margin: 0 auto clamp(48px, 7vw, 86px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.tropical-placeholder {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(44,169,190,.18);
  border-radius: 8px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 22px 70px rgba(38, 132, 155, .12);
}

.tropical-placeholder h3 {
  max-width: none;
  padding: 18px 20px 16px;
  color: #15313d;
  font-size: 20px;
  line-height: 1.2;
}

.tropical-placeholder-frame {
  min-height: 320px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 12px;
  padding: 30px;
  text-align: center;
  background:
    radial-gradient(circle at 25% 20%, rgba(77,231,255,.22), transparent 32%),
    radial-gradient(circle at 72% 72%, rgba(46,211,183,.18), transparent 30%),
    linear-gradient(135deg, #123342, #214376);
}

.tropical-placeholder-frame.outlook {
  background:
    radial-gradient(circle at 28% 28%, rgba(255,209,102,.24), transparent 30%),
    radial-gradient(circle at 72% 52%, rgba(77,231,255,.22), transparent 34%),
    linear-gradient(135deg, #123342, #13736e);
}

.tropical-placeholder-frame strong {
  max-width: 14ch;
  color: #fff;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.04;
}

.tropical-example-image {
  background: #071015;
}

.tropical-example-image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.tropical-placeholder figcaption {
  display: grid;
  gap: 8px;
  padding: 18px 20px 20px;
  color: #5c7180;
  font-size: 16px;
  line-height: 1.55;
}

.tropical-placeholder figcaption span {
  color: #2ca9be;
  font: 800 11px/1.2 "JetBrains Mono", ui-monospace, monospace;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.tropical-speed-callout {
  width: min(1160px, 100%);
  margin: 0 auto clamp(48px, 7vw, 86px);
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(255,255,255,.48);
  border-radius: 8px;
  color: #fff;
  background:
    radial-gradient(circle at 12% 0%, rgba(255,255,255,.28), transparent 34%),
    linear-gradient(135deg, #123342, #13736e 52%, #214376);
  box-shadow: 0 30px 86px rgba(38, 132, 155, .2);
}

.tropical-speed-callout .eyebrow {
  color: rgba(255,255,255,.76);
}

.tropical-speed-callout h2 {
  max-width: 16ch;
  margin-top: 12px;
  color: #fff;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.02;
}

.tropical-speed-callout p {
  max-width: 76ch;
  margin-top: 20px;
  color: rgba(255,255,255,.78);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.62;
}

.tropical-smartlayouts {
  width: min(1160px, 100%);
  margin: 0 auto clamp(48px, 7vw, 86px);
  display: grid;
  grid-template-columns: minmax(240px, 340px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.tropical-smartlayouts .eyebrow {
  color: #2ca9be;
}

.tropical-smartlayouts h2 {
  max-width: 15ch;
  color: #15313d;
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.02;
}

.tropical-smartlayouts p {
  max-width: 72ch;
  margin-top: 22px;
  color: #5c7180;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.66;
}

.tropical-smartlayout-stack {
  display: grid;
  gap: 16px;
}

.tropical-smartlayout-stack article {
  padding: 22px;
  border: 1px solid rgba(44,169,190,.16);
  border-radius: 8px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 20px 58px rgba(38, 132, 155, .11);
}

.tropical-smartlayout-stack span {
  color: #2ca9be;
  font: 800 11px/1.2 "JetBrains Mono", ui-monospace, monospace;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.tropical-smartlayout-stack p {
  margin-top: 10px;
  color: #15313d;
  font-size: 18px;
  line-height: 1.48;
}

.tropical-capabilities {
  width: min(1160px, 100%);
  margin: 0 auto;
  padding: 0;
}

.tropical-capabilities h2 {
  color: #15313d;
}

.tropical-capabilities p {
  color: #5c7180;
}

.tropical-capability-stack {
  display: grid;
  gap: 16px;
}

.tropical-capability-stack article {
  padding: 22px;
  border: 1px solid rgba(44,169,190,.16);
  border-radius: 8px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 20px 58px rgba(38, 132, 155, .11);
}

.tropical-capability-stack p {
  margin-top: 10px;
  color: #15313d;
  font-size: 18px;
  line-height: 1.48;
}

.tvstations-page {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 100vh;
  padding: 142px clamp(24px, 6vw, 88px) 104px;
  background: #fff;
}

.tvstations-hero {
  width: min(1160px, 100%);
  margin: 0 auto clamp(42px, 6vw, 78px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}

.tvstations-hero .eyebrow,
.meteorologist-voice .eyebrow {
  color: #2ca9be;
}

.tvstations-hero .eyebrow {
  color: rgba(255,255,255,.78);
}

.tvstations-hero h1 {
  max-width: 12ch;
  color: #fff;
  font-size: clamp(48px, 7vw, 88px);
}

.tvstations-hero p {
  max-width: 66ch;
  margin-top: 24px;
  color: rgba(255,255,255,.78);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.68;
}

.tvstations-control-panel {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(44,169,190,.18);
  border-radius: 8px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 28px 84px rgba(38, 132, 155, .16);
}

.panel-row {
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid rgba(44,169,190,.13);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(246,252,255,.9), rgba(255,255,255,.94));
}

.panel-row span,
.feature-number,
.voice-stack span {
  color: #2ca9be;
  font: 800 11px/1.2 "JetBrains Mono", ui-monospace, monospace;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.panel-row strong {
  color: #15313d;
  font-size: 22px;
  line-height: 1.18;
}

.station-feature-grid {
  width: min(1160px, 100%);
  margin: 0 auto clamp(48px, 7vw, 86px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.station-feature-card {
  min-height: 300px;
  padding: 28px;
  border: 1px solid rgba(44,169,190,.18);
  border-radius: 8px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 22px 70px rgba(38, 132, 155, .12);
}

.station-feature-card h2 {
  max-width: 11ch;
  margin-top: 18px;
  color: #15313d;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.08;
}

.station-feature-card p {
  margin-top: 18px;
  color: #5c7180;
  font-size: 16px;
  line-height: 1.62;
}

.meteorologist-voice {
  width: min(1160px, 100%);
  margin: 0 auto;
  padding: 0;
}

.meteorologist-voice h2 {
  color: #15313d;
}

.meteorologist-voice p {
  color: #5c7180;
}

.voice-stack {
  display: grid;
  gap: 16px;
}

.voice-stack article {
  padding: 22px;
  border: 1px solid rgba(44,169,190,.16);
  border-radius: 8px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 20px 58px rgba(38, 132, 155, .11);
}

.voice-stack p {
  margin-top: 10px;
  color: #15313d;
  font-size: 18px;
  line-height: 1.48;
}

.atlas-page {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 100vh;
  padding: 142px clamp(24px, 6vw, 88px) 104px;
  background: #fff;
}

.atlas-hero {
  width: min(1160px, 100%);
  margin: 0 auto clamp(28px, 4vw, 48px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}

.atlas-hero .eyebrow,
.atlas-voice .eyebrow {
  color: #2ca9be;
}

.atlas-hero .eyebrow {
  color: rgba(255,255,255,.78);
}

.atlas-hero h1 {
  max-width: 11ch;
  color: #fff;
  font-size: clamp(48px, 7vw, 88px);
}

.atlas-hero p {
  max-width: 66ch;
  margin-top: 24px;
  color: rgba(255,255,255,.78);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.68;
}

.atlas-logo-panel {
  display: grid;
  place-items: center;
}

.atlas-logo-panel img {
  display: block;
  width: min(100%, 520px);
  height: auto;
}

.atlas-data-panel {
  width: min(1160px, 100%);
  margin: 0 auto clamp(48px, 7vw, 86px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.atlas-flow-row {
  display: grid;
  gap: 8px;
  align-content: start;
  min-height: 150px;
  padding: 18px;
  border: 1px solid rgba(44,169,190,.13);
  border-radius: 8px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 18px 54px rgba(38, 132, 155, .1);
}

.atlas-flow-row span,
.atlas-output-stack span {
  color: #2ca9be;
  font: 800 11px/1.2 "JetBrains Mono", ui-monospace, monospace;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.atlas-flow-row strong {
  color: #15313d;
  font-size: 21px;
  line-height: 1.22;
}

.atlas-workflow-example {
  position: relative;
  width: min(1160px, 100%);
  margin: 0 auto clamp(48px, 7vw, 86px);
  padding-top: 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 48px minmax(0, 1fr) 48px minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
}

.atlas-example-ribbon {
  position: absolute;
  top: 0;
  left: 0;
  width: max-content;
  padding: 9px 14px;
  border-radius: 8px 8px 0 0;
  color: #063039;
  background: linear-gradient(135deg, rgba(255,209,102,.96), rgba(46,211,183,.8));
  box-shadow: 0 12px 32px rgba(38, 132, 155, .16);
  font: 850 12px/1 "JetBrains Mono", ui-monospace, monospace;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.atlas-workflow-card {
  min-height: 390px;
  padding: 28px;
  border: 1px solid rgba(44,169,190,.18);
  border-radius: 8px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 22px 70px rgba(38, 132, 155, .12);
}

.atlas-workflow-card h2 {
  max-width: 10ch;
  margin-top: 18px;
  color: #15313d;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.08;
}

.atlas-workflow-card p {
  margin-top: 18px;
  color: #5c7180;
  font-size: 18px;
  line-height: 1.62;
}

.atlas-workflow-raw pre {
  min-height: 230px;
  margin: 20px 0 0;
  padding: 18px;
  overflow: auto;
  border: 1px solid rgba(21, 49, 61, .12);
  border-radius: 8px;
  color: #d9f7ff;
  background: #0b2530;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04);
}

.atlas-workflow-raw code {
  color: inherit;
  font: 600 12px/1.55 "JetBrains Mono", ui-monospace, monospace;
  white-space: pre-wrap;
}

.atlas-workflow-instruction {
  background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(246,252,255,.92)),
    radial-gradient(circle at 100% 0, rgba(255,209,102,.2), transparent 42%);
}

.atlas-workflow-summary {
  position: relative;
  border-color: rgba(23,139,135,.3);
  background:
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(245,255,252,.94)),
    radial-gradient(circle at 100% 0, rgba(46,211,183,.22), transparent 42%);
}

.atlas-summary-logo {
  display: block;
  width: min(190px, 72%);
  height: auto;
  margin: 8px auto 22px;
}

.atlas-workflow-summary p {
  color: #15313d;
  font-size: 16px;
  font-weight: 650;
}

.atlas-workflow-arrow {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100%;
}

.atlas-workflow-arrow::before {
  content: "";
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(44,169,190,.2), rgba(46,211,183,.78));
}

.atlas-workflow-arrow::after {
  content: "";
  position: absolute;
  right: 0;
  width: 13px;
  height: 13px;
  border-top: 3px solid rgba(46,211,183,.85);
  border-right: 3px solid rgba(46,211,183,.85);
  transform: rotate(45deg);
}

.atlas-voice {
  width: min(1160px, 100%);
  margin: 0 auto;
  padding: 0;
}

.atlas-voice h2 {
  color: #15313d;
}

.atlas-voice h3 {
  margin-top: 10px;
  color: #15313d;
}

.atlas-voice p {
  color: #5c7180;
}

.atlas-output-stack {
  display: grid;
  gap: 16px;
}

.atlas-output-stack article {
  padding: 22px;
  border: 1px solid rgba(44,169,190,.16);
  border-radius: 8px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 20px 58px rgba(38, 132, 155, .11);
}

.atlas-output-stack p {
  margin-top: 10px;
  color: #15313d;
  font-size: 18px;
  line-height: 1.48;
}

.atlas-location-aware {
  width: min(1160px, 100%);
  margin: clamp(48px, 7vw, 86px) auto 0;
  padding-top: clamp(42px, 6vw, 72px);
  border-top: 1px solid rgba(44,169,190,.18);
}

.atlas-location-copy {
  max-width: 820px;
}

.atlas-location-copy .eyebrow {
  color: #2ca9be;
}

.atlas-location-copy h2 {
  max-width: 14ch;
  color: #15313d;
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.02;
}

.atlas-location-copy p {
  max-width: 72ch;
  margin-top: 22px;
  color: #5c7180;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.66;
}

.atlas-location-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.atlas-location-grid article {
  min-height: 230px;
  padding: 24px;
  border: 1px solid rgba(44,169,190,.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(246,252,255,.92));
  box-shadow: 0 20px 58px rgba(38, 132, 155, .1);
}

.atlas-location-grid span {
  color: #2ca9be;
  font: 800 11px/1.2 "JetBrains Mono", ui-monospace, monospace;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.atlas-location-grid p {
  margin-top: 18px;
  color: #15313d;
  font-size: 18px;
  line-height: 1.52;
}

.map-page {
  --map-service-notice-space: 82px;
  height: 100vh;
  overflow: hidden;
  background: #081116;
}

.map-page .nav {
  cursor: pointer;
  pointer-events: auto;
}

.map-page .brand,
.map-page .nav-links,
.map-page .nav-toggle {
  pointer-events: auto;
}

.map-page .alert-image-modal {
  bottom: var(--map-service-notice-space);
  padding: clamp(10px, 2vw, 28px);
}

.map-page .alert-image-backdrop {
  background: transparent;
  backdrop-filter: none;
}

.map-page .alert-image-panel {
  width: min(1280px, 98vw);
  max-height: min(94vh, calc(100vh - var(--map-service-notice-space) - 28px));
  border-radius: 18px;
}

.map-page .alert-image-head {
  padding: 14px 18px;
}

.map-page .alert-generated-text {
  max-width: 100ch;
  font-size: 14px;
  line-height: 1.4;
}

.map-shell {
  position: fixed;
  inset: 0;
  background: #124678;
}

.clearwarn-map {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: #124678;
}

.map-vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 46%, transparent 0%, transparent 48%, rgba(3, 7, 10, .16) 72%, rgba(3, 7, 10, .36) 100%),
    linear-gradient(180deg, rgba(3, 7, 10, .18), transparent 18%, transparent 76%, rgba(3, 7, 10, .22));
  mix-blend-mode: multiply;
}

.maplibregl-ctrl-group {
  border: 1px solid rgba(255, 255, 255, .2) !important;
  border-radius: 8px !important;
  overflow: hidden;
  box-shadow: 0 14px 38px rgba(0, 0, 0, .24) !important;
}

.maplibregl-ctrl-group button {
  width: 42px !important;
  height: 42px !important;
  color: #082b34 !important;
  background: rgba(255, 255, 255, .92) !important;
}

.map-page .maplibregl-ctrl-bottom-right {
  bottom: calc(var(--map-service-notice-space) + 12px) !important;
}

.map-service-notice {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 45;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  padding: 12px clamp(18px, 5vw, 72px);
  border: 1px solid rgba(255, 255, 255, .34);
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
  color: #fff;
  background:
    radial-gradient(circle at 12% 0%, rgba(255,255,255,.34), transparent 38%),
    linear-gradient(135deg, rgba(8, 44, 55, .94), rgba(18, 137, 132, .94) 56%, rgba(49, 89, 188, .94));
  background-size: 180% 180%, 240% 240%;
  box-shadow:
    0 -18px 54px rgba(3, 7, 10, .28),
    0 0 0 6px rgba(77, 231, 255, .08);
  backdrop-filter: blur(18px);
  animation: latest-alert-gradient 8s ease-in-out infinite;
  font-size: clamp(14px, 1.45vw, 18px);
  font-weight: 650;
  line-height: 1.35;
  text-align: center;
}

.map-service-notice-logo {
  width: clamp(112px, 12vw, 154px);
  height: auto;
  flex: 0 0 auto;
  margin-right: 2px;
}

.map-service-notice a {
  display: inline-flex;
  margin: 0 2px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #063039;
  background:
    linear-gradient(110deg, rgba(255,255,255,.96), rgba(255,209,102,.9), rgba(77,231,255,.88), rgba(255,255,255,.96));
  background-size: 260% 260%;
  font-size: 12px;
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
  animation: latest-alert-action-gradient 5s ease-in-out infinite;
}

.map-service-notice a:focus-visible {
  outline: 3px solid rgba(255, 209, 102, .9);
  outline-offset: 3px;
}

.clearwarn-alert-marker {
  --alert-color-rgb: 50, 50, 80;
  appearance: none;
  position: absolute;
  display: grid;
  place-items: center;
  width: 34px !important;
  height: 34px !important;
  margin: 0;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, .95);
  border-radius: 50%;
  background: rgb(var(--alert-color-rgb));
  cursor: pointer;
  box-shadow:
    0 0 0 5px rgba(var(--alert-color-rgb), .22),
    0 12px 30px rgba(3, 7, 10, .34);
}

.clearwarn-alert-marker:focus-visible {
  outline: 3px solid rgba(255, 209, 102, .9);
  outline-offset: 5px;
}

.clearwarn-alert-marker::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 2px solid rgba(var(--alert-color-rgb), .42);
  border-radius: 50%;
  animation: map-alert-pulse 1.9s ease-out infinite;
}

.clearwarn-alert-icon {
  position: relative;
  z-index: 1;
  width: 21px;
  height: 21px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 1px 1px rgba(3, 7, 10, .34));
  pointer-events: none;
}

.clearwarn-alert-icon circle {
  fill: none;
}

.clearwarn-tropical-marker {
  appearance: none;
  position: absolute;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  place-items: center;
  width: 38px !important;
  height: 38px !important;
  margin: 0;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, .96);
  border-radius: 50%;
  background: #1d6f92;
  color: #fff;
  cursor: pointer;
  box-shadow:
    0 0 0 5px rgba(29, 111, 146, .24),
    0 13px 30px rgba(3, 7, 10, .34);
}

.clearwarn-tropical-marker.small {
  width: 28px !important;
  height: 28px !important;
}

.clearwarn-tropical-marker.symbol {
  width: 42px !important;
  height: 42px !important;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.clearwarn-tropical-marker.symbol.small {
  width: 30px !important;
  height: 30px !important;
}

.clearwarn-tropical-marker.symbol.large {
  width: 48px !important;
  height: 48px !important;
}

.clearwarn-tropical-marker.outlook {
  width: 40px !important;
  height: 40px !important;
  background: #b85f1b;
  box-shadow:
    0 0 0 5px rgba(184, 95, 27, .24),
    0 13px 30px rgba(3, 7, 10, .34);
}

.clearwarn-tropical-marker.formation {
  background: #b85f1b;
}

.clearwarn-tropical-marker.hurricane {
  background: #a50d54;
}

.clearwarn-tropical-marker.storm {
  background: #146f94;
}

.clearwarn-tropical-marker.depression {
  background: #247d5c;
}

.clearwarn-tropical-marker.low {
  background: #7f6b18;
}

.clearwarn-tropical-marker:focus-visible {
  outline: 3px solid rgba(255, 209, 102, .9);
  outline-offset: 5px;
}

.clearwarn-tropical-marker::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 2px solid rgba(255, 255, 255, .32);
  border-radius: 50%;
  animation: map-alert-pulse 2.1s ease-out infinite;
}

.clearwarn-tropical-marker.symbol::before {
  display: none;
}

.clearwarn-tropical-marker .clearwarn-alert-icon {
  grid-area: 1 / 1;
  width: 23px;
  height: 23px;
  opacity: .72;
}

.tropical-symbol-icon {
  display: block;
  width: 100%;
  height: 100%;
  filter:
    drop-shadow(0 2px 2px rgba(255, 255, 255, .76))
    drop-shadow(0 8px 12px rgba(3, 7, 10, .36));
  pointer-events: none;
}

.clearwarn-tropical-marker.small .clearwarn-alert-icon {
  width: 18px;
  height: 18px;
}

.clearwarn-tropical-marker .tropical-marker-label {
  grid-area: 1 / 1;
  position: relative;
  z-index: 2;
  max-width: 32px;
  overflow: hidden;
  color: #fff;
  font: 800 9px/1 "JetBrains Mono", monospace;
  letter-spacing: 0;
  text-align: center;
  text-shadow: 0 1px 2px rgba(3, 7, 10, .65);
  white-space: nowrap;
}

.clearwarn-tropical-marker.small .tropical-marker-label {
  max-width: 22px;
  font-size: 7px;
}

.tropical-storm-chip-marker {
  appearance: none;
  position: relative;
  display: block;
  width: max-content;
  min-width: 180px;
  max-width: 340px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  letter-spacing: 0;
}

.tropical-storm-chip-marker:focus-visible {
  outline: 3px solid rgba(255, 209, 102, .9);
  outline-offset: 4px;
}

.tropical-chip-visual {
  display: grid;
  transform: scale(var(--tropical-chip-scale, 1));
  transform-origin: center;
  transition: transform .12s ease-out;
}

.tropical-storm-chip-marker .tropical-chip-visual {
  gap: 2px;
  width: max-content;
  min-width: 180px;
  max-width: 340px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, .74);
  border-radius: 10px;
  background: rgba(10, 22, 32, .88);
  overflow: hidden;
  text-shadow: 0 1px 2px rgba(3, 7, 10, .65);
  box-shadow: 0 8px 20px rgba(3, 7, 10, .24);
}

.tropical-storm-chip-marker span,
.tropical-storm-chip-marker strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tropical-storm-chip-marker span {
  color: rgba(220, 245, 255, .88);
  font: 800 13px/1 Arial, Helvetica, sans-serif;
}

.tropical-storm-chip-marker strong {
  color: #fff;
  font: 900 24px/1.05 Arial, Helvetica, sans-serif;
}

.tropical-formation-chip {
  appearance: none;
  position: absolute;
  display: block;
  width: 112px !important;
  min-height: 58px !important;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.tropical-formation-chip:focus-visible {
  outline: 3px solid rgba(255, 209, 102, .9);
  outline-offset: 4px;
}

.tropical-formation-chip .tropical-chip-visual {
  gap: 3px;
  width: 112px !important;
  min-height: 58px !important;
  padding: 7px 9px;
  border: 1px solid rgba(126, 214, 245, .86);
  border-radius: 7px;
  background: #061f36;
  box-shadow:
    0 0 0 1px rgba(3, 7, 10, .42),
    0 10px 24px rgba(3, 7, 10, .42);
}

.formation-chip-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 8px;
  width: 100%;
}

.formation-chip-row span {
  color: rgba(220, 245, 255, .88);
  font: 800 10px/1 Arial, Helvetica, sans-serif;
  letter-spacing: 0;
  text-align: left;
  white-space: nowrap;
}

.formation-chip-row strong {
  color: #fff;
  font: 900 20px/1 Arial, Helvetica, sans-serif;
  letter-spacing: 0;
  text-align: right;
  text-shadow: 0 1px 2px rgba(3, 7, 10, .72);
  white-space: nowrap;
}

.map-user-reticle {
  position: relative;
  width: 36px;
  height: 36px;
  border: 2px solid rgba(255, 255, 255, .96);
  border-radius: 50%;
  background:
    linear-gradient(rgba(255, 255, 255, .96), rgba(255, 255, 255, .96)) 50% 0 / 2px 8px no-repeat,
    linear-gradient(rgba(255, 255, 255, .96), rgba(255, 255, 255, .96)) 50% 100% / 2px 8px no-repeat,
    linear-gradient(90deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .96)) 0 50% / 8px 2px no-repeat,
    linear-gradient(90deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .96)) 100% 50% / 8px 2px no-repeat,
    radial-gradient(circle at 50% 50%, #4de7ff 0 4px, rgba(77, 231, 255, .22) 4px 10px, transparent 10px);
  box-shadow:
    0 0 0 5px rgba(77, 231, 255, .22),
    0 12px 30px rgba(3, 7, 10, .34);
  pointer-events: none;
}

.map-user-reticle::before {
  content: "";
  position: absolute;
  inset: -10px;
  border: 2px solid rgba(77, 231, 255, .42);
  border-radius: 50%;
  animation: map-alert-pulse 2.2s ease-out infinite;
}

@keyframes map-alert-pulse {
  0% {
    opacity: .9;
    transform: scale(.7);
  }

  100% {
    opacity: 0;
    transform: scale(1.65);
  }
}

@media (max-width: 1120px) {
  .hero-inner,
  .feature,
  .live-map,
  .imagery-compare,
  .tropical-alerts,
  .product {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 700px;
  }

  .alert-type-grid,
  .tropical-weather-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-hero {
    grid-template-columns: 1fr;
  }

  .smartlayouts-hero,
  .smartlayout-feature-grid,
  .smartlayout-clarity,
  .smartlayout-assets-intro,
  .smartlayout-asset-grid,
  .tropical-hero,
  .tropical-visuals,
  .tropical-smartlayouts {
    grid-template-columns: 1fr;
  }

  .smartlayout-feature-card {
    min-height: 0;
  }

  .pricing-plans {
    grid-template-columns: 1fr;
  }

  .pricing-plan {
    min-height: 0;
  }

  .pricing-plan-enterprise {
    grid-template-columns: 1fr;
  }

  .pricing-enterprise-actions {
    grid-column: auto;
  }

  .pricing-enterprise-button {
    width: 100%;
  }

  .tvstations-hero,
  .atlas-hero,
  .smartlayouts-hero,
  .smartlayout-clarity,
  .tropical-hero,
  .station-feature-grid,
  .smartlayout-feature-grid,
  .smartlayout-assets-intro,
  .smartlayout-asset-grid,
  .tropical-visuals,
  .tropical-smartlayouts,
  .atlas-location-grid {
    grid-template-columns: 1fr;
  }

  .atlas-data-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .atlas-workflow-example {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .station-feature-card,
  .smartlayout-feature-card,
  .tropical-placeholder-frame,
  .atlas-workflow-card {
    min-height: 0;
  }

  .atlas-workflow-arrow {
    min-height: 42px;
  }

  .atlas-workflow-arrow::before {
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, rgba(44,169,190,.2), rgba(46,211,183,.78));
  }

  .atlas-workflow-arrow::after {
    right: auto;
    bottom: 0;
    transform: rotate(135deg);
  }
}

@media (max-width: 980px) {
  .audience-grid {
    grid-template-columns: repeat(2, minmax(0, 320px));
    justify-content: center;
  }
}

@media (max-width: 860px) {
  .nav {
    height: 68px;
    pointer-events: auto;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    top: 68px;
    left: 14px;
    right: 14px;
    display: grid;
    gap: 2px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    background: rgba(3, 7, 10, .92);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .38);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .18s ease, transform .18s ease;
  }

  .map-page .nav-links {
    pointer-events: none;
  }

  .nav.is-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .map-page .nav.is-open .nav-links {
    pointer-events: auto;
  }

  .nav-links a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    border-radius: 8px;
    color: rgba(255, 255, 255, .9);
    font-size: 15px;
  }

  .nav-links a:hover {
    background: rgba(255, 255, 255, .08);
  }

  .nav-cta {
    width: 100%;
    min-height: 44px;
    justify-content: flex-start;
    margin-left: 0;
    padding: 0 12px;
    border: 0;
    border-radius: 8px;
    color: #063039;
    box-shadow: none;
    text-align: left;
  }

  .nav-cta:hover {
    transform: none;
  }

  .hero {
    padding-top: 168px;
  }

  .tvstations-page,
  .atlas-page,
  .smartlayouts-page,
  .tropical-page {
    padding-top: 118px;
  }

  .tvstations-control-panel,
  .tropical-product-panel,
  .tropical-capability-stack article,
  .station-feature-card,
  .smartlayout-editor-preview,
  .smartlayout-feature-card,
  .smartlayout-control-stack article,
  .voice-stack article,
  .atlas-logo-panel,
  .atlas-data-panel,
  .atlas-flow-row,
  .atlas-workflow-card,
  .atlas-output-stack article,
  .atlas-location-grid article {
    padding: 20px;
  }

  .atlas-data-panel {
    grid-template-columns: 1fr;
  }

  .atlas-flow-row {
    min-height: 0;
  }

  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 40px;
  }

  .process-grid,
  .audience-grid,
  .alert-type-grid,
  .tropical-weather-grid {
    grid-template-columns: 1fr;
  }

  .home-atlas.feature {
    grid-template-columns: 1fr;
  }

  .layout-customization.feature {
    grid-template-columns: 1fr;
  }

  .home-atlas-logo {
    min-height: 0;
    justify-self: center;
  }

  .pricing-page {
    padding-top: 118px;
  }

  .pricing-toggle-row {
    width: min(1160px, 100%);
  }

  .source-card {
    left: 2%;
    right: auto;
    top: 2%;
  }

  .phone-card {
    right: 0;
  }

}

@media (max-width: 620px) {
  .facebook-live-modal {
    padding: 10px;
  }

  .facebook-live-dialog {
    width: 100%;
    max-height: 92vh;
    border-radius: 14px;
  }

  .facebook-live-head {
    padding: 14px;
  }

  .facebook-live-frame-wrap {
    padding: 10px;
  }

  .hero,
  .feature,
  .process,
  .audiences,
  .live-map,
  .tropical-alerts,
  .product,
  .alert-types,
  .pricing-page,
  .smartlayouts-page,
  .tropical-page,
  .cta {
    padding-left: 20px;
    padding-right: 20px;
  }

  .pricing-hero h1 {
    font-size: 48px;
  }

  .pricing-toggle-row {
    width: 100%;
  }

  .billing-toggle button {
    min-width: 0;
    flex: 1 1 0;
  }

  .pricing-plan {
    padding: 22px;
  }

  .hero-visual {
    min-height: 620px;
  }

  h1 {
    font-size: 48px;
  }

  .actions,
  .button {
    width: 100%;
  }

  .button {
    justify-content: center;
  }

  .source-card {
    max-width: 260px;
    top: 3%;
  }

  .phone-card {
    width: 300px;
  }

  .signal-callout {
    width: calc(100% - 28px);
    padding: 14px 16px;
    font-size: 18px;
  }

  .alert-image-modal,
  .access-modal {
    padding: 14px;
  }

  .alert-image-panel,
  .access-panel {
    max-height: 88vh;
    border-radius: 18px;
  }

  .alert-image-head,
  .access-head {
    padding: 14px;
  }

  .alert-image-close,
  .access-close {
    width: 38px;
    height: 38px;
  }

  .access-form {
    padding: 16px;
  }

  .access-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .footer-content {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-meta {
    justify-items: start;
  }

  .footer-legal-links {
    justify-content: flex-start;
  }

}

.reveal-pop {
  opacity: 0;
  transform: translateY(38px) scale(.965);
  filter: blur(8px);
  transform-origin: center 72%;
  transition:
    opacity 360ms ease,
    filter 420ms ease,
    transform 520ms cubic-bezier(.18, .86, .22, 1.08);
  will-change: opacity, filter, transform;
}

.reveal-pop.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.reveal-pop.process-grid article,
.reveal-pop.audience-grid article {
  transition:
    opacity 360ms ease,
    filter 420ms ease,
    transform 520ms cubic-bezier(.18, .86, .22, 1.08);
}

.reveal-pop.process-grid:not(.is-visible) article,
.reveal-pop.audience-grid:not(.is-visible) article {
  opacity: 0;
  transform: translateY(24px) scale(.98);
  filter: blur(5px);
}

.reveal-pop.process-grid.is-visible article:nth-child(1),
.reveal-pop.audience-grid.is-visible article:nth-child(1) {
  transition-delay: 80ms;
}

.reveal-pop.process-grid.is-visible article:nth-child(2),
.reveal-pop.audience-grid.is-visible article:nth-child(2) {
  transition-delay: 140ms;
}

.reveal-pop.process-grid.is-visible article:nth-child(3),
.reveal-pop.audience-grid.is-visible article:nth-child(3) {
  transition-delay: 200ms;
}

.reveal-pop.audience-grid.is-visible article:nth-child(4) {
  transition-delay: 260ms;
}

@media (prefers-reduced-motion: reduce) {
  .reveal-pop,
  .reveal-pop.process-grid article,
  .reveal-pop.audience-grid article {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }

  .nav-cta,
  .button.early-access-large {
    animation: none !important;
  }
}
