* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: #f7f8fc;
  color: #111827;
  font-family: Manrope, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
.page {
  --growth-dark-stop: clamp(68rem, 92vw, 80rem);
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(ellipse at top left, rgba(101, 69, 255, 0.28) 0%, transparent 55%),
    radial-gradient(ellipse at top right, rgba(24, 200, 249, 0.14) 0%, transparent 45%),
    linear-gradient(180deg, #0d1420 0%, #131e32 var(--growth-dark-stop), #f7f8fc var(--growth-dark-stop));
}
.nav {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #ffffff;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: "Space Grotesk", sans-serif;
  font-size: 21px;
  font-weight: 700;
}
.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, #6545ff, #18c8f9);
  color: #ffffff;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
}
.nav-link {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 13px;
  color: rgba(255,255,255,0.74);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}
.nav-active, .nav-link:hover {
  background: #ffffff;
  color: #111827;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.nav-actions a {
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
}
.login { color: rgba(255,255,255,0.78); }
.trial {
  background: #ffffff;
  color: #111827;
  padding: 11px 16px;
  border-radius: 12px;
}
.hero {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 60px 0 80px;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  color: #ffffff;
}
.hero-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
  max-width: min(100%, 43rem);
}
.eyebrow {
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(101,69,255,0.2);
  border: 1px solid rgba(101,69,255,0.35);
  color: #a78bfa;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
h1, h2, h3 {
  font-family: "Space Grotesk", Manrope, sans-serif;
  letter-spacing: 0;
  margin: 0;
}
h1 {
  max-width: 13ch;
  font-size: clamp(34px, 5.8vw, 80px);
  line-height: 1;
  text-wrap: balance;
  overflow-wrap: anywhere;
}
.hero-accent {
  background: linear-gradient(90deg, #a78bfa, #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lead {
  max-width: 42rem;
  margin: 24px 0 0;
  color: rgba(255,255,255,0.72);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.58;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  padding: 0 24px;
  text-decoration: none;
  font-weight: 900;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  background: linear-gradient(135deg, #644fff, #11c7f3);
  color: #ffffff;
  box-shadow: 0 18px 45px -18px rgba(17,199,243,.85);
}
.button-primary:hover {
  box-shadow: 0 24px 55px -16px rgba(17,199,243,.95);
}
.button-secondary {
  background: rgba(255,255,255,0.08);
  color: #ffffff;
  border-color: rgba(255,255,255,0.2);
}
.proof-list {
  margin: 36px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  list-style: none;
}
.proof-list li {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  padding: 12px 14px;
  color: rgba(255,255,255,0.94);
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.82) 0%, rgba(30, 41, 59, 0.76) 100%);
  box-shadow: 0 18px 40px -28px rgba(2, 6, 23, 0.95);
  font-size: 13px;
  line-height: 1.5;
  backdrop-filter: blur(8px);
}
.proof-list li::before {
  content: "";
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #6545ff, #18c8f9);
}
.visual {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
}
.visual-frame {
  width: min(100%, 460px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 28px;
  padding: 16px;
  background: linear-gradient(160deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.04) 100%);
  box-shadow: 0 40px 100px -40px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.2);
}
.visual-frame img {
  display: block;
  width: 100%;
  min-height: 340px;
  object-fit: contain;
  border-radius: 18px;
  background: rgba(255,255,255,0.9);
}
.metric-strip {
  width: min(1120px, calc(100% - 40px));
  margin: -34px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.metric {
  min-height: 130px;
  border: 1px solid rgba(15,23,42,0.08);
  border-radius: 20px;
  padding: 24px;
  background: #ffffff;
  box-shadow: 0 24px 60px -30px rgba(15,23,42,.6);
}
.metric strong {
  display: block;
  background: linear-gradient(135deg, #6545ff, #0ea5e9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: "Space Grotesk", sans-serif;
  font-size: 34px;
  line-height: 1;
  margin-bottom: 10px;
}
.metric span {
  color: #64748b;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.45;
}
.content {
  width: min(1120px, calc(100% - 40px));
  margin: 72px auto 0;
}
.section-label {
  margin: 0 0 12px;
  color: #6545ff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.answer {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 36px;
  align-items: start;
  padding: 48px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(15,23,42,0.07);
  box-shadow: 0 4px 24px -8px rgba(15,23,42,0.08);
}
.answer h2 {
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.06;
  color: #111827;
}
.answer p {
  margin: 0;
  color: #48566f;
  font-size: 18px;
  line-height: 1.68;
}
.split-section {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 36px;
  padding: 64px 0;
  border-bottom: 1px solid rgba(15,23,42,0.08);
  align-items: start;
}
.split-section h2 {
  color: #111827;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
}
.split-section p:not(.section-label) {
  margin: 0;
  color: #48566f;
  font-size: 20px;
  line-height: 1.65;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
  padding: 0;
  list-style: none;
}
.feature-grid li {
  min-height: 118px;
  border: 1px solid rgba(15,23,42,0.08);
  border-radius: 18px;
  background: #ffffff;
  padding: 18px;
  color: #111827;
  font-weight: 900;
  line-height: 1.35;
}
.quote-band {
  margin: 48px 0 0;
  padding: 48px;
  border-radius: 24px;
  color: #ffffff;
  background: linear-gradient(135deg, #23154f, #0e7490);
  position: relative;
  overflow: hidden;
}
.quote-band::before {
  content: "\201C";
  position: absolute;
  top: -20px;
  left: 32px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 180px;
  line-height: 1;
  color: rgba(255,255,255,0.06);
  pointer-events: none;
}
.quote-band blockquote {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(26px, 4vw, 48px);
  line-height: 1.1;
  position: relative;
}
.quote-band p {
  margin: 18px 0 0;
  color: rgba(255,255,255,0.65);
  font-weight: 700;
  position: relative;
}
.faq {
  margin: 72px 0 0;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 36px;
}
.faq h2 {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
}
details {
  border-top: 1px solid rgba(15,23,42,0.1);
  padding: 20px 0;
}
details:last-child { border-bottom: 1px solid rgba(15,23,42,0.1); }
summary {
  cursor: pointer;
  font-weight: 900;
  font-size: 17px;
  color: #111827;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 300;
  color: #6545ff;
  flex-shrink: 0;
  transition: transform .2s ease;
}
details[open] summary::after { transform: rotate(45deg); }
details p {
  margin: 14px 0 0;
  color: #48566f;
  line-height: 1.65;
}
.related { margin: 72px 0 0; }
.related h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
  margin-bottom: 24px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.related-card {
  display: block;
  min-height: 190px;
  border: 1px solid rgba(15,23,42,0.08);
  border-radius: 20px;
  padding: 24px;
  text-decoration: none;
  background: #ffffff;
  transition: transform .18s ease, box-shadow .18s ease;
}
.related-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px -30px rgba(15,23,42,.7);
}
.related-card span {
  display: block;
  color: #6545ff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.related-card strong {
  display: block;
  color: #111827;
  font-family: "Space Grotesk", sans-serif;
  font-size: 24px;
  line-height: 1.1;
  margin-bottom: 12px;
}
.related-card small {
  color: #64748b;
  font-size: 14px;
  line-height: 1.55;
}
.cta {
  margin: 74px 0 0;
  padding: 64px 48px;
  border-radius: 28px;
  color: #ffffff;
  text-align: center;
  background: linear-gradient(135deg, #0d1420 0%, #37206f 55%, #0e7490 100%);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(101,69,255,0.3) 0%, transparent 65%);
  pointer-events: none;
}
.cta h2 {
  max-width: 820px;
  margin: 0 auto;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
  text-wrap: balance;
  position: relative;
}
.cta p {
  max-width: 720px;
  margin: 20px auto 0;
  color: rgba(255,255,255,0.68);
  font-size: 19px;
  line-height: 1.65;
  position: relative;
}
.cta .hero-actions {
  justify-content: center;
  position: relative;
}
.footer {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 54px 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #64748b;
  font-weight: 700;
  font-size: 14px;
}
.footer a {
  color: #334155;
  text-decoration: none;
  margin-left: 16px;
}
@media (max-width: 1180px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
    align-items: flex-start;
  }
  .hero-copy {
    padding: 28px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(8, 14, 26, 0.96) 0%, rgba(17, 24, 39, 0.88) 100%);
    box-shadow: 0 40px 90px -48px rgba(2, 6, 23, 0.92);
  }
  h1 {
    max-width: 11ch;
    font-size: clamp(34px, 5.2vw, 64px);
  }
  .lead { color: rgba(255,255,255,0.84); }
  .hero-actions .button {
    flex: 1 1 220px;
  }
  .proof-list {
    grid-template-columns: 1fr;
  }
  .proof-list li {
    align-items: flex-start;
    color: rgba(255,255,255,0.94);
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.84) 100%);
    border-color: rgba(255,255,255,0.18);
  }
}
@media (max-width: 920px) {
  .nav { align-items: flex-start; flex-direction: column; }
  .nav-links { width: 100%; overflow-x: auto; }
  .nav-actions { width: 100%; }
  .hero, .answer, .split-section, .faq { grid-template-columns: 1fr; }
  .hero { padding-top: 32px; }
  .hero-copy { padding: 24px; }
  h1 { max-width: 100%; }
  .visual { min-height: 360px; }
  .metric-strip, .feature-grid, .related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .answer { padding: 32px; }
}
@media (max-width: 560px) {
  .page { --growth-dark-stop: 74rem; }
  .hero-copy {
    padding: 20px 18px;
    border-radius: 22px;
  }
  .nav, .hero, .content, .metric-strip, .footer { width: min(100% - 28px, 1120px); }
  .hero-actions .button { width: 100%; }
  .proof-list, .metric-strip, .feature-grid, .related-grid { grid-template-columns: 1fr; }
  .visual-frame { padding: 10px; border-radius: 20px; }
  .visual-frame img { min-height: 240px; }
  .answer, .quote-band, .cta { padding: 28px; border-radius: 20px; }
  .split-section { padding: 48px 0; }
  .footer { flex-direction: column; align-items: flex-start; }
  .footer a { margin-left: 0; margin-right: 14px; }
}
