:root {
  color-scheme: dark;
  --ink: #ffffff;
  --muted: #aeb8c2;
  --paper: #050a0d;
  --surface: #0b1116;
  --surface-2: #101820;
  --line: rgba(255, 255, 255, 0.12);
  --soft-line: rgba(255, 255, 255, 0.08);
  --pink: #ff2f5f;
  --pink-2: #ff4b75;
  --pink-soft: rgba(255, 47, 95, 0.13);
  --white: #ffffff;
  --black: #020608;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

#story,
#how,
#pricing,
#waitlist {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 47, 95, 0.08) 0, rgba(255, 47, 95, 0) 430px),
    linear-gradient(180deg, #050a0d 0, #090f14 44%, #050a0d 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 5vw;
  background: rgba(5, 10, 13, 0.84);
  border-bottom: 1px solid var(--soft-line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 800;
}

.brand-mark {
  width: 36px;
  height: 36px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.16), 0 10px 28px rgba(255, 47, 95, 0.2);
}

.brand-wordmark {
  display: inline-flex;
  align-items: baseline;
}

.brand-wordmark span:first-child {
  color: var(--white);
}

.brand-wordmark span:nth-child(2) {
  color: var(--pink-2);
}

.brand-wordmark small {
  margin-left: 1px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #d7dde3;
  font-size: 0.96rem;
  font-weight: 700;
}

.nav-links a,
.site-footer a {
  transition: color 160ms ease;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--pink-2);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border: 0;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.header-cta,
.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--pink), #ff416c);
  box-shadow: 0 16px 34px rgba(255, 47, 95, 0.28);
}

.header-cta:hover,
.button-primary:hover {
  background: linear-gradient(135deg, #ff416c, #ff5b82);
  transform: translateY(-1px);
}

.button-secondary,
.button-plan {
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
}

.button-secondary:hover,
.button-plan:hover {
  border-color: rgba(255, 47, 95, 0.42);
  box-shadow: 0 18px 38px rgba(255, 47, 95, 0.14);
  transform: translateY(-1px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.96fr);
  gap: 56px;
  align-items: center;
  min-height: auto;
  padding: 32px 5vw 16px;
  overflow: hidden;
}

.hero-copy {
  max-width: 690px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--pink-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: 3.65rem;
  line-height: 0.98;
}

.hero-text {
  max-width: 620px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
}

.early-offer {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 510px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.2);
}

.early-offer p {
  margin: 0;
  color: var(--muted);
}

.early-offer strong {
  color: var(--ink);
}

.offer-number {
  display: grid;
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--pink), #ff5179);
  border-radius: 8px;
  font-size: 1.2rem;
  font-weight: 900;
}

.hero-visual {
  position: relative;
  display: grid;
  gap: 18px;
  min-height: 470px;
  max-height: 470px;
  overflow: hidden;
  place-items: center;
}

.hero-visual::before {
  position: absolute;
  inset: 4% 0 8% 6%;
  content: "";
  background:
    linear-gradient(135deg, rgba(255, 47, 95, 0.22), rgba(255, 255, 255, 0.05)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 76px);
  border-radius: 8px;
  transform: rotate(-3deg);
}

.logo-showcase {
  position: absolute;
  top: 8px;
  left: 28px;
  z-index: 2;
  display: block;
  padding: 0;
}

.logo-showcase img {
  width: 136px;
  height: 136px;
  object-fit: cover;
  border-radius: 999px;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.42), 0 0 52px rgba(255, 47, 95, 0.2);
}

.logo-showcase div {
  display: none;
}

.logo-showcase p {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 900;
  line-height: 1;
}

.logo-showcase p span:first-child {
  color: var(--white);
}

.logo-showcase p span:last-child {
  color: var(--pink-2);
}

.logo-showcase div > span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

.phone-shell {
  position: relative;
  z-index: 1;
  justify-self: end;
  width: min(300px, 100%);
  margin-top: 72px;
  padding: 14px;
  background: #070d11;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 4px 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
}

.phone-brand {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.phone-brand img {
  width: 18px;
  height: 18px;
  object-fit: cover;
  border-radius: 999px;
}

.voice-panel,
.reminder-card,
.reminder-row {
  border-radius: 8px;
}

.voice-panel {
  padding: 14px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(255, 47, 95, 0.94), rgba(255, 47, 95, 0.54)),
    #121820;
}

.panel-label {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.voice-command {
  margin-bottom: 14px;
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.25;
}

.waveform {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 7px;
  align-items: end;
  height: 44px;
}

.waveform span {
  display: block;
  height: 20px;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 8px;
}

.waveform span:nth-child(2),
.waveform span:nth-child(7) {
  height: 34px;
}

.waveform span:nth-child(3),
.waveform span:nth-child(6),
.waveform span:nth-child(9) {
  height: 26px;
}

.waveform span:nth-child(4) {
  height: 42px;
}

.waveform span:nth-child(5) {
  height: 16px;
}

.reminder-card {
  margin-top: 14px;
  padding: 14px;
  color: #101820;
  background: #ffffff;
}

.reminder-card h2 {
  margin: 12px 0 6px;
  font-size: 1.24rem;
}

.reminder-card p {
  margin-bottom: 0;
  color: #65707a;
}

.time-pill {
  display: inline-flex;
  padding: 5px 9px;
  color: var(--pink);
  background: rgba(255, 47, 95, 0.12);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.reminder-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 10px;
  padding: 10px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.reminder-row strong {
  display: block;
  margin-bottom: 2px;
}

.reminder-row p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
}

.row-dot {
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  margin-top: 6px;
  background: var(--white);
  border-radius: 999px;
}

.row-dot-pink {
  background: var(--pink);
}

.signal-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0 5vw;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.signal-band div {
  padding: 22px;
  background: rgba(255, 255, 255, 0.045);
}

.signal-band strong,
.signal-band span {
  display: block;
}

.signal-band strong {
  margin-bottom: 4px;
}

.signal-band span {
  color: var(--muted);
}

.story-section,
.how-section,
.examples-section,
.pricing-section,
.waitlist-section {
  padding: 90px 5vw;
}

.story-section {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 42px;
  align-items: center;
}

.story-copy {
  max-width: 790px;
}

.story-copy h2 {
  margin-bottom: 18px;
  font-size: 2.85rem;
  line-height: 1.06;
}

.story-copy p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
}

.story-card {
  padding: 26px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.story-card img {
  width: 96px;
  height: 96px;
  margin-bottom: 18px;
  object-fit: cover;
  border-radius: 999px;
  box-shadow: 0 0 42px rgba(255, 47, 95, 0.2);
}

.story-card h3 {
  margin-bottom: 10px;
  font-size: 1.45rem;
}

.story-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading.centered {
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading h2,
.waitlist-copy h2 {
  margin-bottom: 14px;
  font-size: 2.65rem;
  line-height: 1.06;
}

.section-subtitle {
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.06rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.step-card {
  min-height: 100%;
  padding: 24px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.step-number {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--pink), #ff5179);
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 900;
}

.step-card h3 {
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.step-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.feature-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card,
.plan-card,
.waitlist-form {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.feature-card {
  padding: 24px;
}

.feature-icon {
  display: block;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  background:
    linear-gradient(90deg, var(--white) 0 48%, transparent 48% 58%, var(--pink) 58%),
    #080e13;
  border-radius: 8px;
}

.feature-icon.accent {
  background:
    linear-gradient(0deg, var(--pink-2) 0 44%, transparent 44% 58%, var(--white) 58%),
    #080e13;
}

.feature-icon.warm {
  background:
    linear-gradient(135deg, var(--white) 0 48%, transparent 48% 58%, var(--pink) 58%),
    #080e13;
}

.feature-card h3,
.plan-card h3 {
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.feature-card p,
.plan-description {
  margin-bottom: 0;
  color: var(--muted);
}

.pricing-section {
  background: rgba(255, 255, 255, 0.03);
}

.pricing-grid {
  align-items: stretch;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 26px;
}

.plan-card.featured {
  border-color: rgba(255, 47, 95, 0.55);
  box-shadow: 0 24px 70px rgba(255, 47, 95, 0.12);
}

.plan-badge {
  width: max-content;
  margin-bottom: 14px;
  padding: 6px 10px;
  color: #ffffff;
  background: var(--pink);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
}

.plan-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.plan-head span {
  color: var(--pink-2);
  font-size: 0.82rem;
  font-weight: 900;
}

.price-line {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 24px 0 20px;
}

.old-price {
  position: relative;
  color: #7f8993;
  font-size: 1.35rem;
  font-weight: 800;
}

.old-price::after {
  position: absolute;
  top: 50%;
  left: -4px;
  width: calc(100% + 8px);
  height: 3px;
  content: "";
  background: var(--pink);
  transform: rotate(-8deg);
}

.new-price {
  color: var(--pink-2);
  font-size: 2.85rem;
  font-weight: 900;
  line-height: 1;
}

.per-month {
  color: var(--muted);
  font-weight: 800;
}

.plan-list {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.plan-list li {
  position: relative;
  padding-left: 24px;
}

.plan-list li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 9px;
  height: 9px;
  content: "";
  background: var(--pink);
  border-radius: 999px;
}

.button-plan {
  width: 100%;
  margin-top: auto;
}

.waitlist-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  gap: 42px;
  align-items: start;
}

.waitlist-copy {
  position: sticky;
  top: 106px;
}

.waitlist-copy p {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.05rem;
}

.waitlist-note {
  display: grid;
  gap: 3px;
  max-width: 460px;
  margin-top: 24px;
  padding: 18px;
  background: var(--pink-soft);
  border: 1px solid rgba(255, 47, 95, 0.28);
  border-radius: 8px;
}

.waitlist-note span {
  color: #ffd7df;
}

.waitlist-form {
  display: grid;
  gap: 18px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field-group {
  display: grid;
  gap: 7px;
}

label {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  color: var(--ink);
  background: rgba(2, 6, 8, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

input::placeholder {
  color: #77828d;
}

input:focus,
select:focus {
  background: #080e13;
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(255, 47, 95, 0.17);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-weight: 700;
}

.consent input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 3px;
  accent-color: var(--pink);
}

.form-submit {
  width: 100%;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: #ffd7df;
  font-weight: 800;
}

.form-status.error {
  color: #ff8da6;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 5vw;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.045);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--pink-2);
  font-weight: 900;
}

@media (max-width: 1040px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-visual {
    min-height: 520px;
  }

  .logo-showcase {
    left: 4vw;
  }

  h1 {
    font-size: 3.6rem;
  }

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

  .story-section {
    grid-template-columns: 1fr;
  }

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

  .waitlist-copy {
    position: static;
  }
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    gap: 12px;
    padding: 14px 18px;
  }

  .brand > span:last-child {
    max-width: 136px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nav-links {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .hero,
  .story-section,
  .how-section,
  .examples-section,
  .pricing-section,
  .waitlist-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero {
    gap: 34px;
    padding-top: 42px;
    padding-bottom: 0;
  }

  h1 {
    max-width: 10ch;
    font-size: 2.72rem;
    line-height: 1.02;
  }

  .hero-text {
    max-width: 34ch;
    font-size: 1.04rem;
  }

  .hero-actions {
    display: grid;
    max-width: 360px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .early-offer {
    align-items: flex-start;
    max-width: 360px;
  }

  .hero-visual {
    min-height: auto;
    max-height: none;
    overflow: visible;
    justify-items: start;
  }

  .logo-showcase {
    position: relative;
    top: auto;
    left: auto;
    display: flex;
    width: min(100%, 360px);
    gap: 14px;
    align-items: center;
    justify-items: start;
    padding: 12px;
    text-align: left;
  }

  .logo-showcase img {
    width: 64px;
    height: 64px;
  }

  .logo-showcase div {
    display: block;
  }

  .logo-showcase p {
    font-size: 1.42rem;
  }

  .phone-shell {
    display: none;
  }

  .signal-band {
    grid-template-columns: 1fr;
    margin-right: 18px;
    margin-left: 18px;
  }

  .section-heading h2,
  .story-copy h2,
  .waitlist-copy h2 {
    font-size: 2rem;
  }

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

  .plan-head {
    display: block;
    padding-right: 0;
  }

  .site-footer {
    display: grid;
  }
}

@media (max-width: 420px) {
  .brand > span:last-child {
    max-width: 112px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero-actions .button {
    width: 100%;
  }

  h1 {
    font-size: 2.34rem;
  }

  .new-price {
    font-size: 2.35rem;
  }
}
