*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #050508;
  --surface: #0d0d14;
  --border: rgba(255,255,255,0.07);
  --accent: #6c63ff;
  --accent2: #ff4d8d;
  --text: #f0eeff;
  --muted: rgba(240,238,255,0.45);
  --glow: rgba(108,99,255,0.35);
}

html, body {
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(108,99,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(108,99,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  background-size: 200px;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

.blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.blob-1 { width: 600px; height: 600px; background: rgba(108,99,255,0.12); top: -150px; left: -100px; }
.blob-2 { width: 400px; height: 400px; background: rgba(255,77,141,0.08); bottom: 100px; right: -100px; }

.page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

header {
  width: 100%;
  max-width: 1100px;
  padding: 28px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.5px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.logo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

nav { display: flex; gap: 28px; }

nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}

nav a:hover { color: var(--text); }

.page-inner {
  justify-content: flex-start;
}

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 40px 80px;
  max-width: 860px;
  width: 100%;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(108,99,255,0.35);
  background: rgba(108,99,255,0.08);
  color: #a99eff;
  font-size: 12px;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 36px;
  letter-spacing: 0.4px;
  animation: fadeUp 0.8s ease both;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #a99eff;
  animation: pulse 1.5s ease-in-out infinite;
}

h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(42px, 7vw, 80px);
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
  animation: fadeUp 0.8s 0.1s ease both;
}

h1 span {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subtitle {
  font-size: 18px;
  font-weight: 300;
  color: var(--muted);
  max-width: 540px;
  line-height: 1.65;
  margin-bottom: 48px;
  animation: fadeUp 0.8s 0.2s ease both;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  padding: 15px 24px;
  margin-bottom: 48px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.2px;
  box-shadow: 0 18px 40px rgba(108,99,255,0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  animation: fadeUp 0.8s 0.25s ease both;
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(108,99,255,0.28);
  opacity: 0.98;
}

.stats {
  display: flex;
  gap: 40px;
  margin-bottom: 56px;
  animation: fadeUp 0.8s 0.3s ease both;
}

.stat { text-align: center; }

.stat-val {
  font-family: 'Syne', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
}

.stat-lbl {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
  letter-spacing: 0.3px;
}

.stat-sep {
  width: 1px;
  background: var(--border);
  align-self: stretch;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
  max-width: 860px;
  padding: 0 40px 80px;
  animation: fadeUp 0.8s 0.4s ease both;
  position: relative;
  z-index: 1;
}

.content-section {
  width: 100%;
  max-width: 1100px;
  padding: 0 40px 80px;
  position: relative;
  z-index: 1;
}

.content-section--hero {
  padding-top: 40px;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 32px;
  text-align: center;
}

.section-heading--left {
  margin-left: 0;
  text-align: left;
}

.section-copy {
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
}

.page-title,
.content-section h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 5vw, 54px);
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 18px;
}

.link-grid,
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.link-card,
.info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  text-decoration: none;
  color: var(--text);
  min-height: 100%;
}

.link-card {
  transition: border-color 0.25s, transform 0.25s;
}

.link-card:hover {
  border-color: rgba(108,99,255,0.35);
  transform: translateY(-2px);
}

.link-card__title,
.info-card h2 {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  margin-bottom: 10px;
}

.link-card__text,
.info-card p {
  color: var(--muted);
  line-height: 1.7;
}

.text-link {
  color: #c6c0ff;
  text-decoration: none;
}

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

.inner-content {
  width: 100%;
  max-width: 1100px;
}

.team-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 24px;
  align-items: center;
  background: linear-gradient(180deg, rgba(13,13,20,0.98), rgba(13,13,20,0.88));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
}

.team-showcase__media {
  border-radius: 18px;
  overflow: hidden;
  min-height: 100%;
  background: rgba(255,255,255,0.03);
}

.team-showcase__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.team-showcase__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.team-showcase__content .badge {
  margin-bottom: 20px;
}

.team-showcase__content h2 {
  margin-bottom: 16px;
}

.team-showcase__content .section-copy + .section-copy {
  margin-top: 14px;
}

.lead-signup {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: start;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(108,99,255,0.18), transparent 34%),
    linear-gradient(180deg, rgba(13,13,20,0.98), rgba(13,13,20,0.9));
}

.lead-signup__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.lead-signup__content .badge {
  margin-bottom: 20px;
}

.lead-signup__content h2 {
  max-width: 11ch;
  font-size: clamp(30px, 4.2vw, 46px);
  line-height: 1.04;
  letter-spacing: -1.2px;
  margin-bottom: 16px;
}

.lead-signup__benefits {
  display: grid;
  gap: 14px;
  width: 100%;
  margin-top: 26px;
}

.lead-benefit {
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
}

.lead-benefit__title {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  margin-bottom: 6px;
}

.lead-benefit__text {
  color: var(--muted);
  line-height: 1.65;
}

.lead-signup__actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.lead-signup__link {
  color: #fff;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
}

.lead-signup__meta {
  color: var(--muted);
  font-size: 13px;
}

.signup-card {
  width: 100%;
  max-width: 520px;
  justify-self: end;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(6,6,10,0.72);
  box-shadow: 0 24px 60px rgba(0,0,0,0.25);
}

.signup-card__header {
  margin-bottom: 22px;
}

.signup-card__eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #a99eff;
  margin-bottom: 10px;
}

.signup-card__title {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  line-height: 1.1;
  margin-bottom: 10px;
  font-weight: 700;
}

.signup-card__text,
.signup-card__hint {
  color: var(--muted);
  line-height: 1.65;
}

.signup-card__form {
  display: grid;
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field__label {
  font-size: 12px;
  letter-spacing: 0.3px;
  color: rgba(240,238,255,0.7);
}

.field__control {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  color: var(--text);
  padding: 15px 16px;
  font: inherit;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.field__control::placeholder {
  color: rgba(240,238,255,0.28);
}

.field__control:focus {
  border-color: rgba(108,99,255,0.45);
  background: rgba(255,255,255,0.06);
}

.field__control--textarea {
  min-height: 118px;
  resize: vertical;
}

.lead-form__submit {
  border: 0;
  border-radius: 14px;
  padding: 15px 18px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
  color: white;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, opacity 0.2s;
}

.lead-form__submit:hover {
  transform: translateY(-1px);
  opacity: 0.96;
}

.consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
}

.consent__checkbox {
  margin-top: 2px;
  accent-color: var(--accent);
}

.consent__text {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.success-modal[hidden] {
  display: none;
}

.success-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.success-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5,5,8,0.84);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.success-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(460px, 100%);
  padding: 30px 28px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.1);
  background: linear-gradient(180deg, rgba(13,13,20,0.98), rgba(13,13,20,0.92));
  box-shadow: 0 28px 80px rgba(0,0,0,0.32);
}

.success-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: var(--text);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.success-modal__icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 16px;
  background: rgba(34,197,94,0.14);
  color: #7ff0a5;
  font-weight: 700;
}

.success-modal__title {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  line-height: 1.1;
  margin-bottom: 10px;
}

.success-modal__text {
  color: var(--muted);
  line-height: 1.7;
  max-width: 30ch;
}

.site-footer {
  width: 100%;
  max-width: 1100px;
  padding: 0 40px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.footer-brand {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
}

.footer-links a:hover {
  color: var(--text);
}

.feat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  transition: border-color 0.25s;
}

.feat-card:hover { border-color: rgba(108,99,255,0.3); }

.feat-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(108,99,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 16px;
}

.feat-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 6px;
  color: var(--text);
}

.feat-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

#captcha-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(5,5,8,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  align-items: center;
  justify-content: center;
  animation: overlayIn 0.4s ease both;
}

#captcha-overlay.active { display: flex; }

@keyframes overlayIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.captcha-box {
  background: #0d0d14;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 40px 36px;
  width: 380px;
  text-align: center;
  box-shadow: 0 0 80px rgba(108,99,255,0.15);
  animation: boxIn 0.45s 0.05s cubic-bezier(0.34,1.56,0.64,1) both;
}

@keyframes boxIn {
  from { opacity: 0; transform: scale(0.88) translateY(16px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.captcha-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(108,99,255,0.12);
  border: 1px solid rgba(108,99,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 20px;
}

.captcha-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 6px;
  color: var(--text);
}

.captcha-sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.55;
}

.slider-wrap {
  position: relative;
  height: 56px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 14px;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
}

.slider-fill {
  position: absolute;
  left: 4px;
  top: 4px;
  bottom: 4px;
  width: 44px;
  background: linear-gradient(90deg, rgba(108,99,255,0.25), rgba(108,99,255,0.1));
  border-radius: 10px;
  transition: width 0.05s linear;
}

.slider-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 56px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  pointer-events: none;
  letter-spacing: 0.3px;
  text-align: center;
  transition: opacity 0.3s;
}

.slider-thumb {
  position: absolute;
  left: 4px;
  top: 4px;
  height: 44px;
  width: 44px;
  background: rgba(108,99,255,0.9);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: ew-resize;
  transition: background 0.2s, left 0.05s linear;
  box-shadow: 0 0 18px rgba(108,99,255,0.5);
}

.slider-thumb svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: white;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.slider-thumb.done {
  background: rgba(34,197,94,0.85);
  box-shadow: 0 0 18px rgba(34,197,94,0.5);
}

.captcha-footer {
  margin-top: 16px;
  font-size: 11px;
  color: rgba(240,238,255,0.2);
  letter-spacing: 0.3px;
}

@media (max-width: 480px) {
  .captcha-box {
    width: min(380px, calc(100vw - 24px));
    padding: 32px 20px;
  }

  .slider-label {
    padding: 0 52px;
    font-size: 12px;
  }
}

@media (max-width: 900px) {
  header,
  .hero,
  .features,
  .content-section,
  .site-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  header,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  nav,
  .footer-links {
    gap: 14px;
    flex-wrap: wrap;
  }

  .features,
  .link-grid,
  .info-grid,
  .team-showcase,
  .lead-signup {
    grid-template-columns: 1fr;
  }

  .signup-card {
    max-width: none;
    justify-self: stretch;
  }
}
