:root {
  --bg: #f4f7f5;
  --bg-deep: #e8efec;
  --surface: rgba(255, 252, 247, 0.86);
  --surface-strong: #fffdf9;
  --surface-dark: #1b494b;
  --surface-dark-2: #24585d;
  --text: #162527;
  --text-soft: #5c6d6d;
  --text-faint: #7b8a88;
  --line: rgba(24, 33, 29, 0.08);
  --line-strong: rgba(24, 33, 29, 0.14);
  --accent: #3a9897;
  --accent-strong: #1f666c;
  --accent-soft: #def3f1;
  --accent-soft-2: #eef9f8;
  --gold: #76b8b2;
  --gold-soft: #e0f1ef;
  --danger-soft: #f4e5e7;
  --danger-text: #7a5a61;
  --shadow-soft: 0 20px 50px rgba(35, 28, 15, 0.08);
  --shadow-strong: 0 35px 80px rgba(35, 28, 15, 0.14);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(118, 184, 178, 0.10) 0%, transparent 26%),
    radial-gradient(circle at 85% 18%, rgba(58, 152, 151, 0.14) 0%, transparent 24%),
    linear-gradient(180deg, #fbfdfc 0%, var(--bg) 42%, var(--bg-deep) 100%);
  background-size: 120% 120%, 120% 120%, 100% 100%;
  overflow-x: hidden;
  position: relative;
}

body::before,
body::after {
  content: "";
  position: fixed;
  pointer-events: none;
  z-index: 0;
}

body::before {
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(118, 184, 178, 0.18) 0%, transparent 20%),
    radial-gradient(circle at 82% 18%, rgba(58, 152, 151, 0.14) 0%, transparent 22%),
    url("logo-bg.png") center 120px / min(78vw, 980px) auto no-repeat;
  opacity: 0.24;
  filter: blur(0.2px);
  animation: backgroundFloat 28s ease-in-out infinite;
}

body::after {
  inset: 0;
  background:
    radial-gradient(circle at 32% 68%, rgba(255, 255, 255, 0.44) 0%, transparent 24%),
    radial-gradient(circle at 74% 64%, rgba(255, 255, 255, 0.26) 0%, transparent 20%);
  opacity: 0.85;
  animation: backgroundGlow 18s ease-in-out infinite;
}

@keyframes floatSoft {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(20px, -20px, 0) scale(1.08);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes backgroundFloat {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.2;
  }
  50% {
    transform: translate3d(0, -10px, 0) scale(1.015);
    opacity: 0.3;
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.2;
  }
}

@keyframes backgroundGlow {
  0% {
    opacity: 0.72;
    transform: translate3d(0, 0, 0);
  }
  50% {
    opacity: 0.92;
    transform: translate3d(0, 8px, 0);
  }
  100% {
    opacity: 0.72;
    transform: translate3d(0, 0, 0);
  }
}

.header,
main,
.footer {
  position: relative;
  z-index: 1;
}

.header {
  padding: 22px 24px 0;
  text-align: center;
}

.logo-link {
  display: inline-block;
  text-decoration: none;
}

.logo-container {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  max-width: 360px;
  transition: transform 0.24s ease;
  isolation: isolate;
}

.logo-link:hover .logo-container {
  transform: translateY(-2px) scale(1.02);
}

.logo {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 18px 30px rgba(16, 35, 38, 0.11));
}

.logo-glow {
  position: absolute;
  inset: -60px;
  background: radial-gradient(circle, rgba(58, 152, 151, 0.22) 0%, rgba(118, 184, 178, 0.10) 34%, transparent 72%);
  filter: blur(34px);
  z-index: 1;
  animation: glowBreath 8s ease-in-out infinite;
}

.logo-container::after {
  content: "";
  position: absolute;
  inset: -8px;
  z-index: 1;
  pointer-events: none;
  border-radius: 22px;
  background: radial-gradient(circle at center, transparent 78%, rgba(244, 247, 245, 0.04) 92%, rgba(244, 247, 245, 0.09) 100%);
}

@keyframes glowBreath {
  0% {
    opacity: 0.55;
    transform: scale(1);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.08);
  }
  100% {
    opacity: 0.55;
    transform: scale(1);
  }
}

main {
  width: 100%;
}

.hero,
.explain-section,
.comparison-section,
.problem-solution-section,
.try-section,
.brand-block,
.final-cta,
.anticipation-benefits,
.waitlist-section,
.value-strip {
  width: min(1180px, calc(100% - 40px));
  margin-left: auto;
  margin-right: auto;
}

.hero {
  padding: 34px 0 10px;
}

.hero-home {
  padding-top: 24px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  gap: 42px;
  align-items: center;
}

.hero-copy,
.hero-stage-shell,
.value-strip-grid,
.conversation-card,
.final-cta-box,
.mini-benefit-card,
.waitlist-info,
.waitlist-form-card {
  backdrop-filter: blur(18px);
}

.section-tag,
.section-badge,
.highlight-banner,
.conversation-pill,
.stage-badge {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-tag,
.section-badge {
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(29, 92, 80, 0.12);
  color: var(--accent);
}

.hero h1,
.section-intro h2,
.conversation-title h3,
.waitlist-info h2,
.chat-header h2 {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  letter-spacing: -0.05em;
}

.hero h1 {
  margin-top: 18px;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 0.97;
  max-width: 10.5ch;
}

.subtitle,
.section-intro p,
.conversation-summary,
.mini-benefit-card p,
.waitlist-info p,
.waitlist-note,
.urgency-note,
.legal-text {
  color: var(--text-soft);
}

.subtitle {
  max-width: 670px;
  margin: 22px 0 0;
  font-size: 20px;
  line-height: 1.7;
}

.hero-benefits,
.hero-actions,
.hero-proof,
.benefit-strip,
.value-strip-grid,
.comparison-grid,
.waitlist-grid {
  display: grid;
}

.hero-benefits {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 620px;
}

.hero-benefits span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(24, 33, 29, 0.06);
  box-shadow: 0 10px 28px rgba(35, 28, 15, 0.05);
  color: #234143;
  font-size: 14px;
  font-weight: 600;
  max-width: 100%;
}

.hero-benefits span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--accent), #5ea6a1);
  box-shadow: 0 0 0 6px rgba(58, 152, 151, 0.12);
}

.hero-actions {
  margin-top: 34px;
  grid-auto-flow: column;
  justify-content: start;
  gap: 14px;
}

.hero-actions.compact {
  justify-content: center;
}

.primary-btn,
.secondary-btn {
  min-height: 56px;
  padding: 0 28px;
  border-radius: 18px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fffdfa;
  background: linear-gradient(135deg, var(--accent-strong) 0%, var(--accent) 100%);
  border: 1px solid rgba(31, 102, 108, 0.1);
  box-shadow: 0 18px 34px rgba(31, 102, 108, 0.18);
}

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 42px rgba(31, 102, 108, 0.24);
}

.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(24, 33, 29, 0.08);
  box-shadow: 0 14px 30px rgba(35, 28, 15, 0.06);
}

.secondary-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.78);
}

.full-btn {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.hero-proof {
  margin-top: 36px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 680px;
}

.hero-proof-wide {
  max-width: 920px;
  margin: 34px auto 0;
}

.centered-actions {
  margin-top: 28px;
}

.proof-card {
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(24, 33, 29, 0.06);
  box-shadow: 0 16px 40px rgba(35, 28, 15, 0.05);
  color: var(--text-soft);
  line-height: 1.65;
}

.proof-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-size: 15px;
}

.hero-stage-shell,
.conversation-card,
.final-cta-box,
.waitlist-info,
.waitlist-form-card {
  position: relative;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 250, 243, 0.82));
  border: 1px solid rgba(24, 33, 29, 0.08);
  box-shadow: var(--shadow-strong);
}

.hero-stage-shell {
  padding: 34px;
  overflow: hidden;
}

.hero-stage-shell::before {
  content: "";
  position: absolute;
  inset: auto -80px -100px auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(58, 152, 151, 0.18) 0%, transparent 70%);
  animation: floatSoft 12s ease-in-out infinite;
}

.stage-badge {
  position: absolute;
  z-index: 2;
  box-shadow: 0 18px 30px rgba(35, 28, 15, 0.1);
}

.badge-live {
  top: 18px;
  right: 18px;
  background: #f0faf8;
  color: var(--accent-strong);
  border: 1px solid rgba(58, 152, 151, 0.16);
}

.badge-profit {
  left: 22px;
  bottom: 22px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--accent);
  border: 1px solid rgba(29, 92, 80, 0.12);
}

.chat-showcase,
.automation-card {
  position: relative;
  z-index: 1;
}

.chat-showcase {
  padding: 24px;
  border-radius: 28px;
  background: linear-gradient(180deg, #1f5358 0%, #173e43 100%);
  color: #f5f4ef;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.chat-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
}

.chat-kicker {
  margin: 0 0 8px;
  color: rgba(245, 244, 239, 0.66);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  font-weight: 700;
}

.chat-header h2 {
  font-size: 28px;
  line-height: 1.05;
  max-width: 12ch;
}

.typing-dot-group {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.typing-dot-group span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  animation: typingDots 1.2s infinite ease-in-out;
}

.typing-dot-group span:nth-child(2) {
  animation-delay: 0.14s;
}

.typing-dot-group span:nth-child(3) {
  animation-delay: 0.28s;
}

@keyframes typingDots {
  0%, 80%, 100% {
    opacity: 0.28;
    transform: translateY(0);
  }
  40% {
    opacity: 1;
    transform: translateY(-3px);
  }
}

.chat-screen,
.chat-flow {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-screen {
  margin-top: 24px;
}

.chat-bubble {
  max-width: 86%;
  width: fit-content;
  padding: 14px 16px;
  border-radius: 20px;
  font-size: 15px;
  line-height: 1.55;
  box-shadow: 0 14px 28px rgba(8, 14, 12, 0.14);
}

.chat-bubble.user {
  align-self: flex-start;
  background: #eef7f5;
  color: #274245;
}

.chat-bubble.business {
  align-self: flex-end;
  background: #2a676c;
  color: #f3f7f4;
}

.chat-bubble.system {
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #fffefe, #f2f7f6);
  color: var(--text);
  border: 1px solid rgba(24, 33, 29, 0.08);
}

.bubble-highlight {
  position: relative;
}

.bubble-highlight::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  opacity: 0.7;
}

.bubble-glow {
  box-shadow: 0 18px 40px rgba(58, 152, 151, 0.14);
}

.bubble-animate {
  opacity: 0;
  transform: translateY(20px) scale(0.96);
  animation: bubbleIn 0.65s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes bubbleIn {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.96);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.automation-card {
  margin-top: 18px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(24, 33, 29, 0.08);
}

.automation-topline {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 7px rgba(58, 152, 151, 0.12);
  animation: pulseDot 1.8s infinite ease;
}

@keyframes pulseDot {
  0% {
    box-shadow: 0 0 0 0 rgba(58, 152, 151, 0.22);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(58, 152, 151, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(58, 152, 151, 0);
  }
}

.automation-steps {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.automation-step {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: center;
  color: var(--text-soft);
  font-size: 15px;
}

.automation-step strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-family: "Space Grotesk", sans-serif;
}

.value-strip {
  margin-top: 18px;
}

.value-strip-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.value-pill,
.mini-benefit-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(24, 33, 29, 0.07);
  box-shadow: var(--shadow-soft);
}

.value-pill {
  text-align: center;
  line-height: 1.65;
  color: var(--text-soft);
}

.value-pill strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 17px;
}

.explain-section,
.comparison-section,
.problem-solution-section,
.try-section,
.brand-block,
.final-cta,
.anticipation-benefits,
.waitlist-section {
  margin-top: 110px;
}

.section-intro {
  max-width: 860px;
  margin: 0 auto;
}

.section-intro.centered {
  text-align: center;
}

.section-intro h2 {
  margin-top: 16px;
  font-size: clamp(2.4rem, 4.6vw, 4.2rem);
  line-height: 1.02;
}

.section-intro p {
  margin: 20px auto 0;
  font-size: 18px;
  line-height: 1.75;
  max-width: 760px;
}

.comparison-grid,
.benefit-strip,
.waitlist-grid {
  gap: 24px;
}

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

.conversation-card {
  padding: 32px;
}

.problem-card {
  background: linear-gradient(180deg, rgba(255, 247, 247, 0.9), rgba(255, 252, 248, 0.76));
}

.solution-card {
  background: linear-gradient(180deg, rgba(245, 253, 250, 0.92), rgba(255, 252, 247, 0.82));
}

.conversation-pill.danger {
  color: var(--danger-text);
  background: var(--danger-soft);
  border: 1px solid rgba(122, 74, 78, 0.12);
}

.conversation-pill.success {
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid rgba(29, 92, 80, 0.12);
}

.conversation-title h3 {
  margin-top: 16px;
  font-size: 30px;
  line-height: 1.08;
}

.chat-flow {
  margin-top: 24px;
}

.conversation-summary {
  margin: 24px 0 0;
  font-size: 16px;
  line-height: 1.7;
}

.mini-benefit-card h3 {
  font-size: 28px;
  line-height: 1.04;
}

.final-cta {
  padding-bottom: 64px;
}

.final-cta-box {
  padding: 44px;
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(29, 92, 80, 0.09) 0%, transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 250, 243, 0.88));
}

.final-cta-box h2 {
  margin: 18px auto 0;
  max-width: 14ch;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.4rem, 4.6vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.final-cta-box p {
  max-width: 760px;
  margin: 20px auto 0;
  font-size: 18px;
  line-height: 1.75;
  color: var(--text-soft);
}

.compact-hero {
  text-align: center;
}

.highlight-banner {
  margin-top: 28px;
  background: #f0faf8;
  color: var(--accent-strong);
  border: 1px solid rgba(58, 152, 151, 0.16);
  box-shadow: 0 16px 26px rgba(58, 152, 151, 0.08);
}

.anticipation-benefits {
  margin-top: 48px;
}

.benefit-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mini-benefit-card {
  text-align: center;
}

.mini-benefit-card p {
  margin: 14px 0 0;
  line-height: 1.68;
}

.waitlist-info,
.waitlist-form-card {
  padding: 34px;
}

.waitlist-info h2 {
  margin-top: 18px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.04;
}

.waitlist-info p {
  margin: 18px 0 0;
  font-size: 18px;
  line-height: 1.75;
}

.waitlist-note,
.urgency-note {
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 20px;
  font-size: 15px;
  line-height: 1.72;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(24, 33, 29, 0.07);
}

.urgency-note {
  background: #f0faf8;
}

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

.form-group label {
  display: block;
  margin-bottom: 10px;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}

.form-group input,
.form-group select {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid rgba(24, 33, 29, 0.08);
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.form-group input::placeholder {
  color: var(--text-faint);
}

.form-group input:focus,
.form-group select:focus {
  border-color: rgba(29, 92, 80, 0.28);
  box-shadow: 0 0 0 4px rgba(29, 92, 80, 0.08);
  transform: translateY(-1px);
}

.form-group select.has-value {
  color: var(--text);
}

#business-fields {
  display: none;
}

.legal-text {
  margin: 0;
  font-size: 12px;
  line-height: 1.7;
}

.smaller-brand-block {
  padding-bottom: 54px;
}

.footer {
  padding: 26px 20px 38px;
  text-align: center;
  color: var(--text-faint);
  font-size: 14px;
}

.footer p {
  margin: 6px 0;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 42px;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.audience-card,
.hook-card {
  padding: 30px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(24, 33, 29, 0.07);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.mini-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.audience-card h3,
.hook-card h3 {
  margin: 18px 0 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.audience-card p,
.hook-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.72;
}

.audience-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 12px;
}

.audience-list li {
  position: relative;
  padding-left: 22px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.65;
}

.audience-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(58, 152, 151, 0.12);
}

.hook-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.hook-card {
  padding: 26px;
}

.try-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.68fr) minmax(0, 1.32fr);
  gap: 24px;
  margin-top: 42px;
  align-items: stretch;
}

.try-card {
  padding: 30px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(246, 251, 250, 0.9));
  border: 1px solid rgba(24, 33, 29, 0.08);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
  min-width: 0;
}

.try-card-header h3 {
  margin: 18px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 32px;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.booking-flow {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.booking-step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(24, 33, 29, 0.06);
}

.booking-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.booking-content strong,
.agenda-top strong {
  display: block;
  color: var(--text);
  font-size: 16px;
}

.booking-content p {
  margin: 8px 0 0;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.65;
}

.booking-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.booking-chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(24, 33, 29, 0.08);
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 600;
}

.booking-chip.selected {
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  border-color: rgba(31, 102, 108, 0.12);
  color: #fffdfa;
  box-shadow: 0 14px 26px rgba(31, 102, 108, 0.18);
}

.confirmation-step {
  background: linear-gradient(180deg, rgba(235, 248, 246, 0.96), rgba(224, 243, 241, 0.88));
  border-color: rgba(58, 152, 151, 0.14);
}

.agenda-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.62fr) minmax(0, 1.38fr);
  gap: 18px;
  margin-top: 28px;
  align-items: stretch;
}

.agenda-panel {
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(24, 33, 29, 0.07);
}

.wide-agenda {
  padding: 20px 22px 22px;
  overflow: hidden;
}

.agenda-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}

.agenda-top span {
  color: var(--text-faint);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.agenda-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.agenda-list.dense {
  gap: 12px;
}

.staff-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(170px, 1fr));
  gap: 18px;
  margin-top: 18px;
  width: 100%;
}

.staff-column {
  min-width: 0;
  padding: 14px 14px 16px;
  border-radius: 22px;
  background: rgba(244, 248, 248, 0.82);
  border: 1px solid rgba(24, 33, 29, 0.06);
}

.staff-head {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.agenda-slot {
  display: flex;
  align-items: flex-start;
  min-height: 52px;
  padding: 12px 14px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.agenda-slot.muted {
  background: rgba(245, 247, 248, 0.9);
  color: var(--text-soft);
}

.agenda-slot.booked {
  background: rgba(233, 244, 245, 0.94);
  color: #2d5558;
}

.agenda-slot.confirmed {
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  color: #fffdfa;
  box-shadow: 0 14px 24px rgba(31, 102, 108, 0.16);
  min-height: 86px;
  padding: 14px 16px;
  align-items: flex-start;
}

.agenda-slot.new-entry {
  position: relative;
  padding-right: 76px;
}

.agenda-slot.new-entry::after {
  content: "Nueva";
  position: absolute;
  right: 12px;
  top: 12px;
  padding: 6px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.profile-hero {
  padding-top: 52px;
  padding-bottom: 8px;
}

.profile-hero .section-intro {
  max-width: 1040px;
}

.profile-hero h1 {
  max-width: 11ch;
  margin: 20px auto 0;
  font-size: clamp(3rem, 7.6vw, 5.8rem);
  line-height: 0.98;
}

.profile-subtitle {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 24px;
  font-size: 18px;
  line-height: 1.75;
}

.profile-selector-section {
  width: min(1120px, calc(100% - 40px));
  margin: 54px auto 0;
}

.profile-selector-shell {
  padding: 40px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(245, 251, 250, 0.86));
  border: 1px solid rgba(24, 33, 29, 0.08);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(18px);
}

.profile-selector-intro {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.profile-selector-intro h2 {
  margin: 18px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.profile-selector-intro p {
  margin: 18px auto 0;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.75;
}

.profile-accordion {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.profile-item {
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(24, 33, 29, 0.07);
  box-shadow: 0 16px 36px rgba(35, 28, 15, 0.06);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.profile-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 42px rgba(35, 28, 15, 0.08);
}

.profile-item.is-open {
  border-color: rgba(58, 152, 151, 0.16);
  box-shadow: 0 24px 48px rgba(58, 152, 151, 0.09);
}

.profile-trigger {
  width: 100%;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
}

.profile-trigger-copy {
  display: grid;
  gap: 8px;
}

.profile-name {
  font-family: "Space Grotesk", sans-serif;
  font-size: 26px;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text);
}

.profile-blurb {
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.65;
}

.profile-icon {
  position: relative;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-soft);
}

.profile-icon::before,
.profile-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: var(--accent-strong);
  border-radius: 999px;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.profile-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.profile-item.is-open .profile-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0.2);
}

.profile-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.32s ease;
}

.profile-item.is-open .profile-panel {
  grid-template-rows: 1fr;
}

.profile-panel > div {
  overflow: hidden;
}

.profile-panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 0 24px 24px;
}

.profile-bubble {
  padding: 18px 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(245, 251, 250, 0.96));
  border: 1px solid rgba(24, 33, 29, 0.06);
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.72;
  box-shadow: 0 12px 28px rgba(35, 28, 15, 0.05);
}

.profile-bubble strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-size: 15px;
}

.profile-bubble.accent {
  background: linear-gradient(180deg, rgba(235, 248, 246, 0.96), rgba(224, 243, 241, 0.92));
  border-color: rgba(58, 152, 151, 0.12);
}

.profile-bottom-block {
  padding-bottom: 64px;
}

.clean-flow {
  align-items: center;
  gap: 14px;
}

.clean-flow .chat-bubble.system {
  width: min(100%, 340px);
  text-align: center;
  border-radius: 22px;
}

.clean-flow .chat-bubble.system:nth-child(1) {
  margin-left: 28px;
}

.clean-flow .chat-bubble.system:nth-child(2) {
  margin-right: 12px;
}

.clean-flow .chat-bubble.system:nth-child(3) {
  margin-left: 20px;
}

.clean-flow .chat-bubble.system:nth-child(5) {
  margin-right: 18px;
}

.clean-flow .chat-bubble.system:nth-child(6) {
  margin-left: 12px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .bubble-animate {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .comparison-grid,
  .audience-grid,
  .waitlist-grid,
  .profile-panel-grid,
  .try-grid,
  .agenda-grid,
  .staff-grid,
  .staff-column .agenda-list.dense {
    grid-template-columns: 1fr;
  }

  .hero-benefits {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    grid-auto-flow: row;
    justify-content: stretch;
  }

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

  .hero-proof,
  .hook-grid,
  .benefit-strip,
  .value-strip-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: none;
  }

  .chat-header h2 {
    max-width: none;
  }
}

@media (max-width: 720px) {
  .header {
    padding-top: 16px;
  }

  .hero,
  .explain-section,
  .comparison-section,
  .problem-solution-section,
  .brand-block,
  .final-cta,
  .anticipation-benefits,
  .waitlist-section,
  .value-strip,
  .profile-selector-section {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    padding-top: 8px;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 14vw, 4rem);
  }

  .subtitle,
  .section-intro p,
  .waitlist-info p,
  .final-cta-box p {
    font-size: 16px;
  }

  .hero-stage-shell,
  .conversation-card,
  .audience-card,
  .hook-card,
  .try-card,
  .mini-benefit-card,
  .waitlist-info,
  .waitlist-form-card,
  .final-cta-box,
  .value-pill,
  .profile-selector-shell,
  .profile-bubble {
    padding: 24px;
  }

  .conversation-title h3,
  .audience-card h3,
  .hook-card h3,
  .try-card-header h3,
  .mini-benefit-card h3,
  .chat-header h2,
  .profile-name {
    font-size: 24px;
  }

  .section-intro h2,
  .waitlist-info h2,
  .final-cta-box h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .badge-live,
  .badge-profit {
    position: static;
    margin-bottom: 14px;
  }

  .hero-stage-shell::before {
    display: none;
  }

  .chat-bubble {
    max-width: 92%;
    font-size: 14px;
  }

  .profile-trigger {
    padding: 20px;
    align-items: flex-start;
  }

  .profile-icon {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .profile-panel-grid {
    padding: 0 20px 20px;
  }
}
