:root {
  color-scheme: light;
  --ink: #121217;
  --ink-soft: #4f505b;
  --muted: #777984;
  --canvas: #fbfaf6;
  --surface: #ffffff;
  --surface-tint: #f3f0ea;
  --coral: #ff6148;
  --coral-dark: #df4935;
  --acid: #d8ff54;
  --mint: #78e2b8;
  --sky: #72c8ff;
  --violet: #8d7bff;
  --line: rgba(18, 18, 23, 0.11);
  --line-strong: rgba(18, 18, 23, 0.2);
  --shadow: 0 30px 90px rgba(24, 24, 30, 0.14);
  --radius: 8px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  line-height: 1.5;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 18px 22px auto;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 58px;
  padding: 9px 10px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  box-shadow: 0 18px 60px rgba(18, 18, 23, 0.1);
  backdrop-filter: blur(20px) saturate(1.3);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  padding-left: 4px;
  font-weight: 850;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--ink);
  background: var(--acid);
  border: 2px solid var(--ink);
  border-radius: 50%;
  box-shadow: 3px 3px 0 var(--ink);
}

.nav-links {
  display: flex;
  flex: 1;
  justify-content: center;
  gap: 24px;
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 720;
}

.nav-links a,
.site-footer a {
  text-underline-offset: 5px;
}

.nav-links a:hover,
.site-footer a:hover {
  text-decoration: underline;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  color: #fff;
  background: var(--ink);
  border-radius: 999px;
  font-weight: 820;
}

.hero {
  position: relative;
  display: grid;
  min-height: 96vh;
  overflow: hidden;
  padding: 128px 24px 68px;
  background:
    linear-gradient(120deg, rgba(216, 255, 84, 0.34), transparent 34%),
    linear-gradient(310deg, rgba(114, 200, 255, 0.28), transparent 42%),
    var(--canvas);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 120px;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, rgba(251, 250, 246, 0), var(--canvas));
}

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

.stage-grid {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.date-ribbon {
  position: absolute;
  display: flex;
  gap: 10px;
  width: max-content;
  white-space: nowrap;
  animation: drift 24s linear infinite;
}

.date-ribbon span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 12px 35px rgba(18, 18, 23, 0.08);
  color: var(--ink-soft);
  font-weight: 820;
}

.ribbon-one {
  top: 114px;
  left: 42%;
  transform: rotate(-4deg);
}

.ribbon-two {
  right: -16%;
  bottom: 118px;
  animation-duration: 30s;
  animation-direction: reverse;
  transform: rotate(5deg);
}

.phone {
  position: absolute;
  width: 318px;
  min-height: 620px;
  padding: 18px;
  background: #101015;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 40px;
  box-shadow:
    inset 0 0 0 6px #1c1c24,
    0 36px 90px rgba(18, 18, 23, 0.28);
}

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

.phone-main {
  top: 116px;
  right: max(42px, calc((100vw - 1180px) / 2));
  transform: rotate(4deg);
  animation: floatMain 7s ease-in-out infinite;
}

.phone-side {
  right: max(320px, calc((100vw - 1180px) / 2 + 280px));
  bottom: 40px;
  width: 255px;
  min-height: 410px;
  transform: rotate(-9deg);
  animation: floatSide 8s ease-in-out infinite;
}

.phone-top,
.screen-header {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}

.phone-top {
  margin-top: 42px;
  padding: 18px 14px;
  color: #fff;
}

.phone-top span,
.screen-header span,
.checkin-card span,
.slot-card span,
.planner-mini span,
.table-card span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.phone-top strong {
  color: var(--acid);
}

.drop-card,
.planner-mini,
.checkin-card,
.slot-card {
  position: relative;
  display: grid;
  gap: 12px;
  margin: 10px 0;
  padding: 14px;
  color: #fff;
  background: #20202a;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
}

.drop-card {
  grid-template-columns: 48px 1fr;
  align-items: center;
}

.drop-card.active {
  background: #f9f6ef;
  color: var(--ink);
}

.drop-card button {
  grid-column: 1 / -1;
  min-height: 38px;
  color: var(--ink);
  background: var(--acid);
  border: 0;
  border-radius: 999px;
  font-weight: 850;
}

.drop-card span {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
}

.avatar,
.profile-art {
  background:
    linear-gradient(135deg, rgba(255, 97, 72, 0.88), rgba(216, 255, 84, 0.72)),
    var(--surface-tint);
  border-radius: var(--radius);
}

.avatar {
  width: 48px;
  height: 48px;
}

.avatar-b {
  background:
    linear-gradient(135deg, rgba(114, 200, 255, 0.95), rgba(120, 226, 184, 0.75)),
    var(--surface-tint);
}

.planner-mini {
  margin-top: 20px;
  background: #16161d;
}

.choice-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.choice-row b,
.segmented b {
  display: grid;
  min-height: 38px;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-size: 0.78rem;
}

.checkin-card {
  margin-top: 46px;
  padding: 18px;
  background: #f9f6ef;
  color: var(--ink);
}

.checkin-card strong,
.slot-card strong {
  font-size: 1.24rem;
  line-height: 1.1;
}

.segmented {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.segmented b:first-child {
  color: var(--ink);
  background: var(--acid);
}

.segmented b:last-child {
  color: var(--ink);
  background: #fff;
}

.slot-card {
  margin-top: 20px;
  background: #8d7bff;
}

.slot-card span {
  color: rgba(255, 255, 255, 0.72);
}

.signal-card {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-weight: 850;
  animation: popFloat 5s ease-in-out infinite;
}

.signal-one {
  top: 258px;
  right: max(342px, calc((100vw - 1180px) / 2 + 336px));
}

.signal-two {
  right: max(34px, calc((100vw - 1180px) / 2 + 18px));
  bottom: 214px;
  animation-delay: 1.5s;
}

.signal-dot {
  width: 10px;
  height: 10px;
  background: var(--mint);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(120, 226, 184, 0.24);
}

.hero-content {
  position: relative;
  z-index: 2;
  align-self: center;
  width: min(690px, 100%);
  margin-left: max(0px, calc((100vw - 1180px) / 2));
  padding: 7vh 0 6vh;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--coral);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 690px;
  margin-bottom: 22px;
  font-size: clamp(5.7rem, 8.2vw, 7.45rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: 4.55rem;
  line-height: 0.96;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  line-height: 1.16;
  letter-spacing: 0;
}

[id] {
  scroll-margin-top: 110px;
}

.hero-copy {
  max-width: 590px;
  color: var(--ink-soft);
  font-size: 1.38rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 23px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  letter-spacing: 0;
  transition:
    transform 170ms ease,
    background 170ms ease,
    color 170ms ease,
    box-shadow 170ms ease;
}

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

.button.primary {
  color: #fff;
  background: var(--coral);
  box-shadow: 0 14px 38px rgba(255, 97, 72, 0.28);
}

.button.primary:hover {
  background: var(--coral-dark);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line-strong);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 780;
}

.drop-launch {
  position: relative;
  overflow: hidden;
  padding: 72px 24px;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(216, 255, 84, 0.18), transparent 34%),
    linear-gradient(300deg, rgba(255, 97, 72, 0.2), transparent 40%),
    #121217;
}

.drop-launch::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.26) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.26) 1px, transparent 1px);
  background-size: 44px 44px;
}

.drop-launch-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.66fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
}

.drop-launch-copy {
  max-width: 560px;
}

.drop-launch .eyebrow {
  color: var(--acid);
}

.drop-launch h2 {
  max-width: 560px;
  margin-bottom: 16px;
  font-size: clamp(3.3rem, 6vw, 5.4rem);
}

.drop-launch-layout p:not(.eyebrow) {
  max-width: 500px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.12rem;
}

.drop-launch .button {
  margin-top: 20px;
}

.drop-countdown {
  display: grid;
  gap: 18px;
  width: 100%;
  padding: clamp(18px, 3vw, 28px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px) saturate(1.2);
}

.countdown-copy {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: baseline;
  justify-content: space-between;
}

.countdown-copy span {
  color: var(--acid);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.countdown-copy strong {
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.2;
}

.flip-clock {
  display: grid;
  grid-template-columns: repeat(4, minmax(62px, 1fr));
  gap: 10px;
}

.flip-unit {
  position: relative;
  display: grid;
  gap: 6px;
  min-height: 118px;
  place-items: center;
  padding: 16px 10px 12px;
  overflow: hidden;
  color: #fff;
  background: #050508;
  border-radius: var(--radius);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -1px 0 rgba(0, 0, 0, 0.36);
}

.flip-unit::before {
  position: absolute;
  right: 0;
  left: 0;
  top: 50%;
  height: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.16);
}

.flip-unit b {
  position: relative;
  font-size: clamp(2.3rem, 5vw, 4.35rem);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0;
}

.flip-unit span {
  position: relative;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.flip-unit.is-flipping b {
  animation: flipTick 420ms ease;
}

.section {
  padding: 104px 24px;
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.section-kicker {
  max-width: 860px;
  margin-bottom: 44px;
}

.section-kicker p,
.screen-copy p,
.founding-layout p,
.trust-layout p,
.tables-layout p,
.apply-layout > div > p {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.rhythm {
  background: var(--canvas);
}

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

.rhythm-board article,
.application-form,
.pricing-panel,
details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(18, 18, 23, 0.06);
}

.rhythm-board article {
  min-height: 270px;
  padding: 22px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.rhythm-board article:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 70px rgba(18, 18, 23, 0.12);
}

.day {
  display: inline-grid;
  min-width: 52px;
  width: max-content;
  min-height: 52px;
  padding: 0 13px;
  margin-bottom: 44px;
  place-items: center;
  color: var(--ink);
  background: var(--surface-tint);
  border: 1px solid var(--line);
  border-radius: 16px;
  font-weight: 940;
}

.day.hot {
  background: var(--acid);
  border-color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}

.rhythm-board p,
.faq-list p {
  color: var(--ink-soft);
}

.product {
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--surface), #f1f6ef);
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: center;
}

.screen-copy {
  max-width: 520px;
}

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

.app-screen {
  position: absolute;
  width: 318px;
  min-height: 566px;
  padding: 22px;
  overflow: hidden;
  background: #111116;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 36px;
  box-shadow:
    inset 0 0 0 6px #1d1d25,
    0 32px 90px rgba(18, 18, 23, 0.2);
  color: #fff;
}

.app-screen::before {
  position: absolute;
  top: 14px;
  left: 50%;
  width: 82px;
  height: 20px;
  content: "";
  background: #050508;
  border-radius: 999px;
  transform: translateX(-50%);
}

.screen-checkin {
  top: 82px;
  left: 0;
  transform: rotate(-8deg);
}

.screen-drop {
  top: 0;
  left: 230px;
  z-index: 2;
  transform: rotate(3deg);
}

.screen-planner {
  right: 0;
  bottom: 4px;
  transform: rotate(9deg);
}

.screen-header {
  margin: 34px 0 34px;
}

.screen-header b {
  color: var(--acid);
}

.app-screen h3 {
  font-size: 2rem;
  line-height: 0.98;
}

.pill-row,
.planner-list,
.match-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.pill-row span,
.planner-list span,
.match-actions span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-weight: 780;
}

.bottom-action {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: grid;
  min-height: 48px;
  place-items: center;
  color: var(--ink);
  background: var(--acid);
  border-radius: 999px;
  font-weight: 920;
}

.bottom-action.alt {
  background: var(--mint);
}

.profile-card {
  display: grid;
  gap: 14px;
  padding: 14px;
  color: var(--ink);
  background: #f8f5ee;
  border-radius: var(--radius);
}

.profile-art {
  height: 250px;
}

.art-one {
  background:
    linear-gradient(145deg, rgba(255, 97, 72, 0.98), rgba(216, 255, 84, 0.72) 56%, rgba(114, 200, 255, 0.78)),
    var(--surface-tint);
}

.profile-card span {
  color: var(--ink-soft);
}

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

.match-actions span {
  justify-content: center;
}

.match-actions span:last-child {
  color: var(--ink);
  background: var(--acid);
}

.warmup {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(120, 226, 184, 0.2), transparent 40%),
    var(--canvas);
}

.warmup-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(0, 0.75fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: center;
}

.warmup-card {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
  color: #fff;
  background: #121217;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow:
    10px 10px 0 var(--acid),
    0 30px 90px rgba(18, 18, 23, 0.2);
  transform: rotate(-2deg);
}

.warmup-card-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.warmup-card-top span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  font-weight: 850;
}

.warmup-card-top strong {
  color: var(--acid);
}

.warmup-card h3 {
  max-width: 360px;
  margin-bottom: 0;
  font-size: 2.65rem;
  line-height: 0.95;
}

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

.warmup-question-list span,
.custom-question {
  padding: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
}

.warmup-question-list span {
  color: rgba(255, 255, 255, 0.84);
  font-weight: 760;
}

.custom-question {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  justify-content: space-between;
  color: var(--ink);
  background: var(--mint);
  border-color: transparent;
}

.custom-question span,
.custom-question b {
  font-weight: 900;
}

.custom-question b {
  color: rgba(18, 18, 23, 0.68);
}

.warmup-copy {
  max-width: 620px;
}

.warmup-copy p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: 1.1rem;
}

.contrast {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 97, 72, 0.2), transparent 28%),
    radial-gradient(circle at 78% 72%, rgba(216, 255, 84, 0.15), transparent 30%),
    #121217;
}

.contrast::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.26) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.26) 1px, transparent 1px);
  background-size: 44px 44px;
}

.contrast-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 82px);
  align-items: center;
}

.contrast .eyebrow {
  color: var(--acid);
}

.contrast-layout > div:first-child p {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.12rem;
}

.contrast-lab {
  position: relative;
  display: grid;
  grid-template-columns: minmax(150px, 0.78fr) minmax(180px, 0.9fr) minmax(190px, 1fr);
  gap: 14px;
  min-height: 470px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.2);
}

.loop-column {
  display: grid;
  align-content: center;
  gap: 10px;
  min-width: 0;
}

.loop-label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.loop-chip,
.flow-step {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 0 14px;
  border-radius: var(--radius);
  font-weight: 900;
}

.old-loop .loop-chip {
  position: relative;
  color: rgba(255, 255, 255, 0.56);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.old-loop .loop-chip::after {
  position: absolute;
  right: 14px;
  width: 18px;
  height: 2px;
  content: "";
  background: var(--coral);
  transform: rotate(-18deg);
}

.loop-break {
  position: relative;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 20px;
  color: var(--ink);
  background: var(--acid);
  border: 2px solid #fff;
  border-radius: var(--radius);
  box-shadow: 8px 8px 0 #fff;
  transform: rotate(-2deg);
}

.loop-break::before {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 46px;
  height: 46px;
  content: "";
  border: 2px solid var(--ink);
  border-radius: 50%;
  background:
    linear-gradient(45deg, transparent 46%, var(--ink) 47% 53%, transparent 54%),
    linear-gradient(-45deg, transparent 46%, var(--ink) 47% 53%, transparent 54%);
  opacity: 0.2;
  animation: orbitSpin 18s linear infinite;
}

.loop-break span {
  width: max-content;
  max-width: 100%;
  min-height: 32px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  background: rgba(18, 18, 23, 0.1);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
}

.loop-break strong {
  margin-top: 76px;
  font-size: 2.4rem;
  line-height: 0.92;
}

.friday-flow .flow-step {
  gap: 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.flow-step b {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--ink);
  background: var(--acid);
  border: 2px solid var(--ink);
  border-radius: 50%;
  font-size: 0.78rem;
}

.founding {
  background:
    linear-gradient(120deg, rgba(255, 97, 72, 0.14), transparent 38%),
    var(--canvas);
}

.founding-layout,
.trust-layout,
.tables-layout,
.apply-layout,
.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 84px);
  align-items: start;
}

.founding-layout > div:first-child {
  max-width: 600px;
}

.pricing-panel {
  padding: 28px;
}

.price-line {
  display: grid;
  gap: 5px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.price-line span,
.price-line small {
  color: var(--ink-soft);
}

.price-line strong {
  font-size: 5.8rem;
  line-height: 0.92;
  letter-spacing: 0;
}

.benefit-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.benefit-list span {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--ink-soft);
  font-weight: 740;
}

.benefit-list span::before {
  width: 9px;
  height: 9px;
  content: "";
  background: var(--coral);
  border-radius: 50%;
}

.fit {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 20%, rgba(216, 255, 84, 0.34), transparent 28%),
    radial-gradient(circle at 82% 82%, rgba(114, 200, 255, 0.2), transparent 30%),
    var(--surface);
}

.fit-system {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
}

.fit-orbit {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(216, 255, 84, 0.52), transparent 54%),
    #f8f7f2;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(18, 18, 23, 0.08);
}

.fit-orbit::before,
.fit-orbit::after {
  position: absolute;
  inset: 72px;
  content: "";
  border: 1px dashed rgba(18, 18, 23, 0.18);
  border-radius: 50%;
  animation: orbitSpin 34s linear infinite;
}

.fit-orbit::after {
  inset: 124px;
  animation-direction: reverse;
  animation-duration: 26s;
}

.fit-core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 210px;
  height: 210px;
  place-content: center;
  text-align: center;
  background: var(--ink);
  border-radius: 50%;
  box-shadow: 0 30px 80px rgba(18, 18, 23, 0.22);
  transform: translate(-50%, -50%);
}

.fit-core span {
  color: var(--acid);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.fit-core strong {
  color: #fff;
  font-size: 2.1rem;
  line-height: 0.92;
}

.fit-bubble {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 15px;
  color: var(--ink);
  background: var(--surface);
  border: 2px solid var(--ink);
  border-radius: 999px;
  box-shadow: 5px 5px 0 var(--ink);
  font-weight: 900;
  animation: popFloat 5.5s ease-in-out infinite;
}

.bubble-one {
  top: 66px;
  left: 42px;
}

.bubble-two {
  top: 120px;
  right: 54px;
  background: var(--acid);
  animation-delay: 0.9s;
}

.bubble-three {
  right: 42px;
  bottom: 112px;
  background: var(--sky);
  animation-delay: 1.6s;
}

.bubble-four {
  bottom: 74px;
  left: 40px;
  background: var(--mint);
  animation-delay: 2.2s;
}

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

.fit-signals article {
  min-height: 260px;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(18, 18, 23, 0.06);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.fit-signals article:hover {
  transform: rotate(-1deg) translateY(-4px);
  box-shadow: 0 26px 70px rgba(18, 18, 23, 0.12);
}

.fit-signals article:nth-child(even):hover {
  transform: rotate(1deg) translateY(-4px);
}

.signal-match {
  border-top: 6px solid var(--acid) !important;
}

.signal-skip {
  border-top: 6px solid var(--coral) !important;
}

.signal-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 46px;
  padding: 0 10px;
  background: var(--surface-tint);
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.signal-match .signal-label {
  background: var(--acid);
  color: var(--ink);
}

.signal-skip .signal-label {
  background: #ffe6df;
  color: var(--coral-dark);
}

.fit-signals p {
  color: var(--ink-soft);
}

.trust {
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgba(216, 255, 84, 0.18), transparent 30%),
    #121217;
}

.trust-layout p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.7);
}

.trust .eyebrow {
  color: var(--acid);
}

.safety-console {
  position: relative;
  overflow: hidden;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
    #1b1b24;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.2);
}

.safety-console::before {
  position: absolute;
  top: -110px;
  right: -90px;
  width: 260px;
  height: 260px;
  content: "";
  background: radial-gradient(circle, rgba(216, 255, 84, 0.32), transparent 62%);
  animation: pulseGlow 4s ease-in-out infinite;
}

.console-top {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 34px;
}

.console-top span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.console-top strong {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  color: var(--ink);
  background: var(--acid);
  border-radius: 999px;
  font-size: 0.9rem;
}

.console-meter {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  align-items: center;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.meter-ring {
  display: grid;
  width: 150px;
  height: 150px;
  place-items: center;
  background:
    radial-gradient(circle at center, #1b1b24 54%, transparent 55%),
    conic-gradient(var(--acid) 0 332deg, rgba(255, 255, 255, 0.12) 332deg 360deg);
  border-radius: 50%;
}

.meter-ring span {
  color: #fff;
  font-size: 3.2rem;
  font-weight: 950;
}

.console-meter h3 {
  font-size: 2.2rem;
}

.console-meter p {
  color: rgba(255, 255, 255, 0.66);
}

.console-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.console-grid span {
  display: flex;
  gap: 12px;
  min-height: 84px;
  align-items: center;
  padding: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 820;
}

.console-grid b {
  color: var(--acid);
}

.tables {
  background: var(--surface);
}

.table-illustration {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(216, 255, 84, 0.58), transparent 54%),
    linear-gradient(315deg, rgba(141, 123, 255, 0.36), transparent 50%),
    #f8f5ee;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.table-illustration::before,
.table-illustration::after {
  position: absolute;
  content: "";
  background: var(--ink);
}

.table-illustration::before {
  top: 72px;
  left: 48px;
  width: 190px;
  height: 18px;
  transform: rotate(-12deg);
}

.table-illustration::after {
  right: 40px;
  bottom: 70px;
  width: 230px;
  height: 18px;
  transform: rotate(10deg);
}

.table-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(340px, calc(100% - 44px));
  padding: 24px;
  background: var(--surface);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 10px 10px 0 var(--ink);
  transform: translate(-50%, -50%) rotate(-2deg);
}

.table-card strong {
  display: block;
  margin: 8px 0 24px;
  font-size: 1.44rem;
}

.seat-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.seat-map i {
  display: block;
  aspect-ratio: 1;
  background: var(--surface-tint);
  border: 1px solid var(--line);
  border-radius: 50%;
}

.seat-map i:nth-child(2),
.seat-map i:nth-child(5) {
  background: var(--acid);
}

.seat-map i:nth-child(3) {
  background: var(--sky);
}

.seat-map i:nth-child(4) {
  background: var(--coral);
}

.muted {
  color: var(--ink-soft);
}

.apply {
  background:
    linear-gradient(180deg, var(--canvas), #f4f7f1);
}

.application-note {
  display: grid;
  gap: 4px;
  margin-top: 32px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(18, 18, 23, 0.06);
}

.application-note span {
  color: var(--ink-soft);
}

.application-form {
  display: grid;
  gap: 18px;
  padding: clamp(20px, 4vw, 32px);
}

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

label {
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 780;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fbfaf6;
  border: 1px solid rgba(18, 18, 23, 0.16);
  border-radius: var(--radius);
  outline: 0;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(255, 97, 72, 0.16);
}

.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.checkbox-group > span {
  flex-basis: 100%;
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 850;
}

.checkbox-group label {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  color: var(--ink);
  background: var(--surface-tint);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.checkbox-group input {
  width: auto;
  min-height: auto;
}

.form-submit {
  width: 100%;
}

.form-success {
  margin: 0;
  padding: 16px;
  color: #153b2b;
  background: #eafff5;
  border: 1px solid rgba(120, 226, 184, 0.42);
  border-radius: var(--radius);
  font-weight: 820;
}

.form-error {
  margin: 0;
  padding: 16px;
  color: #641b12;
  background: #fff0ed;
  border: 1px solid rgba(255, 97, 72, 0.34);
  border-radius: var(--radius);
  font-weight: 820;
}

.faq {
  background: var(--surface);
}

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

details {
  overflow: hidden;
  box-shadow: none;
}

summary {
  min-height: 64px;
  padding: 20px 22px;
  cursor: pointer;
  font-weight: 880;
}

details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--ink-soft);
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 116px 24px;
  color: #fff;
  background:
    radial-gradient(circle at 20% 18%, rgba(216, 255, 84, 0.22), transparent 30%),
    radial-gradient(circle at 82% 78%, rgba(255, 97, 72, 0.28), transparent 34%),
    #121217;
}

.final-cta::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.24) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.24) 1px, transparent 1px);
  background-size: 44px 44px;
}

.final-cta .eyebrow {
  color: var(--acid);
}

.final-cta h2 {
  max-width: 860px;
}

.final-cta p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.12rem;
}

.final-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
  gap: 40px;
  align-items: center;
}

.invite-card {
  position: relative;
  display: grid;
  min-height: 360px;
  align-content: end;
  padding: 28px;
  color: var(--ink);
  background: var(--acid);
  border: 2px solid #fff;
  border-radius: var(--radius);
  box-shadow:
    12px 12px 0 #fff,
    0 32px 90px rgba(0, 0, 0, 0.2);
  transform: rotate(3deg);
}

.invite-card::before {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 86px;
  height: 86px;
  content: "";
  background:
    linear-gradient(90deg, transparent 47%, var(--ink) 48% 52%, transparent 53%),
    linear-gradient(0deg, transparent 47%, var(--ink) 48% 52%, transparent 53%);
  opacity: 0.2;
  border: 2px solid var(--ink);
  border-radius: 50%;
  animation: orbitSpin 18s linear infinite;
}

.invite-logo {
  position: absolute;
  top: 28px;
  left: 28px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--ink);
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 50%;
  box-shadow: 4px 4px 0 var(--ink);
  font-size: 1.5rem;
  font-weight: 950;
}

.invite-card span {
  color: rgba(18, 18, 23, 0.62);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.invite-card strong {
  margin: 8px 0 24px;
  font-size: 3rem;
  line-height: 0.92;
}

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

.invite-meta b {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 10px;
  color: #fff;
  background: var(--ink);
  border-radius: 999px;
  font-size: 0.82rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 24px;
  color: rgba(255, 255, 255, 0.68);
  background: #121217;
}

.site-footer span:first-child {
  color: #fff;
  font-weight: 900;
}

@keyframes drift {
  from {
    translate: 0 0;
  }

  to {
    translate: -280px 0;
  }
}

@keyframes flipTick {
  0% {
    transform: rotateX(0deg);
  }

  48% {
    transform: rotateX(-82deg);
  }

  100% {
    transform: rotateX(0deg);
  }
}

@keyframes floatMain {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -16px;
  }
}

@keyframes floatSide {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 14px;
  }
}

@keyframes popFloat {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -10px;
  }
}

@keyframes orbitSpin {
  from {
    rotate: 0deg;
  }

  to {
    rotate: 360deg;
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    opacity: 0.72;
    scale: 1;
  }

  50% {
    opacity: 1;
    scale: 1.08;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1100px) {
  .phone-main {
    right: -64px;
    opacity: 0.62;
  }

  .phone-side,
  .signal-card {
    display: none;
  }

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

  .screen-checkin {
    left: -20px;
  }

  .screen-drop {
    left: 180px;
  }

  .screen-planner {
    right: -30px;
  }
}

@media (max-width: 900px) {
  .site-header {
    inset: 10px 10px auto;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    margin-left: auto;
  }

  .hero {
    min-height: auto;
    padding: 116px 18px 42px;
  }

  .hero-content {
    padding: 6vh 0 52vh;
  }

  h1 {
    font-size: 5.15rem;
  }

  h2 {
    font-size: 4rem;
  }

  .phone-main {
    top: auto;
    right: 50%;
    bottom: 38px;
    width: 286px;
    min-height: 530px;
    opacity: 1;
    transform: translateX(50%) rotate(4deg);
  }

  .ribbon-one {
    left: 10%;
  }

  .ribbon-two {
    display: none;
  }

  .section {
    padding: 78px 18px;
  }

  .rhythm-board,
  .drop-launch-layout,
  .product-layout,
  .warmup-layout,
  .contrast-layout,
  .founding-layout,
  .fit-system,
  .trust-layout,
  .tables-layout,
  .apply-layout,
  .faq-layout,
  .final-layout {
    grid-template-columns: 1fr;
  }

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

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

  .app-screen {
    position: relative;
    width: min(330px, 100%);
    min-height: 520px;
    margin: 0 auto;
  }

  .screen-checkin,
  .screen-drop,
  .screen-planner {
    inset: auto;
    transform: none;
  }

  .screen-drop {
    margin-top: -90px;
    transform: rotate(2deg);
  }

  .screen-planner {
    margin-top: -90px;
    transform: rotate(-2deg);
  }

  .warmup-card {
    transform: rotate(0deg);
  }

  .table-illustration {
    min-height: 380px;
  }

  .fit-orbit {
    min-height: 420px;
  }

  .invite-card {
    transform: rotate(0deg);
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .brand-mark {
    width: 34px;
    height: 34px;
    box-shadow: 2px 2px 0 var(--ink);
  }

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

  h1 {
    font-size: 3.9rem;
  }

  h2 {
    font-size: 3.25rem;
  }

  .app-screen h3 {
    font-size: 1.82rem;
  }

  .hero-copy {
    font-size: 1.16rem;
  }

  .price-line strong {
    font-size: 4.2rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-content {
    padding-bottom: 560px;
  }

  .hero-proof span {
    width: 100%;
  }

  .drop-countdown {
    align-items: stretch;
  }

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

  .flip-unit {
    min-height: 102px;
  }

  .phone-main {
    width: 274px;
    min-height: 520px;
    bottom: 22px;
  }

  .rhythm-board,
  .form-grid,
  .console-grid,
  .contrast-lab,
  .fit-signals {
    grid-template-columns: 1fr;
  }

  .contrast-lab {
    min-height: auto;
  }

  .loop-break {
    transform: rotate(0deg);
  }

  .loop-break strong {
    margin-top: 42px;
  }

  .fit-orbit {
    min-height: 360px;
  }

  .fit-core {
    width: 174px;
    height: 174px;
  }

  .fit-core strong {
    font-size: 1.7rem;
  }

  .fit-bubble {
    min-height: 36px;
    padding: 0 11px;
    font-size: 0.84rem;
    box-shadow: 3px 3px 0 var(--ink);
  }

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

  .meter-ring {
    width: 132px;
    height: 132px;
  }

  .invite-card strong {
    font-size: 2.4rem;
  }

  .rhythm-board article {
    min-height: 176px;
  }

  .day {
    margin-bottom: 26px;
  }

  .application-form {
    padding: 18px;
  }
}
