:root {
  color-scheme: dark;
  --navy-950: #061521;
  --navy-900: #081b2b;
  --navy-800: #102a43;
  --navy-700: #163b5a;
  --green: #1baa73;
  --green-bright: #2ed391;
  --blue: #2d78ff;
  --gold: #ffc83d;
  --white: #f8fcff;
  --pale: #c8d9e5;
  --muted: #91a8b8;
  --line: rgba(160, 202, 230, 0.18);
  --panel: rgba(16, 42, 67, 0.72);
  --max-width: 1180px;
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background:
    radial-gradient(circle at 82% 12%, rgba(27, 170, 115, 0.13), transparent 25rem),
    radial-gradient(circle at 12% 50%, rgba(45, 120, 255, 0.09), transparent 32rem),
    var(--navy-950);
  color: var(--white);
  font-family: Inter, ui-rounded, "SF Pro Rounded", "Avenir Next", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-underline-offset: 0.22em;
  text-decoration-thickness: 0.08em;
}

a:hover {
  color: var(--green-bright);
}

a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 5px;
  border-radius: 4px;
}

.skip-link {
  position: fixed;
  z-index: 10;
  left: 1rem;
  top: 1rem;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: var(--white);
  color: var(--navy-950);
  font-weight: 800;
  transform: translateY(-200%);
}

.skip-link:focus {
  transform: none;
}

.site-header,
.site-footer,
main {
  width: min(calc(100% - 3rem), var(--max-width));
  margin-inline: auto;
}

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

.company-mark {
  color: var(--white);
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.company-mark span {
  color: var(--green-bright);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 4vw, 2.25rem);
}

.main-nav a,
.nav-link {
  color: var(--pale);
  font-size: 0.89rem;
  font-weight: 750;
  text-decoration: none;
}

.main-nav a[aria-current="page"] {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: var(--green-bright);
  text-decoration-thickness: 3px;
  text-underline-offset: 0.45rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--green-bright);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  line-height: 1.3;
  text-transform: uppercase;
}

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

h1,
h2 {
  letter-spacing: -0.04em;
  line-height: 1.06;
}

h1 {
  margin-bottom: 1.4rem;
  font-size: clamp(3rem, 8vw, 6.8rem);
  font-weight: 900;
}

h2 {
  font-size: clamp(1.45rem, 3vw, 2.35rem);
}

.map-word {
  color: var(--white);
}

.snap-word,
.holding-copy h1 span {
  color: var(--green-bright);
}

.lead {
  max-width: 42rem;
  color: var(--pale);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  line-height: 1.6;
}

.primary-button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.72rem 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 850;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease;
}

.primary-button:hover {
  background: var(--green-bright);
  color: var(--navy-950);
  transform: translateY(-2px);
}

.holding-page {
  min-height: calc(100vh - 190px);
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
  padding-block: 5rem;
}

.holding-copy h1 {
  font-size: clamp(3.5rem, 7vw, 6.4rem);
}

.holding-copy .lead {
  max-width: 35rem;
  margin-bottom: 2rem;
}

.app-card {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid rgba(46, 211, 145, 0.24);
  border-radius: 36px;
  background: linear-gradient(145deg, rgba(22, 59, 90, 0.96), rgba(8, 27, 43, 0.96));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
  color: var(--white);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease;
}

.app-card:hover {
  border-color: rgba(46, 211, 145, 0.55);
  color: var(--white);
  transform: translateY(-5px) rotate(-0.4deg);
}

.app-card::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  right: -80px;
  bottom: -100px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.app-card img {
  width: min(54%, 220px);
  height: auto;
  align-self: flex-end;
  border-radius: 26%;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.3));
}

.app-card h2 {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 900;
}

.app-card p {
  margin-bottom: 0;
  color: var(--pale);
}

.app-card .app-label {
  margin-bottom: 0.25rem;
  color: var(--green-bright);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero {
  min-height: 650px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(2rem, 7vw, 7rem);
  padding-block: 5rem;
}

.hero h1 {
  margin-bottom: 0.2rem;
}

.strapline {
  margin-bottom: 1.6rem;
  color: var(--gold);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 820;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.2rem 1.7rem;
  margin-top: 2rem;
}

.text-link {
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
}

.logo-stage {
  position: relative;
  min-height: 480px;
  display: grid;
  place-items: center;
}

.logo-stage::before {
  content: "";
  position: absolute;
  width: min(82vw, 450px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46, 211, 145, 0.2), rgba(45, 120, 255, 0.06) 60%, transparent 70%);
  filter: blur(8px);
}

.logo-stage img {
  position: relative;
  z-index: 1;
  width: min(78vw, 410px);
  height: auto;
  border-radius: 26%;
  filter: drop-shadow(0 35px 50px rgba(0, 0, 0, 0.38));
}

.orbit {
  position: absolute;
  border: 1px solid rgba(160, 202, 230, 0.18);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.orbit-one {
  width: 95%;
  aspect-ratio: 1.2;
}

.orbit-two {
  width: 72%;
  aspect-ratio: 1.25;
  transform: rotate(26deg);
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
}

.feature-strip article {
  padding: 3.4rem clamp(1rem, 3vw, 2.5rem);
}

.feature-strip article + article {
  border-left: 1px solid var(--line);
}

.feature-number {
  display: block;
  margin-bottom: 2.2rem;
  color: var(--green-bright);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.feature-strip h2 {
  margin-bottom: 0.8rem;
  font-size: 1.35rem;
}

.feature-strip p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.privacy-callout {
  margin-block: 6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid rgba(46, 211, 145, 0.22);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(27, 170, 115, 0.12), rgba(16, 42, 67, 0.65));
}

.privacy-callout h2 {
  margin-bottom: 0;
}

.privacy-callout > p {
  margin-bottom: 0;
  color: var(--pale);
}

.content-page {
  padding-block: clamp(4rem, 9vw, 7rem);
}

.page-intro {
  max-width: 820px;
  margin-bottom: clamp(4rem, 8vw, 7rem);
}

.page-intro h1 {
  font-size: clamp(3rem, 7vw, 6rem);
}

.page-intro .primary-button {
  margin-top: 1.2rem;
}

.effective-date {
  margin-top: 1.75rem;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 750;
}

.faq {
  max-width: 880px;
  margin-left: auto;
}

.faq > h2 {
  margin-bottom: 2rem;
}

details {
  border-top: 1px solid var(--line);
}

details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  position: relative;
  min-height: 76px;
  display: flex;
  align-items: center;
  padding: 1.2rem 3.3rem 1.2rem 0;
  cursor: pointer;
  color: var(--white);
  font-size: 1.08rem;
  font-weight: 800;
  list-style: none;
}

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

summary::after {
  content: "+";
  position: absolute;
  right: 0.5rem;
  color: var(--green-bright);
  font-size: 1.8rem;
  font-weight: 400;
}

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

details > p {
  max-width: 700px;
  padding: 0 3.3rem 1.5rem 0;
  color: var(--pale);
}

.contact-card {
  margin-top: 6rem;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 3rem;
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--line);
}

.contact-card h2 {
  margin-bottom: 0;
}

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

.small-note {
  color: var(--muted);
  font-size: 0.82rem;
}

.policy-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.62fr) minmax(0, 1.38fr);
  align-items: start;
  gap: clamp(3rem, 7vw, 7rem);
}

.policy-summary {
  position: sticky;
  top: 2rem;
  padding: 1.8rem;
  border: 1px solid rgba(46, 211, 145, 0.24);
  border-radius: 22px;
  background: rgba(27, 170, 115, 0.08);
}

.policy-summary h2 {
  font-size: 1.25rem;
}

.policy-summary ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.policy-summary li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.7rem;
  color: var(--pale);
  font-size: 0.91rem;
}

.policy-summary li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-bright);
  font-weight: 900;
}

.policy-copy section {
  padding-bottom: 2.6rem;
  border-bottom: 1px solid var(--line);
}

.policy-copy section + section {
  padding-top: 2.6rem;
}

.policy-copy h2 {
  margin-bottom: 1.1rem;
  font-size: 1.55rem;
}

.policy-copy p,
.policy-copy li {
  color: var(--pale);
}

.policy-copy li + li {
  margin-top: 0.5rem;
}

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

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  gap: 1.5rem;
}

.site-footer a {
  color: var(--pale);
  text-decoration: none;
}

@media (max-width: 820px) {
  .holding-page,
  .hero,
  .privacy-callout,
  .contact-card,
  .policy-layout {
    grid-template-columns: 1fr;
  }

  .holding-page {
    padding-block: 4rem;
  }

  .app-card {
    min-height: 360px;
  }

  .hero {
    padding-top: 4rem;
  }

  .logo-stage {
    min-height: 390px;
    order: -1;
  }

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

  .feature-strip article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .privacy-callout,
  .contact-card {
    gap: 1.5rem;
  }

  .policy-summary {
    position: static;
  }
}

@media (max-width: 580px) {
  body {
    font-size: 16px;
  }

  .site-header,
  .site-footer,
  main {
    width: min(calc(100% - 2rem), var(--max-width));
  }

  .site-header {
    min-height: 78px;
    gap: 1rem;
  }

  .company-mark {
    font-size: 0.85rem;
  }

  .main-nav {
    gap: 0.9rem;
  }

  .main-nav a,
  .nav-link {
    font-size: 0.77rem;
  }

  .holding-page {
    min-height: auto;
  }

  .logo-stage {
    min-height: 300px;
  }

  .site-footer {
    padding-block: 1.7rem;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.7rem;
  }
}

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

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