/* Landing page styles.
   Scoped via body.v2 to avoid impacting other production pages. */

body.v2 {
  background: #0b1020;
  color: rgba(255, 255, 255, 0.92);
}

.v2-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.v2-container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

/* Nav */
.v2-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 16, 32, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.v2-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.v2-brand__logo {
  height: 44px;
  width: auto;
}

.v2-nav__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.v2-link {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.v2-link:hover {
  color: #fff;
}

/* Buttons */
.v2-btn {
  border: 0;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.2px;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
  user-select: none;
}

.v2-btn--primary {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #04110a;
  box-shadow: 0 16px 40px rgba(34, 197, 94, 0.22);
}

.v2-btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 55px rgba(34, 197, 94, 0.28);
}

.v2-btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
}

.v2-btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}

.v2-btn--full {
  width: 100%;
}

.v2-btn__arrow {
  font-weight: 900;
}

/* Typography */
.v2-h1 {
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  margin: 14px 0 12px;
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.55);
}

.v2-h2 {
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 22px;
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
}

.v2-h3 {
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 16px;
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.92);
}

.v2-lead {
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 18px;
}

.v2-lead--sm {
  max-width: 680px;
}

.v2-muted {
  color: rgba(255, 255, 255, 0.68);
}

.v2-small {
  font-size: 12px;
}

/* Badge */
.v2-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
  font-size: 13px;
}

.v2-badge__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.12);
}

/* Hero */
.v2-hero {
  position: relative;
  padding: 52px 0 28px;
  overflow: hidden;
}

.v2-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.v2-hero__grid {
  position: absolute;
  inset: -40% -30%;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  transform: perspective(900px) rotateX(64deg);
  transform-origin: center;
  opacity: 0.14;
}

.v2-hero__glow {
  position: absolute;
  width: 580px;
  height: 580px;
  filter: blur(72px);
  opacity: 0.55;
}

.v2-hero__glow--a {
  top: -240px;
  left: -140px;
  background: radial-gradient(circle at 30% 30%, rgba(34, 197, 94, 0.65), transparent 62%);
}

.v2-hero__glow--b {
  bottom: -280px;
  right: -200px;
  background: radial-gradient(circle at 30% 30%, rgba(59, 130, 246, 0.55), transparent 62%);
}

.v2-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 22px;
  align-items: start;
}

.v2-hero__copy {
  padding-top: 10px;
}

/* Role toggle */
.v2-role-toggle {
  display: inline-flex;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  margin: 10px 0 14px;
}

.v2-role-toggle__btn {
  border: 0;
  cursor: pointer;
  background: transparent;
  color: rgba(255,255,255,0.75);
  font-weight: 800;
  font-size: 13px;
  padding: 10px 14px;
  border-radius: 999px;
  transition: background 140ms ease, color 140ms ease;
}

.v2-role-toggle__btn.is-active {
  background: rgba(34, 197, 94, 0.18);
  color: rgba(255,255,255,0.95);
  box-shadow: inset 0 0 0 1px rgba(34, 197, 94, 0.25);
}

/* Quick form */
.v2-quick {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin: 0 0 6px;
}

.v2-quick input {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.92);
  outline: none;
}

.v2-quick input:focus {
  border-color: rgba(34, 197, 94, 0.45);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.12);
}

.v2-status {
  min-height: 18px;
  margin: 6px 0 0;
  font-weight: 700;
  font-size: 13px;
}

.v2-status.is-success { color: rgba(34, 197, 94, 0.95); }
.v2-status.is-error { color: rgba(248, 113, 113, 0.95); }
.v2-status.is-info { color: rgba(255, 255, 255, 0.75); }

/* Mini trust items */
.v2-mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.v2-mini__item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 16px;
  padding: 12px 12px;
}

.v2-mini__item strong {
  display: block;
  color: rgba(255, 255, 255, 0.95);
  font-size: 13px;
}

.v2-mini__item span {
  display: block;
  color: rgba(255, 255, 255, 0.70);
  font-size: 12px;
  margin-top: 4px;
}

/* Cards */
.v2-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
}

.v2-card__top,
.v2-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.v2-card__bottom {
  margin-top: 14px;
}

.v2-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(34, 197, 94, 0.14);
  border: 1px solid rgba(34, 197, 94, 0.22);
}

/* Simulator */
.v2-sim__form {
  margin-top: 12px;
}

.v2-label {
  display: block;
  font-weight: 800;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.80);
  margin: 10px 0 6px;
}

.v2-sim input,
.v2-form input,
.v2-form select,
.v2-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.92);
  outline: none;
}

.v2-sim input:focus,
.v2-form input:focus,
.v2-form select:focus,
.v2-form textarea:focus {
  border-color: rgba(59, 130, 246, 0.45);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.14);
}

.v2-sim__results {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.v2-sim__metric {
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  padding: 12px;
}

.v2-sim__metric--wide {
  grid-column: 1 / -1;
}

.v2-sim__metric-label {
  font-size: 12px;
  font-weight: 800;
  color: rgba(255,255,255,0.70);
}

.v2-sim__metric-value {
  font-size: 20px;
  font-weight: 900;
  margin-top: 6px;
}

.v2-sim__metric-value--small {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
}

/* Sections */
.v2-section {
  padding: 54px 0;
}

.v2-section__head {
  margin-bottom: 18px;
}

.v2-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.v2-step {
  border-radius: 18px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.v2-step__icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(34, 197, 94, 0.16);
  border: 1px solid rgba(34, 197, 94, 0.22);
  margin-bottom: 10px;
}

.v2-step__icon i {
  color: rgba(255, 255, 255, 0.90);
}

.v2-section--dark {
  background: rgba(255,255,255,0.03);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.v2-proof {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.v2-proof__card {
  border-radius: 20px;
  padding: 18px;
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.10);
}

.v2-proof__kicker {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.3px;
  color: rgba(34, 197, 94, 0.95);
  margin-bottom: 6px;
}

.v2-list {
  margin: 10px 0 0;
  padding: 0 0 0 18px;
  color: rgba(255,255,255,0.78);
}

.v2-list li {
  margin: 8px 0;
}

/* Join section layout */
.v2-join {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  align-items: start;
}

.v2-perks {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.v2-perk {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
}

.v2-perk i {
  margin-top: 3px;
  color: rgba(34, 197, 94, 0.95);
}

.v2-perk strong {
  display: block;
  font-size: 13px;
}

.v2-perk span {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.70);
  margin-top: 4px;
}

.v2-formcard__head {
  margin-bottom: 10px;
}

.v2-form__row {
  margin-top: 12px;
}

.v2-form__row--2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.v2-details {
  margin-top: 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
}

.v2-details summary {
  cursor: pointer;
  list-style: none;
  padding: 12px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 900;
  font-size: 13px;
  color: rgba(255,255,255,0.88);
}

.v2-details summary::-webkit-details-marker { display: none; }

.v2-details__body {
  padding: 0 12px 12px;
}

.v2-check {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 12px;
  color: rgba(255,255,255,0.75);
  font-weight: 700;
  font-size: 13px;
}

.v2-check input {
  width: 18px;
  height: 18px;
}

.v2-legal a {
  color: rgba(255,255,255,0.85);
  text-decoration: underline;
}

.v2-share {
  margin-top: 18px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.16);
}

.v2-share__title {
  font-weight: 900;
  margin-bottom: 10px;
}

.v2-share__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.v2-share__input {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.86);
}

/* FAQ */
.v2-faq {
  display: grid;
  gap: 10px;
}

.v2-faq__item {
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  padding: 12px 14px;
}

.v2-faq__item summary {
  cursor: pointer;
  font-weight: 900;
}

/* Footer */
.v2-footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
}

.v2-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.v2-footer__logo {
  height: 34px;
  width: auto;
}

/* Responsive */
@media (max-width: 980px) {
  .v2-hero__inner {
    grid-template-columns: 1fr;
  }
  .v2-mini {
    grid-template-columns: 1fr;
  }
  .v2-steps {
    grid-template-columns: 1fr;
  }
  .v2-proof {
    grid-template-columns: 1fr;
  }
  .v2-join {
    grid-template-columns: 1fr;
  }
  .v2-form__row--2 {
    grid-template-columns: 1fr;
  }
  .v2-nav__actions .v2-link {
    display: none;
  }
}


