:root {
  --bg: #f4f7fa;
  --bg-warm: #fffaf4;
  --paper: #ffffff;
  --ink: #101828;
  --muted: #64748b;
  --muted-strong: #475569;
  --line: #dbe4ed;
  --line-strong: #c9d8e3;
  --primary: #0d9488;
  --primary-strong: #0f766e;
  --primary-deep: #0a514d;
  --primary-soft: #e6f7f5;
  --dark: #0f0f12;
  --dark-2: #141a28;
  --dark-3: #0b101f;
  --amber: #f59e0b;
  --amber-deep: #b45309;
  --violet: #6658f6;
  --coral: #f97066;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.16);
  --shadow-soft: 0 14px 34px rgba(15, 23, 42, 0.09);
  --radius: 28px;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  --font-display: "Inter Tight", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  line-height: 1.5;
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

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

h1,
h2,
h3,
.brand,
.entry-card strong,
.movement-strip strong,
.queue-card strong {
  font-family: var(--font-display);
  letter-spacing: 0;
}

h1,
h2,
h3 {
  line-height: 1.04;
}

h1 {
  max-width: 820px;
  margin-bottom: 18px;
  color: #ffffff;
  font-size: 46px;
  font-weight: 950;
}

h2 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 38px;
  font-weight: 950;
}

h3 {
  margin-bottom: 10px;
  font-size: 23px;
  font-weight: 920;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 22px;
  background: rgba(15, 15, 18, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 27px;
  font-weight: 950;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 12px;
  background: var(--primary);
  color: #ffffff;
  font-size: 20px;
  line-height: 1;
}

.top-nav {
  display: none;
  align-items: center;
  gap: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 850;
}

.top-nav a:hover {
  color: #ffffff;
}

.hero-section {
  display: grid;
  gap: 22px;
  min-height: calc(100dvh - 67px);
  padding: 30px 22px 42px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    var(--dark);
  overflow: hidden;
}

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

.hero-topline,
.entry-actions,
.cta-row,
.proof-actions,
.community-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.wave-pill,
.live-pill,
.tag,
.queue-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wave-pill {
  padding: 0 14px;
  background: rgba(110, 231, 220, 0.15);
  color: #6ee7dc;
}

.live-pill {
  padding: 0 14px;
  background: rgba(245, 158, 11, 0.14);
  color: #fbbf24;
}

.hero-lead {
  max-width: 700px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 20px;
  line-height: 1.45;
}

.hero-stage {
  position: relative;
  display: grid;
  justify-items: center;
  min-height: 510px;
}

.phone-frame {
  position: relative;
  width: min(100%, 330px);
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 34px;
  background: #060915;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
}

.hero-phone {
  transform: rotate(-1deg);
}

.screen-reel {
  position: relative;
  aspect-ratio: 390 / 844;
  overflow: hidden;
  border-radius: 25px;
  background: #ffffff;
}

.screen-reel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: translateY(16px) scale(1.015);
  animation: screenCycle 18s infinite;
}

.screen-reel .screen-one {
  animation-delay: 0s;
}

.screen-reel .screen-two {
  animation-delay: 4.5s;
}

.screen-reel .screen-three {
  animation-delay: 9s;
}

.screen-reel .screen-four {
  animation-delay: 13.5s;
}

.floating-card {
  position: absolute;
  display: grid;
  gap: 2px;
  width: 172px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(20, 26, 40, 0.88);
  color: #ffffff;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
  animation: floatCard 5.5s ease-in-out infinite;
}

.floating-card span {
  color: #6ee7dc;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.floating-card strong {
  font-size: 17px;
  line-height: 1.1;
}

.floating-community {
  top: 42px;
  right: 0;
}

.floating-share {
  left: 0;
  bottom: 44px;
  animation-delay: 1.2s;
}

.hero-panel {
  display: grid;
  gap: 16px;
  align-content: start;
}

.queue-card {
  display: grid;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(110, 231, 220, 0.18);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.18), rgba(20, 26, 40, 0.96));
  color: #ffffff;
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.22);
}

.queue-kicker {
  margin-bottom: 8px;
  padding: 0 12px;
  background: rgba(110, 231, 220, 0.12);
  color: #6ee7dc;
}

.queue-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 28px;
  line-height: 1.08;
}

.queue-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.queue-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  align-items: center;
}

.queue-rail::before {
  position: absolute;
  right: 12px;
  left: 12px;
  height: 2px;
  background: rgba(255, 255, 255, 0.14);
  content: "";
}

.queue-dot {
  position: relative;
  z-index: 1;
  width: 28px;
  height: 28px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: #1f2937;
  transition:
    background 220ms ease,
    transform 220ms ease,
    border-color 220ms ease;
}

.queue-dot.is-active {
  border-color: rgba(110, 231, 220, 0.9);
  background: var(--primary);
  transform: scale(1.16);
}

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

.entry-card {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 78px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.entry-card strong,
.entry-card small {
  display: block;
}

.entry-card strong {
  font-size: 22px;
  font-weight: 950;
  line-height: 1.08;
}

.entry-card small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
}

.entry-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 27px;
  font-weight: 950;
}

.primary-entry {
  background: linear-gradient(135deg, #13a097, #0f766e);
}

.invite-entry {
  border-color: rgba(245, 158, 11, 0.24);
  background: rgba(245, 158, 11, 0.1);
}

.invite-entry .entry-icon {
  color: #fbbf24;
}

.access-entry {
  border-color: rgba(110, 231, 220, 0.22);
  background: rgba(13, 148, 136, 0.1);
}

.waitlist-form {
  width: 100%;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.2);
}

.waitlist-form label {
  display: block;
  margin-bottom: 10px;
  font-size: 17px;
  font-weight: 950;
}

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

.waitlist-form input,
.waitlist-form button {
  width: 100%;
  min-height: 56px;
  border-radius: 18px;
}

.waitlist-form input {
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  font-size: 16px;
}

.waitlist-form button {
  border: 0;
  padding: 0 18px;
  background: var(--primary);
  color: #ffffff;
  font-weight: 950;
}

.waitlist-form button:hover,
.primary-cta:hover {
  background: var(--primary-strong);
}

.form-note {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  font-weight: 750;
}

.movement-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 18px 22px 54px;
  background: var(--dark);
}

.movement-strip div {
  display: grid;
  gap: 4px;
  padding: 20px;
  border: 1px solid rgba(110, 231, 220, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
}

.movement-strip strong {
  color: #6ee7dc;
  font-size: 28px;
  line-height: 1;
}

.movement-strip span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 820;
}

.section {
  padding: 72px 22px;
}

.section-heading {
  max-width: 880px;
  margin: 0 auto 30px;
}

.section-heading p,
.proof-panel p,
.cta-panel p {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.45;
}

.compact-heading {
  margin-left: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--primary-strong);
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.wave-section {
  background: #ffffff;
}

.wave-grid {
  display: grid;
  gap: 14px;
  max-width: 1140px;
  margin: 0 auto;
}

.wave-step,
.moment-card,
.community-board,
.community-post,
.proof-panel,
.cta-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.wave-step {
  min-height: 210px;
  padding: 24px;
  transition:
    border-color 220ms ease,
    transform 220ms ease,
    background 220ms ease;
}

.wave-step.is-active {
  border-color: #95ddd6;
  background: #f0fbfa;
  transform: translateY(-3px);
}

.wave-step span {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 19px;
  background: var(--primary-soft);
  color: var(--primary-strong);
  font-size: 20px;
  font-weight: 950;
}

.wave-step p,
.moment-card p,
.community-post p {
  margin-bottom: 0;
  color: var(--muted-strong);
  font-size: 16px;
}

.ritual-section {
  background:
    linear-gradient(180deg, rgba(244, 247, 250, 0.92), rgba(244, 247, 250, 1)),
    var(--bg);
}

.ritual-grid,
.community-grid,
.showcase-grid {
  display: grid;
  gap: 22px;
  max-width: 1140px;
  margin: 0 auto;
  align-items: start;
}

.phone-shot {
  margin: 0;
}

.phone-shot img {
  width: min(100%, 390px);
  margin: 0 auto;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.phone-shot figcaption {
  width: min(100%, 390px);
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
}

.phone-shot figcaption strong,
.phone-shot figcaption span {
  display: block;
}

.phone-shot figcaption strong {
  color: var(--ink);
  font-size: 18px;
  font-weight: 950;
}

.moment-stack {
  display: grid;
  gap: 14px;
}

.moment-card {
  padding: 22px;
}

.tag {
  margin-bottom: 12px;
  padding: 0 12px;
  background: var(--primary-soft);
  color: var(--primary-strong);
  font-size: 12px;
}

.amber-tag {
  background: #fff2df;
  color: var(--amber-deep);
}

.violet-tag {
  background: #eeedff;
  color: var(--violet);
}

.share-preview {
  display: grid;
  gap: 3px;
  margin-top: 18px;
  padding: 16px;
  border-radius: 20px;
  background: var(--dark);
  color: #ffffff;
}

.share-preview strong {
  font-size: 18px;
}

.share-preview span {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 750;
}

.community-section {
  background: #ffffff;
}

.community-board {
  display: grid;
  gap: 14px;
  padding: 16px;
}

.community-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.community-tabs button {
  flex: 0 0 auto;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--muted-strong);
  padding: 0 16px;
  font-size: 14px;
  font-weight: 900;
}

.community-tabs button[aria-pressed="true"] {
  border-color: var(--primary);
  background: var(--primary-soft);
  color: var(--primary-strong);
}

.community-post {
  display: grid;
  gap: 8px;
  padding: 18px;
  box-shadow: none;
}

.community-post[hidden] {
  display: none;
}

.community-post > span {
  width: max-content;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-strong);
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.post-meta small {
  border-radius: 999px;
  background: #eef4f8;
  color: var(--muted-strong);
  padding: 6px 10px;
  font-weight: 850;
}

.community-actions {
  margin-top: 4px;
}

.roadmap-section {
  background: var(--dark-2);
  color: #ffffff;
}

.roadmap-section h2,
.roadmap-section .phone-shot figcaption strong {
  color: #ffffff;
}

.roadmap-section .eyebrow {
  color: #6ee7dc;
}

.roadmap-section .section-heading p,
.roadmap-section .phone-shot figcaption {
  color: rgba(255, 255, 255, 0.72);
}

.proof-section {
  background: #ffffff;
}

.proof-panel,
.cta-panel {
  max-width: 980px;
  margin: 0 auto;
  padding: 28px;
}

.proof-panel {
  background: linear-gradient(135deg, #ffffff, #f1fbfa);
  border-color: #c7ebe7;
}

.proof-actions,
.cta-row {
  margin-top: 24px;
}

.cta-section {
  background: #e9f0f5;
}

.primary-cta,
.secondary-cta,
.store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border-radius: 18px;
  font-weight: 950;
}

.primary-cta {
  padding: 0 22px;
  background: var(--primary);
  color: #ffffff;
}

.secondary-cta {
  padding: 0 20px;
  border: 1px solid var(--line-strong);
  background: #ffffff;
  color: var(--ink);
}

.store-badge {
  flex-direction: column;
  align-items: flex-start;
  min-width: 178px;
  padding: 8px 18px;
  background: #0b0f19;
  color: #ffffff;
}

.store-badge span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.store-badge strong {
  font-size: 21px;
  line-height: 1.1;
}

.site-footer {
  display: grid;
  gap: 18px;
  padding: 30px 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--dark);
  color: rgba(248, 250, 252, 0.72);
}

.site-footer div,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.site-footer strong,
.site-footer a:hover {
  color: #ffffff;
}

.footer-maker a {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 850;
}

.footer-maker a span {
  color: #ffffff;
  font-weight: 950;
}

.community-page-hero {
  padding: 46px 22px 26px;
  background: var(--dark);
  color: #ffffff;
}

.community-page-hero > div {
  max-width: 980px;
  margin: 0 auto;
}

.community-page-hero h1 {
  margin-bottom: 14px;
}

.community-page-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 20px;
}

.legal-page {
  background: var(--bg);
  color: var(--ink);
}

.legal-page .site-header {
  background: rgba(248, 250, 252, 0.92);
  border-bottom: 1px solid rgba(203, 213, 225, 0.72);
  color: var(--ink);
}

.legal-page .brand,
.legal-page .top-nav a:hover {
  color: var(--ink);
}

.legal-page .top-nav {
  color: var(--muted);
}

.legal-hero,
.legal-content {
  width: min(100% - 44px, 900px);
  margin: 0 auto;
}

.legal-hero {
  padding: 58px 0 28px;
}

.legal-hero h1 {
  color: var(--ink);
}

.legal-content {
  padding: 0 0 72px;
}

.legal-content section {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  font-size: 28px;
}

.legal-content p,
.legal-content li {
  color: var(--muted-strong);
}

.legal-content a,
.inline-link {
  color: var(--primary-strong);
  font-weight: 950;
}

.placeholder {
  padding: 2px 6px;
  border-radius: 6px;
  background: #fff7ed;
  color: #9a3412;
  font-weight: 950;
}

@keyframes screenCycle {
  0%,
  20% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  24%,
  100% {
    opacity: 0;
    transform: translateY(-18px) scale(1.015);
  }
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .screen-reel img:first-child {
    opacity: 1;
  }
}

@media (min-width: 760px) {
  h1 {
    font-size: 76px;
  }

  h2 {
    font-size: 56px;
  }

  .site-header {
    padding: 18px 64px;
  }

  .top-nav {
    display: flex;
  }

  .hero-section {
    grid-template-columns: minmax(0, 0.92fr) minmax(330px, 0.62fr);
    grid-template-areas:
      "intro stage"
      "panel stage";
    align-items: center;
    gap: 24px 56px;
    padding: 58px 64px 64px;
  }

  .hero-intro {
    grid-area: intro;
  }

  .hero-stage {
    grid-area: stage;
    min-height: 690px;
  }

  .hero-panel {
    grid-area: panel;
    max-width: 760px;
  }

  .hero-lead {
    font-size: 24px;
  }

  .phone-frame {
    width: min(100%, 390px);
  }

  .floating-community {
    right: -18px;
  }

  .floating-share {
    left: -24px;
  }

  .queue-card {
    grid-template-columns: 1fr minmax(180px, 0.38fr);
    align-items: center;
  }

  .entry-actions {
    grid-template-columns: 1.14fr 0.88fr 0.88fr;
  }

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

  .waitlist-form button {
    width: auto;
  }

  .movement-strip {
    grid-template-columns: repeat(3, 1fr);
    padding: 0 64px 64px;
  }

  .section {
    padding: 86px 64px;
  }

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

  .ritual-grid {
    grid-template-columns: minmax(300px, 390px) 1fr;
  }

  .community-grid {
    grid-template-columns: minmax(300px, 390px) 1fr;
    align-items: center;
  }

  .showcase-grid {
    grid-template-columns: repeat(2, minmax(280px, 390px));
    justify-content: center;
  }

  .moment-stack {
    align-self: center;
  }

  .community-board {
    padding: 22px;
  }

  .proof-panel,
  .cta-panel {
    padding: 48px;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
    align-items: center;
    padding-right: 64px;
    padding-left: 64px;
  }

  .community-page-hero {
    padding: 72px 64px 34px;
  }
}
