:root {
  color-scheme: dark;
  --bg: #05060a;
  --bg-2: #090b12;
  --panel: rgba(17, 20, 31, 0.82);
  --panel-2: rgba(24, 28, 43, 0.92);
  --stroke: rgba(255, 255, 255, 0.1);
  --stroke-2: rgba(255, 255, 255, 0.18);
  --text: #ffffff;
  --soft: #d8daea;
  --muted: #8f94aa;
  --pink: #ff2f92;
  --violet: #8b36ff;
  --blue: #2f68ff;
  --green: #35d071;
  --gold: #ffbd3d;
  --shadow: rgba(0, 0, 0, 0.45);
  --max: 1180px;
  --radius: 8px;
  --radius-soft: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  background:
    radial-gradient(1100px 620px at 20% 0%, rgba(255, 47, 146, 0.18), transparent 58%),
    linear-gradient(145deg, #05060a 0%, #0b0d16 48%, #05060a 100%);
  color: var(--text);
}

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

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

p,
li {
  color: var(--soft);
  line-height: 1.65;
}

ul {
  padding-left: 22px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 16px 0;
  background: rgba(5, 6, 10, 0.82);
  backdrop-filter: blur(20px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  filter: drop-shadow(0 8px 18px rgba(255, 47, 146, 0.22));
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-word {
  font-size: 22px;
  font-weight: 950;
  letter-spacing: 0;
}

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

.nav-links a,
.button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--stroke);
  border-radius: 999px;
  padding: 0 16px;
  color: var(--soft);
  font-weight: 850;
  background: rgba(255, 255, 255, 0.035);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.nav-links a:hover,
.button:hover {
  transform: translateY(-1px);
  border-color: var(--stroke-2);
  color: white;
  background: rgba(255, 255, 255, 0.07);
}

.button.primary {
  border-color: transparent;
  color: white;
  background: linear-gradient(135deg, var(--pink), var(--violet) 52%, var(--blue));
  box-shadow: 0 16px 36px rgba(255, 47, 146, 0.24);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.045);
}

.button.full-width {
  width: 100%;
  border: 0;
  cursor: pointer;
  font-size: 16px;
}

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

.hero-shell,
.section,
.legal-page,
.support-page,
.footer {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.hero-shell {
  position: relative;
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: 42px;
  align-items: center;
  padding: 74px 0 54px;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: #ff7abe;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-content h1,
.legal-hero h1,
.support-hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(44px, 7vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
  font-weight: 950;
}

.hero-content .lead,
.legal-hero .lead,
.support-hero .lead {
  max-width: 720px;
  margin: 22px 0 0;
  font-size: 20px;
}

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

.hero-stage {
  position: relative;
  min-height: 650px;
}

.message-card {
  position: absolute;
  z-index: 3;
  max-width: 290px;
  border: 1px solid var(--stroke);
  border-radius: 24px;
  padding: 16px 18px;
  background: rgba(18, 22, 34, 0.82);
  box-shadow: 0 22px 60px var(--shadow);
  backdrop-filter: blur(18px);
}

.message-card::after {
  content: "";
  position: absolute;
  bottom: -9px;
  width: 18px;
  height: 18px;
  background: inherit;
  border-right: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
  transform: rotate(45deg);
}

.message-card.incoming {
  top: 42px;
  left: 0;
}

.message-card.incoming::after {
  left: 28px;
}

.message-card.outgoing {
  right: 0;
  bottom: 90px;
  background: linear-gradient(135deg, rgba(255, 47, 146, 0.88), rgba(47, 104, 255, 0.88));
}

.message-card.outgoing::after {
  right: 28px;
}

.message-name {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 900;
}

.message-card p {
  margin: 6px 0 0;
  color: white;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 850;
}

.phone-frame {
  position: absolute;
  inset: 76px 30px 0 40px;
  border: 1px solid var(--stroke-2);
  border-radius: 38px;
  padding: 22px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), transparent 18%),
    linear-gradient(155deg, rgba(20, 24, 38, 0.98), rgba(8, 10, 16, 0.98));
  box-shadow: 0 26px 80px var(--shadow);
}

.phone-frame::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 12px;
  width: 118px;
  height: 22px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #020309;
}

.phone-status {
  display: flex;
  justify-content: space-between;
  color: white;
  font-size: 13px;
  font-weight: 900;
  padding-top: 18px;
}

.app-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
}

.app-title-row h2 {
  margin: 0;
  font-size: 26px;
  line-height: 1.05;
}

.alert-dot {
  width: 13px;
  height: 13px;
  border-radius: 999px;
  background: var(--pink);
  box-shadow: 0 0 20px rgba(255, 47, 146, 0.85);
}

.pill-tabs,
.feed-actions,
.feed-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pill-tabs {
  margin: 22px 0;
}

.pill-tabs span,
.feed-actions span,
.feed-tags span {
  border: 1px solid var(--stroke);
  border-radius: 999px;
  color: var(--soft);
  font-weight: 900;
}

.pill-tabs span {
  padding: 10px 14px;
}

.pill-tabs .active {
  color: white;
  border-color: transparent;
  background: linear-gradient(135deg, var(--pink), var(--violet), var(--blue));
}

.feed-card {
  border: 1px solid var(--stroke-2);
  border-radius: 24px;
  padding: 20px;
  background: linear-gradient(145deg, rgba(25, 30, 45, 0.98), rgba(14, 17, 28, 0.98));
}

.feed-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar-mini {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    #0b0e18;
}

.feed-author strong,
.feed-author small {
  display: block;
}

.feed-author strong {
  font-size: 22px;
}

.feed-author small {
  color: var(--muted);
  font-weight: 750;
  line-height: 1.35;
}

.feed-tags {
  margin: 22px 0 16px;
}

.feed-tags span {
  padding: 8px 14px;
}

.feed-tags span:first-child {
  border-color: rgba(255, 47, 146, 0.68);
}

.feed-tags span:last-child {
  border-color: rgba(47, 104, 255, 0.78);
}

.feed-card p {
  margin: 0;
  color: white;
  font-size: 24px;
  line-height: 1.38;
  font-weight: 850;
}

.feed-actions {
  margin-top: 24px;
}

.feed-actions span {
  padding: 9px 12px;
  font-size: 13px;
}

.section {
  padding: 76px 0;
}

.intro-band,
.launch-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  border: 1px solid var(--stroke);
  border-radius: 28px;
  padding: 34px;
  background: linear-gradient(135deg, rgba(255, 47, 146, 0.12), rgba(47, 104, 255, 0.08));
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
}

.section h2,
.support-card h2 {
  margin: 0;
  font-size: clamp(32px, 5vw, 46px);
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 950;
}

.intro-band p,
.launch-panel p {
  margin: 0;
}

.story-flow {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.flow-heading {
  border: 1px solid var(--stroke);
  border-radius: 28px;
  padding: 30px;
  background:
    linear-gradient(150deg, rgba(255, 47, 146, 0.13), rgba(139, 54, 255, 0.08)),
    rgba(15, 18, 28, 0.82);
}

.flow-heading h2 {
  margin: 0;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.06;
}

.flow-heading p:last-child {
  margin-bottom: 0;
}

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

.flow-grid article {
  border: 1px solid var(--stroke);
  border-radius: 24px;
  padding: 20px;
  background: rgba(18, 22, 34, 0.78);
}

.flow-grid article span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 14px;
  color: white;
  font-size: 13px;
  font-weight: 950;
  background: linear-gradient(135deg, rgba(255, 47, 146, 0.92), rgba(47, 104, 255, 0.9));
}

.flow-grid h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.16;
}

.flow-grid p {
  margin: 10px 0 0;
  font-size: 15px;
}

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

.bubble-feature {
  grid-column: span 3;
  border: 1px solid var(--stroke);
  border-radius: 24px;
  padding: 24px;
  background: rgba(18, 22, 34, 0.78);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
}

.bubble-feature.large {
  grid-column: span 4;
  min-height: 290px;
  background: linear-gradient(145deg, rgba(255, 47, 146, 0.16), rgba(16, 20, 33, 0.9));
}

.bubble-feature.accent {
  grid-column: span 2;
  background: linear-gradient(145deg, rgba(53, 208, 113, 0.12), rgba(16, 20, 33, 0.92));
}

.bubble-feature span {
  display: inline-flex;
  margin-bottom: 34px;
  border: 1px solid var(--stroke);
  border-radius: 999px;
  padding: 8px 12px;
  color: white;
  font-size: 13px;
  font-weight: 950;
  background: rgba(255, 255, 255, 0.04);
}

.bubble-feature h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.12;
}

.bubble-feature p {
  margin: 14px 0 0;
}

.split-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: 24px;
  align-items: stretch;
}

.showcase-copy,
.safety-stack {
  border: 1px solid var(--stroke);
  border-radius: 28px;
  padding: 30px;
  background: rgba(18, 22, 34, 0.78);
}

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

.safety-stack {
  display: grid;
  gap: 12px;
}

.safety-item {
  border: 1px solid var(--stroke);
  border-radius: 18px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.035);
}

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

.safety-item strong {
  margin-bottom: 6px;
  color: white;
  font-size: 18px;
}

.safety-item span {
  color: var(--soft);
  line-height: 1.5;
}

.launch-panel {
  margin-bottom: 56px;
}

.launch-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  border-top: 1px solid var(--stroke);
  padding: 30px 0 44px;
}

.footer p {
  margin: 6px 0 0;
}

.footer nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer a {
  color: var(--soft);
  font-weight: 850;
}

.legal-page,
.support-page {
  padding: 58px 0 70px;
}

.legal-hero,
.support-hero {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--stroke);
  border-radius: 30px;
  padding: 34px;
  margin-bottom: 22px;
  background: linear-gradient(135deg, rgba(255, 47, 146, 0.14), rgba(47, 104, 255, 0.09));
}

.legal-hero::after,
.support-hero::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -120px;
  width: 360px;
  height: 360px;
  transform: rotate(22deg);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent);
}

.legal-highlights {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.legal-highlights article {
  border: 1px solid var(--stroke);
  border-radius: 22px;
  padding: 18px;
  background: rgba(15, 18, 28, 0.78);
}

.legal-highlights strong,
.legal-highlights span {
  display: block;
}

.legal-highlights strong {
  color: white;
  font-size: 17px;
  margin-bottom: 8px;
}

.legal-highlights span {
  color: var(--soft);
  line-height: 1.45;
}

.legal-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.toc {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 8px;
  border: 1px solid var(--stroke);
  border-radius: 24px;
  padding: 16px;
  background: rgba(15, 18, 28, 0.86);
  backdrop-filter: blur(18px);
}

.toc strong {
  margin-bottom: 6px;
}

.toc a {
  border-radius: 999px;
  padding: 9px 11px;
  color: var(--soft);
  font-weight: 850;
  line-height: 1.2;
  background: rgba(255, 255, 255, 0.035);
}

.toc a:hover {
  color: white;
  background: rgba(255, 255, 255, 0.075);
}

.legal-card {
  border: 1px solid var(--stroke);
  border-radius: 28px;
  padding: 34px;
  background: rgba(15, 18, 28, 0.86);
}

.legal-card section + section {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--stroke);
}

.legal-card h2 {
  margin: 0 0 14px;
  font-size: 28px;
  line-height: 1.2;
}

.legal-card p {
  margin: 0 0 14px;
}

.legal-card a,
.support-card a {
  color: white;
  text-decoration: underline;
  text-decoration-color: rgba(255, 47, 146, 0.72);
  text-underline-offset: 3px;
}

.support-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 18px;
  align-items: start;
}

.support-form {
  display: grid;
  gap: 16px;
  border: 1px solid var(--stroke);
  border-radius: 28px;
  padding: 24px;
  background: rgba(15, 18, 28, 0.86);
}

.support-form label {
  display: grid;
  gap: 8px;
  color: white;
  font-weight: 900;
}

.support-form input,
.support-form select,
.support-form textarea {
  width: 100%;
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 14px;
  color: white;
  background: rgba(5, 6, 10, 0.86);
  font: inherit;
  outline: none;
}

.support-form textarea {
  resize: vertical;
  min-height: 180px;
}

.support-form input:focus,
.support-form select:focus,
.support-form textarea:focus {
  border-color: rgba(255, 47, 146, 0.72);
  box-shadow: 0 0 0 3px rgba(255, 47, 146, 0.14);
}

.checkbox-line {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  color: var(--soft) !important;
  font-weight: 760 !important;
}

.checkbox-line input {
  width: 18px;
  height: 18px;
  margin: 3px 0 0;
  accent-color: var(--pink);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.form-status {
  min-height: 22px;
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
}

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

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

.support-aside {
  display: grid;
  gap: 14px;
}

.support-card {
  border: 1px solid var(--stroke);
  border-radius: 24px;
  padding: 22px;
  background: rgba(15, 18, 28, 0.82);
}

.support-card h2 {
  font-size: 24px;
}

.support-card p,
.support-card ul {
  margin-bottom: 0;
}

@media (max-width: 980px) {
  .hero-shell {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 42px;
  }

  .hero-stage {
    min-height: 620px;
  }

  .phone-frame {
    inset: 74px 0 0;
  }

  .message-card.incoming {
    left: 0;
  }

  .message-card.outgoing {
    right: 0;
  }

  .intro-band,
  .launch-panel,
  .split-showcase,
  .story-flow,
  .legal-highlights,
  .legal-layout,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .toc {
    position: static;
  }

  .feature-cloud {
    grid-template-columns: 1fr;
  }

  .bubble-feature,
  .bubble-feature.large,
  .bubble-feature.accent {
    grid-column: auto;
    min-height: 0;
  }

  .launch-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .topbar,
  .hero-shell,
  .section,
  .legal-page,
  .support-page,
  .footer {
    width: min(100% - 24px, var(--max));
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 12px 0;
  }

  .nav-links {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav-links a {
    min-height: 38px;
    padding: 0 10px;
    font-size: 14px;
  }

  .hero-shell {
    gap: 22px;
    padding: 34px 0 24px;
  }

  .hero-content .lead,
  .legal-hero .lead,
  .support-hero .lead {
    font-size: 17px;
  }

  .hero-actions,
  .footer,
  .footer nav,
  .launch-actions {
    flex-direction: column;
  }

  .hero-actions .button,
  .footer nav,
  .footer a,
  .launch-actions .button {
    width: 100%;
  }

  .hero-stage {
    min-height: 600px;
  }

  .message-card {
    max-width: 250px;
  }

  .message-card.outgoing {
    bottom: 48px;
  }

  .phone-frame {
    border-radius: 30px;
    padding: 18px;
  }

  .app-title-row h2 {
    font-size: 22px;
  }

  .feed-card {
    padding: 18px;
  }

  .feed-card p {
    font-size: 20px;
  }

  .feed-actions span {
    flex: 1 1 38%;
    text-align: center;
  }

  .section {
    padding: 46px 0;
  }

  .intro-band,
  .launch-panel,
  .flow-heading,
  .flow-grid article,
  .showcase-copy,
  .safety-stack,
  .legal-hero,
  .support-hero,
  .legal-card,
  .support-form {
    border-radius: 22px;
    padding: 20px;
  }

  .legal-card h2 {
    font-size: 24px;
  }

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