@import url("https://fonts.googleapis.com/css2?family=Geist:wght@100..900&display=swap");

:root {
  color-scheme: dark;
  font-family:
    Geist, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: #fff8fc;
  background: #0b090c;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  --bg: #0b090c;
  --surface: #151116;
  --surface-soft: #1b151c;
  --surface-raised: #211922;
  --pink: #f472b6;
  --pink-light: #f9a8d4;
  --pink-deep: #ec4899;
  --text: #fff8fc;
  --muted: #afa3ac;
  --muted-2: #7c7079;
  --line: rgba(255, 228, 244, 0.09);
  --line-strong: rgba(255, 228, 244, 0.16);
  --shadow: 0 32px 100px rgba(0, 0, 0, 0.42);
  --page-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  min-height: 100%;
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px),
    var(--bg);
  background-size: 64px 64px;
  animation: page-enter 480ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

body::before {
  position: fixed;
  z-index: -2;
  inset: 0;
  background:
    radial-gradient(circle at 14% 8%, rgba(236, 72, 153, 0.1), transparent 28rem),
    radial-gradient(circle at 92% 30%, rgba(192, 132, 252, 0.055), transparent 26rem);
  content: "";
  pointer-events: none;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 2px solid rgba(244, 114, 182, 0.85);
  outline-offset: 3px;
}

.site-ambient {
  position: fixed;
  z-index: -1;
  width: min(48vw, 700px);
  height: min(48vw, 700px);
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
}

.site-ambient-one {
  top: -32vw;
  left: -18vw;
  background: rgba(236, 72, 153, 0.08);
  animation: ambient-one 14s ease-in-out infinite alternate;
}

.site-ambient-two {
  right: -30vw;
  bottom: -38vw;
  background: rgba(192, 132, 252, 0.045);
  animation: ambient-two 17s ease-in-out infinite alternate;
}

.site-header,
.site-footer,
.section-shell,
.home-hero,
.page-shell {
  width: min(calc(100% - 48px), var(--page-width));
  margin-right: auto;
  margin-left: auto;
}

.site-header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 82px;
  border-bottom: 1px solid var(--line);
}

.site-brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 11px;
  color: var(--text);
  font-size: 19px;
  font-weight: 730;
  letter-spacing: -0.045em;
  text-decoration: none;
}

.site-brand img {
  border-radius: 10px;
  filter: drop-shadow(0 8px 20px rgba(236, 72, 153, 0.18));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 7px;
}

.site-nav a {
  padding: 9px 12px;
  border-radius: 9px;
  color: #a99da6;
  font-size: 13px;
  font-weight: 570;
  text-decoration: none;
  transition:
    color 160ms ease,
    background 160ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--text);
  background: rgba(255, 255, 255, 0.035);
}

.header-cta {
  justify-self: end;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 680;
  text-decoration: none;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

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

.button:active {
  transform: translateY(0) scale(0.98);
}

.button-small {
  min-height: 39px;
  padding: 0 15px;
  border-radius: 10px;
  font-size: 12px;
}

.button-primary {
  color: #2a1420;
  background: linear-gradient(135deg, var(--pink-light), var(--pink) 55%, var(--pink-deep));
  box-shadow: 0 14px 36px rgba(236, 72, 153, 0.18);
}

.button-primary:hover {
  box-shadow: 0 18px 44px rgba(236, 72, 153, 0.27);
}

.button-secondary {
  color: #ddd2da;
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.button-secondary:hover {
  border-color: rgba(244, 114, 182, 0.28);
  background: rgba(244, 114, 182, 0.055);
}

.eyebrow {
  margin: 0;
  color: var(--pink-light);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 29px;
  padding: 0 11px;
  border: 1px solid rgba(244, 114, 182, 0.16);
  border-radius: 999px;
  color: #e8b7d2;
  background: rgba(244, 114, 182, 0.055);
  font-size: 10px;
  font-weight: 720;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.status-pill span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 5px rgba(244, 114, 182, 0.09);
  animation: status-pulse 2.3s ease-out infinite;
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(480px, 1.06fr);
  align-items: center;
  gap: clamp(48px, 7vw, 96px);
  min-height: 720px;
  padding: 76px 0 94px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  animation: rise-in 560ms cubic-bezier(0.2, 0.75, 0.2, 1) both;
}

.hero-copy > .eyebrow {
  margin-top: 25px;
}

.hero-copy h1 {
  max-width: 680px;
  margin: 18px 0 22px;
  font-size: clamp(52px, 6vw, 84px);
  font-weight: 580;
  line-height: 0.97;
  letter-spacing: -0.066em;
}

.hero-lede,
.hero-supporting {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.hero-supporting {
  margin-top: 15px;
  color: #8f838c;
  font-size: 14px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 34px;
}

.button-caption {
  margin: 13px 0 0;
  color: #756a72;
  font-size: 11px;
}

.product-window {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 228, 244, 0.11);
  border-radius: 22px;
  background: #100d11;
  box-shadow:
    0 44px 120px rgba(0, 0, 0, 0.52),
    0 0 0 1px rgba(255, 255, 255, 0.018) inset;
  transform: perspective(1200px) rotateY(0) rotateX(0);
  animation: window-in 620ms 90ms cubic-bezier(0.2, 0.75, 0.2, 1) both;
}

.product-window::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.025), transparent 32%);
  content: "";
  pointer-events: none;
}

.product-titlebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 46px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
  background: #0e0b0f;
}

.product-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #d8ced5;
  font-size: 11px;
  font-weight: 650;
}

.product-brand img {
  border-radius: 7px;
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3a3038;
}

.product-body {
  display: grid;
  grid-template-columns: 92px 1fr;
  min-height: 450px;
}

.preview-sidebar {
  display: grid;
  align-content: start;
  gap: 13px;
  padding: 25px 18px;
  border-right: 1px solid var(--line);
  background: #110e12;
}

.preview-nav {
  display: block;
  width: 55px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
}

.preview-nav.active {
  background: rgba(244, 114, 182, 0.36);
}

.preview-content {
  padding: 30px;
  background:
    radial-gradient(circle at 86% 5%, rgba(244, 114, 182, 0.08), transparent 16rem),
    #0c0a0d;
}

.preview-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  padding: 21px;
  border: 1px solid rgba(244, 114, 182, 0.13);
  border-radius: 14px;
  background: linear-gradient(115deg, rgba(244, 114, 182, 0.1), transparent 60%), #171318;
}

.preview-heading div {
  display: grid;
  gap: 9px;
}

.preview-heading span,
.preview-heading strong {
  display: block;
  width: 72px;
  height: 6px;
  border-radius: 999px;
  background: rgba(244, 114, 182, 0.5);
}

.preview-heading strong {
  width: 165px;
  height: 16px;
  background: rgba(255, 255, 255, 0.16);
}

.preview-heading i {
  width: 88px;
  height: 34px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--pink-light), var(--pink-deep));
}

.preview-stats,
.preview-modules {
  display: grid;
  gap: 9px;
  margin-top: 11px;
}

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

.preview-stats span {
  height: 58px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
}

.preview-modules {
  grid-template-columns: repeat(2, 1fr);
}

.preview-modules article {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 148px;
  padding: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--surface);
}

.preview-modules article::before {
  position: absolute;
  top: -30px;
  right: -24px;
  width: 105px;
  height: 105px;
  border-radius: 50%;
  background: rgba(244, 114, 182, 0.09);
  content: "";
  filter: blur(8px);
}

.preview-modules b {
  position: relative;
  font-size: 11px;
  font-weight: 650;
}

.preview-modules i,
.preview-modules span {
  display: block;
  width: 80%;
  height: 5px;
  margin-top: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.preview-modules span {
  width: 45%;
  background: rgba(244, 114, 182, 0.22);
}

.preview-log {
  display: grid;
  gap: 7px;
  margin-top: 11px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(21, 17, 22, 0.72);
}

.preview-log span {
  width: 90%;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
}

.preview-log span:nth-child(2) {
  width: 74%;
}

.preview-log span:nth-child(3) {
  width: 82%;
}

.section-shell {
  padding: 104px 0;
}

.focus-section {
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 0.65fr);
  align-items: end;
  gap: 50px;
  margin-bottom: 38px;
}

.section-heading h2,
.cta-panel h2,
.page-hero h1 {
  margin: 11px 0 0;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 590;
  line-height: 1.04;
  letter-spacing: -0.052em;
}

.section-heading > p,
.cta-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

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

.feature-card {
  min-height: 210px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(21, 17, 22, 0.74);
  transition:
    transform 200ms ease,
    border-color 200ms ease,
    background 200ms ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(244, 114, 182, 0.2);
  background: rgba(28, 21, 28, 0.88);
}

.feature-card > span {
  color: var(--pink);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.13em;
}

.feature-card h3 {
  margin: 46px 0 9px;
  font-size: 17px;
  font-weight: 620;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 80px;
  padding: 46px;
  border: 1px solid rgba(244, 114, 182, 0.16);
  border-radius: 22px;
  background:
    radial-gradient(circle at 90% 10%, rgba(244, 114, 182, 0.11), transparent 18rem),
    linear-gradient(120deg, rgba(244, 114, 182, 0.07), transparent 58%),
    var(--surface);
  box-shadow: var(--shadow);
}

.cta-panel > div {
  max-width: 690px;
}

.cta-panel h2 {
  font-size: clamp(31px, 3.4vw, 46px);
}

.cta-panel p:not(.eyebrow) {
  margin-top: 13px;
}

.cta-panel .button {
  flex: 0 0 auto;
}

.affiliation-note {
  padding: 0 0 80px;
  color: #70656d;
  font-size: 11px;
  text-align: center;
}

/* Interior pages */

.page-main {
  min-height: calc(100vh - 82px);
}

.page-shell {
  padding: 78px 0 110px;
}

.page-hero {
  max-width: 790px;
  margin-bottom: 42px;
  animation: rise-in 500ms cubic-bezier(0.2, 0.75, 0.2, 1) both;
}

.page-hero h1 {
  margin-top: 16px;
  font-size: clamp(45px, 6vw, 72px);
}

.page-hero > p:not(.eyebrow) {
  max-width: 700px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.content-card,
.policy-card,
.billing-card,
.waitlist-panel {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(21, 17, 22, 0.82);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.2);
}

.content-card {
  padding: 31px;
}

.content-card + .content-card {
  margin-top: 14px;
}

.content-card h2,
.policy-card h2,
.waitlist-panel h2 {
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 610;
  letter-spacing: -0.035em;
}

.content-card p,
.content-card li,
.policy-card p,
.policy-card li {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

.content-card p:last-child,
.policy-card p:last-child {
  margin-bottom: 0;
}

.content-card ul,
.policy-card ul {
  display: grid;
  gap: 8px;
  padding-left: 20px;
}

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

.roadmap-column {
  position: relative;
  min-height: 420px;
  padding: 27px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(21, 17, 22, 0.82);
}

.roadmap-column::after {
  position: absolute;
  top: -70px;
  right: -70px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(244, 114, 182, 0.055);
  content: "";
  filter: blur(10px);
}

.roadmap-label {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  padding: 0 9px;
  border: 1px solid rgba(244, 114, 182, 0.16);
  border-radius: 999px;
  color: var(--pink-light);
  background: rgba(244, 114, 182, 0.055);
  font-size: 10px;
  font-weight: 740;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.roadmap-column h2 {
  position: relative;
  margin: 23px 0 20px;
  font-size: 25px;
}

.roadmap-column ul {
  position: relative;
  display: grid;
  gap: 13px;
  padding: 0;
  list-style: none;
}

.roadmap-column li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #b9aeb6;
  font-size: 13px;
}

.roadmap-column li::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(244, 114, 182, 0.66);
  content: "";
}

.roadmap-note {
  margin: 23px 0 0;
  color: var(--muted-2);
  font-size: 12px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(21, 17, 22, 0.78);
}

.faq-item summary {
  position: relative;
  padding: 21px 54px 21px 22px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 620;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 22px;
  color: var(--pink);
  content: "+";
  font-size: 20px;
  font-weight: 400;
  transform: translateY(-50%);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-answer {
  padding: 0 22px 22px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.72;
}

.faq-answer a,
.policy-card a,
.support-card a {
  color: var(--pink-light);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.support-card {
  min-height: 210px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(21, 17, 22, 0.82);
}

.support-card span {
  color: var(--pink);
  font-size: 10px;
  font-weight: 740;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.support-card h2 {
  margin: 32px 0 9px;
  font-size: 22px;
}

.support-card p,
.support-card li {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.support-card ul {
  padding-left: 19px;
}

.policy-card {
  max-width: 850px;
  padding: clamp(28px, 4vw, 48px);
}

.policy-card h2 {
  margin-top: 32px;
}

.policy-card h2:first-child {
  margin-top: 0;
}

.updated-date {
  color: var(--muted-2);
  font-size: 11px;
}

.billing-wrap {
  display: grid;
  min-height: calc(100vh - 250px);
  place-items: center;
}

.billing-card {
  width: min(100%, 700px);
  padding: clamp(34px, 6vw, 60px);
  text-align: center;
}

.billing-icon {
  display: grid;
  width: 60px;
  height: 60px;
  margin: 0 auto 24px;
  place-items: center;
  border: 1px solid rgba(244, 114, 182, 0.2);
  border-radius: 18px;
  color: var(--pink-light);
  background: rgba(244, 114, 182, 0.08);
  font-size: 26px;
}

.billing-card h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 50px);
  font-weight: 590;
  letter-spacing: -0.052em;
}

.billing-card p {
  max-width: 560px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.billing-card .button-row {
  justify-content: center;
}

/* Waitlist */

.waitlist-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(480px, 1.24fr);
  align-items: start;
  gap: clamp(34px, 6vw, 78px);
}

.waitlist-copy {
  position: sticky;
  top: 40px;
}

.waitlist-copy h1 {
  margin: 16px 0 20px;
  font-size: clamp(45px, 5.4vw, 68px);
  font-weight: 580;
  line-height: 1;
  letter-spacing: -0.058em;
}

.waitlist-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.waitlist-copy .waitlist-list-label {
  margin: 29px 0 0;
  color: #ddd2da;
  font-size: 12px;
  font-weight: 680;
}

.benefit-list {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 13px 0 0;
  list-style: none;
}

.benefit-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #c9bec6;
  font-size: 13px;
}

.benefit-list li::before {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 1px solid rgba(244, 114, 182, 0.18);
  border-radius: 50%;
  color: var(--pink);
  background: rgba(244, 114, 182, 0.055);
  content: "✓";
  font-size: 11px;
}

.waitlist-panel {
  padding: clamp(26px, 4vw, 42px);
}

.waitlist-panel > p {
  margin: -2px 0 27px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

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

.form-field {
  display: grid;
  gap: 8px;
}

.form-field > span,
.interest-fieldset legend {
  color: #d9ced6;
  font-size: 12px;
  font-weight: 640;
}

.form-field small,
.interest-fieldset > p {
  color: var(--muted-2);
  font-size: 10px;
}

.form-field input {
  width: 100%;
  height: 49px;
  padding: 0 14px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  outline: 0;
  color: var(--text);
  background: #100d11;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.form-field input:focus {
  border-color: rgba(244, 114, 182, 0.6);
  box-shadow: 0 0 0 3px rgba(244, 114, 182, 0.075);
}

.form-field input::placeholder {
  color: #5f555d;
}

.interest-fieldset {
  padding: 0;
  border: 0;
}

.interest-fieldset > p {
  margin: 6px 0 11px;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.check-option {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 43px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: #b8adb5;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.02);
  font-size: 11px;
}

.check-option:has(input:checked) {
  color: #eadfe6;
  border-color: rgba(244, 114, 182, 0.28);
  background: rgba(244, 114, 182, 0.06);
}

.check-option input {
  accent-color: var(--pink);
}

.waitlist-submit {
  width: 100%;
}

.form-note,
.form-status {
  margin: 0;
  color: var(--muted-2);
  font-size: 10px;
  line-height: 1.55;
  text-align: center;
}

.form-status:not(:empty) {
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: #cbbfc7;
  background: rgba(255, 255, 255, 0.02);
}

.tally-embed {
  --tally-crop-top: 160px;
  position: relative;
  min-height: 520px;
  margin-top: 4px;
  overflow: hidden;
  border: 1px solid rgba(244, 114, 182, 0.12);
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 0, rgba(244, 114, 182, 0.075), transparent 15rem),
    #100d11;
  box-shadow:
    0 20px 56px rgba(0, 0, 0, 0.22),
    0 1px 0 rgba(255, 255, 255, 0.025) inset;
}

.tally-embed::before {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(249, 168, 212, 0.52),
    transparent
  );
  content: "";
  pointer-events: none;
}

.tally-embed iframe {
  display: block;
  width: 100%;
  min-height: calc(650px + var(--tally-crop-top));
  margin-top: calc(var(--tally-crop-top) * -1);
  border: 0;
  opacity: 0;
  background: transparent;
  transition: opacity 420ms ease-out;
  color-scheme: dark;
}

.tally-embed.is-loaded iframe {
  opacity: 1;
}

.waitlist-form[hidden] {
  display: none;
}

.waitlist-success {
  display: grid;
  min-height: 440px;
  place-content: center;
  text-align: center;
}

.waitlist-success[hidden],
.tally-embed[hidden] {
  display: none;
}

.waitlist-success .billing-icon {
  margin-bottom: 20px;
}

.waitlist-success h2 {
  margin: 0;
  font-size: 32px;
}

.waitlist-success p {
  max-width: 480px;
  margin: 15px auto 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

/* Footer */

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  padding: 48px 0 24px;
  border-top: 1px solid var(--line);
}

.site-brand-footer {
  font-size: 17px;
}

.site-footer > div:first-child > p {
  max-width: 340px;
  margin: 14px 0 0;
  color: var(--muted-2);
  font-size: 11px;
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 130px);
  gap: 40px;
}

.footer-links > div {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-links strong {
  margin-bottom: 3px;
  color: #d4c9d1;
  font-size: 11px;
}

.footer-links a {
  color: var(--muted-2);
  font-size: 11px;
  text-decoration: none;
}

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

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: #625860;
  font-size: 10px;
}

.footer-bottom a {
  text-decoration: none;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes window-in {
  from {
    opacity: 0;
    translate: 0 18px;
    scale: 0.98;
  }
  to {
    opacity: 1;
    translate: 0;
    scale: 1;
  }
}

@keyframes page-enter {
  from {
    opacity: 0;
    transform: translateY(5px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes premium-enter {
  from {
    opacity: 0;
    transform: translateY(12px);
    filter: blur(3px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes button-shine {
  from {
    transform: translateX(-145%) skewX(-18deg);
  }

  to {
    transform: translateX(330%) skewX(-18deg);
  }
}

/* Premium interaction layer */

.js .premium-enter {
  opacity: 0;
}

.js.is-ready .premium-enter {
  animation: premium-enter 560ms cubic-bezier(0.16, 1, 0.3, 1) var(--enter-delay, 0ms)
    both;
}

.premium-card {
  --pointer-x: 50%;
  --pointer-y: 45%;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  isolation: isolate;
  transition:
    transform 300ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 360ms ease-out,
    box-shadow 360ms ease-out;
  will-change: transform;
}

.premium-card > * {
  position: relative;
  z-index: 1;
}

.premium-card::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    360px circle at var(--pointer-x) var(--pointer-y),
    rgba(244, 114, 182, 0.115),
    rgba(244, 114, 182, 0.025) 38%,
    transparent 72%
  );
  content: "";
  opacity: 0.58;
  pointer-events: none;
  transition: opacity 320ms ease-out;
}

.premium-card::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(
      260px circle at var(--pointer-x) var(--pointer-y),
      rgba(255, 255, 255, 0.07),
      transparent 62%
    ),
    linear-gradient(115deg, rgba(255, 255, 255, 0.025), transparent 32%);
  content: "";
  opacity: 0.38;
  pointer-events: none;
  transition: opacity 320ms ease-out;
}

.premium-card:hover {
  border-color: rgba(244, 114, 182, 0.27);
  box-shadow:
    0 32px 90px rgba(0, 0, 0, 0.36),
    0 0 0 1px rgba(244, 114, 182, 0.055) inset,
    0 0 42px rgba(236, 72, 153, 0.075);
}

.premium-card:hover::before,
.premium-card:hover::after {
  opacity: 0.86;
}

.waitlist-panel.premium-card::after {
  display: none;
}

.waitlist-panel.premium-card::before {
  opacity: 0.34;
}

.waitlist-panel.premium-card:hover::before {
  opacity: 0.48;
}

.premium-card[data-tilt-active="true"] {
  transform: perspective(1100px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y))
    translateY(-2px);
  transition:
    transform 90ms linear,
    border-color 360ms ease-out,
    box-shadow 360ms ease-out;
}

.button-primary::after {
  position: absolute;
  top: -35%;
  bottom: -35%;
  left: -38%;
  width: 22%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.24),
    transparent
  );
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: translateX(-145%) skewX(-18deg);
}

.button-primary:hover::after {
  animation: button-shine 680ms ease-out both;
  opacity: 0.42;
}

.magnetic-button {
  --magnet-x: 0px;
  --magnet-y: 0px;
  transform: translate3d(var(--magnet-x), var(--magnet-y), 0);
  transition:
    transform 280ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
  will-change: transform;
}

.magnetic-button:hover {
  transform: translate3d(var(--magnet-x), calc(var(--magnet-y) - 2px), 0);
}

.magnetic-button:active {
  transform: translate3d(var(--magnet-x), var(--magnet-y), 0) scale(0.985);
}

@media (hover: none), (pointer: coarse) {
  .premium-card {
    will-change: auto;
  }

  .premium-card:hover {
    transform: none;
  }

  .premium-card:hover::before,
  .premium-card:hover::after {
    opacity: 0.5;
  }

  .button-primary:hover::after {
    animation: none;
    opacity: 0;
  }
}

@keyframes status-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(244, 114, 182, 0.26);
  }
  70%,
  100% {
    box-shadow: 0 0 0 9px rgba(244, 114, 182, 0);
  }
}

@keyframes ambient-one {
  to {
    transform: translate3d(7vw, 4vh, 0) scale(1.08);
  }
}

@keyframes ambient-two {
  to {
    transform: translate3d(-6vw, -5vh, 0) scale(0.94);
  }
}

@media (max-width: 1000px) {
  .home-hero,
  .waitlist-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-copy,
  .product-window,
  .waitlist-copy,
  .waitlist-panel {
    min-width: 0;
  }

  .home-hero {
    min-height: auto;
    padding-top: 80px;
  }

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

  .product-window {
    width: min(100%, 720px);
    transform: none;
  }

  .waitlist-copy {
    position: static;
    max-width: 760px;
  }

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

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

  .roadmap-column {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .site-header,
  .site-footer,
  .section-shell,
  .home-hero,
  .page-shell {
    width: min(calc(100vw - 30px), var(--page-width));
  }

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

  .site-nav {
    display: none;
  }

  .home-hero {
    gap: 50px;
    padding: 64px 0 72px;
  }

  .hero-copy h1 {
    font-size: clamp(45px, 13vw, 66px);
  }

  .product-body {
    grid-template-columns: 62px 1fr;
    min-height: 380px;
  }

  .preview-sidebar {
    padding: 22px 12px;
  }

  .preview-nav {
    width: 36px;
  }

  .preview-content {
    padding: 20px;
  }

  .preview-modules article {
    min-height: 125px;
  }

  .section-shell {
    padding: 78px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .cta-panel {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 64px;
    padding: 32px;
  }

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

  .feature-card {
    min-height: 180px;
  }

  .page-shell {
    padding: 62px 0 84px;
  }

  .page-hero {
    margin-bottom: 32px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(110px, 1fr));
  }
}

@media (max-width: 520px) {
  .header-cta {
    display: none;
  }

  .site-brand {
    font-size: 17px;
  }

  .site-brand img {
    width: 31px;
    height: 31px;
  }

  .button-row,
  .button-row .button {
    width: 100%;
  }

  .product-window {
    border-radius: 16px;
  }

  .hero-copy h1 {
    font-size: clamp(42px, 11.5vw, 54px);
    letter-spacing: -0.057em;
  }

  .product-body {
    grid-template-columns: 1fr;
  }

  .preview-sidebar {
    display: none;
  }

  .preview-content {
    padding: 16px;
  }

  .preview-modules {
    grid-template-columns: 1fr;
  }

  .preview-modules article:last-child {
    display: none;
  }

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

  .waitlist-panel,
  .content-card,
  .support-card {
    padding: 22px;
  }

  .tally-embed {
    --tally-crop-top: 130px;
    margin-inline: -6px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .product-window {
    transform: none;
  }

  .premium-card {
    transform: none !important;
    will-change: auto;
  }

  .js .premium-enter {
    opacity: 1;
  }
}
