:root {
  color-scheme: light;
  --ink: #122033;
  --muted: #657286;
  --line: #d8e7f4;
  --panel: #ffffff;
  --canvas: #f6fbff;
  --blue: #149fe3;
  --blue-dark: #0f7eb4;
  --gold: #f5a30a;
  --night: #07111d;
  --success: #0f7f45;
  --danger: #b42318;
  --shadow: 0 18px 50px rgba(15, 35, 62, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family:
    Outfit,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 3.5rem);
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 18px rgba(7, 17, 29, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
}

.brand img {
  width: 2.2rem;
  height: 2.2rem;
}

.brand .brand-wordmark {
  width: 7.4rem;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
}

.nav-button {
  border: 1px solid rgba(20, 159, 227, 0.22);
  border-radius: 8px;
  padding: 0.65rem 0.9rem;
  background: rgba(20, 159, 227, 0.1);
  color: var(--blue-dark);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: white;
  isolation: isolate;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 50%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 17, 29, 0.9), rgba(7, 17, 29, 0.63) 46%, rgba(7, 17, 29, 0.22)),
    linear-gradient(180deg, rgba(7, 17, 29, 0.42), rgba(7, 17, 29, 0.16) 44%, rgba(7, 17, 29, 0.78));
}

.hero-content {
  width: min(760px, calc(100% - 2rem));
  padding: 9rem clamp(1rem, 7vw, 5rem) 4rem;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #8ee6ff;
}

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

h1 {
  margin-bottom: 1rem;
  font-size: clamp(4rem, 11vw, 8.5rem);
  line-height: 0.88;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.65rem;
  font-size: 1.1rem;
}

.hero-lede {
  max-width: 44rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0.85rem 1.1rem;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(20, 159, 227, 0.35);
  outline-offset: 3px;
}

.button.primary {
  background: var(--blue);
  color: white;
  box-shadow: 0 16px 34px rgba(20, 159, 227, 0.3);
}

.button.primary:hover {
  background: var(--blue-dark);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.hero-note {
  max-width: 38rem;
  margin-top: 1.2rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.96rem;
}

.section,
.stripe-note,
.waitlist-section {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4rem);
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section-copy p,
.stripe-note p,
.waitlist-copy p,
.feature-card p,
.site-footer p {
  color: var(--muted);
  line-height: 1.65;
}

.section-copy > p:last-child {
  max-width: 34rem;
  font-size: 1.08rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-self: start;
}

.feature-card {
  min-height: 15rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.25rem;
  background: var(--panel);
  box-shadow: 0 12px 32px rgba(15, 35, 62, 0.07);
}

.feature-icon {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: #e9f7ff;
  color: var(--blue-dark);
  font-weight: 800;
}

.stripe-note {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 2rem;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(1.25rem, 4vw, 2rem);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.stripe-note h2 {
  font-size: clamp(1.75rem, 3vw, 2.8rem);
}

.waitlist-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 460px);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.waitlist-copy {
  position: sticky;
  top: 7rem;
}

.waitlist-form {
  display: grid;
  gap: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(1rem, 4vw, 1.4rem);
  background: white;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.45rem;
  color: var(--ink);
  font-weight: 800;
}

label span {
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #c8d9e8;
  border-radius: 8px;
  background: #fbfdff;
  color: var(--ink);
  font: inherit;
  font-weight: 500;
}

input,
select {
  min-height: 3rem;
  padding: 0 0.85rem;
}

textarea {
  min-height: 7rem;
  padding: 0.85rem;
  resize: vertical;
}

.form-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.form-status {
  min-height: 1.5rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.form-status.success {
  color: var(--success);
}

.form-status.error {
  color: var(--danger);
}

.mail-fallback {
  color: var(--blue-dark);
  font-weight: 800;
}

.site-footer {
  display: grid;
  gap: 0.9rem;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  border-top: 1px solid var(--line);
  padding: 2rem 0 3rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-brand {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.footer-brand img:first-child {
  width: 1.8rem;
  height: 1.8rem;
}

.footer-brand .brand-wordmark {
  width: 6.2rem;
  height: auto;
}

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

@media (max-width: 900px) {
  .site-header {
    position: absolute;
  }

  .site-nav a:first-child {
    display: none;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(7, 17, 29, 0.58), rgba(7, 17, 29, 0.72)),
      linear-gradient(90deg, rgba(7, 17, 29, 0.72), rgba(7, 17, 29, 0.32));
  }

  .hero-content {
    padding-top: 7.5rem;
  }

  .section,
  .stripe-note,
  .waitlist-section {
    grid-template-columns: 1fr;
  }

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

  .feature-card {
    min-height: auto;
  }

  .waitlist-copy {
    position: static;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 0.85rem 1rem;
  }

  .brand img {
    width: 1.9rem;
    height: 1.9rem;
  }

  .brand .brand-wordmark {
    width: 6.4rem;
  }

  .nav-button {
    padding: 0.6rem 0.75rem;
  }

  .hero-actions,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }
}
