:root {
  color-scheme: dark;
  --bg: #080a0c;
  --bg-2: #101317;
  --panel: rgba(18, 22, 27, 0.82);
  --panel-2: rgba(24, 30, 36, 0.7);
  --ink: #f7f4ed;
  --muted: #b9b3a7;
  --soft: rgba(247, 244, 237, 0.72);
  --line: rgba(247, 244, 237, 0.13);
  --line-strong: rgba(126, 231, 194, 0.36);
  --mint: #7ee7c2;
  --amber: #ffc86b;
  --coral: #ff746c;
  --blue: #7db7ff;
  --violet: #b9a4ff;
  --shadow: rgba(0, 0, 0, 0.42);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 72% 12%, rgba(126, 231, 194, 0.15), transparent 23rem),
    radial-gradient(circle at 18% 10%, rgba(255, 200, 107, 0.11), transparent 18rem),
    linear-gradient(180deg, #0b0d10 0%, var(--bg) 52%, #050607 100%);
  color: var(--ink);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(247, 244, 237, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 244, 237, 0.024) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), transparent 72%);
}

img,
svg {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

p,
h1,
h2,
h3 {
  overflow-wrap: anywhere;
}

.wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  position: relative;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-weight: 900;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 11px;
}

.navlinks,
.hero-actions,
.cta-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.navlinks {
  justify-content: flex-end;
}

.navlinks a,
.btn,
button.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 14px;
  background: rgba(17, 20, 24, 0.72);
  color: var(--ink);
  text-decoration: none;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 850;
}

.btn.primary,
button.primary,
.navlinks a.primary {
  border-color: rgba(126, 231, 194, 0.72);
  background: linear-gradient(135deg, var(--mint), #d6fff0);
  color: #07110d;
  box-shadow: 0 18px 48px rgba(126, 231, 194, 0.2);
}

button.primary {
  min-height: 52px;
  border: 0;
  cursor: pointer;
  padding: 0 18px;
  white-space: nowrap;
}

button.primary:disabled {
  cursor: wait;
  opacity: 0.72;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  border: 1px solid rgba(126, 231, 194, 0.32);
  border-radius: 999px;
  background: rgba(126, 231, 194, 0.08);
  color: var(--mint);
  padding: 8px 11px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--mint);
  box-shadow: 0 0 0 8px rgba(126, 231, 194, 0.09);
}

.hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1.14fr);
  gap: 36px;
  align-items: center;
  padding: 42px 0 52px;
}

h1 {
  margin: 18px 0 14px;
  max-width: 760px;
  font-size: clamp(3.6rem, 8vw, 7.4rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.lede {
  max-width: 620px;
  margin: 0;
  color: var(--soft);
  font-size: clamp(1.08rem, 1.8vw, 1.38rem);
  line-height: 1.45;
  font-weight: 650;
}

.hero-actions {
  margin-top: 22px;
}

.waitlist-card {
  max-width: 600px;
  margin-top: 18px;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: rgba(17, 21, 26, 0.86);
  box-shadow: 0 24px 70px var(--shadow);
  padding: 12px;
}

.waitlist-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: end;
}

.field label {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.field input {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(247, 244, 237, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  padding: 13px 14px;
  outline: none;
}

.field input:focus {
  border-color: var(--mint);
  box-shadow: 0 0 0 4px rgba(126, 231, 194, 0.11);
}

.field input::placeholder {
  color: rgba(247, 244, 237, 0.46);
}

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

.form-status {
  min-height: 20px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
}

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

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

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
  max-width: 680px;
}

.metric {
  min-height: 98px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(18, 22, 27, 0.68);
  padding: 15px;
}

.metric strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  line-height: 1;
}

.metric span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 760;
  line-height: 1.35;
}

.product-stage {
  position: relative;
  min-height: 610px;
}

.app-window {
  border: 1px solid rgba(247, 244, 237, 0.16);
  border-radius: 28px;
  background: linear-gradient(160deg, rgba(28, 34, 40, 0.96), rgba(11, 13, 16, 0.98));
  box-shadow: 0 38px 100px rgba(0, 0, 0, 0.48);
  padding: 18px;
  overflow: hidden;
}

.app-window.primary-window {
  min-height: 520px;
}

.window-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.window-top b {
  display: block;
  font-size: 1.05rem;
}

.window-top span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.window-top img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
}

.screen-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 12px;
}

.panel {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
  padding: 14px;
}

.panel.large {
  min-height: 256px;
  grid-row: span 2;
}

.panel h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

.panel p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
  font-weight: 650;
}

.set-list,
.meal-list {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.set,
.meal {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.055);
  padding: 10px;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 28px;
  border-radius: 999px;
  background: rgba(126, 231, 194, 0.12);
  color: var(--mint);
  font-size: 0.78rem;
  font-weight: 900;
}

.set b,
.meal b {
  display: block;
  font-size: 0.92rem;
}

.set span,
.meal span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.spark {
  display: flex;
  align-items: end;
  gap: 5px;
  height: 58px;
  margin-top: 15px;
}

.spark i {
  flex: 1;
  min-height: 14px;
  border-radius: 999px 999px 7px 7px;
  background: linear-gradient(180deg, var(--mint), rgba(126, 231, 194, 0.14));
}

.spark i:nth-child(2) {
  height: 70%;
  background: linear-gradient(180deg, var(--amber), rgba(255, 200, 107, 0.16));
}

.spark i:nth-child(3) {
  height: 42%;
  background: linear-gradient(180deg, var(--coral), rgba(255, 116, 108, 0.16));
}

.spark i:nth-child(4) {
  height: 92%;
}

.spark i:nth-child(5) {
  height: 58%;
  background: linear-gradient(180deg, var(--blue), rgba(125, 183, 255, 0.16));
}

.coach-panel {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.coach-dot {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--mint), var(--amber));
  flex: 0 0 auto;
}

.floating-proof {
  position: absolute;
  right: -10px;
  bottom: 30px;
  width: min(320px, 42%);
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  background: rgba(11, 13, 16, 0.82);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.44);
  padding: 16px;
}

.floating-proof b {
  display: block;
  margin-bottom: 8px;
  font-size: 1.6rem;
  line-height: 1;
}

.bar {
  height: 8px;
  margin-top: 12px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
}

.bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--mint), var(--amber));
}

.section {
  padding: 72px 0 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}

.section-head h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.1rem, 4.5vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.section-head p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.45;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.feature-card {
  min-height: 230px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(24, 30, 36, 0.84), rgba(12, 14, 17, 0.72));
  padding: 18px;
  position: relative;
  overflow: hidden;
}

.feature-card.wide {
  grid-column: span 2;
}

.feature-card h3 {
  margin: 0 0 9px;
  font-size: 1.38rem;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.45;
}

.feature-card .number {
  position: absolute;
  right: 16px;
  bottom: 8px;
  color: rgba(247, 244, 237, 0.08);
  font-size: 5.8rem;
  line-height: 0.85;
  font-weight: 950;
}

.workflow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.step {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(16, 19, 23, 0.76);
  padding: 18px;
}

.step b {
  display: block;
  color: var(--mint);
  font-size: 0.78rem;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.step strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.28rem;
}

.step span {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.42;
}

.content-page {
  padding: 54px 0 0;
}

.content-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
  gap: 28px;
  align-items: start;
}

.content-card,
.faq,
.final-cta {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(18, 22, 27, 0.76);
  padding: 22px;
}

.content-card h2,
.faq h2 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.content-card h3,
.faq h3 {
  margin: 22px 0 8px;
}

.content-card p,
.content-card li,
.faq p {
  color: var(--muted);
  font-weight: 670;
  line-height: 1.58;
}

.content-card ul {
  padding-left: 20px;
}

.sidebar-proof {
  position: sticky;
  top: 18px;
  display: grid;
  gap: 12px;
}

.breadcrumb {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.breadcrumb a {
  color: var(--soft);
}

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

.final-cta {
  margin: 72px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  border-color: var(--line-strong);
}

.final-cta h2 {
  margin: 0 0 8px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.95;
}

.final-cta p {
  margin: 0;
  color: var(--muted);
  font-weight: 740;
}

footer {
  margin-top: 52px;
  padding: 24px 0 40px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1.58;
}

footer nav {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

@media (prefers-reduced-motion: no-preference) {
  .floating-proof {
    animation: lift 7s ease-in-out infinite;
  }

  @keyframes lift {
    0%,
    100% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(-8px);
    }
  }
}

@media (max-width: 980px) {
  .hero,
  .content-hero,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .product-stage {
    min-height: auto;
  }

  .floating-proof {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 12px;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .workflow,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sidebar-proof {
    position: static;
  }
}

@media (max-width: 640px) {
  .wrap {
    width: min(100% - 24px, 1180px);
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .navlinks {
    justify-content: flex-start;
  }

  h1 {
    font-size: clamp(3.2rem, 18vw, 5.8rem);
  }

  .waitlist-form,
  .metric-row,
  .screen-grid,
  .feature-grid,
  .workflow,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  button.primary {
    width: 100%;
  }

  .feature-card.wide {
    grid-column: auto;
  }

  .section-head {
    display: block;
  }

  .section-head p {
    margin-top: 10px;
  }

  .final-cta {
    align-items: stretch;
  }
}
