:root {
  color-scheme: light;
  --ice: #eaf6ff;
  --ice-deep: #d8edfc;
  --navy: #072a55;
  --ink: #0a1d34;
  --muted: #5b7084;
  --blue: #0874d4;
  --blue-dark: #075ba7;
  --green: #238457;
  --gold: #a86e00;
  --red: #a73b4c;
  --line: rgba(7, 42, 85, 0.13);
  --white: #ffffff;
  --shadow: 0 28px 80px rgba(21, 83, 132, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: #f8fcff;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0 0 auto;
  z-index: -1;
  height: 720px;
  background:
    radial-gradient(circle at 75% 15%, rgba(255, 255, 255, 0.95) 0 3px, transparent 4px),
    radial-gradient(circle at 20% 28%, rgba(255, 255, 255, 0.8) 0 2px, transparent 3px),
    linear-gradient(180deg, var(--ice) 0%, rgba(234, 246, 255, 0) 100%);
  content: "";
  pointer-events: none;
}

a {
  color: var(--blue-dark);
  text-underline-offset: 3px;
}

:focus-visible {
  outline: 3px solid #0a69b8;
  outline-offset: 4px;
}

img {
  display: block;
  max-width: 100%;
}

.site-header,
.site-footer,
.marketing-hero,
.story-section,
.final-cta,
.marketing-disclaimer,
.content-page {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  border-bottom: 1px solid var(--line);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.wordmark img {
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(13, 78, 132, 0.18);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 38px);
}

.site-nav a {
  position: relative;
  padding-block: 12px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--blue);
  content: "";
  opacity: 0;
  transform: scaleX(0.6);
  transition: 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.marketing-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(460px, 1.04fr);
  gap: clamp(40px, 6vw, 92px);
  align-items: center;
  min-height: 760px;
  padding: 72px 0 84px;
}

.availability {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 26px;
  padding: 8px 13px;
  border: 1px solid rgba(7, 42, 85, 0.1);
  border-radius: 999px;
  color: #506c87;
  background: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 700;
}

.availability span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #39a46d;
  box-shadow: 0 0 0 4px rgba(57, 164, 109, 0.12);
}

.marketing-hero h1,
.content-hero h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(58px, 7.1vw, 100px);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.88;
}

.marketing-hero h1 em {
  color: var(--blue);
  font-style: normal;
}

.hero-lead {
  max-width: 590px;
  margin: 30px 0 0;
  color: #587087;
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 26px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 22px;
  border-radius: 999px;
  color: white;
  background: var(--navy);
  box-shadow: 0 10px 24px rgba(7, 42, 85, 0.16);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--blue-dark);
  box-shadow: 0 14px 32px rgba(7, 74, 135, 0.22);
  transform: translateY(-2px);
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 6px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

.quick-facts {
  display: flex;
  gap: 0;
  margin: 50px 0 0;
  padding: 0;
  list-style: none;
}

.quick-facts li {
  min-width: 122px;
  padding: 0 24px;
  border-left: 1px solid var(--line);
}

.quick-facts li:first-child {
  padding-left: 0;
  border-left: 0;
}

.quick-facts strong,
.quick-facts span {
  display: block;
}

.quick-facts strong {
  color: var(--navy);
  font-size: 14px;
}

.quick-facts span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.hero-showcase {
  position: relative;
  min-height: 620px;
  isolation: isolate;
}

.hero-showcase::before {
  position: absolute;
  top: 10%;
  right: 5%;
  bottom: 5%;
  left: 10%;
  z-index: -2;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 48% 52% 44% 56% / 53% 41% 59% 47%;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(205, 235, 255, 0.36));
  box-shadow: inset 0 0 70px rgba(255, 255, 255, 0.72);
  content: "";
  transform: rotate(-8deg);
}

.screen-card {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.94);
  border-radius: 34px;
  background: var(--ice);
  box-shadow: var(--shadow);
}

.screen-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.screen-card-front {
  top: 4px;
  left: 15%;
  z-index: 2;
  width: min(286px, 53%);
  transform: rotate(-4deg);
}

.screen-card-front img {
  transform: translateY(-1px);
}

.screen-card-back {
  top: 80px;
  right: 0;
  z-index: 1;
  width: min(248px, 46%);
  transform: rotate(7deg);
}

.risk-chip {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 17px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 38px rgba(11, 65, 112, 0.15);
  backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 800;
}

.risk-chip span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.risk-chip-watch {
  top: 13%;
  right: 0;
  color: var(--gold);
}

.risk-chip-watch span {
  background: #d59a20;
}

.risk-chip-safe {
  right: 10%;
  bottom: 1%;
  color: var(--green);
}

.risk-chip-safe span {
  background: #39a46d;
}

.ice-orb {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(130, 203, 249, 0.28));
  box-shadow: inset 10px 10px 22px rgba(255, 255, 255, 0.65), 0 18px 50px rgba(53, 139, 202, 0.12);
}

.orb-one {
  top: 2%;
  right: 17%;
  width: 70px;
  height: 70px;
}

.orb-two {
  bottom: 12%;
  left: 5%;
  width: 44px;
  height: 44px;
}

.audience-strip {
  padding: 32px max(24px, calc((100vw - 1180px) / 2));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(234, 246, 255, 0.58);
  text-align: center;
}

.audience-strip p {
  margin: 0 0 18px;
  color: #536b82;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.audience-strip div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: var(--navy);
  font-size: clamp(15px, 2vw, 19px);
  font-weight: 750;
}

.audience-strip i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #91b9d8;
}

.story-section {
  padding: 130px 0 120px;
  scroll-margin-top: 24px;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px 80px;
  align-items: end;
  margin-bottom: 70px;
}

.section-heading .kicker {
  grid-column: 1 / -1;
  margin-bottom: -22px;
}

.kicker {
  margin: 0 0 14px;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-heading h2,
.final-cta h2,
.contact-card h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(50px, 6vw, 80px);
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.section-heading > p:last-child {
  max-width: 470px;
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.6;
}

.feature-story {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: var(--ice);
}

.feature-story-wide {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(400px, 1.05fr);
  min-height: 630px;
  margin-bottom: 24px;
}

.feature-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(38px, 5.5vw, 72px);
}

.feature-number {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 26px;
  place-items: center;
  border: 1px solid rgba(8, 116, 212, 0.24);
  border-radius: 50%;
  color: var(--blue-dark);
  font-size: 11px;
  font-weight: 800;
}

.feature-copy h3 {
  max-width: 480px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(35px, 4vw, 54px);
  letter-spacing: -0.055em;
  line-height: 1;
}

.feature-copy p {
  max-width: 480px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}

.risk-scale {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 30px;
}

.risk-scale span {
  padding: 8px 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}

.risk-scale .safe { color: #167046; background: rgba(57, 164, 109, 0.13); }
.risk-scale .watch { color: #956200; background: rgba(213, 154, 32, 0.15); }
.risk-scale .likely { color: #b1571e; background: rgba(231, 117, 49, 0.14); }
.risk-scale .severe { color: #963245; background: rgba(192, 63, 83, 0.13); }

.feature-visual {
  position: relative;
  min-height: 560px;
}

.feature-visual img {
  position: absolute;
  width: 350px;
  height: auto;
  object-fit: contain;
  border: 8px solid white;
  border-radius: 28px 28px 0 0;
  box-shadow: 0 26px 64px rgba(23, 83, 130, 0.16);
}

.visual-dashboard img {
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
}

.feature-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.feature-story-tall {
  min-height: 800px;
}

.feature-story-tall .feature-copy {
  justify-content: flex-start;
  padding-bottom: 20px;
}

.feature-story-tall .feature-copy h3 {
  font-size: clamp(34px, 3.5vw, 48px);
}

.feature-story-tall .feature-visual {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 440px;
  min-height: 0;
}

.feature-story-tall .feature-visual img {
  top: 18px;
  left: 50%;
  width: 340px;
  transform: translateX(-50%);
}

.visual-outlook img {
  height: 430px;
  object-fit: cover;
  object-position: 50% 45%;
  border-radius: 28px;
}

.visual-notifications img {
  height: 430px;
  object-fit: cover;
  object-position: 50% 76%;
  border-radius: 28px;
}

.feature-story-dark {
  border-color: rgba(255, 255, 255, 0.1);
  background: linear-gradient(155deg, #082a57, #06477f);
}

.feature-story-dark .feature-number {
  border-color: rgba(255, 255, 255, 0.24);
  color: #b8ddff;
}

.feature-story-dark .feature-copy h3 {
  color: white;
}

.feature-story-dark .feature-copy p {
  color: #b6cee4;
}

.feature-story-dark .feature-visual img {
  border-color: rgba(255, 255, 255, 0.92);
  box-shadow: 0 30px 80px rgba(0, 12, 28, 0.35);
}

.feature-story-reverse .feature-copy {
  grid-column: 2;
}

.feature-story-reverse .feature-visual {
  grid-row: 1;
  grid-column: 1;
}

.visual-plants img {
  top: 62px;
  left: 50%;
  transform: translateX(-50%);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  color: #3d5871;
  font-size: 14px;
  font-weight: 750;
}

.check-list li::before {
  position: absolute;
  top: 3px;
  left: 0;
  display: grid;
  width: 16px;
  height: 16px;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--green);
  content: "✓";
  font-size: 10px;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 100px 28px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 20% 25%, rgba(111, 190, 247, 0.28), transparent 24%),
    radial-gradient(circle at 82% 72%, rgba(71, 145, 210, 0.24), transparent 26%),
    var(--navy);
  text-align: center;
}

.final-cta::before,
.final-cta::after {
  position: absolute;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  content: "";
}

.final-cta::before { top: -100px; left: -70px; }
.final-cta::after { right: -70px; bottom: -100px; }

.final-cta img {
  margin: 0 auto 30px;
  border-radius: 22px;
  box-shadow: 0 20px 48px rgba(0, 10, 28, 0.35);
}

.final-cta .kicker {
  color: #9fcef2;
}

.final-cta h2 {
  color: white;
}

.final-cta > p:not(.kicker) {
  margin: 24px auto 30px;
  color: #b9d2e8;
  font-size: 18px;
}

.button-light {
  color: var(--navy);
  background: white;
}

.button-light:hover,
.button-light:focus-visible {
  color: white;
}

.marketing-disclaimer {
  display: flex;
  gap: 12px;
  justify-content: center;
  padding: 28px 0 72px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.marketing-disclaimer strong {
  color: var(--ink);
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 26px;
  align-items: center;
  padding: 32px 0 46px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.footer-wordmark {
  font-size: 15px;
}

.footer-wordmark img {
  border-radius: 9px;
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  gap: 22px;
}

.site-footer nav a {
  padding-block: 8px;
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

/* Support and privacy */
.content-page {
  padding: 82px 0 110px;
}

.content-hero {
  max-width: 850px;
  padding: 54px 0 70px;
}

.content-hero h1 {
  font-size: clamp(58px, 8vw, 98px);
}

.content-hero > p:not(.kicker) {
  max-width: 720px;
  margin: 28px 0 0;
  color: #587087;
  font-size: 20px;
  line-height: 1.6;
}

.updated-date {
  display: inline-block;
  margin-top: 22px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 700;
}

.content-panel {
  padding: clamp(34px, 6vw, 74px);
  border: 1px solid var(--line);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 26px 70px rgba(23, 83, 130, 0.08);
}

.content-panel > h2,
.policy-sections h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.045em;
}

.faq-list {
  margin-top: 20px;
}

.faq-list article {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1.25fr);
  gap: 44px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.faq-list h3 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.35;
}

.faq-list p,
.policy-sections p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 24px;
  padding: 46px 54px;
  border-radius: 30px;
  color: white;
  background: var(--navy);
}

.contact-card .kicker {
  color: #9fcef2;
}

.contact-card h2 {
  color: white;
  font-size: clamp(34px, 4vw, 48px);
}

.contact-card .button {
  flex: 0 0 auto;
  color: var(--navy);
  background: white;
}

.policy-sections {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 70px;
}

.policy-sections section {
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.policy-sections section:nth-child(-n+2) {
  border-top: 0;
  padding-top: 0;
}

.policy-sections h2 {
  margin-bottom: 16px;
  font-size: 25px;
}

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

@media (max-width: 980px) {
  .marketing-hero {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-top: 60px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-lead {
    margin-inline: auto;
  }

  .hero-actions,
  .quick-facts {
    justify-content: center;
  }

  .hero-showcase {
    width: min(600px, 100%);
    margin-inline: auto;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .section-heading .kicker {
    margin-bottom: -12px;
  }

  .feature-story-wide {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer {
    grid-template-columns: auto 1fr auto;
  }

  .copyright {
    grid-column: 2;
  }
}

@media (max-width: 760px) {
  .site-header,
  .site-footer,
  .marketing-hero,
  .story-section,
  .final-cta,
  .marketing-disclaimer,
  .content-page {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    min-height: 74px;
  }

  .site-nav {
    gap: 16px;
  }

  .site-nav a:first-child {
    display: none;
  }

  .marketing-hero {
    min-height: 0;
    padding: 48px 0 64px;
  }

  .marketing-hero h1 {
    font-size: clamp(52px, 16vw, 74px);
  }

  .hero-lead {
    font-size: 18px;
  }

  .quick-facts li {
    min-width: 0;
    padding: 0 13px;
  }

  .hero-showcase {
    min-height: 500px;
  }

  .screen-card-front {
    left: 7%;
    width: 53%;
  }

  .screen-card-back {
    top: 66px;
    right: 8px;
    width: 46%;
  }

  .risk-chip-watch { top: 9%; }
  .risk-chip-safe { right: 4%; bottom: 0; }

  .audience-strip div {
    gap: 10px 14px;
  }

  .story-section {
    padding: 84px 0 76px;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .section-heading > p:last-child {
    font-size: 17px;
  }

  .feature-story,
  .final-cta,
  .content-panel {
    border-radius: 26px;
  }

  .feature-story-wide,
  .feature-pair {
    grid-template-columns: 1fr;
  }

  .feature-story-wide {
    min-height: 850px;
  }

  .feature-story-wide .feature-copy,
  .feature-story-reverse .feature-copy {
    grid-row: 1;
    grid-column: 1;
    justify-content: flex-start;
  }

  .feature-story-wide .feature-visual,
  .feature-story-reverse .feature-visual {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 470px;
    min-height: 0;
    grid-row: auto;
    grid-column: auto;
  }

  .feature-story-wide .feature-visual img,
  .feature-story-reverse .feature-visual img {
    top: 16px;
    width: min(330px, 76%);
  }

  .feature-story-tall {
    min-height: 770px;
  }

  .feature-copy {
    padding: 36px 30px;
  }

  .feature-copy h3,
  .feature-story-tall .feature-copy h3 {
    font-size: 38px;
  }

  .final-cta {
    padding: 72px 24px;
  }

  .marketing-disclaimer {
    flex-direction: column;
    padding-bottom: 54px;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
    gap: 18px;
  }

  .site-footer > p:not(.copyright) {
    display: none;
  }

  .site-footer nav {
    grid-row: 2;
  }

  .copyright {
    grid-row: 2;
    grid-column: 2;
  }

  .content-page {
    padding: 40px 0 72px;
  }

  .content-hero {
    padding: 42px 0 52px;
  }

  .content-hero > p:not(.kicker) {
    font-size: 18px;
  }

  .faq-list article,
  .policy-sections {
    grid-template-columns: 1fr;
  }

  .faq-list article {
    gap: 14px;
    padding: 28px 0;
  }

  .contact-card {
    align-items: flex-start;
    flex-direction: column;
    padding: 38px 30px;
  }

  .policy-sections {
    gap: 0;
  }

  .policy-sections section:nth-child(2) {
    padding-top: 34px;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 420px) {
  .wordmark {
    gap: 9px;
    font-size: 15px;
  }

  .wordmark img {
    width: 38px;
    height: 38px;
  }

  .site-nav a {
    font-size: 13px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .quick-facts {
    margin-top: 40px;
  }

  .quick-facts strong { font-size: 12px; }
  .quick-facts span { font-size: 10px; }

  .hero-showcase {
    min-height: 430px;
  }

  .screen-card {
    border-width: 6px;
    border-radius: 25px;
  }

  .risk-chip {
    padding: 9px 12px;
    font-size: 11px;
  }

  .feature-story-wide { min-height: 820px; }
  .feature-story-tall { min-height: 740px; }
}
