:root {
  --dark: #111827;
  --dark-mid: #1e2235;
  --navy: #2d3553;
  --teal: #00738c;
  --teal-light: #00a3c4;
  --magenta: #ad3091;
  --stone: #f9f8f7;
  --white: #ffffff;
  --text-muted: #8a8fa8;
  --text-light: #c5c9d6;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-bg-light: rgba(11, 18, 32, 0.03);
  --glass-border-light: rgba(45, 53, 83, 0.12);
  --gradient-accent: linear-gradient(
    135deg,
    var(--teal) 0%,
    var(--magenta) 100%
  );
  --gradient-dark: linear-gradient(
    180deg,
    var(--dark) 0%,
    var(--dark-mid) 100%
  );
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.12);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.18);
  --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.24);
  --shadow-glow: 0 0 40px rgba(0, 115, 140, 0.3);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --max-width: 1200px;
  --section-pad: clamp(70px, 8vw, 110px);
  --nav-height: 64px;
}
*,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-padding-top: var(--nav-height);
}
body {
  font-family:
    DM Sans,
    system-ui,
    -apple-system,
    sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--navy);
  background: var(--white);
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
h1,
h2,
h3,
h4 {
  font-family:
    Outfit,
    DM Sans,
    sans-serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
}
h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
}
h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 600;
}
.section-label {
  font-family:
    DM Sans,
    sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.section-label::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--gradient-accent);
  border-radius: 2px;
  flex-shrink: 0;
}
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}
.gradient-text {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-animated {
  background: linear-gradient(
    135deg,
    var(--teal) 0%,
    var(--magenta) 50%,
    var(--teal) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease-in-out infinite;
}
@keyframes gradientShift {
  0%,
  to {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
}
.problem,
.how-it-works,
.use-cases,
.why-not,
.faq,
.before-after,
.ba-section-alt {
  position: relative;
}
.problem:before,
.how-it-works:before,
.use-cases:before,
.faq:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
  pointer-events: none;
  z-index: 0;
}
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--gradient-accent);
  z-index: 1100;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px var(--teal), 0 0 16px rgba(0, 115, 140, 0.3);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family:
    DM Sans,
    sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(0, 115, 140, 0.25);
  position: relative;
  overflow: hidden;
}
.btn-primary:hover {
  background: #008aa8;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(0, 115, 140, 0.35);
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  animation: btn-shimmer 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes btn-shimmer {
  0%, 100% { left: -60%; }
  50% { left: 120%; }
}
.btn-secondary {
  background: transparent;
  color: var(--teal-light);
  font-weight: 500;
}
.btn-secondary:hover {
  color: var(--white);
}
.btn-secondary .arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}
.btn-secondary:hover .arrow {
  transform: translate(6px);
}
.btn-outline {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
}
.btn-outline:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px #00738c4d;
}
.btn-tier {
  width: 100%;
  padding: 14px 24px;
  font-size: 0.95rem;
  border-radius: 12px;
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translate(-40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translate(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}
.stagger-1 {
  transition-delay: 0.1s;
}
.stagger-2 {
  transition-delay: 0.2s;
}
.stagger-3 {
  transition-delay: 0.3s;
}
.stagger-4 {
  transition-delay: 0.4s;
}
.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.orb-teal {
  background: #00738c1f;
  animation: orbFloat 12s ease-in-out infinite;
}
.orb-magenta {
  background: #ad309114;
  animation: orbFloat 15s ease-in-out infinite reverse;
}
@keyframes orbFloat {
  0%,
  to {
    transform: translate(0) scale(1);
  }
  33% {
    transform: translate(30px, -20px) scale(1.05);
  }
  66% {
    transform: translate(-20px, 15px) scale(0.95);
  }
}
.timeline-line {
  position: absolute;
  top: 40px;
  left: calc(16.66% + 24px);
  right: calc(16.66% + 24px);
  height: 2px;
  background: #2d35531a;
  z-index: 0;
}
.timeline-line-fill {
  position: absolute;
  top: 40px;
  left: calc(16.66% + 24px);
  right: calc(16.66% + 24px);
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--magenta));
  z-index: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.2s ease;
}
.timeline-line-fill.filled {
  transform: scaleX(1);
}
.step.visible .step-number {
  box-shadow: 0 0 20px #00738c4d;
  transition: box-shadow 0.6s ease;
  animation: pulseRing 2s ease-out 0.3s 1;
}
@keyframes pulseRing {
  0% { box-shadow: 0 0 0 0 rgba(0, 115, 140, 0.4); }
  50% { box-shadow: 0 0 0 20px rgba(0, 115, 140, 0); }
  100% { box-shadow: 0 0 20px #00738c4d; }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal,
  .reveal-left,
  .reveal-scale {
    opacity: 1;
    transform: none;
  }
  .scroll-progress {
    display: none;
  }
}
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: #111827d9;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  z-index: 1000;
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease;
}
.site-nav.scrolled {
  background: #111827f2;
  box-shadow: 0 4px 24px #0000004d;
  border-bottom-color: transparent;
  background-image: linear-gradient(#111827f2, #111827f2),
    linear-gradient(90deg, var(--teal), var(--magenta), var(--teal));
  background-origin: border-box;
  background-clip: padding-box, border-box;
  border-bottom: 1px solid transparent;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: Outfit, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
}
.nav-logo img {
  filter: drop-shadow(0 0 8px rgba(0, 115, 140, 0.3));
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s ease;
  letter-spacing: 0.01em;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-accent);
  border-radius: 2px;
  transition: width 0.3s ease;
}
.nav-links a:hover {
  color: var(--white);
}
.nav-links a:hover::after {
  width: 100%;
}
.btn-nav {
  padding: 10px 24px;
  font-size: 0.88rem;
  border-radius: 12px;
}
.hero {
  position: relative;
  display: flex;
  align-items: flex-start;
  background: var(--dark);
  overflow: hidden;
  padding: 40px 0 80px;
  padding-top: calc(var(--nav-height) + 100px);
  min-height: 90vh;
}
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.35;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(17, 24, 39, 0.6) 0%, rgba(17, 24, 39, 0.3) 40%, rgba(17, 24, 39, 0.7) 100%),
    linear-gradient(90deg, rgba(17, 24, 39, 0.8) 0%, transparent 60%);
}
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-demo {
  position: relative;
  z-index: 1;
}
/* ── Chat demo (light screen) ── */
.demo-window.demo-claude {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.15),
    0 20px 60px rgba(0, 0, 0, 0.3);
}
.demo-claude .demo-titlebar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: #f5f5f5;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.demo-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.demo-dot:first-child { background: #ff5f57; }
.demo-dot:nth-child(2) { background: #febc2e; }
.demo-dot:nth-child(3) { background: #28c840; }
.demo-title {
  margin-left: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #444;
  font-family: DM Sans, sans-serif;
}
.demo-connected {
  margin-left: auto;
  font-size: 14px;
  font-weight: 600;
  color: var(--teal);
  background: rgba(0, 115, 140, 0.08);
  border: 1px solid rgba(0, 115, 140, 0.2);
  padding: 3px 10px;
  border-radius: 20px;
  font-family: DM Sans, sans-serif;
}
.demo-chat {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 370px;
  background: #ffffff;
}
.demo-msg {
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.5;
  color: #333;
  font-family: DM Sans, sans-serif;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.demo-msg.visible {
  opacity: 1;
  transform: translateY(0);
}
.demo-msg-user {
  background: #f0f0f0;
  border: none;
  color: #222;
  align-self: flex-end;
  max-width: 85%;
  border-radius: 16px 16px 4px 16px;
}
.demo-msg-brain {
  background: transparent;
  padding: 6px 16px;
  border: none;
}
.demo-brain-status {
  font-size: 12px;
  color: var(--teal);
  font-style: italic;
  display: inline-flex;
  align-items: center;
}
.demo-msg-claude,
.demo-msg-ai {
  background: #e8edf2;
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: #222;
  border-radius: 4px 16px 16px 16px;
  line-height: 1.6;
}
.demo-found-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.demo-found-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
}
.demo-tag-brain {
  background: rgba(0, 115, 140, 0.1);
  border: 1px solid rgba(0, 115, 140, 0.25);
  color: var(--teal);
}
.demo-tag-skill {
  background: rgba(173, 48, 145, 0.1);
  border: 1px solid rgba(173, 48, 145, 0.25);
  color: var(--magenta);
}
.demo-tag-boost {
  background: rgba(45, 53, 83, 0.1);
  border: 1px solid rgba(45, 53, 83, 0.3);
  color: var(--navy);
}
.hero .container {
  position: relative;
  z-index: 1;
}
.hero-content {
  max-width: 640px;
}
.hero-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 20px rgba(0, 115, 140, 0.4));
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
}
.hero-sub {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 1rem;
  max-width: 520px;
}
.hero-sub-cta {
  color: var(--white);
  font-weight: 700;
  font-size: 1.75rem;
  font-family:
    Outfit,
    DM Sans,
    sans-serif;
  margin-bottom: 2rem;
}
.hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 0.75rem;
}
.hero-micro {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-family: DM Sans, sans-serif;
}
.hero-urgency {
  font-size: 0.85rem;
  color: var(--teal-light);
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-bottom: 2rem;
}
/* ── Expert CTA ── */
.expert-cta {
  padding: 0 0 var(--section-pad);
  margin-top: 0;
  background: var(--stone);
}
.expert-coming-soon {
  /* no opacity wash — section is fully visible */
}
.coming-soon-badge {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  vertical-align: middle;
  margin-left: 8px;
}
.expert-cta-inner {
  background: var(--white);
  border: 1px solid rgba(45, 53, 83, 0.08);
  border-radius: 20px;
  padding: clamp(40px, 6vw, 64px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}
.expert-cta-content h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: 1rem;
  color: var(--navy);
}
.expert-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 2rem;
}
.expert-highlights {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 2rem;
}
.expert-highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: var(--navy);
  font-weight: 500;
}
.expert-icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: var(--gradient-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--white);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
@media (max-width: 768px) {
  .expert-cta-inner {
    padding: 32px 24px;
  }
}
.comparison {
  padding: var(--section-pad) 0;
  background: var(--dark);
}
.comparison-table-wrap {
  overflow-x: auto;
  margin-top: 2rem;
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.comparison-table thead th {
  padding: 1rem 1.25rem;
  text-align: center;
  font-family:
    Outfit,
    DM Sans,
    sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-light);
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}
.comparison-table thead th:first-child {
  text-align: left;
}
.comparison-table thead th.highlight-col {
  color: var(--teal-light);
}
.comparison-table tbody td {
  padding: 0.85rem 1.25rem;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  font-size: 1.1rem;
}
.comparison-table tbody td:empty:after {
  content: "—";
  color: #ffffff26;
}
.comparison-table tbody td.row-label {
  font-weight: 500;
  color: var(--text-light);
  text-align: left;
  font-size: 0.95rem;
}
.comparison-table tbody td.highlight-col {
  color: var(--teal-light);
  font-weight: 500;
}
.comparison-table tbody tr {
  transition: background 0.2s ease;
}
.comparison-table tbody tr:hover {
  background: rgba(0, 115, 140, 0.06);
}
.comparison-table tbody tr:hover td.highlight-col {
  text-shadow: 0 0 12px rgba(0, 163, 196, 0.4);
}
.section-divider-row {
  pointer-events: none;
}
.section-divider-row:hover {
  background: none !important;
}
.comparison-section-label {
  font-family: Outfit, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  padding: 1.5rem 1.25rem 0.5rem !important;
  border-bottom: none !important;
  text-align: left !important;
}
@media (max-width: 768px) {
  .comparison-table-wrap {
    margin-left: -16px;
    margin-right: -16px;
    padding: 0 8px;
  }
  .comparison-table {
    font-size: 0.68rem;
    min-width: 480px;
  }
  .comparison-table thead th {
    padding: 0.5rem 0.35rem;
    font-size: 0.72rem;
  }
  .comparison-table tbody td {
    padding: 0.5rem 0.35rem;
    font-size: 0.68rem;
  }
  .comparison-table tbody td.row-label {
    font-size: 0.68rem;
    min-width: 80px;
  }
}
.problem {
  padding: var(--section-pad) 0;
  background: var(--stone);
}
.problem h2 {
  margin-bottom: 3.5rem;
  max-width: 600px;
}
/* ── Infinite quote scroll ── */
.quote-scroll {
  position: relative;
  overflow: hidden;
  margin: 0 -48px;
  padding: 20px 0;
}
.problem {
  overflow: hidden;
}
.quote-scroll::before,
.quote-scroll::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.quote-scroll::before {
  left: 0;
  background: linear-gradient(90deg, var(--stone) 0%, transparent 100%);
}
.quote-scroll::after {
  right: 0;
  background: linear-gradient(270deg, var(--stone) 0%, transparent 100%);
}
.quote-scroll-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: scrollQuotes 120s linear infinite;
}
.quote-scroll-track:hover {
  animation-play-state: paused;
}
@keyframes scrollQuotes {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.quote-scroll-track .pain-card {
  flex: 0 0 340px;
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.7;
  text-align: center;
  border-left: none;
  border-top: none;
  background: var(--white);
  border: 1px solid rgba(45, 53, 83, 0.08);
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.quote-scroll-track .pain-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 115, 140, 0.1);
  border-color: var(--teal);
}
.pain-card {
  background: var(--white);
  border: 1px solid rgba(45, 53, 83, 0.08);
  border-left: 3px solid var(--teal);
  border-radius: var(--radius-sm);
  padding: 28px 28px 28px 24px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--navy);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  position: relative;
  z-index: 1;
}
.pain-card-wide {
  grid-column: span 2;
}
.pain-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(0, 115, 140, 0.08);
  border-left-color: var(--magenta);
  border-left-width: 4px;
}
.pain-card strong {
  display: block;
  margin-bottom: 6px;
  font-weight: 700;
  font-size: 1.02rem;
}
.cost-callout {
  margin-top: 3rem;
  padding: 24px 32px;
  background: var(--white);
  border: 2px solid var(--teal);
  border-radius: var(--radius-md);
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}
.cost-callout strong {
  color: var(--teal);
  font-weight: 700;
}
.shift {
  padding: clamp(70px, 8vw, 110px) 0;
  background: var(--gradient-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.shift h2 {
  color: var(--white);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  margin-bottom: 2rem;
}
.shift-sub {
  color: var(--text-muted);
  font-size: 1.15rem;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}
.before-after {
  padding: var(--section-pad) 0;
  background: var(--white);
}
.ba-section-alt {
  padding: var(--section-pad) 0;
  background: var(--stone);
}
.before-after .section-header,
.ba-section-alt .section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}
.ba-card {
  border-radius: var(--radius-md);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ba-before {
  background: #2d35530a;
  border: 1px solid rgba(45, 53, 83, 0.12);
}
.ba-after {
  background: linear-gradient(
    135deg,
    rgba(0, 115, 140, 0.06) 0%,
    rgba(173, 48, 145, 0.04) 100%
  );
  border: 1px solid rgba(0, 115, 140, 0.25);
  box-shadow:
    0 0 40px #00738c1a,
    0 0 80px #00738c0d,
    inset 0 1px #00738c26;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ba-after:hover {
  transform: translateY(-2px);
  box-shadow:
    0 4px 40px #00738c26,
    0 0 80px #00738c12,
    inset 0 1px #00738c33;
}
.ba-label {
  font-family: Outfit, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.ba-before .ba-label {
  color: var(--text-muted);
}
.ba-after .ba-label {
  color: var(--teal);
}
.ba-prompt {
  background: #2d35530f;
  border-radius: var(--radius-sm);
  padding: 16px;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--navy);
}
.ba-prompt-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.ba-response {
  flex-grow: 1;
}
.ba-response-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.ba-response p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--navy);
  margin-bottom: 0.75em;
}
.ba-before .ba-response p:last-child {
  opacity: 0.6;
}
.ba-signoff {
  font-weight: 600;
  color: var(--magenta) !important;
  opacity: 1 !important;
}
.ba-send-badge {
  display: inline-block;
  margin-top: 12px;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--teal);
  border: 1px solid var(--teal);
  border-radius: 6px;
  letter-spacing: 0.03em;
  opacity: 0.85;
}
@media (max-width: 768px) {
  .ba-grid {
    grid-template-columns: 1fr;
  }
  .how-it-works {
    padding-bottom: clamp(80px, 10vw, 120px);
  }
  .quote-scroll {
    margin: 0 -20px;
  }
}
.how-it-works {
  padding: clamp(30px, 4vw, 50px) 0 var(--section-pad);
  background: var(--stone);
  position: relative;
  overflow: hidden;
}
.how-it-works .section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.how-it-works h2 {
  margin-bottom: 1rem;
}
.steps-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  position: relative;
}
.step {
  text-align: center;
  position: relative;
}
.step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: Outfit, sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--teal);
  position: relative;
  z-index: 1;
}
.step h3 {
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.step p {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 280px;
  margin: 0 auto;
}
.pricing {
  padding: var(--section-pad) 0;
  background: var(--gradient-dark);
  position: relative;
}
.pricing:before {
  content: "";
  position: absolute;
  top: -80px;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(180deg, var(--white) 0%, var(--dark) 100%);
  pointer-events: none;
}
.pricing .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.pricing h2 {
  color: var(--white);
  margin-bottom: 1rem;
}
.pricing .section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
}
.value-anchor {
  max-width: 640px;
  margin: 0 auto 3rem;
  text-align: center;
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.7;
  padding: 20px 28px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}
.value-anchor::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-accent);
  opacity: 0.6;
}
.value-anchor strong {
  color: var(--teal-light);
  font-weight: 700;
}
.value-glow {
  text-shadow: 0 0 12px rgba(0, 115, 140, 0.6), 0 0 30px rgba(0, 115, 140, 0.3);
}
.guarantee-block {
  max-width: 500px;
  margin: 3rem auto 0;
}
.guarantee-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  font-style: italic;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
  max-width: 960px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}
/* Cursor-following spotlight */
.pricing-card .spotlight-mask {
  pointer-events: none;
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.pricing-card:hover .spotlight-mask {
  opacity: 1;
}
.pricing-card > *:not(.spotlight-mask):not(.popular-badge) {
  position: relative;
  z-index: 1;
}
.pricing-card:hover {
  transform: translateY(-6px);
  border-color: #00738c4d;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.2),
    0 0 20px rgba(0, 115, 140, 0.15);
}
.pricing-card.popular {
  border-color: var(--teal);
  box-shadow:
    0 0 40px #00738c26,
    0 0 80px #00738c0d;
  transform: scale(1.03);
}
.pricing-card.popular:hover {
  transform: scale(1.03) translateY(-6px);
  box-shadow:
    0 0 60px #00738c40,
    0 0 100px #00738c1a;
}
.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translate(-50%);
  background: var(--gradient-accent);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 50px;
  white-space: nowrap;
  z-index: 2;
}
/* Rotating gradient border glow on popular card */
.pricing-card.popular {
  border: none;
  background:
    linear-gradient(var(--dark-mid), var(--dark-mid)) padding-box,
    conic-gradient(
      from var(--border-angle, 0deg),
      var(--teal) 0%,
      var(--magenta) 25%,
      var(--teal) 50%,
      var(--magenta) 75%,
      var(--teal) 100%
    ) border-box;
  border: 2px solid transparent;
  animation: rotateBorder 6s linear infinite;
}
@property --border-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
@keyframes rotateBorder {
  to { --border-angle: 360deg; }
}
.tier-tagline {
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  min-height: 2.4em;
  min-height: 3.2em;
}
.tier-name {
  color: var(--white);
  font-family: Outfit, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.tier-price {
  margin-bottom: 0.75rem;
  height: 5.5rem;
}
.tier-price .amount {
  font-family: Outfit, sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
}
.tier-price .period {
  color: var(--text-muted);
  font-size: 0.9rem;
}
.tier-price .starting {
  color: var(--text-muted);
  font-size: 0.85rem;
}
.tier-features {
  margin-bottom: 0;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  border-top: 1px solid var(--glass-border);
  flex: 1;
}
.tier-features li {
  color: var(--text-light);
  font-size: 0.9rem;
  padding: 6px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.tier-features li:before {
  content: "✓";
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--gradient-accent);
  opacity: 0.85;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--white);
  font-weight: 700;
}
.tier-outcome {
  color: var(--text-light);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  opacity: 0.85;
  height: 4.2em;
}
.pricing-card .btn-tier {
  margin-top: auto;
  width: 100%;
  text-align: center;
  white-space: normal;
  font-size: 0.88rem;
  padding: 14px 20px;
  min-height: 3.6em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pricing-card .btn-tier.btn-primary {
  background: var(--teal);
  color: var(--white);
}
.tier-trial {
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.enterprise-cta {
  margin: 2rem auto 0;
  padding: 1.5rem 2rem;
  border-radius: 1rem;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  max-width: 680px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.enterprise-cta:hover {
  transform: translateY(-4px);
  border-color: #00738c4d;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), 0 0 20px rgba(0, 115, 140, 0.12);
}
.enterprise-cta .tier-name {
  margin-bottom: 0.25rem;
  font-size: 1.2rem;
}
.enterprise-cta .tier-outcome {
  height: auto;
  margin-bottom: 1rem;
  font-size: 0.85rem;
}
.enterprise-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 24px;
  margin-bottom: 1.25rem;
  text-align: left;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.enterprise-features li {
  color: var(--text-light);
  font-size: 0.85rem;
  padding: 4px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.enterprise-features li:before {
  content: "\2713";
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--gradient-accent);
  opacity: 0.85;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: var(--white);
  font-weight: 700;
}
.enterprise-btn {
  max-width: 280px;
  margin: 0 auto;
}
.use-cases {
  padding: var(--section-pad) 0;
  background: var(--stone);
}
.use-cases .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.use-cases h2 {
  margin-bottom: 1rem;
}
.use-case-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.use-case-card {
  background: var(--white);
  border: 1px solid rgba(45, 53, 83, 0.08);
  border-top: 3px solid var(--teal);
  border-radius: var(--radius-sm);
  padding: 32px 28px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  position: relative;
  z-index: 1;
}
.use-case-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(0, 115, 140, 0.08);
  border-top-color: var(--magenta);
}
.use-case-card h3 {
  margin-bottom: 0.75rem;
  color: var(--navy);
}
.use-case-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}
.marketplace-preview {
  padding: var(--section-pad) 0 2rem;
  background: var(--stone);
}
.marketplace-preview .section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.marketplace-preview h2 {
  margin-bottom: 1rem;
}
.marketplace-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.marketplace-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-top: 3px solid transparent;
  background-image: linear-gradient(white, white),
    linear-gradient(135deg, var(--teal), var(--magenta));
  background-origin: border-box;
  background-clip: padding-box, border-box;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.marketplace-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(0, 115, 140, 0.08);
}
.marketplace-card h3 {
  font-size: 1.1rem;
  margin: 0.75rem 0 0.5rem;
  color: var(--dark);
}
.marketplace-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.mp-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}
.mp-iq {
  background: linear-gradient(135deg, var(--teal), #00a3c4);
  color: var(--white);
}
.mp-power {
  background: linear-gradient(135deg, #9333ea, var(--magenta));
  color: var(--white);
}
.marketplace-cta {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 1.05rem;
  color: var(--text-muted);
}
.marketplace-cta a {
  font-weight: 600;
}
@media (max-width: 768px) {
  .marketplace-grid {
    grid-template-columns: 1fr;
  }
}
.security {
  padding: var(--section-pad) 0;
  background: var(--stone);
}
.security .section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.security h2 {
  margin-bottom: 1rem;
}
.security-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.security-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-top: 3px solid var(--teal);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.security-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}
.security-card h3 {
  font-size: 1.05rem;
  margin: 0 0 0.75rem;
  color: var(--dark);
}
.security-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}
@media (max-width: 1024px) {
  .security-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .security-grid {
    grid-template-columns: 1fr;
  }
}
.security-verified {
  margin-top: 3.5rem;
  padding: 2rem 2.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-left: 4px solid var(--teal);
  display: flex;
  align-items: center;
  gap: 1.75rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}
.security-verified img {
  flex-shrink: 0;
  display: block;
  height: auto;
}
.security-verified-text {
  flex: 1;
}
.security-verified-headline {
  font-family: Outfit, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 0.4rem;
  letter-spacing: -0.01em;
}
.security-verified-sub {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 640px) {
  .security-verified {
    flex-direction: column;
    text-align: center;
    gap: 1.25rem;
    padding: 1.75rem 1.5rem;
  }
}
.whats-inside {
  padding: var(--section-pad) 0;
  background: var(--dark);
}
.whats-inside .section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.whats-inside h2 {
  color: var(--white);
}
.brain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.brain-category {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.brain-category:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 115, 140, 0.3);
  box-shadow: 0 8px 32px rgba(0, 115, 140, 0.1);
}
.brain-category h3 {
  color: var(--teal);
  font-family: Outfit, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.brain-category ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.brain-category li {
  color: var(--text-light);
  font-size: 0.88rem;
  padding: 4px 0;
  opacity: 0.85;
}
@media (max-width: 768px) {
  .brain-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .brain-grid {
    grid-template-columns: 1fr;
  }
}
.faq {
  padding: var(--section-pad) 0;
  background: var(--stone);
}
.faq .section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.faq h2 {
  margin-bottom: 1rem;
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.faq-item {
  border-bottom: 1px solid rgba(45, 53, 83, 0.1);
  border-left: 3px solid transparent;
  padding-left: 0;
  transition: border-color 0.3s ease, padding-left 0.3s ease;
}
.faq-item.open {
  border-left-color: var(--teal);
  padding-left: 16px;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  font-family:
    DM Sans,
    sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.3s ease;
}
.faq-question:hover {
  color: var(--teal);
}
.faq-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  position: relative;
  transition: transform 0.3s ease;
}
.faq-icon:before,
.faq-icon:after {
  content: "";
  position: absolute;
  background: var(--navy);
  border-radius: 2px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}
.faq-icon:before {
  width: 16px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.faq-icon:after {
  width: 2px;
  height: 16px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.faq-item.open .faq-icon:after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.4s ease;
}
.faq-item.open .faq-answer {
  max-height: 300px;
}
.faq-answer p {
  padding: 0 0 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}
.signup-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #000000b3;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.signup-overlay.open {
  display: flex;
  opacity: 1;
}
.signup-modal {
  width: 100%;
  max-width: 440px;
  background: var(--dark-mid);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.signup-overlay.open .signup-modal {
  transform: translateY(0);
}
.signup-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  transition: color 0.2s ease;
}
.signup-close:hover {
  color: var(--white);
}
.signup-modal-header {
  text-align: center;
  margin-bottom: 28px;
}
.signup-modal-icon {
  margin: 0 auto 12px;
  filter: drop-shadow(0 0 12px rgba(0, 115, 140, 0.4));
}
.signup-modal-header h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 6px;
}
.signup-modal-header p {
  color: var(--text-muted);
  font-size: 0.9rem;
}
.signup-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.02em;
}
.form-group input {
  padding: 13px 16px;
  background: #ffffff0f;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family:
    DM Sans,
    sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.form-group input::placeholder {
  color: var(--text-muted);
  font-size: 0.88rem;
}
.form-group input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px #00738c26;
}
.form-error {
  background: #ef44441f;
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  color: #fca5a5;
  font-size: 0.88rem;
  line-height: 1.5;
}
.signup-btn {
  width: 100%;
  margin-top: 4px;
  padding: 15px 24px;
  font-size: 1rem;
  border-radius: 12px;
}
.signup-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}
.signup-login-link {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}
.signup-login-link a {
  color: var(--teal-light);
  text-decoration: none;
}
.signup-login-link a:hover {
  text-decoration: underline;
}
.confirm-message {
  text-align: center;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 4px;
}
.confirm-message strong {
  color: var(--white);
}
.signup-success {
  text-align: center;
  padding: 20px 0;
}
.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gradient-accent);
  color: var(--white);
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.signup-success h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.signup-success p {
  color: var(--text-muted);
  font-size: 0.95rem;
}
.final-cta {
  padding: clamp(100px, 12vw, 160px) 0;
  background: var(--gradient-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::after {
  content: "";
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.03) 30%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  animation: spotlightPulse 4s ease-in-out infinite;
}
@keyframes spotlightPulse {
  0%, 100% { opacity: 0.7; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.05); }
}
.final-cta:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(0, 115, 140, 0.15) 0%,
    rgba(173, 48, 145, 0.06) 40%,
    transparent 70%
  );
  pointer-events: none;
  animation: ctaGlow 6s ease-in-out infinite;
}
@keyframes ctaGlow {
  0%, 100% { opacity: 0.8; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}
.final-cta h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 1.5rem;
  position: relative;
}
.final-cta-sub {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  position: relative;
}
.final-cta .btn {
  position: relative;
  font-size: 1.1rem;
  padding: 18px 40px;
}
.final-cta-note {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 1.5rem;
  position: relative;
}
.footer {
  padding: 48px 0;
  background: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.footer-brand {
  font-family: Outfit, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}
.footer-brand .gradient-text {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-links {
  display: flex;
  gap: 32px;
}
.footer-links a {
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: color 0.3s ease;
}
.footer-links a:hover {
  color: var(--teal-light);
}
.footer-copy {
  color: rgba(138, 143, 168, 0.6);
  font-size: 0.78rem;
}
.footer-ae-link {
  color: rgba(138, 143, 168, 0.6);
  transition: color 0.3s ease;
}
.footer-ae-link:hover {
  color: var(--teal-light);
}
.why-not {
  padding: var(--section-pad) 0;
  background: var(--white);
}
.why-not .section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.why-not-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-not-card {
  background: var(--stone);
  border: 1px solid rgba(45, 53, 83, 0.06);
  border-radius: var(--radius-sm);
  padding: 32px 28px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.why-not-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(0, 115, 140, 0.1);
  border-color: rgba(0, 115, 140, 0.15);
}
.why-not-card h3 {
  color: var(--navy);
  margin-bottom: 1rem;
  font-size: 1.15rem;
}
.why-not-them {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(45, 53, 83, 0.08);
}
.why-not-us {
  color: var(--navy);
  font-size: 0.92rem;
  line-height: 1.6;
}
.why-not-us strong {
  color: var(--teal);
}
@media (max-width: 768px) {
  .why-not-grid {
    grid-template-columns: 1fr;
  }
}
.compare-toggle-wrap {
  text-align: center;
  margin-top: 3rem;
}
.compare-toggle {
  border-color: var(--glass-border);
  color: var(--text-light);
}
.compare-toggle:hover {
  border-color: var(--teal);
  background: #00738c1a;
  color: var(--white);
}
.compare-table-wrap {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.5s ease,
    margin 0.5s ease;
  margin-top: 0;
}
.compare-table-wrap.open {
  max-height: 800px;
  margin-top: 3rem;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.compare-table thead th {
  color: var(--white);
  font-family: Outfit, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 12px;
  text-align: center;
  border-bottom: 2px solid var(--glass-border);
}
.compare-table thead th:first-child {
  text-align: left;
}
.compare-table tbody td {
  padding: 14px 12px;
  text-align: center;
  color: var(--text-light);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.9rem;
}
.compare-table tbody td.feature-name {
  text-align: left;
  color: var(--text-muted);
  font-weight: 500;
}
.compare-table tbody tr {
  transition: background 0.2s ease;
}
.compare-table tbody tr:hover td {
  background: rgba(0, 115, 140, 0.08);
}
@media (max-width: 1024px) {
  .use-case-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-card.popular {
    transform: none;
  }
  .pricing-card.popular:hover {
    transform: translateY(-6px);
  }
  .problem-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pain-card-wide {
    grid-column: span 2;
  }
  .steps-container:before {
    display: none;
  }
  .nav-links {
    display: none;
  }
}
@media (max-width: 768px) {
  body {
    font-size: 16px;
  }
  .hero {
    padding-top: calc(var(--nav-height) + 60px);
    padding-bottom: 80px;
    min-height: auto;
  }
  .hero-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-content {
    max-width: 100%;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
  }
  .demo-window {
    max-width: 100%;
  }
  .problem-grid {
    grid-template-columns: 1fr;
  }
  .pain-card-wide {
    grid-column: span 1;
  }
  .compare-table {
    font-size: 0.78rem;
  }
  .compare-table thead th,
  .compare-table tbody td {
    padding: 10px 6px;
  }
  .steps-container {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .timeline-line,
  .timeline-line-fill {
    display: none;
  }
  .use-case-grid {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
  .footer-left {
    flex-direction: column;
  }
}
/* Cursor pointer on interactive elements */
.pain-card,
.brain-category,
.marketplace-card,
.use-case-card,
.why-not-card,
.pricing-card {
  cursor: default;
}
.faq-question,
.compare-toggle,
.btn,
.nav-links a,
.footer-links a,
.marketplace-cta a {
  cursor: pointer;
}

/* Smooth focus states for keyboard nav */
.btn:focus-visible,
.faq-question:focus-visible,
.nav-links a:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (max-width: 375px) {
  h1 {
    font-size: 2rem;
  }
  .hero-icon {
    width: 60px;
    height: 60px;
  }
}
