:root {
  --black: #09070d;
  --plum: #2b1235;
  --pink: #ff2f8b;
  --coral: #ff5f5d;
  --teal: #00d6c9;
  --yellow: #ffe66b;
  --gold: #d9a441;
  --cream: #fff4e8;
  --paper: #fffaf5;
  --ink: #151118;
  --muted: #6f6472;
  --line: rgba(21, 17, 24, 0.14);
  --glass: rgba(9, 7, 13, 0.76);
  --shadow: 0 24px 70px rgba(43, 18, 53, 0.16);
  --soft-shadow: 0 14px 34px rgba(43, 18, 53, 0.1);
  --radius: 24px;
  --radius-sm: 16px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(circle at 15% 0%, rgba(255, 47, 139, 0.16), transparent 32%),
    radial-gradient(circle at 88% 10%, rgba(0, 214, 201, 0.16), transparent 30%),
    linear-gradient(180deg, #fff7ef 0%, #fffaf6 48%, #fff4e8 100%);
  color: var(--ink);
  font-family: var(--font-body);
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body:has(dialog[open]) {
  overflow: hidden;
}

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

button {
  cursor: pointer;
}

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

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
}

.site-shell {
  position: relative;
  overflow: hidden;
}

.site-shell::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 47, 139, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(43, 18, 53, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  content: "";
}

.site-shell::after {
  position: fixed;
  inset: auto -10% -24% auto;
  z-index: -1;
  width: 48vw;
  min-width: 380px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 47, 139, 0.2), transparent 62%);
  filter: blur(10px);
  content: "";
}

.site-nav {
  position: sticky;
  top: 14px;
  z-index: 30;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  width: min(1160px, calc(100% - 32px));
  margin: 14px auto 0;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: var(--glass);
  color: #ffffff;
  box-shadow: 0 18px 48px rgba(9, 7, 13, 0.22);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 10px;
}

.brand img {
  width: 42px;
  height: 34px;
  object-fit: contain;
  filter: drop-shadow(0 2px 0 rgba(255, 47, 139, 0.42));
}

.brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 0.96;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  gap: 6px;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 800;
}

.nav-links a:hover {
  background: rgba(255, 47, 139, 0.18);
  color: #ffffff;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-nav,
.nav-cta,
.primary-button,
.secondary-button,
.danger-button,
.reader-nav-button,
.reaction-cloud button,
.room-tile,
.story-action {
  border: 0;
  border-radius: 999px;
  font-weight: 900;
}

.icon-nav {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.nav-cta,
.primary-button {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  overflow: hidden;
  padding: 0 18px;
  background: linear-gradient(135deg, var(--pink), var(--coral));
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(255, 47, 139, 0.28);
}

.glossy-button::before,
.primary-button::before,
.nav-cta::before {
  position: absolute;
  inset: -60% auto auto -20%;
  width: 48%;
  height: 220%;
  transform: rotate(28deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  content: "";
  transition: transform 300ms ease;
}

.glossy-button:hover::before,
.primary-button:hover::before,
.nav-cta:hover::before {
  transform: translateX(260%) rotate(28deg);
}

.secondary-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border: 1px solid rgba(9, 7, 13, 0.14);
  background: rgba(255, 244, 232, 0.86);
  color: var(--ink);
}

.danger-button {
  min-height: 42px;
  padding: 0 16px;
  background: #fff0ef;
  color: #b6192b;
}

.primary-button svg,
.secondary-button svg,
.icon-nav svg,
.site-nav svg,
.phone-status svg,
.safety-grid svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.4;
}

.hero-section,
.section,
.site-footer {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 0.9fr);
  align-items: center;
  gap: 42px;
  min-height: calc(100dvh - 90px);
  padding: 72px 0 78px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.kicker {
  margin: 0 0 12px;
  color: var(--pink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 680px;
  font-size: clamp(52px, 7vw, 94px);
  line-height: 0.84;
}

.hero-copy > p:not(.kicker) {
  max-width: 590px;
  margin: 24px 0 0;
  color: #4f4354;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.58;
}

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

.social-proof {
  display: flex;
  max-width: 550px;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.spark {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--plum);
}

.floating-username {
  position: absolute;
  z-index: 1;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.46);
  color: rgba(43, 18, 53, 0.4);
  font-size: 13px;
  font-weight: 900;
  filter: blur(0.3px);
  backdrop-filter: blur(12px);
}

.handle-one {
  top: 14%;
  left: 38%;
}

.handle-two {
  right: 3%;
  bottom: 14%;
}

.hero-visual {
  position: relative;
  min-height: 580px;
}

.hero-visual::before {
  position: absolute;
  inset: 44px 4% 54px 6%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 47, 139, 0.32), transparent 60%),
    radial-gradient(circle at 74% 32%, rgba(0, 214, 201, 0.3), transparent 36%);
  filter: blur(8px);
  content: "";
}

.phone-mock {
  position: relative;
  overflow: hidden;
  border: 10px solid var(--black);
  border-radius: 42px;
  background: var(--black);
  color: #ffffff;
  box-shadow: 0 34px 90px rgba(43, 18, 53, 0.34);
}

.hero-phone {
  width: min(370px, 88%);
  min-height: 610px;
  margin-left: auto;
  transform: rotate(2deg);
  animation: floatPhone 7s ease-in-out infinite;
}

@keyframes floatPhone {
  0%,
  100% {
    transform: translateY(0) rotate(2deg);
  }

  50% {
    transform: translateY(-12px) rotate(-1deg);
  }
}

.phone-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 18px 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 900;
}

.mini-feed-card {
  margin: 12px;
  padding: 18px;
  border-radius: 28px;
  color: var(--black);
}

.mini-feed-card span,
.reader-preview-meta,
.reader-card-demo p {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(9, 7, 13, 0.88);
  color: #ffffff;
  font-size: 10px;
  font-weight: 900;
}

.mini-feed-card h3 {
  color: inherit;
  font-size: 28px;
  line-height: 0.96;
}

.mini-feed-card p {
  margin: 12px 0 0;
  font-weight: 900;
}

.mini-feed-card small {
  display: block;
  margin-top: 12px;
  color: rgba(9, 7, 13, 0.68);
  font-weight: 900;
}

.mini-feed-card.hot {
  background: linear-gradient(135deg, var(--pink), var(--coral));
  color: #ffffff;
}

.mini-feed-card.hot small,
.mini-feed-card.hot p {
  color: rgba(255, 255, 255, 0.86);
}

.mini-feed-card.coral {
  background: linear-gradient(135deg, var(--cream), var(--yellow));
}

.mini-feed-card.yellow {
  background: linear-gradient(135deg, var(--yellow), #ffffff);
}

.reaction-row {
  display: flex;
  gap: 8px;
  padding: 0 12px 16px;
}

.reaction-row button {
  flex: 1;
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-weight: 900;
}

.sticker,
.chat-bubble {
  position: absolute;
  z-index: 4;
  border: 2px solid var(--black);
  box-shadow: 7px 7px 0 rgba(9, 7, 13, 0.14);
}

.sticker {
  padding: 10px 12px;
  border-radius: 14px;
  background: var(--yellow);
  color: var(--black);
  font-size: 12px;
  font-weight: 1000;
  transform: rotate(-7deg);
}

.sticker-top {
  top: 82px;
  left: 18px;
}

.sticker-side {
  right: 0;
  bottom: 146px;
  background: var(--teal);
  transform: rotate(7deg);
}

.chat-bubble {
  max-width: 210px;
  padding: 12px 14px;
  border-radius: 22px;
  background: #ffffff;
  font-size: 13px;
  font-weight: 900;
}

.bubble-left {
  left: 0;
  bottom: 250px;
}

.bubble-right {
  right: 16px;
  top: 160px;
  background: var(--cream);
}

.section {
  padding: 82px 0;
}

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

.section-heading.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section h2 {
  font-size: clamp(34px, 5vw, 60px);
  line-height: 0.92;
}

.feature-grid,
.room-grid,
.safety-grid {
  display: grid;
  gap: 18px;
}

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

.feature-card {
  min-height: 260px;
  padding: 24px;
  border: 1px solid rgba(9, 7, 13, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--soft-shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.tilt-card:hover {
  transform: translateY(-6px) rotate(-1deg);
  box-shadow: var(--shadow);
}

.feature-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin-bottom: 36px;
  border-radius: 18px;
  background: var(--yellow);
  font-size: 28px;
  box-shadow: 7px 7px 0 var(--pink);
}

.feature-card h3 {
  font-size: 30px;
}

.feature-card p,
.story-copy p,
.waitlist-section p,
.safety-copy p {
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.58;
}

.phone-showcase {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr 0.9fr;
  align-items: center;
  gap: 0;
}

.phone-showcase::before {
  position: absolute;
  inset: 18% 24%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 47, 139, 0.26), transparent 60%);
  filter: blur(8px);
  content: "";
}

.small-phone {
  min-height: 440px;
  transform: scale(0.9);
}

.center-phone {
  min-height: 560px;
  padding: 24px;
  transform: translateY(-10px);
  background:
    radial-gradient(circle at 74% 20%, rgba(255, 47, 139, 0.36), transparent 34%),
    linear-gradient(135deg, var(--black), var(--plum));
}

.story-progress {
  display: flex;
  gap: 6px;
}

.story-progress span {
  height: 6px;
  flex: 1;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
}

.story-progress span:first-child,
.story-progress span:nth-child(2) {
  background: linear-gradient(90deg, var(--pink), var(--coral));
}

.reader-preview-meta {
  margin-top: 44px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--yellow);
}

.center-phone h3 {
  margin-top: 44px;
  color: #ffffff;
  font-size: 40px;
  line-height: 0.98;
}

.center-phone p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.35;
}

.side-reactions {
  position: absolute;
  right: 18px;
  bottom: 26px;
  display: grid;
  gap: 10px;
}

.side-reactions button {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 22px;
}

.composer-preview {
  display: grid;
  gap: 10px;
  padding: 14px;
}

.composer-preview span,
.composer-preview label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 900;
}

.composer-preview button,
.composer-preview input {
  min-height: 42px;
  border: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-weight: 900;
}

.composer-preview input {
  width: 100%;
  margin-top: 6px;
  padding: 0 12px;
}

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

.room-tile {
  display: grid;
  min-height: 160px;
  align-content: space-between;
  justify-items: start;
  padding: 18px;
  text-align: left;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.room-tile:hover {
  transform: translateY(-5px) rotate(-1deg);
  box-shadow: var(--shadow);
}

.room-tile span {
  font-size: 28px;
}

.room-tile strong {
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 0.98;
}

.room-tile small {
  color: rgba(9, 7, 13, 0.66);
  font-weight: 800;
}

.dating {
  background: linear-gradient(135deg, var(--pink), var(--coral));
  color: #ffffff;
}

.dating small,
.secrets small,
.messy small {
  color: rgba(255, 255, 255, 0.78);
}

.friendship {
  background: linear-gradient(135deg, var(--coral), var(--yellow));
}

.family,
.advice {
  background: var(--cream);
}

.work {
  background: linear-gradient(135deg, var(--teal), #d8fffb);
}

.secrets {
  background: var(--black);
  color: #ffffff;
}

.messy {
  background: linear-gradient(135deg, var(--plum), var(--pink));
  color: #ffffff;
}

.updates {
  background: linear-gradient(135deg, var(--gold), var(--yellow));
}

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

.story-copy h2 {
  margin-bottom: 18px;
}

.reader-stage {
  padding: 24px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 70% 30%, rgba(0, 214, 201, 0.2), transparent 34%),
    var(--black);
  box-shadow: var(--shadow);
}

.reader-card-demo {
  min-height: 460px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 47, 139, 0.24), transparent 44%),
    var(--plum);
  color: #ffffff;
}

.reader-card-demo h3 {
  max-width: 520px;
  margin-top: 80px;
  color: #ffffff;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 0.94;
}

.reader-demo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 60px;
}

.reader-demo-actions span,
.reaction-cloud button {
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-weight: 900;
}

.reaction-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.reaction-cloud button {
  border: 1px solid rgba(9, 7, 13, 0.1);
  background: #ffffff;
  color: var(--ink);
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.reaction-cloud button:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: var(--soft-shadow);
}

.safety-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(300px, 1fr);
  gap: 28px;
  padding: 42px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 82% 24%, rgba(0, 214, 201, 0.26), transparent 34%),
    var(--black);
  color: #ffffff;
}

.safety-section h2 {
  color: #ffffff;
}

.safety-section .kicker {
  color: var(--yellow);
}

.safety-copy p {
  color: rgba(255, 255, 255, 0.76);
}

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

.safety-grid article {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 900;
}

.waitlist-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: 28px;
  align-items: start;
  padding-bottom: 110px;
}

.waitlist-form {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(9, 7, 13, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--soft-shadow);
}

.waitlist-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.waitlist-form input,
.waitlist-form select,
.modal-box input,
.modal-box select,
.modal-box textarea,
.takes-drawer textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(9, 7, 13, 0.14);
  border-radius: 16px;
  background: #ffffff;
  color: var(--ink);
  font-weight: 700;
}

.modal-box textarea,
.takes-drawer textarea {
  min-height: 110px;
  padding: 14px;
  resize: vertical;
}

#waitlistStatus {
  min-height: 20px;
  margin: 0;
  color: var(--pink);
  font-size: 13px;
  font-weight: 900;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 26px 0 34px;
  border-top: 1px solid rgba(9, 7, 13, 0.12);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

dialog {
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
}

dialog::backdrop {
  background: rgba(9, 7, 13, 0.64);
  backdrop-filter: blur(10px);
}

.modal,
.onboarding-modal {
  width: min(880px, calc(100% - 24px));
  max-height: calc(100dvh - 24px);
}

.modal-box,
.onboarding-shell {
  width: 100%;
  max-height: calc(100dvh - 24px);
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 28px 90px rgba(9, 7, 13, 0.36);
}

.modal-box {
  padding: 22px;
}

.modal-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.modal-header h2 {
  font-size: 36px;
}

.icon-button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #f5eef4;
  color: var(--ink);
}

.composer-steps {
  display: grid;
  gap: 12px;
}

.composer-steps section,
.safety-meter {
  padding: 14px;
  border: 1px solid rgba(9, 7, 13, 0.1);
  border-radius: 20px;
  background: #fff9f2;
}

.composer-steps h3 {
  margin: 0 0 8px;
  font-size: 15px;
}

.safety-meter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  align-items: center;
  gap: 14px;
  margin: 14px 0;
  background: #e9fff9;
}

.safety-meter.warning {
  background: #fff8d2;
}

.safety-meter.danger {
  background: #ffe1e4;
}

.safety-meter strong,
.safety-meter span {
  display: block;
}

.safety-meter span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.meter-track {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(9, 7, 13, 0.12);
}

.meter-track span {
  display: block;
  width: var(--meter, 92%);
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--pink));
}

.check-row {
  padding: 12px 0;
}

.check-row label,
.radio-stack label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.modal-actions,
.onboarding-actions,
.reader-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.onboarding-shell {
  display: grid;
  grid-template-columns: minmax(250px, 0.8fr) minmax(0, 1.2fr);
  min-height: 520px;
  background: var(--black);
  color: #ffffff;
}

.splash-card {
  display: grid;
  place-content: center start;
  gap: 12px;
  padding: 30px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 47, 139, 0.34), transparent 38%),
    var(--black);
}

.splash-card img {
  width: 128px;
  height: 96px;
  object-fit: contain;
}

.splash-card h2 {
  color: #ffffff;
  font-size: 44px;
}

.splash-card p {
  max-width: 270px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
  line-height: 1.45;
}

.onboarding-slides {
  display: grid;
  min-height: 410px;
  place-items: center;
  padding: 32px;
  background: #ffffff;
  color: var(--ink);
}

.onboarding-slide {
  display: none;
  max-width: 430px;
}

.onboarding-slide.active {
  display: block;
}

.slide-icon {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 20px;
  background: var(--yellow);
  font-size: 30px;
  box-shadow: 8px 8px 0 var(--pink);
}

.onboarding-slide h3 {
  font-size: 40px;
}

.onboarding-slide p {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.58;
}

.onboarding-actions {
  grid-column: 2;
  justify-content: flex-end;
  padding: 0 32px 28px;
  background: #ffffff;
}

.reader-modal {
  width: 100vw;
  max-width: 100vw;
  height: 100dvh;
  max-height: 100dvh;
}

.reader-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  min-height: 100dvh;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 22%, rgba(0, 214, 201, 0.25), transparent 30%),
    linear-gradient(135deg, var(--black), var(--plum));
  color: #ffffff;
}

.reader-progress {
  position: absolute;
  top: 14px;
  left: 50%;
  z-index: 6;
  display: flex;
  width: min(720px, calc(100% - 110px));
  transform: translateX(-50%);
  gap: 6px;
}

.reader-progress span {
  height: 7px;
  flex: 1;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
}

.reader-progress span::before {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--pink), var(--coral));
  content: "";
}

.reader-progress span.done::before,
.reader-progress span.active::before {
  width: 100%;
}

.reader-close {
  position: absolute;
  top: 30px;
  right: 24px;
  z-index: 9;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.reader-meta {
  position: absolute;
  top: 58px;
  left: 28px;
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.reader-meta span,
.reader-kicker {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--yellow);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.reader-slide {
  display: grid;
  min-height: 100dvh;
  place-items: center;
  padding: 112px 112px 112px 38px;
}

.reader-slide-inner {
  width: min(740px, 100%);
}

.reader-slide h1 {
  max-width: 760px;
  margin: 16px 0 0;
  color: #ffffff;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.92;
}

.reader-slide p.reader-copy {
  max-width: 700px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.32;
}

.reader-actions {
  position: absolute;
  right: 344px;
  top: 50%;
  z-index: 8;
  display: grid;
  gap: 10px;
  transform: translateY(-50%);
}

.reader-actions button {
  display: grid;
  width: 62px;
  min-height: 62px;
  place-items: center;
  gap: 2px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-weight: 900;
}

.reader-actions button[data-active="true"] {
  background: var(--yellow);
  color: var(--black);
}

.reader-actions span {
  font-size: 22px;
}

.reader-actions small {
  font-size: 10px;
}

.reader-footer {
  position: absolute;
  left: 38px;
  bottom: 26px;
  z-index: 8;
}

.reader-nav-button {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.reader-nav-button.primary {
  border-color: var(--pink);
  background: linear-gradient(135deg, var(--pink), var(--coral));
}

.reader-choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.reader-choice-row button {
  min-height: 42px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--black);
  font-weight: 900;
}

.takes-drawer {
  display: grid;
  align-content: end;
  gap: 14px;
  min-height: 100dvh;
  padding: 96px 18px 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

.takes-drawer > div:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.takes-drawer strong {
  font-family: var(--font-display);
  font-size: 22px;
}

.takes-drawer span,
.take-item small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 900;
}

#takesList {
  display: grid;
  gap: 10px;
}

.take-item {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
}

.take-item p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
  line-height: 1.4;
}

.takes-drawer label {
  display: grid;
  gap: 7px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 80;
  width: min(440px, calc(100% - 32px));
  transform: translate(-50%, 20px);
  padding: 14px 16px;
  border-radius: 18px;
  background: var(--black);
  color: #ffffff;
  box-shadow: var(--shadow);
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.toast.show {
  transform: translate(-50%, 0);
  opacity: 1;
}

@media (max-width: 980px) {
  .site-nav {
    grid-template-columns: 1fr auto;
    border-radius: 28px;
  }

  .nav-links {
    display: none;
  }

  .hero-section,
  .story-section,
  .safety-section,
  .waitlist-section {
    grid-template-columns: 1fr;
  }

  .hero-section {
    padding-top: 54px;
  }

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

  .hero-phone {
    margin: 0 auto;
  }

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

  .phone-showcase {
    gap: 18px;
  }

  .small-phone,
  .center-phone {
    transform: none;
  }

  .center-phone {
    grid-column: 1 / -1;
    order: -1;
  }

  .reader-shell {
    grid-template-columns: 1fr;
  }

  .takes-drawer {
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: min(340px, calc(100% - 36px));
    min-height: auto;
    max-height: 42dvh;
    overflow: auto;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 20px;
    background: rgba(9, 7, 13, 0.84);
  }
}

@media (max-width: 700px) {
  .site-nav {
    width: min(100% - 20px, 1160px);
    top: 10px;
  }

  .brand strong {
    font-size: 16px;
  }

  .brand small {
    display: none;
  }

  .icon-nav {
    display: none;
  }

  .nav-cta {
    min-height: 38px;
    padding: 0 12px;
    font-size: 12px;
  }

  .hero-section,
  .section,
  .site-footer {
    width: min(100% - 22px, 1160px);
  }

  .hero-section {
    gap: 26px;
    padding: 44px 0 58px;
  }

  h1 {
    font-size: clamp(44px, 17vw, 66px);
  }

  .hero-copy > p:not(.kicker) {
    font-size: 16px;
  }

  .hero-actions,
  .site-footer {
    display: grid;
  }

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

  .hero-phone {
    width: min(330px, 100%);
    min-height: 530px;
  }

  .sticker-side,
  .bubble-left,
  .bubble-right {
    display: none;
  }

  .feature-grid,
  .room-grid,
  .phone-showcase,
  .safety-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 58px 0;
  }

  .section h2 {
    font-size: 40px;
  }

  .feature-card,
  .room-tile {
    min-height: 170px;
  }

  .story-section,
  .safety-section,
  .waitlist-section {
    gap: 22px;
  }

  .safety-section {
    padding: 24px;
  }

  .onboarding-shell {
    grid-template-columns: 1fr;
  }

  .onboarding-actions {
    grid-column: 1;
    padding: 0 24px 24px;
  }

  .reader-progress {
    width: calc(100% - 90px);
    left: 18px;
    transform: none;
  }

  .reader-close {
    top: 24px;
    right: 14px;
  }

  .reader-meta {
    left: 18px;
    top: 54px;
    max-width: calc(100% - 92px);
  }

  .reader-slide {
    place-items: start center;
    padding: 128px 18px 220px;
  }

  .reader-slide h1 {
    font-size: 34px;
  }

  .reader-slide p.reader-copy {
    font-size: 18px;
  }

  .reader-actions {
    top: auto;
    right: 18px;
    bottom: 126px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    width: calc(100% - 36px);
    transform: none;
  }

  .reader-actions button {
    width: auto;
    min-height: 58px;
  }

  .reader-actions small {
    display: none;
  }

  .reader-footer {
    left: 18px;
    bottom: 70px;
    width: calc(100% - 36px);
  }

  .reader-footer button {
    flex: 1;
  }

  .takes-drawer {
    display: none;
  }

  .takes-drawer.open {
    display: grid;
  }

  .safety-meter {
    grid-template-columns: 1fr;
  }
}

/* Type hierarchy reset: only the big moments should feel loud. */
body,
p,
li,
input,
select,
textarea {
  font-weight: 400;
}

h1 {
  font-weight: 850;
}

h2 {
  font-weight: 780;
}

h3 {
  font-weight: 720;
}

.brand strong {
  font-weight: 720;
}

.brand small,
.nav-links a,
.social-proof,
.floating-username,
.phone-status,
.mini-feed-card p,
.mini-feed-card small,
.composer-preview span,
.composer-preview label,
.room-tile small,
.waitlist-form label,
.site-footer,
.safety-meter span,
.takes-drawer span,
.take-item small {
  font-weight: 500;
}

.kicker,
.mini-feed-card span,
.reader-preview-meta,
.reader-card-demo p,
.sticker,
.chat-bubble,
.safety-grid article,
#waitlistStatus,
.reader-meta span,
.reader-kicker {
  font-weight: 650;
}

.nav-cta,
.primary-button,
.secondary-button,
.danger-button,
.reader-nav-button,
.reaction-cloud button,
.room-tile,
.story-action,
.reaction-row button,
.composer-preview button,
.reader-demo-actions span,
.reader-actions button,
.reader-choice-row button {
  font-weight: 650;
}

.hero-copy > p:not(.kicker),
.feature-card p,
.story-copy p,
.waitlist-section p,
.safety-copy p,
.center-phone p,
.reader-slide p.reader-copy,
.onboarding-slide p,
.splash-card p,
.take-item p {
  font-weight: 500;
}

.waitlist-form input,
.waitlist-form select,
.modal-box input,
.modal-box select,
.modal-box textarea,
.takes-drawer textarea {
  font-weight: 500;
}
