:root {
  --blue: #0088ff;
  --mint: #37bc9b;
  --ink: #0b1218;
  --fog: #e8f1f6;
  --muted: rgba(11, 18, 24, 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 —— */

.hero {
  position: relative;
  min-height: 88svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(ellipse 90% 70% at 75% 90%, rgba(55, 188, 155, 0.5), transparent 55%),
    radial-gradient(ellipse 70% 55% at 8% 15%, rgba(0, 136, 255, 0.55), transparent 50%),
    linear-gradient(155deg, #0060cc 0%, #0a9bb8 46%, #2eb88a 100%);
}

.hero-atmosphere {
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.24), transparent 30%),
    radial-gradient(circle at 18% 72%, rgba(255, 255, 255, 0.1), 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 {
  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.22);
}

.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: 32rem;
  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: #f2fbff;
}

.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; }

/* —— Footer —— */

.site-footer {
  background: #070c10;
  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);
}

/* —— Privacy —— */

.page-top {
  background:
    radial-gradient(ellipse 80% 60% at 80% 0%, rgba(55, 188, 155, 0.35), transparent 50%),
    linear-gradient(155deg, #0060cc 0%, #0a9bb8 50%, #2eb88a 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;
  }
}
