:root {
  --bg: #05050a;
  --fg: #ffffff;
  --muted: #a3a3a3;
  --muted-2: #737373;
  --muted-3: #525252;
  --line: #262626;
  --copper: #eda267;
  --on-accent: #140c0b;
  --grad-from: #e07d4c;
  --grad-to: #c7a192;
  --radius: 12px;
  --font: Geist, "Geist Fallback", Arial, Helvetica, sans-serif;
  --mono: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

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

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

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

img,
svg {
  display: block;
}

.skip {
  position: absolute;
  left: -999px;
  top: 1rem;
}

.skip:focus {
  left: 1rem;
  z-index: 100;
  background: var(--copper);
  color: var(--on-accent);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  flex-wrap: wrap;
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: max(0.85rem, env(safe-area-inset-top)) max(1rem, env(safe-area-inset-right)) 0.85rem
    max(1rem, env(safe-area-inset-left));
  background: rgba(5, 5, 10, 0.88);
  backdrop-filter: blur(10px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  font-size: 1.05rem;
}

.mark {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  overflow: hidden;
  flex-shrink: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.5rem 0.85rem;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--fg);
  border-radius: var(--radius);
  transition: color 0.15s ease;
}

.nav a:hover {
  color: var(--muted);
}

.nav a.parent {
  color: var(--copper);
}

.shell {
  flex: 1;
  width: 100%;
  max-width: 56rem;
  margin: 0 auto;
  padding: 3.5rem max(1rem, env(safe-area-inset-right)) 4rem max(1rem, env(safe-area-inset-left));
  text-align: center;
}

.shell.miss {
  padding-top: 8rem;
}

.eyebrow {
  margin: 0 0 1.25rem;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-3);
}

.hero {
  margin: 0;
  font-size: clamp(1.7rem, 7.2vw, 3.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
  text-wrap: balance;
}

.hero em {
  font-style: italic;
  font-weight: 700;
  color: var(--copper);
}

.pictos {
  list-style: none;
  margin: 2.25rem 0 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem 2.25rem;
}

.pictos li {
  display: flex;
  align-items: center;
}

.pictos svg {
  width: 2.25rem;
  height: 2.25rem;
  color: var(--copper);
}

.pitch {
  margin: 2.5rem 0 0;
  text-align: left;
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  font-weight: 400;
  line-height: 1.5;
  text-wrap: pretty;
}

.pitch .punch {
  display: block;
  margin-top: 0.7rem;
  color: var(--copper);
  font-weight: 500;
}

.features {
  margin: 2.25rem 0 0;
  text-align: left;
}

.features h2 {
  margin: 0 0 0.85rem;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-3);
  font-weight: 500;
}

.features ul {
  margin: 0;
  padding: 0 0 0 1.15rem;
}

.features li {
  margin: 0.35rem 0;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--fg);
}

.features li::marker {
  color: var(--copper);
}

blockquote {
  margin: 3.25rem 0 0;
  padding: 0;
  text-align: left;
  border-left: 2px solid var(--copper);
  padding-left: 1.15rem;
}

blockquote p {
  margin: 0;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 400;
  line-height: 1.55;
  color: var(--fg);
  text-wrap: pretty;
}

blockquote .why {
  margin-top: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

blockquote footer {
  margin-top: 1.25rem;
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--muted-2);
  border: 0;
  padding: 0;
  background: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.waitlist {
  margin: 2.5rem auto 0;
  max-width: 26.5rem;
  width: 100%;
}

.waitlist-copy {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.5;
}

.waitlist-row {
  display: flex;
  align-items: stretch;
  gap: 0.5rem;
}

.waitlist input[type="email"] {
  flex: 1;
  min-width: 0;
  min-height: 48px;
  padding: 0 1.1rem;
  border: 1px solid rgb(255 255 255 / 0.15);
  border-radius: 9999px;
  background: rgb(255 255 255 / 0.04);
  color: var(--fg);
  font-family: inherit;
  font-size: 16px;
}

.waitlist input[type="email"]::placeholder {
  color: var(--muted-2);
}

.waitlist input[type="email"]:focus {
  outline: 2px solid var(--copper);
  outline-offset: 2px;
}

.waitlist .btn-primary {
  flex-shrink: 0;
  min-height: 48px;
  padding-inline: 1.2rem;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

.waitlist-gdpr {
  margin: 0.7rem 0 0;
  color: var(--muted);
  font-size: 0.6875rem;
  line-height: 1.45;
  text-align: left;
}

.waitlist-unsub {
  display: inline-block;
  padding: 0.7rem 0.35rem;
  margin: -0.7rem 0;
  color: var(--copper);
  font-size: inherit;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.thanks,
.oops {
  display: none;
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
}

.thanks {
  color: var(--copper);
}

.oops {
  color: #e8a090;
}

.joined .waitlist-row,
.joined .waitlist-copy {
  display: none;
}

.joined .thanks {
  display: block;
}

.invalid .oops {
  display: block;
}

.cta {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.6rem;
  padding: 0.55rem 1.15rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  transition: opacity 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.btn-primary {
  background: linear-gradient(90deg, var(--grad-from), var(--grad-to));
  color: var(--bg);
  font-weight: 500;
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-ghost {
  border: 1px solid rgb(255 255 255 / 0.15);
  color: #d4d4d4;
  font-weight: 300;
}

.btn-ghost:hover {
  color: var(--fg);
  border-color: rgb(255 255 255 / 0.3);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--bg);
  padding: 2.25rem max(1rem, env(safe-area-inset-right))
    max(2.5rem, env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-left));
}

.site-footer .inner {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

.site-footer .tagline {
  margin: 0.4rem 0 0;
  color: var(--muted);
  font-size: 0.875rem;
  max-width: 20rem;
}

.legal {
  margin: 0.75rem 0 0;
  color: var(--muted-2);
  font-size: 0.75rem;
  max-width: 28rem;
  line-height: 1.55;
}

.foot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
  align-content: flex-start;
}

.foot-links a {
  color: var(--muted);
  font-size: 0.875rem;
}

.foot-links a:hover {
  color: var(--fg);
}

.copy {
  margin-top: 2rem;
  font-size: 0.75rem;
  color: var(--muted-3);
}

@media (max-width: 640px) {
  .header {
    justify-content: center;
  }

  .nav {
    width: 100%;
    justify-content: center;
  }

  .nav a {
    padding-inline: 0.55rem;
    font-size: 0.88rem;
  }

  .shell {
    padding-top: 2.25rem;
    padding-bottom: 3rem;
  }

  .pictos {
    gap: 1.15rem 1.35rem;
  }

  .pictos svg {
    width: 1.85rem;
    height: 1.85rem;
  }

  blockquote {
    margin-top: 2.5rem;
  }

  blockquote p {
    font-size: 1.02rem;
  }

  .waitlist-row {
    flex-direction: column;
  }

  .waitlist .btn-primary {
    width: 100%;
  }

  .cta {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-ghost {
    min-height: 48px;
  }
}
