:root {
  --navy: #0b1220;
  --blue: #173d85;
  --sky: #3d7ad9;
  --ink: #12151c;
  --fog: #e8eaf0;
  --muted: rgba(18, 21, 28, 0.62);
  --white: #ffffff;
  --display: "Outfit", system-ui, sans-serif;
  --body: "Figtree", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.5;
  background: #000;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.skip {
  position: absolute;
  left: -9999px;
}

.skip:focus {
  left: 1rem;
  top: 1rem;
  z-index: 40;
  padding: 0.5rem 0.75rem;
  background: var(--white);
  border-radius: 0.4rem;
}

.hero {
  position: relative;
  min-height: 88svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(ellipse 90% 70% at 78% 92%, rgba(61, 122, 217, 0.45), transparent 55%),
    radial-gradient(ellipse 70% 55% at 8% 15%, rgba(23, 61, 133, 0.45), transparent 50%),
    linear-gradient(155deg, #0b1220 0%, #152448 48%, #173d85 100%);
}

.hero-atmosphere {
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.2), transparent 30%),
    radial-gradient(circle at 18% 72%, rgba(255, 255, 255, 0.08), transparent 36%);
  animation: wash 16s var(--ease) infinite alternate;
  pointer-events: none;
}

@keyframes wash {
  from { transform: scale(1) translate(0, 0); }
  to { transform: scale(1.1) translate(-2%, 1.5%); }
}

.hero-top {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  padding: 1.25rem clamp(1.25rem, 4vw, 2.75rem) 0;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.15rem;
  justify-content: flex-end;
}

.site-nav a {
  font-family: var(--display);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  opacity: 0.85;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  opacity: 1;
}

.hero-stage {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  min-height: 0;
}

.hero-copy {
  width: min(920px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: clamp(2rem, 6vh, 4rem) 0;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: clamp(0.85rem, 2.5vw, 1.35rem);
}

.brand-icon {
  width: clamp(3.5rem, 10vw, 5.75rem);
  height: clamp(3.5rem, 10vw, 5.75rem);
  border-radius: 22%;
  flex-shrink: 0;
  box-shadow: 0 14px 36px rgba(0, 20, 40, 0.28);
}

.brand {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(3rem, 11vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: -0.045em;
}

.lede {
  margin: 1.1rem 0 0;
  max-width: 34rem;
  font-size: clamp(1.05rem, 2.1vw, 1.28rem);
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.4rem;
  min-height: 3.05rem;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-family: var(--display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.02em;
  text-decoration: none;
  transition: transform 0.3s var(--ease), background-color 0.2s ease;
}

.cta:hover {
  transform: translateY(-2px);
  background: #eef3fb;
}

.hero-note {
  margin: 1.35rem 0 0;
  max-width: 28rem;
  font-size: 0.98rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.75);
}

@keyframes lift {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.rise {
  opacity: 0;
  transform: translateY(20px);
  animation: lift 0.85s var(--ease) both;
}

.rise-1 { animation-delay: 0.04s; }
.rise-2 { animation-delay: 0.12s; }
.rise-3 { animation-delay: 0.2s; }

.live-pill {
  display: inline-flex;
  margin: 0 0 1rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: center;
}

.band {
  background: var(--white);
  color: var(--ink);
  padding: 4.25rem 0 2.5rem;
}

.band-inner,
.features,
.close-inner {
  width: min(920px, calc(100% - 2.5rem));
  margin: 0 auto;
}

.kicker {
  margin: 0 0 0.5rem;
  font-family: var(--display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
}

.band h2,
.close h2 {
  margin: 0 0 1rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.7rem, 4vw, 2.35rem);
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.band p {
  margin: 0 0 0.9rem;
  max-width: 40rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.features {
  display: grid;
  gap: 1.25rem;
  padding: 0 0 4rem;
  background: var(--white);
}

@media (min-width: 800px) {
  .features {
    grid-template-columns: repeat(3, 1fr);
    width: min(1100px, calc(100% - 2.5rem));
  }
}

.features article {
  padding: 1.35rem 1.25rem 1.45rem;
  border-radius: 1.1rem;
  background: var(--fog);
}

.features h3 {
  margin: 0 0 0.5rem;
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.features p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.close {
  background: #070c14;
  color: var(--white);
  padding: 4rem 0 4.5rem;
}

.close p {
  margin: 0;
  max-width: 32rem;
  color: rgba(255, 255, 255, 0.78);
}

.cta-on-dark {
  background: var(--white);
  color: var(--ink);
}

body:has(.features) {
  background: var(--white);
}

.site-footer {
  background: #070c14;
  color: rgba(255, 255, 255, 0.55);
  padding: 1.5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  width: min(1100px, calc(100% - 2.5rem));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
}

.footer-brand img {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 0.3rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
  color: var(--white);
}

.page-top {
  background:
    radial-gradient(ellipse 80% 60% at 80% 0%, rgba(61, 122, 217, 0.35), transparent 50%),
    linear-gradient(155deg, #0b1220 0%, #152448 55%, #173d85 100%);
  color: var(--white);
  padding: 1.5rem 0 2.75rem;
}

.page-top-inner {
  width: min(760px, calc(100% - 2.5rem));
  margin: 0 auto;
  display: grid;
  gap: 0.85rem;
}

.page-top h1 {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 2.75rem);
  letter-spacing: -0.04em;
}

.page-top p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
}

.page-top a {
  color: inherit;
}

.back-link {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  width: fit-content;
}

.back-link:hover {
  text-decoration: underline;
}

body:has(.policy) {
  background: var(--fog);
}

.policy {
  width: min(760px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 2.5rem 0 4rem;
}

.policy h2 {
  margin: 2rem 0 0.65rem;
  font-family: var(--display);
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.policy h3 {
  margin: 1.25rem 0 0.45rem;
  font-size: 1rem;
}

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

.policy ul {
  padding-left: 1.2rem;
}

.policy a {
  color: var(--blue);
}

body:has(.policy) .site-footer {
  background: #0b1218;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .rise {
    opacity: 1;
    transform: none;
  }
}
