:root {
  color-scheme: dark;
  --ink: #f7fbff;
  --muted: #a8b8ce;
  --navy: #07142c;
  --navy-deep: #030a18;
  --blue: #48b8ff;
  --cyan: #6ee7f2;
  --sun: #ffb45d;
  --line: rgba(255, 255, 255, 0.12);
  --card: rgba(13, 32, 62, 0.74);
  --serif: Iowan Old Style, Baskerville, Times New Roman, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 75% 5%, rgba(43, 128, 224, 0.18), transparent 30rem),
    linear-gradient(180deg, var(--navy) 0%, #061227 42%, var(--navy-deep) 100%);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  padding: .8rem 1rem;
  border-radius: .5rem;
  background: white;
  color: var(--navy);
}

.skip-link:focus { top: 1rem; }

.site-header {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 20;
}

.brand { display: inline-flex; align-items: center; gap: .75rem; font-size: 1.05rem; font-weight: 720; letter-spacing: -.02em; }
.brand img { border-radius: 22%; box-shadow: 0 8px 28px rgba(0, 0, 0, .28); }

nav { display: flex; gap: 2.1rem; color: #c5d2e3; font-size: .88rem; }
nav a, footer a { transition: color .2s ease; }
nav a:hover, footer a:hover { color: var(--cyan); }

.header-cta {
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  padding: .7rem 1rem;
  font-size: .82rem;
  font-weight: 700;
  background: rgba(255, 255, 255, .06);
}

.hero {
  width: min(1180px, calc(100% - 40px));
  min-height: 750px;
  margin: 0 auto;
  padding: 78px 0 58px;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  align-items: center;
  gap: 2rem;
  position: relative;
}

.hero-copy { position: relative; z-index: 5; padding-bottom: 2rem; }
.eyebrow { margin: 0 0 1.4rem; color: var(--cyan); font-size: .72rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow span { display: inline-block; width: 1.8rem; height: 1px; margin: 0 .65rem .22rem 0; background: currentColor; }

h1, h2, h3, p { margin-top: 0; }

h1 {
  max-width: 640px;
  margin-bottom: 1.5rem;
  font-size: clamp(4rem, 7vw, 6.9rem);
  line-height: .88;
  letter-spacing: -.065em;
  font-weight: 750;
}

h1 em, h2 em { display: inline-block; color: var(--sun); font-family: var(--serif); font-weight: 400; }

.hero-lede {
  max-width: 565px;
  margin-bottom: 2rem;
  color: #b6c6d9;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.7;
}

.hero-actions { display: flex; align-items: center; gap: 1.25rem; }
.hero-actions > p { margin: 0; color: #778ba6; font-size: .78rem; max-width: 8rem; line-height: 1.4; }

.availability-card {
  min-width: 156px;
  padding: .72rem 1rem;
  display: flex;
  align-items: center;
  gap: .72rem;
  border-radius: .85rem;
  color: var(--navy-deep);
  background: #fff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .25);
}

.availability-card span { display: grid; font-size: 1rem; font-weight: 760; line-height: 1.08; }
.availability-card small { font-size: .62rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }

.signal-list { display: flex; flex-wrap: wrap; gap: 1.4rem; padding: 0; margin: 2.2rem 0 0; list-style: none; color: #8fa3bd; font-size: .73rem; }
.signal-list li::before { content: "✓"; margin-right: .4rem; color: var(--cyan); }

.phone-stage { min-height: 650px; position: relative; perspective: 1500px; }
.glow { position: absolute; inset: 12% 3% 5%; background: radial-gradient(ellipse, rgba(39, 166, 255, .38), transparent 62%); filter: blur(24px); }
.phone {
  position: absolute;
  margin: 0;
  width: 270px;
  overflow: hidden;
  border: 8px solid #0b1423;
  border-radius: 44px;
  background: #0b1423;
  box-shadow: 0 38px 75px rgba(0, 0, 0, .52), inset 0 0 0 1px rgba(255, 255, 255, .15);
}
.phone::before { content: ""; position: absolute; z-index: 2; width: 78px; height: 19px; top: 8px; left: 50%; transform: translateX(-50%); border-radius: 999px; background: #090d14; }
.phone img { width: 100%; height: auto; border-radius: 35px; }
.phone-main { z-index: 3; width: 294px; left: 50%; top: 0; transform: translateX(-50%) rotate(.8deg); }
.phone-left { z-index: 1; left: 0; top: 82px; transform: rotate(-9deg) scale(.88); opacity: .66; }
.phone-right { z-index: 2; right: 0; top: 88px; transform: rotate(9deg) scale(.88); opacity: .72; }

.weather-orb { position: absolute; border-radius: 999px; filter: blur(1px); opacity: .7; }
.orb-one { width: 9px; height: 9px; background: var(--sun); top: 17%; right: 48%; box-shadow: 0 0 24px var(--sun); }
.orb-two { width: 5px; height: 5px; background: var(--cyan); bottom: 20%; right: 2%; box-shadow: 0 0 18px var(--cyan); }

.proof-strip {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 1.35rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  color: #92a5bd;
  font-size: .8rem;
}
.proof-strip p { margin: 0; }
.proof-strip strong { color: #eaf4ff; }
.proof-items { display: flex; gap: 1.6rem; }
.proof-items span { display: inline-flex; align-items: center; gap: .45rem; }
.dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.dot.sun { color: var(--sun); }.dot.water { color: var(--blue); }.dot.air { color: #7ce2c7; }.dot.sky { color: #a992ff; }

.section { width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 130px 0; }
.section-heading { max-width: 620px; margin-bottom: 3.5rem; }
.section h2 { margin-bottom: 1.4rem; font-size: clamp(3rem, 5.5vw, 5.2rem); line-height: .96; letter-spacing: -.055em; }
.section-heading > p:last-child, .source-copy > p:last-child { color: var(--muted); line-height: 1.7; max-width: 530px; }

.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.feature-card { min-height: 390px; padding: 2.2rem; border: 1px solid var(--line); border-radius: 2rem; background: var(--card); overflow: hidden; position: relative; }
.feature-large, .sky-card { grid-column: span 2; min-height: 430px; }
.feature-card h3 { max-width: 520px; margin-bottom: 1rem; font-size: clamp(1.8rem, 3vw, 2.7rem); line-height: 1.03; letter-spacing: -.04em; }
.feature-card p:not(.card-kicker) { color: var(--muted); max-width: 460px; line-height: 1.65; }
.card-kicker { margin-bottom: 1.1rem; color: var(--cyan); font-size: .7rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.weather-card { display: flex; align-items: flex-start; justify-content: space-between; gap: 2rem; background: linear-gradient(135deg, rgba(21, 62, 105, .88), rgba(11, 29, 55, .85)); }
.mini-forecast { align-self: flex-end; width: min(400px, 48%); display: flex; align-items: end; justify-content: space-between; border-bottom: 1px solid rgba(110, 231, 242, .45); }
.mini-forecast span { min-height: 220px; display: flex; flex-direction: column; justify-content: flex-end; align-items: center; gap: 1rem; color: #93a8c1; font-size: .7rem; position: relative; }
.mini-forecast span::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 18px var(--cyan); }
.mini-forecast span:nth-child(2) { min-height: 260px; }.mini-forecast span:nth-child(3) { min-height: 240px; }.mini-forecast span:nth-child(4) { min-height: 190px; }
.mini-forecast i { color: white; font-size: 1.3rem; font-style: normal; }.mini-forecast b { font-weight: 500; }
.feature-icon { margin-bottom: 4rem; font-size: 2.6rem; color: var(--cyan); }
.wave-icon { font-family: var(--serif); font-size: 5rem; line-height: .5; }
.water-card { background: radial-gradient(circle at 82% 13%, rgba(35, 149, 220, .26), transparent 45%), var(--card); }
.air-card { background: radial-gradient(circle at 85% 10%, rgba(84, 222, 179, .2), transparent 42%), var(--card); }
.sky-card { display: flex; align-items: flex-end; min-height: 480px; background: radial-gradient(circle at 75% 20%, rgba(122, 92, 213, .22), transparent 35%), linear-gradient(145deg, #071329, #090a21); }
.sky-card > div:not(.moon):not(.star-field) { position: relative; z-index: 2; }
.moon { position: absolute; right: 10%; top: 12%; width: 175px; height: 175px; border-radius: 50%; background: radial-gradient(circle at 38% 35%, #fff7dc, #cfdbef 58%, #8091b3); box-shadow: 0 0 90px rgba(185, 202, 255, .32); }
.moon::after { content: ""; position: absolute; width: 30px; height: 22px; left: 35px; top: 70px; border-radius: 50%; background: rgba(87, 104, 142, .17); box-shadow: 59px -30px 0 7px rgba(87, 104, 142, .12), 70px 43px 0 -2px rgba(87, 104, 142, .13); }
.star-field i { position: absolute; width: 3px; height: 3px; border-radius: 50%; background: white; box-shadow: 0 0 10px white; }
.star-field i:nth-child(1) { left: 8%; top: 14%; }.star-field i:nth-child(2) { left: 31%; top: 27%; }.star-field i:nth-child(3) { right: 12%; top: 50%; }.star-field i:nth-child(4) { right: 40%; top: 12%; }.star-field i:nth-child(5) { left: 49%; top: 53%; }

.sources { display: grid; grid-template-columns: 1fr 1fr; gap: 7rem; align-items: center; border-top: 1px solid var(--line); }
.source-list { border-top: 1px solid var(--line); }
.source-list div { padding: 1.5rem 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 110px 1fr; gap: 1rem; align-items: center; }
.source-list b { color: var(--cyan); font-size: .8rem; letter-spacing: .1em; }
.source-list span { color: var(--muted); font-size: .86rem; }

.closing { text-align: center; padding-bottom: 150px; }
.closing img { margin: 0 auto 2.2rem; border-radius: 24%; box-shadow: 0 28px 70px rgba(5, 78, 151, .45); }
.closing .eyebrow span { display: none; }
.closing h2 { margin-left: auto; margin-right: auto; }
.closing > p:not(.eyebrow) { color: var(--muted); }
.availability-pill { display: inline-flex; margin-top: 1.4rem; padding: .8rem 1.15rem; border: 1px solid var(--line); border-radius: 999px; color: #dceafa; background: rgba(255, 255, 255, .05); font-size: .78rem; }

footer { width: min(1180px, calc(100% - 40px)); min-height: 120px; margin: 0 auto; border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; color: #778ba6; font-size: .75rem; }
footer p { margin: 0; text-align: center; }
footer > div { display: flex; justify-content: flex-end; gap: 1.5rem; }
.footer-brand { color: white; font-size: .9rem; }

.policy-wrap { width: min(980px, calc(100% - 40px)); margin: 0 auto; padding: 100px 0 150px; }
.policy-wrap h1 { max-width: 880px; }
.policy-updated { color: #7286a0; font-size: .8rem; }
.policy-grid { display: grid; grid-template-columns: 270px 1fr; gap: 6rem; margin-top: 6rem; }
.policy-grid aside { color: #bed0e5; font-size: 1.05rem; line-height: 1.65; }
.policy-grid aside p { position: sticky; top: 3rem; }
.policy-grid article { max-width: 600px; }
.policy-grid article h2 { margin: 0 0 .8rem; font-size: 1.5rem; letter-spacing: -.03em; }
.policy-grid article p { margin-bottom: 2.8rem; color: var(--muted); line-height: 1.75; }

@media (max-width: 940px) {
  nav { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 64px; }
  .hero-copy { text-align: center; }
  .hero-lede { margin-left: auto; margin-right: auto; }
  .hero-actions, .signal-list { justify-content: center; }
  .phone-stage { max-width: 680px; width: 100%; margin: 0 auto; }
  .sources { grid-template-columns: 1fr; gap: 3rem; }
  .policy-grid { grid-template-columns: 1fr; gap: 2rem; }
  .policy-grid aside p { position: static; }
}

@media (max-width: 680px) {
  .site-header { min-height: 76px; width: min(100% - 28px, 1180px); }
  .site-header .brand span { display: none; }
  .header-cta { padding: .62rem .8rem; }
  .hero, .section, .proof-strip, footer { width: min(100% - 28px, 1180px); }
  .hero { min-height: 0; padding-top: 54px; }
  h1 { font-size: clamp(3.5rem, 18vw, 5rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions > p { max-width: none; }
  .signal-list { gap: .7rem 1rem; }
  .phone-stage { min-height: 510px; margin-top: 1rem; }
  .phone { width: 190px; border-width: 6px; border-radius: 32px; }
  .phone img { border-radius: 25px; }
  .phone-main { width: 225px; }
  .phone-left { left: -42px; top: 75px; }
  .phone-right { right: -42px; top: 75px; }
  .proof-strip { align-items: flex-start; flex-direction: column; }
  .proof-items { width: 100%; justify-content: space-between; gap: .5rem; }
  .section { padding: 90px 0; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-large, .sky-card { grid-column: span 1; }
  .feature-card { padding: 1.5rem; min-height: 360px; }
  .weather-card { flex-direction: column; }
  .mini-forecast { width: 100%; }
  .moon { width: 125px; height: 125px; right: 8%; }
  .source-list div { grid-template-columns: 85px 1fr; }
  footer { padding: 2rem 0; grid-template-columns: 1fr; gap: 1.2rem; text-align: center; }
  footer > div { justify-content: center; }
  .footer-brand { justify-self: center; }
  .policy-wrap { padding-top: 70px; }
  .policy-grid { margin-top: 4rem; }
}

@media (prefers-reduced-motion: no-preference) {
  .phone-main { animation: settle 1s cubic-bezier(.2, .8, .2, 1) both; }
  .phone-left { animation: settle-left 1.1s .08s cubic-bezier(.2, .8, .2, 1) both; }
  .phone-right { animation: settle-right 1.1s .16s cubic-bezier(.2, .8, .2, 1) both; }
  @keyframes settle { from { opacity: 0; transform: translateX(-50%) translateY(35px) rotate(.8deg); } }
  @keyframes settle-left { from { opacity: 0; transform: translateX(35px) rotate(-9deg) scale(.88); } }
  @keyframes settle-right { from { opacity: 0; transform: translateX(-35px) rotate(9deg) scale(.88); } }
}
