/* Aegis network landing — conversion layout */

.page-network-landing {
  max-width: 980px;
  padding-top: 0.75rem;
  padding-bottom: 5rem;
}

.page-network-landing .network-top {
  margin-bottom: 0;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* ── Hero ── */

.lp-hero {
  position: relative;
  text-align: center;
  padding: 2.5rem 0 3.5rem;
  overflow: hidden;
}

.lp-hero-glow {
  position: absolute;
  inset: -20% -10% auto;
  height: 70%;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 45% at 50% 0%, rgba(49, 59, 238, 0.28), transparent 70%),
    radial-gradient(ellipse 35% 30% at 80% 20%, rgba(255, 200, 90, 0.08), transparent 65%);
  filter: blur(2px);
}

.lp-eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1.25rem;
  padding: 0.35rem 0.85rem 0.35rem 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #a8adb8;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lp-hero-title {
  position: relative;
  margin: 0 0 1.1rem;
  font-size: clamp(2rem, 6.5vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.lp-hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, #fff 30%, #9aa8ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lp-hero-sub {
  position: relative;
  margin: 0 auto 1.75rem;
  max-width: 34rem;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: #b4b9c4;
}

.lp-hero-cta {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.lp-hero-cta .btn-lg {
  width: min(100%, 22rem);
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.25rem;
  background: transparent;
  border: none;
  color: var(--muted);
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.btn-ghost:hover {
  color: var(--text);
}

.lp-hero-note {
  position: relative;
  margin: 0;
  font-size: 0.8125rem;
  color: #6b7280;
}

/* ── Pain ── */

.lp-pain {
  margin-bottom: 3.5rem;
}

.lp-pain-title {
  margin: 0 0 1.25rem;
  font-size: 1.125rem;
  font-weight: 600;
  text-align: center;
  color: #8b919d;
}

.lp-pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}

.lp-pain-card {
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 90, 90, 0.15);
  border-radius: 14px;
  background: rgba(255, 60, 60, 0.04);
  font-size: 0.875rem;
  line-height: 1.45;
  color: #c8ccd4;
}

.lp-pain-card strong {
  display: block;
  margin-bottom: 0.25rem;
  color: #f0f2f5;
  font-weight: 600;
}

/* ── Split demo ── */

.lp-split {
  margin-bottom: 3.5rem;
  padding: 2rem 1.75rem;
  border: 1px solid rgba(49, 59, 238, 0.2);
  border-radius: 20px;
  background: linear-gradient(
    165deg,
    rgba(49, 59, 238, 0.1) 0%,
    rgba(255, 255, 255, 0.02) 50%,
    rgba(0, 0, 0, 0.2) 100%
  );
}

.lp-split-head {
  margin: 0 0 0.35rem;
  font-size: clamp(1.25rem, 3vw, 1.625rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-align: center;
}

.lp-split-lead {
  margin: 0 0 1.75rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.5;
}

.lp-split-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.lp-split-col {
  padding: 1.15rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.25);
}

.lp-split-col--vpn {
  border-color: rgba(49, 59, 238, 0.35);
  background: rgba(49, 59, 238, 0.08);
}

.lp-split-col--direct {
  border-color: rgba(110, 231, 160, 0.25);
  background: rgba(110, 231, 160, 0.05);
}

.lp-split-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.85rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lp-split-col--vpn .lp-split-label {
  color: #9aa8ff;
}

.lp-split-col--direct .lp-split-label {
  color: #6ee7a0;
}

.lp-split-label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.lp-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.lp-pill {
  padding: 0.35rem 0.65rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text);
}

.lp-split-foot {
  margin: 1.25rem 0 0;
  text-align: center;
  font-size: 0.8125rem;
  color: #6b7280;
}

/* ── Numbers strip ── */

.lp-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 3.5rem;
}

.lp-stat {
  text-align: center;
  padding: 1.1rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
}

.lp-stat-val {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
}

.lp-stat-val span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
}

.lp-stat-label {
  font-size: 0.75rem;
  line-height: 1.4;
  color: var(--muted);
}

/* ── Pricing ── */

.lp-pricing {
  margin-bottom: 3.5rem;
}

.lp-pricing-head {
  text-align: center;
  margin-bottom: 1.75rem;
}

.lp-pricing-head h2 {
  margin: 0 0 0.4rem;
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.lp-pricing-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9375rem;
}

.lp-pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 1rem;
  align-items: stretch;
}

.lp-plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.35rem 1.35rem;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
}

.lp-plan--hero {
  border-color: rgba(255, 205, 110, 0.5);
  background: linear-gradient(
    165deg,
    rgba(255, 210, 110, 0.1) 0%,
    rgba(255, 255, 255, 0.03) 40%,
    rgba(0, 0, 0, 0.15) 100%
  );
  box-shadow:
    0 0 0 1px rgba(255, 210, 110, 0.1),
    0 24px 48px rgba(0, 0, 0, 0.35);
}

.lp-plan-badge {
  position: absolute;
  top: -0.6rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.22rem 0.7rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffe08a, #ffb830);
  color: #1a1200;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.lp-plan-name {
  margin: 0.25rem 0 0.15rem;
  font-size: 1.125rem;
  font-weight: 600;
}

.lp-plan--hero .lp-plan-name {
  font-size: 1.375rem;
}

.lp-plan-pitch {
  margin: 0 0 1.15rem;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--muted);
  min-height: 2.4rem;
}

.lp-plan-price {
  margin: 0 0 0.15rem;
  font-size: 0.8125rem;
  color: var(--muted);
}

.lp-plan-price strong {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
}

.lp-plan-daily {
  margin: 0 0 1.15rem;
  font-size: 0.75rem;
  color: #6ee7a0;
  font-weight: 500;
}

.lp-plan-list {
  margin: 0 0 1.35rem;
  padding: 0;
  list-style: none;
  flex: 1;
}

.lp-plan-list li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.35rem;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: #b4b9c4;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.lp-plan-list li:last-child {
  border-bottom: none;
}

.lp-plan-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.8rem;
  height: 0.8rem;
  background-color: #6ee7a0;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
}

.lp-plan-list li.is-muted {
  color: #6b7280;
}

.lp-plan-list li.is-muted::before {
  background-color: #4b5563;
}

.lp-plan-btn {
  width: 100%;
  text-align: center;
  margin-top: auto;
  padding-top: 0.95rem;
  padding-bottom: 0.95rem;
}

.lp-plan-guarantee {
  margin: 0.65rem 0 0;
  text-align: center;
  font-size: 0.6875rem;
  color: #6b7280;
}

/* ── Steps ── */

.lp-steps {
  margin-bottom: 3.5rem;
}

.lp-steps-title {
  margin: 0 0 1.25rem;
  font-size: 1.25rem;
  font-weight: 600;
  text-align: center;
}

.lp-steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  counter-reset: lp-step;
}

.lp-step {
  position: relative;
  padding: 1.15rem 1rem 1rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
}

.lp-step::before {
  counter-increment: lp-step;
  content: counter(lp-step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.65rem;
  height: 1.65rem;
  margin-bottom: 0.65rem;
  border-radius: 50%;
  background: rgba(49, 59, 238, 0.25);
  color: #b8bcff;
  font-size: 0.75rem;
  font-weight: 700;
}

.lp-step strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
}

.lp-step p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--muted);
}

.lp-step-time {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.15rem 0.45rem;
  border-radius: 6px;
  background: rgba(110, 231, 160, 0.12);
  color: #6ee7a0;
  font-size: 0.6875rem;
  font-weight: 600;
}

/* ── FAQ ── */

.lp-faq {
  margin-bottom: 3rem;
}

.lp-faq-title {
  margin: 0 0 1rem;
  font-size: 1.25rem;
  font-weight: 600;
  text-align: center;
}

.lp-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.lp-faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

.lp-faq-item summary {
  padding: 0.95rem 1.1rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.lp-faq-item summary::-webkit-details-marker {
  display: none;
}

.lp-faq-item summary::after {
  content: "+";
  float: right;
  color: var(--muted);
  font-weight: 400;
}

.lp-faq-item[open] summary::after {
  content: "−";
}

.lp-faq-item p {
  margin: 0;
  padding: 0 1.1rem 1.25rem;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--muted);
}

/* ── Final CTA ── */

.lp-close {
  position: relative;
  text-align: center;
  padding: 2.5rem 1.75rem;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(49, 59, 238, 0.3);
  background: linear-gradient(
    160deg,
    rgba(49, 59, 238, 0.18) 0%,
    rgba(255, 255, 255, 0.02) 55%,
    rgba(0, 0, 0, 0.2) 100%
  );
}

.lp-close-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 60% 80% at 50% 120%, rgba(49, 59, 238, 0.25), transparent 65%);
}

.lp-close h2 {
  position: relative;
  margin: 0 0 0.5rem;
  font-size: clamp(1.375rem, 3.5vw, 1.875rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.lp-close > p {
  position: relative;
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 0.9375rem;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

.lp-close-cta {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}

.lp-close-cta .btn-lg {
  width: min(100%, 22rem);
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
}

/* ── Sticky mobile bar ── */

.lp-sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: none;
  padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom, 0));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(11, 13, 16, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.lp-sticky-inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.5rem;
  max-width: 980px;
  margin: 0 auto;
}

.lp-sticky-text {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.2;
  color: #b4b9c4;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lp-sticky-btn {
  width: 100%;
  text-align: center;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
}

/* ── Responsive ── */

@media (max-width: 768px) {
  .lp-pain-grid,
  .lp-stats,
  .lp-split-cols,
  .lp-steps-row {
    grid-template-columns: 1fr;
  }

  .lp-pricing-grid {
    grid-template-columns: 1fr;
  }

  .lp-plan--hero {
    order: -1;
  }

  .lp-sticky {
    display: block;
  }

  .page-network-landing {
    padding-bottom: 5.5rem;
  }
}

@media (max-width: 480px) {
  .lp-hero {
    padding-top: 1.5rem;
    padding-bottom: 2.5rem;
  }

  .lp-split {
    padding: 1.35rem 1.1rem;
  }
}

/* Login overlay on landing */
.page-network-landing .network-login-card {
  max-width: 420px;
  margin: 0.5rem auto 0;
  padding: 1.35rem 1.4rem 1.5rem;
  border-radius: 18px;
  border-color: rgba(49, 59, 238, 0.22);
  background: linear-gradient(
    165deg,
    rgba(49, 59, 238, 0.1) 0%,
    rgba(255, 255, 255, 0.03) 40%,
    rgba(0, 0, 0, 0.18) 100%
  );
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.page-network-landing .network-login-title {
  margin: 0 0 0.35rem;
  font-size: 1.25rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: -0.02em;
}

.page-network-landing .auth-hint {
  margin-bottom: 1.15rem;
  line-height: 1.45;
}

.page-network-landing .consent-label {
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.18);
  font-size: 0.75rem;
  line-height: 1.4;
}

.page-network-landing .consent-label input {
  margin-top: 0.15rem;
  width: 1rem;
  height: 1rem;
  accent-color: var(--accent);
}

.page-network-landing #magic-btn,
.page-network-landing #magic-verify-btn {
  width: 100%;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
  font-size: 0.9375rem;
  font-weight: 600;
}

.page-network-landing .auth-alt-link {
  margin-top: 0.85rem;
  font-size: 0.8125rem;
}
