@import "https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500&display=swap";
/* [project]/app/globals.css [app-client] (css) */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --brand: #7c3aed;
  --brand-dark: #5b21b6;
  --brand-light: #c4b5fd;
  --brand-glow: #7c3aed26;
  --brand-secondary: #9f67ff;
  --brand-light-text: #a78bfa;
  --accent: #7c3aed;
  --accent-dark: #6b21a8;
  --accent-light: #a78bfa;
  --lilac: #a78bfa;
  --text-muted: #94a3b8;
  --dark: #0a0a0f;
  --dark2: #0d0d1a;
  --gray-900: #fff;
  --gray-700: #e2e8f0;
  --gray-600: #cbd5e1;
  --gray-500: #94a3b8;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50: #f0f0f0;
  --white: #fff;
  --red-50: #fef2f2;
  --red-600: #dc2626;
  --red-900: #7f1d1d;
  --green-50: #ecfdf5;
  --green-500: #10b981;
  --green-600: #059669;
  --green-900: #064e3b;
  --text-h1: clamp(2.2rem, 5vw, 3.5rem);
  --text-h2: clamp(1.8rem, 3.5vw, 2.5rem);
  --text-h3: 1.2rem;
  --text-card: 1.1rem;
  --text-base: 1rem;
  --text-body: .9375rem;
  --text-list: .875rem;
  --text-meta: .875rem;
  --text-label: .875rem;
  --text-small: .8125rem;
  --text-micro: .75rem;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 100px;
  --shadow-card: 0 4px 20px #0000000f;
  --shadow-hover: 0 12px 40px var(--brand-glow);
  --shadow-soft: 0 8px 30px #00000014;
  --shadow-deep: 0 20px 60px #0006;
  --easing: cubic-bezier(.16, 1, .3, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--gray-700);
  background: var(--dark);
  font-family: Inter, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, .section-title, .hero h1 {
  font-family: DM Sans, sans-serif;
}

section {
  padding: 6rem 2rem;
}

.section-inner {
  max-width: 900px;
  margin: 0 auto;
}

.section-tag {
  font-size: var(--text-label);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--accent);
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
  padding: .4rem 1rem;
  font-weight: 700;
  display: inline-block;
}

.section-title {
  font-size: var(--text-h2);
  color: var(--gray-900);
  letter-spacing: -.5px;
  margin-bottom: 1.2rem;
  font-weight: 800;
  line-height: 1.2;
}

.section-subtitle {
  font-size: var(--text-card);
  color: var(--gray-600);
  max-width: 750px;
  margin-bottom: 3rem;
  line-height: 1.7;
}

.navbar {
  z-index: 100;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background: #000000e6;
  border-bottom: 1px solid #7c3aed33;
  padding: 0 2rem;
  transition: background .4s, box-shadow .4s, border-color .4s;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.navbar-inner {
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  height: 64px;
  margin: 0 auto;
  display: flex;
}

.logo {
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  display: flex;
}

.logo-text {
  font-family: DM Sans, sans-serif;
  font-size: var(--text-card);
  color: var(--white);
  letter-spacing: -.5px;
  font-weight: 800;
}

.logo-badge {
  color: var(--accent-light);
  border-radius: var(--radius-full);
  letter-spacing: .5px;
  text-transform: uppercase;
  background: #0a142880;
  border: 1px solid #7c3aed4d;
  padding: .2rem .6rem;
}

.nav-cta {
  background: var(--accent);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: var(--text-list);
  transition: all .3s var(--easing);
  padding: .6rem 1.5rem;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.nav-cta:after {
  content: "";
  background: linear-gradient(90deg, #0000, #fff3, #0000);
  width: 100%;
  height: 100%;
  transition: left .5s;
  position: absolute;
  top: 0;
  left: -100%;
}

.nav-cta:hover:after {
  left: 100%;
}

.nav-cta:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px #5070b066;
}

.navbar.scrolled {
  background: #000000fa;
  border-bottom-color: #7c3aed66;
  box-shadow: 0 4px 30px #00000080;
}

.hero {
  background: var(--dark);
  padding: 180px 2rem 5rem;
  position: relative;
  overflow: hidden;
}

.hero:before {
  content: "";
  pointer-events: none;
  background: radial-gradient(at 60% 40%, #7c3aed14 0%, #0000 60%);
  width: 200%;
  height: 200%;
  position: absolute;
  top: -50%;
  left: -50%;
}

.hero:after {
  content: "";
  opacity: .03;
  z-index: 1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px 128px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.hero-inner {
  text-align: center;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.hero-badge {
  border-radius: var(--radius-full);
  color: var(--accent-light);
  background: #5070b01a;
  border: 1px solid #5070b040;
  align-items: center;
  gap: .5rem;
  margin-bottom: 2rem;
  padding: .6rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  display: inline-flex;
}

.hero-badge .dot {
  background: var(--green-500);
  border-radius: 50%;
  width: 6px;
  height: 6px;
  animation: 2s infinite pulse;
}

.hero h1 {
  font-size: var(--text-h1);
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
  font-weight: 800;
  line-height: 1.15;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, #fff 0%, #c4b5fd 40%, #fff 60%, #7c3aed 80%, #fff 100%) 0 0 / 300% 100%;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: 6s ease-in-out infinite shimmerGradient;
}

.hero-sub {
  color: var(--white);
  max-width: 800px;
  margin: 0 auto 2.5rem;
  font-size: 1.25rem;
  line-height: 1.6;
}

.hero-sub p {
  margin: 0;
}

.hero-checks {
  text-align: left;
  flex-direction: column;
  gap: .35rem;
  margin: .6rem 0;
  padding: 0;
  list-style: none;
  display: inline-flex;
}

.hero-checks li:before {
  content: "✓";
  color: var(--accent);
  margin-right: .6rem;
  font-weight: 700;
}

.hero-cta-group {
  flex-direction: column;
  align-items: center;
  gap: .8rem;
  margin-bottom: 3rem;
  display: flex;
}

.hero-particles {
  pointer-events: none;
  z-index: 1;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}

.particle {
  opacity: 0;
  border-radius: 50%;
  animation: linear infinite floatParticle;
  position: absolute;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all .4s var(--easing);
  border: none;
  align-items: center;
  gap: .5rem;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  animation: 3s ease-in-out infinite ctaPulse;
  display: inline-flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 30px #5070b04d;
}

.btn-primary:after {
  content: "";
  background: linear-gradient(90deg, #0000, #fff3, #0000);
  width: 100%;
  height: 100%;
  transition: left .6s;
  position: absolute;
  top: 0;
  left: -100%;
}

.btn-primary:hover:after {
  left: 100%;
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-3px)scale(1.02);
  box-shadow: 0 0 50px #5070b080, 0 10px 30px #5070b04d;
}

.btn-white {
  background: var(--white);
  color: var(--accent);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all .4s var(--easing);
  border: none;
  align-items: center;
  gap: .5rem;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  position: relative;
  overflow: hidden;
}

.btn-white:after {
  content: "";
  background: linear-gradient(90deg, #0000, #fff6, #0000);
  width: 100%;
  height: 100%;
  transition: left .6s;
  position: absolute;
  top: 0;
  left: -100%;
}

.btn-white:hover:after {
  left: 100%;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px #0003;
}

.btn-sub {
  font-size: var(--text-list);
  color: var(--gray-400);
}

.timeline {
  position: relative;
}

.timeline:before {
  content: "";
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, var(--accent), var(--brand));
  transform-origin: top;
  width: 3px;
  transition: transform 1.8s var(--easing);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 23px;
  transform: scaleY(0);
}

.timeline.timeline-active:before {
  transform: scaleY(1);
}

.timeline-item {
  gap: 2rem;
  margin-bottom: 1.5rem;
  display: flex;
  position: relative;
}

.timeline-dot {
  background: var(--brand);
  width: 48px;
  height: 48px;
  font-size: var(--text-meta);
  color: var(--white);
  z-index: 2;
  box-shadow: 0 0 0 6px var(--brand-light);
  transition: background .5s var(--easing), box-shadow .5s var(--easing), transform .5s var(--easing);
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  font-weight: 800;
  display: flex;
  position: relative;
}

.timeline-item.active .timeline-dot {
  background: var(--accent);
  transform: scale(1.12);
  box-shadow: 0 0 0 8px #fe500026;
}

.timeline-content {
  border-radius: var(--radius-md);
  background: #ffffff08;
  border: 1px solid #7c3aed33;
  flex: 1;
  padding: 1.2rem 1.5rem;
  transition: border-color .3s;
}

.timeline-item:hover .timeline-content {
  border-color: var(--accent);
  box-shadow: 0 4px 20px #5070b014;
}

.timeline-content .week {
  font-size: var(--text-label);
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: .3rem;
  font-weight: 700;
}

.timeline-content h4 {
  font-size: var(--text-base);
  color: var(--gray-900);
  margin-bottom: .3rem;
  font-weight: 700;
}

.timeline-content p {
  font-size: var(--text-body);
  color: var(--gray-600);
  line-height: 1.6;
}

.module-badge {
  font-size: var(--text-micro);
  color: var(--accent);
  border-radius: var(--radius-full);
  letter-spacing: .5px;
  text-transform: uppercase;
  background: #5070b01a;
  margin-bottom: .4rem;
  padding: .2rem .6rem;
  font-weight: 700;
  display: inline-block;
}

.mid-cta {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 50%, #204080 100%);
  text-align: center;
  background-size: 200% 200%;
  padding: 4rem 2rem;
  animation: 8s ease-in-out infinite gradientShift;
}

.mid-cta h2 {
  color: var(--white);
  margin-bottom: .8rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
}

.mid-cta p {
  color: #d0e0f0;
  font-size: var(--text-base);
  margin-bottom: 2rem;
}

.faq-section {
  background: var(--dark);
}

.faq-list {
  max-width: 750px;
  margin: 0 auto;
}

.faq-item {
  border-radius: var(--radius-md);
  background: #ffffff05;
  border: 1px solid #7c3aed26;
  border-left: 3px solid #0000;
  margin-bottom: .8rem;
  transition: all .3s;
  overflow: hidden;
}

.faq-item:hover {
  border-color: var(--accent);
  border-left-color: var(--accent);
}

.faq-item.open {
  border-left-color: var(--accent);
}

.faq-question {
  cursor: pointer;
  font-size: var(--text-base);
  color: var(--gray-900);
  -webkit-user-select: none;
  user-select: none;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.5rem;
  font-weight: 600;
  display: flex;
}

.faq-question .arrow {
  font-size: var(--text-h3);
  color: var(--accent);
  transition: transform .3s;
}

.faq-answer {
  max-height: 0;
  font-size: var(--text-body);
  color: var(--gray-600);
  transition: max-height .5s var(--easing), padding .5s;
  padding: 0 1.5rem;
  line-height: 1.7;
  overflow: hidden;
  display: block !important;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 1.5rem 1.2rem;
}

.faq-item.open .arrow {
  transform: rotate(180deg);
}

.final-cta {
  background: linear-gradient(170deg, var(--dark) 0%, var(--dark2) 50%, #204080 100%);
  text-align: center;
  background-size: 200% 200%;
  padding: 6rem 2rem;
  animation: 12s ease-in-out infinite gradientShift;
  position: relative;
  overflow: hidden;
}

.final-cta:before {
  content: "";
  pointer-events: none;
  background: radial-gradient(#5070b00f 0%, #0000 60%);
  width: 200%;
  height: 200%;
  position: absolute;
  top: -50%;
  left: -50%;
}

.final-cta-inner {
  z-index: 2;
  max-width: 650px;
  margin: 0 auto;
  position: relative;
}

.final-cta h2 {
  color: var(--white);
  letter-spacing: -.5px;
  margin-bottom: .8rem;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
}

.final-cta .sub {
  font-size: var(--text-card);
  color: var(--brand-light-text);
  margin-bottom: 2.5rem;
}

.final-cta .btn-primary {
  font-size: var(--text-card);
  padding: 1.2rem 3rem;
}

.final-cta .btn-sub {
  font-size: var(--text-list);
  color: var(--gray-400);
  margin-top: 1rem;
  display: block;
}

.footer {
  background: var(--dark);
  text-align: center;
  border-top: 1px solid #5070b01a;
  padding: 2.5rem 2rem;
}

.footer p {
  font-size: var(--text-label);
  color: var(--gray-400);
}

.footer .brand-link {
  color: var(--accent);
  text-decoration: none;
}

.scroll-progress {
  z-index: 200;
  background: linear-gradient(90deg, var(--accent), var(--accent-light), var(--accent));
  width: 0%;
  height: 3px;
  transition: width .1s linear;
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0 0 10px #5070b080;
}

.reveal {
  opacity: 0;
  transition: opacity .9s var(--easing), transform .9s var(--easing);
  will-change: transform, opacity;
  transform: translateY(40px);
}

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

.reveal-delay-1 {
  transition-delay: .1s;
}

.reveal-delay-2 {
  transition-delay: .2s;
}

.reveal-delay-3 {
  transition-delay: .3s;
}

.reveal-delay-4 {
  transition-delay: .4s;
}

.reveal-delay-5 {
  transition-delay: .5s;
}

.reveal-left {
  opacity: 0;
  transition: opacity .9s var(--easing), transform .9s var(--easing);
  transform: translateX(-40px);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.hero-badge, .hero h1, .hero-sub, .hero-cta-group {
  opacity: 0;
  animation: heroEntrance 1s var(--easing) forwards;
  transform: translateY(30px);
}

.hero-badge {
  animation-delay: .2s;
}

.hero h1 {
  animation-delay: .4s;
}

.hero-sub {
  animation-delay: .6s;
}

.hero-cta-group {
  animation-delay: .8s;
}

.vsl-container {
  z-index: 2;
  opacity: 0;
  max-width: 900px;
  animation: heroEntrance 1s var(--easing) forwards;
  border-radius: 12px;
  margin: 2rem auto 0;
  animation-delay: 1s;
  position: relative;
  overflow: hidden;
  transform: translateY(30px);
  box-shadow: 0 8px 40px #0006;
}

@keyframes heroEntrance {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: .4;
  }
}

@keyframes floatParticle {
  0% {
    opacity: 0;
    transform: translateY(100vh)rotate(0);
  }

  10% {
    opacity: .15;
  }

  90% {
    opacity: .15;
  }

  100% {
    opacity: 0;
    transform: translateY(-100px)rotate(360deg);
  }
}

@keyframes ctaPulse {
  0%, 100% {
    box-shadow: 0 0 30px #5070b04d;
  }

  50% {
    box-shadow: 0 0 45px #5070b080;
  }
}

@keyframes shimmerGradient {
  0% {
    background-position: 0%;
  }

  50% {
    background-position: 100%;
  }

  100% {
    background-position: 0%;
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0%;
  }

  50% {
    background-position: 100%;
  }

  100% {
    background-position: 0%;
  }
}

.narrative-content p {
  font-size: var(--text-card);
  color: var(--gray-700);
  max-width: 750px;
  margin-bottom: 1.5rem;
  line-height: 1.85;
}

.narrative-content p:last-child {
  margin-bottom: 0;
}

.narrative-content strong {
  color: var(--gray-900);
  font-weight: 700;
}

.narrative-content em {
  color: var(--accent);
  font-style: normal;
  font-weight: 600;
}

.solution-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 1.5rem;
  display: grid;
}

.solution-card {
  border-radius: var(--radius-lg);
  transition: all .45s var(--easing);
  background: #ffffff08;
  border: 1px solid #7c3aed33;
  flex-direction: column;
  padding: 2rem;
  display: flex;
}

.solution-card:hover {
  border-color: var(--accent);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px #5070b01a;
}

.solution-emojis {
  gap: .5rem;
  margin-bottom: 1rem;
  font-size: 1.8rem;
  display: flex;
}

.solution-card h3 {
  font-size: var(--text-base);
  color: var(--gray-900);
  margin: 0 0 .75rem;
  font-weight: 700;
}

.solution-card p {
  color: var(--gray-600);
  margin-bottom: 1.25rem;
  font-size: .9375rem;
  line-height: 1.65;
}

.solution-list {
  color: var(--gray-600);
  margin: 0 0 1.25rem;
  padding: 0;
  font-size: .9375rem;
  line-height: 1.65;
  list-style: none;
}

.solution-list li:before {
  content: "•";
  color: var(--accent);
  margin-right: .5rem;
  font-weight: 700;
}

.solution-list li {
  margin-bottom: .3rem;
}

.solution-pill {
  border-radius: var(--radius-full);
  letter-spacing: .5px;
  white-space: nowrap;
  align-self: center;
  align-items: center;
  gap: .4rem;
  margin-top: auto;
  padding: .4rem 1rem;
  font-size: .875rem;
  font-weight: 700;
  display: inline-flex;
}

.solution-pill--ai {
  color: #059669;
  background: #10b9811a;
  border: 1px solid #10b9814d;
}

.solution-pill--you {
  color: var(--gray-600);
  background: #ffffff0d;
  border: 1px solid #7c3aed33;
}

.story-author {
  border-radius: var(--radius-md);
  background: #ffffff08;
  border: 1px solid #7c3aed33;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  display: flex;
}

.story-avatar {
  object-fit: cover;
  background: var(--brand);
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 72px;
  height: 72px;
  font-size: 1.8rem;
  display: flex;
}

.story-author-info h3 {
  font-size: var(--text-card);
  color: var(--gray-900);
  margin-bottom: .2rem;
  font-weight: 700;
}

.story-author-info p {
  font-size: var(--text-body);
  color: var(--gray-600);
  line-height: 1.5;
}

.story-block {
  margin-bottom: 2rem;
}

.story-block h4 {
  font-size: var(--text-base);
  color: var(--gray-900);
  margin-bottom: .8rem;
  font-weight: 700;
}

.story-block p {
  font-size: var(--text-base);
  color: var(--gray-700);
  line-height: 1.7;
}

.story-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.story-list li {
  color: var(--gray-700);
  padding: .4rem 0 .4rem 1.5rem;
  font-size: .9375rem;
  line-height: 1.7;
  position: relative;
}

.story-list li:before {
  content: "";
  background: var(--accent);
  border-radius: 50%;
  width: 6px;
  height: 6px;
  position: absolute;
  top: .85rem;
  left: 0;
}

.story-footnote {
  font-size: var(--text-body);
  color: var(--gray-600);
  margin-top: 1rem;
  font-style: italic;
}

.metrics-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin: 2.5rem 0;
  display: grid;
}

.metric-card {
  border-radius: var(--radius-md);
  text-align: center;
  background: #ffffff08;
  border: 1px solid #7c3aed26;
  padding: 1.5rem 1rem;
  transition: all .3s;
}

.metric-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}

.metric-value {
  color: var(--accent);
  margin-bottom: .3rem;
  font-family: DM Sans, sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
}

.metric-label {
  font-size: var(--text-meta);
  color: var(--gray-600);
  line-height: 1.4;
}

.quote-block {
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: linear-gradient(135deg, #5070b00a, #5070b005);
  margin-top: 2.5rem;
  padding: 1.8rem 2rem;
}

.quote-block p {
  font-size: var(--text-card);
  color: var(--gray-900);
  font-style: italic;
  font-weight: 500;
  line-height: 1.7;
}

.transform-cards {
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 2rem;
  display: grid;
}

.transform-card {
  border-radius: var(--radius-md);
  padding: 2rem 1.8rem;
}

.transform-card--before {
  background: #ef44440d;
  border: 1px solid #ef444433;
}

.transform-card--after {
  background: linear-gradient(135deg, #10b9810f, #10b98105);
  border: 1px solid #10b98140;
}

.transform-card-header {
  font-size: var(--text-base);
  border-bottom: 2px solid var(--gray-100);
  margin-bottom: 1.2rem;
  padding-bottom: .8rem;
  font-weight: 800;
}

.transform-card--before .transform-card-header {
  color: #ef4444;
  border-bottom-color: #ef444433;
}

.transform-card--after .transform-card-header {
  color: #10b981;
  border-bottom-color: #10b98140;
}

.transform-card-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.transform-card-list li {
  padding: .5rem 0 .5rem 1.5rem;
  font-size: .9375rem;
  line-height: 1.6;
  position: relative;
}

.transform-card--before .transform-card-list li {
  color: var(--gray-500);
}

.transform-card--before .transform-card-list li:before {
  content: "→";
  color: var(--gray-400);
  position: absolute;
  left: 0;
}

.transform-card--after .transform-card-list li {
  color: var(--gray-700);
}

.transform-card--after .transform-card-list li:before {
  content: "→";
  color: #10b981;
  font-weight: 700;
  position: absolute;
  left: 0;
}

.material-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  display: grid;
}

.material-card {
  border-radius: var(--radius-lg);
  transition: all .45s var(--easing);
  background: #ffffff08;
  border: 1px solid #7c3aed33;
  padding: 1.8rem;
}

.material-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px #5070b014;
}

.material-emoji {
  margin-bottom: .8rem;
  font-size: 2rem;
}

.material-card h3 {
  font-size: var(--text-base);
  color: var(--gray-900);
  margin-bottom: .4rem;
  font-weight: 700;
}

.material-card p {
  color: var(--gray-600);
  font-size: .875rem;
  line-height: 1.6;
}

.usecase-list {
  color: var(--gray-600);
  text-align: left;
  margin: 0;
  padding: 0;
  font-size: .875rem;
  line-height: 1.65;
  list-style: none;
}

.usecase-list li:before {
  content: "•";
  color: var(--accent);
  margin-right: .5rem;
  font-weight: 700;
}

.usecase-list li {
  margin-bottom: .3rem;
}

.offer-card {
  border-radius: var(--radius-xl);
  background: #ffffff0d;
  border: 1px solid #5070b033;
  max-width: 480px;
  margin: 0 auto 2.5rem;
  padding: 2.8rem 2rem 1.8rem;
  position: relative;
  box-shadow: 0 0 60px #7c3aed1f;
}

.price-badge {
  background: linear-gradient(135deg, var(--accent) 0%, #6b21a8 100%);
  color: var(--white);
  font-size: var(--text-small);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  white-space: nowrap;
  padding: .5rem 1.4rem;
  font-weight: 700;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 4px 20px #5070b04d;
}

.offer-price {
  text-align: center;
  border-bottom: 1px solid #ffffff14;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
}

.offer-price .pricing-original {
  color: #fff6;
  margin-bottom: .2rem;
  font-size: 1.4rem;
  text-decoration: line-through;
}

.offer-price .pricing-current {
  color: var(--white);
  margin-bottom: .4rem;
  font-family: DM Sans, sans-serif;
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1;
}

.offer-price .pricing-current .currency {
  vertical-align: super;
  margin-right: .15rem;
  font-size: 1.8rem;
}

.offer-price .pricing-period {
  font-size: var(--text-card);
  color: #10b981;
  margin-bottom: .3rem;
  font-weight: 700;
}

.stack-offer {
  text-align: left;
}

.stack-offer-title {
  font-size: var(--text-small);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-light);
  text-align: center;
  margin-bottom: 1rem;
  font-weight: 700;
}

.stack-offer-item {
  border-bottom: 1px solid #ffffff0f;
  align-items: center;
  gap: .8rem;
  padding: .55rem 0;
  display: flex;
}

.stack-offer-item:last-child {
  border-bottom: none;
}

.stack-offer-check {
  color: #10b981;
  flex-shrink: 0;
  font-size: .875rem;
  font-weight: 700;
}

.stack-offer-item span {
  color: #ffffffd9;
  font-size: .875rem;
  line-height: 1.5;
}

.guarantee-badge {
  border-radius: var(--radius-md);
  background: #10b98114;
  border: 1px solid #10b98140;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  padding: 1rem 1.2rem;
  display: flex;
}

.guarantee-icon {
  color: #10b981;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
}

.guarantee-badge strong {
  color: var(--white);
  margin-bottom: .15rem;
  font-size: .875rem;
  display: block;
}

.guarantee-badge span {
  color: #fff9;
  font-size: .8125rem;
}

.testimonials-carousel-wrap {
  width: 100%;
  max-width: 700px;
  margin-top: 2.5rem;
  position: relative;
  overflow: hidden;
}

.testimonials-carousel {
  align-items: flex-start;
  width: 100%;
  transition: transform .5s cubic-bezier(.25, .46, .45, .94);
  display: flex;
}

.testimonial-slide {
  flex: 0 0 100%;
  width: 0;
}

.testimonial-slide img {
  border-radius: var(--radius-sm);
  width: 100%;
  height: auto;
  display: block;
}

.carousel-btn {
  cursor: pointer;
  color: #00000080;
  z-index: 2;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  background: #ffffff73;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  font-size: 1rem;
  transition: all .3s;
  display: flex;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 1px 6px #0000001a;
}

.carousel-btn:hover {
  color: var(--gray-900);
  background: #fffc;
}

.carousel-btn--prev {
  left: 6px;
}

.carousel-btn--next {
  right: 6px;
}

.carousel-dots {
  justify-content: center;
  gap: 8px;
  margin-top: 1rem;
  display: flex;
}

.carousel-dot {
  background: var(--gray-300);
  cursor: pointer;
  border: none;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  padding: 0;
  transition: all .3s;
}

.carousel-dot.active {
  background: var(--accent);
  transform: scale(1.2);
}

.testimonial-card {
  border-radius: var(--radius-lg);
  background: #ffffff08;
  border: 1px solid #7c3aed33;
  width: 100%;
  padding: 1.8rem;
}

.testimonial-stars {
  color: var(--accent);
  margin-bottom: .8rem;
  font-size: 1rem;
}

.testimonial-text {
  font-size: var(--text-body);
  color: var(--gray-700);
  margin-bottom: 1.2rem;
  font-style: italic;
  line-height: 1.7;
}

.testimonial-author {
  align-items: center;
  gap: .8rem;
  display: flex;
}

.testimonial-avatar {
  background: var(--brand);
  width: 40px;
  height: 40px;
  color: var(--white);
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
}

.testimonial-author-info strong {
  font-size: var(--text-body);
  color: var(--gray-900);
  display: block;
}

.testimonial-author-info span {
  font-size: var(--text-small);
  color: var(--gray-500);
}

.sticky-bar {
  z-index: 150;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  transition: transform .4s var(--easing);
  background: #000000f7;
  border-bottom: 1px solid #5070b033;
  padding: 0 2rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transform: translateY(-100%);
}

.sticky-bar.visible {
  transform: translateY(0);
}

.sticky-bar-inner {
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  max-width: 1200px;
  height: 64px;
  margin: 0 auto;
  display: flex;
}

.sticky-bar-info {
  font-size: var(--text-body);
  color: #ffffffe6;
  align-items: center;
  gap: 1.5rem;
  display: flex;
}

.sticky-label {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .5px;
  font-weight: 700;
  font-size: var(--text-list);
}

.sticky-divider {
  background: #fff3;
  width: 1px;
  height: 22px;
}

.sticky-price-old {
  color: #fff6;
  font-size: .9375rem;
  text-decoration: line-through;
}

.sticky-price-arrow {
  color: #ffffff59;
  margin: 0 .15rem;
  font-size: .8125rem;
}

.sticky-price-new {
  color: var(--accent);
  font-size: 1.1rem;
  font-weight: 800;
}

.sticky-mobile {
  display: none;
}

.sticky-bar-cta {
  background: var(--accent);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: var(--text-body);
  white-space: nowrap;
  padding: .7rem 1.8rem;
  text-decoration: none;
  transition: all .3s;
}

.sticky-bar-cta:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px #5070b066;
}

@media (max-width: 768px) {
  .navbar {
    padding: 0 1rem;
  }

  .hero {
    padding: 120px 1.2rem 3rem;
  }

  section {
    padding: 3.5rem 1.2rem;
  }

  .section-inner {
    max-width: 100%;
  }

  .hero h1 {
    font-size: clamp(2rem, 7vw, 2.8rem);
  }

  .hero-sub {
    font-size: 1.1rem;
    line-height: 1.7;
  }

  .btn-primary {
    padding: .9rem 2rem;
    font-size: 1rem;
  }

  .section-tag {
    letter-spacing: 1.5px;
    padding: .35rem .85rem;
    font-size: .7rem;
  }

  .section-title {
    margin-bottom: 1rem;
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .section-subtitle {
    margin-bottom: 2rem;
    font-size: 1rem;
  }

  .narrative-content p {
    margin-bottom: 1.2rem;
    font-size: .9375rem;
    line-height: 1.75;
  }

  .solution-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .solution-card {
    padding: 1.5rem;
  }

  .story-author {
    text-align: center;
    flex-direction: column;
    padding: 1.2rem;
  }

  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: .8rem;
    margin: 1.5rem 0;
  }

  .transform-cards {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .material-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .mid-cta {
    padding: 3rem 1.2rem;
  }

  .mid-cta h2 {
    font-size: clamp(1.3rem, 4vw, 1.6rem);
  }

  .faq-question {
    padding: 1rem 1.2rem;
    font-size: .9375rem;
  }

  .faq-answer {
    padding: 0 1.2rem;
    font-size: .9375rem;
  }

  .faq-item.open .faq-answer {
    padding: 0 1.2rem 1rem;
  }

  .final-cta {
    padding: 4rem 1.2rem;
  }

  .final-cta h2 {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
  }

  .offer-card {
    max-width: 100%;
    padding: 2.5rem 1.5rem 1.5rem;
  }

  .offer-price .pricing-current {
    font-size: 3.5rem;
  }

  .testimonials-carousel-wrap {
    max-width: 100%;
  }

  .sticky-bar {
    padding: 0 1.2rem;
  }

  .sticky-bar-inner {
    gap: 1rem;
    height: auto;
    min-height: 64px;
    padding: .6rem 0;
  }

  .sticky-label, .sticky-divider, .sticky-desktop {
    display: none;
  }

  .sticky-mobile {
    font-size: .85rem;
    font-weight: 500;
    line-height: 1.3;
    display: block;
  }

  .sticky-mobile strong {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: .5px;
    font-size: .75rem;
    font-weight: 700;
  }

  .sticky-bar-cta {
    padding: .65rem 1.5rem;
    font-size: .88rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 100px 1rem 2.5rem;
  }

  section {
    padding: 3rem 1rem;
  }

  .hero h1 {
    letter-spacing: -.5px;
    font-size: 1.85rem;
  }

  .hero-sub {
    font-size: 1rem;
    line-height: 1.55;
  }

  .btn-primary {
    justify-content: center;
    width: 100%;
    padding: .75rem 1.4rem;
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.35rem;
  }

  .metrics-grid {
    grid-template-columns: 1fr 1fr;
    gap: .6rem;
  }

  .metric-card {
    padding: 1rem .8rem;
  }

  .metric-value {
    font-size: 1.25rem;
  }

  .transform-card {
    padding: 1.2rem 1rem;
  }

  .offer-card {
    padding: 2.2rem 1.2rem 1.2rem;
  }

  .offer-price .pricing-current {
    font-size: 3rem;
  }

  .mid-cta {
    padding: 2.5rem 1rem;
  }

  .btn-white {
    justify-content: center;
    width: 100%;
    padding: .7rem 1.4rem;
    font-size: 1rem;
  }

  .final-cta .btn-primary {
    justify-content: center;
    width: 100%;
  }
}

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

  .reveal, .reveal-left, .hero-badge, .hero h1, .hero-sub, .hero-cta-group, .vsl-container {
    opacity: 1;
    transform: none;
  }

  .particle {
    display: none;
  }
}

/*# sourceMappingURL=app_globals_0jn8.0u.css.map*/