:root {
  color-scheme: dark;
  --ink: #f8fbff;
  --muted: #9eabc2;
  --background: #061124;
  --surface: #0d1c35;
  --surface-strong: #132644;
  --line: rgba(165, 186, 220, 0.16);
  --sun: #ffb238;
  --sky: #6fc9ff;
  --mint: #5ae4ac;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  --radius-lg: 28px;
  --radius-md: 20px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--background);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% -10%, rgba(61, 144, 255, 0.24), transparent 34rem),
    radial-gradient(circle at 90% 10%, rgba(255, 178, 56, 0.14), transparent 25rem),
    var(--background);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.site-shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  gap: 24px;
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 178, 56, 0.22);
  border-radius: 14px;
  background: rgba(255, 178, 56, 0.12);
  color: var(--sun);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08);
}

.brand-mark svg {
  width: 27px;
  height: 27px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 650;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.07);
  outline: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  align-items: center;
  gap: 64px;
  padding: 92px 0 88px;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--sun);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.14;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.65rem, 7vw, 5.3rem);
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.7rem, 4vw, 2.55rem);
}

h3 {
  margin-bottom: 9px;
  font-size: 1.08rem;
}

.hero-copy > p:not(.eyebrow),
.page-intro {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 2vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 19px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  color: var(--ink);
  font-weight: 760;
  text-decoration: none;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.04);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button.primary {
  border-color: rgba(255, 178, 56, 0.55);
  background: var(--sun);
  color: #101827;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.34);
  outline: none;
}

.weather-orbit {
  position: relative;
  display: grid;
  width: min(100%, 350px);
  aspect-ratio: 1;
  place-items: center;
  justify-self: end;
  border: 1px solid var(--line);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(111, 201, 255, 0.12) 0 33%, transparent 34%),
    rgba(13, 28, 53, 0.46);
  box-shadow: var(--shadow), inset 0 1px rgba(255, 255, 255, 0.06);
}

.weather-orbit::before,
.weather-orbit::after {
  position: absolute;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "";
}

.weather-orbit::before {
  inset: 14%;
}

.weather-orbit::after {
  inset: 31%;
}

.weather-icon {
  position: relative;
  z-index: 1;
  width: 116px;
  color: var(--sun);
  filter: drop-shadow(0 18px 30px rgba(255, 178, 56, 0.18));
}

.orbit-chip {
  position: absolute;
  z-index: 2;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(6, 17, 36, 0.88);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 760;
  backdrop-filter: blur(12px);
}

.orbit-chip.one {
  top: 12%;
  right: -3%;
}

.orbit-chip.two {
  bottom: 14%;
  left: -5%;
}

.section {
  padding: 74px 0;
}

.section-heading {
  max-width: 640px;
  margin-bottom: 30px;
}

.section-heading p,
.card p,
.legal-copy p,
.legal-copy li,
.contact-strip p {
  color: var(--muted);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.card {
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(19, 38, 68, 0.9), rgba(13, 28, 53, 0.8));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.04);
}

.card p:last-child {
  margin-bottom: 0;
}

.card-icon {
  display: grid;
  width: 43px;
  height: 43px;
  margin-bottom: 20px;
  place-items: center;
  border-radius: 14px;
  background: rgba(111, 201, 255, 0.1);
  color: var(--sky);
  font-size: 1.15rem;
  font-weight: 850;
}

.contact-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin: 68px 0;
  padding: 32px;
  border: 1px solid rgba(255, 178, 56, 0.22);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255, 178, 56, 0.1), rgba(19, 38, 68, 0.88));
}

.contact-strip h2,
.contact-strip p {
  margin-bottom: 0;
}

.page-hero {
  padding: 78px 0 46px;
}

.page-hero h1 {
  max-width: 850px;
  font-size: clamp(2.65rem, 6.5vw, 4.8rem);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 860px;
}

details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(13, 28, 53, 0.8);
  overflow: clip;
}

summary {
  position: relative;
  padding: 20px 54px 20px 22px;
  cursor: pointer;
  font-weight: 740;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  position: absolute;
  top: 50%;
  right: 22px;
  color: var(--sun);
  content: "+";
  font-size: 1.35rem;
  transform: translateY(-50%);
}

details[open] summary::after {
  content: "–";
}

details p {
  max-width: 760px;
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.legal-layout {
  display: grid;
  grid-template-columns: 235px minmax(0, 760px);
  align-items: start;
  gap: 64px;
  padding-bottom: 90px;
}

.legal-nav {
  position: sticky;
  top: 24px;
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(13, 28, 53, 0.78);
  backdrop-filter: blur(16px);
}

.legal-nav a {
  padding: 8px 10px;
  border-radius: 10px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 650;
  text-decoration: none;
}

.legal-nav a:hover,
.legal-nav a:focus-visible {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
  outline: none;
}

.legal-copy section {
  padding: 12px 0 24px;
  scroll-margin-top: 24px;
}

.legal-copy h2 {
  font-size: 1.55rem;
}

.legal-copy a,
.inline-link {
  color: var(--sky);
  text-underline-offset: 3px;
}

.legal-copy li + li {
  margin-top: 8px;
}

.notice {
  padding: 20px 22px;
  border: 1px solid rgba(90, 228, 172, 0.2);
  border-radius: 18px;
  background: rgba(90, 228, 172, 0.07);
}

.notice strong {
  color: var(--mint);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 120px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.86rem;
}

.footer-links {
  display: flex;
  gap: 18px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--ink);
  outline: none;
}

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

  .weather-orbit {
    width: min(82vw, 330px);
    margin-top: 24px;
    justify-self: center;
  }

  .orbit-chip.one {
    top: 10%;
    right: 0;
  }

  .orbit-chip.two {
    bottom: 10%;
    left: 0;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .legal-nav {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-strip {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .site-shell {
    width: min(100% - 28px, 1120px);
  }

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

  .brand span:last-child {
    display: none;
  }

  .nav-links {
    gap: 2px;
  }

  .nav-links a {
    padding: 8px 10px;
    font-size: 0.84rem;
  }

  .hero {
    padding: 50px 0 64px;
  }

  .section {
    padding: 56px 0;
  }

  .hero-actions,
  .hero-actions .button,
  .contact-strip .button {
    width: 100%;
  }

  .page-hero {
    padding-top: 54px;
  }

  .legal-nav {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 26px 0;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
