/* Below-fold CSS — loaded async to avoid blocking initial paint */

/* ═══ STATEMENT (The Angle) ═══ */
.statement {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}
.statement-bg {
  position: absolute;
  top: -40%;
  left: 0;
  right: 0;
  bottom: -40%;
  background-image: url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?w=1920&q=80');
  background-size: cover;
  background-position: center;
  will-change: transform;
  z-index: 0;
}
.statement-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(49,46,129,0.82) 0%, rgba(139,92,246,0.72) 100%);
  z-index: 1;
}
.statement h2 { color: #fff; font-size: 52px; max-width: 780px; margin: 0 auto; }

/* ═══ PROBLEM ═══ */
.problem-section { background: var(--cream-mid); }
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.problem-intro h2 { max-width: 400px; }
.problem-cards { display: flex; flex-direction: column; gap: 16px; }
.problem-card {
  display: flex; gap: 16px; align-items: start;
  padding: 20px 24px;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 12px rgba(0,0,0,0.03);
  transition: transform var(--transition), box-shadow var(--transition);
}
.problem-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.problem-card-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
  background: linear-gradient(135deg, #EF4444 0%, #B91C1C 100%);
  color: #fff;
  box-shadow: 0 2px 8px rgba(185,28,28,0.25);
}
.problem-card h3 { font-family: var(--font-body); font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 2px; letter-spacing: 0; }
.problem-card p { font-size: 14px; color: var(--ink-secondary); line-height: 1.55; }

/* ═══ PROBLEM V2 — sticky scroll with images ═══ */
.problem-v2 {
  background: var(--cream);
  padding: 0;
  min-height: auto;
  position: relative;
}
.problem-v2-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
}
.problem-v2-sticky {
  position: sticky;
  top: 140px;
  align-self: start;
  padding: 120px 0;
}
.problem-v2-sticky h2 { max-width: 480px; }
.problem-v2-scroll {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 120px 0;
}
.problem-v2-item {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  position: relative;
  box-shadow: var(--glass-shadow);
}
.problem-v2-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.problem-v2-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 185px 35px 35px;
  background: linear-gradient(to top, rgb(34, 27, 48) 0%, transparent 100%);
}
.problem-v2-caption h3 {
  font-family: var(--font-display);
  font-weight: 400;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.problem-v2-caption p {
  font-size: 14px;
  color: #fff;
  line-height: 1.55;
}
@media (max-width: 960px) {
  .problem-v2-inner { grid-template-columns: 1fr; gap: 40px; }
  .problem-v2-sticky { position: relative; top: auto; padding: 80px 0 0; }
  .problem-v2-scroll { padding: 40px 0 80px; }
}
@media (max-width: 680px) {
  .problem-v2-inner { padding: 0 20px; }
  .problem-v2-sticky { padding: 64px 0 0; }
  .problem-v2-scroll { padding: 32px 0 64px; }
  .problem-v2-caption { padding: 120px 24px 24px; }
}

/* ═══ SOLUTION ═══ */
.solution-section {
  background: var(--cream);
  text-align: center;
  padding: 160px 0;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}
.solution-section::before,
.solution-section::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 120px;
  z-index: 0;
  pointer-events: none;
}
.solution-section::before {
  top: 0;
  background: linear-gradient(to bottom, rgba(139,92,246,0.06) 0%, transparent 100%);
}
.solution-section::after {
  bottom: 0;
  background: linear-gradient(to top, rgba(139,92,246,0.06) 0%, transparent 100%);
}
#solution-canvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}
.solution-canvas-top {
  display: none;
}
.solution-content {
  position: relative;
  z-index: 1;
}
.solution-section .section-label { margin-bottom: 24px; }
.solution-section h2 { max-width: 380px; margin: 0 auto 16px; }
.solution-section .section-sub { max-width: 340px; margin: 0 auto; }
@media (max-width: 680px) {
  .slide.solution-section { min-height: auto; padding: 0; display: flex; flex-direction: column; }
  .solution-canvas-top { display: block; position: relative; width: 100%; height: 300px; margin-bottom: -40px; order: -2; }
  .solution-content { position: relative; z-index: 1; padding-bottom: 0; order: -1; }
  #solution-canvas { position: relative; width: 100%; height: 320px; margin-top: -70px; margin-bottom: 40px; }
  .solution-section .section-sub { max-width: 260px; }
}

/* ═══ BENEFITS V2 — sticky scroll (mirrored: cards left, text right) ═══ */
.benefits-v2 {
  background: var(--cream);
  padding: 0;
  min-height: auto;
  position: relative;
}
.benefits-v2-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
}
.benefits-v2-scroll {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 120px 0;
}
.benefits-v2-sticky {
  position: sticky;
  top: 140px;
  align-self: start;
  padding: 120px 0;
}
.benefits-v2-sticky h2 { max-width: 480px; }
.benefits-v2-item {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  position: relative;
  box-shadow: var(--glass-shadow);
}
.benefits-v2-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.benefits-v2-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 185px 35px 35px;
  background: linear-gradient(to top, rgb(34, 27, 48) 0%, transparent 100%);
}
.benefits-v2-caption h3 {
  font-family: var(--font-display);
  font-weight: 400;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.benefits-v2-caption p {
  font-size: 14px;
  color: #fff;
  line-height: 1.55;
}
@media (max-width: 960px) {
  .benefits-v2-inner { grid-template-columns: 1fr; gap: 40px; }
  .benefits-v2-sticky { position: relative; top: auto; padding: 80px 0 0; }
  .benefits-v2-scroll { padding: 40px 0 80px; }
}
@media (max-width: 680px) {
  .benefits-v2-inner { padding: 0 20px; }
  .benefits-v2-sticky { padding: 64px 0 0; }
  .benefits-v2-scroll { padding: 32px 0 64px; }
  .benefits-v2-caption { padding: 120px 24px 24px; }
}

/* ═══ MID-PAGE SIGNUP ═══ */
.signup-mid {
  background: var(--p-grad);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}
.signup-mid-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
}
.signup-mid-text h2 { color: #fff; margin-bottom: 16px; }
.signup-mid-text p { color: rgba(255,255,255,0.75); font-size: 17px; line-height: 1.65; }
.signup-mid-form {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-xl);
  padding: 32px;
}
.signup-mid-form .form-input { border-color: rgba(255,255,255,0.18); }
.signup-mid-form .form-input::placeholder { color: rgba(255,255,255,0.3); }
@media (max-width: 960px) {
  .signup-mid-inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 680px) {
  .signup-mid { padding: 80px 0; }
  .signup-mid-inner { padding: 0 20px; }
}

/* ═══ HOW IT WORKS ═══ */
.hiw-section { background: var(--cream); }
.hiw-header { text-align: center; margin-bottom: 80px; }
.hiw-header .section-sub { max-width: 480px; margin: 0 auto; }
.hiw-step { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; padding: 80px 0; border-top: 1px solid var(--border); }
.hiw-step:first-child { border-top: none; padding-top: 0; }
.step-number { font-family: var(--font-display); font-size: 72px; color: var(--cream-dark); line-height: 1; margin-bottom: 16px; font-style: italic; }
.hiw-step-text h3 { margin-bottom: 16px; }
.hiw-step-text p { font-size: 17px; color: var(--ink-secondary); line-height: 1.7; }
.hiw-step-text p + p { margin-top: 0.75em; }
.hiw-visual {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow-lg);
}
.hiw-visual svg { width: 100%; height: 100%; }

/* ═══ BENEFITS ═══ */
.benefits-section { background: var(--cream); }
.benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.benefits-intro h2 { max-width: 420px; }
.benefit-cards { display: flex; flex-direction: column; gap: 16px; }
.benefit-card {
  display: flex; gap: 16px; align-items: start;
  padding: 20px 24px;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 12px rgba(0,0,0,0.03);
  transition: transform var(--transition), box-shadow var(--transition);
}
.benefit-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.benefit-card-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
  background: var(--p-grad);
  color: #fff;
  box-shadow: 0 2px 8px rgba(49,46,129,0.25);
}
.benefit-card h3 { font-family: var(--font-body); font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 2px; letter-spacing: 0; }
.benefit-card p { font-size: 14px; color: var(--ink-secondary); line-height: 1.55; }

/* ═══ CTA STRIP ═══ */
.cta-strip { background: var(--p-grad); position: relative; overflow: hidden; padding: 0; }
.cta-strip-inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 28px; padding: 120px 48px; max-width: var(--max-w); margin: 0 auto; position: relative; z-index: 1; }
.cta-strip-headline { font-family: var(--font-display); font-size: 48px; font-weight: 400; color: #fff; line-height: 1.1; }
.cta-strip-btn { display: inline-flex; align-items: center; gap: 10px; padding: 18px 36px; background: rgba(255,255,255,0.12); color: #fff; border: 1.5px solid rgba(255,255,255,0.3); border-radius: 100px; font-family: var(--font-body); font-size: 16px; font-weight: 600; cursor: pointer; text-decoration: none; transition: all var(--transition); box-shadow: 0 4px 18px rgba(0,0,0,0.1); }
.cta-strip-btn:hover { background: rgba(255,255,255,0.18); box-shadow: 0 6px 24px rgba(0,0,0,0.15), 0 0 0 3px rgba(255,255,255,0.08); transform: translateY(-1px); }

/* ═══ BIGGER PICTURE ═══ */
.bp-section { background: var(--cream-mid); position: relative; overflow: hidden; }
.bp-section::before,
.bp-section::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 120px;
  z-index: 0;
  pointer-events: none;
}
.bp-section::before {
  top: 0;
  background: linear-gradient(to bottom, rgba(139,92,246,0.06) 0%, transparent 100%);
}
.bp-section::after {
  bottom: 0;
  background: linear-gradient(to top, rgba(139,92,246,0.06) 0%, transparent 100%);
}
.bp-header { text-align: center; margin-bottom: 80px; }
.bp-header .section-sub { max-width: 560px; margin: 0 auto; }
.bp-row { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; padding: 80px 0; border-top: 1px solid var(--border); }
.bp-row:first-child { border-top: none; padding-top: 0; }
.bp-row.flip .bp-visual { order: -1; }
.bp-text h3 { margin-bottom: 16px; }
.bp-text p { font-size: 17px; color: var(--ink-secondary); line-height: 1.7; }
.bp-text p + p { margin-top: 0.75em; }
.bp-visual {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow-lg);
}
.bp-visual svg { width: 100%; height: 100%; }

/* ═══ WAITLIST ═══ */
.waitlist-section {
  background: var(--p-grad);
  position: relative;
  overflow: hidden;
}
/* ── Footer orbit (dark background variant) ── */
.footer-orbit { position: absolute; top: 50%; left: 50%; pointer-events: none; z-index: 0; }
.footer-orbit .hero-orbit-ring {
  border-color: rgba(167, 139, 250, 0.1);
}
.footer-orbit .hero-orbit-ring--3 {
  border-color: rgba(167, 139, 250, 0.06);
}
.footer-orbit .hero-orbit-dot {
  width: 30px; height: 30px;
  border-color: rgba(167, 139, 250, 0.25);
  opacity: 0.3;
  filter: grayscale(100%);
}
.footer-orbit .hero-orbit-dot::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.35);
  mix-blend-mode: multiply;
}
.footer-orbit .hero-orbit-ring--3 .hero-orbit-dot {
  width: 24px; height: 24px;
  opacity: 0.35;
}
.footer-orbit .hero-orbit-ring--1 {
  width: 900px; height: 900px;
  margin-top: -450px; margin-left: -450px;
}
.footer-orbit .hero-orbit-ring--2 {
  width: 1150px; height: 1150px;
  margin-top: -575px; margin-left: -575px;
}
.footer-orbit .hero-orbit-ring--3 {
  width: 1400px; height: 1400px;
  margin-top: -700px; margin-left: -700px;
}
.waitlist-section .section-label { color: rgba(167,139,250,0.8); background: rgba(139,92,246,0.12); border: 1px solid rgba(139,92,246,0.25); }
.waitlist-section h2 { color: #fff; }
.waitlist-section .section-sub { color: rgba(255,255,255,0.72); }
.waitlist-centered { max-width: 480px; margin: 0 auto; }
.waitlist-form-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 36px;
  margin-top: 36px;
}
.form-row { margin-bottom: 16px; }
.form-label { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.75); margin-bottom: 8px; display: block; }
.form-input { width: 100%; padding: 15px 18px; border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); background: rgba(255,255,255,0.05); color: #fff; font-family: var(--font-body); font-size: 15px; transition: all var(--transition); }
.form-input::placeholder { color: rgba(255,255,255,0.2); }
.form-input:focus { outline: none; border-color: var(--p-top); background: rgba(255,255,255,0.08); box-shadow: 0 0 0 3px rgba(139,92,246,0.15); }
.form-role-row { display: flex; gap: 10px; margin-bottom: 24px; }
.form-role-btn { flex: 1; padding: 13px; border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius); background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.75); font-family: var(--font-body); font-size: 14px; font-weight: 600; cursor: pointer; transition: all var(--transition); }
.form-role-btn:hover { border-color: rgba(255,255,255,0.2); color: #fff; }
.form-role-btn.selected { background: var(--p-grad); border-color: transparent; color: #fff; }
.form-submit { width: 100%; padding: 16px; border: 1.5px solid rgba(139,92,246,0.4); border-radius: 100px; background: rgba(139,92,246,0.12); color: #fff; font-family: var(--font-body); font-size: 16px; font-weight: 600; cursor: pointer; transition: all var(--transition); box-shadow: 0 4px 18px rgba(139,92,246,0.2); }
.form-submit:hover { background: rgba(139,92,246,0.2); box-shadow: 0 6px 24px rgba(139,92,246,0.3), 0 0 0 3px rgba(139,92,246,0.1); transform: translateY(-1px); }
.form-privacy { display: flex; align-items: center; justify-content: flex-start; gap: 6px; margin-top: 8px; font-family: var(--font-body); font-size: 12px; color: rgba(255,255,255,0.5); letter-spacing: 0.01em; }
.form-privacy svg { width: 12px; height: 12px; opacity: 0.7; flex-shrink: 0; }
.form-privacy-top { display: flex; justify-content: center; margin-bottom: 20px; }
.form-privacy-top span { display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; background: #fff; color: #7C3AED; border-radius: 100px; font-family: var(--font-body); font-size: 11px; font-weight: 600; letter-spacing: 0.03em; }
.form-privacy-top svg { width: 11px; height: 11px; stroke: #7C3AED; }
.form-success { display: none; }
.form-success.visible { display: block; }
.form-success h3 { font-family: var(--font-display); font-size: 28px; color: #fff; margin-bottom: 10px; }
.form-success p { color: rgba(255,255,255,0.5); margin-bottom: 24px; }
.form-success a.btn-survey { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; border: 1px solid rgba(255,255,255,0.2); border-radius: 100px; color: #fff; font-size: 14px; font-weight: 500; text-decoration: none; transition: all var(--transition); }
.form-success a.btn-survey:hover { background: rgba(255,255,255,0.06); }
.share-row { display: flex; align-items: center; gap: 8px; justify-content: center; margin-top: 20px; }
.share-label { font-size: 13px; color: rgba(255,255,255,0.5); font-weight: 500; }
.share-btn { display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 10px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.7); text-decoration: none; transition: all 180ms ease; cursor: pointer; }
.share-btn:hover { background: rgba(255,255,255,0.15); color: #fff; }
.share-btn svg { width: 15px; height: 15px; fill: currentColor; }

/* ═══ FOOTER ═══ */
.footer { padding: 48px 0; text-align: center; font-size: 13px; color: rgba(255,255,255,0.65); background: var(--p-bot); border-top: 1px solid rgba(255,255,255,0.08); }
.footer a { color: rgba(255,255,255,0.65); text-decoration: none; transition: color var(--transition); }
.footer a:hover { color: rgba(255,255,255,0.85); }

/* ═══ ENTRANCE ANIMATIONS ═══ */
.reveal { opacity: 0; transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.slide-up { transform: translateY(40px); }
.reveal.slide-left { transform: translateX(-50px); }
.reveal.slide-right { transform: translateX(50px); }
.reveal.scale-in { transform: scale(0.92); }
.reveal.visible { opacity: 1; transform: none; }


/* ═══ RESPONSIVE ═══ */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .hero-content { grid-template-columns: 1fr; gap: 20px; }
  .hero-floats {
    /* Keep desktop pixel positions, scale the whole composition to fit */
    width: 470px;
    height: 640px;
    transform: scale(calc((100vw - 40px) / 470px));
    transform-origin: top left;
    margin: 0;
    margin-right: calc((100vw - 40px) - 470px);
    margin-bottom: calc(640px * ((100vw - 40px) / 470px) - 640px);
  }
  .hero-orbit { display: none; }
  .hero-cta-desktop { display: none; }
  .hero-cta-mobile { display: inline-flex; margin-top: -60px; margin-bottom: 40px; }
  .problem-grid, .benefits-grid { grid-template-columns: 1fr; gap: 40px; }
  .hiw-step { grid-template-columns: 1fr; gap: 32px; }
  .bp-row { grid-template-columns: 1fr; gap: 32px; }
  .bp-row.flip .bp-visual { order: 1; }
  br { display: none; }
  h1 br, h2 br, .grad-text { display: inline; }
}
@media (max-width: 680px) {
  html, body { overflow-x: hidden; }
  .site-nav { top: 10px; width: calc(100% - 20px); }
  .site-nav-inner { padding: 0 6px 0 16px; height: 48px; }
  .nav-logo img { height: 36px !important; }
  .nav-cta { padding: 8px 18px; font-size: 13px; }
  .nav-cta-full { display: none; }
  .nav-cta-short { display: inline; }
  .hero h1 { font-size: 13vw; }
  h1 { font-size: 44px; }
  h2 { font-size: 36px; }
  h3 { font-size: 30px; }
  .hero p { font-size: 16px; }
  .slide { padding: 80px 0; min-height: auto; }
  .slide-short { padding: 64px 0; }
  .statement { min-height: 70vh; padding: 80px 0; display: flex; align-items: center; justify-content: center; }
  .statement h2 { font-size: 32px; }
  .cta-strip-headline { font-size: 32px; }
  .container { padding: 0 20px; }
  .cta-strip-inner { padding: 80px 20px; }
  .hiw-visual, .bp-visual { max-width: 100%; }
  svg { max-width: 100%; height: auto; }
  .hero { padding-top: 120px; }
  .hero-text { margin-top: 0; }
  .hero-cta-mobile { width: 100%; justify-content: center; }
  .step-number { font-size: 48px; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 13vw; }
  h1 { font-size: 36px; }
  .form-role-row { flex-direction: column; }
  .waitlist-form-card { padding: 24px; }
}
