:root {
  color-scheme: dark;
  --page-shell: min(1680px, calc(100% - 140px));
  --ink: #f7f3ff;
  --muted: #b5aebe;
  --subtle: #7d738b;
  --base: #08070c;
  --surface: #111018;
  --surface-2: #181523;
  --surface-3: #221d31;
  --primary: #db90ff;
  --cyan: #00e3fd;
  --rose: #ff6f9f;
  --amber: #ffd27a;
  --shadow: rgba(0, 0, 0, 0.56);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 20% 5%, rgba(219, 144, 255, 0.18), transparent 28rem),
    radial-gradient(circle at 85% 10%, rgba(0, 227, 253, 0.13), transparent 26rem),
    linear-gradient(180deg, #08070c 0%, #0b0911 45%, #08070c 100%);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
}

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

button,
input {
  font: inherit;
}

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

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;
  display: grid;
  width: var(--page-shell);
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(17, 16, 24, 0.64);
  box-shadow: 0 18px 70px var(--shadow);
  transform: translateX(-50%);
  backdrop-filter: blur(26px);
}

.site-header.is-scrolled {
  background: rgba(17, 16, 24, 0.82);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

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

.brand-copy {
  display: grid;
  gap: 2px;
  line-height: 1.1;
}

.brand-name {
  color: var(--ink);
}

.brand-tagline {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.nav-links a,
.header-cta,
.ghost-button,
.primary-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 18px;
  font-size: 0.9rem;
  font-weight: 700;
}

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

.nav-links a:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.07);
}

.header-cta,
.ghost-button {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
}

.primary-button {
  color: #071014;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  box-shadow: 0 0 34px rgba(0, 227, 253, 0.2);
  border: 0;
  cursor: pointer;
}

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

.hero {
  position: relative;
  display: grid;
  min-height: 96svh;
  place-items: center;
  overflow: hidden;
  padding: 124px 24px 84px;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  content: "";
  background: linear-gradient(to top, var(--base), transparent);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-backdrop::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(8, 7, 12, 0.92), rgba(8, 7, 12, 0.5) 45%, rgba(8, 7, 12, 0.86)),
    radial-gradient(circle at 55% 45%, rgba(255, 111, 159, 0.22), transparent 24rem);
}

.hero-phone,
.feature-phone {
  position: absolute;
  width: min(330px, 35vw);
  min-height: 560px;
  border-radius: 34px;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 16%, rgba(219, 144, 255, 0.22), transparent 13rem),
    radial-gradient(circle at 75% 75%, rgba(0, 227, 253, 0.13), transparent 13rem),
    linear-gradient(180deg, rgba(28, 24, 39, 0.94), rgba(11, 9, 16, 0.96));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.68);
  opacity: 0.88;
  overflow: hidden;
}

.hero-shot {
  padding: 0;
  background-position: center;
  background-size: cover;
  filter: saturate(1.05) contrast(1.04);
}

.shot-chat {
  background-image: linear-gradient(rgba(9, 7, 13, 0.08), rgba(9, 7, 13, 0.3)), url("assets/ai-chat.png");
}

.shot-match {
  background-image: linear-gradient(rgba(9, 7, 13, 0.04), rgba(9, 7, 13, 0.12)), url("assets/daily-match.png");
}

.shot-premium {
  background-image: linear-gradient(rgba(9, 7, 13, 0.14), rgba(9, 7, 13, 0.42)), url("assets/premium.png");
}

.hero-phone-one {
  right: 12%;
  top: 18%;
  transform: rotate(6deg);
}

.hero-phone-two {
  right: 31%;
  top: 30%;
  transform: rotate(-6deg);
}

.hero-phone-three {
  right: -1%;
  top: 36%;
  transform: rotate(12deg);
}

.phone-brand-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 86px;
  padding: 22px 28px 18px;
  color: var(--ink);
  font-size: 1.18rem;
  font-weight: 800;
  background: linear-gradient(180deg, rgba(7, 8, 12, 0.98), rgba(7, 8, 12, 0.8) 72%, transparent);
}

.phone-brand-overlay img {
  width: 28px;
  height: 28px;
  border-radius: 10px;
}

.phone-brand-overlay.compact {
  display: grid;
  gap: 3px;
}

.phone-brand-overlay small {
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.phone-bottom-overlay {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 12px;
  border-radius: 26px;
  background: rgba(7, 8, 12, 0.88);
  box-shadow: 0 -18px 50px rgba(7, 8, 12, 0.48);
  backdrop-filter: blur(18px);
}

.phone-bottom-overlay.premium {
  grid-template-columns: repeat(2, 1fr);
}

.phone-bottom-overlay span {
  display: grid;
  min-height: 42px;
  place-items: center;
  border-radius: 18px;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.08);
}

.phone-bottom-overlay span:last-child {
  color: #071014;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
}

.chat-action-overlay {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 32px;
  border-radius: 26px;
  padding: 20px;
  background: rgba(7, 8, 12, 0.78);
  box-shadow: 0 -18px 55px rgba(7, 8, 12, 0.5);
  backdrop-filter: blur(18px);
}

.chat-action-overlay strong {
  color: var(--cyan);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chat-action-overlay p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.ai-card-overlay {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 30px;
  border-radius: 28px;
  padding: 22px;
  background: rgba(7, 8, 12, 0.82);
  box-shadow: 0 -18px 55px rgba(7, 8, 12, 0.48);
  backdrop-filter: blur(18px);
}

.ai-card-overlay strong {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ai-card-overlay h3 {
  margin: 12px 0 10px;
  color: var(--ink);
  font-size: 1.45rem;
}

.ai-card-overlay p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--ink);
  font-weight: 800;
}

.phone-top small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.mystery-orbit {
  position: relative;
  height: 250px;
  margin: 28px 0;
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.09), transparent 5rem),
    linear-gradient(135deg, rgba(219, 144, 255, 0.12), rgba(0, 227, 253, 0.08));
}

.mystery-orbit span {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 1px solid rgba(0, 227, 253, 0.22);
  transform: translate(-50%, -50%) rotate(calc(var(--i, 1) * 50deg));
}

.mystery-orbit span:nth-child(1) {
  --i: 1;
}

.mystery-orbit span:nth-child(2) {
  --i: 2;
  width: 190px;
  height: 190px;
  border-color: rgba(219, 144, 255, 0.24);
}

.mystery-orbit span:nth-child(3) {
  --i: 3;
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  box-shadow: 0 0 45px rgba(219, 144, 255, 0.38);
}

.match-panel,
.weekend-preview {
  border-radius: 26px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.match-panel strong,
.weekend-preview span,
.suggestion {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.match-panel h3 {
  margin: 12px 0 10px;
  font-size: 1.7rem;
}

.match-panel p,
.weekend-preview p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.chat-preview {
  display: grid;
  gap: 14px;
  margin-top: 48px;
}

.bubble {
  max-width: 88%;
  margin: 0;
  border-radius: 22px;
  padding: 15px 17px;
  color: var(--ink);
  line-height: 1.45;
}

.bubble.left {
  background: rgba(255, 255, 255, 0.08);
}

.bubble.right {
  justify-self: end;
  background: linear-gradient(135deg, rgba(219, 144, 255, 0.36), rgba(0, 227, 253, 0.24));
}

.suggestion {
  margin: 26px 0 0;
  border-radius: 20px;
  padding: 16px;
  background: rgba(0, 227, 253, 0.1);
}

.weekend-preview {
  margin-top: 185px;
}

.weekend-preview strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.45rem;
}

.reveal-ring {
  display: grid;
  width: 190px;
  height: 190px;
  place-items: center;
  margin: 54px auto 38px;
  border-radius: 50%;
  color: var(--ink);
  font-size: 4rem;
  font-weight: 800;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 62%),
    linear-gradient(135deg, rgba(219, 144, 255, 0.28), rgba(0, 227, 253, 0.18));
  box-shadow: 0 0 70px rgba(219, 144, 255, 0.22);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(980px, 100%);
  margin-right: auto;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.waitlist-copy h2 {
  margin: 0;
  font-family: Manrope, Inter, sans-serif;
  line-height: 0.96;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(4rem, 14vw, 10.2rem);
}

.hero-line {
  margin: 10px 0 0;
  color: var(--primary);
  font-size: clamp(1.25rem, 3vw, 2.2rem);
  font-weight: 800;
}

.hero-copy {
  max-width: 610px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.22rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.trust-strip {
  position: relative;
  z-index: 3;
  display: grid;
  width: var(--page-shell);
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: -34px auto 0;
  padding: 14px;
  border-radius: 28px;
  background: rgba(24, 21, 35, 0.76);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(24px);
}

.trust-strip div {
  min-height: 112px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.045);
}

.trust-strip strong {
  display: block;
  font-size: 1.4rem;
}

.trust-strip span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.55;
}

.section,
.waitlist-section {
  width: var(--page-shell);
  margin: 0 auto;
  padding: 110px 0 0;
}

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

.section-heading.narrow {
  max-width: 690px;
}

.section h2,
.waitlist-copy h2 {
  font-size: clamp(2.3rem, 6vw, 5.6rem);
}

.section-heading p:not(.eyebrow),
.showcase-copy > p,
.weekend-panel p,
.waitlist-copy p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.flow-grid,
.safety-grid,
.pricing-grid {
  display: grid;
  gap: 16px;
}

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

.flow-card,
.safety-grid article,
.price-card,
.plan-card {
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.flow-card {
  min-height: 270px;
  padding: 30px;
}

.flow-card span,
.price-card span,
.plan-card span {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.flow-card h3,
.safety-grid h3,
.price-card h3,
.plan-card h3 {
  margin: 26px 0 12px;
  font-size: 1.35rem;
}

.flow-card p,
.safety-grid p,
.price-card p,
.plan-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  align-items: center;
  gap: 64px;
}

.showcase-copy h2 {
  margin-bottom: 24px;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  min-height: 52px;
  padding: 15px 18px;
  border-radius: 18px;
  color: #efe9f7;
  background: rgba(255, 255, 255, 0.06);
}

.screen-stack {
  position: relative;
  min-height: 650px;
}

.screen-stack .feature-phone {
  position: absolute;
}

.stack-main {
  right: 0;
  top: 0;
  width: min(380px, 64%);
  transform: rotate(5deg);
}

.stack-float {
  left: 0;
  bottom: 0;
  width: min(330px, 56%);
  transform: rotate(-7deg);
}

.safety-section {
  padding-top: 80px;
}

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

.safety-grid article {
  padding: 28px;
}

.weekend-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  align-items: center;
  gap: 32px;
  padding: clamp(28px, 6vw, 64px);
  border-radius: 38px;
  background:
    radial-gradient(circle at 78% 20%, rgba(255, 210, 122, 0.2), transparent 18rem),
    linear-gradient(135deg, rgba(219, 144, 255, 0.13), rgba(0, 227, 253, 0.08)),
    var(--surface);
}

.weekend-panel h2 {
  margin: 0 0 22px;
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(2.3rem, 5vw, 5rem);
  line-height: 1;
}

.weekend-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.weekend-features span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border-radius: 999px;
  padding: 0 14px;
  color: #f6efff;
  font-size: 0.88rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.08);
}

.weekend-cards {
  display: grid;
  gap: 14px;
}

.plan-card {
  padding: 28px;
  background: rgba(8, 7, 12, 0.5);
}

.plan-card button {
  min-height: 46px;
  margin-top: 24px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  color: #071014;
  font-weight: 800;
  cursor: pointer;
  background: linear-gradient(135deg, var(--amber), var(--rose));
}

.mini-plan-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.mini-plan-row div {
  min-height: 106px;
  border-radius: 24px;
  padding: 20px;
  background: rgba(8, 7, 12, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.mini-plan-row strong {
  display: block;
  color: var(--amber);
  font-size: 1.35rem;
}

.mini-plan-row span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.45;
}

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

.people-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.people-card {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  height: 480px;
  overflow: hidden;
  border-radius: 34px;
  background:
    radial-gradient(circle at 80% 10%, rgba(219, 144, 255, 0.16), transparent 18rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.ambassador-card {
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 111, 159, 0.18), transparent 18rem),
    radial-gradient(circle at 16% 86%, rgba(0, 227, 253, 0.12), transparent 17rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.035));
}

.people-image {
  height: 100%;
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

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

.ambassador-card .people-image img {
  object-position: center 40%;
  transform: scale(1.75);
  transform-origin: center 40%;
}

.people-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(24px, 3vw, 40px);
}

.people-copy span {
  display: inline-block;
  align-self: flex-start;
  width: fit-content;
  color: var(--cyan);
  background: rgba(0, 227, 253, 0.1);
  border: 1px solid rgba(0, 227, 253, 0.25);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.people-copy h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.08;
}

.people-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.people-alias {
  margin-bottom: 14px !important;
  color: var(--primary) !important;
  font-weight: 800;
}

.people-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.people-stats a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  transition: background 0.2s;
}

.people-stats a:hover {
  background: rgba(255, 255, 255, 0.13);
}

.stat-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.stat-icon--ig {
  color: #e1306c;
}

.stat-icon--yt {
  color: #ff0000;
}

.stat-info {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 3px;
  font-weight: 500;
}

.price-card {
  min-height: 260px;
  padding: 30px;
}

.price-card.featured {
  background:
    radial-gradient(circle at 80% 0%, rgba(0, 227, 253, 0.23), transparent 13rem),
    linear-gradient(180deg, rgba(219, 144, 255, 0.18), rgba(255, 255, 255, 0.055));
}

.price-card h3 {
  font-size: 2.2rem;
}

.waitlist-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 48px;
  align-items: center;
  padding-bottom: 90px;
}

.waitlist-copy {
  max-width: 720px;
}

.waitlist-proof {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}

.waitlist-proof span {
  font-size: 0.9rem;
  color: var(--muted);
}

.waitlist-form {
  display: grid;
  gap: 16px;
  padding: 22px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.06);
}

.waitlist-form label {
  display: grid;
  gap: 10px;
}

.waitlist-form span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.waitlist-form input {
  width: 100%;
  min-height: 54px;
  border: 0;
  border-radius: 18px;
  outline: none;
  padding: 0 16px;
  color: var(--ink);
  background: rgba(8, 7, 12, 0.7);
}

.waitlist-form input:focus {
  box-shadow: 0 0 0 4px rgba(0, 227, 253, 0.14);
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--cyan);
  font-size: 0.9rem;
}

.site-footer {
  position: relative;
  display: flex;
  width: var(--page-shell);
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 0 auto;
  padding: 34px 0 46px;
  color: var(--muted);
  text-align: center;
}

.footer-center {
  display: grid;
  justify-items: center;
  gap: 8px;
}

.footer-center p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  font-size: 0.85rem;
  font-weight: 700;
}

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--ink);
}

.footer-brand {
  position: absolute;
  left: 0;
  top: 34px;
  justify-content: center;
  color: var(--ink);
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  max-width: min(360px, calc(100% - 44px));
  padding: 15px 18px;
  border-radius: 18px;
  color: var(--ink);
  background: rgba(24, 21, 35, 0.9);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
  backdrop-filter: blur(22px);
}

.legal-header {
  position: sticky;
  transform: translateX(-50%);
}

.legal-page {
  width: min(920px, calc(100% - 48px));
  margin: 0 auto;
  padding: 150px 0 80px;
}

.legal-hero,
.legal-card {
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.legal-hero {
  padding: clamp(28px, 5vw, 46px);
}

.legal-hero h1 {
  margin: 0;
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(2.4rem, 7vw, 5rem);
  line-height: 1;
}

.legal-hero p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.legal-page a {
  color: var(--primary);
  font-weight: 700;
}

.legal-card {
  display: grid;
  gap: 34px;
  margin-top: 22px;
  padding: clamp(28px, 5vw, 46px);
}

.legal-card section {
  display: grid;
  gap: 12px;
}

.legal-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: 1.25rem;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  line-height: 1.75;
}

.legal-card p {
  margin: 0;
}

.legal-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.legal-card strong {
  color: var(--ink);
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 920px) {
  :root {
    --page-shell: calc(100% - 32px);
  }

  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    align-items: end;
    min-height: 100svh;
  }

  .hero-backdrop::before {
    background:
      linear-gradient(180deg, rgba(8, 7, 12, 0.22), rgba(8, 7, 12, 0.9) 67%, #08070c),
      radial-gradient(circle at 55% 35%, rgba(255, 111, 159, 0.2), transparent 22rem);
  }

  .hero-phone {
    width: 260px;
    min-height: 460px;
    padding: 20px;
  }

  .hero-phone-one {
    right: 20%;
    top: 11%;
  }

  .hero-phone-two {
    right: 48%;
    top: 18%;
  }

  .hero-phone-three {
    right: -12%;
    top: 19%;
  }

  .trust-strip,
  .flow-grid,
  .safety-grid,
  .pricing-grid,
  .people-grid,
  .showcase,
  .weekend-panel,
  .waitlist-section {
    grid-template-columns: 1fr;
  }

  .people-card {
    grid-template-columns: 1fr;
  }

  .showcase {
    gap: 30px;
  }

  .screen-stack {
    min-height: 540px;
  }

  .weekend-panel {
    padding: 28px;
  }
}

@media (max-width: 620px) {
  :root {
    --page-shell: calc(100% - 20px);
  }

  .site-header {
    top: 10px;
    gap: 10px;
    padding: 10px;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .brand-name {
    font-size: 0.95rem;
  }

  .brand-tagline {
    font-size: 0.58rem;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 13px;
    font-size: 0.82rem;
  }

  .hero {
    padding: 100px 16px 58px;
  }

  .hero-phone {
    width: 210px;
    min-height: 390px;
    padding: 16px;
  }

  .hero-phone-one {
    right: 19%;
    top: 10%;
  }

  .hero-phone-two {
    right: 44%;
    top: 20%;
  }

  .hero-phone-three {
    right: -28%;
    top: 21%;
  }

  .mystery-orbit {
    height: 160px;
    margin: 20px 0;
  }

  .match-panel,
  .weekend-preview {
    padding: 16px;
  }

  .phone-brand-overlay {
    min-height: 68px;
    padding: 16px 18px 14px;
    font-size: 0.96rem;
  }

  .phone-brand-overlay img {
    width: 22px;
    height: 22px;
  }

  .phone-brand-overlay small {
    font-size: 0.58rem;
  }

  .phone-bottom-overlay {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 8px;
  }

  .phone-bottom-overlay span {
    min-height: 34px;
    font-size: 0.62rem;
  }

  .chat-action-overlay {
    left: 12px;
    right: 12px;
    bottom: 14px;
    padding: 14px;
  }

  .ai-card-overlay {
    left: 12px;
    right: 12px;
    bottom: 14px;
    padding: 14px;
  }

  .ai-card-overlay h3 {
    font-size: 1.1rem;
  }

  .match-panel h3 {
    font-size: 1.25rem;
  }

  .chat-preview {
    margin-top: 26px;
  }

  .weekend-preview {
    margin-top: 96px;
  }

  .hero h1 {
    font-size: clamp(3.6rem, 20vw, 6rem);
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-actions {
    display: grid;
  }

  .trust-strip {
    margin-top: -20px;
  }

  .trust-strip div {
    min-height: auto;
  }

  .section,
  .waitlist-section {
    padding-top: 76px;
  }

  .screen-stack {
    min-height: 430px;
  }

  .mini-plan-row {
    grid-template-columns: 1fr;
  }

  .stack-main {
    width: 72%;
  }

  .stack-float {
    width: 62%;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
  }

  .footer-brand {
    position: static;
  }

  .site-footer p {
    width: 100%;
    text-align: center;
  }

  .legal-page {
    width: calc(100% - 20px);
    padding-top: 110px;
  }
}

/* ── App store badges ── */
.app-badges {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--ink);
}

.app-badge div {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.app-badge small {
  font-size: 0.65rem;
  color: var(--muted);
  font-weight: 500;
}

.app-badge strong {
  font-size: 0.9rem;
  font-weight: 800;
}

/* ── Founders section ── */
.leadership-heading {
  margin-top: 60px;
  margin-bottom: 28px;
}

.leadership-heading h2 {
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--ink);
  margin: 8px 0 0;
  line-height: 1.1;
}

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

.founder-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 24px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 60% 10%, rgba(219, 144, 255, 0.1), transparent 16rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.founder-image {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 18px;
  border: 3px solid rgba(255, 255, 255, 0.1);
}

.founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.founder-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 8px;
}

.founder-card > span {
  display: inline-block;
  color: var(--cyan);
  background: rgba(0, 227, 253, 0.1);
  border: 1px solid rgba(0, 227, 253, 0.25);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.founder-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* ── FAQ section ── */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.faq-item {
  padding: 28px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.faq-item h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 10px;
  line-height: 1.3;
}

.faq-item p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}
