:root {
  --ink: #071112;
  --ink-2: #102022;
  --paper: #fff8ee;
  --paper-2: #f4efe5;
  --white: #ffffff;
  --coral: #ff5a47;
  --coral-deep: #e64031;
  --teal: #008b8f;
  --teal-bright: #19c6c8;
  --chrome: #dbe4e2;
  --muted: #6d7775;
  --line: rgba(7, 17, 18, 0.14);
  --shadow: 0 24px 70px rgba(7, 17, 18, 0.24);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.45;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
}

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

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: min(1180px, calc(100% - 48px));
  margin: 24px auto 0;
  padding: 12px 14px 12px 18px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(7, 17, 18, 0.52);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  line-height: 1;
}

.brand-word {
  font-size: 1.75rem;
}

.brand-word span,
.mini-brand span {
  color: var(--coral);
}

.axle-mark,
.axle-mini {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 42px;
  height: 22px;
}

.axle-mark::before,
.axle-mark::after,
.axle-mini::before,
.axle-mini::after {
  content: "";
  position: absolute;
  top: 3px;
  width: 16px;
  height: 16px;
  border: 4px solid var(--coral);
  border-radius: 50%;
  background: var(--ink);
}

.axle-mark::before,
.axle-mini::before {
  left: 0;
}

.axle-mark::after,
.axle-mini::after {
  right: 0;
}

.axle-mark span {
  display: block;
  width: 100%;
  height: 100%;
}

.axle-mark span,
.axle-mini {
  background:
    linear-gradient(90deg, transparent 5px, var(--teal-bright) 5px, var(--teal-bright) 34px, transparent 34px);
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.88);
}

.site-nav a {
  padding: 8px 0;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  color: var(--white);
  font-weight: 850;
  border-radius: 8px;
  background: var(--coral);
  box-shadow: 0 12px 28px rgba(255, 90, 71, 0.28);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
}

.menu-icon {
  position: relative;
}

.menu-icon::before,
.menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-icon::before {
  top: -7px;
}

.menu-icon::after {
  top: 7px;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-picture {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 17, 18, 0.94) 0%, rgba(7, 17, 18, 0.78) 34%, rgba(7, 17, 18, 0.14) 70%),
    linear-gradient(180deg, rgba(7, 17, 18, 0.50), rgba(7, 17, 18, 0.20) 45%, rgba(7, 17, 18, 0.78));
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.62fr);
  align-items: center;
  gap: 56px;
  width: min(1180px, calc(100% - 48px));
  min-height: 760px;
  margin: 0 auto;
  padding: 120px 0 58px;
}

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

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

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

h1 {
  max-width: 8.5em;
  margin-bottom: 22px;
  font-size: 5.4rem;
  line-height: 0.9;
  font-weight: 950;
}

h2 {
  margin-bottom: 16px;
  font-size: 3rem;
  line-height: 1.02;
  font-weight: 940;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
  line-height: 1.12;
}

.hero-lede {
  max-width: 520px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.28rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  white-space: nowrap;
}

.button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-primary {
  color: var(--white);
  background: var(--coral);
  box-shadow: 0 18px 34px rgba(255, 90, 71, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible,
.header-cta:hover,
.header-cta:focus-visible {
  background: var(--coral-deep);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.07);
}

.button-full {
  width: 100%;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 650px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(7, 17, 18, 0.50);
}

.hero-proof div {
  min-width: 0;
  padding: 20px;
}

.hero-proof div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  margin-bottom: 4px;
  font-size: 0.98rem;
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.70);
  font-size: 0.88rem;
}

.mission-card {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(7, 17, 18, 0.80);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-card {
  align-self: end;
  max-width: 410px;
  justify-self: end;
  padding: 22px;
}

.mission-topline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--teal-bright);
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 5px rgba(255, 90, 71, 0.18);
}

.mission-main h2 {
  margin-bottom: 10px;
  font-size: 1.7rem;
  line-height: 1.08;
}

.mission-main p {
  color: rgba(255, 255, 255, 0.72);
}

.mission-label,
.panel-label {
  margin-bottom: 4px;
  color: var(--teal-bright);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.mission-badge,
.tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 0 10px;
  color: var(--white);
  border-radius: 8px;
  background: var(--teal);
  font-size: 0.76rem;
  font-weight: 900;
}

.role-list {
  display: grid;
  gap: 9px;
  margin: 18px 0;
}

.role-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
}

.role-list span::before,
.checklist span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal-bright);
}

.section-inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.how-strip {
  padding: 38px 0 48px;
  background: var(--paper);
}

.how-inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 34px;
  align-items: start;
}

.how-inner h2 {
  margin-bottom: 0;
}

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

.step {
  position: relative;
  min-height: 150px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  color: var(--white);
  border-radius: 50%;
  background: var(--ink);
  font-weight: 900;
}

.step:nth-child(2) .step-number {
  background: var(--coral);
}

.step:nth-child(3) .step-number {
  background: var(--teal);
}

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

.app-section {
  padding: 86px 0 96px;
  color: var(--white);
  background: var(--ink);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.70);
  font-size: 1.08rem;
}

.phone-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: center;
}

.phone {
  min-width: 0;
  padding: 12px;
  border: 2px solid rgba(255, 255, 255, 0.16);
  border-radius: 38px;
  background: #030808;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
}

.phone-raised {
  transform: translateY(-18px);
}

.phone-screen {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(25, 198, 200, 0.08), rgba(25, 198, 200, 0) 32%),
    #071112;
}

.phone-status,
.screen-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 850;
}

.signal {
  display: inline-block;
  width: 36px;
  height: 12px;
  border-top: 3px solid rgba(255, 255, 255, 0.90);
  border-right: 3px solid rgba(255, 255, 255, 0.90);
  border-radius: 2px;
}

.mini-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-weight: 950;
}

.axle-mini {
  width: 24px;
  height: 14px;
  background:
    linear-gradient(90deg, transparent 4px, var(--teal-bright) 4px, var(--teal-bright) 20px, transparent 20px);
}

.axle-mini::before,
.axle-mini::after {
  top: 2px;
  width: 10px;
  height: 10px;
  border-width: 3px;
}

.phone h3 {
  font-size: 1.55rem;
}

.screen-subtitle {
  color: rgba(255, 255, 255, 0.70);
}

.invite-card,
.role-panel,
.checklist,
.exit-plan,
.why-card,
.quote-card,
.mission-detail {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.invite-card {
  overflow: hidden;
  margin-top: 14px;
}

.invite-card.active {
  background: rgba(255, 255, 255, 0.075);
}

.invite-photo {
  height: 116px;
  background:
    linear-gradient(135deg, rgba(255, 90, 71, 0.42), rgba(0, 139, 143, 0.28)),
    url("/assets/hero-third-wheel.jpg") center / cover;
}

.invite-photo-two {
  background-position: 78% 42%;
}

.invite-body {
  position: relative;
  padding: 16px;
}

.invite-body h4,
.mission-detail h4,
.role-panel h4,
.profile-head h4 {
  margin-bottom: 4px;
  font-size: 1.08rem;
}

.invite-body p,
.mission-detail p,
.role-panel p,
.why-card p,
.quote-card p,
.exit-plan span,
.host-row span {
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.accent-text {
  color: var(--teal-bright) !important;
  font-weight: 850;
}

.tag {
  position: absolute;
  top: -102px;
  right: 12px;
}

.invite-actions {
  display: grid;
  grid-template-columns: 1fr 90px;
  gap: 10px;
  margin-top: 14px;
}

.invite-actions button,
.mission-detail button,
.mission-accept {
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: var(--white);
  font-weight: 900;
  background: rgba(255, 255, 255, 0.07);
}

.invite-actions button:first-child,
.mission-detail button,
.mission-accept {
  background: var(--coral);
  border-color: transparent;
}

.tab-bar {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 12px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 8px;
  background: rgba(3, 8, 8, 0.92);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
  text-align: center;
}

.tab-bar .active {
  color: var(--coral);
}

.screen-top h3 {
  margin: 0;
  font-size: 1.25rem;
}

.host-row,
.profile-head {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}

.avatar,
.couple-thumb {
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(255, 90, 71, 0.28), rgba(25, 198, 200, 0.22)),
    url("/assets/hero-third-wheel.jpg") center / cover;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.36);
}

.avatar {
  width: 62px;
  height: 62px;
}

.avatar-josh {
  background-position: 62% 44%;
}

.avatar-evan {
  width: 104px;
  height: 104px;
  background-position: 74% 24%;
}

.mission-detail {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  margin-bottom: 18px;
}

.couple-thumb {
  width: 52px;
  height: 52px;
  background-position: 72% 55%;
}

.role-panel,
.checklist,
.exit-plan,
.why-card,
.quote-card {
  padding: 16px;
  margin-top: 14px;
}

.checklist {
  display: grid;
  gap: 12px;
}

.checklist span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.88);
}

.exit-plan {
  display: grid;
  grid-template-columns: 1fr;
}

.mission-accept {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
}

.profile-head {
  grid-template-columns: 104px 1fr;
  margin: 18px 0 24px;
}

.profile-head p {
  color: rgba(255, 255, 255, 0.74);
}

.power-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.power-grid div {
  min-height: 104px;
  padding: 14px 10px;
  border-radius: 8px;
  background: var(--teal);
  text-align: center;
}

.power-grid .power-hot {
  background: var(--coral);
}

.power-grid strong,
.power-grid span {
  display: block;
}

.power-grid strong {
  margin-bottom: 6px;
  font-size: 0.86rem;
}

.power-grid span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
}

.quote-card blockquote {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.85);
}

.safety-section,
.stories-section,
.waitlist-section {
  padding: 86px 0;
}

.split-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 58px;
}

.split-section .eyebrow,
.waitlist-section .eyebrow,
.stories-section .eyebrow {
  color: var(--teal);
}

.safety-grid,
.story-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.safety-grid article,
.story-grid article {
  min-height: 160px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.safety-grid p,
.story-grid p,
.waitlist-inner p {
  color: var(--muted);
}

.stories-section {
  background: var(--paper-2);
}

.compact {
  max-width: 600px;
}

.story-grid {
  grid-template-columns: repeat(3, 1fr);
}

.story-grid article {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.story-grid p {
  font-size: 1.05rem;
}

.story-grid strong {
  color: var(--teal);
}

.waitlist-section {
  color: var(--white);
  background: var(--ink-2);
}

.waitlist-inner {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 52px;
  align-items: center;
}

.waitlist-inner p {
  color: rgba(255, 255, 255, 0.70);
}

.waitlist-form {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.waitlist-form label {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 850;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.waitlist-form input {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: var(--white);
  background: rgba(7, 17, 18, 0.82);
  outline: none;
}

.waitlist-form input:focus {
  border-color: var(--teal-bright);
}

.form-status {
  min-height: 24px;
  margin: 12px 0 0;
  color: var(--teal-bright) !important;
  font-weight: 850;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px max(24px, calc((100% - 1180px) / 2));
  color: rgba(255, 255, 255, 0.72);
  background: #030808;
}

.footer-brand {
  color: var(--white);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
  }

  .site-header.nav-open .site-nav {
    position: fixed;
    top: 84px;
    left: 24px;
    right: 24px;
    display: grid;
    gap: 6px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(7, 17, 18, 0.96);
  }

  .site-header.nav-open .site-nav a {
    padding: 14px 10px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-card {
    justify-self: start;
    align-self: auto;
  }

  .how-inner,
  .split-section,
  .waitlist-inner {
    grid-template-columns: 1fr;
  }

  .phone-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .phone-raised {
    transform: none;
  }

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

@media (max-width: 760px) {
  .site-header {
    width: calc(100% - 28px);
    margin-top: 14px;
    padding: 10px 10px 10px 12px;
  }

  .brand-word {
    font-size: 1.45rem;
  }

  .hero-picture {
    bottom: auto;
    height: 300px;
  }

  .hero-picture img {
    object-position: 63% 50%;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(7, 17, 18, 0.24) 0%, rgba(7, 17, 18, 0.42) 238px, rgba(7, 17, 18, 0.98) 302px),
      linear-gradient(90deg, rgba(7, 17, 18, 0.40), rgba(7, 17, 18, 0.04));
  }

  .hero-inner,
  .section-inner {
    width: calc(100% - 32px);
  }

  .hero-inner {
    min-height: 0;
    padding: 328px 0 34px;
  }

  h1 {
    font-size: 3.55rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .hero-lede {
    font-size: 1.08rem;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-proof,
  .steps,
  .safety-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-proof,
  .hero-card {
    display: none;
  }

  .hero-proof div + div {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .how-strip {
    padding-top: 30px;
  }

  .app-section,
  .safety-section,
  .stories-section,
  .waitlist-section {
    padding: 64px 0;
  }

  .phone {
    border-radius: 32px;
    padding: 10px;
  }

  .phone-screen {
    min-height: 630px;
    padding: 18px;
    border-radius: 24px;
  }

  .mission-detail {
    grid-template-columns: 48px 1fr;
  }

  .mission-detail button {
    grid-column: 1 / -1;
  }

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

  .power-grid div {
    min-height: 82px;
  }

  .site-footer {
    display: grid;
    justify-items: start;
  }
}

@media (max-width: 430px) {
  .brand-word {
    font-size: 1.28rem;
  }

  .axle-mark {
    width: 36px;
  }

  .axle-mark::before,
  .axle-mark::after {
    width: 14px;
    height: 14px;
    border-width: 3px;
  }

  h1 {
    font-size: 3.05rem;
  }

  .hero-card {
    padding: 18px;
  }

  .invite-actions {
    grid-template-columns: 1fr;
  }
}
