.site-header {
  width: 100%;
  height: 80px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(11, 8, 19, 0.5);
  backdrop-filter: blur(12px);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 10;
  min-height: 80px;
  top: 0px;
  padding: 1rem 0px;
  border-bottom: 1px solid var(--border-color);
}

.header-container {
  width: 100%;
  max-width: 1200px;
  padding: 0 var(--space-m);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0px auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-3xs);
  row-gap: 0.6em;
  column-gap: 0.6em;
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}

.logo-icon {
  width: 28px;
  height: 28px;
  color: var(--secondary);
}

.logo-text {
  font-family: var(--font-heading);
  font-size: var(--text-m);
  font-weight: 700;
  color: var(--text-title);
  letter-spacing: -0.02em;
}

.nav-links {
  display: none;
  align-items: center;
  gap: var(--space-l);
  list-style-position: initial;
  list-style-image: initial;
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}

@media (min-width: 768px) {
  .nav-links {
  display: flex;
  }
}

.nav-link {
  font-family: var(--font-body);
  font-size: var(--text-s);
  color: var(--text-body);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  transition-behavior: normal;
  transition-duration: 0.2s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: color;
}

.nav-link:hover {
  color: var(--text-title);
}

.btn-header {
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--text-title);
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(255, 255, 255, 0.08);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(255, 255, 255, 0.15);
  border-right-color: rgba(255, 255, 255, 0.15);
  border-bottom-color: rgba(255, 255, 255, 0.15);
  border-left-color: rgba(255, 255, 255, 0.15);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  padding: var(--space-3xs) var(--space-s);
  border-top-left-radius: 99px;
  border-top-right-radius: 99px;
  border-bottom-right-radius: 99px;
  border-bottom-left-radius: 99px;
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  transition-behavior: normal;
  transition-duration: 0.2s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: all;
  display: inline-block;
}

.btn-header:hover {
  background: var(--text-title);
  color: var(--bg-body);
  border-color: var(--text-title);
  background-color: var(--text-title);
}

@media (max-width: 992px) {
  .nav-links, .header-cta {
  display: none;
  }
}

@media (max-width: 768px) {
  .nav-links, .header-cta {
  display: none;
  }
}

.hero-section {
  position: relative;
  padding: var(--space-3xl) 0;
  background: var(--bg-body);
  overflow-x: hidden;
  overflow-y: hidden;
  display: flex;
  justify-content: center;
  background-color: var(--bg-body);
  align-items: center;
  min-height: auto;
  padding-top: var(--space-2xl);
}

.hero-glow {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 600px;
  height: 600px;
  background-image: radial-gradient(circle, rgba(238, 92, 52, 0.15) 0%, rgba(9, 11, 18, 0) 70%);
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  filter: blur(80px);
  pointer-events: none;
}

.hero-container {
  width: 100%;
  max-width: 1200px;
  padding: 0 var(--space-m);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  margin: 0px auto;
}

@media (max-width: 992px) {
  .hero-container {
  grid-template-columns: 1fr;
  text-align: center;
  gap: var(--space-xl);
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media (max-width: 992px) {
  .hero-content {
  align-items: center;
  }
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-s);
}

@media (max-width: 992px) {
  .hero-eyebrow {
  flex-direction: column;
  gap: var(--space-3xs);
  }
}

.eyebrow-badge {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(238, 92, 52, 0.15);
  color: var(--secondary);
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 700;
  padding: 4px 12px;
  border-top-left-radius: 99px;
  border-top-right-radius: 99px;
  border-bottom-right-radius: 99px;
  border-bottom-left-radius: 99px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.eyebrow-text {
  font-family: var(--font-body);
  font-size: var(--text-s);
  color: var(--text-body);
}

.hero-title {
  font-family: var(--font-funnel-display);
  font-size: clamp(2.4rem, 1.6rem + 3.4vw, 3.6rem);
  font-weight: 500;
  color: var(--funnel-text);
  line-height: 1.14;
  letter-spacing: -0.015em;
  margin-bottom: var(--space-s);
  padding-bottom: 0.2em;
  margin: 0 0 var(--space-m) 0;
}

.text-gradient {
  background: linear-gradient(135deg, var(--secondary) 0%, #ff8a50 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-bottom: 0.1em;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: var(--text-m);
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: var(--space-l);
  max-width: 600px;
}

@media (max-width: 992px) {
  .hero-subtitle {
  margin-left: auto;
  margin-right: auto;
  }
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-s);
  width: 100%;
}

@media (max-width: 992px) {
  .hero-cta-group {
  align-items: center;
  }
}

.btn-primary-glow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  background: linear-gradient(135deg, var(--secondary) 0%, #e64a19 100%);
  color: var(--text-title);
  font-family: var(--font-heading);
  font-size: var(--text-m);
  font-weight: 600;
  padding: var(--space-s) var(--space-l);
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  transition-behavior: normal;
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0s;
  transition-property: all;
  box-shadow: rgba(238, 92, 52, 0.25) 0px 15px 30px;
  max-width: 400px;
}

.btn-primary-glow:hover {
  transform: translateY(-2px);
  box-shadow: rgba(238, 92, 52, 0.4) 0px 20px 40px;
}

.btn-icon {
  width: 20px;
  height: 20px;
  transition-behavior: normal;
  transition-duration: 0.2s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: transform;
}

.btn-primary-glow:hover .btn-icon {
  transform: translateX(4px);
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--font-funnel-body);
  font-size: 14px;
  color: var(--funnel-dim);
}

.avatar-group {
  display: flex;
  align-items: center;
}

.avatar-item {
  width: 32px;
  height: 32px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  background: var(--bg-surface);
  border: 2px solid var(--bg-body);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: var(--text-title);
  margin-left: -8px;
  background-color: var(--bg-surface);
}

.avatar-item:first-child {
  margin-left: 0px;
}

.trust-text {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--text-body);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.mockup-wrapper {
  position: relative;
  padding: var(--space-m);
}

.mockup-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background-image: radial-gradient(circle, rgba(238, 92, 52, 0.12) 0%, rgba(9, 11, 18, 0) 70%);
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  filter: blur(40px);
  pointer-events: none;
}

.ebook-mockup {
  position: relative;
  width: 280px;
  height: 380px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(30, 34, 48);
  border-top-left-radius: 8px;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.5) 25px 25px 50px;
  transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
  transform-style: preserve-3d;
  transition-behavior: normal;
  transition-duration: 0.5s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: transform;
}

.ebook-mockup:hover {
  transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
}

.ebook-cover {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(135deg, rgb(26, 29, 41) 0%, rgb(13, 15, 23) 100%);
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  border-left-width: 8px;
  border-left-style: solid;
  border-left-color: rgba(255, 255, 255, 0.05);
  border-top-left-radius: 4px;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 4px;
  padding: var(--space-m);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  overflow-x: hidden;
  overflow-y: hidden;
}

.ebook-cover::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0) 10%, rgba(0, 0, 0, 0.1) 11%, rgba(0, 0, 0, 0) 100%);
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  pointer-events: none;
}

.ebook-badge {
  align-self: flex-start;
  background: var(--secondary);
  color: var(--text-title);
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 8px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  letter-spacing: 0.1em;
  background-color: var(--secondary);
}

.ebook-title-wrap {
  margin-top: auto;
  margin-bottom: auto;
}

.ebook-author {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: var(--space-3xs);
}

.ebook-cover-title {
  font-family: var(--font-heading);
  font-size: var(--text-m);
  font-weight: 700;
  color: var(--text-title);
  line-height: 1.3;
  margin-bottom: var(--space-3xs);
}

.ebook-cover-desc {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--text-body);
  line-height: 1.4;
}

.ebook-footer {
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgba(255, 255, 255, 0.1);
  padding-top: var(--space-3xs);
  font-family: var(--font-body);
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ebook-pages {
  position: absolute;
  top: 5px;
  right: -12px;
  width: 12px;
  height: calc(100% - 10px);
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(224, 224, 224);
  border-top-left-radius: 0px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 0px;
  box-shadow: rgba(0, 0, 0, 0.2) 2px 2px 5px;
  transform: rotateY(90deg);
  transform-origin: left center;
}

.problem-section {
  padding: var(--space-3xl) 0;
  background: var(--bg-surface);
  display: flex;
  justify-content: center;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgba(255, 255, 255, 0.05);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(255, 255, 255, 0.05);
}

.problem-container {
  width: 100%;
  max-width: 1200px;
  padding: 0 var(--space-m);
}

.problem-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-xl) auto;
}

.section-eyebrow {
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--secondary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: var(--space-3xs);
}

.section-title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--text-title);
  line-height: 1.3;
  margin-bottom: var(--space-s);
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: var(--text-m);
  color: var(--text-body);
  line-height: 1.6;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-m);
  margin-bottom: var(--space-l);
}

@media (max-width: 768px) {
  .problem-grid {
  grid-template-columns: 1fr;
  }
}

.problem-card {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(255, 255, 255, 0.02);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(255, 255, 255, 0.05);
  border-right-color: rgba(255, 255, 255, 0.05);
  border-bottom-color: rgba(255, 255, 255, 0.05);
  border-left-color: rgba(255, 255, 255, 0.05);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
  padding: var(--space-l);
  transition-behavior: normal;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: all;
}

.problem-card:hover {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(255, 255, 255, 0.04);
  border-top-color: rgba(255, 255, 255, 0.1);
  border-right-color: rgba(255, 255, 255, 0.1);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  border-left-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.problem-icon-wrap {
  width: 48px;
  height: 48px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(238, 92, 52, 0.1);
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-s);
}

.problem-icon {
  width: 24px;
  height: 24px;
  color: var(--secondary);
}

.problem-card-title {
  font-family: var(--font-heading);
  font-size: var(--text-m);
  font-weight: 600;
  color: var(--text-title);
  margin-bottom: var(--space-3xs);
}

.problem-card-desc {
  font-family: var(--font-body);
  font-size: var(--text-s);
  color: var(--text-body);
  line-height: 1.5;
}

.problem-footer-text {
  text-align: center;
  font-family: var(--font-body);
  font-size: var(--text-m);
  color: var(--text-title);
  font-weight: 500;
  max-width: 600px;
  margin: 0px auto;
}

.pain-section {
  padding: var(--space-3xl) 0;
  background: var(--bg-body);
  display: flex;
  justify-content: center;
}

.pain-container {
  width: 100%;
  max-width: 1200px;
  padding: 0 var(--space-m);
}

.pain-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-xl) auto;
}

.pain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-m);
  margin-bottom: var(--space-xl);
  row-gap: 24px;
  column-gap: 24px;
}

@media (min-width: 768px) {
  .pain-grid {
  grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 640px) {
  .pain-grid {
  grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .pain-grid {
  grid-template-columns: 1fr;
  }
}

.pain-card {
  background: var(--funnel-surface);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(255, 255, 255, 0.03);
  border-right-color: rgba(255, 255, 255, 0.03);
  border-bottom-color: rgba(255, 255, 255, 0.03);
  border-left-color: rgba(255, 255, 255, 0.03);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  border-bottom-right-radius: 18px;
  border-bottom-left-radius: 18px;
  padding: var(--space-l);
  display: flex;
  gap: var(--space-m);
  align-items: flex-start;
  transition-behavior: normal;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: all;
  border: 1px solid var(--funnel-line);
  border-radius: var(--radius-md);
}

.pain-card:hover {
  border-top-color: rgba(238, 92, 52, 0.2);
  border-right-color: rgba(238, 92, 52, 0.2);
  border-bottom-color: rgba(238, 92, 52, 0.2);
  border-left-color: rgba(238, 92, 52, 0.2);
  transform: translateY(-2px);
  border-color: var(--accent-secondary);
  background: var(--bg-surface-hover);
}

.pain-icon-wrap {
  width: 40px;
  height: 40px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(238, 92, 52, 0.08);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pain-icon {
  width: 44px;
  height: 44px;
  color: var(--secondary);
  flex-shrink: 0;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  background: var(--funnel-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pain-content {
  display: flex;
  flex-direction: column;
}

.pain-card-title {
  font-family: var(--font-heading);
  font-size: var(--text-s);
  font-weight: 600;
  color: var(--text-title);
  margin-bottom: var(--space-4xs);
  line-height: 1.4;
}

.pain-card-desc {
  font-family: var(--font-body);
  font-size: var(--text-s);
  color: var(--text-body);
  line-height: 1.5;
}

.pain-cta-box {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(238, 92, 52, 0.05);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(238, 92, 52, 0.15);
  border-right-color: rgba(238, 92, 52, 0.15);
  border-bottom-color: rgba(238, 92, 52, 0.15);
  border-left-color: rgba(238, 92, 52, 0.15);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
  padding: var(--space-m);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-m);
}

@media (max-width: 768px) {
  .pain-cta-box {
  flex-direction: column;
  text-align: center;
  }
}

.pain-cta-text {
  font-family: var(--font-body);
  font-size: var(--text-m);
  color: var(--text-title);
  font-weight: 500;
  margin: 0px;
}

.btn-secondary-outline {
  font-family: var(--font-heading);
  font-size: var(--text-s);
  font-weight: 600;
  color: var(--secondary);
  border: 1px solid var(--secondary);
  padding: var(--space-xs) var(--space-m);
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  transition-behavior: normal;
  transition-duration: 0.2s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: all;
  white-space-collapse: collapse;
  text-wrap-mode: nowrap;
}

.btn-secondary-outline:hover {
  background: var(--secondary);
  color: var(--text-title);
  box-shadow: rgba(238, 92, 52, 0.2) 0px 10px 20px;
}

.proof-section {
  padding: var(--space-3xl) 0;
  background: var(--bg-surface);
  display: flex;
  justify-content: center;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgba(255, 255, 255, 0.05);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(255, 255, 255, 0.05);
}

.proof-container {
  width: 100%;
  max-width: 1200px;
  padding: 0 var(--space-m);
}

.proof-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-m);
  align-items: center;
}

@media (max-width: 992px) {
  .proof-grid {
  grid-template-columns: 1fr;
  gap: var(--space-l);
  }
}

@media (min-width: 768px) {
  .proof-grid {
  grid-template-columns: repeat(3, 1fr);
  }
}

.proof-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.proof-desc {
  font-family: var(--font-body);
  font-size: var(--text-m);
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: var(--space-m);
}

.proof-badges {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.badge-item {
  display: flex;
  align-items: center;
  gap: var(--space-3xs);
  font-family: var(--font-body);
  font-size: var(--text-s);
  color: var(--text-title);
  font-weight: 500;
}

.badge-icon {
  width: 20px;
  height: 20px;
  color: var(--secondary);
}

.proof-stats {
  display: flex;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-m);
  flex-direction: column;
  row-gap: 20px;
  column-gap: 20px;
}

.stat-card {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(255, 255, 255, 0.02);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(255, 255, 255, 0.05);
  border-right-color: rgba(255, 255, 255, 0.05);
  border-bottom-color: rgba(255, 255, 255, 0.05);
  border-left-color: rgba(255, 255, 255, 0.05);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  border-bottom-right-radius: 18px;
  border-bottom-left-radius: 18px;
  padding: var(--space-l);
  text-align: left;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background: var(--funnel-elevated);
  border: 1px solid var(--funnel-line);
  border-radius: var(--radius-md);
  padding: 24px 32px;
  row-gap: 24px;
  column-gap: 24px;
  transition-behavior: normal;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: all;
}

.stat-card.highlight {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(238, 92, 52, 0.05);
  border-top-color: rgba(238, 92, 52, 0.2);
  border-right-color: rgba(238, 92, 52, 0.2);
  border-bottom-color: rgba(238, 92, 52, 0.2);
  border-left-color: rgba(238, 92, 52, 0.2);
}

.stat-number {
  font-family: var(--font-funnel-display);
  font-size: clamp(2rem, 1.5rem + 2vw, 2.8rem);
  font-weight: 800;
  color: var(--funnel-accent);
  margin-bottom: var(--space-3xs);
  line-height: 1.15;
  padding-bottom: 0.1em;
  margin: 0 0 var(--space-2xs) 0;
  animation-duration: 0.6s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: both;
  animation-play-state: running;
  animation-name: countPop;
  animation-timeline: auto;
  animation-range-start: normal;
  animation-range-end: normal;
}

.stat-label {
  font-family: var(--font-funnel-body);
  font-size: 14px;
  color: var(--funnel-dim);
  line-height: 1.5;
  text-align: right;
  max-width: 280px;
}

.process-section {
  padding: var(--space-3xl) 0;
  background: var(--bg-body);
  display: flex;
  justify-content: center;
}

.process-container {
  width: 100%;
  max-width: 1200px;
  padding: 0 var(--space-m);
}

.process-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-xl) auto;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-m);
  row-gap: 32px;
  column-gap: 32px;
}

@media (min-width: 768px) {
  .process-grid {
  grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .process-grid {
  grid-template-columns: 1fr;
  }
}

.process-card {
  background: var(--bg-surface);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(255, 255, 255, 0.03);
  border-right-color: rgba(255, 255, 255, 0.03);
  border-bottom-color: rgba(255, 255, 255, 0.03);
  border-left-color: rgba(255, 255, 255, 0.03);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
  padding: var(--space-l);
  position: relative;
  transition-behavior: normal;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: all;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
}

.process-card:hover {
  border-top-color: rgba(238, 92, 52, 0.2);
  border-right-color: rgba(238, 92, 52, 0.2);
  border-bottom-color: rgba(238, 92, 52, 0.2);
  border-left-color: rgba(238, 92, 52, 0.2);
  transform: translateY(-4px);
  border-color: var(--accent-primary);
  background: var(--bg-surface-hover);
}

.process-step {
  position: relative;
  top: var(--space-m);
  right: var(--space-m);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  color: var(--secondary);
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(238, 92, 52, 0.1);
  padding: 4px 10px;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  border-bottom-right-radius: 18px;
  border-bottom-left-radius: 18px;
  letter-spacing: 0.05em;
  background: var(--funnel-surface);
  border: 1px solid var(--funnel-line);
  padding: var(--space-l);
}

.process-icon-wrap {
  width: 48px;
  height: 48px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(238, 92, 52, 0.08);
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-s);
}

.process-icon {
  width: 24px;
  height: 24px;
  color: var(--secondary);
}

.process-card-title {
  font-family: var(--font-heading);
  font-size: var(--text-m);
  font-weight: 600;
  color: var(--text-title);
  margin-bottom: var(--space-3xs);
}

.process-card-desc {
  font-family: var(--font-body);
  font-size: var(--text-s);
  color: var(--text-body);
  line-height: 1.5;
}

.offer-section {
  padding: var(--space-3xl) 0;
  background: var(--bg-surface);
  display: flex;
  justify-content: center;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgba(255, 255, 255, 0.05);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(255, 255, 255, 0.05);
}

.offer-container {
  width: 100%;
  max-width: 1200px;
  padding: 0 var(--space-m);
}

.offer-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-xl) auto;
}

.offer-bento {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--space-m);
  margin-bottom: var(--space-xl);
}

@media (max-width: 768px) {
  .offer-bento {
  grid-template-columns: 1fr;
  }
}

.bento-card {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(255, 255, 255, 0.02);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(255, 255, 255, 0.05);
  border-right-color: rgba(255, 255, 255, 0.05);
  border-bottom-color: rgba(255, 255, 255, 0.05);
  border-left-color: rgba(255, 255, 255, 0.05);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  padding: var(--space-l);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-x: hidden;
  overflow-y: hidden;
  transition-behavior: normal;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: all;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.bento-card:hover {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(255, 255, 255, 0.04);
  border-top-color: rgba(238, 92, 52, 0.2);
  border-right-color: rgba(238, 92, 52, 0.2);
  border-bottom-color: rgba(238, 92, 52, 0.2);
  border-left-color: rgba(238, 92, 52, 0.2);
  border-color: var(--accent-primary);
  background: var(--bg-surface-hover);
}

.bento-main {
  grid-row-start: span 2;
  grid-row-end: auto;
  background-image: linear-gradient(135deg, rgba(238, 92, 52, 0.05) 0%, rgba(9, 11, 18, 0.02) 100%);
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  border-top-color: rgba(238, 92, 52, 0.15);
  border-right-color: rgba(238, 92, 52, 0.15);
  border-bottom-color: rgba(238, 92, 52, 0.15);
  border-left-color: rgba(238, 92, 52, 0.15);
}

@media (max-width: 768px) {
  .bento-main {
  grid-row-start: auto;
  grid-row-end: auto;
  }
}

.bento-badge {
  align-self: flex-start;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  color: var(--secondary);
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(238, 92, 52, 0.1);
  padding: 4px 10px;
  border-top-left-radius: 99px;
  border-top-right-radius: 99px;
  border-bottom-right-radius: 99px;
  border-bottom-left-radius: 99px;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-m);
}

.bento-content {
  display: flex;
  flex-direction: column;
}

.bento-icon-emoji {
  font-size: var(--text-xl);
  margin-bottom: var(--space-s);
  display: block;
}

.bento-title {
  font-family: var(--font-heading);
  font-size: var(--text-m);
  font-weight: 600;
  color: var(--text-title);
  margin-bottom: var(--space-3xs);
  line-height: 1.3;
}

.bento-desc {
  font-family: var(--font-body);
  font-size: var(--text-s);
  color: var(--text-body);
  line-height: 1.5;
}

.offer-summary {
  text-align: center;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(255, 255, 255, 0.02);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(255, 255, 255, 0.05);
  border-right-color: rgba(255, 255, 255, 0.05);
  border-bottom-color: rgba(255, 255, 255, 0.05);
  border-left-color: rgba(255, 255, 255, 0.05);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
  padding: var(--space-m);
  max-width: 800px;
  margin: 0px auto;
}

.summary-text {
  font-family: var(--font-body);
  font-size: var(--text-m);
  color: var(--text-title);
  font-weight: 500;
  margin: 0px;
}

.testimonials-section {
  padding: var(--space-3xl) 0;
  background: var(--bg-body);
  display: flex;
  justify-content: center;
}

.testimonials-container {
  width: 100%;
  max-width: 1200px;
  padding: 0 var(--space-m);
}

.testimonials-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-xl) auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-m);
}

@media (max-width: 768px) {
  .testimonials-grid {
  grid-template-columns: 1fr;
  }
}

.testimonial-card {
  background: var(--funnel-surface);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(255, 255, 255, 0.03);
  border-right-color: rgba(255, 255, 255, 0.03);
  border-bottom-color: rgba(255, 255, 255, 0.03);
  border-left-color: rgba(255, 255, 255, 0.03);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  padding: var(--space-l);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition-behavior: normal;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: all;
  height: auto;
  border: 1px solid var(--funnel-line);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.testimonial-card:hover {
  border-top-color: rgba(238, 92, 52, 0.2);
  border-right-color: rgba(238, 92, 52, 0.2);
  border-bottom-color: rgba(238, 92, 52, 0.2);
  border-left-color: rgba(238, 92, 52, 0.2);
  transform: translateY(-2px);
  border-color: var(--accent-primary);
  background: var(--bg-surface-hover);
}

.rating-stars {
  color: rgb(255, 179, 0);
  font-size: var(--text-s);
  margin-bottom: var(--space-s);
}

.testimonial-text {
  font-family: var(--font-body);
  font-size: var(--text-s);
  color: var(--text-body);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: var(--space-m);
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.user-avatar {
  width: 44px;
  height: 44px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(238, 92, 52, 0.1);
  color: var(--secondary);
  font-family: var(--font-heading);
  font-size: var(--text-s);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.user-info {
  display: flex;
  flex-direction: column;
}

.user-name {
  font-family: var(--font-heading);
  font-size: var(--text-s);
  font-weight: 600;
  color: var(--text-title);
  margin: 0px;
}

.user-role {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--text-body);
}

.optin-section {
  padding: var(--space-3xl) 0;
  background: var(--bg-surface);
  display: flex;
  justify-content: center;
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
}

.optin-glow {
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 500px;
  height: 500px;
  background-image: radial-gradient(circle, rgba(238, 92, 52, 0.1) 0%, rgba(9, 11, 18, 0) 70%);
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  filter: blur(60px);
  pointer-events: none;
}

.optin-container {
  width: 100%;
  max-width: 1200px;
  padding: 0 var(--space-m);
  display: flex;
  justify-content: center;
}

.optin-box {
  background-image: linear-gradient(135deg, rgb(18, 22, 34) 0%, rgb(9, 11, 18) 100%);
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(255, 255, 255, 0.08);
  border-right-color: rgba(255, 255, 255, 0.08);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  border-left-color: rgba(255, 255, 255, 0.08);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  border-bottom-right-radius: 24px;
  border-bottom-left-radius: 24px;
  padding: var(--space-xl) var(--space-l);
  max-width: 640px;
  width: 100%;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 30px 60px;
  position: relative;
  z-index: 10;
}

.optin-header {
  text-align: center;
  margin-bottom: var(--space-l);
}

.optin-title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--text-title);
  margin-bottom: var(--space-3xs);
  letter-spacing: -0.02em;
}

.optin-subtitle {
  font-family: var(--font-body);
  font-size: var(--text-s);
  color: var(--text-body);
  line-height: 1.5;
}

.form-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--space-s);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-4xs);
}

.form-label {
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--text-title);
}

.form-input {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(10, 8, 20, 0.5);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(255, 255, 255, 0.1);
  border-right-color: rgba(255, 255, 255, 0.1);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  border-left-color: rgba(255, 255, 255, 0.1);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  padding: var(--space-xs) var(--space-s);
  font-family: var(--font-funnel-body);
  font-size: 15px;
  color: var(--funnel-text);
  transition-behavior: normal;
  transition-duration: 0.2s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: all;
  border: 1px solid var(--funnel-line);
  height: auto;
  padding: 0.9em 1em;
  line-height: 1.5;
  width: 100%;
  background: var(--funnel-surface);
}

.form-input:focus {
  outline-color: initial;
  outline-style: none;
  outline-width: initial;
  border-color: var(--accent-primary);
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(255, 255, 255, 0.08);
  box-shadow: rgba(104, 117, 245, 0.2) 0px 0px 0px 3px;
}

.btn-submit-glow {
  background: linear-gradient(135deg, var(--secondary) 0%, #e64a19 100%);
  color: var(--text-title);
  font-family: var(--font-heading);
  font-size: var(--text-s);
  font-weight: 600;
  border-top-width: medium;
  border-right-width: medium;
  border-bottom-width: medium;
  border-left-width: medium;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  border-top-color: currentcolor;
  border-right-color: currentcolor;
  border-bottom-color: currentcolor;
  border-left-color: currentcolor;
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  padding: var(--space-s) var(--space-l);
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  cursor: pointer;
  transition-behavior: normal;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: all;
  box-shadow: rgba(238, 92, 52, 0.2) 0px 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-submit-glow:hover {
  transform: translateY(-1px);
  box-shadow: rgba(238, 92, 52, 0.35) 0px 15px 30px;
}

.form-micro-copy {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--text-body);
  text-align: center;
  margin: 0px;
}

.site-footer {
  padding: var(--space-2xl) 0 var(--space-l) 0;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(7, 9, 15);
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: center;
}

.footer-container {
  width: 100%;
  max-width: 1200px;
  padding: 0 var(--space-m);
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.footer-brand {
  max-width: 500px;
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: var(--text-s);
  color: var(--text-body);
  line-height: 1.6;
  margin-top: var(--space-s);
}

.footer-bottom {
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgba(255, 255, 255, 0.05);
  padding-top: var(--space-m);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-m);
}

@media (max-width: 768px) {
  .footer-bottom {
  flex-direction: column;
  text-align: center;
  align-items: center;
  }
}

.copyright {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--text-body);
  margin: 0px;
}

.footer-legal {
  display: flex;
  gap: var(--space-m);
}

.legal-link {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--text-body);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  transition-behavior: normal;
  transition-duration: 0.2s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: color;
}

.legal-link:hover {
  color: var(--text-title);
}

:root {
  --radius: 0.5rem;
  --font-display: 'Anton', Impact, sans-serif;
  --background: oklch(0.14 0.05 260);
  --foreground: oklch(0.98 0.005 250);
  --card: oklch(0.18 0.06 260);
  --border: oklch(0.3 0.08 260 / 40%);
  --input: oklch(0.25 0.07 260);
  --gradient-brand: linear-gradient(180deg, oklch(0.78 0.18 240) 0%, oklch(0.55 0.24 255) 100%);
  --gradient-hero-bg: radial-gradient(ellipse 80% 60% at 70% 40%, oklch(0.35 0.24 255 / 0.55), transparent 60%),
        radial-gradient(ellipse 60% 50% at 20% 80%, oklch(0.3 0.2 260 / 0.4), transparent 70%),
        linear-gradient(180deg, oklch(0.1 0.04 260), oklch(0.14 0.06 260));
  --gradient-section: linear-gradient(180deg, oklch(0.12 0.05 260) 0%, oklch(0.16 0.06 260) 100%);
  --shadow-glow: 0 0 60px -10px oklch(0.65 0.24 250 / 0.6), 0 0 20px -5px oklch(0.7 0.22 245 / 0.4);
  --shadow-card: 0 20px 60px -20px oklch(0.05 0.05 260 / 0.8), inset 0 1px 0 0 oklch(0.5 0.15 250 / 0.15);
  --grid-pattern: linear-gradient(oklch(0.5 0.15 250 / 0.08) 1px, transparent 1px),
        linear-gradient(90deg, oklch(0.5 0.15 250 / 0.08) 1px, transparent 1px);
  --spacing: 0.25rem;
  --brand: oklch(0.65 0.22 250);
  --brand-deep: oklch(0.35 0.24 255);
  --brand-glow: oklch(0.75 0.2 240);
  --container-md: 28rem;
  --container-xl: 36rem;
  --container-2xl: 42rem;
  --container-3xl: 48rem;
  --container-4xl: 56rem;
  --container-7xl: 80rem;
  --radius-3xl: 1.5rem;
  --radius-2xl: 1rem;
  --radius-xl: 0.75rem;
  --blur-md: 12px;
  --blur-2xl: 40px;
  --blur-3xl: 64px;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --tracking-wider: 0.05em;
  --leading-relaxed: 1.625;
  --leading-snug: 1.375;
  --leading-tight: 1.25;
  --text-xs: 0.75rem;
  --text-xs--line-height: 1rem;
  --text-sm: 0.875rem;
  --text-sm--line-height: 1.25rem;
  --text-base: 1rem;
  --text-base--line-height: 1.5rem;
  --text-lg: 1.125rem;
  --text-lg--line-height: 1.75rem;
  --text-xl: 1.25rem;
  --text-xl--line-height: 1.75rem;
  --text-2xl: 1.5rem;
  --text-2xl--line-height: 2rem;
  --text-3xl: 1.875rem;
  --text-3xl--line-height: 2.25rem;
  --text-4xl: 2.25rem;
  --text-4xl--line-height: 2.5rem;
  --text-5xl: 3rem;
  --text-5xl--line-height: 1;
  --text-6xl: 3.75rem;
  --text-6xl--line-height: 1;
  --text-7xl: 4.5rem;
  --text-7xl--line-height: 1;
  --font-weight-thin: 100;
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-extrabold: 800;
  --font-weight-black: 900;
  --tracking-tighter: -0.05em;
  --tracking-tight: -0.025em;
  --tracking-normal: 0em;
  --tracking-wide: 0.025em;
  --tracking-widest: 0.1em;
  --leading-none: 1;
  --leading-normal: 1.5;
  --leading-loose: 2;
  --container-xs: 20rem;
  --container-sm: 24rem;
  --container-lg: 32rem;
  --container-5xl: 64rem;
  --container-6xl: 72rem;
  --tw-border-style: solid;
  --blur-sm: 4px;
  --blur-lg: 16px;
  --blur-xl: 24px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  --default-transition-duration: 150ms;
  --bg-canvas: var(--background, oklch(0.14 0.05 260));
  --bg-surface: var(--card, oklch(0.18 0.06 260));
  --bg-surface-hover: oklch(0.22 0.07 260);
  --accent-primary: var(--brand, oklch(0.65 0.22 250));
  --accent-glow: var(--brand-glow, oklch(0.75 0.2 240));
  --accent-secondary: var(--secondary, hsla(16, 100%, 60%, 1));
  --text-primary: var(--text-title, #ffffff);
  --text-secondary: var(--text-body, hsla(220, 15%, 85%, 1));
  --text-muted: hsla(220, 15%, 65%, 1);
  --border-color: hsla(220, 20%, 25%, 0.4);
  --border-color-hover: hsla(220, 20%, 40%, 0.6);
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-body);
  color: var(--text-body);
  font-family: var(--font-body);
  margin: 0px;
  padding: 0px;
  overflow-x: hidden;
  background: var(--funnel-bg);
}

.font-display {
  font-family: var(--font-display);
  letter-spacing: 0.005em;
  line-height: 0.95;
}

.text-gradient-brand {
  background: var(--gradient-brand);
  background-clip: text;
  color: transparent;
  padding-block-start: 0.15em;
  padding-block-end: 0.15em;
  line-height: 1.05;
  background-image: linear-gradient(to right, oklch(0.78 0.18 240), oklch(0.55 0.24 255));
}

.bg-hero {
  background: var(--gradient-hero-bg);
}

.bg-grid {
  background-image: var(--grid-pattern);
  background-size: 48px 48px;
}

.shadow-brand-glow {
  box-shadow: var(--shadow-glow);
}

.shadow-elevated {
  box-shadow: var(--shadow-card);
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: oklch(0.65 0.24 250 / 0.5) 0px 0px 30px -5px;
  }
  50% {
    box-shadow: oklch(0.7 0.24 245 / 0.85) 0px 0px 60px -5px;
  }
}

.animate-pulse-glow {
  animation-duration: 3s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-fill-mode: none;
  animation-play-state: running;
  animation-name: pulse-glow;
  animation-timeline: auto;
  animation-range-start: normal;
  animation-range-end: normal;
}

@keyframes marquee {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(-50%);
  }
}

.animate-marquee {
  animation-duration: 30s;
  animation-timing-function: linear;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-fill-mode: none;
  animation-play-state: running;
  animation-name: marquee;
  animation-timeline: auto;
  animation-range-start: normal;
  animation-range-end: normal;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
}

.animate-float {
  animation-duration: 6s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-fill-mode: none;
  animation-play-state: running;
  animation-name: float;
  animation-timeline: auto;
  animation-range-start: normal;
  animation-range-end: normal;
}

.h-5 {
  height: 1.25rem;
}

.w-5 {
  width: 1.25rem;
}

.text-white {
  color: rgb(255, 255, 255);
}

.relative {
  position: relative;
}

.flex {
  display: flex;
}

.h-9 {
  height: 2.25rem;
}

.w-9 {
  width: 2.25rem;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.rounded-lg {
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}

.bg-gradient-to-br {
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops, #4f46e5, #2563eb));
}

.font-semibold {
  font-weight: 600;
}

.uppercase {
  text-transform: uppercase;
}

.transition {
  transition-behavior: normal;
  transition-duration: 0.15s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: all;
}

.gap-8 {
  row-gap: 2rem;
  column-gap: 2rem;
}

.font-medium {
  font-weight: 500;
}

.rounded-full {
  border-top-left-radius: 9999px;
  border-top-right-radius: 9999px;
  border-bottom-right-radius: 9999px;
  border-bottom-left-radius: 9999px;
}

.border {
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
}

.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.backdrop-blur {
  backdrop-filter: blur(8px);
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.max-w-7xl {
  max-width: 80rem;
}

.justify-between {
  justify-content: space-between;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.w-full {
  width: 100%;
}

.absolute {
  position: absolute;
}

.inset-0 {
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
}

.top-0 {
  top: 0px;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.inline-flex {
  display: inline-flex;
}

.gap-2 {
  row-gap: 0.5rem;
  column-gap: 0.5rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.block {
  display: block;
}

.mt-6 {
  margin-top: 1.5rem;
}

.max-w-xl {
  max-width: 36rem;
}

.leading-relaxed {
  line-height: 1.625;
}

.h-4 {
  height: 1rem;
}

.w-4 {
  width: 1rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.font-bold {
  font-weight: 700;
}

.tracking-wider {
  letter-spacing: 0.05em;
}

.flex-wrap {
  flex-wrap: wrap;
}

.gap-4 {
  row-gap: 1rem;
  column-gap: 1rem;
}

.flex-col {
  flex-direction: column;
}

.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0px, 1fr));
}

.gap-12 {
  row-gap: 3rem;
  column-gap: 3rem;
}

.pb-24 {
  padding-bottom: 6rem;
}

.pt-16 {
  padding-top: 4rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

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

.whitespace-nowrap {
  white-space-collapse: collapse;
  text-wrap-mode: nowrap;
}

.shrink-0 {
  flex-shrink: 0;
}

.gap-16 {
  row-gap: 4rem;
  column-gap: 4rem;
}

.overflow-hidden {
  overflow-x: hidden;
  overflow-y: hidden;
}

.pt-24 {
  padding-top: 6rem;
}

.leading-tight {
  line-height: 1.25;
}

.max-w-2xl {
  max-width: 42rem;
}

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

.max-w-4xl {
  max-width: 56rem;
}

.py-24 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.max-w-3xl {
  max-width: 48rem;
}

.h-6 {
  height: 1.5rem;
}

.w-6 {
  width: 1.5rem;
}

.h-12 {
  height: 3rem;
}

.w-12 {
  width: 3rem;
}

.rounded-xl {
  border-top-left-radius: 0.75rem;
  border-top-right-radius: 0.75rem;
  border-bottom-right-radius: 0.75rem;
  border-bottom-left-radius: 0.75rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.leading-snug {
  line-height: 1.375;
}

.items-start {
  align-items: flex-start;
}

.gap-5 {
  row-gap: 1.25rem;
  column-gap: 1.25rem;
}

.rounded-2xl {
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  border-bottom-right-radius: 1rem;
  border-bottom-left-radius: 1rem;
}

.p-8 {
  padding: 2rem;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-12 {
  margin-top: 3rem;
}

.right-0 {
  right: 0px;
}

.rounded-3xl {
  border-top-left-radius: 1.5rem;
  border-top-right-radius: 1.5rem;
  border-bottom-right-radius: 1.5rem;
  border-bottom-left-radius: 1.5rem;
}

.h-full {
  height: 100%;
}

.object-cover {
  object-fit: cover;
}

.bottom-0 {
  bottom: 0px;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.p-6 {
  padding: 1.5rem;
}

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

.h-7 {
  height: 1.75rem;
}

.w-7 {
  width: 1.75rem;
}

.h-14 {
  height: 3.5rem;
}

.w-14 {
  width: 3.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.gap-6 {
  row-gap: 1.5rem;
  column-gap: 1.5rem;
}

.max-w-md {
  max-width: 28rem;
}

.gap-3 {
  row-gap: 0.75rem;
  column-gap: 0.75rem;
}

.gap-1 {
  row-gap: 0.25rem;
  column-gap: 0.25rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.border-2 {
  border-top-width: 2px;
  border-right-width: 2px;
  border-bottom-width: 2px;
  border-left-width: 2px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
}

.rounded-md {
  border-top-left-radius: 0.375rem;
  border-top-right-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
}

.-inset-px {
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px;
}

.-top-12 {
  top: calc(var(--spacing) * -12);
}

.-top-16 {
  top: calc(var(--spacing) * -16);
}

.-top-20 {
  top: calc(var(--spacing) * -20);
}

.-top-24 {
  top: calc(var(--spacing) * -24);
}

.top-1\.5 {
  top: calc(var(--spacing) * 1.5);
}

.top-1\/2 {
  top: 50%;
}

.top-1\/4 {
  top: 25%;
}

.top-3\.5 {
  top: calc(var(--spacing) * 3.5);
}

.top-\[1px\] {
  top: 1px;
}

.top-\[50\%\] {
  top: 50%;
}

.top-\[60\%\] {
  top: 60%;
}

.-right-12 {
  right: calc(var(--spacing) * -12);
}

.-right-16 {
  right: calc(var(--spacing) * -16);
}

.-right-24 {
  right: calc(var(--spacing) * -24);
}

.-bottom-12 {
  bottom: calc(var(--spacing) * -12);
}

.-left-12 {
  left: calc(var(--spacing) * -12);
}

.left-1\/2 {
  left: 50%;
}

.left-\[50\%\] {
  left: 50%;
}

.-z-10 {
  z-index: calc(-10);
}

.z-\[1\] {
  z-index: 1;
}

.-mx-1 {
  margin-inline: calc(var(--spacing) * -1);
}

.mx-3\.5 {
  margin-inline: calc(var(--spacing) * 3.5);
}

.my-0\.5 {
  margin-block: calc(var(--spacing) * .5);
}

.-mt-4 {
  margin-top: calc(var(--spacing) * -4);
}

.-mt-24 {
  margin-top: -6rem;
}

.mt-1\.5 {
  margin-top: calc(var(--spacing) * 1.5);
}

.-ml-4 {
  margin-left: calc(var(--spacing) * -4);
}

.size-\(--cell-size\) {
  width: var(--cell-size);
  height: var(--cell-size);
}

.h-\(--cell-size\) {
  height: var(--cell-size);
}

.h-1\.5 {
  height: calc(var(--spacing) * 1.5);
}

.h-1\/3 {
  height: 33.3333%;
}

.h-2\.5 {
  height: calc(var(--spacing) * 2.5);
}

.h-3\.5 {
  height: calc(var(--spacing) * 3.5);
}

.h-\[1px\] {
  height: 1px;
}

.h-\[400px\] {
  height: 400px;
}

.h-\[500px\] {
  height: 500px;
}

.h-\[600px\] {
  height: 600px;
}

.h-\[var\(--radix-navigation-menu-viewport-height\)\] {
  height: var(--radix-navigation-menu-viewport-height);
}

.h-\[var\(--radix-select-trigger-height\)\] {
  height: var(--radix-select-trigger-height);
}

.max-h-\(--radix-context-menu-content-available-height\) {
  max-height: var(--radix-context-menu-content-available-height);
}

.max-h-\(--radix-select-content-available-height\) {
  max-height: var(--radix-select-content-available-height);
}

.max-h-\[300px\] {
  max-height: 300px;
}

.max-h-\[560px\] {
  max-height: 560px;
}

.max-h-\[var\(--radix-dropdown-menu-content-available-height\)\] {
  max-height: var(--radix-dropdown-menu-content-available-height);
}

.min-h-\[60px\] {
  min-height: 60px;
}

.w-\(--cell-size\) {
  width: var(--cell-size);
}

.w-\(--sidebar-width\) {
  width: var(--sidebar-width);
}

.w-2\.5 {
  width: calc(var(--spacing) * 2.5);
}

.w-3\.5 {
  width: calc(var(--spacing) * 3.5);
}

.w-3\/4 {
  width: 75%;
}

.w-\[1px\] {
  width: 1px;
}

.w-\[100px\] {
  width: 100px;
}

.w-\[500px\] {
  width: 500px;
}

.w-\[600px\] {
  width: 600px;
}

.w-\[800px\] {
  width: 800px;
}

.w-\[900px\] {
  width: 900px;
}

.max-w-\(--skeleton-width\) {
  max-width: var(--skeleton-width);
}

.min-w-\(--cell-size\) {
  min-width: var(--cell-size);
}

.min-w-\[8rem\] {
  min-width: 8rem;
}

.min-w-\[12rem\] {
  min-width: 12rem;
}

.min-w-\[var\(--radix-select-trigger-width\)\] {
  min-width: var(--radix-select-trigger-width);
}

.origin-\(--radix-context-menu-content-transform-origin\) {
  transform-origin: var(--radix-context-menu-content-transform-origin);
}

.origin-\(--radix-dropdown-menu-content-transform-origin\) {
  transform-origin: var(--radix-dropdown-menu-content-transform-origin);
}

.origin-\(--radix-hover-card-content-transform-origin\) {
  transform-origin: var(--radix-hover-card-content-transform-origin);
}

.origin-\(--radix-menubar-content-transform-origin\) {
  transform-origin: var(--radix-menubar-content-transform-origin);
}

.origin-\(--radix-popover-content-transform-origin\) {
  transform-origin: var(--radix-popover-content-transform-origin);
}

.origin-\(--radix-select-content-transform-origin\) {
  transform-origin: var(--radix-select-content-transform-origin);
}

.origin-\(--radix-tooltip-content-transform-origin\) {
  transform-origin: var(--radix-tooltip-content-transform-origin);
}

.-translate-x-1\/2 {
  --tw-translate-x: calc(calc(1 / 2 * 100%) * -1);
  translate: var(--tw-translate-x) var(--tw-translate-y);
}

.-translate-x-px {
  --tw-translate-x: -1px;
  translate: var(--tw-translate-x) var(--tw-translate-y);
}

.translate-x-\[-50\%\] {
  --tw-translate-x: -50%;
  translate: var(--tw-translate-x) var(--tw-translate-y);
}

.-translate-y-1\/2 {
  --tw-translate-y: calc(calc(1 / 2 * 100%) * -1);
  translate: var(--tw-translate-x) var(--tw-translate-y);
}

.translate-y-\[-50\%\] {
  --tw-translate-y: -50%;
  translate: var(--tw-translate-x) var(--tw-translate-y);
}

.gap-1\.5 {
  gap: calc(var(--spacing) * 1.5);
}

.gap-2\.5 {
  gap: calc(var(--spacing) * 2.5);
  row-gap: 0.625rem;
  column-gap: 0.625rem;
}

:where(.space-y-1\.5 > :not(:last-child)) {
  --tw-space-y-reverse: 0;
  margin-block-start: calc(calc(var(--spacing) * 1.5) * var(--tw-space-y-reverse));
  margin-block-end: calc(calc(var(--spacing) * 1.5) * calc(1 - var(--tw-space-y-reverse)));
}

:where(.space-y-2 > :not(:last-child)) {
  --tw-space-y-reverse: 0;
  margin-block-start: calc(calc(var(--spacing) * 2) * var(--tw-space-y-reverse));
  margin-block-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-y-reverse)));
}

:where(.space-y-5 > :not(:last-child)) {
  --tw-space-y-reverse: 0;
  margin-block-start: calc(calc(var(--spacing) * 5) * var(--tw-space-y-reverse));
  margin-block-end: calc(calc(var(--spacing) * 5) * calc(1 - var(--tw-space-y-reverse)));
}

:where(.space-x-1 > :not(:last-child)) {
  --tw-space-x-reverse: 0;
  margin-inline-start: calc(calc(var(--spacing) * 1) * var(--tw-space-x-reverse));
  margin-inline-end: calc(calc(var(--spacing) * 1) * calc(1 - var(--tw-space-x-reverse)));
}

.rounded-\[2px\] {
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
}

.rounded-\[inherit\] {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
  border-bottom-right-radius: inherit;
  border-bottom-left-radius: inherit;
}

.rounded-t-\[10px\] {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.border-\[1\.5px\] {
  border-style: var(--tw-border-style);
  border-top-width: 1.5px;
  border-right-width: 1.5px;
  border-bottom-width: 1.5px;
  border-left-width: 1.5px;
}

.border-\(--color-border\) {
  border-color: var(--color-border);
}

.border-border, .border-border\/40 {
  border-color: var(--border);
}

@supports (color:color-mix(in lab, red, red)) {
  .border-border\/40 {
  border-color: color-mix(in oklab, var(--border) 40%, transparent);
  }
}

.border-border\/50 {
  border-color: var(--border);
}

@supports (color:color-mix(in lab, red, red)) {
  .border-border\/50 {
  border-color: color-mix(in oklab, var(--border) 50%, transparent);
  }
}

.border-border\/60 {
  border-color: var(--border);
}

@supports (color:color-mix(in lab, red, red)) {
  .border-border\/60 {
  border-color: color-mix(in oklab, var(--border) 60%, transparent);
  }
}

.border-brand\/30 {
  border-color: var(--brand);
}

@supports (color:color-mix(in lab, red, red)) {
  .border-brand\/30 {
  border-color: color-mix(in oklab, var(--brand) 30%, transparent);
  }
}

.border-brand\/40 {
  border-color: var(--brand);
}

@supports (color:color-mix(in lab, red, red)) {
  .border-brand\/40 {
  border-color: color-mix(in oklab, var(--brand) 40%, transparent);
  }
}

.border-brand\/50 {
  border-color: var(--brand);
}

@supports (color:color-mix(in lab, red, red)) {
  .border-brand\/50 {
  border-color: color-mix(in oklab, var(--brand) 50%, transparent);
  }
}

.border-destructive\/50 {
  border-color: var(--destructive);
}

@supports (color:color-mix(in lab, red, red)) {
  .border-destructive\/50 {
  border-color: color-mix(in oklab, var(--destructive) 50%, transparent);
  }
}

.border-foreground\/20 {
  border-color: var(--foreground);
}

@supports (color:color-mix(in lab, red, red)) {
  .border-foreground\/20 {
  border-color: color-mix(in oklab, var(--foreground) 20%, transparent);
  }
}

.border-primary, .border-primary\/50 {
  border-color: var(--primary);
}

@supports (color:color-mix(in lab, red, red)) {
  .border-primary\/50 {
  border-color: color-mix(in oklab, var(--primary) 50%, transparent);
  }
}

.bg-\(--color-bg\) {
  background-color: var(--color-bg);
}

.bg-background, .bg-background\/40 {
  background-color: var(--background);
}

@supports (color:color-mix(in lab, red, red)) {
  .bg-background\/40 {
  background-color: color-mix(in oklab, var(--background) 40%, transparent);
  }
}

.bg-background\/70 {
  background-color: var(--background);
}

@supports (color:color-mix(in lab, red, red)) {
  .bg-background\/70 {
  background-color: color-mix(in oklab, var(--background) 70%, transparent);
  }
}

.bg-black\/80 {
  background-color: rgba(0, 0, 0, 0.8);
}

@supports (color:color-mix(in lab, red, red)) {
  .bg-black\/80 {
  background-color: color-mix(in oklab, var(--color-black) 80%, transparent);
  }
}

.bg-brand\/10 {
  background-color: var(--brand);
}

@supports (color:color-mix(in lab, red, red)) {
  .bg-brand\/10 {
  background-color: color-mix(in oklab, var(--brand) 10%, transparent);
  }
}

.bg-brand\/15 {
  background-color: var(--brand);
}

@supports (color:color-mix(in lab, red, red)) {
  .bg-brand\/15 {
  background-color: color-mix(in oklab, var(--brand) 15%, transparent);
  }
}

.bg-brand\/20 {
  background-color: var(--brand);
}

@supports (color:color-mix(in lab, red, red)) {
  .bg-brand\/20 {
  background-color: color-mix(in oklab, var(--brand) 20%, transparent);
  }
}

.bg-brand\/25 {
  background-color: var(--brand);
}

@supports (color:color-mix(in lab, red, red)) {
  .bg-brand\/25 {
  background-color: color-mix(in oklab, var(--brand) 25%, transparent);
  }
}

.bg-brand\/30 {
  background-color: var(--brand);
}

@supports (color:color-mix(in lab, red, red)) {
  .bg-brand\/30 {
  background-color: color-mix(in oklab, var(--brand) 30%, transparent);
  }
}

.bg-card, .bg-card\/50 {
  background-color: var(--card);
}

@supports (color:color-mix(in lab, red, red)) {
  .bg-card\/50 {
  background-color: color-mix(in oklab, var(--card) 50%, transparent);
  }
}

.bg-card\/60 {
  background-color: var(--card);
}

@supports (color:color-mix(in lab, red, red)) {
  .bg-card\/60 {
  background-color: color-mix(in oklab, var(--card) 60%, transparent);
  }
}

.bg-card\/70 {
  background-color: var(--card);
}

@supports (color:color-mix(in lab, red, red)) {
  .bg-card\/70 {
  background-color: color-mix(in oklab, var(--card) 70%, transparent);
  }
}

.bg-input\/60 {
  background-color: var(--input);
}

@supports (color:color-mix(in lab, red, red)) {
  .bg-input\/60 {
  background-color: color-mix(in oklab, var(--input) 60%, transparent);
  }
}

.bg-muted, .bg-muted\/50 {
  background-color: var(--muted);
}

@supports (color:color-mix(in lab, red, red)) {
  .bg-muted\/50 {
  background-color: color-mix(in oklab, var(--muted) 50%, transparent);
  }
}

.bg-primary, .bg-primary\/10 {
  background-color: var(--primary);
}

@supports (color:color-mix(in lab, red, red)) {
  .bg-primary\/10 {
  background-color: color-mix(in oklab, var(--primary) 10%, transparent);
  }
}

.bg-primary\/20 {
  background-color: var(--primary);
}

@supports (color:color-mix(in lab, red, red)) {
  .bg-primary\/20 {
  background-color: color-mix(in oklab, var(--primary) 20%, transparent);
  }
}

.bg-\[radial-gradient\(ellipse_at_top\,_var\(--brand\)_\/_0\.15\,_transparent_60\%\)\] {
  background-image: radial-gradient(ellipse at top, var(--brand) / .15, transparent 60%);
}

.from-brand\/30 {
  --tw-gradient-from: var(--brand);
}

@supports (color:color-mix(in lab, red, red)) {
  .from-brand\/30 {
  --tw-gradient-from: color-mix(in oklab, var(--brand) 30%, transparent);
  }
}

.from-brand\/50 {
  --tw-gradient-from: var(--brand);
}

@supports (color:color-mix(in lab, red, red)) {
  .from-brand\/50 {
  --tw-gradient-from: color-mix(in oklab, var(--brand) 50%, transparent);
  }
}

.p-\[1px\] {
  padding: 1px;
}

.px-\(--cell-size\) {
  padding-inline: var(--cell-size);
}

.px-1\.5 {
  padding-inline: calc(var(--spacing) * 1.5);
}

.px-2\.5 {
  padding-inline: calc(var(--spacing) * 2.5);
}

.py-0\.5 {
  padding-block: calc(var(--spacing) * .5);
}

.py-1\.5 {
  padding-block: calc(var(--spacing) * 1.5);
}

.py-2\.5 {
  padding-block: calc(var(--spacing) * 2.5);
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}

.pr-2\.5 {
  padding-right: calc(var(--spacing) * 2.5);
}

.pl-2\.5 {
  padding-left: calc(var(--spacing) * 2.5);
}

.text-\[0\.8rem\] {
  font-size: 0.8rem;
}

.text-\[10px\] {
  font-size: 10px;
}

.text-\[11px\] {
  font-size: 11px;
}

.text-\[15px\] {
  font-size: 15px;
}

.text-\[54px\] {
  font-size: 54px;
}

.leading-\[0\.92\] {
  --tw-leading: .92;
  line-height: 0.92;
}

.leading-\[0\.95\] {
  --tw-leading: .95;
  line-height: 0.95;
}

.leading-\[0\.98\] {
  --tw-leading: .98;
  line-height: 0.98;
}

.tracking-\[0\.2em\] {
  --tw-tracking: .2em;
  letter-spacing: 0.2em;
}

.tracking-\[0\.3em\] {
  --tw-tracking: .3em;
  letter-spacing: 0.3em;
}

.tracking-\[0\.18em\] {
  --tw-tracking: .18em;
  letter-spacing: 0.18em;
}

.tracking-\[0\.22em\] {
  --tw-tracking: .22em;
  letter-spacing: 0.22em;
}

.tracking-\[0\.24em\] {
  --tw-tracking: .24em;
  letter-spacing: 0.24em;
}

.tracking-\[0\.28em\] {
  --tw-tracking: .28em;
  letter-spacing: 0.28em;
}

.text-brand-glow, .text-brand-glow\/70 {
  color: var(--brand-glow);
}

@supports (color:color-mix(in lab, red, red)) {
  .text-brand-glow\/70 {
  color: color-mix(in oklab, var(--brand-glow) 70%, transparent);
  }
}

.text-foreground, .text-foreground\/40 {
  color: var(--foreground);
}

@supports (color:color-mix(in lab, red, red)) {
  .text-foreground\/40 {
  color: color-mix(in oklab, var(--foreground) 40%, transparent);
  }
}

.text-foreground\/50 {
  color: var(--foreground);
}

@supports (color:color-mix(in lab, red, red)) {
  .text-foreground\/50 {
  color: color-mix(in oklab, var(--foreground) 50%, transparent);
  }
}

.text-foreground\/60 {
  color: var(--foreground);
}

@supports (color:color-mix(in lab, red, red)) {
  .text-foreground\/60 {
  color: color-mix(in oklab, var(--foreground) 60%, transparent);
  }
}

.text-foreground\/65 {
  color: var(--foreground);
}

@supports (color:color-mix(in lab, red, red)) {
  .text-foreground\/65 {
  color: color-mix(in oklab, var(--foreground) 65%, transparent);
  }
}

.text-foreground\/70 {
  color: var(--foreground);
}

@supports (color:color-mix(in lab, red, red)) {
  .text-foreground\/70 {
  color: color-mix(in oklab, var(--foreground) 70%, transparent);
  }
}

.text-foreground\/75 {
  color: var(--foreground);
}

@supports (color:color-mix(in lab, red, red)) {
  .text-foreground\/75 {
  color: color-mix(in oklab, var(--foreground) 75%, transparent);
  }
}

.text-foreground\/80 {
  color: var(--foreground);
}

@supports (color:color-mix(in lab, red, red)) {
  .text-foreground\/80 {
  color: color-mix(in oklab, var(--foreground) 80%, transparent);
  }
}

.text-foreground\/85 {
  color: var(--foreground);
}

@supports (color:color-mix(in lab, red, red)) {
  .text-foreground\/85 {
  color: color-mix(in oklab, var(--foreground) 85%, transparent);
  }
}

.text-foreground\/90 {
  color: var(--foreground);
}

@supports (color:color-mix(in lab, red, red)) {
  .text-foreground\/90 {
  color: color-mix(in oklab, var(--foreground) 90%, transparent);
  }
}

.shadow-\[0_0_0_1px_var\(--sidebar-border\)\] {
  --tw-shadow: 0 0 0 1px var(--tw-shadow-color,var(--sidebar-border));
  box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}

.blur-\[120px\] {
  --tw-blur: blur(120px);
  filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
}

.blur-\[140px\] {
  --tw-blur: blur(140px);
  filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
}

.blur-\[160px\] {
  --tw-blur: blur(160px);
  filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
}

.drop-shadow-\[0_20px_40px_rgba\(0\,60\,180\,0\.5\)\] {
  --tw-drop-shadow-size: drop-shadow(0 20px 40px var(--tw-drop-shadow-color,#003cb480));
  --tw-drop-shadow: var(--tw-drop-shadow-size);
  filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
}

.drop-shadow-\[0_30px_60px_rgba\(0\,60\,180\,0\.55\)\] {
  --tw-drop-shadow-size: drop-shadow(0 30px 60px var(--tw-drop-shadow-color,#003cb48c));
  --tw-drop-shadow: var(--tw-drop-shadow-size);
  filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
}

.transition-\[left\,right\,width\] {
  transition-property: left, right, width;
  transition-timing-function: var(--tw-ease,var(--default-transition-timing-function));
  transition-duration: var(--tw-duration,var(--default-transition-duration));
}

.transition-\[margin\,opacity\] {
  transition-property: margin, opacity;
  transition-timing-function: var(--tw-ease,var(--default-transition-timing-function));
  transition-duration: var(--tw-duration,var(--default-transition-duration));
}

.transition-\[width\,height\,padding\] {
  transition-property: width, height, padding;
  transition-timing-function: var(--tw-ease,var(--default-transition-timing-function));
  transition-duration: var(--tw-duration,var(--default-transition-duration));
}

.transition-\[width\] {
  transition-property: width;
  transition-timing-function: var(--tw-ease,var(--default-transition-timing-function));
  transition-duration: var(--tw-duration,var(--default-transition-duration));
}

.\[--cell-size\:2rem\] {
  --cell-size: 2rem;
}

.group-focus-within\/menu-item\:opacity-100:is(:where(.group\/menu-item):focus-within *) {
  opacity: 1;
}

@media (hover: hover) {
  .group-hover\:translate-x-1:is(:where(.group):hover *) {
  --tw-translate-x: calc(var(--spacing) * 1);
  translate: var(--tw-translate-x) var(--tw-translate-y);
  }
}

@media (hover: hover) {
  .group-hover\:bg-brand\/25:is(:where(.group):hover *) {
  background-color: var(--brand);
  }
}

@media (hover: hover) {
  .group-hover\/menu-item\:opacity-100:is(:where(.group\/menu-item):hover *) {
  opacity: 1;
  }
}

.group-has-\[\[data-sidebar\=menu-action\]\]\/menu-item\:pr-8:is(:where(.group\/menu-item):has([data-sidebar="menu-action"]) *) {
  padding-right: calc(var(--spacing) * 8);
}

.group-data-\[collapsible\=icon\]\:-mt-8:is(:where(.group)[data-collapsible="icon"] *) {
  margin-top: calc(var(--spacing) * -8);
}

.group-data-\[collapsible\=icon\]\:hidden:is(:where(.group)[data-collapsible="icon"] *) {
  display: none;
}

.group-data-\[collapsible\=icon\]\:\!size-8:is(:where(.group)[data-collapsible="icon"] *) {
  width: calc(var(--spacing) * 8);
  height: calc(var(--spacing) * 8);
}

.group-data-\[collapsible\=icon\]\:w-\(--sidebar-width-icon\):is(:where(.group)[data-collapsible="icon"] *) {
  width: var(--sidebar-width-icon);
}

.group-data-\[collapsible\=icon\]\:w-\[calc\(var\(--sidebar-width-icon\)_\+_theme\(spacing\.4\)\)\]:is(:where(.group)[data-collapsible="icon"] *) {
  width: calc(var(--sidebar-width-icon) + 1rem);
}

.group-data-\[collapsible\=icon\]\:w-\[calc\(var\(--sidebar-width-icon\)_\+_theme\(spacing\.4\)_\+2px\)\]:is(:where(.group)[data-collapsible="icon"] *) {
  width: calc(var(--sidebar-width-icon) + 1rem + 2px);
}

.group-data-\[collapsible\=icon\]\:overflow-hidden:is(:where(.group)[data-collapsible="icon"] *) {
  overflow-x: hidden;
  overflow-y: hidden;
}

.group-data-\[collapsible\=icon\]\:\!p-0:is(:where(.group)[data-collapsible="icon"] *) {
  padding: calc(var(--spacing) * 0);
}

.group-data-\[collapsible\=icon\]\:\!p-2:is(:where(.group)[data-collapsible="icon"] *) {
  padding: calc(var(--spacing) * 2);
}

.group-data-\[collapsible\=icon\]\:opacity-0:is(:where(.group)[data-collapsible="icon"] *) {
  opacity: 0;
}

.group-data-\[collapsible\=offcanvas\]\:right-\[calc\(var\(--sidebar-width\)\*-1\)\]:is(:where(.group)[data-collapsible="offcanvas"] *) {
  right: calc(var(--sidebar-width) * -1);
}

.group-data-\[collapsible\=offcanvas\]\:left-\[calc\(var\(--sidebar-width\)\*-1\)\]:is(:where(.group)[data-collapsible="offcanvas"] *) {
  left: calc(var(--sidebar-width) * -1);
}

.group-data-\[collapsible\=offcanvas\]\:w-0:is(:where(.group)[data-collapsible="offcanvas"] *) {
  width: calc(var(--spacing) * 0);
}

.group-data-\[collapsible\=offcanvas\]\:translate-x-0:is(:where(.group)[data-collapsible="offcanvas"] *) {
  --tw-translate-x: calc(var(--spacing) * 0);
  translate: var(--tw-translate-x) var(--tw-translate-y);
}

.group-data-\[focused\=true\]\/day\:relative:is(:where(.group\/day)[data-focused="true"] *) {
  position: relative;
}

.group-data-\[focused\=true\]\/day\:z-10:is(:where(.group\/day)[data-focused="true"] *) {
  z-index: 10;
}

.group-data-\[focused\=true\]\/day\:border-ring:is(:where(.group\/day)[data-focused="true"] *) {
  border-color: var(--ring);
}

.group-data-\[focused\=true\]\/day\:ring-\[3px\]:is(:where(.group\/day)[data-focused="true"] *) {
  --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color,currentcolor);
  box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}

.group-data-\[focused\=true\]\/day\:ring-ring\/50:is(:where(.group\/day)[data-focused="true"] *) {
  --tw-ring-color: var(--ring);
}

@supports (color:color-mix(in lab, red, red)) {
  .group-data-\[focused\=true\]\/day\:ring-ring\/50:is(:where(.group\/day)[data-focused="true"] *) {
  --tw-ring-color: color-mix(in oklab, var(--ring) 50%, transparent);
  }
}

.group-data-\[side\=left\]\:-right-4:is(:where(.group)[data-side="left"] *) {
  right: calc(var(--spacing) * -4);
}

.group-data-\[side\=left\]\:border-r:is(:where(.group)[data-side="left"] *) {
  border-right-style: var(--tw-border-style);
  border-right-width: 1px;
}

.group-data-\[side\=right\]\:left-0:is(:where(.group)[data-side="right"] *) {
  left: calc(var(--spacing) * 0);
}

.group-data-\[side\=right\]\:rotate-180:is(:where(.group)[data-side="right"] *) {
  rotate: 180deg;
}

.group-data-\[side\=right\]\:border-l:is(:where(.group)[data-side="right"] *) {
  border-left-style: var(--tw-border-style);
  border-left-width: 1px;
}

.group-data-\[state\=open\]\:rotate-180:is(:where(.group)[data-state="open"] *) {
  rotate: 180deg;
}

.group-data-\[variant\=floating\]\:rounded-lg:is(:where(.group)[data-variant="floating"] *) {
  border-radius: var(--radius);
}

.group-data-\[variant\=floating\]\:border:is(:where(.group)[data-variant="floating"] *) {
  border-style: var(--tw-border-style);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
}

.group-data-\[variant\=floating\]\:shadow:is(:where(.group)[data-variant="floating"] *) {
  --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color,#0000001a), 0 1px 2px -1px var(--tw-shadow-color,#0000001a);
  box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}

.group-\[\.toast\]\:bg-muted:is(:where(.group).toast *) {
  background-color: var(--muted);
}

.group-\[\.toast\]\:bg-primary:is(:where(.group).toast *) {
  background-color: var(--primary);
}

.group-\[\.toast\]\:text-muted-foreground:is(:where(.group).toast *) {
  color: var(--muted-foreground);
}

.group-\[\.toast\]\:text-primary-foreground:is(:where(.group).toast *) {
  color: var(--primary-foreground);
}

.group-\[\.toaster\]\:border-border:is(:where(.group).toaster *) {
  border-color: var(--border);
}

.group-\[\.toaster\]\:bg-background:is(:where(.group).toaster *) {
  background-color: var(--background);
}

.group-\[\.toaster\]\:text-foreground:is(:where(.group).toaster *) {
  color: var(--foreground);
}

.group-\[\.toaster\]\:shadow-lg:is(:where(.group).toaster *) {
  --tw-shadow: 0 10px 15px -3px var(--tw-shadow-color,#0000001a), 0 4px 6px -4px var(--tw-shadow-color,#0000001a);
  box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}

.peer-disabled\:cursor-not-allowed:is(:where(.peer):disabled ~ *) {
  cursor: not-allowed;
}

.peer-disabled\:opacity-70:is(:where(.peer):disabled ~ *) {
  opacity: 0.7;
}

.peer-data-\[size\=default\]\/menu-button\:top-1\.5:is(:where(.peer\/menu-button)[data-size="default"] ~ *) {
  top: calc(var(--spacing) * 1.5);
}

.peer-data-\[size\=lg\]\/menu-button\:top-2\.5:is(:where(.peer\/menu-button)[data-size="lg"] ~ *) {
  top: calc(var(--spacing) * 2.5);
}

.peer-data-\[size\=sm\]\/menu-button\:top-1:is(:where(.peer\/menu-button)[data-size="sm"] ~ *) {
  top: calc(var(--spacing) * 1);
}

.file\:border-0::file-selector-button {
  border-style: var(--tw-border-style);
  border-top-width: 0px;
  border-right-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0px;
}

.file\:bg-transparent::file-selector-button {
  background-color: rgba(0, 0, 0, 0);
}

.file\:text-sm::file-selector-button {
  font-size: var(--text-sm);
  line-height: var(--tw-leading,var(--text-sm--line-height));
}

.file\:font-medium::file-selector-button {
  --tw-font-weight: var(--font-weight-medium);
  font-weight: var(--font-weight-medium);
}

.file\:text-foreground::file-selector-button {
  color: var(--foreground);
}

.placeholder\:text-foreground\/40::placeholder {
  color: var(--foreground);
}

@supports (color:color-mix(in lab, red, red)) {
  .placeholder\:text-foreground\/40::placeholder {
  color: color-mix(in oklab, var(--foreground) 40%, transparent);
  }
}

.placeholder\:text-muted-foreground::placeholder {
  color: var(--muted-foreground);
}

.after\:absolute::after {
  content: var(--tw-content);
  position: absolute;
}

.after\:-inset-2::after {
  content: var(--tw-content);
  inset: calc(var(--spacing) * -2);
}

.after\:inset-y-0::after {
  content: var(--tw-content);
  inset-block: calc(var(--spacing) * 0);
}

.after\:left-1\/2::after {
  content: var(--tw-content);
  left: 50%;
}

.after\:w-1::after {
  content: var(--tw-content);
  width: calc(var(--spacing) * 1);
}

.after\:w-\[2px\]::after {
  content: var(--tw-content);
  width: 2px;
}

.after\:-translate-x-1\/2::after {
  content: var(--tw-content);
  --tw-translate-x: calc(calc(1 / 2 * 100%) * -1);
  translate: var(--tw-translate-x) var(--tw-translate-y);
}

.group-data-\[collapsible\=offcanvas\]\:after\:left-full:is(:where(.group)[data-collapsible="offcanvas"] *)::after {
  content: var(--tw-content);
  left: 100%;
}

.first\:rounded-l-md:first-child {
  border-top-left-radius: calc(var(--radius) - 2px);
  border-bottom-left-radius: calc(var(--radius) - 2px);
}

.first\:border-l:first-child {
  border-left-style: var(--tw-border-style);
  border-left-width: 1px;
}

.last\:rounded-r-md:last-child {
  border-top-right-radius: calc(var(--radius) - 2px);
  border-bottom-right-radius: calc(var(--radius) - 2px);
}

@media (hover: hover) {
  .hover\:scale-\[1\.02\]:hover {
  scale: 1.02;
  }
}

@media (hover: hover) {
  .hover\:scale-\[1\.03\]:hover {
  scale: 1.03;
  }
}

@media (hover: hover) {
  .hover\:border-brand:hover, .hover\:border-brand\/50:hover {
  border-color: var(--brand);
  }
}

@media (hover: hover) {
  .hover\:bg-accent:hover {
  background-color: var(--accent);
  }
}

@media (hover: hover) {
  .hover\:bg-brand\/20:hover {
  background-color: var(--brand);
  }
}

@media (hover: hover) {
  .hover\:bg-destructive\/80:hover {
  background-color: var(--destructive);
  }
}

@media (hover: hover) {
  .hover\:bg-destructive\/90:hover {
  background-color: var(--destructive);
  }
}

@media (hover: hover) {
  .hover\:bg-muted:hover, .hover\:bg-muted\/50:hover {
  background-color: var(--muted);
  }
}

@media (hover: hover) {
  .hover\:bg-primary\/80:hover {
  background-color: var(--primary);
  }
}

@media (hover: hover) {
  .hover\:bg-primary\/90:hover {
  background-color: var(--primary);
  }
}

@media (hover: hover) {
  .hover\:bg-secondary\/80:hover {
  background-color: var(--secondary);
  }
}

@media (hover: hover) {
  .hover\:text-accent-foreground:hover {
  color: var(--accent-foreground);
  }
}

@media (hover: hover) {
  .hover\:text-brand-glow:hover {
  color: var(--brand-glow);
  }
}

@media (hover: hover) {
  .hover\:text-foreground:hover {
  color: var(--foreground);
  }
}

@media (hover: hover) {
  .hover\:text-muted-foreground:hover {
  color: var(--muted-foreground);
  }
}

@media (hover: hover) {
  .hover\:underline:hover {
  text-decoration-line: underline;
  }
}

@media (hover: hover) {
  .hover\:opacity-100:hover {
  opacity: 1;
  }
}

@media (hover: hover) {
  .hover\:shadow-\[0_0_0_1px_var\(--sidebar-accent\)\]:hover {
  --tw-shadow: 0 0 0 1px var(--tw-shadow-color,var(--sidebar-accent));
  box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }
}

.focus\:border-brand:focus {
  border-color: var(--brand);
}

.focus\:bg-accent:focus {
  background-color: var(--accent);
}

.focus\:bg-input:focus {
  background-color: var(--input);
}

.focus\:text-accent-foreground:focus {
  color: var(--accent-foreground);
}

.focus\:ring-1:focus {
  --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color,currentcolor);
  box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}

.focus\:ring-2:focus {
  --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color,currentcolor);
  box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}

.focus\:ring-ring:focus {
  --tw-ring-color: var(--ring);
}

.focus\:ring-offset-2:focus {
  --tw-ring-offset-width: 2px;
  --tw-ring-offset-shadow: var(--tw-ring-inset,) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
}

.focus\:outline-none:focus {
  --tw-outline-style: none;
  outline-style: none;
}

.focus-visible\:ring-1:focus-visible {
  --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color,currentcolor);
  box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}

.focus-visible\:ring-2:focus-visible {
  --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color,currentcolor);
  box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}

.focus-visible\:ring-ring:focus-visible {
  --tw-ring-color: var(--ring);
}

.focus-visible\:ring-offset-1:focus-visible {
  --tw-ring-offset-width: 1px;
  --tw-ring-offset-shadow: var(--tw-ring-inset,) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
}

.focus-visible\:ring-offset-2:focus-visible {
  --tw-ring-offset-width: 2px;
  --tw-ring-offset-shadow: var(--tw-ring-inset,) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
}

.focus-visible\:ring-offset-background:focus-visible {
  --tw-ring-offset-color: var(--background);
}

.focus-visible\:outline-none:focus-visible {
  --tw-outline-style: none;
  outline-style: none;
}

.disabled\:pointer-events-none:disabled {
  pointer-events: none;
}

.disabled\:cursor-not-allowed:disabled {
  cursor: not-allowed;
}

.disabled\:opacity-50:disabled {
  opacity: 0.5;
}

.has-focus\:border-ring:has(:focus) {
  border-color: var(--ring);
}

.has-focus\:ring-\[3px\]:has(:focus) {
  --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color,currentcolor);
  box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}

.has-focus\:ring-ring\/50:has(:focus) {
  --tw-ring-color: var(--ring);
}

@supports (color:color-mix(in lab, red, red)) {
  .has-focus\:ring-ring\/50:has(:focus) {
  --tw-ring-color: color-mix(in oklab, var(--ring) 50%, transparent);
  }
}

.has-\[\:disabled\]\:opacity-50:has(:disabled) {
  opacity: 0.5;
}

.aria-disabled\:pointer-events-none[aria-disabled="true"] {
  pointer-events: none;
}

.aria-disabled\:opacity-50[aria-disabled="true"] {
  opacity: 0.5;
}

.aria-selected\:text-muted-foreground[aria-selected="true"] {
  color: var(--muted-foreground);
}

.data-\[active\=true\]\:font-medium[data-active="true"] {
  --tw-font-weight: var(--font-weight-medium);
  font-weight: var(--font-weight-medium);
}

.data-\[disabled\]\:pointer-events-none[data-disabled] {
  pointer-events: none;
}

.data-\[disabled\]\:opacity-50[data-disabled] {
  opacity: 0.5;
}

.data-\[disabled\=true\]\:pointer-events-none[data-disabled="true"] {
  pointer-events: none;
}

.data-\[disabled\=true\]\:opacity-50[data-disabled="true"] {
  opacity: 0.5;
}

.data-\[motion\=from-end\]\:slide-in-from-right-52[data-motion="from-end"] {
  --tw-enter-translate-x: calc(52*var(--spacing));
}

.data-\[motion\=from-start\]\:slide-in-from-left-52[data-motion="from-start"] {
  --tw-enter-translate-x: calc(52*var(--spacing)*-1);
}

.data-\[motion\=to-end\]\:slide-out-to-right-52[data-motion="to-end"] {
  --tw-exit-translate-x: calc(52*var(--spacing));
}

.data-\[motion\=to-start\]\:slide-out-to-left-52[data-motion="to-start"] {
  --tw-exit-translate-x: calc(52*var(--spacing)*-1);
}

.data-\[motion\^\=from-\]\:animate-in[data-motion^="from-"] {
  animation: enter var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none);
}

.data-\[motion\^\=from-\]\:fade-in[data-motion^="from-"] {
  --tw-enter-opacity: 0;
}

.data-\[motion\^\=to-\]\:animate-out[data-motion^="to-"] {
  animation: exit var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none);
}

.data-\[motion\^\=to-\]\:fade-out[data-motion^="to-"] {
  --tw-exit-opacity: 0;
}

.data-\[panel-group-direction\=vertical\]\:h-px[data-panel-group-direction="vertical"] {
  height: 1px;
}

.data-\[panel-group-direction\=vertical\]\:w-full[data-panel-group-direction="vertical"] {
  width: 100%;
}

.data-\[panel-group-direction\=vertical\]\:flex-col[data-panel-group-direction="vertical"] {
  flex-direction: column;
}

.data-\[panel-group-direction\=vertical\]\:after\:left-0[data-panel-group-direction="vertical"]::after {
  content: var(--tw-content);
  left: calc(var(--spacing) * 0);
}

.data-\[panel-group-direction\=vertical\]\:after\:h-1[data-panel-group-direction="vertical"]::after {
  content: var(--tw-content);
  height: calc(var(--spacing) * 1);
}

.data-\[panel-group-direction\=vertical\]\:after\:w-full[data-panel-group-direction="vertical"]::after {
  content: var(--tw-content);
  width: 100%;
}

.data-\[panel-group-direction\=vertical\]\:after\:translate-x-0[data-panel-group-direction="vertical"]::after {
  content: var(--tw-content);
  --tw-translate-x: calc(var(--spacing) * 0);
  translate: var(--tw-translate-x) var(--tw-translate-y);
}

.data-\[panel-group-direction\=vertical\]\:after\:-translate-y-1\/2[data-panel-group-direction="vertical"]::after {
  content: var(--tw-content);
  --tw-translate-y: calc(calc(1 / 2 * 100%) * -1);
  translate: var(--tw-translate-x) var(--tw-translate-y);
}

.data-\[placeholder\]\:text-muted-foreground[data-placeholder] {
  color: var(--muted-foreground);
}

.data-\[range-end\=true\]\:rounded-md[data-range-end="true"] {
  border-radius: calc(var(--radius) - 2px);
}

.data-\[range-end\=true\]\:bg-primary[data-range-end="true"] {
  background-color: var(--primary);
}

.data-\[range-end\=true\]\:text-primary-foreground[data-range-end="true"] {
  color: var(--primary-foreground);
}

.data-\[range-middle\=true\]\:rounded-none[data-range-middle="true"] {
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}

.data-\[range-middle\=true\]\:bg-accent[data-range-middle="true"] {
  background-color: var(--accent);
}

.data-\[range-middle\=true\]\:text-accent-foreground[data-range-middle="true"] {
  color: var(--accent-foreground);
}

.data-\[range-start\=true\]\:rounded-md[data-range-start="true"] {
  border-radius: calc(var(--radius) - 2px);
}

.data-\[range-start\=true\]\:bg-primary[data-range-start="true"] {
  background-color: var(--primary);
}

.data-\[range-start\=true\]\:text-primary-foreground[data-range-start="true"] {
  color: var(--primary-foreground);
}

.data-\[selected-single\=true\]\:bg-primary[data-selected-single="true"] {
  background-color: var(--primary);
}

.data-\[selected-single\=true\]\:text-primary-foreground[data-selected-single="true"] {
  color: var(--primary-foreground);
}

.data-\[selected\=true\]\:rounded-none[data-selected="true"] {
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}

.data-\[selected\=true\]\:bg-accent[data-selected="true"] {
  background-color: var(--accent);
}

.data-\[selected\=true\]\:text-accent-foreground[data-selected="true"] {
  color: var(--accent-foreground);
}

.data-\[side\=bottom\]\:translate-y-1[data-side="bottom"] {
  --tw-translate-y: calc(var(--spacing) * 1);
  translate: var(--tw-translate-x) var(--tw-translate-y);
}

.data-\[side\=bottom\]\:slide-in-from-top-2[data-side="bottom"] {
  --tw-enter-translate-y: calc(2*var(--spacing)*-1);
}

.data-\[side\=left\]\:-translate-x-1[data-side="left"] {
  --tw-translate-x: calc(var(--spacing) * -1);
  translate: var(--tw-translate-x) var(--tw-translate-y);
}

.data-\[side\=left\]\:slide-in-from-right-2[data-side="left"] {
  --tw-enter-translate-x: calc(2*var(--spacing));
}

.data-\[side\=right\]\:translate-x-1[data-side="right"] {
  --tw-translate-x: calc(var(--spacing) * 1);
  translate: var(--tw-translate-x) var(--tw-translate-y);
}

.data-\[side\=right\]\:slide-in-from-left-2[data-side="right"] {
  --tw-enter-translate-x: calc(2*var(--spacing)*-1);
}

.data-\[side\=top\]\:-translate-y-1[data-side="top"] {
  --tw-translate-y: calc(var(--spacing) * -1);
  translate: var(--tw-translate-x) var(--tw-translate-y);
}

.data-\[side\=top\]\:slide-in-from-bottom-2[data-side="top"] {
  --tw-enter-translate-y: calc(2*var(--spacing));
}

.data-\[state\=active\]\:bg-background[data-state="active"] {
  background-color: var(--background);
}

.data-\[state\=active\]\:text-foreground[data-state="active"] {
  color: var(--foreground);
}

.data-\[state\=active\]\:shadow[data-state="active"] {
  --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color,#0000001a), 0 1px 2px -1px var(--tw-shadow-color,#0000001a);
  box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}

.data-\[state\=checked\]\:translate-x-4[data-state="checked"] {
  --tw-translate-x: calc(var(--spacing) * 4);
  translate: var(--tw-translate-x) var(--tw-translate-y);
}

.data-\[state\=checked\]\:bg-primary[data-state="checked"] {
  background-color: var(--primary);
}

.data-\[state\=checked\]\:text-primary-foreground[data-state="checked"] {
  color: var(--primary-foreground);
}

.data-\[state\=closed\]\:animate-accordion-up[data-state="closed"] {
  animation: accordion-up var(--tw-animation-duration,var(--tw-duration,.2s))var(--tw-ease,ease-out)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none);
}

.data-\[state\=closed\]\:animate-out[data-state="closed"] {
  animation: exit var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none);
}

.data-\[state\=closed\]\:duration-300[data-state="closed"] {
  --tw-duration: .3s;
  transition-duration: 0.3s;
}

.data-\[state\=closed\]\:fade-out-0[data-state="closed"] {
  --tw-exit-opacity: 0;
}

.data-\[state\=closed\]\:zoom-out-95[data-state="closed"] {
  --tw-exit-scale: .95;
}

.data-\[state\=closed\]\:slide-out-to-bottom[data-state="closed"] {
  --tw-exit-translate-y: 100%;
}

.data-\[state\=closed\]\:slide-out-to-left[data-state="closed"] {
  --tw-exit-translate-x: -100%;
}

.data-\[state\=closed\]\:slide-out-to-right[data-state="closed"] {
  --tw-exit-translate-x: 100%;
}

.data-\[state\=closed\]\:slide-out-to-top[data-state="closed"] {
  --tw-exit-translate-y: -100%;
}

.data-\[state\=hidden\]\:animate-out[data-state="hidden"] {
  animation: exit var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none);
}

.data-\[state\=hidden\]\:fade-out[data-state="hidden"] {
  --tw-exit-opacity: 0;
}

.data-\[state\=on\]\:bg-accent[data-state="on"] {
  background-color: var(--accent);
}

.data-\[state\=on\]\:text-accent-foreground[data-state="on"] {
  color: var(--accent-foreground);
}

.data-\[state\=open\]\:animate-accordion-down[data-state="open"] {
  animation: accordion-down var(--tw-animation-duration,var(--tw-duration,.2s))var(--tw-ease,ease-out)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none);
}

.data-\[state\=open\]\:animate-in[data-state="open"] {
  animation: enter var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none);
}

.data-\[state\=open\]\:bg-accent[data-state="open"], .data-\[state\=open\]\:bg-accent\/50[data-state="open"] {
  background-color: var(--accent);
}

@supports (color:color-mix(in lab, red, red)) {
  .data-\[state\=open\]\:bg-accent\/50[data-state="open"] {
  background-color: color-mix(in oklab, var(--accent) 50%, transparent);
  }
}

.data-\[state\=open\]\:bg-secondary[data-state="open"] {
  background-color: var(--secondary);
}

.data-\[state\=open\]\:text-accent-foreground[data-state="open"] {
  color: var(--accent-foreground);
}

.data-\[state\=open\]\:text-muted-foreground[data-state="open"] {
  color: var(--muted-foreground);
}

.data-\[state\=open\]\:opacity-100[data-state="open"] {
  opacity: 1;
}

.data-\[state\=open\]\:duration-500[data-state="open"] {
  --tw-duration: .5s;
  transition-duration: 0.5s;
}

.data-\[state\=open\]\:fade-in-0[data-state="open"] {
  --tw-enter-opacity: 0;
}

.data-\[state\=open\]\:zoom-in-90[data-state="open"] {
  --tw-enter-scale: .9;
}

.data-\[state\=open\]\:zoom-in-95[data-state="open"] {
  --tw-enter-scale: .95;
}

.data-\[state\=open\]\:slide-in-from-bottom[data-state="open"] {
  --tw-enter-translate-y: 100%;
}

.data-\[state\=open\]\:slide-in-from-left[data-state="open"] {
  --tw-enter-translate-x: -100%;
}

.data-\[state\=open\]\:slide-in-from-right[data-state="open"] {
  --tw-enter-translate-x: 100%;
}

.data-\[state\=open\]\:slide-in-from-top[data-state="open"] {
  --tw-enter-translate-y: -100%;
}

@media (hover: hover) {
  .data-\[state\=open\]\:hover\:bg-accent[data-state="open"]:hover {
  background-color: var(--accent);
  }
}

.data-\[state\=open\]\:focus\:bg-accent[data-state="open"]:focus {
  background-color: var(--accent);
}

.data-\[state\=selected\]\:bg-muted[data-state="selected"] {
  background-color: var(--muted);
}

.data-\[state\=unchecked\]\:translate-x-0[data-state="unchecked"] {
  --tw-translate-x: calc(var(--spacing) * 0);
  translate: var(--tw-translate-x) var(--tw-translate-y);
}

.data-\[state\=unchecked\]\:bg-input[data-state="unchecked"] {
  background-color: var(--input);
}

.data-\[state\=visible\]\:animate-in[data-state="visible"] {
  animation: enter var(--tw-animation-duration,var(--tw-duration,.15s))var(--tw-ease,ease)var(--tw-animation-delay,0s)var(--tw-animation-iteration-count,1)var(--tw-animation-direction,normal)var(--tw-animation-fill-mode,none);
}

.data-\[state\=visible\]\:fade-in[data-state="visible"] {
  --tw-enter-opacity: 0;
}

@media (width >= 40rem) {
  .sm\:mt-0 {
  margin-top: calc(var(--spacing) * 0);
  }
}

@media (width >= 40rem) {
  .sm\:flex {
  display: flex;
  }
}

@media (width >= 40rem) {
  .sm\:max-w-sm {
  max-width: var(--container-sm);
  }
}

@media (width >= 40rem) {
  .sm\:grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0px, 1fr));
  }
}

@media (width >= 40rem) {
  .sm\:flex-row {
  flex-direction: row;
  }
}

@media (width >= 40rem) {
  .sm\:justify-end {
  justify-content: flex-end;
  }
}

@media (width >= 40rem) {
  .sm\:gap-2\.5 {
  gap: calc(var(--spacing) * 2.5);
  }
}

@media (width >= 40rem) {
  :where(.sm\:space-x-2 > :not(:last-child)) {
  --tw-space-x-reverse: 0;
  margin-inline-start: calc(calc(var(--spacing) * 2) * var(--tw-space-x-reverse));
  margin-inline-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-x-reverse)));
  }
}

@media (width >= 40rem) {
  .sm\:rounded-lg {
  border-radius: var(--radius);
  }
}

@media (width >= 40rem) {
  .sm\:p-10 {
  padding: calc(var(--spacing) * 10);
  }
}

@media (width >= 40rem) {
  .sm\:text-left {
  text-align: left;
  }
}

@media (width >= 40rem) {
  .sm\:text-4xl {
  font-size: var(--text-4xl);
  line-height: var(--tw-leading,var(--text-4xl--line-height));
  }
}

@media (width >= 40rem) {
  .sm\:text-5xl {
  font-size: var(--text-5xl);
  line-height: var(--tw-leading,var(--text-5xl--line-height));
  }
}

@media (width >= 40rem) {
  .sm\:text-6xl {
  font-size: var(--text-6xl);
  line-height: var(--tw-leading,var(--text-6xl--line-height));
  }
}

@media (width >= 40rem) {
  .sm\:text-lg {
  font-size: var(--text-lg);
  line-height: var(--tw-leading,var(--text-lg--line-height));
  }
}

@media (width >= 40rem) {
  .sm\:text-xl {
  font-size: var(--text-xl);
  line-height: var(--tw-leading,var(--text-xl--line-height));
  }
}

@media (width >= 40rem) {
  .sm\:text-\[68px\] {
  font-size: 68px;
  }
}

@media (width >= 48rem) {
  .md\:absolute {
  position: absolute;
  }
}

@media (width >= 48rem) {
  .md\:col-span-2 {
  grid-column-start: span 2;
  grid-column-end: span 2;
  }
}

@media (width >= 48rem) {
  .md\:row-span-2 {
  grid-row-start: span 2;
  grid-row-end: span 2;
  }
}

@media (width >= 48rem) {
  .md\:block {
  display: block;
  }
}

@media (width >= 48rem) {
  .md\:flex {
  display: flex;
  }
}

@media (min-width: 768px) {
  .md\:flex {
  display: flex;
  }
}

@media (width >= 48rem) {
  .md\:inline-block {
  display: inline-block;
  }
}

@media (min-width: 768px) {
  .md\:inline-block {
  display: inline-block;
  }
}

@media (width >= 48rem) {
  .md\:w-\[var\(--radix-navigation-menu-viewport-width\)\] {
  width: var(--radix-navigation-menu-viewport-width);
  }
}

@media (width >= 48rem) {
  .md\:w-auto {
  width: auto;
  }
}

@media (width >= 48rem) {
  .md\:grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0px, 1fr));
  }
}

@media (min-width: 768px) {
  .md\:grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0px, 1fr));
  }
}

@media (width >= 48rem) {
  .md\:grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0px, 1fr));
  }
}

@media (min-width: 768px) {
  .md\:grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0px, 1fr));
  }
}

@media (width >= 48rem) {
  .md\:grid-rows-2 {
  grid-template-rows: repeat(2, minmax(0px, 1fr));
  }
}

@media (width >= 48rem) {
  .md\:flex-row {
  flex-direction: row;
  }
}

@media (width >= 48rem) {
  .md\:items-end {
  align-items: flex-end;
  }
}

@media (width >= 48rem) {
  .md\:text-sm {
  font-size: var(--text-sm);
  line-height: var(--tw-leading,var(--text-sm--line-height));
  }
}

@media (width >= 48rem) {
  .md\:opacity-0 {
  opacity: 0;
  }
}

@media (width >= 48rem) {
  .md\:peer-data-\[variant\=inset\]\:m-2:is(:where(.peer)[data-variant="inset"] ~ *) {
  margin: calc(var(--spacing) * 2);
  }
}

@media (width >= 48rem) {
  .md\:peer-data-\[variant\=inset\]\:ml-0:is(:where(.peer)[data-variant="inset"] ~ *) {
  margin-left: calc(var(--spacing) * 0);
  }
}

@media (width >= 48rem) {
  .md\:peer-data-\[variant\=inset\]\:rounded-xl:is(:where(.peer)[data-variant="inset"] ~ *) {
  border-radius: calc(var(--radius) + 4px);
  }
}

@media (width >= 48rem) {
  .md\:peer-data-\[variant\=inset\]\:shadow:is(:where(.peer)[data-variant="inset"] ~ *) {
  --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color,#0000001a), 0 1px 2px -1px var(--tw-shadow-color,#0000001a);
  box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }
}

@media (width >= 48rem) {
  .md\:peer-data-\[state\=collapsed\]\:peer-data-\[variant\=inset\]\:ml-2:is(:where(.peer)[data-state="collapsed"] ~ *):is(:where(.peer)[data-variant="inset"] ~ *) {
  margin-left: calc(var(--spacing) * 2);
  }
}

.after\:md\:hidden::after {
  content: var(--tw-content);
}

@media (width >= 48rem) {
  .after\:md\:hidden::after {
  display: none;
  }
}

@media (width >= 64rem) {
  .lg\:grid-cols-\[1\.05fr_1fr\] {
  grid-template-columns: 1.05fr 1fr;
  }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-\[1\.05fr_1fr\] {
  grid-template-columns: 1.05fr 1fr;
  }
}

@media (width >= 64rem) {
  .lg\:grid-cols-\[1fr_1\.1fr\] {
  grid-template-columns: 1fr 1.1fr;
  }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-\[1fr_1\.1fr\] {
  grid-template-columns: 1fr 1.1fr;
  }
}

@media (width >= 64rem) {
  .lg\:items-center {
  align-items: center;
  }
}

@media (width >= 64rem) {
  .lg\:gap-8 {
  gap: calc(var(--spacing) * 8);
  }
}

@media (width >= 64rem) {
  .lg\:px-10 {
  padding-inline: calc(var(--spacing) * 10);
  }
}

@media (min-width: 1024px) {
  .lg\:px-10 {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  }
}

@media (width >= 64rem) {
  .lg\:py-32 {
  padding-block: calc(var(--spacing) * 32);
  }
}

@media (min-width: 1024px) {
  .lg\:py-32 {
  padding-top: 8rem;
  padding-bottom: 8rem;
  }
}

@media (width >= 64rem) {
  .lg\:pt-20 {
  padding-top: calc(var(--spacing) * 20);
  }
}

@media (width >= 64rem) {
  .lg\:text-6xl {
  font-size: var(--text-6xl);
  line-height: var(--tw-leading,var(--text-6xl--line-height));
  }
}

@media (width >= 64rem) {
  .lg\:text-\[56px\] {
  font-size: 56px;
  }
}

@media (width >= 64rem) {
  .lg\:text-\[62px\] {
  font-size: 62px;
  }
}

@media (width >= 64rem) {
  .lg\:text-\[76px\] {
  font-size: 76px;
  }
}

@media (width >= 64rem) {
  .lg\:text-\[82px\] {
  font-size: 82px;
  }
}

.dark\:border-destructive:is(.dark *) {
  border-color: var(--destructive);
}

.\[\&_\.recharts-cartesian-axis-tick_text\]\:fill-muted-foreground .recharts-cartesian-axis-tick text {
  fill: var(--muted-foreground);
}

.\[\&_\.recharts-cartesian-grid_line\[stroke\=\'\#ccc\'\]\]\:stroke-border\/50 .recharts-cartesian-grid line[stroke="#ccc"] {
  stroke: var(--border);
}

@supports (color:color-mix(in lab, red, red)) {
  .\[\&_\.recharts-cartesian-grid_line\[stroke\=\'\#ccc\'\]\]\:stroke-border\/50 .recharts-cartesian-grid line[stroke="#ccc"] {
  stroke: color-mix(in oklab, var(--border) 50%, transparent);
  }
}

.\[\&_\.recharts-curve\.recharts-tooltip-cursor\]\:stroke-border .recharts-curve.recharts-tooltip-cursor {
  stroke: var(--border);
}

.\[\&_\.recharts-dot\[stroke\=\'\#fff\'\]\]\:stroke-transparent .recharts-dot[stroke="#fff"] {
  stroke: rgba(0, 0, 0, 0);
}

.\[\&_\.recharts-layer\]\:outline-none .recharts-layer {
  --tw-outline-style: none;
  outline-style: none;
}

.\[\&_\.recharts-polar-grid_\[stroke\=\'\#ccc\'\]\]\:stroke-border .recharts-polar-grid [stroke="#ccc"] {
  stroke: var(--border);
}

.\[\&_\.recharts-radial-bar-background-sector\]\:fill-muted .recharts-radial-bar-background-sector, .\[\&_\.recharts-rectangle\.recharts-tooltip-cursor\]\:fill-muted .recharts-rectangle.recharts-tooltip-cursor {
  fill: var(--muted);
}

.\[\&_\.recharts-reference-line_\[stroke\=\'\#ccc\'\]\]\:stroke-border .recharts-reference-line [stroke="#ccc"] {
  stroke: var(--border);
}

.\[\&_\.recharts-sector\]\:outline-none .recharts-sector {
  --tw-outline-style: none;
  outline-style: none;
}

.\[\&_\.recharts-sector\[stroke\=\'\#fff\'\]\]\:stroke-transparent .recharts-sector[stroke="#fff"] {
  stroke: rgba(0, 0, 0, 0);
}

.\[\&_\.recharts-surface\]\:outline-none .recharts-surface {
  --tw-outline-style: none;
  outline-style: none;
}

.\[\&_\[cmdk-group-heading\]\]\:text-xs [cmdk-group-heading] {
  font-size: var(--text-xs);
  line-height: var(--tw-leading,var(--text-xs--line-height));
}

.\[\&_\[cmdk-group-heading\]\]\:font-medium [cmdk-group-heading] {
  --tw-font-weight: var(--font-weight-medium);
  font-weight: var(--font-weight-medium);
}

.\[\&_\[cmdk-group-heading\]\]\:text-muted-foreground [cmdk-group-heading] {
  color: var(--muted-foreground);
}

.\[\&_\[cmdk-group\]\:not\(\[hidden\]\)_\~\[cmdk-group\]\]\:pt-0 [cmdk-group]:not([hidden]) ~ [cmdk-group] {
  padding-top: calc(var(--spacing) * 0);
}

.\[\&_\[cmdk-input-wrapper\]_svg\]\:h-5 [cmdk-input-wrapper] svg {
  height: calc(var(--spacing) * 5);
}

.\[\&_\[cmdk-input-wrapper\]_svg\]\:w-5 [cmdk-input-wrapper] svg {
  width: calc(var(--spacing) * 5);
}

.\[\&_\[cmdk-input\]\]\:h-12 [cmdk-input] {
  height: calc(var(--spacing) * 12);
}

.\[\&_\[cmdk-item\]_svg\]\:h-5 [cmdk-item] svg {
  height: calc(var(--spacing) * 5);
}

.\[\&_\[cmdk-item\]_svg\]\:w-5 [cmdk-item] svg {
  width: calc(var(--spacing) * 5);
}

.\[\&_p\]\:leading-relaxed p {
  --tw-leading: var(--leading-relaxed);
  line-height: var(--leading-relaxed);
}

.\[\&_svg\]\:pointer-events-none svg {
  pointer-events: none;
}

.\[\&_svg\]\:size-4 svg {
  width: calc(var(--spacing) * 4);
  height: calc(var(--spacing) * 4);
}

.\[\&_svg\]\:shrink-0 svg {
  flex-shrink: 0;
}

.\[\&_tr\]\:border-b tr {
  border-bottom-style: var(--tw-border-style);
  border-bottom-width: 1px;
}

.\[\&_tr\:last-child\]\:border-0 tr:last-child {
  border-top-width: 0px;
  border-right-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0px;
}

.\[\&\:first-child\[data-selected\=true\]_button\]\:rounded-l-md:first-child[data-selected="true"] button {
  border-top-left-radius: calc(var(--radius) - 2px);
  border-bottom-left-radius: calc(var(--radius) - 2px);
}

.\[\&\:has\(\[role\=checkbox\]\)\]\:pr-0:has([role="checkbox"]) {
  padding-right: calc(var(--spacing) * 0);
}

:is(.rtl\:\*\*\:\[\.rdp-button\\_next\>svg\]\:rotate-180:where(:is(:lang(ae), :lang(ar), :lang(arc), :lang(bcc), :lang(bqi), :lang(ckb), :lang(dv), :lang(fa), :lang(glk), :lang(he), :lang(ku), :lang(mzn), :lang(nqo), :lang(pnb), :lang(ps), :lang(sd), :lang(ug), :lang(ur), :lang(yi)), [dir="rtl"], [dir="rtl"] *) *):is(.rdp-button_next > svg), :is(.rtl\:\*\*\:\[\.rdp-button\\_previous\>svg\]\:rotate-180:where(:is(:lang(ae), :lang(ar), :lang(arc), :lang(bcc), :lang(bqi), :lang(ckb), :lang(dv), :lang(fa), :lang(glk), :lang(he), :lang(ku), :lang(mzn), :lang(nqo), :lang(pnb), :lang(ps), :lang(sd), :lang(ug), :lang(ur), :lang(yi)), [dir="rtl"], [dir="rtl"] *) *):is(.rdp-button_previous > svg) {
  rotate: 180deg;
}

.\[\&\:last-child\[data-selected\=true\]_button\]\:rounded-r-md:last-child[data-selected="true"] button {
  border-top-right-radius: calc(var(--radius) - 2px);
  border-bottom-right-radius: calc(var(--radius) - 2px);
}

.\[\&\>\[role\=checkbox\]\]\:translate-y-\[2px\] > [role="checkbox"] {
  --tw-translate-y: 2px;
  translate: var(--tw-translate-x) var(--tw-translate-y);
}

.\[\&\>button\]\:hidden > button {
  display: none;
}

.\[\&\>span\]\:line-clamp-1 > span {
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow-x: hidden;
  overflow-y: hidden;
}

.\[\&\>span\]\:text-xs > span {
  font-size: var(--text-xs);
  line-height: var(--tw-leading,var(--text-xs--line-height));
}

.\[\&\>span\]\:opacity-70 > span {
  opacity: 0.7;
}

.\[\&\>span\:last-child\]\:truncate > span:last-child {
  text-overflow: ellipsis;
  white-space-collapse: collapse;
  text-wrap-mode: nowrap;
  overflow-x: hidden;
  overflow-y: hidden;
}

.\[\&\>svg\]\:absolute > svg {
  position: absolute;
}

.\[\&\>svg\]\:top-4 > svg {
  top: calc(var(--spacing) * 4);
}

.\[\&\>svg\]\:left-4 > svg {
  left: calc(var(--spacing) * 4);
}

.\[\&\>svg\]\:size-3\.5 > svg {
  width: calc(var(--spacing) * 3.5);
  height: calc(var(--spacing) * 3.5);
}

.\[\&\>svg\]\:size-4 > svg {
  width: calc(var(--spacing) * 4);
  height: calc(var(--spacing) * 4);
}

.\[\&\>svg\]\:h-2\.5 > svg {
  height: calc(var(--spacing) * 2.5);
}

.\[\&\>svg\]\:h-3 > svg {
  height: calc(var(--spacing) * 3);
}

.\[\&\>svg\]\:h-3\.5 > svg {
  height: calc(var(--spacing) * 3.5);
}

.\[\&\>svg\]\:w-2\.5 > svg {
  width: calc(var(--spacing) * 2.5);
}

.\[\&\>svg\]\:w-3 > svg {
  width: calc(var(--spacing) * 3);
}

.\[\&\>svg\]\:w-3\.5 > svg {
  width: calc(var(--spacing) * 3.5);
}

.\[\&\>svg\]\:shrink-0 > svg {
  flex-shrink: 0;
}

.\[\&\>svg\]\:text-destructive > svg {
  color: var(--destructive);
}

.\[\&\>svg\]\:text-foreground > svg {
  color: var(--foreground);
}

.\[\&\>svg\]\:text-muted-foreground > svg {
  color: var(--muted-foreground);
}

.\[\&\>svg\+div\]\:translate-y-\[-3px\] > svg + div {
  --tw-translate-y: -3px;
  translate: var(--tw-translate-x) var(--tw-translate-y);
}

.\[\&\>svg\~\*\]\:pl-7 > svg ~ * {
  padding-left: calc(var(--spacing) * 7);
}

.\[\&\>tr\]\:last\:border-b-0 > tr:last-child {
  border-bottom-style: var(--tw-border-style);
  border-bottom-width: 0px;
}

.\[\&\[data-panel-group-direction\=vertical\]\>div\]\:rotate-90[data-panel-group-direction="vertical"] > div {
  rotate: 90deg;
}

.\[\&\[data-state\=open\]\>svg\]\:rotate-180[data-state="open"] > svg {
  rotate: 180deg;
}

[data-side="left"] .\[\[data-side\=left\]_\&\]\:cursor-w-resize {
  cursor: w-resize;
}

[data-side="left"][data-collapsible="offcanvas"] .\[\[data-side\=left\]\[data-collapsible\=offcanvas\]_\&\]\:-right-2 {
  right: calc(var(--spacing) * -2);
}

[data-side="left"][data-state="collapsed"] .\[\[data-side\=left\]\[data-state\=collapsed\]_\&\]\:cursor-e-resize, [data-side="right"] .\[\[data-side\=right\]_\&\]\:cursor-e-resize {
  cursor: e-resize;
}

[data-side="right"][data-collapsible="offcanvas"] .\[\[data-side\=right\]\[data-collapsible\=offcanvas\]_\&\]\:-left-2 {
  left: calc(var(--spacing) * -2);
}

[data-side="right"][data-state="collapsed"] .\[\[data-side\=right\]\[data-state\=collapsed\]_\&\]\:cursor-w-resize {
  cursor: w-resize;
}

[data-slot="card-content"] .\[\[data-slot\=card-content\]_\&\]\:bg-transparent, [data-slot="popover-content"] .\[\[data-slot\=popover-content\]_\&\]\:bg-transparent {
  background-color: rgba(0, 0, 0, 0);
}

@keyframes pulse {
  50% {
    opacity: 0.5;
  }
}

@keyframes enter {
  0% {
    opacity: var(--tw-enter-opacity,1);
    transform: translate3d(var(--tw-enter-translate-x,0),var(--tw-enter-translate-y,0),0)scale3d(var(--tw-enter-scale,1),var(--tw-enter-scale,1),var(--tw-enter-scale,1))rotate(var(--tw-enter-rotate,0));
    filter: blur(var(--tw-enter-blur,0));
  }
}

@keyframes exit {
  100% {
    opacity: var(--tw-exit-opacity,1);
    transform: translate3d(var(--tw-exit-translate-x,0),var(--tw-exit-translate-y,0),0)scale3d(var(--tw-exit-scale,1),var(--tw-exit-scale,1),var(--tw-exit-scale,1))rotate(var(--tw-exit-rotate,0));
    filter: blur(var(--tw-exit-blur,0));
  }
}

@keyframes accordion-down {
  0% {
    height: 0px;
  }
  100% {
    height: var(--radix-accordion-content-height,var(--bits-accordion-content-height,var(--reka-accordion-content-height,var(--kb-accordion-content-height,var(--ngp-accordion-content-height,auto)))));
  }
}

@keyframes accordion-up {
  0% {
    height: var(--radix-accordion-content-height,var(--bits-accordion-content-height,var(--reka-accordion-content-height,var(--kb-accordion-content-height,var(--ngp-accordion-content-height,auto)))));
  }
  100% {
    height: 0px;
  }
}

@keyframes caret-blink {
  0%, 70%, 100% {
    opacity: 1;
  }
  20%, 50% {
    opacity: 0;
  }
}

header .hidden.md\:flex {
  display: flex;
  flex-direction: row;
  row-gap: 2rem;
  column-gap: 2rem;
}

header .hidden.md\:inline-block {
  display: inline-block;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  z-index: 1;
}

#about img {
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-3xl);
  width: 100%;
}

.group.relative.overflow-hidden {
  height: auto;
  min-height: 180px;
}

img[src="assets/ebook-mockup.png"] {
  content: url("https://images.unsplash.com/photo-1544716278-ca5e3f4abd8c?auto=format&fit=crop&w=800&q=80");
}

img[src="assets/hero-portrait.jpg"] {
  content: url("https://images.unsplash.com/photo-1534528741775-53994a69daeb?auto=format&fit=crop&w=800&q=80");
}

img[src="assets/testimonial-1.jpg"] {
  content: url("https://images.unsplash.com/photo-1494790108377-be9c29b29330?auto=format&fit=crop&w=150&q=80");
}

img[src="assets/testimonial-2.jpg"] {
  content: url("https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?auto=format&fit=crop&w=150&q=80");
}

.relative.-mt-24 {
  margin-top: 0px;
  padding-top: 4rem;
}

header {
  position: static;
  background-color: var(--bg-surface);
}

header .mx-auto.flex {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: auto;
}

header .flex.items-center.gap-2\.5 {
  flex-direction: row;
}

.inline-block {
  display: inline-block;
}

img[src*="ebook-mockup.png"] {
  content: url("https://images.unsplash.com/photo-1544716278-ca5e3f4abd8c?auto=format&fit=crop&w=800&q=80");
}

img[src*="hero-portrait.jpg"] {
  content: url("https://images.unsplash.com/photo-1534528741775-53994a69daeb?auto=format&fit=crop&w=800&q=80");
}

img[src*="testimonial-1.jpg"] {
  content: url("https://images.unsplash.com/photo-1494790108377-be9c29b29330?auto=format&fit=crop&w=150&q=80");
}

img[src*="testimonial-2.jpg"] {
  content: url("https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?auto=format&fit=crop&w=150&q=80");
}

section, header, footer {
  position: relative;
  height: auto;
  min-height: auto;
}

.relative.flex.min-h-screen {
  min-height: auto;
  height: auto;
  padding: 4rem 0px;
}

* {
  box-sizing: border-box;
}

.bg-white\/5 {
  background-color: rgba(255, 255, 255, 0.05);
}

.bg-white\/10 {
  background-color: rgba(255, 255, 255, 0.1);
}

.bg-white\/20 {
  background-color: rgba(255, 255, 255, 0.2);
}

.text-white\/80 {
  color: rgba(255, 255, 255, 0.8);
}

.text-white\/60 {
  color: rgba(255, 255, 255, 0.6);
}

.text-white\/40 {
  color: rgba(255, 255, 255, 0.4);
}

.border-white\/10 {
  border-top-color: rgba(255, 255, 255, 0.1);
  border-right-color: rgba(255, 255, 255, 0.1);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  border-left-color: rgba(255, 255, 255, 0.1);
}

.border-white\/20 {
  border-top-color: rgba(255, 255, 255, 0.2);
  border-right-color: rgba(255, 255, 255, 0.2);
  border-bottom-color: rgba(255, 255, 255, 0.2);
  border-left-color: rgba(255, 255, 255, 0.2);
}

@media (min-width: 768px) {
  .md\:hidden {
  display: none;
  }
}

@media (min-width: 768px) {
  .md\:grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0px, 1fr));
  }
}

@media (min-width: 1024px) {
  .lg\:flex {
  display: flex;
  }
}

@media (min-width: 1024px) {
  .lg\:inline-block {
  display: inline-block;
  }
}

@media (min-width: 1024px) {
  .lg\:hidden {
  display: none;
  }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0px, 1fr));
  }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0px, 1fr));
  }
}

.funnel-page {
  font-family: var(--font-funnel-body);
  background: var(--funnel-bg);
  color: var(--funnel-text);
  overflow-x: hidden;
  overflow-y: hidden;
  max-width: 100%;
  display: block;
  min-height: 100vh;
  background-color: var(--funnel-bg);
}

.container {
  width: 100%;
  margin: 0px auto;
  max-width: 1200px;
  padding: 0px 24px;
  box-sizing: border-box;
  padding: 0 var(--space-l);
}

@media (max-width: 768px) {
  .container {
  width: min(100% - 28px, 1160px);
  }
}

.site-nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-m);
  position: relative;
  z-index: 10;
}

@media (max-width: 768px) {
  .site-nav {
  height: 64px;
  }
}

.brand-mark {
  display: flex;
  align-items: center;
  row-gap: 12px;
  column-gap: 12px;
  color: var(--foreground);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand-symbol {
  width: 36px;
  height: 36px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  background: var(--gradient-brand);
  display: grid;
  align-items: center;
  justify-items: center;
  box-shadow: var(--shadow-glow);
}

.nav-links a {
  color: var(--funnel-text);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--font-funnel-body);
  opacity: 0.85;
  transition-behavior: normal;
  transition-duration: 0.2s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: opacity;
}

.nav-links a:hover {
  color: var(--funnel-accent);
  opacity: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space-collapse: collapse;
  text-wrap-mode: nowrap;
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-bottom-left-radius: 999px;
  padding: 0.95em 1.7em;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  border: 1px solid color-mix(in oklch,var(--brand-glow) 45%,transparent);
  transition-behavior: normal, normal, normal;
  transition-duration: 0.25s, 0.25s, 0.25s;
  transition-timing-function: ease, ease, ease;
  transition-delay: 0s, 0s, 0s;
  transition-property: transform, box-shadow, background;
  font-family: var(--font-funnel-body);
  row-gap: 0.5em;
  column-gap: 0.5em;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  cursor: pointer;
}

@media (max-width: 768px) {
  .btn {
  padding: 14px 18px;
  }
}

.btn-primary {
  color: rgb(11, 8, 24);
  background: linear-gradient(135deg, var(--funnel-accent), var(--funnel-accent-2));
  box-shadow: rgba(107, 139, 255, 0.55) 0px 8px 30px -8px;
  padding: 16px 32px;
  font-size: 16px;
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: rgba(255, 141, 92, 0.55) 0px 14px 36px -8px;
}

.btn-ghost {
  color: var(--foreground);
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(255, 255, 255, 0.05);
  border-color: var(--border-primary);
}

.section {
  position: relative;
  padding: clamp(76px, 8vw, 124px) 0px;
  padding: var(--space-4xl) 0;
  overflow-x: hidden;
  overflow-y: hidden;
  background: var(--funnel-bg);
}

@media (max-width: 768px) {
  .section {
  padding: 72px 0px;
  }
}

.hero {
  min-height: 760px;
  background: var(--gradient-hero-bg);
  isolation: isolate;
  padding-top: 0px;
}

@media (max-width: 768px) {
  .hero {
  min-height: auto;
  }
}

.hero::before {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background-image: var(--grid-pattern);
  background-size: 44px 44px;
  mask-image: radial-gradient(72% 56% at 50% 20%, black, transparent 76%);
  opacity: 0.9;
  z-index: -1;
}

.hero::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 8%;
  width: 620px;
  height: 620px;
  transform: translateX(-10%);
  background-image: radial-gradient(circle, oklch(0.7 0.22 245 / 0.24), transparent 62%);
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  filter: blur(18px);
  z-index: -1;
}

.hero-grid {
  display: grid;
  row-gap: 48px;
  column-gap: 48px;
  align-items: center;
  padding: 72px 0px 100px;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

@media (min-width: 768px) {
  .hero-grid {
  grid-template-columns: 1.02fr 0.98fr;
  }
}

@media (min-width: 1024px) {
  .hero-grid {
  grid-template-columns: 1.05fr 0.95fr;
  }
}

@media (max-width: 768px) {
  .hero-grid {
  padding: 42px 0px 72px;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  row-gap: 0.5em;
  column-gap: 0.5em;
  color: var(--funnel-accent-2);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0px 0px var(--space-s);
  font-family: var(--font-funnel-body);
}

.eyebrow svg {
  width: 18px;
  height: 18px;
}

.hero h1, .section-title {
  font-family: var(--font-heading);
  letter-spacing: -0.055em;
  font-weight: 700;
  line-height: 1.12;
  margin: 0px;
  color: var(--foreground);
  padding: 0.06em 0px;
}

.hero h1 {
  font-size: clamp(42px, 6.5vw, 78px);
  max-width: 760px;
}

@media (max-width: 768px) {
  .hero h1 {
  font-size: clamp(38px, 12vw, 54px);
  }
}

.gradient-text {
  background: linear-gradient(90deg,var(--foreground) 0%,var(--brand-glow) 52%,var(--foreground) 100%);
  background-clip: text;
  color: transparent;
  padding: 0.08em 0px;
  line-height: 1.18;
}

.hero-sub {
  font-size: var(--text-l);
  line-height: 1.6;
  color: var(--funnel-dim);
  max-width: 520px;
  margin: 22px 0px 0px;
  font-family: var(--font-funnel-body);
  font-weight: 300;
  margin: 0 0 var(--space-xs) 0;
}

.hero-actions {
  display: flex;
  align-items: center;
  row-gap: 16px;
  column-gap: 16px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.trust-row {
  display: flex;
  align-items: center;
  row-gap: 14px;
  column-gap: 14px;
  margin-top: 24px;
  color: color-mix(in oklch,var(--foreground) 74%,transparent);
  font-size: var(--text-s);
}

@media (max-width: 768px) {
  .trust-row {
  align-items: flex-start;
  }
}

.avatar-stack {
  display: flex;
}

.avatar {
  width: 34px;
  height: 34px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  border: 2px solid var(--background);
  margin-left: -9px;
  background: linear-gradient(135deg,var(--brand-deep),var(--brand-glow));
  overflow-x: hidden;
  overflow-y: hidden;
}

.avatar:first-child {
  margin-left: 0px;
}

.avatar svg {
  width: 100%;
  height: 100%;
}

.ebook-stage {
  position: relative;
  min-height: 560px;
  perspective: 1200px;
}

@media (max-width: 768px) {
  .ebook-stage {
  min-height: 470px;
  }
}

.ebook-card {
  position: absolute;
  right: 4%;
  top: 34px;
  width: min(390px, 86vw);
  height: 500px;
  border-top-left-radius: 26px;
  border-top-right-radius: 26px;
  border-bottom-right-radius: 26px;
  border-bottom-left-radius: 26px;
  background-image: linear-gradient(145deg, oklch(0.93 0.03 245), oklch(0.78 0.08 250));
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  box-shadow: 0 50px 110px -48px #000,0 0 80px -22px var(--brand-glow);
  transform: rotateY(-20deg) rotateX(8deg) rotateZ(-2deg);
  transform-style: preserve-3d;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(255, 255, 255, 0.46);
  border-right-color: rgba(255, 255, 255, 0.46);
  border-bottom-color: rgba(255, 255, 255, 0.46);
  border-left-color: rgba(255, 255, 255, 0.46);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  padding: 34px;
  color: oklch(0.13 0.05 260);
}

@media (max-width: 768px) {
  .ebook-card {
  right: auto;
  left: 50%;
  transform: translateX(-50%) rotateY(-13deg) rotateX(6deg);
  height: 430px;
  }
}

.ebook-card::before {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  border-top-left-radius: 26px;
  border-top-right-radius: 26px;
  border-bottom-right-radius: 26px;
  border-bottom-left-radius: 26px;
  background-image: radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.95), transparent 30%), linear-gradient(135deg, transparent 52%, rgba(255, 255, 255, 0.45));
  background-position-x: initial, initial;
  background-position-y: initial, initial;
  background-size: initial, initial;
  background-repeat: initial, initial;
  background-attachment: initial, initial;
  background-origin: initial, initial;
  background-clip: initial, initial;
  background-color: initial;
  pointer-events: none;
}

.ebook-spine {
  position: absolute;
  left: -30px;
  top: 18px;
  width: 42px;
  height: 468px;
  border-top-left-radius: 20px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 20px;
  background: linear-gradient(180deg,var(--brand),var(--brand-deep));
  transform: rotateY(72deg);
  transform-origin: right center;
  box-shadow: rgba(0, 0, 0, 0.28) -10px 0px 22px inset;
}

.ebook-kicker {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--brand-deep);
  position: relative;
}

.ebook-title {
  position: relative;
  margin-top: 84px;
  font-family: var(--font-heading);
  font-size: 46px;
  line-height: 1.02;
  letter-spacing: -0.06em;
  font-weight: 700;
  color: #f8f7f7;
}

.ebook-title span {
  color: var(--brand);
}

.floating-note {
  position: absolute;
  left: 4%;
  bottom: 52px;
  width: 270px;
  border: 1px solid var(--border-primary);
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
  border-bottom-right-radius: 22px;
  border-bottom-left-radius: 22px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(16, 22, 38, 0.72);
  backdrop-filter: blur(20px);
  padding: 18px;
  box-shadow: rgb(0, 0, 0) 0px 24px 70px -36px;
  animation-duration: 5s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-fill-mode: none;
  animation-play-state: running;
  animation-name: floaty;
  animation-timeline: auto;
  animation-range-start: normal;
  animation-range-end: normal;
}

@media (max-width: 768px) {
  .floating-note {
  left: 0px;
  bottom: 10px;
  }
}

.floating-note strong {
  display: block;
  font-size: 34px;
  letter-spacing: -0.04em;
  color: var(--brand-glow);
}

.mini-pulse {
  position: absolute;
  right: 2%;
  bottom: 116px;
  width: 86px;
  height: 86px;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-bottom-left-radius: 999px;
  border: 1px solid color-mix(in oklch,var(--brand-glow) 54%,transparent);
  background: radial-gradient(circle,var(--brand-glow),transparent 68%);
  opacity: 0.42;
  filter: blur(1px);
  animation-duration: 3.5s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-fill-mode: none;
  animation-play-state: running;
  animation-name: pulseGlow;
  animation-timeline: auto;
  animation-range-start: normal;
  animation-range-end: normal;
}

@keyframes floaty {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-14px);
  }
}

@keyframes pulseGlow {
  0%, 100% {
    transform: scale(0.92);
    opacity: 0.28;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.58;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition-behavior: normal, normal;
  transition-duration: 0.7s, 0.7s;
  transition-timing-function: ease, ease;
  transition-delay: 0s, 0s;
  transition-property: opacity, transform;
}

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

@media (min-width: 768px) {
  .md-two {
  grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hero-actions .btn {
  width: 100%;
  }
}

.story-section {
  background: radial-gradient(ellipse 70% 50% at 10% 10%,oklch(0.24 0.14 260 / .42),transparent 65%),linear-gradient(180deg,var(--background),oklch(0.11 0.045 260));
  border-top: 1px solid var(--border-primary);
}

.light-panel {
  background-image: radial-gradient(90% 70% at 80% 10%, oklch(0.75 0.12 240 / 0.16), transparent 60%), linear-gradient(oklch(0.94 0.025 250), oklch(0.86 0.035 250));
  background-position-x: initial, initial;
  background-position-y: initial, initial;
  background-size: initial, initial;
  background-repeat: initial, initial;
  background-attachment: initial, initial;
  background-origin: initial, initial;
  background-clip: initial, initial;
  background-color: initial;
  color: oklch(0.14 0.05 260);
}

.light-panel .section-title, .light-panel h3 {
  color: oklch(0.12 0.05 260);
}

.light-panel .eyebrow {
  color: var(--brand-deep);
}

.section-lead {
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.65;
  color: color-mix(in oklch,var(--foreground) 76%,transparent);
  max-width: 760px;
  margin: 22px 0px 0px;
}

.light-panel .section-lead, .light-panel p {
  color: oklch(0.25 0.05 260);
}

.narrative-card {
  border: 1px solid var(--border-primary);
  border-radius: var(--radius);
  background-image: linear-gradient(rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  box-shadow: rgb(0, 0, 0) 0px 32px 100px -55px;
  backdrop-filter: blur(18px);
  padding: clamp(24px, 4vw, 44px);
}

.quote-lines p {
  font-size: clamp(19px, 2vw, 26px);
  line-height: 1.48;
  margin: 0px 0px 18px;
  letter-spacing: -0.025em;
}

.quote-lines p:last-child {
  margin-bottom: 0px;
}

.icon-tile {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 46px;
  width: 46px;
  height: 46px;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  border-bottom-left-radius: 15px;
  display: grid;
  align-items: center;
  justify-items: center;
  color: white;
  background: linear-gradient(160deg,var(--brand),var(--brand-deep));
  box-shadow: 0 14px 36px -18px var(--brand-glow);
}

.icon-tile svg {
  width: 22px;
  height: 22px;
}

.pain-card p {
  margin: 0px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--funnel-text);
  font-family: var(--font-funnel-body);
}

.closing-line {
  margin-top: 34px;
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.45;
  color: var(--foreground);
  font-weight: 650;
  letter-spacing: -0.025em;
}

.proof-wrap {
  position: relative;
}

.proof-wrap::before {
  content: "";
  position: absolute;
  top: 8%;
  right: -10%;
  bottom: auto;
  left: auto;
  width: 360px;
  height: 360px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  background: var(--brand);
  filter: blur(120px);
  opacity: 0.25;
}

.stats {
  display: grid;
  row-gap: 18px;
  column-gap: 18px;
  margin-top: 34px;
}

@media (min-width: 768px) {
  .stats {
  grid-template-columns: repeat(3, 1fr);
  }
}

.stat-card::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 120px;
  height: 120px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  background: var(--brand-glow);
  opacity: 0.16;
  filter: blur(12px);
}

.stat-card p {
  margin: 0px;
  font-size: var(--text-m);
  line-height: 1.55;
}

.process-track {
  display: grid;
  row-gap: 18px;
  column-gap: 18px;
  margin-top: 42px;
  position: relative;
}

@media (min-width: 768px) {
  .process-track {
  grid-template-columns: repeat(3, 1fr);
  }
}

.process-card::before {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background-image: radial-gradient(circle at 80% 0%, oklch(0.7 0.22 245 / 0.18), transparent 42%);
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  opacity: 0.9;
}

.process-card > * {
  position: relative;
}

.step-label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--funnel-accent-2);
  font-weight: 800;
  margin: 18px 0px var(--space-2xs);
  font-family: var(--font-funnel-body);
}

.process-card h3, .offer-card h3 {
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.18;
  letter-spacing: -0.035em;
  margin: 0px 0px 12px;
  font-family: var(--font-heading);
}

.process-card p, .offer-card p {
  font-size: var(--text-m);
  line-height: 1.6;
  margin: 0px;
  color: color-mix(in oklch,var(--foreground) 76%,transparent);
}

.offer-card {
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(20, 42, 95, 0.16);
  border-right-color: rgba(20, 42, 95, 0.16);
  border-bottom-color: rgba(20, 42, 95, 0.16);
  border-left-color: rgba(20, 42, 95, 0.16);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(255, 255, 255, 0.74);
  padding: 28px;
  min-height: 220px;
  box-shadow: rgba(0, 0, 0, 0.5) 0px 22px 80px -62px;
  background: var(--funnel-elevated);
  border: 1px solid var(--funnel-line);
  padding: var(--space-l);
  display: flex;
  flex-direction: column;
  gap: var(--space-s);
}

@media (min-width: 768px) {
  .offer-card {
  grid-column-start: span 2;
  grid-column-end: auto;
  }
}

.offer-card p {
  color: var(--funnel-dim);
  font-family: var(--font-funnel-body);
  font-size: 14px;
  line-height: 1.6;
  margin: 0px;
}

.offer-card .icon-tile {
  margin-bottom: 18px;
}

.offer-card.featured {
  background-image: linear-gradient(135deg, oklch(0.16 0.06 260), oklch(0.25 0.12 255));
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  color: white;
  border-color: color-mix(in oklch,var(--brand-glow) 46%,transparent);
  box-shadow: var(--shadow-glow);
}

@media (min-width: 768px) {
  .offer-card.featured {
  grid-row-start: span 2;
  grid-row-end: auto;
  }
}

.offer-card.featured p {
  color: rgba(255, 255, 255, 0.76);
}

.testimonial-grid {
  display: grid;
  row-gap: 32px;
  column-gap: 32px;
  margin-top: var(--space-xl);
  grid-template-columns: 1fr;
  gap: var(--space-l);
}

@media (min-width: 768px) {
  .testimonial-grid {
  grid-template-columns: 1fr 1fr;
  }
}

.stars {
  display: flex;
  row-gap: 4px;
  column-gap: 4px;
  color: var(--brand-glow);
  margin-bottom: var(--space-s);
}

.testimonial-card blockquote {
  margin: 0px;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.58;
  color: color-mix(in oklch,var(--foreground) 88%,transparent);
}

.person {
  display: flex;
  align-items: center;
  row-gap: 14px;
  column-gap: 14px;
  margin-top: 24px;
}

.person-photo {
  width: 54px;
  height: 54px;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  border-bottom-right-radius: 18px;
  border-bottom-left-radius: 18px;
  overflow-x: hidden;
  overflow-y: hidden;
  background: linear-gradient(135deg,var(--brand-deep),var(--brand-glow));
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(255, 255, 255, 0.18);
  border-right-color: rgba(255, 255, 255, 0.18);
  border-bottom-color: rgba(255, 255, 255, 0.18);
  border-left-color: rgba(255, 255, 255, 0.18);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
}

.person-photo svg {
  width: 100%;
  height: 100%;
}

.person strong {
  display: block;
  color: white;
}

.person span {
  display: block;
  color: color-mix(in oklch,var(--foreground) 62%,transparent);
  font-size: var(--text-s);
  margin-top: 2px;
}

.signup-section {
  background: radial-gradient(ellipse 80% 58% at 50% 12%,oklch(0.65 0.22 250 / .25),transparent 65%),radial-gradient(ellipse 56% 52% at 85% 85%,oklch(0.3 0.2 260 / .38),transparent 70%),linear-gradient(180deg,var(--bg-body),oklch(0.08 0.035 260));
  border-top: 1px solid var(--border-primary);
}

.signup-shell {
  display: grid;
  row-gap: 32px;
  column-gap: 32px;
  align-items: start;
}

@media (min-width: 768px) {
  .signup-shell {
  grid-template-columns: 0.95fr 1.05fr;
  }
}

.form-card {
  border: 1px solid var(--funnel-line);
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  border-bottom-right-radius: 24px;
  border-bottom-left-radius: 24px;
  background-image: linear-gradient(rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  padding: clamp(24px, 4vw, 40px);
  box-shadow: rgba(0, 0, 0, 0.6) 0px 40px 80px -30px;
  backdrop-filter: blur(22px);
  max-width: 560px;
  margin: 0px auto;
  background: var(--funnel-elevated);
  padding: var(--space-2xl);
  text-align: center;
}

.form-card h3 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.3vw, 42px);
  letter-spacing: -0.05em;
  line-height: 1.15;
  margin: 0px 0px 12px;
}

.form-card p {
  line-height: 1.55;
  color: color-mix(in oklch,var(--foreground) 72%,transparent);
  margin: 0px 0px 24px;
}

.lead-form {
  display: grid;
  row-gap: 14px;
  column-gap: 14px;
}

.field label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--brand-glow);
  font-weight: 800;
  margin-bottom: 8px;
}

.field input {
  width: 100%;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
  border: 1px solid var(--border-primary);
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(255, 255, 255, 0.08);
  color: white;
  padding: 16px 17px;
  font-style: inherit;
  font-variant-ligatures: inherit;
  font-variant-caps: inherit;
  font-variant-numeric: inherit;
  font-variant-east-asian: inherit;
  font-variant-alternates: inherit;
  font-variant-position: inherit;
  font-variant-emoji: inherit;
  font-weight: inherit;
  font-stretch: inherit;
  font-size: inherit;
  line-height: inherit;
  font-family: inherit;
  font-optical-sizing: inherit;
  font-size-adjust: inherit;
  font-kerning: inherit;
  font-feature-settings: inherit;
  font-variation-settings: inherit;
  font-language-override: inherit;
  outline-color: initial;
  outline-style: none;
  outline-width: initial;
}

.field input:focus {
  border-color: var(--brand-glow);
  box-shadow: 0 0 0 4px color-mix(in oklch,var(--brand-glow) 18%,transparent);
}

.lead-form .btn {
  width: 100%;
  min-height: 54px;
}

.micro-copy {
  font-size: var(--text-s);
  color: color-mix(in oklch,var(--foreground) 66%,transparent);
  text-align: center;
  margin-top: 14px;
}

.faq {
  margin-top: 42px;
  border-top: 1px solid var(--border-primary);
}

.faq details {
  border-bottom: 1px solid var(--border-primary);
  padding: 20px 0px;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  list-style-position: initial;
  list-style-image: initial;
  list-style-type: none;
  display: flex;
  justify-content: space-between;
  row-gap: 18px;
  column-gap: 18px;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  color: var(--brand-glow);
  font-size: 24px;
  line-height: 1;
}

.faq details[open] summary::after {
  content: "−";
}

.faq p {
  max-width: 720px;
  margin: 14px 0px 0px;
  line-height: 1.6;
  color: color-mix(in oklch,var(--foreground) 72%,transparent);
}

.footer {
  padding: 36px 0px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: oklch(0.06 0.025 260);
  border-top: 1px solid var(--funnel-line);
  color: color-mix(in oklch,var(--foreground) 64%,transparent);
  background: var(--funnel-surface);
  padding: var(--space-xl) 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  row-gap: 18px;
  column-gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: column;
  gap: var(--space-m);
  text-align: center;
}

@media (min-width: 768px) {
  .footer-inner {
  flex-direction: row;
  justify-content: space-between;
  text-align: left;
  }
}

@media (max-width: 768px) {
  .footer-inner {
  align-items: flex-start;
  flex-direction: column;
  }
}

.marquee {
  overflow-x: hidden;
  overflow-y: hidden;
  border-block: 1px solid var(--border-primary);
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(255, 255, 255, 0.03);
}

.marquee-track {
  display: flex;
  row-gap: 42px;
  column-gap: 42px;
  width: max-content;
  animation-duration: 22s;
  animation-timing-function: linear;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-fill-mode: none;
  animation-play-state: running;
  animation-name: marquee;
  animation-timeline: auto;
  animation-range-start: normal;
  animation-range-end: normal;
  padding: 16px 0px;
  color: color-mix(in oklch,var(--foreground) 58%,transparent);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
}

.marquee-track span {
  white-space-collapse: collapse;
  text-wrap-mode: nowrap;
}

@media (max-width: 768px) {
  .stat-card, .process-card, .offer-card, .testimonial-card {
  padding: 22px;
  }
}

.funnel-page .section-title {
  font-family: var(--font-heading);
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.12;
  letter-spacing: -0.055em;
  font-weight: 700;
  max-width: 860px;
  margin: 0px;
  padding: 0.06em 0px;
}

.funnel-page .light-panel .section-title {
  color: oklch(0.12 0.05 260);
}

.funnel-page .btn {
  font-size: 15px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space-collapse: collapse;
  text-wrap-mode: nowrap;
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-bottom-left-radius: 999px;
  padding: 15px 23px;
  font-weight: 800;
  border: 1px solid color-mix(in oklch,var(--brand-glow) 48%,transparent);
  transition-behavior: normal, normal;
  transition-duration: 0.25s, 0.25s;
  transition-timing-function: ease, ease;
  transition-delay: 0s, 0s;
  transition-property: transform, box-shadow;
}

.funnel-page .nav-links a {
  font-size: 14px;
  line-height: 1.4;
  color: color-mix(in oklch,var(--foreground) 78%,transparent);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  font-weight: 600;
}

.funnel-page .trust-row {
  font-size: 14px;
  line-height: 1.5;
  display: flex;
  align-items: center;
  row-gap: 14px;
  column-gap: 14px;
  margin-top: 24px;
  color: color-mix(in oklch,var(--foreground) 76%,transparent);
}

.funnel-page .pain-card p, .funnel-page .process-card p, .funnel-page .offer-card p {
  font-size: 17px;
  line-height: 1.62;
}

.funnel-page .step-label {
  font-size: 11px;
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-glow);
  font-weight: 900;
  margin: 18px 0px 10px;
}

.funnel-page .stat-card {
  display: block;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(20, 42, 95, 0.16);
  border-right-color: rgba(20, 42, 95, 0.16);
  border-bottom-color: rgba(20, 42, 95, 0.16);
  border-left-color: rgba(20, 42, 95, 0.16);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  border-top-left-radius: 26px;
  border-top-right-radius: 26px;
  border-bottom-right-radius: 26px;
  border-bottom-left-radius: 26px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(255, 255, 255, 0.72);
  padding: 28px;
  box-shadow: rgba(0, 0, 0, 0.55) 0px 28px 90px -60px;
}

.funnel-page .stat-number {
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1;
  color: var(--brand-deep);
  font-family: var(--font-heading);
  letter-spacing: -0.055em;
  display: block;
  margin-bottom: 10px;
}

.funnel-page .stat-card p {
  font-size: 17px;
  line-height: 1.55;
  margin: 0px;
  color: oklch(0.25 0.05 260);
}

.funnel-page .offer-card.featured h3 {
  color: white;
}

.funnel-page .offer-card.featured p {
  color: rgba(255, 255, 255, 0.78);
}

.funnel-page .person strong {
  font-size: 16px;
  line-height: 1.25;
  display: block;
  color: white;
}

.funnel-page .person span {
  font-size: 14px;
  line-height: 1.4;
}

.funnel-page .micro-copy {
  font-size: 14px;
  line-height: 1.55;
  color: color-mix(in oklch,var(--foreground) 68%,transparent);
  text-align: center;
  margin-top: 14px;
}

.funnel-page .marquee {
  contain: paint;
  overflow-x: hidden;
  overflow-y: hidden;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgba(255, 255, 255, 0.18);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(255, 255, 255, 0.18);
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(255, 255, 255, 0.03);
}

.funnel-page .marquee-track {
  transform: none;
  width: 100%;
  max-width: 100%;
  justify-content: space-around;
  row-gap: 20px;
  column-gap: 20px;
  animation-duration: auto;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: none;
  animation-play-state: running;
  animation-name: none;
  animation-timeline: auto;
  animation-range-start: normal;
  animation-range-end: normal;
  display: flex;
  padding: 16px 0px;
  color: color-mix(in oklch,var(--foreground) 62%,transparent);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 900;
}

.funnel-page .marquee-track span:nth-child(n+6) {
  display: none;
}

.funnel-page .ebook-stage {
  max-width: 100%;
  position: relative;
  min-height: 560px;
  perspective: 1200px;
}

@media (max-width: 768px) {
  .funnel-page .ebook-stage {
  min-height: 470px;
  }
}

.funnel-page * {
  box-sizing: border-box;
}

.funnel-page .reveal {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.funnel-page .container {
  width: min(1160px, 100% - 40px);
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .funnel-page .container {
  width: min(100% - 28px, 1160px);
  }
}

.funnel-page .section {
  position: relative;
  padding: clamp(72px, 8vw, 124px) 0px;
}

.funnel-page .hero {
  min-height: 760px;
  padding-top: 0px;
  background: radial-gradient(ellipse 80% 60% at 75% 30%,oklch(0.35 0.24 255 / .55),transparent 62%),radial-gradient(ellipse 60% 50% at 15% 78%,oklch(0.3 0.2 260 / .42),transparent 70%),linear-gradient(180deg,var(--bg-body),var(--background));
  isolation: isolate;
}

.funnel-page .hero::before {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background-image: linear-gradient(oklch(0.5 0.15 250 / 0.08) 1px, transparent 1px), linear-gradient(90deg, oklch(0.5 0.15 250 / 0.08) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(72% 56% at 50% 20%, black, transparent 76%);
  z-index: 0;
}

.funnel-page .site-nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  row-gap: 24px;
  column-gap: 24px;
  position: relative;
  z-index: 5;
}

@media (max-width: 768px) {
  .funnel-page .site-nav {
  height: 64px;
  }
}

.funnel-page .brand-mark {
  display: flex;
  align-items: center;
  row-gap: 12px;
  column-gap: 12px;
  color: var(--foreground);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.funnel-page .brand-symbol {
  width: 36px;
  height: 36px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  background: linear-gradient(180deg,var(--brand-glow),var(--brand));
  display: grid;
  align-items: center;
  justify-items: center;
  box-shadow: 0 0 50px -10px var(--brand-glow);
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: auto;
}

.funnel-page .nav-links {
  display: flex;
  align-items: center;
  row-gap: 28px;
  column-gap: 28px;
}

@media (max-width: 768px) {
  .funnel-page .nav-links {
  display: none;
  }
}

.funnel-page .btn-primary {
  color: white;
  background: linear-gradient(180deg,var(--brand-glow),var(--brand));
  box-shadow: 0 18px 48px -18px var(--brand-glow),inset 0 1px 0 rgba(255,255,255,.28);
}

.funnel-page .btn-ghost {
  color: white;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(255, 255, 255, 0.06);
  border-top-color: rgba(255, 255, 255, 0.18);
  border-right-color: rgba(255, 255, 255, 0.18);
  border-bottom-color: rgba(255, 255, 255, 0.18);
  border-left-color: rgba(255, 255, 255, 0.18);
}

.funnel-page .btn:hover {
  transform: translateY(-2px) scale(1.015);
  box-shadow: 0 0 60px -12px var(--brand-glow);
}

.funnel-page .hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  row-gap: 56px;
  column-gap: 56px;
  align-items: center;
  padding: 72px 0px 100px;
}

@media (max-width: 768px) {
  .funnel-page .hero-grid {
  padding: 42px 0px 72px;
  }
}

.funnel-page .eyebrow {
  display: inline-flex;
  align-items: center;
  row-gap: 10px;
  column-gap: 10px;
  color: var(--brand-glow);
  font-size: 12px;
  line-height: 1.35;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 900;
  margin: 0px 0px 18px;
}

.funnel-page .eyebrow svg {
  width: 18px;
  height: 18px;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: auto;
}

.funnel-page h1, .funnel-page .section-title {
  font-family: var(--font-heading);
  letter-spacing: -0.055em;
  font-weight: 750;
  line-height: 1.12;
  margin: 0px;
  color: var(--foreground);
  padding: 0.06em 0px;
}

.funnel-page h1 {
  font-size: clamp(42px, 6.5vw, 78px);
  max-width: 760px;
}

@media (max-width: 768px) {
  .funnel-page h1 {
  font-size: clamp(38px, 12vw, 54px);
  }
}

.funnel-page .gradient-text {
  background: linear-gradient(90deg,var(--foreground) 0%,var(--brand-glow) 52%,var(--foreground) 100%);
  background-clip: text;
  color: transparent;
  padding: 0.08em 0px;
  line-height: 1.18;
}

.funnel-page .hero-sub {
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.55;
  color: color-mix(in oklch,var(--foreground) 82%,transparent);
  max-width: 660px;
  margin: 22px 0px 0px;
}

.funnel-page .hero-actions {
  display: flex;
  align-items: center;
  row-gap: 16px;
  column-gap: 16px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.funnel-page .avatar-stack {
  display: flex;
}

.funnel-page .avatar {
  display: block;
  width: 34px;
  height: 34px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  border: 2px solid var(--background);
  margin-left: -9px;
  overflow-x: hidden;
  overflow-y: hidden;
  background: linear-gradient(135deg,var(--brand-deep),var(--brand-glow));
}

.funnel-page .avatar:first-child {
  margin-left: 0px;
}

.funnel-page .ebook-card {
  position: absolute;
  right: 4%;
  top: 34px;
  width: min(390px, 86vw);
  height: 500px;
  border-top-left-radius: 26px;
  border-top-right-radius: 26px;
  border-bottom-right-radius: 26px;
  border-bottom-left-radius: 26px;
  background-image: linear-gradient(145deg, oklch(0.93 0.03 245), oklch(0.78 0.08 250));
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  box-shadow: 0 50px 110px -48px #000,0 0 80px -22px var(--brand-glow);
  transform: rotateY(-20deg) rotateX(8deg) rotateZ(-2deg);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(255, 255, 255, 0.46);
  border-right-color: rgba(255, 255, 255, 0.46);
  border-bottom-color: rgba(255, 255, 255, 0.46);
  border-left-color: rgba(255, 255, 255, 0.46);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  padding: 34px;
  color: oklch(0.13 0.05 260);
}

@media (max-width: 768px) {
  .funnel-page .ebook-card {
  right: auto;
  left: 50%;
  transform: translateX(-50%) rotateY(-13deg) rotateX(6deg);
  height: 430px;
  }
}

.funnel-page .ebook-spine {
  position: absolute;
  left: -30px;
  top: 18px;
  width: 42px;
  height: 468px;
  border-top-left-radius: 20px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 20px;
  background: linear-gradient(180deg,var(--brand),var(--brand-deep));
  transform: rotateY(72deg);
  transform-origin: right center;
}

@media (max-width: 768px) {
  .funnel-page .ebook-spine {
  height: 398px;
  }
}

.funnel-page .ebook-kicker {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 900;
  color: var(--brand-deep);
  position: relative;
}

.funnel-page .ebook-title {
  position: relative;
  margin-top: 84px;
  font-family: var(--font-heading);
  font-size: 46px;
  line-height: 1.04;
  letter-spacing: -0.06em;
  font-weight: 800;
  color: oklch(0.13 0.05 260);
}

.funnel-page .ebook-title span {
  color: var(--brand);
}

.funnel-page .ebook-footer {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 900;
}

.funnel-page .floating-note {
  position: absolute;
  left: 4%;
  bottom: 52px;
  width: 270px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(255, 255, 255, 0.2);
  border-right-color: rgba(255, 255, 255, 0.2);
  border-bottom-color: rgba(255, 255, 255, 0.2);
  border-left-color: rgba(255, 255, 255, 0.2);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
  border-bottom-right-radius: 22px;
  border-bottom-left-radius: 22px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(16, 22, 38, 0.78);
  backdrop-filter: blur(20px);
  padding: 18px;
  box-shadow: rgb(0, 0, 0) 0px 24px 70px -36px;
  color: white;
}

@media (max-width: 768px) {
  .funnel-page .floating-note {
  left: 0px;
  bottom: 10px;
  }
}

.funnel-page .floating-note strong {
  display: block;
  font-size: 34px;
  letter-spacing: -0.04em;
  color: var(--brand-glow);
}

.funnel-page .story-section {
  background: radial-gradient(ellipse 70% 50% at 10% 10%,oklch(0.24 0.14 260 / .42),transparent 65%),linear-gradient(180deg,var(--background),oklch(0.11 0.045 260));
  border-top: 1px solid var(--border-primary);
}

.funnel-page .light-panel {
  background-image: radial-gradient(90% 70% at 80% 10%, oklch(0.75 0.12 240 / 0.16), transparent 60%), linear-gradient(oklch(0.94 0.025 250), oklch(0.86 0.035 250));
  background-position-x: initial, initial;
  background-position-y: initial, initial;
  background-size: initial, initial;
  background-repeat: initial, initial;
  background-attachment: initial, initial;
  background-origin: initial, initial;
  background-clip: initial, initial;
  background-color: initial;
  color: oklch(0.14 0.05 260);
}

.funnel-page .light-panel .section-title, .funnel-page .light-panel h3 {
  color: oklch(0.12 0.05 260);
}

.funnel-page .light-panel .eyebrow {
  color: var(--brand-deep);
}

.funnel-page .section-lead {
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.65;
  color: color-mix(in oklch,var(--foreground) 78%,transparent);
  max-width: 760px;
  margin: 22px 0px 0px;
}

.funnel-page .light-panel .section-lead, .funnel-page .light-panel p {
  color: oklch(0.25 0.05 260);
}

.funnel-page .grid {
  display: grid;
  gap: var(--space-l);
}

.funnel-page .md-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.funnel-page .narrative-card {
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(255, 255, 255, 0.18);
  border-right-color: rgba(255, 255, 255, 0.18);
  border-bottom-color: rgba(255, 255, 255, 0.18);
  border-left-color: rgba(255, 255, 255, 0.18);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  border-bottom-right-radius: 24px;
  border-bottom-left-radius: 24px;
  background-image: linear-gradient(rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  box-shadow: rgb(0, 0, 0) 0px 32px 100px -55px;
  backdrop-filter: blur(18px);
  padding: clamp(24px, 4vw, 44px);
}

.funnel-page .quote-lines p {
  font-size: clamp(19px, 2vw, 26px);
  line-height: 1.48;
  margin: 0px 0px 18px;
  letter-spacing: -0.025em;
  color: rgba(255, 255, 255, 0.88);
}

.funnel-page .pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 18px;
  column-gap: 18px;
  margin-top: 42px;
}

.funnel-page .pain-card {
  display: flex;
  row-gap: 18px;
  column-gap: 18px;
  align-items: flex-start;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(255, 255, 255, 0.18);
  border-right-color: rgba(255, 255, 255, 0.18);
  border-bottom-color: rgba(255, 255, 255, 0.18);
  border-left-color: rgba(255, 255, 255, 0.18);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
  border-bottom-right-radius: 22px;
  border-bottom-left-radius: 22px;
  background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.024));
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  padding: 22px;
}

.funnel-page .icon-tile {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 46px;
  width: 46px;
  height: 46px;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  border-bottom-left-radius: 15px;
  display: grid;
  align-items: center;
  justify-items: center;
  color: white;
  background: linear-gradient(160deg,var(--brand),var(--brand-deep));
  box-shadow: 0 14px 36px -18px var(--brand-glow);
}

.funnel-page .icon-tile svg {
  width: 22px;
  height: 22px;
}

.funnel-page .pain-card p {
  margin: 0px;
  font-size: 17px;
  line-height: 1.62;
  color: color-mix(in oklch,var(--foreground) 84%,transparent);
}

.funnel-page .closing-line {
  margin-top: 34px;
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.45;
  color: var(--foreground);
  font-weight: 700;
}

.funnel-page .stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 18px;
  column-gap: 18px;
  margin-top: 34px;
}

.funnel-page .process-section {
  background: radial-gradient(ellipse 70% 48% at 48% 0%,oklch(0.62 0.2 248 / .24),transparent 62%),linear-gradient(180deg,oklch(0.11 0.045 260),var(--bg-body));
}

.funnel-page .process-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 18px;
  column-gap: 18px;
  margin-top: 42px;
}

.funnel-page .process-card, .funnel-page .testimonial-card {
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(255, 255, 255, 0.18);
  border-right-color: rgba(255, 255, 255, 0.18);
  border-bottom-color: rgba(255, 255, 255, 0.18);
  border-left-color: rgba(255, 255, 255, 0.18);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  border-top-left-radius: 26px;
  border-top-right-radius: 26px;
  border-bottom-right-radius: 26px;
  border-bottom-left-radius: 26px;
  background-image: linear-gradient(rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  padding: 28px;
  min-height: 260px;
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
}

.funnel-page .process-card h3, .funnel-page .offer-card h3 {
  font-family: var(--font-heading);
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.18;
  letter-spacing: -0.035em;
  margin: 0px 0px 12px;
  color: white;
}

.funnel-page .process-card p, .funnel-page .offer-card p {
  font-size: 17px;
  line-height: 1.62;
  margin: 0px;
  color: color-mix(in oklch,var(--foreground) 78%,transparent);
}

.funnel-page .offer-bento {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: auto auto;
  row-gap: 18px;
  column-gap: 18px;
  margin-top: 42px;
}

.funnel-page .offer-card {
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(20, 42, 95, 0.16);
  border-right-color: rgba(20, 42, 95, 0.16);
  border-bottom-color: rgba(20, 42, 95, 0.16);
  border-left-color: rgba(20, 42, 95, 0.16);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  border-top-left-radius: 26px;
  border-top-right-radius: 26px;
  border-bottom-right-radius: 26px;
  border-bottom-left-radius: 26px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(255, 255, 255, 0.76);
  padding: 28px;
  min-height: 220px;
  box-shadow: rgba(0, 0, 0, 0.5) 0px 22px 80px -62px;
}

.funnel-page .offer-card.featured {
  grid-row-start: span 2;
  grid-row-end: auto;
  background-image: linear-gradient(135deg, oklch(0.16 0.06 260), oklch(0.25 0.12 255));
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  color: white;
  border-color: color-mix(in oklch,var(--brand-glow) 46%,transparent);
  box-shadow: 0 0 60px -18px var(--brand-glow);
}

@media (max-width: 768px) {
  .funnel-page .offer-card.featured {
  grid-row-start: auto;
  grid-row-end: auto;
  }
}

.funnel-page .offer-card h3 {
  color: oklch(0.12 0.05 260);
}

.funnel-page .offer-card p {
  color: oklch(0.27 0.05 260);
}

.funnel-page .offer-card .icon-tile {
  margin-bottom: 18px;
}

.funnel-page .testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 22px;
  column-gap: 22px;
  margin-top: 42px;
}

.funnel-page .stars {
  display: flex;
  row-gap: 5px;
  column-gap: 5px;
  color: var(--brand-glow);
  margin-bottom: 18px;
}

.funnel-page .testimonial-card blockquote {
  margin: 0px;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.58;
  color: color-mix(in oklch,var(--foreground) 90%,transparent);
}

.funnel-page .person {
  display: flex;
  align-items: center;
  row-gap: 14px;
  column-gap: 14px;
  margin-top: 24px;
}

.funnel-page .person-photo {
  width: 54px;
  height: 54px;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  border-bottom-right-radius: 18px;
  border-bottom-left-radius: 18px;
  overflow-x: hidden;
  overflow-y: hidden;
  background: linear-gradient(135deg,var(--brand-deep),var(--brand-glow));
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(255, 255, 255, 0.18);
  border-right-color: rgba(255, 255, 255, 0.18);
  border-bottom-color: rgba(255, 255, 255, 0.18);
  border-left-color: rgba(255, 255, 255, 0.18);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: auto;
}

.funnel-page .person span span {
  display: block;
  color: color-mix(in oklch,var(--foreground) 64%,transparent);
  font-size: 14px;
  margin-top: 2px;
}

.funnel-page .signup-section {
  background: radial-gradient(ellipse 80% 58% at 50% 12%,oklch(0.65 0.22 250 / .25),transparent 65%),radial-gradient(ellipse 56% 52% at 85% 85%,oklch(0.3 0.2 260 / .38),transparent 70%),linear-gradient(180deg,var(--bg-body),oklch(0.08 0.035 260));
}

.funnel-page .signup-shell {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  row-gap: 32px;
  column-gap: 32px;
  align-items: start;
}

.funnel-page .form-card {
  border: 1px solid color-mix(in oklch,var(--brand-glow) 36%,transparent);
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  border-bottom-left-radius: 30px;
  background-image: linear-gradient(rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  padding: clamp(24px, 4vw, 40px);
  box-shadow: 0 0 70px -20px var(--brand-glow);
  backdrop-filter: blur(22px);
}

.funnel-page .form-card h3 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.3vw, 42px);
  letter-spacing: -0.05em;
  line-height: 1.15;
  margin: 0px 0px 12px;
  color: white;
}

.funnel-page .form-card p {
  line-height: 1.55;
  color: color-mix(in oklch,var(--foreground) 74%,transparent);
  margin: 0px 0px 24px;
}

.funnel-page .lead-form {
  display: grid;
  row-gap: 14px;
  column-gap: 14px;
}

.funnel-page .field label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--brand-glow);
  font-weight: 900;
  margin-bottom: 8px;
}

.funnel-page .field input {
  width: 100%;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(255, 255, 255, 0.18);
  border-right-color: rgba(255, 255, 255, 0.18);
  border-bottom-color: rgba(255, 255, 255, 0.18);
  border-left-color: rgba(255, 255, 255, 0.18);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(255, 255, 255, 0.08);
  color: white;
  padding: 16px 17px;
  font-style: inherit;
  font-variant-ligatures: inherit;
  font-variant-caps: inherit;
  font-variant-numeric: inherit;
  font-variant-east-asian: inherit;
  font-variant-alternates: inherit;
  font-variant-position: inherit;
  font-variant-emoji: inherit;
  font-weight: inherit;
  font-stretch: inherit;
  font-size: inherit;
  line-height: inherit;
  font-family: inherit;
  font-optical-sizing: inherit;
  font-size-adjust: inherit;
  font-kerning: inherit;
  font-feature-settings: inherit;
  font-variation-settings: inherit;
  font-language-override: inherit;
  outline-color: initial;
  outline-style: none;
  outline-width: initial;
}

.funnel-page .lead-form .btn {
  width: 100%;
  min-height: 54px;
}

.funnel-page .faq {
  margin-top: 42px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgba(255, 255, 255, 0.18);
}

.funnel-page .faq details {
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(255, 255, 255, 0.18);
  padding: 20px 0px;
}

.funnel-page .faq summary {
  cursor: pointer;
  font-weight: 800;
  list-style-position: initial;
  list-style-image: initial;
  list-style-type: none;
  display: flex;
  justify-content: space-between;
  row-gap: 18px;
  column-gap: 18px;
  color: white;
}

.funnel-page .faq p {
  max-width: 720px;
  margin: 14px 0px 0px;
  line-height: 1.6;
  color: color-mix(in oklch,var(--foreground) 74%,transparent);
}

.funnel-page .footer {
  padding: 36px 0px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: oklch(0.06 0.025 260);
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgba(255, 255, 255, 0.18);
  color: color-mix(in oklch,var(--foreground) 66%,transparent);
}

.funnel-page .footer-inner {
  display: flex;
  justify-content: space-between;
  row-gap: 18px;
  column-gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .funnel-page .footer-inner {
  align-items: flex-start;
  flex-direction: column;
  }
}

@media (max-width: 768px) {
  .funnel-page .hero-grid, .funnel-page .md-two, .funnel-page .pain-grid, .funnel-page .stats, .funnel-page .process-track, .funnel-page .offer-bento, .funnel-page .testimonial-grid, .funnel-page .signup-shell {
  grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .funnel-page .hero-actions .btn {
  width: 100%;
  }
}

.landing-page {
  background-color: var(--bg-canvas);
  color: var(--text-secondary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  overflow-y: hidden;
}

.landing-page h1, .landing-page h2, .landing-page h3, .landing-page h4 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.ambient-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  background-image: radial-gradient(circle, rgba(104, 117, 245, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  pointer-events: none;
  z-index: 0;
}

.glow-top-right {
  top: -100px;
  right: -100px;
}

.glow-middle-left {
  top: 35%;
  left: -200px;
  background-image: radial-gradient(circle, rgba(255, 142, 93, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
}

.glow-bottom-right {
  bottom: 10%;
  right: -150px;
  background-image: radial-gradient(circle, rgba(104, 117, 245, 0.06) 0%, rgba(0, 0, 0, 0) 70%);
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
}

.header-nav {
  display: flex;
  row-gap: 32px;
  column-gap: 32px;
}

.header-link {
  color: var(--text-secondary);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  font-size: 15px;
  font-weight: 500;
  transition-behavior: normal;
  transition-duration: 0.2s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: color;
}

.header-link:hover {
  color: var(--accent-primary);
}

.eyebrow-orange {
  color: var(--accent-secondary);
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(255, 142, 93, 0.1);
  border-top-color: rgba(255, 142, 93, 0.2);
  border-right-color: rgba(255, 142, 93, 0.2);
  border-bottom-color: rgba(255, 142, 93, 0.2);
  border-left-color: rgba(255, 142, 93, 0.2);
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  transform: translateX(-100%);
  transition-behavior: normal;
  transition-duration: 0.6s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: transform;
}

.btn-primary:hover::before {
  transform: translateX(100%);
}

.btn-secondary {
  background: var(--bg-surface);
  color: var(--funnel-text);
  border: 1px solid var(--funnel-line);
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: transparent;
}

.btn-secondary:hover {
  background: var(--bg-surface-hover);
  border-color: var(--funnel-accent);
  transform: translateY(-2px);
  color: var(--funnel-accent);
}

.section-padding {
  padding: 100px 0px;
  border-bottom: 1px solid var(--border-color);
}

.hero-content h1 {
  font-size: 42px;
  line-height: 1.15;
  margin-bottom: 24px;
  background-image: linear-gradient(135deg, rgb(255, 255, 255) 30%, rgb(165, 180, 252) 100%);
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-color: initial;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-bottom: 4px;
}

@media (min-width: 768px) {
  .hero-content h1 {
  font-size: 54px;
  }
}

.hero-content p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 580px;
}

.mockup-container {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}

.ebook-3d {
  width: 280px;
  height: 400px;
  position: relative;
  transform: rotateY(-20deg) rotateX(10deg);
  transform-style: preserve-3d;
  box-shadow: rgba(0, 0, 0, 0.6) 20px 20px 40px;
  transition-behavior: normal;
  transition-duration: 0.5s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: transform;
}

.ebook-3d:hover {
  transform: rotateY(-10deg) rotateX(5deg) translateY(-10px);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0px auto 60px;
}

.section-header h2 {
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.problem-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 800px;
  margin: 0px auto;
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
}

.problem-box::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 4px;
  height: 100%;
  background: var(--accent-secondary);
}

.problem-text {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-secondary);
}

.problem-text p {
  margin-bottom: 16px;
}

.problem-text p:last-child {
  margin-bottom: 0px;
}

.pain-card-content h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.pain-card-content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.5;
}

.pain-footer {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  color: var(--text-primary);
}

.process-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.process-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 24px;
  column-gap: 24px;
}

@media (min-width: 1024px) {
  .bento-grid {
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: repeat(2, minmax(180px, auto));
  }
}

.bento-card-large {
  grid-row-start: span 2;
  grid-row-end: auto;
  background: linear-gradient(135deg, var(--bg-surface) 0%, rgba(15, 23, 42, 0.3) 100%);
  border-left: 4px solid var(--accent-primary);
}

@media (min-width: 1024px) {
  .bento-card-large {
  grid-row-start: span 2;
  grid-row-end: auto;
  }
}

.bento-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  row-gap: 12px;
  column-gap: 12px;
}

.bento-card p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.testimonial-quote {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.testimonial-quote::before {
  content: "“";
  position: absolute;
  top: -20px;
  left: -10px;
  font-size: 60px;
  color: rgba(104, 117, 245, 0.1);
  font-family: serif;
  z-index: -1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  row-gap: 16px;
  column-gap: 16px;
  gap: var(--space-s);
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: rgb(255, 255, 255);
  font-size: 16px;
  border: 2px solid var(--border-color);
}

.author-info h4 {
  font-size: 16px;
  margin-bottom: 2px;
}

.author-info p {
  font-size: 14px;
  color: var(--text-muted);
}

.form-section {
  background: linear-gradient(180deg, var(--bg-canvas) 0%, rgba(14, 9, 24, 0.8) 100%);
  padding: 100px 0px;
  padding: var(--space-4xl) 0;
}

.form-container {
  max-width: 640px;
  margin: 0px auto;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 20px 50px;
  position: relative;
}

.form-container::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.form-header {
  text-align: center;
  margin-bottom: 36px;
}

.form-header h2 {
  font-size: 28px;
  margin-bottom: 12px;
}

.form-header p {
  font-size: 15px;
  color: var(--text-muted);
}

.form-submit {
  width: 100%;
  margin-top: var(--space-s);
  justify-content: center;
  font-size: 17px;
}

.form-privacy {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  row-gap: 6px;
  column-gap: 6px;
}

.footer-logo {
  justify-content: center;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  row-gap: 12px;
  column-gap: 12px;
}

.footer-text {
  font-size: 14px;
  color: var(--text-muted);
}

.stat-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent-primary);
  background: var(--bg-surface-hover);
}

.fwrap {
  width: 100%;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.f-eyebrow {
  display: inline-block;
  font-family: var(--font-funnel-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--funnel-accent);
  margin: 0px 0px 20px;
}

.f-h2 {
  font-family: var(--font-funnel-display);
  font-weight: 500;
  font-size: clamp(30px, 4.6vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: rgb(255, 255, 255);
  margin: 0px;
}

.f-section {
  position: relative;
  padding-top: 104px;
  padding-bottom: 104px;
}

@media (max-width: 768px) {
  .f-section {
  padding-top: 72px;
  padding-bottom: 72px;
  }
}

.f-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  row-gap: 10px;
  column-gap: 10px;
  font-family: var(--font-funnel-body);
  font-weight: 600;
  font-size: 17px;
  line-height: 1;
  white-space-collapse: collapse;
  text-wrap-mode: nowrap;
  color: rgb(11, 7, 20);
  background: linear-gradient(135deg, var(--funnel-accent) 0%, var(--funnel-accent-2) 100%);
  border-top-width: medium;
  border-right-width: medium;
  border-bottom-width: medium;
  border-left-width: medium;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  border-top-color: currentcolor;
  border-right-color: currentcolor;
  border-bottom-color: currentcolor;
  border-left-color: currentcolor;
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-bottom-left-radius: 999px;
  padding: 18px 34px;
  cursor: pointer;
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  box-shadow: rgba(109, 139, 255, 0.6) 0px 12px 40px -12px;
  transition-behavior: normal, normal;
  transition-duration: 0.25s, 0.25s;
  transition-timing-function: ease, ease;
  transition-delay: 0s, 0s;
  transition-property: transform, box-shadow;
}

.f-cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: rgba(255, 142, 93, 0.6) 0px 18px 54px -12px;
}

.f-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--funnel-line);
}

.f-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.f-logo {
  display: inline-flex;
  align-items: center;
  row-gap: 11px;
  column-gap: 11px;
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}

.f-logo-mark {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}

.f-logo-txt {
  font-family: var(--font-funnel-display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: rgb(255, 255, 255);
}

.f-logo-txt span {
  color: var(--funnel-accent);
}

.f-nav-cta {
  font-family: var(--font-funnel-body);
  font-weight: 500;
  font-size: 15px;
  color: rgb(255, 255, 255);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  padding: 11px 22px;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-bottom-left-radius: 999px;
  border: 1px solid var(--funnel-line);
  transition-behavior: normal, normal;
  transition-duration: 0.25s, 0.25s;
  transition-timing-function: ease, ease;
  transition-delay: 0s, 0s;
  transition-property: border-color, background;
}

@media (max-width: 560px) {
  .f-nav-cta {
  display: none;
  }
}

.f-nav-cta:hover {
  border-color: var(--funnel-accent);
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(109, 139, 255, 0.1);
}

.hero-glow.a {
  width: 560px;
  height: 560px;
  top: -180px;
  left: -120px;
  background-image: radial-gradient(circle, rgba(109, 139, 255, 0.4), transparent 70%);
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
}

.hero-glow.b {
  width: 480px;
  height: 480px;
  bottom: -160px;
  right: -100px;
  background-image: radial-gradient(circle, rgba(255, 142, 93, 0.28), transparent 70%);
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
}

.hero-grid-bg {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  z-index: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.027) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.027) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 50% 30%, rgb(0, 0, 0) 0%, transparent 75%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 56px;
  column-gap: 56px;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-inner {
  grid-template-columns: 1.05fr 0.95fr;
  row-gap: 40px;
  column-gap: 40px;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  row-gap: 9px;
  column-gap: 9px;
  padding: 8px 16px;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-bottom-left-radius: 999px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--funnel-line);
  font-size: 13px;
  font-weight: 500;
  color: var(--funnel-text);
  margin-bottom: 26px;
}

.hero-badge svg {
  width: 15px;
  height: 15px;
  color: var(--funnel-accent-2);
}

.hero-h1 {
  font-family: var(--font-funnel-display);
  font-weight: 600;
  font-size: clamp(36px, 5.6vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: rgb(255, 255, 255);
  margin: 0px;
}

.hero-h1 .accent {
  background: linear-gradient(120deg, var(--funnel-accent), var(--funnel-accent-2));
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-bottom: 0.08em;
}

.hero-note {
  display: block;
  font-family: var(--font-funnel-body);
  font-weight: 400;
  font-size: var(--text-s);
  line-height: 1.5;
  color: var(--funnel-dim);
  margin-top: 18px;
  letter-spacing: 0px;
  opacity: 0.8;
  max-width: 520px;
  margin: 0 0 var(--space-l) 0;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  row-gap: 18px;
  column-gap: 18px;
}

.hero-trust {
  display: flex;
  align-items: center;
  row-gap: 12px;
  column-gap: 12px;
  margin-top: 30px;
}

.hero-trust-avatars {
  display: flex;
}

.hero-trust-avatars img {
  width: 38px;
  height: 38px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--funnel-bg);
  margin-left: -10px;
}

.hero-trust-avatars img:first-child {
  margin-left: 0px;
}

.hero-trust-txt {
  font-size: 14px;
  color: var(--funnel-dim);
  line-height: 1.4;
}

.hero-trust-txt b {
  color: rgb(255, 255, 255);
  font-weight: 600;
}

.ebook-pad {
  padding: 30px 26px 32px 36px;
}

.ebook-mark {
  width: 44px;
  height: 44px;
  margin: 20px 0px 26px;
}

.ebook-meta {
  margin-top: 90px;
  font-size: 12px;
  color: var(--funnel-dim);
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgba(255, 255, 255, 0.12);
  padding-top: 14px;
}

.ebook-float {
  position: absolute;
  z-index: 3;
  padding: 12px 16px;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  border-bottom-right-radius: 14px;
  border-bottom-left-radius: 14px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(21, 14, 36, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--funnel-line);
  box-shadow: rgba(0, 0, 0, 0.7) 0px 18px 40px -18px;
  display: flex;
  align-items: center;
  row-gap: 11px;
  column-gap: 11px;
}

.ebook-float svg {
  width: 20px;
  height: 20px;
  color: var(--funnel-accent);
  flex-shrink: 0;
}

.ebook-float b {
  display: block;
  color: rgb(255, 255, 255);
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-funnel-display);
}

.ebook-float span {
  font-size: 12px;
  color: var(--funnel-dim);
}

.ebook-float.top {
  top: 16px;
  right: -18px;
}

@media (max-width: 520px) {
  .ebook-float.top {
  right: -4px;
  }
}

.ebook-float.bot {
  bottom: 30px;
  left: -26px;
}

@media (max-width: 520px) {
  .ebook-float.bot {
  left: -6px;
  }
}

.prob {
  position: relative;
  background: var(--funnel-surface);
  border-top: 1px solid var(--funnel-line);
  border-bottom: 1px solid var(--funnel-line);
}

.prob-glow {
  position: absolute;
  z-index: 0;
  top: -100px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  background-image: radial-gradient(circle, rgba(255, 142, 93, 0.14), transparent 70%);
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  filter: blur(80px);
  pointer-events: none;
}

.prob-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.prob-body p {
  font-family: var(--font-funnel-body);
  font-weight: 400;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.65;
  color: var(--funnel-text);
  margin: 0px 0px 22px;
}

.prob-body p.dim {
  color: var(--funnel-dim);
}

.prob-body .q {
  font-family: var(--font-funnel-display);
  font-weight: 500;
  color: rgb(255, 255, 255);
}

.prob-body strong {
  color: var(--funnel-accent-2);
  font-weight: 600;
}

.pain {
  position: relative;
}

.pain-head {
  max-width: 640px;
  margin-bottom: 52px;
}

.pain-ico {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(255, 142, 93, 0.1);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(255, 142, 93, 0.25);
  border-right-color: rgba(255, 142, 93, 0.25);
  border-bottom-color: rgba(255, 142, 93, 0.25);
  border-left-color: rgba(255, 142, 93, 0.25);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pain-ico svg {
  width: 24px;
  height: 24px;
  color: var(--funnel-accent-2);
}

.pain-close {
  max-width: 620px;
  margin: 46px auto 0px;
  text-align: center;
}

.pain-close p {
  font-family: var(--font-funnel-display);
  font-weight: 500;
  font-size: clamp(20px, 2.6vw, 26px);
  line-height: 1.4;
  color: rgb(255, 255, 255);
  margin: 0px;
}

.pain-close p span {
  color: var(--funnel-accent);
}

.proof {
  position: relative;
  background: var(--funnel-surface);
  border-top: 1px solid var(--funnel-line);
  border-bottom: 1px solid var(--funnel-line);
  overflow-x: hidden;
  overflow-y: hidden;
}

.proof-glow {
  position: absolute;
  z-index: 0;
  bottom: -120px;
  left: -80px;
  width: 420px;
  height: 420px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  background-image: radial-gradient(circle, rgba(109, 139, 255, 0.16), transparent 70%);
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  filter: blur(80px);
  pointer-events: none;
}

.proof-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 48px;
  column-gap: 48px;
  align-items: center;
}

@media (min-width: 1024px) {
  .proof-inner {
  grid-template-columns: 0.85fr 1.15fr;
  row-gap: 56px;
  column-gap: 56px;
  }
}

.proof-photo {
  position: relative;
}

.proof-photo img {
  width: 100%;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--funnel-line);
}

.proof-photo .frame {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  background-image: linear-gradient(160deg, transparent 55%, rgba(11, 7, 20, 0.7));
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  pointer-events: none;
}

.proof-name {
  position: absolute;
  bottom: 22px;
  left: 22px;
  z-index: 2;
}

.proof-name b {
  display: block;
  font-family: var(--font-funnel-display);
  font-weight: 600;
  font-size: 20px;
  color: rgb(255, 255, 255);
}

.proof-name span {
  font-size: 14px;
  color: var(--funnel-dim);
}

.proof-copy p {
  font-family: var(--font-funnel-body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--funnel-text);
  margin: 20px 0px 0px;
  font-weight: 400;
}

.proof-copy p.dim {
  color: var(--funnel-dim);
}

.stat-num {
  font-family: var(--font-funnel-display);
  font-weight: 600;
  font-size: 32px;
  line-height: 1;
  color: var(--funnel-accent);
  letter-spacing: -0.02em;
}

.stat-num .u {
  color: var(--funnel-accent-2);
}

.stat-lbl {
  font-size: 13px;
  color: var(--funnel-dim);
  line-height: 1.4;
  margin-top: 10px;
}

.proc {
  position: relative;
}

.proc-grid-bg {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  z-index: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(circle at 50% 40%, rgb(0, 0, 0), transparent 78%);
  pointer-events: none;
}

.proc-head {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0px auto 60px;
  text-align: center;
}

.proc-steps {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 22px;
  column-gap: 22px;
}

@media (min-width: 768px) {
  .proc-steps {
  grid-template-columns: repeat(3, 1fr);
  row-gap: 20px;
  column-gap: 20px;
  }
}

.proc-card {
  position: relative;
  background: var(--funnel-surface);
  border: 1px solid var(--funnel-line);
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  border-bottom-right-radius: 18px;
  border-bottom-left-radius: 18px;
  padding: 34px 30px;
  overflow-x: hidden;
  overflow-y: hidden;
}

.proc-card::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  height: 2px;
  background: linear-gradient(90deg, var(--funnel-accent), var(--funnel-accent-2));
  opacity: 0.7;
}

.proc-step-tag {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--funnel-accent);
  font-weight: 600;
}

.proc-ico {
  width: 52px;
  height: 52px;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  border-bottom-right-radius: 14px;
  border-bottom-left-radius: 14px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(109, 139, 255, 0.1);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(109, 139, 255, 0.28);
  border-right-color: rgba(109, 139, 255, 0.28);
  border-bottom-color: rgba(109, 139, 255, 0.28);
  border-left-color: rgba(109, 139, 255, 0.28);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 18px 0px 22px;
}

.proc-ico svg {
  width: 26px;
  height: 26px;
  color: var(--funnel-accent);
}

.proc-card h3 {
  font-family: var(--font-funnel-display);
  font-weight: 600;
  font-size: 21px;
  line-height: 1.3;
  color: rgb(255, 255, 255);
  margin: 0px 0px 12px;
  letter-spacing: -0.01em;
}

.proc-card p {
  font-family: var(--font-funnel-body);
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--funnel-dim);
  margin: 0px;
}

.offer {
  position: relative;
  background: var(--funnel-surface);
  border-top: 1px solid var(--funnel-line);
  border-bottom: 1px solid var(--funnel-line);
  overflow-x: hidden;
  overflow-y: hidden;
}

.offer-glow {
  position: absolute;
  z-index: 0;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  background-image: radial-gradient(circle, rgba(109, 139, 255, 0.14), transparent 70%);
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  filter: blur(90px);
  pointer-events: none;
}

.offer-head {
  position: relative;
  z-index: 2;
  max-width: 620px;
  margin: 0px auto 56px;
  text-align: center;
}

.ob {
  position: relative;
  background: var(--funnel-bg);
  border: 1px solid var(--funnel-line);
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  border-bottom-right-radius: 18px;
  border-bottom-left-radius: 18px;
  padding: 32px 30px;
  overflow-x: hidden;
  overflow-y: hidden;
  transition-behavior: normal, normal;
  transition-duration: 0.25s, 0.25s;
  transition-timing-function: ease, ease;
  transition-delay: 0s, 0s;
  transition-property: border-color, transform;
}

.ob:hover {
  border-top-color: rgba(109, 139, 255, 0.4);
  border-right-color: rgba(109, 139, 255, 0.4);
  border-bottom-color: rgba(109, 139, 255, 0.4);
  border-left-color: rgba(109, 139, 255, 0.4);
  transform: translateY(-3px);
}

@media (min-width: 768px) {
  .ob-main {
  grid-row-start: span 2;
  grid-row-end: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  }
}

.ob-ico {
  width: 50px;
  height: 50px;
  border-top-left-radius: 13px;
  border-top-right-radius: 13px;
  border-bottom-right-radius: 13px;
  border-bottom-left-radius: 13px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(109, 139, 255, 0.12);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(109, 139, 255, 0.3);
  border-right-color: rgba(109, 139, 255, 0.3);
  border-bottom-color: rgba(109, 139, 255, 0.3);
  border-left-color: rgba(109, 139, 255, 0.3);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.ob-ico svg {
  width: 26px;
  height: 26px;
  color: var(--funnel-accent);
}

.ob-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--funnel-accent-2);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.ob h3 {
  font-family: var(--font-funnel-display);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.25;
  color: rgb(255, 255, 255);
  margin: 0px 0px 10px;
  letter-spacing: -0.01em;
}

.ob-main h3 {
  font-size: 27px;
}

.ob p {
  font-family: var(--font-funnel-body);
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--funnel-dim);
  margin: 0px;
}

.ob-mock {
  margin-top: 26px;
  align-self: center;
}

.ob-mock svg {
  width: 100%;
  max-width: 230px;
  height: auto;
}

.offer-free {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-top: var(--space-l);
  font-family: var(--font-funnel-display);
  color: var(--funnel-text);
  font-size: var(--text-l);
}

.offer-free p {
  font-family: var(--font-funnel-display);
  font-size: 20px;
  font-weight: 500;
  color: rgb(255, 255, 255);
  margin: 0px;
}

.offer-free p span {
  color: var(--funnel-accent);
}

.testi {
  position: relative;
}

.testi-head {
  max-width: 600px;
  margin: 0px auto 52px;
  text-align: center;
}

.testi-grid {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 22px;
  column-gap: 22px;
}

@media (min-width: 768px) {
  .testi-grid {
  grid-template-columns: 1fr 1fr;
  }
}

.tcard {
  position: relative;
  background: var(--funnel-surface);
  border: 1px solid var(--funnel-line);
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  border-bottom-right-radius: 18px;
  border-bottom-left-radius: 18px;
  padding: 34px 32px;
}

.tcard-stars {
  display: flex;
  row-gap: 3px;
  column-gap: 3px;
  margin-bottom: 18px;
}

.tcard-stars svg {
  width: 18px;
  height: 18px;
  color: var(--funnel-accent-2);
}

.tcard-quote {
  font-family: var(--font-funnel-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--funnel-text);
  margin: 0px 0px 24px;
  font-weight: 400;
}

.tcard-quote b {
  color: rgb(255, 255, 255);
  font-weight: 600;
}

.tcard-person {
  display: flex;
  align-items: center;
  row-gap: 14px;
  column-gap: 14px;
}

.tcard-person img {
  width: 48px;
  height: 48px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--funnel-line);
}

.tcard-person b {
  display: block;
  font-family: var(--font-funnel-display);
  font-weight: 600;
  font-size: 16px;
  color: rgb(255, 255, 255);
}

.tcard-person span {
  font-size: 13.5px;
  color: var(--funnel-dim);
}

.signup {
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
  background: var(--funnel-surface);
  border-top: 1px solid var(--funnel-line);
}

.signup-glow-a {
  position: absolute;
  z-index: 0;
  top: -140px;
  left: -100px;
  width: 520px;
  height: 520px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  background-image: radial-gradient(circle, rgba(109, 139, 255, 0.28), transparent 70%);
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  filter: blur(90px);
  pointer-events: none;
}

.signup-glow-b {
  position: absolute;
  z-index: 0;
  bottom: -160px;
  right: -100px;
  width: 480px;
  height: 480px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  background-image: radial-gradient(circle, rgba(255, 142, 93, 0.22), transparent 70%);
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  filter: blur(90px);
  pointer-events: none;
}

.signup-card {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0px auto;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(11, 7, 20, 0.7);
  backdrop-filter: blur(14px);
  border: 1px solid var(--funnel-line);
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  border-bottom-right-radius: 24px;
  border-bottom-left-radius: 24px;
  padding: 52px 44px;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.8) 0px 40px 90px -40px;
}

@media (max-width: 560px) {
  .signup-card {
  padding: 38px 24px;
  }
}

.signup-badge {
  display: inline-flex;
  align-items: center;
  row-gap: 8px;
  column-gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--funnel-accent-2);
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(255, 142, 93, 0.1);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(255, 142, 93, 0.25);
  border-right-color: rgba(255, 142, 93, 0.25);
  border-bottom-color: rgba(255, 142, 93, 0.25);
  border-left-color: rgba(255, 142, 93, 0.25);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  padding: 7px 15px;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-bottom-left-radius: 999px;
  margin-bottom: 22px;
}

.signup-badge svg {
  width: 15px;
  height: 15px;
}

.signup-card h2 {
  font-family: var(--font-funnel-display);
  font-weight: 600;
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: rgb(255, 255, 255);
  margin: 0px;
}

.signup-sub {
  font-family: var(--font-funnel-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--funnel-dim);
  margin: 16px 0px 34px;
}

.signup-form {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 14px;
  column-gap: 14px;
  text-align: left;
}

.finput {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  column-gap: 8px;
}

.finput label {
  font-size: 13px;
  font-weight: 500;
  color: var(--funnel-text);
}

.finput input {
  width: 100%;
  font-family: var(--font-funnel-body);
  font-size: 16px;
  color: rgb(255, 255, 255);
  background: var(--funnel-elevated);
  border: 1px solid var(--funnel-line);
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  padding: 15px 18px;
  outline-color: initial;
  outline-style: none;
  outline-width: initial;
  transition-behavior: normal;
  transition-duration: 0.2s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: border-color;
}

.finput input::placeholder {
  color: rgb(111, 106, 128);
}

.finput input:focus {
  border-color: var(--funnel-accent);
}

.signup-form .f-cta {
  width: 100%;
  margin-top: 8px;
  font-size: 18px;
  padding: 19px 30px;
}

.signup-micro {
  display: flex;
  align-items: center;
  justify-content: center;
  row-gap: 8px;
  column-gap: 8px;
  font-size: 13.5px;
  color: var(--funnel-dim);
  margin-top: 20px;
}

.signup-micro svg {
  width: 15px;
  height: 15px;
  color: var(--funnel-accent);
  flex-shrink: 0;
}

.f-footer {
  position: relative;
  background: var(--funnel-bg);
  border-top: 1px solid var(--funnel-line);
  padding: 48px 0px 40px;
}

.f-footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  row-gap: 24px;
  column-gap: 24px;
}

.f-footer-brand {
  display: flex;
  align-items: center;
  row-gap: 11px;
  column-gap: 11px;
}

.f-footer-brand svg {
  width: 30px;
  height: 30px;
}

.f-footer-brand b {
  font-family: var(--font-funnel-display);
  font-weight: 600;
  font-size: 17px;
  color: rgb(255, 255, 255);
}

.f-footer-brand b span {
  color: var(--funnel-accent);
}

.f-footer-tag {
  font-size: 14px;
  color: var(--funnel-dim);
  max-width: 340px;
  line-height: 1.5;
}

.f-footer-copy {
  width: 100%;
  border-top: 1px solid var(--funnel-line);
  margin-top: 34px;
  padding-top: 24px;
  font-size: 13px;
  color: var(--funnel-dim);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 12px;
  column-gap: 12px;
}

.f-footer-copy a {
  color: var(--funnel-dim);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  transition-behavior: normal;
  transition-duration: 0.2s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: color;
}

.f-footer-copy a:hover {
  color: var(--funnel-accent);
}

.hero-visual .ebook-title {
  font-size: 24px;
  line-height: 1.25;
}

.hero-visual .ebook-meta {
  margin-top: 34px;
}

.sq3-section {
  width: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
}

@keyframes sq3-pulse-dot {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}

@keyframes sq3-float-book {
  0%, 100% {
    transform: perspective(900px) rotateY(-15deg) rotateX(3deg) translateY(0px);
  }
  50% {
    transform: perspective(900px) rotateY(-12deg) rotateX(2deg) translateY(-10px);
  }
}

@keyframes sq3-glow-pulse {
  0%, 100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.08);
  }
}

@keyframes sq3-fade-up {
  0% {
    opacity: 0;
    transform: translateY(24px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

@keyframes sq3-shimmer {
  0% {
    background-position-x: -200%;
    background-position-y: center;
  }
  100% {
    background-position-x: 200%;
    background-position-y: center;
  }
}

.sq3-cta-btn {
  display: inline-flex;
  align-items: center;
  row-gap: 9px;
  column-gap: 9px;
  background: var(--funnel-accent);
  color: rgb(7, 7, 26);
  font-family: var(--font-funnel-display), 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 32px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  border-top-width: medium;
  border-right-width: medium;
  border-bottom-width: medium;
  border-left-width: medium;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  border-top-color: currentcolor;
  border-right-color: currentcolor;
  border-bottom-color: currentcolor;
  border-left-color: currentcolor;
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  cursor: pointer;
  transition-behavior: normal, normal;
  transition-duration: 0.2s, 0.2s;
  transition-timing-function: ease, ease;
  transition-delay: 0s, 0s;
  transition-property: transform, box-shadow;
  white-space-collapse: collapse;
  text-wrap-mode: nowrap;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.sq3-cta-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: rgba(116, 143, 252, 0.45) 0px 12px 40px;
}

.sq3-cta-btn svg {
  flex-shrink: 0;
}

.sq3-eyebrow {
  display: inline-flex;
  align-items: center;
  row-gap: 8px;
  column-gap: 8px;
  font-family: var(--font-funnel-body), 'Inter Tight', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--funnel-accent);
  margin-bottom: 18px;
}

.sq3-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  background: var(--funnel-accent);
  flex-shrink: 0;
  animation-duration: 2.2s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-fill-mode: none;
  animation-play-state: running;
  animation-name: sq3-pulse-dot;
  animation-timeline: auto;
  animation-range-start: normal;
  animation-range-end: normal;
  display: inline-block;
  vertical-align: middle;
}

.sq3-card:hover {
  border-top-color: rgba(116, 143, 252, 0.3);
  border-right-color: rgba(116, 143, 252, 0.3);
  border-bottom-color: rgba(116, 143, 252, 0.3);
  border-left-color: rgba(116, 143, 252, 0.3);
  box-shadow: rgba(116, 143, 252, 0.12) 0px 0px 0px 1px, rgba(0, 0, 0, 0.26) 0px 0px 8px 0px;
}

.sq3-icon-wrap {
  width: 44px;
  height: 44px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(116, 143, 252, 0.12);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(116, 143, 252, 0.2);
  border-right-color: rgba(116, 143, 252, 0.2);
  border-bottom-color: rgba(116, 143, 252, 0.2);
  border-left-color: rgba(116, 143, 252, 0.2);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.sq3-icon-wrap svg {
  color: var(--funnel-accent);
}

.sq3-header {
  width: 100%;
  padding: 0px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(9, 6, 22, 0.95);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(255, 255, 255, 0.07);
}

.sq3-header-inner {
  max-width: 1180px;
  margin: 0px auto;
  padding: 0px 32px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .sq3-header-inner {
  padding: 0px 20px;
  height: 60px;
  }
}

.sq3-logo {
  display: flex;
  align-items: center;
  row-gap: 10px;
  column-gap: 10px;
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}

.sq3-logo-icon {
  width: 34px;
  height: 34px;
}

.sq3-logo-text {
  font-family: var(--font-funnel-display), 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: rgb(255, 255, 255);
  letter-spacing: -0.02em;
}

@media (max-width: 768px) {
  .sq3-logo-text {
  font-size: 16px;
  }
}

.sq3-logo-text span {
  color: var(--funnel-accent);
}

.sq3-header-cta {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(116, 143, 252, 0.15);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(116, 143, 252, 0.3);
  border-right-color: rgba(116, 143, 252, 0.3);
  border-bottom-color: rgba(116, 143, 252, 0.3);
  border-left-color: rgba(116, 143, 252, 0.3);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  color: var(--funnel-accent);
  font-family: var(--font-funnel-body), 'Inter Tight', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 9px 20px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  letter-spacing: -0.01em;
  transition-behavior: normal, normal;
  transition-duration: 0.2s, 0.2s;
  transition-timing-function: ease, ease;
  transition-delay: 0s, 0s;
  transition-property: background, border-color;
  white-space-collapse: collapse;
  text-wrap-mode: nowrap;
}

.sq3-header-cta:hover {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(116, 143, 252, 0.25);
  border-top-color: rgba(116, 143, 252, 0.5);
  border-right-color: rgba(116, 143, 252, 0.5);
  border-bottom-color: rgba(116, 143, 252, 0.5);
  border-left-color: rgba(116, 143, 252, 0.5);
}

.sq3-hero {
  position: relative;
  width: 100%;
  background: var(--funnel-bg);
  overflow-x: hidden;
  overflow-y: hidden;
  padding: 96px 0px 112px;
}

@media (max-width: 900px) {
  .sq3-hero {
  padding: 72px 0px 80px;
  }
}

@media (max-width: 768px) {
  .sq3-hero {
  padding: 56px 0px 64px;
  }
}

.sq3-hero-bg {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  z-index: 0;
  pointer-events: none;
}

.sq3-hero-glow-1 {
  position: absolute;
  top: -120px;
  left: -80px;
  width: 600px;
  height: 600px;
  background-image: radial-gradient(circle, rgba(116, 143, 252, 0.18) 0%, transparent 70%);
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  animation-duration: 5s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-fill-mode: none;
  animation-play-state: running;
  animation-name: sq3-glow-pulse;
  animation-timeline: auto;
  animation-range-start: normal;
  animation-range-end: normal;
}

.sq3-hero-glow-2 {
  position: absolute;
  bottom: -100px;
  right: -60px;
  width: 500px;
  height: 500px;
  background-image: radial-gradient(circle, rgba(255, 143, 100, 0.1) 0%, transparent 70%);
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
}

.sq3-hero-grid {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background-image: linear-gradient(rgba(116, 143, 252, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(116, 143, 252, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(rgba(0, 0, 0, 0.8) 0%, transparent 75%);
}

.sq3-hero-inner {
  max-width: 1180px;
  margin: 0px auto;
  padding: 0px 32px;
  position: relative;
  z-index: 1;
  display: grid;
  row-gap: 56px;
  column-gap: 56px;
  align-items: center;
}

@media (max-width: 768px) {
  .sq3-hero-inner {
  padding: 0px 20px;
  }
}

.sq3-hero-content {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0%;
}

.sq3-hero-badge {
  display: inline-flex;
  align-items: center;
  row-gap: 8px;
  column-gap: 8px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(116, 143, 252, 0.1);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(116, 143, 252, 0.22);
  border-right-color: rgba(116, 143, 252, 0.22);
  border-bottom-color: rgba(116, 143, 252, 0.22);
  border-left-color: rgba(116, 143, 252, 0.22);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  border-top-left-radius: 100px;
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
  border-bottom-left-radius: 100px;
  padding: 6px 14px 6px 8px;
  margin-bottom: 28px;
}

.sq3-hero-badge-dot {
  width: 7px;
  height: 7px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  background: var(--funnel-accent);
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-fill-mode: none;
  animation-play-state: running;
  animation-name: sq3-pulse-dot;
  animation-timeline: auto;
  animation-range-start: normal;
  animation-range-end: normal;
}

.sq3-hero-badge-text {
  font-family: var(--font-funnel-body), 'Inter Tight', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--funnel-accent);
  letter-spacing: 0.03em;
}

.sq3-hero-h1 {
  font-family: var(--font-funnel-display), 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 5.5vw, 58px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.15;
  color: rgb(255, 255, 255);
  margin: 0px 0px 12px;
  padding: 6px 0px;
  display: block;
}

.sq3-hero-h1 .accent {
  color: var(--funnel-accent);
}

.sq3-hero-sub {
  font-family: var(--font-funnel-body), 'Inter Tight', sans-serif;
  font-size: clamp(16px, 2.2vw, 18px);
  font-weight: 400;
  color: var(--funnel-text);
  line-height: 1.65;
  margin: 0px 0px 36px;
  max-width: 540px;
}

@media (max-width: 768px) {
  .sq3-hero-sub {
  max-width: 100%;
  }
}

.sq3-hero-cta-block {
  display: flex;
  flex-direction: column;
  row-gap: 14px;
  column-gap: 14px;
  align-items: flex-start;
}

.sq3-hero-trust {
  display: flex;
  align-items: center;
  row-gap: 8px;
  column-gap: 8px;
  font-family: var(--font-funnel-body), 'Inter Tight', sans-serif;
  font-size: 13px;
  color: var(--funnel-dim);
}

.sq3-hero-trust svg {
  color: var(--funnel-accent);
  flex-shrink: 0;
}

.sq3-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

@media (max-width: 900px) {
  .sq3-hero-visual {
  margin-top: 0px;
  }
}

.sq3-book-wrapper {
  position: relative;
  animation-duration: 4.5s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-fill-mode: none;
  animation-play-state: running;
  animation-name: sq3-float-book;
  animation-timeline: auto;
  animation-range-start: normal;
  animation-range-end: normal;
}

.sq3-book-glow {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  height: 60px;
  background-image: radial-gradient(rgba(116, 143, 252, 0.35) 0%, transparent 75%);
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  filter: blur(12px);
  animation-duration: 4s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-fill-mode: none;
  animation-play-state: running;
  animation-name: sq3-glow-pulse;
  animation-timeline: auto;
  animation-range-start: normal;
  animation-range-end: normal;
}

.sq3-book {
  width: 200px;
  height: 260px;
  position: relative;
  transform-style: preserve-3d;
}

@media (max-width: 900px) {
  .sq3-book {
  width: 160px;
  height: 208px;
  }
}

.sq3-book-cover {
  width: 200px;
  height: 260px;
  border-top-left-radius: 4px;
  border-top-right-radius: 14px;
  border-bottom-right-radius: 14px;
  border-bottom-left-radius: 4px;
  background-image: linear-gradient(145deg, rgb(26, 22, 56) 0%, rgb(14, 12, 34) 100%);
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(116, 143, 252, 0.25);
  border-right-color: rgba(116, 143, 252, 0.25);
  border-bottom-color: rgba(116, 143, 252, 0.25);
  border-left-color: rgba(116, 143, 252, 0.25);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  box-shadow: rgba(0, 0, 0, 0.6) 8px 12px 48px, rgba(255, 255, 255, 0.08) 0px 1px 0px inset;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 24px 20px;
  overflow-x: hidden;
  overflow-y: hidden;
  position: relative;
}

@media (max-width: 900px) {
  .sq3-book-cover {
  width: 160px;
  height: 208px;
  }
}

.sq3-book-cover::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  height: 120px;
  background-image: radial-gradient(at 60% 0%, rgba(116, 143, 252, 0.22) 0%, transparent 70%);
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
}

.sq3-book-spine {
  position: absolute;
  left: -14px;
  top: 0px;
  width: 14px;
  height: 260px;
  background-image: linear-gradient(to right, rgb(6, 4, 18), rgb(26, 22, 56));
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  border-top-left-radius: 4px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 4px;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(116, 143, 252, 0.12);
  border-bottom-color: rgba(116, 143, 252, 0.12);
  border-left-color: rgba(116, 143, 252, 0.12);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  border-right-width: medium;
  border-right-style: none;
  border-right-color: currentcolor;
}

@media (max-width: 900px) {
  .sq3-book-spine {
  height: 208px;
  }
}

.sq3-book-spine-line {
  position: absolute;
  left: -12px;
  top: 0px;
  width: 2px;
  height: 260px;
  background-image: linear-gradient(transparent, rgba(116, 143, 252, 0.3), transparent);
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
}

@media (max-width: 900px) {
  .sq3-book-spine-line {
  height: 208px;
  }
}

.sq3-book-icon {
  width: 44px;
  height: 44px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(116, 143, 252, 0.15);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(116, 143, 252, 0.3);
  border-right-color: rgba(116, 143, 252, 0.3);
  border-bottom-color: rgba(116, 143, 252, 0.3);
  border-left-color: rgba(116, 143, 252, 0.3);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  position: relative;
}

.sq3-book-title-text {
  font-family: var(--font-funnel-display), 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: rgb(255, 255, 255);
  line-height: 1.3;
  letter-spacing: -0.01em;
  position: relative;
}

.sq3-book-sub-text {
  font-family: var(--font-funnel-body), 'Inter Tight', sans-serif;
  font-size: 11px;
  color: var(--funnel-dim);
  margin-top: 6px;
  position: relative;
}

.sq3-book-badge {
  top: 16px;
  right: 16px;
  background: var(--funnel-accent);
  color: rgb(7, 7, 26);
  font-family: var(--font-funnel-display), 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 10px;
  border-top-left-radius: 100px;
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
  border-bottom-left-radius: 100px;
  letter-spacing: 0.03em;
  position: absolute;
}

.sq3-book-pages {
  position: absolute;
  right: -8px;
  top: 4px;
  width: 8px;
  height: 252px;
  background-image: repeating-linear-gradient(rgb(232, 228, 240), rgb(232, 228, 240) 2px, rgb(208, 204, 220) 2px, rgb(208, 204, 220) 4px);
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  border-top-left-radius: 0px;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 0px;
  opacity: 0.7;
}

@media (max-width: 900px) {
  .sq3-book-pages {
  height: 200px;
  }
}

.sq3-hero-grid-layout {
  grid-template-columns: 1fr 380px;
}

@media (max-width: 900px) {
  .sq3-hero-grid-layout {
  grid-template-columns: 1fr;
  }
}

.sq3-problem {
  padding: 96px 0px;
  position: relative;
  background: var(--funnel-surface);
}

@media (max-width: 768px) {
  .sq3-problem {
  padding: 64px 0px;
  }
}

.sq3-problem::before {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background-image: radial-gradient(rgba(116, 143, 252, 0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.sq3-problem-inner {
  max-width: 1180px;
  margin: 0px auto;
  padding: 0px 32px;
  position: relative;
  z-index: 1;
  display: grid;
  row-gap: 56px;
  column-gap: 56px;
  align-items: center;
}

@media (max-width: 768px) {
  .sq3-problem-inner {
  padding: 0px 20px;
  row-gap: 36px;
  column-gap: 36px;
  }
}

.sq3-problem-grid {
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 768px) {
  .sq3-problem-grid {
  grid-template-columns: 1fr;
  }
}

.sq3-problem-title {
  font-family: var(--font-funnel-display), 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: rgb(255, 255, 255);
  line-height: 1.15;
  margin: 0px 0px 20px;
  padding: 3px 0px;
  display: block;
}

.sq3-problem-body {
  font-family: var(--font-funnel-body), 'Inter Tight', sans-serif;
  font-size: 17px;
  color: var(--funnel-text);
  line-height: 1.7;
}

.sq3-problem-body p {
  margin: 0px 0px 14px;
}

.sq3-problem-body p:last-child {
  margin: 0px;
}

.sq3-problem-hl {
  color: rgb(255, 255, 255);
  font-weight: 600;
}

.sq3-problem-right {
  display: flex;
  flex-direction: column;
  row-gap: 14px;
  column-gap: 14px;
}

.sq3-problem-card {
  background: var(--funnel-elevated);
  border: 1px solid var(--funnel-line);
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  border-bottom-right-radius: 14px;
  border-bottom-left-radius: 14px;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  row-gap: 14px;
  column-gap: 14px;
  transition-behavior: normal, normal;
  transition-duration: 0.2s, 0.2s;
  transition-timing-function: ease, ease;
  transition-delay: 0s, 0s;
  transition-property: border-color, transform;
}

.sq3-problem-card:hover {
  border-top-color: rgba(116, 143, 252, 0.25);
  border-right-color: rgba(116, 143, 252, 0.25);
  border-bottom-color: rgba(116, 143, 252, 0.25);
  border-left-color: rgba(116, 143, 252, 0.25);
  transform: translateX(4px);
}

.sq3-problem-card-icon {
  width: 38px;
  height: 38px;
  border-top-left-radius: 9px;
  border-top-right-radius: 9px;
  border-bottom-right-radius: 9px;
  border-bottom-left-radius: 9px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(116, 143, 252, 0.1);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(116, 143, 252, 0.2);
  border-right-color: rgba(116, 143, 252, 0.2);
  border-bottom-color: rgba(116, 143, 252, 0.2);
  border-left-color: rgba(116, 143, 252, 0.2);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sq3-problem-card-text {
  font-family: var(--font-funnel-body), 'Inter Tight', sans-serif;
  font-size: 15px;
  color: var(--funnel-text);
  line-height: 1.5;
  font-weight: 500;
}

.sq3-pain {
  padding: 96px 0px;
  background: var(--funnel-bg);
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
}

@media (max-width: 768px) {
  .sq3-pain {
  padding: 64px 0px;
  }
}

.sq3-pain::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 400px;
  background-image: radial-gradient(rgba(116, 143, 252, 0.06) 0%, transparent 70%);
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  pointer-events: none;
}

.sq3-pain-inner {
  max-width: 1180px;
  margin: 0px auto;
  padding: 0px 32px;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .sq3-pain-inner {
  padding: 0px 20px;
  }
}

.sq3-pain-header {
  text-align: center;
  margin-bottom: 52px;
}

.sq3-pain-title {
  font-family: var(--font-funnel-display), 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 3.8vw, 40px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: rgb(255, 255, 255);
  line-height: 1.15;
  margin: 0px 0px 12px;
  padding: 3px 0px;
}

.sq3-pain-sub {
  font-family: var(--font-funnel-body), 'Inter Tight', sans-serif;
  font-size: 17px;
  color: var(--funnel-dim);
  line-height: 1.65;
  max-width: 500px;
  margin: 0px auto;
}

.sq3-pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 16px;
  column-gap: 16px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .sq3-pain-grid {
  grid-template-columns: 1fr;
  }
}

.sq3-pain-card {
  background: var(--funnel-elevated);
  border: 1px solid var(--funnel-line);
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
  padding: 28px;
  transition-behavior: normal, normal;
  transition-duration: 0.2s, 0.2s;
  transition-timing-function: ease, ease;
  transition-delay: 0s, 0s;
  transition-property: border-color, box-shadow;
}

.sq3-pain-card:hover {
  border-top-color: rgba(116, 143, 252, 0.25);
  border-right-color: rgba(116, 143, 252, 0.25);
  border-bottom-color: rgba(116, 143, 252, 0.25);
  border-left-color: rgba(116, 143, 252, 0.25);
  box-shadow: rgba(255, 255, 255, 0.05) 0px 4px 12px 0px inset, rgba(0, 0, 0, 0.23) 0px 4px 16px -8px;
}

.sq3-pain-card-icon {
  margin-bottom: 16px;
}

.sq3-pain-card-title {
  font-family: var(--font-funnel-display), 'Space Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: rgb(255, 255, 255);
  margin: 0px 0px 8px;
  letter-spacing: -0.02em;
}

.sq3-pain-card-text {
  font-family: var(--font-funnel-body), 'Inter Tight', sans-serif;
  font-size: 14px;
  color: var(--funnel-dim);
  line-height: 1.6;
  margin: 0px;
}

.sq3-pain-cta {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(116, 143, 252, 0.07);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(116, 143, 252, 0.15);
  border-right-color: rgba(116, 143, 252, 0.15);
  border-bottom-color: rgba(116, 143, 252, 0.15);
  border-left-color: rgba(116, 143, 252, 0.15);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  row-gap: 24px;
  column-gap: 24px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .sq3-pain-cta {
  padding: 24px;
  }
}

.sq3-pain-cta-text {
  font-family: var(--font-funnel-display), 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: rgb(255, 255, 255);
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.sq3-pain-cta-text span {
  color: var(--funnel-accent);
}

.sq3-proof {
  padding: 96px 0px;
  background: var(--funnel-surface);
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
}

@media (max-width: 768px) {
  .sq3-proof {
  padding: 64px 0px;
  }
}

.sq3-proof::before {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background-image: radial-gradient(rgba(255, 143, 100, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.sq3-proof-inner {
  max-width: 1180px;
  margin: 0px auto;
  padding: 0px 32px;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .sq3-proof-inner {
  padding: 0px 20px;
  }
}

.sq3-proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 56px;
  column-gap: 56px;
  align-items: center;
}

@media (max-width: 900px) {
  .sq3-proof-grid {
  grid-template-columns: 1fr;
  }
}

.sq3-proof-title {
  font-family: var(--font-funnel-display), 'Space Grotesk', sans-serif;
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: rgb(255, 255, 255);
  line-height: 1.15;
  margin: 0px 0px 20px;
  padding: 3px 0px;
}

.sq3-proof-body {
  font-family: var(--font-funnel-body), 'Inter Tight', sans-serif;
  font-size: 16px;
  color: var(--funnel-text);
  line-height: 1.7;
  margin: 0px 0px 32px;
}

.sq3-proof-body p {
  margin: 0px 0px 12px;
}

.sq3-proof-body p:last-child {
  margin: 0px;
}

.sq3-proof-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 16px;
  column-gap: 16px;
}

@media (max-width: 768px) {
  .sq3-proof-stats {
  grid-template-columns: 1fr 1fr;
  }
}

.sq3-proof-stat {
  background: var(--funnel-elevated);
  border: 1px solid var(--funnel-line);
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  border-bottom-right-radius: 14px;
  border-bottom-left-radius: 14px;
  padding: 22px;
  transition-behavior: normal;
  transition-duration: 0.2s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: border-color;
}

.sq3-proof-stat:hover {
  border-top-color: rgba(116, 143, 252, 0.3);
  border-right-color: rgba(116, 143, 252, 0.3);
  border-bottom-color: rgba(116, 143, 252, 0.3);
  border-left-color: rgba(116, 143, 252, 0.3);
}

.sq3-proof-stat-number {
  font-family: var(--font-funnel-display), 'Space Grotesk', sans-serif;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  color: var(--funnel-accent);
  letter-spacing: -0.04em;
  line-height: 1.15;
  margin-bottom: 6px;
  display: block;
  padding: 2px 0px;
}

.sq3-proof-stat-label {
  font-family: var(--font-funnel-body), 'Inter Tight', sans-serif;
  font-size: 13px;
  color: var(--funnel-dim);
  line-height: 1.4;
}

.sq3-proof-right {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  column-gap: 16px;
}

.sq3-proof-author-card {
  background: var(--funnel-elevated);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(116, 143, 252, 0.2);
  border-right-color: rgba(116, 143, 252, 0.2);
  border-bottom-color: rgba(116, 143, 252, 0.2);
  border-left-color: rgba(116, 143, 252, 0.2);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  padding: 28px;
  box-shadow: rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset, rgba(255, 142, 93, 0.3) 0px 1px 0px 0px inset;
}

.sq3-proof-author-top {
  display: flex;
  align-items: center;
  row-gap: 14px;
  column-gap: 14px;
  margin-bottom: 20px;
}

.sq3-proof-avatar {
  width: 56px;
  height: 56px;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  border-bottom-right-radius: 14px;
  border-bottom-left-radius: 14px;
  background-image: linear-gradient(135deg, rgba(116, 143, 252, 0.3), rgba(255, 143, 100, 0.2));
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(116, 143, 252, 0.3);
  border-right-color: rgba(116, 143, 252, 0.3);
  border-bottom-color: rgba(116, 143, 252, 0.3);
  border-left-color: rgba(116, 143, 252, 0.3);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-funnel-display), 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--funnel-accent);
  flex-shrink: 0;
}

.sq3-proof-author-name {
  font-family: var(--font-funnel-display), 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: rgb(255, 255, 255);
  letter-spacing: -0.02em;
}

.sq3-proof-author-title {
  font-family: var(--font-funnel-body), 'Inter Tight', sans-serif;
  font-size: 13px;
  color: var(--funnel-dim);
  margin-top: 2px;
}

.sq3-proof-creds {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  column-gap: 10px;
}

.sq3-proof-cred {
  display: flex;
  align-items: flex-start;
  row-gap: 10px;
  column-gap: 10px;
  font-family: var(--font-funnel-body), 'Inter Tight', sans-serif;
  font-size: 14px;
  color: var(--funnel-text);
  line-height: 1.5;
}

.sq3-proof-cred-dot {
  width: 6px;
  height: 6px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  background: var(--funnel-accent);
  margin-top: 6px;
  flex-shrink: 0;
}

.sq3-process {
  padding: 96px 0px;
  background: var(--funnel-bg);
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
}

@media (max-width: 768px) {
  .sq3-process {
  padding: 64px 0px;
  }
}

.sq3-process::before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  height: 300px;
  background-image: linear-gradient(to top, rgba(116, 143, 252, 0.04), transparent);
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  pointer-events: none;
}

.sq3-process-inner {
  max-width: 1180px;
  margin: 0px auto;
  padding: 0px 32px;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .sq3-process-inner {
  padding: 0px 20px;
  }
}

.sq3-process-header {
  text-align: center;
  margin-bottom: 56px;
}

.sq3-process-title {
  font-family: var(--font-funnel-display), 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 3.8vw, 40px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: rgb(255, 255, 255);
  line-height: 1.15;
  margin: 0px 0px 14px;
  padding: 3px 0px;
}

.sq3-process-sub {
  font-family: var(--font-funnel-body), 'Inter Tight', sans-serif;
  font-size: 17px;
  color: var(--funnel-dim);
  max-width: 520px;
  margin: 0px auto;
  line-height: 1.6;
}

.sq3-process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 20px;
  column-gap: 20px;
  margin-bottom: 48px;
}

@media (max-width: 768px) {
  .sq3-process-steps {
  grid-template-columns: 1fr;
  }
}

.sq3-process-step {
  background: var(--funnel-elevated);
  border: 1px solid var(--funnel-line);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  padding: 32px 28px;
  position: relative;
  transition-behavior: normal, normal;
  transition-duration: 0.2s, 0.2s;
  transition-timing-function: ease, ease;
  transition-delay: 0s, 0s;
  transition-property: border-color, transform;
}

.sq3-process-step:hover {
  border-top-color: rgba(116, 143, 252, 0.3);
  border-right-color: rgba(116, 143, 252, 0.3);
  border-bottom-color: rgba(116, 143, 252, 0.3);
  border-left-color: rgba(116, 143, 252, 0.3);
  transform: translateY(-4px);
}

.sq3-process-step-badge {
  font-family: var(--font-funnel-body), 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--funnel-accent);
  margin-bottom: 16px;
  opacity: 0.8;
}

.sq3-process-step-icon {
  margin-bottom: 18px;
}

.sq3-process-step-title {
  font-family: var(--font-funnel-display), 'Space Grotesk', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: rgb(255, 255, 255);
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 0px 0px 12px;
}

.sq3-process-step-body {
  font-family: var(--font-funnel-body), 'Inter Tight', sans-serif;
  font-size: 14px;
  color: var(--funnel-dim);
  line-height: 1.65;
  margin: 0px;
}

.sq3-process-connector {
  position: absolute;
  top: 44px;
  right: -12px;
  width: 24px;
  height: 2px;
  background-image: linear-gradient(to right, rgba(116, 143, 252, 0.4), rgba(116, 143, 252, 0.1));
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  z-index: 2;
}

@media (max-width: 900px) {
  .sq3-process-connector {
  display: none;
  }
}

@media (max-width: 768px) {
  .sq3-process-connector {
  display: none;
  }
}

.sq3-process-step:last-child .sq3-process-connector {
  display: none;
}

.sq3-offer {
  padding: 96px 0px;
  background: var(--funnel-surface);
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
}

@media (max-width: 768px) {
  .sq3-offer {
  padding: 64px 0px;
  }
}

.sq3-offer::before {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background-image: linear-gradient(rgba(116, 143, 252, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(116, 143, 252, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.sq3-offer-inner {
  max-width: 1180px;
  margin: 0px auto;
  padding: 0px 32px;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .sq3-offer-inner {
  padding: 0px 20px;
  }
}

.sq3-offer-header {
  text-align: center;
  margin-bottom: 48px;
}

.sq3-offer-title {
  font-family: var(--font-funnel-display), 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 3.8vw, 40px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: rgb(255, 255, 255);
  line-height: 1.15;
  margin: 0px 0px 14px;
  padding: 3px 0px;
}

.sq3-offer-sub {
  font-family: var(--font-funnel-body), 'Inter Tight', sans-serif;
  font-size: 17px;
  color: var(--funnel-dim);
  max-width: 480px;
  margin: 0px auto;
}

.sq3-bento {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: auto auto;
  row-gap: 16px;
  column-gap: 16px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .sq3-bento {
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  }
}

@media (max-width: 375px) {
  .sq3-bento {
  grid-template-columns: 1fr;
  }
}

.sq3-bento-card {
  background: var(--funnel-elevated);
  border: 1px solid var(--funnel-line);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  padding: 32px;
  transition-behavior: normal, normal;
  transition-duration: 0.2s, 0.2s;
  transition-timing-function: ease, ease;
  transition-delay: 0s, 0s;
  transition-property: border-color, transform;
}

.sq3-bento-card:hover {
  border-top-color: rgba(116, 143, 252, 0.28);
  border-right-color: rgba(116, 143, 252, 0.28);
  border-bottom-color: rgba(116, 143, 252, 0.28);
  border-left-color: rgba(116, 143, 252, 0.28);
  transform: translateY(-3px);
}

.sq3-bento-main {
  grid-column-start: 1;
  grid-column-end: auto;
  grid-row-start: 1;
  grid-row-end: 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(145deg, rgba(116,143,252,0.1) 0%, var(--funnel-elevated) 100%);
  border-top-color: rgba(116, 143, 252, 0.2);
  border-right-color: rgba(116, 143, 252, 0.2);
  border-bottom-color: rgba(116, 143, 252, 0.2);
  border-left-color: rgba(116, 143, 252, 0.2);
}

@media (max-width: 768px) {
  .sq3-bento-main {
  grid-column-start: 1;
  grid-column-end: auto;
  grid-row-start: auto;
  grid-row-end: auto;
  }
}

@media (max-width: 375px) {
  .sq3-bento-main {
  grid-column-start: auto;
  grid-column-end: auto;
  grid-row-start: auto;
  grid-row-end: auto;
  }
}

.sq3-bento-card-eyebrow {
  font-family: var(--font-funnel-body), 'Inter Tight', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--funnel-accent);
  margin-bottom: 14px;
}

.sq3-bento-card-icon {
  margin-bottom: 14px;
}

.sq3-bento-card-title {
  font-family: var(--font-funnel-display), 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: rgb(255, 255, 255);
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin: 0px 0px 10px;
}

.sq3-bento-card-body {
  font-family: var(--font-funnel-body), 'Inter Tight', sans-serif;
  font-size: 14px;
  color: var(--funnel-dim);
  line-height: 1.6;
  margin: 0px;
}

.sq3-bento-bottom {
  margin-top: 20px;
}

.sq3-bento-tag {
  display: inline-block;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(116, 143, 252, 0.12);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(116, 143, 252, 0.2);
  border-right-color: rgba(116, 143, 252, 0.2);
  border-bottom-color: rgba(116, 143, 252, 0.2);
  border-left-color: rgba(116, 143, 252, 0.2);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  border-top-left-radius: 100px;
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
  border-bottom-left-radius: 100px;
  padding: 6px 14px;
  font-family: var(--font-funnel-body), 'Inter Tight', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--funnel-accent);
}

.sq3-offer-free {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(116, 143, 252, 0.06);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(116, 143, 252, 0.15);
  border-right-color: rgba(116, 143, 252, 0.15);
  border-bottom-color: rgba(116, 143, 252, 0.15);
  border-left-color: rgba(116, 143, 252, 0.15);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  row-gap: 20px;
  column-gap: 20px;
  flex-wrap: wrap;
}

.sq3-offer-free-text {
  font-family: var(--font-funnel-display), 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: rgb(255, 255, 255);
  letter-spacing: -0.02em;
}

.sq3-offer-free-sub {
  font-family: var(--font-funnel-body), 'Inter Tight', sans-serif;
  font-size: 14px;
  color: var(--funnel-dim);
  margin-top: 4px;
}

.sq3-testi {
  padding: 96px 0px;
  background: var(--funnel-bg);
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
}

@media (max-width: 768px) {
  .sq3-testi {
  padding: 64px 0px;
  }
}

.sq3-testi::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--funnel-accent), transparent);
  opacity: 0.3;
}

.sq3-testi-inner {
  max-width: 1180px;
  margin: 0px auto;
  padding: 0px 32px;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .sq3-testi-inner {
  padding: 0px 20px;
  }
}

.sq3-testi-header {
  text-align: center;
  margin-bottom: 52px;
}

.sq3-testi-title {
  font-family: var(--font-funnel-display), 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 3.8vw, 40px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: rgb(255, 255, 255);
  line-height: 1.15;
  margin: 0px;
  padding: 3px 0px;
}

.sq3-testi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 20px;
  column-gap: 20px;
}

@media (max-width: 768px) {
  .sq3-testi-grid {
  grid-template-columns: 1fr;
  }
}

.sq3-testi-card {
  background: var(--funnel-elevated);
  border: 1px solid var(--funnel-line);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  column-gap: 20px;
  transition-behavior: normal;
  transition-duration: 0.2s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: border-color;
}

.sq3-testi-card:hover {
  border-top-color: rgba(116, 143, 252, 0.25);
  border-right-color: rgba(116, 143, 252, 0.25);
  border-bottom-color: rgba(116, 143, 252, 0.25);
  border-left-color: rgba(116, 143, 252, 0.25);
}

.sq3-testi-stars {
  display: flex;
  row-gap: 4px;
  column-gap: 4px;
}

.sq3-testi-star {
  width: 16px;
  height: 16px;
  background: var(--funnel-accent);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.sq3-testi-quote {
  font-family: var(--font-funnel-body), 'Inter Tight', sans-serif;
  font-size: 16px;
  color: var(--funnel-text);
  line-height: 1.7;
  font-style: normal;
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0%;
}

.sq3-testi-person {
  display: flex;
  align-items: center;
  row-gap: 12px;
  column-gap: 12px;
}

.sq3-testi-avatar {
  width: 44px;
  height: 44px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  background-image: linear-gradient(135deg, rgba(116, 143, 252, 0.25), rgba(255, 143, 100, 0.15));
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(116, 143, 252, 0.2);
  border-right-color: rgba(116, 143, 252, 0.2);
  border-bottom-color: rgba(116, 143, 252, 0.2);
  border-left-color: rgba(116, 143, 252, 0.2);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-funnel-display), 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--funnel-accent);
  flex-shrink: 0;
}

.sq3-testi-name {
  font-family: var(--font-funnel-display), 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: rgb(255, 255, 255);
  letter-spacing: -0.01em;
}

.sq3-testi-role {
  font-family: var(--font-funnel-body), 'Inter Tight', sans-serif;
  font-size: 13px;
  color: var(--funnel-dim);
  margin-top: 2px;
}

.sq3-optin {
  padding: 96px 0px 112px;
  background: var(--funnel-surface);
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
}

@media (max-width: 768px) {
  .sq3-optin {
  padding: 64px 0px 80px;
  }
}

.sq3-optin::before {
  content: "";
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background-image: radial-gradient(rgba(116, 143, 252, 0.12) 0%, transparent 70%);
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  pointer-events: none;
}

.sq3-optin-inner {
  max-width: 600px;
  margin: 0px auto;
  padding: 0px 32px;
  position: relative;
  z-index: 1;
  text-align: center;
}

@media (max-width: 768px) {
  .sq3-optin-inner {
  padding: 0px 16px;
  }
}

.sq3-optin-card {
  background: var(--funnel-elevated);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(116, 143, 252, 0.2);
  border-right-color: rgba(116, 143, 252, 0.2);
  border-bottom-color: rgba(116, 143, 252, 0.2);
  border-left-color: rgba(116, 143, 252, 0.2);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  border-bottom-right-radius: 24px;
  border-bottom-left-radius: 24px;
  padding: 48px 40px;
  box-shadow: rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset, rgba(0, 0, 0, 0.26) 0px 0px 8px 0px;
}

@media (max-width: 768px) {
  .sq3-optin-card {
  padding: 32px 24px;
  }
}

.sq3-optin-title {
  font-family: var(--font-funnel-display), 'Space Grotesk', sans-serif;
  font-size: clamp(26px, 3.5vw, 34px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: rgb(255, 255, 255);
  line-height: 1.2;
  margin: 0px 0px 10px;
  padding: 3px 0px;
}

.sq3-optin-sub {
  font-family: var(--font-funnel-body), 'Inter Tight', sans-serif;
  font-size: 15px;
  color: var(--funnel-dim);
  line-height: 1.6;
  margin: 0px 0px 32px;
}

.sq3-optin-form {
  display: flex;
  flex-direction: column;
  row-gap: 14px;
  column-gap: 14px;
}

.sq3-optin-field {
  display: flex;
  flex-direction: column;
  row-gap: 6px;
  column-gap: 6px;
  text-align: left;
}

.sq3-optin-label {
  font-family: var(--font-funnel-body), 'Inter Tight', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--funnel-text);
  letter-spacing: 0.02em;
}

.sq3-optin-input {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(255, 255, 255, 0.04);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(255, 255, 255, 0.1);
  border-right-color: rgba(255, 255, 255, 0.1);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  border-left-color: rgba(255, 255, 255, 0.1);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  padding: 14px 16px;
  font-family: var(--font-funnel-body), 'Inter Tight', sans-serif;
  font-size: 15px;
  color: rgb(255, 255, 255);
  outline-color: initial;
  outline-style: none;
  outline-width: initial;
  transition-behavior: normal, normal;
  transition-duration: 0.2s, 0.2s;
  transition-timing-function: ease, ease;
  transition-delay: 0s, 0s;
  transition-property: border-color, box-shadow;
  width: 100%;
  display: block;
}

.sq3-optin-input:focus {
  border-top-color: rgba(116, 143, 252, 0.5);
  border-right-color: rgba(116, 143, 252, 0.5);
  border-bottom-color: rgba(116, 143, 252, 0.5);
  border-left-color: rgba(116, 143, 252, 0.5);
  box-shadow: rgba(116, 143, 252, 0.1) 0px 0px 0px 3px;
}

.sq3-optin-input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.sq3-optin-submit {
  background: var(--funnel-accent);
  color: rgb(7, 7, 26);
  font-family: var(--font-funnel-display), 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 17px 28px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  border-top-width: medium;
  border-right-width: medium;
  border-bottom-width: medium;
  border-left-width: medium;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  border-top-color: currentcolor;
  border-right-color: currentcolor;
  border-bottom-color: currentcolor;
  border-left-color: currentcolor;
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  cursor: pointer;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  row-gap: 9px;
  column-gap: 9px;
  transition-behavior: normal, normal;
  transition-duration: 0.2s, 0.2s;
  transition-timing-function: ease, ease;
  transition-delay: 0s, 0s;
  transition-property: transform, box-shadow;
  white-space-collapse: collapse;
  text-wrap-mode: nowrap;
  margin-top: 4px;
  letter-spacing: -0.01em;
}

.sq3-optin-submit:hover {
  transform: translateY(-2px);
  box-shadow: rgba(116, 143, 252, 0.4) 0px 10px 36px;
}

.sq3-optin-microcopy {
  display: flex;
  align-items: center;
  justify-content: center;
  row-gap: 7px;
  column-gap: 7px;
  font-family: var(--font-funnel-body), 'Inter Tight', sans-serif;
  font-size: 13px;
  color: var(--funnel-dim);
  margin-top: 16px;
}

.sq3-optin-microcopy svg {
  color: var(--funnel-accent);
  flex-shrink: 0;
}

.sq3-footer {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(6, 4, 18, 0.98);
  border-top: 1px solid var(--funnel-line);
  padding: 40px 0px;
}

.sq3-footer-inner {
  max-width: 1180px;
  margin: 0px auto;
  padding: 0px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 20px;
  column-gap: 20px;
}

@media (max-width: 768px) {
  .sq3-footer-inner {
  flex-direction: column;
  text-align: center;
  padding: 0px 20px;
  }
}

.sq3-footer-brand {
  display: flex;
  align-items: center;
  row-gap: 10px;
  column-gap: 10px;
}

@media (max-width: 768px) {
  .sq3-footer-brand {
  justify-content: center;
  }
}

.sq3-footer-brand-icon {
  width: 28px;
  height: 28px;
}

.sq3-footer-brand-name {
  font-family: var(--font-funnel-display), 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: rgb(255, 255, 255);
  letter-spacing: -0.02em;
}

.sq3-footer-brand-name span {
  color: var(--funnel-accent);
}

.sq3-footer-copy {
  font-family: var(--font-funnel-body), 'Inter Tight', sans-serif;
  font-size: 13px;
  color: var(--funnel-dim);
  line-height: 1.5;
  text-align: center;
}

.sq3-footer-links {
  display: flex;
  row-gap: 20px;
  column-gap: 20px;
}

@media (max-width: 768px) {
  .sq3-footer-links {
  justify-content: center;
  }
}

.sq3-footer-link {
  font-family: var(--font-funnel-body), 'Inter Tight', sans-serif;
  font-size: 13px;
  color: var(--funnel-dim);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  transition-behavior: normal;
  transition-duration: 0.2s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: color;
}

.sq3-footer-link:hover {
  color: var(--funnel-accent);
}

.sq3-section-title, .sq3-pain-title, .sq3-proof-title, .sq3-process-title, .sq3-offer-title, .sq3-testi-title, .sq3-optin-title {
  font-family: var(--font-funnel-display), 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: rgb(255, 255, 255);
  margin: 0px 0px 16px;
  line-height: 1.15;
  display: block;
  padding: 3px 0px;
}

body, html {
  background-color: var(--funnel-bg);
}

@keyframes floatY {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-14px);
  }
}

@keyframes countPop {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

.section-alt {
  background: var(--funnel-surface);
}

.section::before {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  pointer-events: none;
  opacity: 0.5;
  background-image: radial-gradient(circle at 15% 20%, rgba(107, 139, 255, 0.1), transparent 55%), radial-gradient(circle at 85% 80%, rgba(255, 141, 92, 0.08), transparent 55%);
}

.section-heading {
  font-family: var(--font-funnel-display);
  color: var(--funnel-text);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.01em;
  padding-bottom: 0.15em;
  margin: 0 0 var(--space-m) 0;
  font-size: clamp(1.9rem, 1.2rem + 2.6vw, 3rem);
}

.section-sub {
  font-family: var(--font-funnel-body);
  color: var(--funnel-dim);
  font-size: var(--text-l);
  font-weight: 300;
  line-height: 1.6;
  max-width: 640px;
}

.body-text {
  font-family: var(--font-funnel-body);
  color: var(--funnel-dim);
  font-size: var(--text-m);
  line-height: 1.7;
}

.body-text p {
  margin: 0 0 var(--space-s) 0;
}

.header-bar {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: transparent;
  padding: var(--space-m) 0;
  position: relative;
  z-index: 5;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-m);
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  background: linear-gradient(140deg, var(--funnel-accent), var(--funnel-accent-2));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-word {
  font-family: var(--font-funnel-display);
  color: var(--funnel-text);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.hero-title em {
  font-style: normal;
  color: var(--funnel-accent-2);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-s);
  margin-bottom: var(--space-l);
}

.trust-avatars {
  display: flex;
}

.trust-avatars span {
  width: 28px;
  height: 28px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  background: var(--funnel-elevated);
  border: 2px solid var(--funnel-bg);
  margin-left: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--funnel-text);
  font-family: var(--font-funnel-body);
}

.trust-avatars span:first-child {
  margin-left: 0px;
}

.book-mockup {
  position: relative;
  width: 280px;
  animation-duration: 6s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-fill-mode: none;
  animation-play-state: running;
  animation-name: floatY;
  animation-timeline: auto;
  animation-range-start: normal;
  animation-range-end: normal;
}

.book-glow {
  position: absolute;
  top: -40px;
  right: -40px;
  bottom: -40px;
  left: -40px;
  background-image: radial-gradient(circle, rgba(107, 139, 255, 0.35), transparent 65%);
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  filter: blur(10px);
  animation-duration: 4s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-fill-mode: none;
  animation-play-state: running;
  animation-name: pulseGlow;
  animation-timeline: auto;
  animation-range-start: normal;
  animation-range-end: normal;
  z-index: 0;
}

.book-cover {
  position: relative;
  z-index: 1;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  border-bottom-right-radius: 14px;
  border-bottom-left-radius: 14px;
  background: linear-gradient(160deg, var(--funnel-elevated), var(--funnel-surface));
  border: 1px solid var(--funnel-line);
  box-shadow: rgba(0, 0, 0, 0.6) 0px 30px 60px -20px, rgba(255, 255, 255, 0.06) 0px 1px 0px inset;
  padding: var(--space-l);
  transform: perspective(900px) rotateY(-14deg) rotateX(2deg);
}

.book-cover .badge {
  display: inline-block;
  background: var(--funnel-accent-2);
  color: rgb(11, 8, 24);
  font-family: var(--font-funnel-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35em 0.8em;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-bottom-left-radius: 999px;
  margin-bottom: var(--space-m);
}

.book-cover h4 {
  font-family: var(--font-funnel-display);
  color: rgb(255, 255, 255);
  font-size: 22px;
  line-height: 1.3;
  margin: 0 0 var(--space-s) 0;
}

.book-cover p {
  font-family: var(--font-funnel-body);
  color: var(--funnel-dim);
  font-size: 13px;
  line-height: 1.5;
  margin: 0px;
}

.book-pages {
  position: absolute;
  top: 8px;
  left: 8px;
  right: -8px;
  bottom: 8px;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  border-bottom-right-radius: 14px;
  border-bottom-left-radius: 14px;
  background: var(--funnel-surface);
  border: 1px solid var(--funnel-line);
  z-index: 0;
  transform: perspective(900px) rotateY(-14deg) rotateX(2deg);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

@media (min-width: 1024px) {
  .two-col {
  grid-template-columns: 1.1fr 0.9fr;
  }
}

.two-col.reverse {
  direction: rtl;
}

.two-col.reverse > * {
  direction: ltr;
}

.side-graphic {
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon-cluster {
  position: relative;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1 / 1;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  border-bottom-right-radius: 24px;
  border-bottom-left-radius: 24px;
  background: var(--funnel-surface);
  border: 1px solid var(--funnel-line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-s);
  padding: var(--space-l);
}

.icon-cluster .chip {
  background: var(--funnel-elevated);
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  border-bottom-right-radius: 14px;
  border-bottom-left-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-cluster .chip svg {
  width: 28px;
  height: 28px;
  color: var(--funnel-accent);
}

.pain-icon svg {
  width: 22px;
  height: 22px;
  color: var(--funnel-accent-2);
}

.pain-callout {
  margin-top: var(--space-l);
  font-family: var(--font-funnel-display);
  color: var(--funnel-text);
  font-size: var(--text-l);
  text-align: center;
}

.pain-callout span {
  color: var(--funnel-accent-2);
}

.bio-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
  margin-top: var(--space-xl);
}

@media (min-width: 1024px) {
  .bio-row {
  grid-template-columns: 0.8fr 1.2fr;
  }
}

.bio-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  background: linear-gradient(150deg, var(--funnel-elevated), var(--funnel-surface));
  border: 1px solid var(--funnel-line);
  display: flex;
  align-items: flex-end;
  padding: var(--space-m);
}

.bio-photo span {
  font-family: var(--font-funnel-display);
  color: var(--funnel-text);
  font-size: 15px;
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-l);
  margin-top: var(--space-xl);
}

@media (min-width: 768px) {
  .process-steps {
  grid-template-columns: repeat(3, 1fr);
  }
}

.step-icon {
  width: 52px;
  height: 52px;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  border-bottom-right-radius: 14px;
  border-bottom-left-radius: 14px;
  background: linear-gradient(140deg, var(--funnel-accent), var(--funnel-accent-2));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-m);
}

.step-icon svg {
  width: 26px;
  height: 26px;
  color: rgb(11, 8, 24);
}

.process-step h3 {
  font-family: var(--font-funnel-display);
  color: var(--funnel-text);
  font-size: 20px;
  margin: 0 0 var(--space-2xs) 0;
  line-height: 1.35;
}

.process-step p {
  font-family: var(--font-funnel-body);
  color: var(--funnel-dim);
  font-size: 15px;
  line-height: 1.6;
  margin: 0px;
}

.offer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-m);
  margin-top: var(--space-xl);
}

@media (min-width: 768px) {
  .offer-grid {
  grid-template-columns: repeat(6, 1fr);
  }
}

@media (min-width: 768px) {
  .offer-card.wide {
  grid-column-start: span 3;
  grid-column-end: auto;
  }
}

.offer-icon {
  width: 48px;
  height: 48px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  background: var(--funnel-surface);
  display: flex;
  align-items: center;
  justify-content: center;
}

.offer-icon svg {
  width: 24px;
  height: 24px;
  color: var(--funnel-accent);
}

.offer-card h3 {
  font-family: var(--font-funnel-display);
  color: var(--funnel-text);
  font-size: 19px;
  margin: 0px;
  line-height: 1.3;
}

.offer-badge {
  display: inline-flex;
  align-self: flex-start;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(107, 139, 255, 0.12);
  color: var(--funnel-accent);
  font-family: var(--font-funnel-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.3em 0.7em;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-bottom-left-radius: 999px;
}

.offer-free span {
  color: var(--funnel-accent-2);
}

.stars svg {
  width: 16px;
  height: 16px;
  color: var(--funnel-accent-2);
}

.testimonial-card p {
  font-family: var(--font-funnel-body);
  color: var(--funnel-text);
  font-size: 16px;
  line-height: 1.65;
  margin: 0 0 var(--space-m) 0;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  background: linear-gradient(140deg, var(--funnel-elevated), var(--funnel-surface));
  border: 1px solid var(--funnel-line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-funnel-display);
  color: var(--funnel-text);
  font-size: 15px;
  flex-shrink: 0;
}

.author-name {
  font-family: var(--font-funnel-body);
  color: var(--funnel-text);
  font-size: 14px;
  font-weight: 600;
}

.author-role {
  font-family: var(--font-funnel-body);
  color: var(--funnel-dim);
  font-size: 13px;
}

.form-card .section-heading {
  text-align: center;
  margin: 0 auto var(--space-s);
}

.form-card .section-sub {
  text-align: center;
  margin: 0 auto var(--space-l);
}

.form-field {
  margin-bottom: var(--space-s);
  text-align: left;
}

.form-field label {
  display: block;
  font-family: var(--font-funnel-body);
  font-size: 13px;
  color: var(--funnel-dim);
  margin-bottom: var(--space-2xs);
}

.form-input::placeholder {
  color: var(--funnel-dim);
}

.form-note {
  display: flex;
  align-items: center;
  justify-content: center;
  row-gap: 0.4em;
  column-gap: 0.4em;
  margin-top: var(--space-m);
  font-family: var(--font-funnel-body);
  color: var(--funnel-dim);
  font-size: 13px;
}

.form-note svg {
  width: 14px;
  height: 14px;
  color: var(--funnel-accent-2);
}

.faq-list {
  max-width: 720px;
  margin: var(--space-xl) auto 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-s);
}

.faq-item {
  background: var(--funnel-surface);
  border: 1px solid var(--funnel-line);
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  border-bottom-right-radius: 14px;
  border-bottom-left-radius: 14px;
  padding: var(--space-m) var(--space-l);
}

.faq-item summary {
  font-family: var(--font-funnel-body);
  color: var(--funnel-text);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  list-style-position: initial;
  list-style-image: initial;
  list-style-type: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  color: var(--funnel-accent);
  font-size: 22px;
  font-weight: 400;
  margin-left: var(--space-s);
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  font-family: var(--font-funnel-body);
  color: var(--funnel-dim);
  font-size: 15px;
  line-height: 1.65;
  margin: var(--space-s) 0 0 0;
}

.footer-copy {
  font-family: var(--font-funnel-body);
  color: var(--funnel-dim);
  font-size: 13px;
}

.lpg-root {
  background: var(--lp-bg);
  color: var(--lp-fg);
  font-family: var(--font-lp-body);
  overflow-x: hidden;
}

.lpg-root h1, .lpg-root h2, .lpg-root h3 {
  font-family: var(--font-lp-display);
  text-transform: uppercase;
  font-weight: 400;
  line-height: 0.95;
  margin: 0px;
}

.lpg-wrap {
  max-width: 1200px;
  margin: 0px auto;
  padding-left: 24px;
  padding-right: 24px;
}

.lpg-gradient {
  background-image: linear-gradient(rgb(122, 168, 255) 0%, rgb(59, 107, 255) 100%);
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-color: initial;
  background-clip: text;
  color: transparent;
}

.lpg-header {
  position: relative;
  z-index: 30;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: transparent;
}

.lpg-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  padding-bottom: 24px;
}

.lpg-logo {
  display: flex;
  align-items: center;
  row-gap: 10px;
  column-gap: 10px;
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}

.lpg-logo-mark {
  width: 36px;
  height: 36px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  background: linear-gradient(135deg, var(--lp-brand), var(--lp-brand-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: rgba(59, 107, 255, 0.6) 0px 0px 30px -5px;
  color: rgb(255, 255, 255);
  font-weight: 700;
}

.lpg-logo-text {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--lp-fg);
}

.lpg-nav {
  display: none;
  align-items: center;
  row-gap: 32px;
  column-gap: 32px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

@media (min-width: 768px) {
  .lpg-nav {
  display: flex;
  }
}

.lpg-nav a {
  color: rgba(245, 247, 255, 0.8);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  transition-behavior: normal;
  transition-duration: 0.2s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: color;
}

.lpg-nav a:hover {
  color: var(--lp-brand-glow);
}

.lpg-nav-cta {
  display: none;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-bottom-left-radius: 999px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(59, 107, 255, 0.4);
  border-right-color: rgba(59, 107, 255, 0.4);
  border-bottom-color: rgba(59, 107, 255, 0.4);
  border-left-color: rgba(59, 107, 255, 0.4);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(59, 107, 255, 0.1);
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--lp-fg);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  transition-behavior: normal;
  transition-duration: 0.2s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: background;
}

@media (min-width: 768px) {
  .lpg-nav-cta {
  display: inline-block;
  }
}

.lpg-nav-cta:hover {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(59, 107, 255, 0.2);
}

.lpg-hero {
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
  padding-top: 24px;
  padding-bottom: 96px;
  background-image: radial-gradient(80% 60% at 70% 40%, rgba(59, 107, 255, 0.35), transparent 60%), linear-gradient(rgb(7, 10, 24), rgb(10, 14, 28));
  background-position-x: initial, initial;
  background-position-y: initial, initial;
  background-size: initial, initial;
  background-repeat: initial, initial;
  background-attachment: initial, initial;
  background-origin: initial, initial;
  background-clip: initial, initial;
  background-color: initial;
}

.lpg-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 48px;
  column-gap: 48px;
  padding-top: 40px;
  align-items: center;
}

@media (min-width: 900px) {
  .lpg-hero-grid {
  grid-template-columns: 1.05fr 1fr;
  }
}

.lpg-eyebrow {
  display: inline-flex;
  align-items: center;
  row-gap: 8px;
  column-gap: 8px;
  width: fit-content;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-bottom-left-radius: 999px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(59, 107, 255, 0.3);
  border-right-color: rgba(59, 107, 255, 0.3);
  border-bottom-color: rgba(59, 107, 255, 0.3);
  border-left-color: rgba(59, 107, 255, 0.3);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(59, 107, 255, 0.1);
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--lp-brand-glow);
  margin-bottom: 24px;
}

.lpg-hero h1 {
  font-size: 54px;
  line-height: 0.92;
  color: var(--lp-fg);
}

@media (min-width: 900px) {
  .lpg-hero h1 {
  font-size: 76px;
  }
}

.lpg-hero-sub {
  margin-top: 24px;
  max-width: 560px;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(245, 247, 255, 0.7);
}

.lpg-cta-row {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  row-gap: 16px;
  column-gap: 16px;
}

.lpg-btn-primary {
  display: inline-flex;
  align-items: center;
  row-gap: 10px;
  column-gap: 10px;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-bottom-left-radius: 999px;
  background: linear-gradient(180deg, var(--lp-brand-glow), var(--lp-brand));
  padding: 16px 28px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgb(255, 255, 255);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  box-shadow: rgba(59, 107, 255, 0.7) 0px 0px 40px -5px;
  transition-behavior: normal;
  transition-duration: 0.2s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: transform;
  border-top-width: medium;
  border-right-width: medium;
  border-bottom-width: medium;
  border-left-width: medium;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  border-top-color: currentcolor;
  border-right-color: currentcolor;
  border-bottom-color: currentcolor;
  border-left-color: currentcolor;
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  cursor: pointer;
}

.lpg-btn-primary:hover {
  transform: scale(1.03);
}

.lpg-btn-ghost {
  display: inline-flex;
  align-items: center;
  row-gap: 8px;
  column-gap: 8px;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-bottom-left-radius: 999px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(245, 247, 255, 0.2);
  border-right-color: rgba(245, 247, 255, 0.2);
  border-bottom-color: rgba(245, 247, 255, 0.2);
  border-left-color: rgba(245, 247, 255, 0.2);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  padding: 16px 24px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(245, 247, 255, 0.9);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  transition-behavior: normal, normal;
  transition-duration: 0.2s, 0.2s;
  transition-timing-function: ease, ease;
  transition-delay: 0s, 0s;
  transition-property: border-color, color;
}

.lpg-btn-ghost:hover {
  border-color: var(--lp-brand);
  color: var(--lp-brand-glow);
}

.lpg-checks {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  row-gap: 12px;
  column-gap: 32px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(245, 247, 255, 0.6);
}

.lpg-check {
  display: flex;
  align-items: center;
  row-gap: 8px;
  column-gap: 8px;
}

.lpg-check-i {
  color: var(--lp-brand-glow);
}

.lpg-hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lpg-book {
  position: relative;
  width: 300px;
  max-width: 100%;
  aspect-ratio: 5 / 6.4;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  border-bottom-right-radius: 14px;
  border-bottom-left-radius: 14px;
  background-image: linear-gradient(160deg, rgb(28, 42, 99), rgb(13, 19, 56));
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(95, 155, 255, 0.35);
  border-right-color: rgba(95, 155, 255, 0.35);
  border-bottom-color: rgba(95, 155, 255, 0.35);
  border-left-color: rgba(95, 155, 255, 0.35);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  box-shadow: rgba(0, 60, 180, 0.55) 0px 30px 60px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (min-width: 900px) {
  .lpg-book {
  width: 340px;
  }
}

.lpg-book::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 12px;
  bottom: 12px;
  width: 6px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  background: linear-gradient(180deg, var(--lp-brand-glow), var(--lp-brand-deep));
}

.lpg-book-badge {
  align-self: flex-end;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--lp-brand-glow);
}

.lpg-book-title {
  font-family: var(--font-lp-display);
  text-transform: uppercase;
  font-size: 30px;
  line-height: 1;
  color: rgb(255, 255, 255);
}

.lpg-book-meta {
  font-size: 12px;
  color: rgba(245, 247, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.lpg-trust {
  border-top: 1px solid var(--lp-border);
  border-bottom: 1px solid var(--lp-border);
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(10, 14, 28, 0.4);
  padding-top: 24px;
  padding-bottom: 24px;
  margin-top: 24px;
}

.lpg-trust-label {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(245, 247, 255, 0.5);
  margin-bottom: 16px;
}

.lpg-trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 32px;
  column-gap: 32px;
}

.lpg-trust-item {
  font-family: var(--font-lp-display);
  text-transform: uppercase;
  font-size: 22px;
  letter-spacing: 0.05em;
  color: rgba(245, 247, 255, 0.4);
}

.lpg-section {
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
}

.lpg-section-alt {
  background-image: linear-gradient(rgb(13, 18, 38), rgb(18, 24, 58));
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  border-top: 1px solid var(--lp-border);
  border-bottom: 1px solid var(--lp-border);
}

.lpg-kicker {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--lp-brand-glow);
  margin-bottom: 20px;
}

.lpg-h2 {
  text-align: center;
  font-size: 40px;
  line-height: 1.05;
  color: var(--lp-fg);
}

.lpg-head {
  max-width: 760px;
  margin: 0px auto 56px;
}

.lpg-prose {
  max-width: 640px;
  margin: 40px auto 0px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  column-gap: 20px;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(245, 247, 255, 0.75);
  text-align: left;
}

.lpg-prose .strong {
  color: var(--lp-fg);
}

.lpg-prose .dim {
  color: rgba(245, 247, 255, 0.5);
}

.lpg-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 20px;
  column-gap: 20px;
}

@media (min-width: 768px) {
  .lpg-grid-2 {
  grid-template-columns: 1fr 1fr;
  }
}

.lpg-grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 24px;
  column-gap: 24px;
}

@media (min-width: 768px) {
  .lpg-grid-3 {
  grid-template-columns: repeat(3, 1fr);
  }
}

.lpg-card {
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  border-bottom-right-radius: 18px;
  border-bottom-left-radius: 18px;
  border: 1px solid var(--lp-border);
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(22, 28, 61, 0.6);
  padding: 32px;
  transition-behavior: normal;
  transition-duration: 0.2s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: border-color;
}

.lpg-card:hover {
  border-top-color: rgba(59, 107, 255, 0.5);
  border-right-color: rgba(59, 107, 255, 0.5);
  border-bottom-color: rgba(59, 107, 255, 0.5);
  border-left-color: rgba(59, 107, 255, 0.5);
}

.lpg-card-row {
  display: flex;
  align-items: flex-start;
  row-gap: 20px;
  column-gap: 20px;
}

.lpg-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(59, 107, 255, 0.4);
  border-right-color: rgba(59, 107, 255, 0.4);
  border-bottom-color: rgba(59, 107, 255, 0.4);
  border-left-color: rgba(59, 107, 255, 0.4);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(59, 107, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lp-brand-glow);
  font-size: 22px;
}

.lpg-card h3 {
  font-family: var(--font-lp-body);
  font-weight: 600;
  text-transform: none;
  font-size: 19px;
  line-height: 1.3;
  margin-bottom: 8px;
  color: var(--lp-fg);
}

.lpg-card p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(245, 247, 255, 0.65);
  margin: 0px;
}

.lpg-note {
  max-width: 640px;
  margin: 48px auto 0px;
  text-align: center;
  font-size: 18px;
  color: rgba(245, 247, 255, 0.7);
}

.lpg-note .strong {
  display: block;
  margin-top: 4px;
  font-weight: 600;
  color: var(--lp-fg);
}

.lpg-pcard {
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  border-bottom-right-radius: 18px;
  border-bottom-left-radius: 18px;
  border: 1px solid var(--lp-border);
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(22, 28, 61, 0.7);
  padding: 32px;
  transition-behavior: normal;
  transition-duration: 0.2s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: border-color;
}

.lpg-pcard:hover {
  border-top-color: rgba(59, 107, 255, 0.5);
  border-right-color: rgba(59, 107, 255, 0.5);
  border-bottom-color: rgba(59, 107, 255, 0.5);
  border-left-color: rgba(59, 107, 255, 0.5);
}

.lpg-pico {
  width: 56px;
  height: 56px;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
  background: linear-gradient(135deg, var(--lp-brand), var(--lp-brand-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: rgba(59, 107, 255, 0.6) 0px 0px 30px -5px;
  color: rgb(255, 255, 255);
  font-size: 26px;
  margin-bottom: 24px;
}

.lpg-step {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--lp-brand-glow);
  margin-bottom: 12px;
}

.lpg-pcard h3 {
  font-family: var(--font-lp-display);
  text-transform: uppercase;
  font-size: 24px;
  line-height: 1.1;
  margin-bottom: 12px;
  color: var(--lp-fg);
}

.lpg-pcard p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(245, 247, 255, 0.65);
  margin: 0px;
}

.lpg-about-grid {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 48px;
  column-gap: 48px;
  align-items: center;
}

@media (min-width: 900px) {
  .lpg-about-grid {
  grid-template-columns: 1fr 1.1fr;
  }
}

.lpg-portrait {
  position: relative;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  border-bottom-right-radius: 24px;
  border-bottom-left-radius: 24px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(59, 107, 255, 0.3);
  border-right-color: rgba(59, 107, 255, 0.3);
  border-bottom-color: rgba(59, 107, 255, 0.3);
  border-left-color: rgba(59, 107, 255, 0.3);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  overflow-x: hidden;
  overflow-y: hidden;
  aspect-ratio: 4 / 5;
  background-image: linear-gradient(160deg, rgb(26, 35, 82), rgb(12, 16, 48));
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.lpg-portrait-badge {
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-bottom-left-radius: 999px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(59, 107, 255, 0.4);
  border-right-color: rgba(59, 107, 255, 0.4);
  border-bottom-color: rgba(59, 107, 255, 0.4);
  border-left-color: rgba(59, 107, 255, 0.4);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(10, 14, 28, 0.7);
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--lp-fg);
}

.lpg-about h2 {
  font-size: 40px;
  line-height: 1;
  text-align: left;
}

.lpg-about-lead {
  margin-top: 24px;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(245, 247, 255, 0.75);
}

.lpg-stats {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 16px;
  column-gap: 16px;
}

.lpg-stat {
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  border-bottom-right-radius: 18px;
  border-bottom-left-radius: 18px;
  border: 1px solid var(--lp-border);
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(22, 28, 61, 0.5);
  padding: 24px;
}

.lpg-stat-n {
  font-family: var(--font-lp-display);
  text-transform: uppercase;
  font-size: 44px;
  line-height: 1;
}

.lpg-stat-l {
  margin-top: 8px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(245, 247, 255, 0.6);
}

.lpg-bento {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 20px;
  column-gap: 20px;
}

@media (min-width: 768px) {
  .lpg-bento {
  grid-template-columns: repeat(3, 1fr);
  }
}

.lpg-bento-main {
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  border-bottom-right-radius: 24px;
  border-bottom-left-radius: 24px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(59, 107, 255, 0.3);
  border-right-color: rgba(59, 107, 255, 0.3);
  border-bottom-color: rgba(59, 107, 255, 0.3);
  border-left-color: rgba(59, 107, 255, 0.3);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  background-image: linear-gradient(135deg, rgb(22, 28, 61), rgb(16, 22, 58));
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  padding: 32px;
}

@media (min-width: 768px) {
  .lpg-bento-main {
  grid-column-start: span 2;
  grid-column-end: auto;
  }
}

.lpg-offer-summary {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 12px;
  column-gap: 12px;
  text-align: center;
}

.lpg-offer-pill {
  display: inline-flex;
  align-items: center;
  row-gap: 8px;
  column-gap: 8px;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-bottom-left-radius: 999px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(59, 107, 255, 0.4);
  border-right-color: rgba(59, 107, 255, 0.4);
  border-bottom-color: rgba(59, 107, 255, 0.4);
  border-left-color: rgba(59, 107, 255, 0.4);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(59, 107, 255, 0.1);
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--lp-brand-glow);
}

.lpg-offer-big {
  font-family: var(--font-lp-display);
  text-transform: uppercase;
  font-size: 30px;
  color: var(--lp-fg);
}

.lpg-tcard {
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  border-bottom-right-radius: 24px;
  border-bottom-left-radius: 24px;
  border: 1px solid var(--lp-border);
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(22, 28, 61, 0.7);
  padding: 40px;
}

.lpg-tstars {
  display: flex;
  row-gap: 4px;
  column-gap: 4px;
  color: var(--lp-brand-glow);
  margin-bottom: 24px;
}

.lpg-tquote {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(245, 247, 255, 0.85);
  margin: 0px 0px 32px;
}

.lpg-tperson {
  display: flex;
  align-items: center;
  row-gap: 16px;
  column-gap: 16px;
}

.lpg-tavatar {
  width: 56px;
  height: 56px;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-bottom-left-radius: 999px;
  border-top-width: 2px;
  border-right-width: 2px;
  border-bottom-width: 2px;
  border-left-width: 2px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(59, 107, 255, 0.5);
  border-right-color: rgba(59, 107, 255, 0.5);
  border-bottom-color: rgba(59, 107, 255, 0.5);
  border-left-color: rgba(59, 107, 255, 0.5);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  background: linear-gradient(135deg, var(--lp-brand), var(--lp-brand-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-lp-display);
  font-size: 22px;
  color: rgb(255, 255, 255);
}

.lpg-tname {
  font-weight: 600;
  color: var(--lp-fg);
}

.lpg-trole {
  font-size: 14px;
  color: rgba(245, 247, 255, 0.6);
}

.lpg-optin {
  background-image: radial-gradient(60% 50%, rgba(59, 107, 255, 0.25), transparent 65%), linear-gradient(rgb(13, 18, 38), rgb(18, 24, 58));
  background-position-x: initial, initial;
  background-position-y: initial, initial;
  background-size: initial, initial;
  background-repeat: initial, initial;
  background-attachment: initial, initial;
  background-origin: initial, initial;
  background-clip: initial, initial;
  background-color: initial;
}

.lpg-form-wrap {
  max-width: 720px;
  margin: 0px auto;
}

.lpg-form {
  position: relative;
  margin-top: 48px;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  border-bottom-right-radius: 24px;
  border-bottom-left-radius: 24px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(59, 107, 255, 0.3);
  border-right-color: rgba(59, 107, 255, 0.3);
  border-bottom-color: rgba(59, 107, 255, 0.3);
  border-left-color: rgba(59, 107, 255, 0.3);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(22, 28, 61, 0.7);
  padding: 40px;
}

.lpg-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 20px;
  column-gap: 20px;
}

@media (min-width: 640px) {
  .lpg-form-grid {
  grid-template-columns: 1fr 1fr;
  }
}

.lpg-field label {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(245, 247, 255, 0.6);
}

.lpg-input {
  width: 100%;
  box-sizing: border-box;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  border: 1px solid var(--lp-border);
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(10, 14, 28, 0.6);
  padding: 16px 20px;
  font-size: 16px;
  color: var(--lp-fg);
  outline-color: initial;
  outline-style: none;
  outline-width: initial;
  transition-behavior: normal;
  transition-duration: 0.2s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: border-color;
  font-family: var(--font-lp-body);
}

.lpg-input::placeholder {
  color: rgba(245, 247, 255, 0.4);
}

.lpg-input:focus {
  border-color: var(--lp-brand);
}

.lpg-submit {
  margin-top: 24px;
  width: 100%;
  justify-content: center;
  padding-top: 20px;
  padding-bottom: 20px;
}

.lpg-micro {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  row-gap: 8px;
  column-gap: 8px;
  font-size: 12px;
  color: rgba(245, 247, 255, 0.6);
}

.lpg-footer {
  border-top: 1px solid var(--lp-border);
  background: var(--lp-bg);
  padding-top: 40px;
  padding-bottom: 40px;
}

.lpg-footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 16px;
  column-gap: 16px;
  font-size: 12px;
  color: rgba(245, 247, 255, 0.5);
}

@media (min-width: 768px) {
  .lpg-footer-inner {
  flex-direction: row;
  justify-content: space-between;
  }
}

@media (min-width: 900px) {
  .lpg-h2, .lpg-about h2 {
  font-size: 52px;
  }
}

.lpg-root .lpg-header {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: transparent;
}

.funnel-header {
  position: relative;
  z-index: 30;
  width: 100%;
  padding: 24px 40px;
}

@media (max-width: 768px) {
  .funnel-header {
  padding: 20px;
  }
}

.funnel-header-inner {
  max-width: 1280px;
  margin: 0px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.funnel-logo {
  display: flex;
  align-items: center;
  row-gap: 10px;
  column-gap: 10px;
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}

.funnel-logo-icon {
  width: 36px;
  height: 36px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  background: linear-gradient(135deg, var(--funnel-brand), var(--funnel-brand-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: rgba(77, 141, 255, 0.5) 0px 0px 20px -4px;
}

.funnel-logo-text {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--funnel-text);
}

.funnel-nav {
  display: flex;
  align-items: center;
  row-gap: 32px;
  column-gap: 32px;
}

@media (max-width: 768px) {
  .funnel-nav {
  display: none;
  }
}

.funnel-nav-link {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(240, 244, 255, 0.8);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  transition-behavior: normal;
  transition-duration: 0.2s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: color;
}

.funnel-nav-link:hover {
  color: var(--funnel-brand-glow);
}

.funnel-nav-cta {
  display: inline-block;
  padding: 10px 20px;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-bottom-left-radius: 999px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(77, 141, 255, 0.4);
  border-right-color: rgba(77, 141, 255, 0.4);
  border-bottom-color: rgba(77, 141, 255, 0.4);
  border-left-color: rgba(77, 141, 255, 0.4);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(77, 141, 255, 0.1);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--funnel-text);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  transition-behavior: normal;
  transition-duration: 0.2s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: background;
}

@media (max-width: 768px) {
  .funnel-nav-cta {
  font-size: 11px;
  padding: 8px 16px;
  }
}

.funnel-nav-cta:hover {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(77, 141, 255, 0.2);
}

.funnel-hero {
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
  padding: 64px 40px 96px;
  background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(26,58,122,0.55), transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(26,58,122,0.4), transparent 70%),
    linear-gradient(180deg, var(--funnel-bg), var(--funnel-bg-alt));
}

@media (max-width: 768px) {
  .funnel-hero {
  padding: 48px 20px 64px;
  }
}

.funnel-hero-grid {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background-image: linear-gradient(rgba(77, 141, 255, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(77, 141, 255, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.4;
}

.funnel-hero-inner {
  max-width: 1280px;
  margin: 0px auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  row-gap: 32px;
  column-gap: 32px;
  align-items: center;
  position: relative;
}

@media (max-width: 768px) {
  .funnel-hero-inner {
  grid-template-columns: 1fr;
  row-gap: 48px;
  column-gap: 48px;
  }
}

.funnel-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.funnel-eyebrow {
  display: inline-flex;
  align-items: center;
  row-gap: 8px;
  column-gap: 8px;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-bottom-left-radius: 999px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(77, 141, 255, 0.3);
  border-right-color: rgba(77, 141, 255, 0.3);
  border-bottom-color: rgba(77, 141, 255, 0.3);
  border-left-color: rgba(77, 141, 255, 0.3);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(77, 141, 255, 0.1);
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--funnel-brand-glow);
  margin-bottom: 24px;
  width: fit-content;
}

.funnel-h1 {
  font-family: var(--font-funnel-display);
  font-size: 82px;
  text-transform: uppercase;
  line-height: 0.92;
  color: var(--funnel-text);
}

@media (max-width: 768px) {
  .funnel-h1 {
  font-size: 48px;
  }
}

.funnel-text-gradient {
  background-image: linear-gradient(rgb(110, 168, 255) 0%, rgb(42, 106, 219) 100%);
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-color: initial;
  background-clip: text;
  color: transparent;
  padding-block-start: 0.15em;
  padding-block-end: 0.15em;
  line-height: 1.05;
}

.funnel-hero-desc {
  margin-top: 24px;
  max-width: 540px;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(240, 244, 255, 0.7);
}

.funnel-cta-group {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  row-gap: 16px;
  column-gap: 16px;
}

.funnel-btn-primary {
  display: inline-flex;
  align-items: center;
  row-gap: 10px;
  column-gap: 10px;
  padding: 16px 28px;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-bottom-left-radius: 999px;
  background-image: linear-gradient(rgb(110, 168, 255), rgb(77, 141, 255));
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgb(255, 255, 255);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  box-shadow: rgba(77, 141, 255, 0.6) 0px 0px 60px -10px, rgba(110, 168, 255, 0.4) 0px 0px 20px -5px;
  transition-behavior: normal;
  transition-duration: 0.2s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: transform;
  animation-duration: 3s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-fill-mode: none;
  animation-play-state: running;
  animation-name: funnel-pulse-glow;
  animation-timeline: auto;
  animation-range-start: normal;
  animation-range-end: normal;
}

.funnel-btn-primary:hover {
  transform: scale(1.03);
}

.funnel-btn-secondary {
  display: inline-flex;
  align-items: center;
  row-gap: 8px;
  column-gap: 8px;
  padding: 16px 24px;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-bottom-left-radius: 999px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(240, 244, 255, 0.2);
  border-right-color: rgba(240, 244, 255, 0.2);
  border-bottom-color: rgba(240, 244, 255, 0.2);
  border-left-color: rgba(240, 244, 255, 0.2);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(240, 244, 255, 0.9);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  transition-behavior: normal, normal;
  transition-duration: 0.2s, 0.2s;
  transition-timing-function: ease, ease;
  transition-delay: 0s, 0s;
  transition-property: border-color, color;
}

.funnel-btn-secondary:hover {
  border-color: var(--funnel-brand);
  color: var(--funnel-brand-glow);
}

.funnel-hero-checks {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  row-gap: 32px;
  column-gap: 32px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(240, 244, 255, 0.6);
}

.funnel-check-item {
  display: flex;
  align-items: center;
  row-gap: 8px;
  column-gap: 8px;
}

.funnel-hero-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.funnel-hero-img {
  max-height: 560px;
  width: auto;
  filter: drop-shadow(rgba(0, 60, 180, 0.55) 0px 30px 60px);
  animation-duration: 6s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-fill-mode: none;
  animation-play-state: running;
  animation-name: funnel-float;
  animation-timeline: auto;
  animation-range-start: normal;
  animation-range-end: normal;
}

@media (max-width: 768px) {
  .funnel-hero-img {
  max-height: 360px;
  }
}

.funnel-section {
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
  padding: 96px 40px;
}

@media (max-width: 768px) {
  .funnel-section {
  padding: 64px 20px;
  }
}

.funnel-section-alt {
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
  padding: 96px 40px;
  background-image: linear-gradient(rgb(12, 18, 32) 0%, rgb(17, 27, 48) 100%);
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  border-top: 1px solid var(--funnel-border);
  border-bottom: 1px solid var(--funnel-border);
}

@media (max-width: 768px) {
  .funnel-section-alt {
  padding: 64px 20px;
  }
}

.funnel-section-inner {
  max-width: 1280px;
  margin: 0px auto;
  position: relative;
}

.funnel-section-header {
  max-width: 768px;
  margin: 0px auto 64px;
  text-align: center;
}

.funnel-section-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--funnel-brand-glow);
  margin-bottom: 20px;
}

.funnel-h2 {
  font-family: var(--font-funnel-display);
  font-size: 56px;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--funnel-text);
}

@media (max-width: 768px) {
  .funnel-h2 {
  font-size: 36px;
  }
}

.funnel-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 20px;
  column-gap: 20px;
}

@media (max-width: 768px) {
  .funnel-grid-2 {
  grid-template-columns: 1fr;
  }
}

.funnel-grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  row-gap: 24px;
  column-gap: 24px;
}

@media (max-width: 768px) {
  .funnel-grid-3 {
  grid-template-columns: 1fr;
  }
}

.funnel-card {
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
  border: 1px solid var(--funnel-border);
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(26, 37, 64, 0.6);
  padding: 32px;
  backdrop-filter: blur(8px);
  box-shadow: rgba(5, 10, 30, 0.8) 0px 20px 60px -20px, rgba(110, 168, 255, 0.15) 0px 1px 0px 0px inset;
  transition-behavior: normal;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: border-color;
}

.funnel-card:hover {
  border-top-color: rgba(77, 141, 255, 0.5);
  border-right-color: rgba(77, 141, 255, 0.5);
  border-bottom-color: rgba(77, 141, 255, 0.5);
  border-left-color: rgba(77, 141, 255, 0.5);
}

.funnel-card-icon {
  width: 48px;
  height: 48px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(77, 141, 255, 0.4);
  border-right-color: rgba(77, 141, 255, 0.4);
  border-bottom-color: rgba(77, 141, 255, 0.4);
  border-left-color: rgba(77, 141, 255, 0.4);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(77, 141, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--funnel-brand-glow);
  margin-bottom: 20px;
}

.funnel-card-icon-filled {
  width: 56px;
  height: 56px;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
  background: linear-gradient(135deg, var(--funnel-brand), var(--funnel-brand-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(255, 255, 255);
  margin-bottom: 24px;
  box-shadow: rgba(77, 141, 255, 0.5) 0px 0px 20px -4px;
}

.funnel-card-step {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--funnel-brand-glow);
  margin-bottom: 12px;
}

.funnel-card-title {
  font-family: var(--font-funnel-display);
  font-size: 22px;
  text-transform: uppercase;
  line-height: 1.15;
  color: var(--funnel-text);
  margin-bottom: 12px;
}

.funnel-card-desc {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(240, 244, 255, 0.65);
}

.funnel-about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  row-gap: 56px;
  column-gap: 56px;
  align-items: center;
}

@media (max-width: 768px) {
  .funnel-about-grid {
  grid-template-columns: 1fr;
  }
}

.funnel-about-img-wrap {
  position: relative;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  border-bottom-right-radius: 24px;
  border-bottom-left-radius: 24px;
  overflow-x: hidden;
  overflow-y: hidden;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(77, 141, 255, 0.3);
  border-right-color: rgba(77, 141, 255, 0.3);
  border-bottom-color: rgba(77, 141, 255, 0.3);
  border-left-color: rgba(77, 141, 255, 0.3);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  box-shadow: rgba(5, 10, 30, 0.8) 0px 20px 60px -20px, rgba(110, 168, 255, 0.15) 0px 1px 0px 0px inset;
}

.funnel-about-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.funnel-about-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-bottom-left-radius: 999px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(77, 141, 255, 0.4);
  border-right-color: rgba(77, 141, 255, 0.4);
  border-bottom-color: rgba(77, 141, 255, 0.4);
  border-left-color: rgba(77, 141, 255, 0.4);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(15, 23, 41, 0.7);
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--funnel-text);
  backdrop-filter: blur(8px);
}

.funnel-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 16px;
  column-gap: 16px;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .funnel-stats-grid {
  grid-template-columns: 1fr 1fr;
  }
}

.funnel-stat-card {
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
  border: 1px solid var(--funnel-border);
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(26, 37, 64, 0.5);
  padding: 24px;
  backdrop-filter: blur(8px);
  transition-behavior: normal;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: border-color;
}

.funnel-stat-card:hover {
  border-top-color: rgba(77, 141, 255, 0.5);
  border-right-color: rgba(77, 141, 255, 0.5);
  border-bottom-color: rgba(77, 141, 255, 0.5);
  border-left-color: rgba(77, 141, 255, 0.5);
}

.funnel-stat-number {
  font-family: var(--font-funnel-display);
  font-size: 48px;
  text-transform: uppercase;
  background-image: linear-gradient(rgb(110, 168, 255) 0%, rgb(42, 106, 219) 100%);
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-color: initial;
  background-clip: text;
  color: transparent;
  line-height: 1.1;
}

@media (max-width: 768px) {
  .funnel-stat-number {
  font-size: 36px;
  }
}

.funnel-stat-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(240, 244, 255, 0.6);
  margin-top: 8px;
}

.funnel-about-text {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(240, 244, 255, 0.75);
  margin-top: 24px;
}

.funnel-offer-bento {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  row-gap: 20px;
  column-gap: 20px;
}

@media (max-width: 768px) {
  .funnel-offer-bento {
  grid-template-columns: 1fr;
  }
}

.funnel-offer-main {
  grid-row-start: span 2;
  grid-row-end: auto;
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  border-bottom-right-radius: 24px;
  border-bottom-left-radius: 24px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(77, 141, 255, 0.3);
  border-right-color: rgba(77, 141, 255, 0.3);
  border-bottom-color: rgba(77, 141, 255, 0.3);
  border-left-color: rgba(77, 141, 255, 0.3);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  background: linear-gradient(135deg, var(--funnel-card), #1a2540);
  padding: 40px;
  box-shadow: rgba(5, 10, 30, 0.8) 0px 20px 60px -20px, rgba(110, 168, 255, 0.15) 0px 1px 0px 0px inset;
}

@media (max-width: 768px) {
  .funnel-offer-main {
  grid-row-start: span 1;
  grid-row-end: auto;
  }
}

.funnel-offer-main-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  row-gap: 32px;
  column-gap: 32px;
}

.funnel-offer-img {
  max-height: 256px;
  width: auto;
  align-self: center;
  filter: drop-shadow(rgba(0, 60, 180, 0.5) 0px 20px 40px);
}

.funnel-offer-side {
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  border-bottom-right-radius: 24px;
  border-bottom-left-radius: 24px;
  border: 1px solid var(--funnel-border);
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(26, 37, 64, 0.7);
  padding: 28px;
  backdrop-filter: blur(8px);
  box-shadow: rgba(5, 10, 30, 0.8) 0px 20px 60px -20px, rgba(110, 168, 255, 0.15) 0px 1px 0px 0px inset;
  transition-behavior: normal;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: border-color;
}

.funnel-offer-side:hover {
  border-top-color: rgba(77, 141, 255, 0.5);
  border-right-color: rgba(77, 141, 255, 0.5);
  border-bottom-color: rgba(77, 141, 255, 0.5);
  border-left-color: rgba(77, 141, 255, 0.5);
}

.funnel-offer-bottom {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 12px;
  column-gap: 12px;
  text-align: center;
}

.funnel-offer-badge {
  display: inline-flex;
  align-items: center;
  row-gap: 8px;
  column-gap: 8px;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-bottom-left-radius: 999px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(77, 141, 255, 0.4);
  border-right-color: rgba(77, 141, 255, 0.4);
  border-bottom-color: rgba(77, 141, 255, 0.4);
  border-left-color: rgba(77, 141, 255, 0.4);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(77, 141, 255, 0.1);
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--funnel-brand-glow);
}

.funnel-offer-free {
  font-family: var(--font-funnel-display);
  font-size: 36px;
  text-transform: uppercase;
  color: var(--funnel-text);
}

.funnel-testimonial-card {
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  border-bottom-right-radius: 24px;
  border-bottom-left-radius: 24px;
  border: 1px solid var(--funnel-border);
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(26, 37, 64, 0.7);
  padding: 40px;
  backdrop-filter: blur(8px);
  box-shadow: rgba(5, 10, 30, 0.8) 0px 20px 60px -20px, rgba(110, 168, 255, 0.15) 0px 1px 0px 0px inset;
  transition-behavior: normal;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: border-color;
}

.funnel-testimonial-card:hover {
  border-top-color: rgba(77, 141, 255, 0.5);
  border-right-color: rgba(77, 141, 255, 0.5);
  border-bottom-color: rgba(77, 141, 255, 0.5);
  border-left-color: rgba(77, 141, 255, 0.5);
}

.funnel-testimonial-stars {
  display: flex;
  row-gap: 4px;
  column-gap: 4px;
  margin-bottom: 24px;
  color: var(--funnel-brand-glow);
}

.funnel-testimonial-quote {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(240, 244, 255, 0.85);
  margin-bottom: 32px;
}

.funnel-testimonial-author {
  display: flex;
  align-items: center;
  row-gap: 16px;
  column-gap: 16px;
}

.funnel-testimonial-avatar {
  width: 56px;
  height: 56px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  border-top-width: 2px;
  border-right-width: 2px;
  border-bottom-width: 2px;
  border-left-width: 2px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(77, 141, 255, 0.5);
  border-right-color: rgba(77, 141, 255, 0.5);
  border-bottom-color: rgba(77, 141, 255, 0.5);
  border-left-color: rgba(77, 141, 255, 0.5);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  object-fit: cover;
}

.funnel-testimonial-name {
  font-weight: 600;
  color: var(--funnel-text);
}

.funnel-testimonial-role {
  font-size: 14px;
  color: rgba(240, 244, 255, 0.6);
}

.funnel-cta-section {
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
  padding: 96px 40px;
  background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(26,58,122,0.55), transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(26,58,122,0.4), transparent 70%),
    linear-gradient(180deg, var(--funnel-bg), var(--funnel-bg-alt));
}

@media (max-width: 768px) {
  .funnel-cta-section {
  padding: 64px 20px;
  }
}

.funnel-form-wrap {
  max-width: 768px;
  margin: 48px auto 0px;
  position: relative;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  border-bottom-right-radius: 24px;
  border-bottom-left-radius: 24px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(77, 141, 255, 0.3);
  border-right-color: rgba(77, 141, 255, 0.3);
  border-bottom-color: rgba(77, 141, 255, 0.3);
  border-left-color: rgba(77, 141, 255, 0.3);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(26, 37, 64, 0.7);
  padding: 40px;
  backdrop-filter: blur(8px);
  box-shadow: rgba(5, 10, 30, 0.8) 0px 20px 60px -20px, rgba(110, 168, 255, 0.15) 0px 1px 0px 0px inset;
}

.funnel-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 20px;
  column-gap: 20px;
}

@media (max-width: 768px) {
  .funnel-form-grid {
  grid-template-columns: 1fr;
  }
}

.funnel-form-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(240, 244, 255, 0.6);
  margin-bottom: 8px;
  display: block;
}

.funnel-form-input {
  width: 100%;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  border: 1px solid var(--funnel-border);
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(26, 37, 64, 0.6);
  padding: 16px 20px;
  font-size: 16px;
  color: var(--funnel-text);
  outline-color: initial;
  outline-style: none;
  outline-width: initial;
  transition-behavior: normal;
  transition-duration: 0.2s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: border-color;
}

.funnel-form-input:focus {
  border-color: var(--funnel-brand);
}

.funnel-form-btn {
  margin-top: 24px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  row-gap: 10px;
  column-gap: 10px;
  padding: 20px;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-bottom-left-radius: 999px;
  background-image: linear-gradient(rgb(110, 168, 255), rgb(77, 141, 255));
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgb(255, 255, 255);
  border-top-width: medium;
  border-right-width: medium;
  border-bottom-width: medium;
  border-left-width: medium;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  border-top-color: currentcolor;
  border-right-color: currentcolor;
  border-bottom-color: currentcolor;
  border-left-color: currentcolor;
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  cursor: pointer;
  box-shadow: rgba(77, 141, 255, 0.6) 0px 0px 60px -10px, rgba(110, 168, 255, 0.4) 0px 0px 20px -5px;
  animation-duration: 3s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-fill-mode: none;
  animation-play-state: running;
  animation-name: funnel-pulse-glow;
  animation-timeline: auto;
  animation-range-start: normal;
  animation-range-end: normal;
  transition-behavior: normal;
  transition-duration: 0.2s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: transform;
}

.funnel-form-btn:hover {
  transform: scale(1.02);
}

.funnel-form-privacy {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  row-gap: 8px;
  column-gap: 8px;
  font-size: 12px;
  color: rgba(240, 244, 255, 0.6);
}

.funnel-footer {
  border-top: 1px solid var(--funnel-border);
  background: var(--funnel-bg);
  padding: 40px;
}

@media (max-width: 768px) {
  .funnel-footer {
  padding: 24px 20px;
  }
}

.funnel-footer-inner {
  max-width: 1280px;
  margin: 0px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(240, 244, 255, 0.5);
}

@media (max-width: 768px) {
  .funnel-footer-inner {
  flex-direction: column;
  row-gap: 12px;
  column-gap: 12px;
  text-align: center;
  }
}

.funnel-problem-text {
  max-width: 640px;
  margin: 40px auto 0px;
  text-align: left;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(240, 244, 255, 0.75);
}

.funnel-problem-text p {
  margin-bottom: 20px;
}

.funnel-problem-bold {
  color: var(--funnel-text);
  font-weight: 600;
}

.funnel-marquee-wrap {
  border-top: 1px solid var(--funnel-border);
  border-bottom: 1px solid var(--funnel-border);
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(15, 23, 41, 0.4);
  backdrop-filter: blur(8px);
  padding: 24px 40px;
  overflow-x: hidden;
  overflow-y: hidden;
}

@media (max-width: 768px) {
  .funnel-marquee-wrap {
  padding: 20px;
  }
}

.funnel-marquee-label {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(240, 244, 255, 0.5);
  margin-bottom: 16px;
}

.funnel-marquee-track {
  display: flex;
  row-gap: 64px;
  column-gap: 64px;
  animation-duration: 30s;
  animation-timing-function: linear;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-fill-mode: none;
  animation-play-state: running;
  animation-name: funnel-marquee;
  animation-timeline: auto;
  animation-range-start: normal;
  animation-range-end: normal;
}

.funnel-marquee-item {
  white-space-collapse: collapse;
  text-wrap-mode: nowrap;
  font-family: var(--font-funnel-display);
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(240, 244, 255, 0.4);
}

@keyframes pulseglow {
  0%, 100% {
    box-shadow: rgba(43, 123, 255, 0.75) 0px 22px 55px -20px;
  }
  50% {
    box-shadow: rgba(43, 123, 255, 0.98) 0px 28px 72px -14px;
  }
}

.ff-page a {
  color: rgb(106, 168, 255);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}

.ff-page a:hover {
  color: rgb(156, 195, 255);
}

.ff-page ::selection {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(43, 123, 255, 0.35);
  color: rgb(255, 255, 255);
}

.ff-page input::placeholder {
  color: rgb(101, 118, 154);
}

.ff-btn-primary {
  transition-behavior: normal;
  transition-duration: 0.25s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: all;
}

.ff-btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: rgba(43, 123, 255, 0.98) 0px 22px 56px -12px;
}

.ff-btn-secondary {
  transition-behavior: normal;
  transition-duration: 0.25s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: all;
}

.ff-btn-secondary:hover {
  border-top-color: rgba(120, 165, 255, 0.65);
  border-right-color: rgba(120, 165, 255, 0.65);
  border-bottom-color: rgba(120, 165, 255, 0.65);
  border-left-color: rgba(120, 165, 255, 0.65);
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(43, 123, 255, 0.14);
}

.ff-btn-outline {
  transition-behavior: normal;
  transition-duration: 0.25s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: all;
}

.ff-btn-outline:hover {
  border-top-color: rgba(120, 165, 255, 0.62);
  border-right-color: rgba(120, 165, 255, 0.62);
  border-bottom-color: rgba(120, 165, 255, 0.62);
  border-left-color: rgba(120, 165, 255, 0.62);
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(43, 123, 255, 0.08);
}

.ff-btn-cta-mini {
  transition-behavior: normal;
  transition-duration: 0.25s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: all;
}

.ff-btn-cta-mini:hover {
  transform: translateY(-2px) scale(1.02);
}

.ff-btn-submit {
  transition-behavior: normal;
  transition-duration: 0.25s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: all;
}

.ff-btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: rgb(43, 123, 255) 0px 20px 50px -12px;
}

.ff-card {
  transition-behavior: normal;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: all;
}

.ff-card:hover {
  border-top-color: rgba(90, 140, 255, 0.42);
  border-right-color: rgba(90, 140, 255, 0.42);
  border-bottom-color: rgba(90, 140, 255, 0.42);
  border-left-color: rgba(90, 140, 255, 0.42);
  transform: translateY(-3px);
}

.ff-card-lg:hover {
  border-top-color: rgba(90, 140, 255, 0.42);
  border-right-color: rgba(90, 140, 255, 0.42);
  border-bottom-color: rgba(90, 140, 255, 0.42);
  border-left-color: rgba(90, 140, 255, 0.42);
  transform: translateY(-4px);
}

.ff-input {
  transition-behavior: normal;
  transition-duration: 0.2s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: all;
}

.ff-input:focus {
  border-top-color: rgb(77, 155, 255);
  border-right-color: rgb(77, 155, 255);
  border-bottom-color: rgb(77, 155, 255);
  border-left-color: rgb(77, 155, 255);
  box-shadow: rgba(43, 123, 255, 0.18) 0px 0px 0px 3px;
}

.ff-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition-behavior: normal, normal;
  transition-duration: 0.8s, 0.8s;
  transition-timing-function: cubic-bezier(0.2, 0.7, 0.2, 1), cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: 0s, 0s;
  transition-property: opacity, transform;
}

.ff-reveal.is-visible {
  opacity: 1;
  transform: none;
}

.ff-reveal-d1 {
  transition-delay: 0.1s;
}

.ff-reveal-d15 {
  transition-delay: 0.15s;
}

.ff-marquee-wrap {
  position: relative;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgba(90, 140, 255, 0.12);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(90, 140, 255, 0.12);
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(9, 15, 31, 0.55);
  padding: 20px 0px;
  overflow-x: hidden;
  overflow-y: hidden;
  mask-image: linear-gradient(90deg, transparent, rgb(0, 0, 0) 12%, rgb(0, 0, 0) 88%, transparent);
}

.ff-marquee-track {
  display: flex;
  width: max-content;
  animation-duration: 32s;
  animation-timing-function: linear;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-fill-mode: none;
  animation-play-state: running;
  animation-name: marquee;
  animation-timeline: auto;
  animation-range-start: normal;
  animation-range-end: normal;
}

.ff-marquee-group {
  display: flex;
  align-items: center;
  row-gap: 34px;
  column-gap: 34px;
  padding-right: 34px;
  font-family: "Saira Condensed", sans-serif;
  font-weight: 600;
  font-size: 19px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(180, 200, 240, 0.42);
  white-space-collapse: collapse;
  text-wrap-mode: nowrap;
}

.ff-ph {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: linear-gradient(160deg, rgba(43, 123, 255, 0.14), rgba(11, 17, 35, 0.6));
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: dashed;
  border-right-style: dashed;
  border-bottom-style: dashed;
  border-left-style: dashed;
  border-top-color: rgba(120, 165, 255, 0.35);
  border-right-color: rgba(120, 165, 255, 0.35);
  border-bottom-color: rgba(120, 165, 255, 0.35);
  border-left-color: rgba(120, 165, 255, 0.35);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  color: rgb(127, 163, 224);
  font-style: normal;
  font-variant-caps: normal;
  font-variant-ligatures: normal;
  font-variant-numeric: normal;
  font-variant-east-asian: normal;
  font-variant-alternates: normal;
  font-size-adjust: none;
  font-language-override: normal;
  font-kerning: auto;
  font-optical-sizing: auto;
  font-feature-settings: normal;
  font-variation-settings: normal;
  font-variant-position: normal;
  font-variant-emoji: normal;
  font-weight: 500;
  font-stretch: normal;
  font-size: 13px;
  line-height: 1.4;
  font-family: Inter;
  padding: 16px;
}

.ff-ph::before {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
}

.ff-faq-item {
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(90, 140, 255, 0.16);
  border-right-color: rgba(90, 140, 255, 0.16);
  border-bottom-color: rgba(90, 140, 255, 0.16);
  border-left-color: rgba(90, 140, 255, 0.16);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  border-bottom-right-radius: 14px;
  border-bottom-left-radius: 14px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(11, 18, 38, 0.55);
  margin-bottom: 14px;
  overflow-x: hidden;
  overflow-y: hidden;
}

.ff-faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  row-gap: 16px;
  column-gap: 16px;
  padding: 22px 26px;
  background-image: none;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  border-top-width: medium;
  border-right-width: medium;
  border-bottom-width: medium;
  border-left-width: medium;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  border-top-color: currentcolor;
  border-right-color: currentcolor;
  border-bottom-color: currentcolor;
  border-left-color: currentcolor;
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  cursor: pointer;
  text-align: left;
}

.ff-faq-answer {
  max-height: 0px;
  overflow-x: hidden;
  overflow-y: hidden;
  transition-behavior: normal;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: max-height;
}

.ff-faq-item.open .ff-faq-sign {
  transform: rotate(45deg);
}

.ff-faq-item.open .ff-faq-answer {
  max-height: 400px;
}

.ff-faq-answer-inner {
  padding: 0px 26px 24px;
  font-style: normal;
  font-variant-caps: normal;
  font-variant-ligatures: normal;
  font-variant-numeric: normal;
  font-variant-east-asian: normal;
  font-variant-alternates: normal;
  font-size-adjust: none;
  font-language-override: normal;
  font-kerning: auto;
  font-optical-sizing: auto;
  font-feature-settings: normal;
  font-variation-settings: normal;
  font-variant-position: normal;
  font-variant-emoji: normal;
  font-weight: 400;
  font-stretch: normal;
  font-size: 16px;
  line-height: 1.7;
  font-family: Inter;
  color: rgb(159, 176, 208);
  max-width: 70ch;
}

.ff-form-panel {
  animation-duration: 4.5s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-fill-mode: none;
  animation-play-state: running;
  animation-name: pulseglow;
  animation-timeline: auto;
  animation-range-start: normal;
  animation-range-end: normal;
}

.ff-faq-item.is-open .ff-faq-answer {
  max-height: 600px;
}

.ff-faq-item.is-open .ff-faq-sign {
  transform: rotate(45deg);
}

@keyframes ffqx-floaty {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

@keyframes ffqx-pulseglow {
  0%, 100% {
    box-shadow: rgba(43, 123, 255, 0.75) 0px 22px 55px -20px;
  }
  50% {
    box-shadow: rgba(43, 123, 255, 0.98) 0px 28px 72px -14px;
  }
}

@keyframes ffqx-marquee {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(-50%);
  }
}

.ffqx-page {
  background: var(--ffq-bg);
  color: var(--ffq-text);
  font-family: var(--font-ffq-font-body),system-ui,sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizelegibility;
}

.ffqx-page a {
  color: var(--ffq-brand-light);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}

.ffqx-page a:hover {
  color: rgb(156, 195, 255);
}

.ffqx-page input::placeholder {
  color: rgb(101, 118, 154);
}

.ffqx-wrap {
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
  background-image: radial-gradient(120% 90% at 80% -5%, rgb(13, 28, 64) 0%, rgb(7, 13, 30) 42%, rgb(5, 8, 15) 100%);
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
}

.ffqx-header {
  position: relative;
  z-index: 20;
  max-width: 1200px;
  margin: 0px auto;
  padding: 24px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ffqx-logo {
  display: flex;
  align-items: center;
  row-gap: 11px;
  column-gap: 11px;
}

.ffqx-logo-text {
  font-family: var(--font-ffq-font-heading);
  font-weight: 700;
  font-size: 23px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ffq-text);
}

.ffqx-logo-text span {
  color: var(--ffq-brand-light);
}

.ffqx-btn-header {
  display: inline-flex;
  align-items: center;
  row-gap: 8px;
  column-gap: 8px;
  padding: 11px 22px;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-bottom-left-radius: 999px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(120, 165, 255, 0.35);
  border-right-color: rgba(120, 165, 255, 0.35);
  border-bottom-color: rgba(120, 165, 255, 0.35);
  border-left-color: rgba(120, 165, 255, 0.35);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(43, 123, 255, 0.06);
  color: rgb(219, 231, 255);
  cursor: pointer;
  transition-behavior: normal;
  transition-duration: 0.25s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: all;
}

.ffqx-btn-header:hover {
  border-top-color: rgba(120, 165, 255, 0.65);
  border-right-color: rgba(120, 165, 255, 0.65);
  border-bottom-color: rgba(120, 165, 255, 0.65);
  border-left-color: rgba(120, 165, 255, 0.65);
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(43, 123, 255, 0.14);
}

.ffqx-hero {
  position: relative;
  padding: 44px 26px 96px;
  overflow-x: hidden;
  overflow-y: hidden;
}

.ffqx-hero-bg-grid {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background-image: linear-gradient(rgba(110, 168, 255, 0.055) 1px, transparent 1px), linear-gradient(90deg, rgba(110, 168, 255, 0.055) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(70% 60% at 40% 20%, rgb(0, 0, 0) 30%, transparent 72%);
}

.ffqx-hero-glow {
  position: absolute;
  top: -120px;
  right: -60px;
  width: 640px;
  height: 640px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  background-image: radial-gradient(circle, rgba(43, 123, 255, 0.34), transparent 62%);
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  filter: blur(50px);
}

.ffqx-hero-grid {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0px auto;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  row-gap: 56px;
  column-gap: 56px;
  align-items: center;
}

@media (max-width: 900px) {
  .ffqx-hero-grid {
  grid-template-columns: 1fr;
  }
}

.ffqx-badge-pill {
  display: inline-flex;
  align-items: center;
  row-gap: 9px;
  column-gap: 9px;
  padding: 8px 15px;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-bottom-left-radius: 999px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(120, 165, 255, 0.28);
  border-right-color: rgba(120, 165, 255, 0.28);
  border-bottom-color: rgba(120, 165, 255, 0.28);
  border-left-color: rgba(120, 165, 255, 0.28);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(43, 123, 255, 0.08);
  margin-bottom: 26px;
}

.ffqx-badge-dot {
  width: 7px;
  height: 7px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(77, 155, 255);
  box-shadow: rgb(77, 155, 255) 0px 0px 10px;
}

.ffqx-badge-text {
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgb(143, 186, 255);
}

.ffqx-h1 {
  font-family: var(--font-ffq-font-heading);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(46px, 6vw, 78px);
  line-height: 1.02;
  letter-spacing: 0.005em;
  color: rgb(243, 247, 255);
  margin-bottom: 22px;
}

.ffqx-gradient-text {
  display: inline-block;
  padding-block-start: 0.06em;
  padding-block-end: 0.06em;
  background-image: linear-gradient(98deg, rgb(125, 178, 255), rgb(43, 123, 255) 55%, rgb(11, 86, 224));
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-color: initial;
  background-clip: text;
  color: transparent;
}

.ffqx-hero-note {
  color: rgb(138, 155, 189);
  margin-bottom: 18px;
  max-width: 38ch;
}

.ffqx-hero-sub {
  color: rgb(195, 209, 236);
  margin-bottom: 34px;
  max-width: 44ch;
}

.ffqx-cta-row {
  display: flex;
  flex-wrap: wrap;
  row-gap: 14px;
  column-gap: 14px;
  margin-bottom: 30px;
}

.ffqx-btn-primary {
  display: inline-flex;
  align-items: center;
  row-gap: 10px;
  column-gap: 10px;
  padding: 17px 32px;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-bottom-left-radius: 999px;
  border-top-width: medium;
  border-right-width: medium;
  border-bottom-width: medium;
  border-left-width: medium;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  border-top-color: currentcolor;
  border-right-color: currentcolor;
  border-bottom-color: currentcolor;
  border-left-color: currentcolor;
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  background-image: linear-gradient(rgb(63, 138, 255), rgb(11, 86, 224));
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  color: rgb(255, 255, 255);
  letter-spacing: 0.01em;
  cursor: pointer;
  box-shadow: rgba(43, 123, 255, 0.85) 0px 18px 44px -14px;
  transition-behavior: normal;
  transition-duration: 0.25s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: all;
}

.ffqx-btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: rgba(43, 123, 255, 0.98) 0px 22px 56px -12px;
}

.ffqx-btn-outline {
  display: inline-flex;
  align-items: center;
  row-gap: 8px;
  column-gap: 8px;
  padding: 17px 28px;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-bottom-left-radius: 999px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(120, 165, 255, 0.32);
  border-right-color: rgba(120, 165, 255, 0.32);
  border-bottom-color: rgba(120, 165, 255, 0.32);
  border-left-color: rgba(120, 165, 255, 0.32);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: transparent;
  color: rgb(207, 224, 255);
  cursor: pointer;
  transition-behavior: normal;
  transition-duration: 0.25s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: all;
}

.ffqx-btn-outline:hover {
  border-top-color: rgba(120, 165, 255, 0.62);
  border-right-color: rgba(120, 165, 255, 0.62);
  border-bottom-color: rgba(120, 165, 255, 0.62);
  border-left-color: rgba(120, 165, 255, 0.62);
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(43, 123, 255, 0.08);
}

.ffqx-hero-checks {
  display: flex;
  flex-wrap: wrap;
  row-gap: 22px;
  column-gap: 22px;
}

.ffqx-check-item {
  display: inline-flex;
  align-items: center;
  row-gap: 8px;
  column-gap: 8px;
  color: rgb(159, 176, 208);
}

.ffqx-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.ffqx-hero-visual-glow {
  position: absolute;
  width: 82%;
  height: 78%;
  top: 11%;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  background-image: radial-gradient(circle, rgba(43, 123, 255, 0.55), transparent 62%);
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  filter: blur(66px);
  z-index: 2;
}

.ffqx-ebook-mock {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 390px;
  aspect-ratio: 4 / 5;
  animation-duration: 6.5s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-fill-mode: none;
  animation-play-state: running;
  animation-name: ffqx-floaty;
  animation-timeline: auto;
  animation-range-start: normal;
  animation-range-end: normal;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
  overflow-x: visible;
  overflow-y: visible;
  background-image: linear-gradient(160deg, rgb(28, 54, 112), rgb(11, 18, 38));
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(90, 140, 255, 0.3);
  border-right-color: rgba(90, 140, 255, 0.3);
  border-bottom-color: rgba(90, 140, 255, 0.3);
  border-left-color: rgba(90, 140, 255, 0.3);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px;
}

.ffqx-ebook-mock .kicker {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ffq-brand-light);
  margin-bottom: 14px;
}

.ffqx-ebook-mock h4 {
  font-family: var(--font-ffq-font-heading);
  font-weight: 700;
  font-size: 26px;
  text-transform: uppercase;
  color: rgb(255, 255, 255);
  margin-bottom: 10px;
}

.ffqx-ebook-mock p {
  color: rgb(169, 185, 214);
}

.ffqx-float-badge {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  row-gap: 9px;
  column-gap: 9px;
  padding: 11px 15px;
  border-top-left-radius: 13px;
  border-top-right-radius: 13px;
  border-bottom-right-radius: 13px;
  border-bottom-left-radius: 13px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(11, 18, 38, 0.82);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(90, 140, 255, 0.28);
  border-right-color: rgba(90, 140, 255, 0.28);
  border-bottom-color: rgba(90, 140, 255, 0.28);
  border-left-color: rgba(90, 140, 255, 0.28);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  backdrop-filter: blur(8px);
  box-shadow: rgba(0, 0, 0, 0.7) 0px 14px 34px -14px;
}

.ffqx-float-badge.top {
  top: 16px;
  left: -22px;
}

.ffqx-float-badge.bot {
  bottom: 22px;
  right: -24px;
}

.ffqx-float-badge b {
  font-family: var(--font-ffq-font-heading);
  font-weight: 700;
  font-size: 19px;
  color: rgb(255, 255, 255);
  line-height: 1;
  display: block;
}

.ffqx-float-badge span.sub {
  color: rgb(138, 155, 189);
  margin-top: 3px;
  display: block;
}

.ffqx-marquee-wrap {
  position: relative;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgba(90, 140, 255, 0.12);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(90, 140, 255, 0.12);
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(9, 15, 31, 0.55);
  padding: 20px 0px;
  overflow-x: hidden;
  overflow-y: hidden;
  mask-image: linear-gradient(90deg, transparent, rgb(0, 0, 0) 12%, rgb(0, 0, 0) 88%, transparent);
}

.ffqx-marquee-track {
  display: flex;
  width: max-content;
  animation-duration: 32s;
  animation-timing-function: linear;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-fill-mode: none;
  animation-play-state: running;
  animation-name: ffqx-marquee;
  animation-timeline: auto;
  animation-range-start: normal;
  animation-range-end: normal;
}

.ffqx-marquee-group {
  display: flex;
  align-items: center;
  row-gap: 34px;
  column-gap: 34px;
  padding-right: 34px;
  font-family: var(--font-ffq-font-heading);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(180, 200, 240, 0.42);
  white-space-collapse: collapse;
  text-wrap-mode: nowrap;
}

.ffqx-marquee-group span.dot {
  color: rgb(63, 109, 192);
}

.ffqx-section {
  position: relative;
  padding: 104px 26px;
  overflow-x: hidden;
  overflow-y: hidden;
}

.ffqx-section-eyebrow {
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ffq-brand-light);
  margin-bottom: 20px;
}

.ffqx-section-title {
  font-family: var(--font-ffq-font-heading);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.05;
  color: rgb(243, 247, 255);
}

.ffqx-container {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0px auto;
}

.ffqx-container-sm {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0px auto;
}

.ffqx-problem-glow {
  position: absolute;
  left: -100px;
  top: 20%;
  width: 460px;
  height: 460px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  background-image: radial-gradient(circle, rgba(43, 123, 255, 0.16), transparent 65%);
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  filter: blur(60px);
}

.ffqx-problem-title {
  margin-bottom: 32px;
  max-width: 16ch;
}

.ffqx-problem-quote {
  border-left-width: 2px;
  border-left-style: solid;
  border-left-color: rgba(90, 140, 255, 0.4);
  padding-left: 26px;
  display: flex;
  flex-direction: column;
  row-gap: 18px;
  column-gap: 18px;
}

.ffqx-problem-quote p.lead {
  color: rgb(220, 230, 247);
}

.ffqx-problem-quote p.body {
  color: rgb(159, 176, 208);
}

.ffqx-problem-quote p.strong {
  color: rgb(238, 243, 255);
}

.ffqx-bg-dots {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background-image: radial-gradient(rgba(110, 168, 255, 0.06) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(60% 70% at 50% 40%, rgb(0, 0, 0), transparent 78%);
}

.ffqx-pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 20px;
  column-gap: 20px;
}

@media (max-width: 900px) {
  .ffqx-pain-grid {
  grid-template-columns: 1fr;
  }
}

.ffqx-pain-card {
  padding: 34px;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  border-bottom-right-radius: 18px;
  border-bottom-left-radius: 18px;
  background-image: linear-gradient(rgba(19, 29, 54, 0.9), rgba(11, 17, 35, 0.85));
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(90, 140, 255, 0.16);
  border-right-color: rgba(90, 140, 255, 0.16);
  border-bottom-color: rgba(90, 140, 255, 0.16);
  border-left-color: rgba(90, 140, 255, 0.16);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  transition-behavior: normal;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: all;
}

.ffqx-pain-card:hover {
  border-top-color: rgba(90, 140, 255, 0.42);
  border-right-color: rgba(90, 140, 255, 0.42);
  border-bottom-color: rgba(90, 140, 255, 0.42);
  border-left-color: rgba(90, 140, 255, 0.42);
  transform: translateY(-3px);
}

.ffqx-pain-icon {
  width: 52px;
  height: 52px;
  border-top-left-radius: 13px;
  border-top-right-radius: 13px;
  border-bottom-right-radius: 13px;
  border-bottom-left-radius: 13px;
  display: grid;
  align-items: center;
  justify-items: center;
  background-image: radial-gradient(circle at 30% 25%, rgba(43, 123, 255, 0.3), rgba(43, 123, 255, 0.05));
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(90, 140, 255, 0.24);
  border-right-color: rgba(90, 140, 255, 0.24);
  border-bottom-color: rgba(90, 140, 255, 0.24);
  border-left-color: rgba(90, 140, 255, 0.24);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  color: rgb(127, 178, 255);
  margin-bottom: 20px;
}

.ffqx-pain-card p {
  color: rgb(228, 236, 250);
}

.ffqx-pain-cta-box {
  margin-top: 30px;
  padding: 26px 32px;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
  background-image: linear-gradient(100deg, rgba(43, 123, 255, 0.16), rgba(11, 86, 224, 0.08));
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(90, 140, 255, 0.3);
  border-right-color: rgba(90, 140, 255, 0.3);
  border-bottom-color: rgba(90, 140, 255, 0.3);
  border-left-color: rgba(90, 140, 255, 0.3);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  row-gap: 18px;
  column-gap: 18px;
}

.ffqx-pain-cta-box p {
  color: rgb(238, 243, 255);
}

.ffqx-btn-cta-mini {
  display: inline-flex;
  align-items: center;
  row-gap: 9px;
  column-gap: 9px;
  padding: 14px 26px;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-bottom-left-radius: 999px;
  border-top-width: medium;
  border-right-width: medium;
  border-bottom-width: medium;
  border-left-width: medium;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  border-top-color: currentcolor;
  border-right-color: currentcolor;
  border-bottom-color: currentcolor;
  border-left-color: currentcolor;
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  background-image: linear-gradient(rgb(63, 138, 255), rgb(11, 86, 224));
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  color: rgb(255, 255, 255);
  cursor: pointer;
  box-shadow: rgba(43, 123, 255, 0.85) 0px 14px 36px -14px;
  transition-behavior: normal;
  transition-duration: 0.25s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: all;
  white-space-collapse: collapse;
  text-wrap-mode: nowrap;
}

.ffqx-btn-cta-mini:hover {
  transform: translateY(-2px) scale(1.02);
}

.ffqx-proof-glow {
  position: absolute;
  right: -80px;
  top: -40px;
  width: 520px;
  height: 520px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  background-image: radial-gradient(circle, rgba(43, 123, 255, 0.2), transparent 64%);
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  filter: blur(60px);
}

.ffqx-proof-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  row-gap: 52px;
  column-gap: 52px;
  align-items: center;
}

@media (max-width: 900px) {
  .ffqx-proof-grid {
  grid-template-columns: 1fr;
  }
}

.ffqx-proof-photo-wrap {
  position: relative;
}

.ffqx-proof-photo-glow {
  position: absolute;
  top: -16px;
  right: -16px;
  bottom: -16px;
  left: -16px;
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
  border-bottom-right-radius: 22px;
  border-bottom-left-radius: 22px;
  background-image: radial-gradient(circle at 50% 30%, rgba(43, 123, 255, 0.4), transparent 66%);
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  filter: blur(38px);
}

.ffqx-proof-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  overflow-x: hidden;
  overflow-y: hidden;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(90, 140, 255, 0.24);
  border-right-color: rgba(90, 140, 255, 0.24);
  border-bottom-color: rgba(90, 140, 255, 0.24);
  border-left-color: rgba(90, 140, 255, 0.24);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  background-image: linear-gradient(160deg, rgb(28, 54, 112), rgb(11, 18, 38));
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(95, 124, 176);
}

.ffqx-proof-desc {
  color: rgb(159, 176, 208);
  margin-bottom: 26px;
  max-width: 52ch;
}

.ffqx-proof-badges {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  column-gap: 12px;
  margin-bottom: 26px;
}

.ffqx-badge-item {
  display: flex;
  align-items: center;
  row-gap: 13px;
  column-gap: 13px;
  padding: 14px 18px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(11, 18, 38, 0.6);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(90, 140, 255, 0.16);
  border-right-color: rgba(90, 140, 255, 0.16);
  border-bottom-color: rgba(90, 140, 255, 0.16);
  border-left-color: rgba(90, 140, 255, 0.16);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
}

.ffqx-badge-item span {
  color: rgb(220, 230, 247);
}

.ffqx-proof-strong {
  color: rgb(238, 243, 255);
  max-width: 52ch;
}

.ffqx-stats-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  row-gap: 0px;
  column-gap: 0px;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  border-bottom-right-radius: 18px;
  border-bottom-left-radius: 18px;
  overflow-x: hidden;
  overflow-y: hidden;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(90, 140, 255, 0.18);
  border-right-color: rgba(90, 140, 255, 0.18);
  border-bottom-color: rgba(90, 140, 255, 0.18);
  border-left-color: rgba(90, 140, 255, 0.18);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  background-image: linear-gradient(rgba(19, 29, 54, 0.7), rgba(11, 17, 35, 0.6));
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
}

@media (max-width: 900px) {
  .ffqx-stats-grid {
  grid-template-columns: 1fr 1fr;
  }
}

.ffqx-stat-cell {
  padding: 36px 26px;
  text-align: center;
  border-left-width: 1px;
  border-left-style: solid;
  border-left-color: rgba(90, 140, 255, 0.14);
}

.ffqx-stat-cell:first-child {
  border-left-width: medium;
  border-left-style: none;
  border-left-color: currentcolor;
}

.ffqx-stat-num {
  font-family: var(--font-ffq-font-heading);
  font-weight: 800;
  font-size: clamp(40px, 4.4vw, 56px);
  line-height: 1;
  background-image: linear-gradient(rgb(143, 186, 255), rgb(43, 123, 255));
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-color: initial;
  background-clip: text;
  color: transparent;
  padding-block-start: 0.04em;
  padding-block-end: 0.04em;
}

.ffqx-stat-label {
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgb(138, 155, 189);
  margin-top: 12px;
}

.ffqx-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 22px;
  column-gap: 22px;
}

@media (max-width: 900px) {
  .ffqx-process-grid {
  grid-template-columns: 1fr;
  }
}

.ffqx-process-card {
  padding: 36px 32px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  background-image: linear-gradient(rgba(19, 29, 54, 0.85), rgba(11, 17, 35, 0.8));
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(90, 140, 255, 0.16);
  border-right-color: rgba(90, 140, 255, 0.16);
  border-bottom-color: rgba(90, 140, 255, 0.16);
  border-left-color: rgba(90, 140, 255, 0.16);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  transition-behavior: normal;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: all;
}

.ffqx-process-card:hover {
  border-top-color: rgba(90, 140, 255, 0.42);
  border-right-color: rgba(90, 140, 255, 0.42);
  border-bottom-color: rgba(90, 140, 255, 0.42);
  border-left-color: rgba(90, 140, 255, 0.42);
  transform: translateY(-4px);
}

.ffqx-process-icon {
  width: 56px;
  height: 56px;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  border-bottom-left-radius: 15px;
  display: grid;
  align-items: center;
  justify-items: center;
  background-image: radial-gradient(circle at 30% 25%, rgba(43, 123, 255, 0.32), rgba(43, 123, 255, 0.06));
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(90, 140, 255, 0.26);
  border-right-color: rgba(90, 140, 255, 0.26);
  border-bottom-color: rgba(90, 140, 255, 0.26);
  border-left-color: rgba(90, 140, 255, 0.26);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  color: rgb(127, 178, 255);
  margin-bottom: 22px;
}

.ffqx-process-step-label {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgb(95, 124, 176);
  margin-bottom: 12px;
}

.ffqx-process-card h3 {
  font-family: var(--font-ffq-font-heading);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 26px;
  line-height: 1.1;
  color: rgb(243, 247, 255);
  margin-bottom: 14px;
}

.ffqx-process-card p {
  color: rgb(159, 176, 208);
}

.ffqx-offer-glow {
  position: absolute;
  left: 50%;
  top: 0px;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background-image: radial-gradient(rgba(43, 123, 255, 0.2), transparent 68%);
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  filter: blur(60px);
}

.ffqx-offer-bento {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  grid-auto-rows: 1fr;
  row-gap: 20px;
  column-gap: 20px;
}

@media (max-width: 900px) {
  .ffqx-offer-bento {
  grid-template-columns: 1fr;
  }
}

.ffqx-offer-main {
  grid-row-start: span 2;
  grid-row-end: auto;
  padding: 40px;
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
  border-bottom-right-radius: 22px;
  border-bottom-left-radius: 22px;
  background-image: linear-gradient(160deg, rgba(30, 55, 110, 0.55), rgba(11, 17, 35, 0.85));
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(90, 140, 255, 0.3);
  border-right-color: rgba(90, 140, 255, 0.3);
  border-bottom-color: rgba(90, 140, 255, 0.3);
  border-left-color: rgba(90, 140, 255, 0.3);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: rgba(43, 123, 255, 0.6) 0px 24px 60px -30px;
}

@media (max-width: 900px) {
  .ffqx-offer-main {
  grid-row-start: auto;
  grid-row-end: auto;
  }
}

.ffqx-offer-icon {
  width: 60px;
  height: 60px;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
  display: grid;
  align-items: center;
  justify-items: center;
  background-image: radial-gradient(circle at 30% 25%, rgba(43, 123, 255, 0.4), rgba(43, 123, 255, 0.08));
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(90, 140, 255, 0.3);
  border-right-color: rgba(90, 140, 255, 0.3);
  border-bottom-color: rgba(90, 140, 255, 0.3);
  border-left-color: rgba(90, 140, 255, 0.3);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  color: rgb(156, 195, 255);
  margin-bottom: 26px;
}

.ffqx-offer-tag {
  display: inline-block;
  padding: 5px 12px;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-bottom-left-radius: 999px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(43, 123, 255, 0.16);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(90, 140, 255, 0.3);
  border-right-color: rgba(90, 140, 255, 0.3);
  border-bottom-color: rgba(90, 140, 255, 0.3);
  border-left-color: rgba(90, 140, 255, 0.3);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgb(156, 195, 255);
  margin-bottom: 18px;
}

.ffqx-offer-main h3 {
  font-family: var(--font-ffq-font-heading);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 32px;
  line-height: 1.08;
  color: rgb(243, 247, 255);
  margin-bottom: 14px;
}

.ffqx-offer-main p {
  color: rgb(169, 185, 214);
  margin-bottom: 20px;
}

.ffqx-offer-main-foot {
  display: flex;
  align-items: flex-start;
  row-gap: 11px;
  column-gap: 11px;
  padding-top: 20px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgba(90, 140, 255, 0.18);
}

.ffqx-offer-main-foot span {
  color: rgb(220, 230, 247);
}

.ffqx-offer-side {
  padding: 34px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  background-image: linear-gradient(rgba(19, 29, 54, 0.85), rgba(11, 17, 35, 0.8));
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(90, 140, 255, 0.16);
  border-right-color: rgba(90, 140, 255, 0.16);
  border-bottom-color: rgba(90, 140, 255, 0.16);
  border-left-color: rgba(90, 140, 255, 0.16);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
}

.ffqx-offer-side-head {
  display: flex;
  align-items: center;
  row-gap: 15px;
  column-gap: 15px;
  margin-bottom: 16px;
}

.ffqx-offer-side-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-top-left-radius: 13px;
  border-top-right-radius: 13px;
  border-bottom-right-radius: 13px;
  border-bottom-left-radius: 13px;
  display: grid;
  align-items: center;
  justify-items: center;
  background-image: radial-gradient(circle at 30% 25%, rgba(43, 123, 255, 0.3), rgba(43, 123, 255, 0.05));
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(90, 140, 255, 0.24);
  border-right-color: rgba(90, 140, 255, 0.24);
  border-bottom-color: rgba(90, 140, 255, 0.24);
  border-left-color: rgba(90, 140, 255, 0.24);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  color: rgb(127, 178, 255);
}

.ffqx-offer-side h3 {
  font-family: var(--font-ffq-font-heading);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 23px;
  line-height: 1.1;
  color: rgb(243, 247, 255);
}

.ffqx-offer-side p {
  color: rgb(159, 176, 208);
  margin-bottom: 14px;
}

.ffqx-offer-side-foot {
  display: flex;
  align-items: flex-start;
  row-gap: 10px;
  column-gap: 10px;
}

.ffqx-offer-side-foot span {
  color: rgb(205, 217, 238);
}

.ffqx-offer-summary {
  margin-top: 26px;
  padding: 24px 32px;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
  background-image: linear-gradient(100deg, rgba(43, 123, 255, 0.14), rgba(11, 86, 224, 0.06));
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(90, 140, 255, 0.28);
  border-right-color: rgba(90, 140, 255, 0.28);
  border-bottom-color: rgba(90, 140, 255, 0.28);
  border-left-color: rgba(90, 140, 255, 0.28);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  row-gap: 18px;
  column-gap: 18px;
}

.ffqx-offer-summary p {
  color: rgb(238, 243, 255);
}

.ffqx-testi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 22px;
  column-gap: 22px;
}

@media (max-width: 900px) {
  .ffqx-testi-grid {
  grid-template-columns: 1fr;
  }
}

.ffqx-testi-card {
  padding: 36px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  background-image: linear-gradient(rgba(19, 29, 54, 0.85), rgba(11, 17, 35, 0.8));
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(90, 140, 255, 0.16);
  border-right-color: rgba(90, 140, 255, 0.16);
  border-bottom-color: rgba(90, 140, 255, 0.16);
  border-left-color: rgba(90, 140, 255, 0.16);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
}

.ffqx-testi-stars {
  display: flex;
  row-gap: 4px;
  column-gap: 4px;
  margin-bottom: 20px;
}

.ffqx-testi-quote {
  color: rgb(228, 236, 250);
  margin-bottom: 26px;
}

.ffqx-testi-person {
  display: flex;
  align-items: center;
  row-gap: 14px;
  column-gap: 14px;
}

.ffqx-testi-avatar {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  overflow-x: hidden;
  overflow-y: hidden;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(90, 140, 255, 0.3);
  border-right-color: rgba(90, 140, 255, 0.3);
  border-bottom-color: rgba(90, 140, 255, 0.3);
  border-left-color: rgba(90, 140, 255, 0.3);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  background-image: linear-gradient(160deg, rgb(28, 54, 112), rgb(11, 18, 38));
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(127, 178, 255);
}

.ffqx-testi-name {
  color: rgb(243, 247, 255);
}

.ffqx-testi-role {
  color: rgb(138, 155, 189);
  margin-top: 3px;
}

.ffqx-faq-item {
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(90, 140, 255, 0.16);
  border-right-color: rgba(90, 140, 255, 0.16);
  border-bottom-color: rgba(90, 140, 255, 0.16);
  border-left-color: rgba(90, 140, 255, 0.16);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  border-bottom-right-radius: 14px;
  border-bottom-left-radius: 14px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(11, 18, 38, 0.55);
  margin-bottom: 14px;
  overflow-x: hidden;
  overflow-y: hidden;
}

.ffqx-faq-item summary {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  row-gap: 16px;
  column-gap: 16px;
  padding: 22px 26px;
  background-image: none;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  border-top-width: medium;
  border-right-width: medium;
  border-bottom-width: medium;
  border-left-width: medium;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  border-top-color: currentcolor;
  border-right-color: currentcolor;
  border-bottom-color: currentcolor;
  border-left-color: currentcolor;
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  cursor: pointer;
  list-style-position: initial;
  list-style-image: initial;
  list-style-type: none;
  color: rgb(238, 243, 255);
}

.ffqx-faq-item summary::-webkit-details-marker {
  display: none;
}

.ffqx-faq-sign {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  display: grid;
  align-items: center;
  justify-items: center;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(43, 123, 255, 0.14);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(90, 140, 255, 0.28);
  border-right-color: rgba(90, 140, 255, 0.28);
  border-bottom-color: rgba(90, 140, 255, 0.28);
  border-left-color: rgba(90, 140, 255, 0.28);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  color: rgb(127, 178, 255);
  font-family: var(--font-ffq-font-heading);
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
}

.ffqx-faq-item p {
  padding: 0px 26px 24px;
  color: rgb(159, 176, 208);
  max-width: 70ch;
  margin: 0px;
}

.ffqx-signup-glow {
  position: absolute;
  left: 50%;
  top: -40px;
  transform: translateX(-50%);
  width: 760px;
  height: 420px;
  background-image: radial-gradient(rgba(43, 123, 255, 0.28), transparent 66%);
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  filter: blur(58px);
}

.ffqx-signup-grid {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0px auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 52px;
  column-gap: 52px;
  align-items: center;
}

@media (max-width: 900px) {
  .ffqx-signup-grid {
  grid-template-columns: 1fr;
  }
}

.ffqx-signup-checks {
  display: flex;
  flex-direction: column;
  row-gap: 13px;
  column-gap: 13px;
}

.ffqx-signup-checks span {
  display: inline-flex;
  align-items: center;
  row-gap: 11px;
  column-gap: 11px;
  color: rgb(205, 217, 238);
}

.ffqx-form-card {
  padding: 38px;
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
  border-bottom-right-radius: 22px;
  border-bottom-left-radius: 22px;
  background-image: linear-gradient(rgba(22, 34, 64, 0.92), rgba(11, 17, 35, 0.92));
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(90, 140, 255, 0.3);
  border-right-color: rgba(90, 140, 255, 0.3);
  border-bottom-color: rgba(90, 140, 255, 0.3);
  border-left-color: rgba(90, 140, 255, 0.3);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  animation-duration: 4.5s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-fill-mode: none;
  animation-play-state: running;
  animation-name: ffqx-pulseglow;
  animation-timeline: auto;
  animation-range-start: normal;
  animation-range-end: normal;
}

.ffqx-form-card h3 {
  font-family: var(--font-ffq-font-heading);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 28px;
  line-height: 1.08;
  color: rgb(243, 247, 255);
  margin-bottom: 22px;
}

.ffqx-form-label {
  display: block;
  color: rgb(143, 186, 255);
  margin-bottom: 8px;
}

.ffqx-form-input {
  width: 100%;
  padding: 15px 17px;
  margin-bottom: 18px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(90, 140, 255, 0.28);
  border-right-color: rgba(90, 140, 255, 0.28);
  border-bottom-color: rgba(90, 140, 255, 0.28);
  border-left-color: rgba(90, 140, 255, 0.28);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(6, 10, 20, 0.6);
  color: rgb(238, 243, 255);
  outline-color: initial;
  outline-style: none;
  outline-width: initial;
  transition-behavior: normal;
  transition-duration: 0.2s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: all;
}

.ffqx-form-input:focus {
  border-top-color: rgb(77, 155, 255);
  border-right-color: rgb(77, 155, 255);
  border-bottom-color: rgb(77, 155, 255);
  border-left-color: rgb(77, 155, 255);
  box-shadow: rgba(43, 123, 255, 0.18) 0px 0px 0px 3px;
}

.ffqx-btn-submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  row-gap: 10px;
  column-gap: 10px;
  padding: 18px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  border-top-width: medium;
  border-right-width: medium;
  border-bottom-width: medium;
  border-left-width: medium;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  border-top-color: currentcolor;
  border-right-color: currentcolor;
  border-bottom-color: currentcolor;
  border-left-color: currentcolor;
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  background-image: linear-gradient(rgb(63, 138, 255), rgb(11, 86, 224));
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  color: rgb(255, 255, 255);
  letter-spacing: 0.01em;
  cursor: pointer;
  box-shadow: rgba(43, 123, 255, 0.9) 0px 16px 40px -14px;
  transition-behavior: normal;
  transition-duration: 0.25s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: all;
}

.ffqx-btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: rgb(43, 123, 255) 0px 20px 50px -12px;
}

.ffqx-form-micro {
  display: flex;
  align-items: center;
  row-gap: 9px;
  column-gap: 9px;
  margin-top: 18px;
  justify-content: center;
}

.ffqx-form-micro span {
  color: rgb(138, 155, 189);
}

.ffqx-thanks {
  display: none;
  text-align: center;
  padding: 20px 0px;
}

.ffqx-thanks-icon {
  width: 64px;
  height: 64px;
  margin: 0px auto 22px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  display: grid;
  align-items: center;
  justify-items: center;
  background-image: radial-gradient(circle, rgba(43, 123, 255, 0.35), rgba(43, 123, 255, 0.08));
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(90, 140, 255, 0.4);
  border-right-color: rgba(90, 140, 255, 0.4);
  border-bottom-color: rgba(90, 140, 255, 0.4);
  border-left-color: rgba(90, 140, 255, 0.4);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  color: rgb(127, 178, 255);
}

.ffqx-thanks h3 {
  font-family: var(--font-ffq-font-heading);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 28px;
  line-height: 1.1;
  color: rgb(243, 247, 255);
  margin-bottom: 14px;
}

.ffqx-thanks p {
  color: rgb(159, 176, 208);
}

.ffqx-form-panel.submitted .ffqx-form-view {
  display: none;
}

.ffqx-form-panel.submitted .ffqx-thanks {
  display: block;
}

.ffqx-footer {
  position: relative;
  padding: 52px 26px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(5, 8, 15);
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgba(90, 140, 255, 0.12);
}

.ffqx-footer-inner {
  max-width: 1120px;
  margin: 0px auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  row-gap: 20px;
  column-gap: 20px;
}

.ffqx-footer-brand {
  display: flex;
  align-items: center;
  row-gap: 11px;
  column-gap: 11px;
}

.ffqx-footer-brand span.name {
  font-family: var(--font-ffq-font-heading);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgb(238, 243, 255);
}

.ffqx-footer-brand span.name span {
  color: var(--ffq-brand-light);
}

.ffqx-footer p {
  color: rgb(111, 128, 163);
}

.ffqx-footer-copy {
  color: rgb(91, 107, 140);
}

.ffqx-reveal {
  opacity: 1;
  transform: none;
  transition-behavior: normal, normal;
  transition-duration: 0.8s, 0.8s;
  transition-timing-function: cubic-bezier(0.2, 0.7, 0.2, 1), cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: 0s, 0s;
  transition-property: opacity, transform;
}

.ffqx-reveal.is-visible {
  opacity: 1;
  transform: none;
}

.ffqx-reveal-d1 {
  transition-delay: 0.1s;
}

.ffqx-reveal-d15 {
  transition-delay: 0.15s;
}

@media (max-width: 900px) {
  .ffqx-stat-cell:nth-child(3) {
  border-left-width: medium;
  border-left-style: none;
  border-left-color: currentcolor;
  }
}

.ffqx-ebook-mock .kicker, .ffqx-ebook-mock h4, .ffqx-ebook-mock p {
  position: relative;
  z-index: 1;
}

.ffqx-ebook-mock::before {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
  background-image: linear-gradient(160deg, rgb(28, 54, 112), rgb(11, 18, 38));
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(90, 140, 255, 0.3);
  border-right-color: rgba(90, 140, 255, 0.3);
  border-bottom-color: rgba(90, 140, 255, 0.3);
  border-left-color: rgba(90, 140, 255, 0.3);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  z-index: 0;
}

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

body {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(5, 8, 15);
  color: rgb(238, 243, 255);
  font-family: Inter, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizelegibility;
}

a {
  color: rgb(106, 168, 255);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}

a:hover {
  color: rgb(156, 195, 255);
}

::selection {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(43, 123, 255, 0.35);
  color: rgb(255, 255, 255);
}

input::placeholder {
  color: rgb(101, 118, 154);
}

@keyframes floaty {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

@keyframes pulseglow {
  0%, 100% {
    box-shadow: rgba(43, 123, 255, 0.75) 0px 22px 55px -20px;
  }
  50% {
    box-shadow: rgba(43, 123, 255, 0.98) 0px 28px 72px -14px;
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(-50%);
  }
}

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

body {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(5, 8, 15);
  color: rgb(238, 243, 255);
  font-family: Inter, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizelegibility;
}

a {
  color: rgb(106, 168, 255);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}

a:hover {
  color: rgb(156, 195, 255);
}

::selection {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(43, 123, 255, 0.35);
  color: rgb(255, 255, 255);
}

input::placeholder {
  color: rgb(101, 118, 154);
}

@keyframes floaty {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

@keyframes pulseglow {
  0%, 100% {
    box-shadow: rgba(43, 123, 255, 0.75) 0px 22px 55px -20px;
  }
  50% {
    box-shadow: rgba(43, 123, 255, 0.98) 0px 28px 72px -14px;
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(-50%);
  }
}