@font-face {
  font-family: "Aeonik";
  src: url("../fonts/Aeonik-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Aeonik";
  src: url("../fonts/Aeonik-Medium.otf") format("opentype");
  font-weight: 500 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Aeonik";
  src: url("../fonts/Aeonik-Bold.otf") format("opentype");
  font-weight: 800 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Aeonik";
  src: url("../fonts/Aeonik-Black.otf") format("opentype");
  font-weight: 900 1000;
  font-style: normal;
  font-display: swap;
}

:root {
  --purple: #3f0537;
  --purple-dark: #260022;
  --coral: #ff6370;
  --label-ink: #3f0537;
  --lav: #edadf9;
  --sky: #74cff4;
  --yellow: #fef549;
  --orange: #f57a2f;
  --cream: #fffbd1;
  --cream-2: #ffe7d0;
  --bg: #fff8f3;
  --pink-soft: #ffd5d8;
  --ink: #25001f;
  --muted: rgba(37, 0, 31, 0.68);
  --white: #ffffff;
  --max: 1180px;
  --radius-xl: 42px;
  --radius-lg: 28px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
  font-family: "Aeonik", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  padding: 18px 16px 0;
  background: transparent;
  pointer-events: none;
}
.header-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 9px 9px 9px 14px;
  border-radius: 999px;
  background: rgba(255, 250, 244, 0.92);
  border: 1px solid rgba(63, 5, 55, 0.08);
  box-shadow: 0 18px 55px rgba(63, 5, 55, 0.10);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  pointer-events: auto;
  transition: box-shadow .2s ease, transform .2s ease, background .2s ease;
}
.site-header.is-scrolled .header-inner {
  box-shadow: 0 22px 70px rgba(63, 5, 55, .16);
  background: rgba(255, 250, 244, 0.96);
}
.brand { display: inline-flex; align-items: center; gap: 9px; height: 42px; padding-inline: 8px; }
.brand img { width: 38px; height: auto; }
.brand-word {
  font-size: 22px;
  font-weight: 950;
  letter-spacing: -.04em;
  color: var(--purple);
}
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(63, 5, 55, 0.055);
}
.nav a {
  font-size: 13px;
  font-weight: 800;
  padding: 9px 14px;
  border-radius: 999px;
  color: rgba(37,0,31,.72);
}
.nav a:hover { background: var(--white); color: var(--purple); box-shadow: 0 8px 24px rgba(63,5,55,.08); }
.nav-cta {
  padding: 11px 16px;
  border-radius: 999px;
  background: var(--purple);
  color: var(--cream);
  font-weight: 900;
  font-size: 13px;
  box-shadow: 0 12px 28px rgba(63,5,55,.18);
}

.section-pad {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0;
}
.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 56px;
  padding-top: 64px;
}
.kicker, .section-label {
  font-size: 14px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: .02em;
  color: var(--coral);
  margin-bottom: 22px;
}
.section-label.light { color: var(--pink-soft); }
h1, h2 {
  font-weight: 950;
  letter-spacing: -.07em;
  line-height: .93;
}
h1 { font-size: clamp(4.2rem, 8.8vw, 8.4rem); max-width: 760px; }
h2 { font-size: clamp(3rem, 5.8vw, 6.2rem); }
p { font-size: 18px; line-height: 1.55; }
.lead { max-width: 560px; margin-top: 26px; font-size: clamp(1.05rem, 1.55vw, 1.22rem); color: var(--muted); }
.hero-clarity {
  display: inline-block;
  color: var(--purple);
  font-weight: 950;
  background: rgba(255, 99, 112, 0.14);
  padding: 1px 8px 3px;
  border-radius: 8px;
  border: 1px solid rgba(255, 99, 112, 0.25);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 950;
  border: 2px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--coral); color: var(--purple); box-shadow: 0 16px 36px rgba(255,99,112,.28); }
.button.secondary { border-color: rgba(63,5,55,.18); color: var(--purple); background: var(--white); }
.button.light-button { background: var(--cream); color: var(--purple); margin-top: 28px; }
.small-note { margin-top: 18px; color: rgba(37,0,31,.65); font-size: 15px; font-weight: 700; }

.session-hero {
  min-height: 720px;
  position: relative;
  isolation: isolate;
  align-items: center;
  justify-content: center;
}

.session-hero::before {
  content: "";
  position: absolute;
  inset: 7% 6% 5%;
  border-radius: 48px;
  background:
    radial-gradient(circle at 78% 18%, rgba(116, 207, 244, .32), transparent 30%),
    radial-gradient(circle at 18% 76%, rgba(255, 99, 112, .38), transparent 34%),
    linear-gradient(145deg, var(--purple), #260022 58%, #1f001d);
  box-shadow: 0 34px 90px rgba(63,5,55,.24);
  z-index: 0;
}

.session-hero::after {
  content: "";
  position: absolute;
  inset: 10% 10% auto auto;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255,255,255,.22), rgba(255,255,255,0) 70%);
  filter: blur(4px);
  z-index: 1;
}

.session-panel {
  position: relative;
  z-index: 3;
  width: min(500px, 88%);
  padding: 30px;
  border-radius: 34px;
  background: rgba(255, 254, 242, .92);
  border: 1px solid rgba(255,255,255,.5);
  box-shadow: 0 26px 70px rgba(63,5,55,.22);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transform: translateX(-18px);
}

.session-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.session-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 10px 14px;
  background: var(--coral);
  color: var(--purple);
  font-size: 13px;
  font-weight: 950;
  box-shadow: 0 10px 20px rgba(255,99,112,.22);
}

.session-time {
  color: rgba(37,0,31,.58);
  font-size: 14px;
  font-weight: 850;
}

.session-panel h3 {
  max-width: 410px;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: .96;
  letter-spacing: -.055em;
  color: var(--purple);
  margin-bottom: 24px;
}

.session-card-main {
  border-radius: 26px;
  padding: 16px;
  background: var(--purple);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.session-partner {
  display: flex;
  align-items: center;
  gap: 12px;
}

.session-partner img {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  object-fit: cover;
  object-position: center;
  border: 2px solid rgba(255,255,255,.28);
}

.session-partner strong,
.session-partner span {
  display: block;
}

.session-partner strong {
  font-size: 17px;
  line-height: 1.1;
}

.session-partner span {
  margin-top: 4px;
  font-size: 12px;
  color: rgba(255,251,209,.68);
  font-weight: 700;
}

.match-score {
  white-space: nowrap;
  border-radius: 999px;
  padding: 9px 12px;
  background: rgba(255,255,255,.12);
  color: var(--cream);
  font-size: 12px;
  font-weight: 900;
}

.session-flow {
  display: grid;
  gap: 10px;
}

.session-flow div {
  display: grid;
  grid-template-columns: 34px 1fr;
  column-gap: 12px;
  padding: 14px;
  border-radius: 20px;
  background: rgba(63,5,55,.06);
}

.session-flow span {
  grid-row: span 2;
  color: var(--coral);
  font-size: 12px;
  font-weight: 950;
}

.session-flow strong {
  color: var(--purple);
  font-size: 15px;
  line-height: 1.2;
}

.session-flow p {
  margin-top: 3px;
  color: rgba(37,0,31,.58);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 650;
}

.floating-session-card {
  right: 82px;
  bottom: 118px;
  padding: 16px 18px;
  background: var(--coral);
  color: var(--purple);
  box-shadow: 0 18px 44px rgba(255,99,112,.22);
  transform: rotate(-4deg);
}

.floating-session-card {
  position: absolute;
  z-index: 4;
  right: 40px;
  bottom: 118px;
  width: 280px;
  padding: 18px 24px 20px;
  border-radius: 26px;
  background: #eb6b73;
  color: var(--purple);
  box-shadow: 0 18px 40px rgba(63, 5, 55, 0.14);
  transform: rotate(4deg);
  animation: floatSessionCard 6s ease-in-out infinite;
}

.floating-session-card span {
  display: block;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 10px;
  color: rgba(63, 5, 55, 0.82);
}

.floating-session-card strong {
  display: block;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 900;
  color: var(--purple);
}

@keyframes floatSessionCard {
  0% { transform: translateY(0) rotate(4deg); }
  50% { transform: translateY(-10px) rotate(4deg); }
  100% { transform: translateY(0) rotate(4deg); }
}

@media (max-width: 980px) {
  .session-hero { min-height: 760px; }
  .session-panel {
    width: min(520px, 88%);
    transform: translateX(-12px);
  }
  .floating-session-card {
    right: 24px;
    bottom: 88px;
    width: 236px;
    padding: 16px 20px 18px;
    border-radius: 22px;
  }
  .floating-session-card span {
    font-size: 16px;
    margin-bottom: 8px;
  }
  .floating-session-card strong {
    font-size: 24px;
  }
}

@media (max-width: 640px) {
  .session-hero {
    min-height: 760px;
    padding-top: 18px;
  }
  .session-hero::before {
    inset: 14px 0 16px;
    border-radius: 34px;
  }
  .session-panel {
    width: calc(100% - 24px);
    padding: 20px;
    border-radius: 28px;
    transform: none;
  }
  .session-panel h3 { font-size: clamp(2rem, 10vw, 2.9rem); }
  .session-card-main {
    align-items: flex-start;
    flex-direction: column;
  }
  .floating-session-card {
    right: 12px;
    bottom: 24px;
    width: 198px;
    padding: 14px 16px 16px;
    border-radius: 20px;
  }
  .floating-session-card span {
    font-size: 15px;
    margin-bottom: 6px;
  }
  .floating-session-card strong {
    font-size: 22px;
    line-height: 1.06;
  }
}

.hero-visual {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual::before {
  content: "";
  position: absolute;
  width: min(520px, 90%);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--orange);
  right: 4%;
  top: 10%;
}
.phone-card, .single-phone, .feature-phone {
  position: relative;
  border: 10px solid var(--purple-dark);
  border-radius: 42px;
  background: var(--purple-dark);
  box-shadow: 0 28px 80px rgba(63,5,55,.28);
  overflow: hidden;
}
.phone-card img, .single-phone img, .feature-phone img { width: 100%; height: 100%; object-fit: cover; }
.phone-main { width: min(355px, 60vw); transform: rotate(-4deg); z-index: 3; }
.phone-side { width: min(255px, 44vw); position: absolute; right: -10px; bottom: 32px; transform: rotate(7deg); z-index: 2; }

.intro-section {
  display: grid;
  grid-template-columns: .9fr .9fr;
  gap: 70px;
  align-items: end;
  border-top: 2px solid rgba(63,5,55,.12);
}
.intro-copy { font-size: clamp(1.1rem, 2vw, 1.55rem); color: var(--muted); font-weight: 700; line-height: 1.4; }

.time-section {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: center;
  gap: 54px;
}
.time-block {
  background: var(--coral);
  color: var(--purple);
  border-radius: var(--radius-xl);
  padding: clamp(30px, 5vw, 64px);
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.time { font-size: clamp(3.4rem, 8vw, 8rem); line-height: .9; font-weight: 950; letter-spacing: -.06em; margin-bottom: 20px; color: var(--cream); }
.time-block h2 { font-size: clamp(2.4rem, 4.4vw, 4.8rem); margin-bottom: 22px; }
.time-block p:not(.time) { font-weight: 750; color: rgba(63,5,55,.78); }
.profile-grid {
  min-height: 610px;
  position: relative;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, #fff9f1 0%, #ffe7d0 100%);
  overflow: hidden;
  padding: 34px;
}
.canvas-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  max-width: 260px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 250, 244, .92);
  box-shadow: 0 20px 55px rgba(63,5,55,.12);
  font-size: 15px;
  line-height: 1.3;
  font-weight: 800;
  color: var(--purple);
  z-index: 3;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.chip-a { top: 34px; left: 34px; }
.chip-b { right: 34px; bottom: 34px; }
.feature-phone { 
  position: absolute; 
  z-index: 2; 
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.feature-filter { width: min(240px, 38%); left: 72px; bottom: 42px; transform: rotate(-5deg); }
.feature-availability { width: min(250px, 38%); right: 70px; top: 58px; transform: rotate(5deg); }

/* Feature Canvas floating parallax hover effects */
.profile-grid:hover .feature-filter {
  transform: rotate(-3deg) translate(-4px, -6px) scale(1.02);
  box-shadow: 0 34px 90px rgba(63, 5, 55, 0.35);
}
.profile-grid:hover .feature-availability {
  transform: rotate(3deg) translate(6px, -4px) scale(1.02);
  box-shadow: 0 34px 90px rgba(63, 5, 55, 0.35);
}
.profile-grid:hover .chip-a {
  transform: translate(-6px, -10px) scale(1.03);
  box-shadow: 0 26px 70px rgba(63, 5, 55, 0.18);
}
.profile-grid:hover .chip-b {
  transform: translate(6px, 10px) scale(1.03);
  box-shadow: 0 26px 70px rgba(63, 5, 55, 0.18);
}

.split-section {
  width: min(calc(var(--max) + 80px), calc(100% - 32px));
  border-radius: var(--radius-xl);
  padding: clamp(40px, 7vw, 84px);
  display: grid;
  grid-template-columns: 1fr .75fr;
  gap: 54px;
  align-items: center;
  margin-top: 28px;
  margin-bottom: 28px;
}
.purple-section { background: var(--purple); color: var(--cream); }
.cream-section { background: var(--cream-2); color: var(--purple); }
.reverse { grid-template-columns: .75fr 1fr; }
.reverse .split-copy { order: 2; }
.split-copy p:not(.section-label) { margin-top: 24px; max-width: 520px; color: rgba(255,243,227,.74); font-size: 18px; }
.cream-section .split-copy p:not(.section-label) { color: var(--muted); }
.single-phone { width: min(330px, 100%); margin: auto; border-width: 9px; }
.profile-stack {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.profile-phone { width: min(320px, 100%); transform: rotate(-4deg); z-index: 2; }
.streak-card {
  position: absolute;
  width: min(420px, 78%);
  left: 0;
  bottom: 36px;
  z-index: 3;
  box-shadow: 0 22px 60px rgba(63,5,55,.18);
  border-radius: 32px;
  overflow: hidden;
}

.reasons {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.reasons-heading { position: sticky; top: 120px; }
.reasons-heading p:not(.section-label) { margin-top: 24px; color: var(--muted); font-size: 18px; font-weight: 650; max-width: 520px; }
.faq-list { display: grid; gap: 12px; }
.faq-item {
  border-radius: 24px;
  background: var(--white);
  border: 1px solid rgba(63,5,55,.08);
  box-shadow: 0 14px 36px rgba(63,5,55,.06);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 14px;
  padding: 22px 24px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  justify-self: end;
  grid-column: 3;
  font-size: 22px;
  line-height: 1;
  font-weight: 800;
  color: var(--coral);
  transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item span { color: var(--label-ink); font-size: 13px; font-weight: 900; }
.faq-item strong { font-size: clamp(1.08rem, 1.8vw, 1.45rem); line-height: 1.15; letter-spacing: -.025em; }
.faq-item p {
  margin: -4px 24px 24px 86px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  max-width: 560px;
}

.final-section {
  width: 100%;
  max-width: none;
  background: var(--coral);
  color: var(--purple);
  text-align: center;
  padding: 96px 0 40px;
  overflow: hidden;
}
.final-copy { width: min(1000px, calc(100% - 32px)); margin: 0 auto; }
.final-copy p { margin: 28px auto 34px; max-width: 620px; color: rgba(63,5,55,.78); font-weight: 780; }
.final-copy .primary { background: var(--purple); color: var(--cream); box-shadow: none; }
.ticker { margin-top: 70px; overflow: hidden; border-block: 2px solid rgba(63,5,55,.12); padding: 18px 0; }
.ticker-track { display: flex; gap: 46px; width: max-content; animation: ticker 34s linear infinite; }
.ticker span { font-size: 18px; font-weight: 950; white-space: nowrap; color: rgba(63,5,55,.7); }
@keyframes ticker { to { transform: translateX(-50%); } }

.footer {
  background: var(--purple);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px max(24px, calc((100vw - var(--max)) / 2));
}
.footer-brand img { width: 34px; }
.footer-brand .brand-word { color: var(--cream); }
.footer-brand-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
.footer-copy {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 251, 209, 0.45);
  margin: 0;
}
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,243,227,.22);
  color: rgba(255,243,227,.78);
  transition: color .2s ease, border-color .2s ease, transform .2s ease, background .2s ease;
}
.footer-socials a:hover {
  color: var(--purple);
  background: var(--coral);
  border-color: var(--coral);
  transform: translateY(-2px);
}
.footer a { font-size: 14px; font-weight: 850; color: rgba(255,243,227,.75); }
.footer-links a:hover { color: var(--coral); }
.footer-socials a:hover { color: var(--purple); }

@media (max-width: 980px) {
  .nav { display: none; }
  .section-pad { padding: 70px 0; }
  .hero { grid-template-columns: 1fr; gap: 20px; min-height: auto; padding-top: 76px; }
  .hero-visual { min-height: 560px; }
  .intro-section, .time-section, .reasons, .split-section, .reverse { grid-template-columns: 1fr; }
  .intro-section { gap: 30px; }
  .split-section { width: min(var(--max), calc(100% - 32px)); }
  .reverse .split-copy { order: initial; }
  .reasons-heading { position: static; }
  .profile-stack { min-height: 720px; }
  .streak-card { left: 50%; transform: translateX(-50%); bottom: 10px; width: min(460px, 92%); }
}

@media (max-width: 640px) {
  .site-header { padding: 10px 10px 0; }
  .header-inner { padding: 8px 8px 8px 12px; }
  .brand img { width: 32px; }
  .nav-cta { font-size: 12px; padding: 10px 13px; }
  .section-pad { width: calc(100% - 24px); padding: 58px 0; }
  h1 { font-size: clamp(3.55rem, 15vw, 5.8rem); }
  h2 { font-size: clamp(2.55rem, 11vw, 4.5rem); }
  .lead { font-size: 17px; }
  .button { width: 100%; }
  .hero-visual { min-height: 470px; }
  .hero-visual::before { width: 320px; top: 42px; right: 0; }
  .phone-main { width: min(270px, 74vw); }
  .phone-side { width: min(190px, 50vw); right: -2px; bottom: 32px; }
  .time-block { min-height: auto; }
  .profile-grid { min-height: 650px; padding: 22px; }
  .canvas-chip { max-width: 170px; padding: 12px 14px; font-size: 13px; }
  .chip-a { top: 18px; left: 18px; }
  .chip-b { right: 18px; bottom: 18px; }
  .feature-filter { width: 46%; left: 20px; bottom: 120px; }
  .feature-availability { width: 46%; right: 20px; top: 74px; }
  .split-section { padding: 34px 22px; border-radius: 32px; gap: 34px; }
  .split-copy p:not(.section-label) { font-size: 18px; }
  .single-phone { width: min(270px, 100%); }
  .profile-stack { min-height: 620px; }
  .profile-phone { width: min(270px, 100%); }
  .streak-card { width: 100%; border-radius: 24px; bottom: 0; }
  .faq-item summary { grid-template-columns: 34px 1fr; padding: 18px 18px; }
  .faq-item p { margin: -2px 18px 20px 52px; font-size: 15px; }
  .footer { flex-direction: column; text-align: center; }
  .footer-brand-wrap { align-items: center; }
  .footer-links { justify-content: center; }
}

/* ---------- Register / waitlist page ---------- */
.register-body {
  background: var(--bg);
  min-height: 100vh;
}
.register-page {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 26px 0 48px;
}
.register-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.register-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(63, 5, 55, 0.05);
  border: 1px solid rgba(63, 5, 55, 0.08);
  color: var(--purple);
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.register-back:hover { 
  background: rgba(63, 5, 55, 0.1); 
  transform: translateY(-1px); 
}
.register-back svg { color: var(--purple); }
.register-back span { font-size: 14px; font-weight: 850; letter-spacing: -0.01em; color: var(--purple); }

.register-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(63, 5, 55, 0.05);
  border: 1px solid rgba(63, 5, 55, 0.08);
  color: var(--purple);
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.register-close:hover {
  background: rgba(63, 5, 55, 0.1);
  transform: translateY(-1px);
}

.register-card-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px 0;
}
.register-card {
  position: relative;
  width: min(560px, 100%);
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid rgba(63, 5, 55, 0.08);
  box-shadow: 0 30px 80px rgba(63, 5, 55, 0.06);
  animation: cardRise .6s cubic-bezier(.16,1,.3,1) both;
}
@keyframes cardRise {
  from { opacity: 0; transform: translateY(22px) scale(.985); }
  to   { opacity: 1; transform: none; }
}

.register-head { margin-bottom: 26px; }
.register-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 9px 14px;
  background: var(--coral);
  color: var(--purple);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .01em;
  box-shadow: 0 10px 22px rgba(255,99,112,.26);
}
.register-head h1 {
  font-size: clamp(2.6rem, 6vw, 3.6rem);
  letter-spacing: -.06em;
  color: var(--purple);
  margin: 18px 0 14px;
}
.register-head p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
  max-width: 440px;
}

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

/* shared field styles */
.field { display: grid; gap: 8px; }
.field label {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .01em;
  color: var(--purple);
}
.field label .optional {
  font-weight: 700;
  color: rgba(37,0,31,.42);
  font-size: 12px;
}
.field input,
.field select {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border-radius: 16px;
  border: 2px solid rgba(63,5,55,.14);
  background: #ffffff;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  transition: border-color .18s ease, box-shadow .18s ease;
}
.field input::placeholder { color: rgba(37,0,31,.34); font-weight: 500; }
.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 4px rgba(63,5,55,.14);
}
.field input.invalid,
.field select.invalid { border-color: #d93a4b; background: #fff0f1; }

/* clearable input */
.input-wrap { position: relative; }
.input-wrap input { padding-right: 46px; }
.input-clear {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  border: none;
  border-radius: 50%;
  background: rgba(63,5,55,.10);
  color: var(--purple);
  cursor: pointer;
  transition: background .18s ease, transform .18s ease;
}
.input-clear[hidden] { display: none; }
.input-clear:hover { background: rgba(63,5,55,.2); }
.input-clear:active { transform: translateY(-50%) scale(.9); }

.select-wrap { position: relative; }
.select-wrap select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  padding-right: 46px;
}
.select-wrap::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2.5px solid var(--purple);
  border-bottom: 2.5px solid var(--purple);
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}
.field select:invalid { color: rgba(37,0,31,.34); font-weight: 500; }

.field-error {
  font-size: 13px;
  font-weight: 700;
  color: #c5283b;
}
.field-error:empty { display: none; }

.consent {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 600;
  color: rgba(37,0,31,.66);
}
.consent input {
  width: 22px;
  height: 22px;
  margin-top: 1px;
  accent-color: var(--coral);
  cursor: pointer;
}
.consent a { color: var(--purple); font-weight: 800; text-decoration: underline; }

.register-submit {
  width: 100%;
  background: var(--purple);
  color: var(--cream);
  box-shadow: 0 16px 36px rgba(63,5,55,.22);
}
.register-submit:hover { background: var(--purple-dark); }
.register-foot {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: rgba(37,0,31,.64);
  margin-top: -2px;
}

.register-success { text-align: center; animation: cardRise .5s cubic-bezier(.16,1,.3,1) both; }
.register-success-mark {
  width: 84px;
  height: 84px;
  margin: 0 auto 22px;
  border-radius: 26px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 40px rgba(255,99,112,.22);
}
.register-success-mark img { width: 52px; height: auto; }
.register-success h2 {
  font-size: clamp(2.2rem, 5vw, 3rem);
  letter-spacing: -.05em;
  color: var(--purple);
  margin-bottom: 14px;
}
.register-success p {
  color: var(--muted);
  font-size: 16px;
  font-weight: 600;
  max-width: 380px;
  margin: 0 auto 26px;
  line-height: 1.5;
}
.register-success-link {
  background: var(--coral);
  color: var(--purple);
  box-shadow: 0 16px 36px rgba(255,99,112,.28);
}

@media (max-width: 640px) {
  .register-page { padding: 18px 0 32px; width: calc(100% - 24px); }
  .register-card { border-radius: var(--radius-lg); }
}

/* ---------- Story: scrollytelling 'what Gymduoo is' ---------- */
.story-section {
  padding-block: clamp(56px, 8vw, 96px);
}
.story-head { max-width: 760px; margin-bottom: 8px; }
.story-head h2 { margin-top: 18px; }
.story-intro {
  margin-top: 18px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  font-weight: 600;
  line-height: 1.5;
  max-width: 560px;
}
.story-stage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 6vw, 90px);
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}
/* sticky phone */
.story-phone-col {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.story-phone {
  position: relative;
  width: min(300px, 78%);
  aspect-ratio: 1179 / 2556;
  border: 10px solid var(--purple-dark);
  border-radius: 44px;
  background: var(--purple-dark);
  box-shadow: 0 34px 90px rgba(63,5,55,.28);
  overflow: hidden;
}
.story-screen {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity .5s ease, transform .6s ease;
}
.story-screen.is-active { opacity: 1; transform: scale(1); }
/* scrolling beats */
.story-beats { display: flex; flex-direction: column; }
.story-beat {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: .25;
  transition: opacity .4s ease, transform .4s ease;
}
.story-beat.is-active { opacity: 1; }
.story-num {
  font-size: 14px;
  font-weight: 950;
  letter-spacing: .04em;
  color: var(--coral);
  margin-bottom: 14px;
}
.story-beat:nth-child(2) .story-num { color: var(--violet, #612d91); }
.story-beat:nth-child(3) .story-num { color: var(--sky, #74cff4); }
.story-beat:nth-child(4) .story-num { color: var(--orange, #f57a2f); }
.story-beat h3 {
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  font-weight: 950;
  line-height: 1.04;
  letter-spacing: -.03em;
  color: var(--purple);
}
.story-beat p {
  margin-top: 16px;
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  line-height: 1.55;
  font-weight: 550;
  color: var(--muted);
  max-width: 42ch;
}
.clarity-isnt {
  margin-top: 8px;
  padding: 22px 26px;
  border-radius: var(--radius-lg);
  background: var(--purple);
  color: rgba(255,243,227,.82);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  font-weight: 650;
  line-height: 1.4;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
.clarity-isnt.section-pad { padding: 22px 26px; }
.clarity-isnt strong { color: var(--coral); font-weight: 950; font-size: 14px; text-transform: uppercase; letter-spacing: 0.06em; }
.clarity-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.clarity-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(255, 251, 209, 0.04);
  border: 1px solid rgba(255, 251, 209, 0.12);
  font-size: 14px;
  font-weight: 800;
  color: rgba(255, 251, 209, 0.85);
  position: relative;
  letter-spacing: 0.01em;
}
.clarity-tag::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 50%;
  height: 2px;
  background: var(--coral);
  transform: rotate(-3deg);
  opacity: 0.85;
}

/* mobile: drop the sticky scrollytelling, stack screen + beat */
@media (max-width: 860px) {
  .story-stage { display: block; }
  .story-phone-col { position: static; height: auto; margin-bottom: 30px; }
  .story-phone { width: min(260px, 70%); }
  /* show all screens stacked instead of cross-fade */
  .story-phone { display: none; }
  .story-beats { gap: 40px; }
  .story-beat {
    min-height: 0;
    opacity: 1;
    background: var(--white);
    border: 1px solid rgba(63,5,55,.08);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    box-shadow: 0 14px 36px rgba(63,5,55,.06);
    position: relative;
  }
  .story-beat::before {
    content: "";
    position: absolute;
    top: 0; left: 28px;
    width: 40px; height: 5px;
    border-radius: 0 0 6px 6px;
    background: var(--coral);
  }
  .story-beat:nth-child(2)::before { background: var(--lav, #edadf9); }
  .story-beat:nth-child(3)::before { background: var(--sky, #74cff4); }
  .story-beat:nth-child(4)::before { background: var(--yellow, #fef549); }
}
@media (prefers-reduced-motion: reduce) {
  .story-beat { opacity: 1; }
  .story-screen { transition: none; }
}



/* ---------- Marquee ---------- */
.marquee {
  background: var(--coral);
  color: var(--purple);
  padding: 16px 0;
  overflow: hidden;
  border-top: 3px solid var(--purple);
  border-bottom: 3px solid var(--purple);
  transform: rotate(-1.2deg) scale(1.04);
  margin-block: 8px;
}
.marquee-track {
  display: flex;
  gap: 36px;
  white-space: nowrap;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
}
.marquee-track span {
  font-weight: 950;
  font-size: clamp(1.2rem, 2.6vw, 2rem);
  text-transform: uppercase;
  letter-spacing: -.02em;
  display: flex;
  align-items: center;
  gap: 36px;
}
.marquee-track span::after {
  content: "●";
  font-size: .55em;
  opacity: .45;
}
@keyframes marquee-scroll { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ---------- Kicker marker underline ---------- */
.kicker-marker { color: var(--purple); }
.kicker-marker span {
  position: relative;
  display: inline-block;
  color: var(--purple);
  white-space: nowrap;
  z-index: 0;
}
.kicker-marker span::after {
  content: "";
  position: absolute;
  left: -4%;
  right: -4%;
  bottom: 0;
  height: 45%;
  background: var(--coral);
  border-radius: 2px;
  transform: rotate(-1.2deg);
  z-index: -1;
  opacity: .9;
}

/* Validation shake micro-interaction */
@keyframes fieldShake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-6px); }
  40%, 80% { transform: translateX(6px); }
}
.field-shake {
  animation: fieldShake 0.4s cubic-bezier(.36,.07,.19,.97) both;
}

/* Privacy Modal Styling */
.privacy-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.privacy-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(36, 3, 32, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: fadeIn 0.3s ease;
}
.privacy-modal-content {
  position: relative;
  z-index: 2;
  width: min(500px, 100%);
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: 0 30px 80px rgba(20, 0, 18, 0.45);
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: modalRise 0.35s cubic-bezier(.16,1,.3,1);
}
.privacy-modal-content h2 {
  color: var(--purple);
  font-size: 28px;
  letter-spacing: -0.04em;
}
.privacy-text-scroll {
  max-height: 280px;
  overflow-y: auto;
  padding-right: 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.privacy-text-scroll p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.5;
  font-weight: 550;
}
.privacy-text-scroll h3 {
  font-size: 16px;
  color: var(--purple);
  margin-top: 8px;
  font-weight: 800;
}
.privacy-close-btn {
  width: 100%;
  margin-top: 8px;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes modalRise {
  from { opacity: 0; transform: translateY(18px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Typographic highlights */
.highlight-train {
  color: var(--coral);
}
