:root {
  --primary: #A3E635;
  --primary-hover: #84CC16;
  --bg: #050B14;
  --surface: #0B1322;
  --surface-2: #0E1A2F;
  --text: #E5E7EB;
  --text-muted: #9AA4B2;
  --border: #1B2A45;
  --error: #EF4444;
  --success: #22C55E;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  background: radial-gradient(900px 420px at 15% 0%, rgba(163,230,53,0.12), rgba(5,11,20,0) 62%),
    radial-gradient(700px 380px at 90% 20%, rgba(79,70,229,0.18), rgba(5,11,20,0) 60%),
    var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.hidden { display: none !important; }
.w-full { width: 100%; }

.portalMode .nav-main {
  display: none;
}

.portalMode .os-toggle {
  display: none;
}

.portalMode #marketingSections,
.portalMode #marketingFooter {
  display: none;
}

.portalMode .auth-back {
  display: none;
}

/* Navbar */
#navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: rgba(5, 11, 20, 0.65);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 50;
}

.logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.5px;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.logoImg {
  width: 28px;
  height: 28px;
  display: block;
  object-fit: contain;
}

.logoText {
  color: var(--primary);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.875rem;
  flex: 1;
  margin-left: 2rem;
}

.nav-links .nav-anchor {
  background: transparent;
  border: none;
  padding: 0.5rem 0.25rem;
  color: var(--text-muted);
  font-weight: 600;
  cursor: pointer;
}

.nav-links .nav-anchor:hover {
  color: var(--text);
}

.nav-links .nav-spacer {
  width: 1px;
  height: 22px;
  background: var(--border);
  margin: 0 0.25rem;
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-user {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.02);
}

.nav-user-avatar {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  display: block;
}

.nav-user-meta {
  display: grid;
  gap: 0.05rem;
  line-height: 1.1;
}

.nav-user-name {
  font-weight: 900;
  font-size: 0.9rem;
  letter-spacing: -0.01em;
  color: rgba(229,231,235,0.96);
  max-width: 160px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-user-plan {
  font-size: 0.78rem;
  font-weight: 800;
  color: rgba(229,231,235,0.62);
  max-width: 160px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.os-toggle {
  display: inline-flex;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  padding: 0.25rem;
  gap: 0.25rem;
}

.os-btn {
  appearance: none;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  cursor: pointer;
}

.os-btn.active {
  background: rgba(255,255,255,0.08);
  color: var(--text);
}

.nav-menu-btn {
  display: none;
  appearance: none;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  border-radius: 10px;
  padding: 0.55rem 0.75rem;
  font-weight: 900;
  cursor: pointer;
}

.nav-menu-btn:hover {
  background: rgba(255,255,255,0.06);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
}

.mobile-menu-panel {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: min(360px, 92vw);
  z-index: 1;
  background: rgba(11, 19, 34, 0.98);
  border-left: 1px solid var(--border);
  box-shadow: -24px 0 80px rgba(0,0,0,0.65);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(0,0,0,0.55);
}

.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-menu-title {
  font-weight: 900;
  letter-spacing: -0.01em;
}

.mobile-menu-close {
  appearance: none;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  border-radius: 10px;
  padding: 0.45rem 0.65rem;
  cursor: pointer;
}

.mobile-menu-links {
  display: grid;
  gap: 0.25rem;
}

.mobile-menu-link {
  appearance: none;
  background: transparent;
  border: 1px solid transparent;
  color: var(--text);
  text-align: left;
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  font-weight: 800;
  cursor: pointer;
}

.mobile-menu-link:hover {
  border-color: var(--border);
  background: rgba(255,255,255,0.03);
}

.mobile-menu-actions {
  display: grid;
  gap: 0.75rem;
  margin-top: auto;
}

@media (max-width: 900px) {
  #navbar {
    padding: 0.9rem 1rem;
  }

  .nav-links {
    margin-left: 0.75rem;
    justify-content: flex-end;
  }

  .nav-main,
  .nav-actions {
    display: none;
  }

  .nav-menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 520px) {
  .logo {
    font-size: 1.1rem;
  }
}

/* Container */
#app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.view {
  flex: 1;
  padding: 3rem 1rem;
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
}

@media (max-width: 600px) {
  .view {
    padding: 2rem 0.85rem;
  }

  .card {
    padding: 1.5rem;
  }

  .profile-row {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--surface);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(0,0,0,0.30);
}

.card-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.panel {
  background: rgba(11, 19, 34, 0.62);
  border-radius: 14px;
  padding: 2rem;
  border: 1px solid var(--border);
}

.panel-title {
  font-size: 1.125rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.account-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .account-grid {
    grid-template-columns: 1fr;
  }
}

.profile-row {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 1.25rem;
  align-items: start;
}

.avatar-wrap {
  width: 92px;
  height: 92px;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.06);
}

.avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.profile-fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.sub-details {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.sub-line {
  font-size: 0.95rem;
}

.sub-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

@media (max-width: 520px) {
  .sub-actions {
    grid-template-columns: 1fr;
  }
}

/* Auth */
.authShell {
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
}

.authGrid {
  display: grid;
  grid-template-columns: 1fr min(420px, 100%);
  gap: 2rem;
  align-items: start;
}

@media (max-width: 900px) {
  .authGrid {
    grid-template-columns: 1fr;
  }
}

.authAside {
  padding: 1rem 0;
}

.authAsideTop {
  display: grid;
  gap: 1rem;
  max-width: 520px;
}

.authAsideMeta {
  color: rgba(229,231,235,0.86);
  font-weight: 700;
}

.authAsideList {
  display: grid;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.authAsideItem {
  padding-left: 1.25rem;
  position: relative;
  font-weight: 700;
  color: rgba(229,231,235,0.92);
}

.authAsideItem::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: rgba(163,230,53,0.9);
  font-weight: 900;
}

.authMain {
  display: flex;
  justify-content: flex-end;
}

.authPanel {
  width: 100%;
  padding: 2.5rem;
  background: rgba(11, 19, 34, 0.88);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 22px 70px rgba(0,0,0,0.55);
}

.portalNotice {
  margin-bottom: 1rem;
  padding: 0.6rem 0.75rem;
  border: 1px solid rgba(163, 230, 53, 0.22);
  background: rgba(163, 230, 53, 0.08);
  color: var(--text);
  border-radius: 10px;
  font-size: 0.9rem;
}

.authBrand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.authMark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
  padding: 8px;
}

.authMarkImg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.authBrandText {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.authBrandName {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
}

.authBrandCaption {
  margin-top: 2px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.portalBottomFooter {
  margin: 2.25rem auto 2.5rem;
  padding: 0 1rem;
  text-align: center;
  color: rgba(229, 231, 235, 0.55);
  font-size: 0.85rem;
}

.portalBottomFooterLinks {
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.4rem;
}

.portalBottomFooterLinks a {
  color: rgba(229, 231, 235, 0.72);
  text-decoration: none;
  font-weight: 700;
}

.portalBottomFooterLinks a:hover {
  color: rgba(229, 231, 235, 0.92);
}

.auth-back {
  appearance: none;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  margin-bottom: 1.25rem;
}

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

.authPanel h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.text-muted {
  color: var(--text-muted);
}

.authPanel .text-muted {
  margin-bottom: 2rem;
}

.input-group {
  margin-bottom: 1.25rem;
}

.input-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.input-group input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: rgba(255,255,255,0.03);
  color: var(--text);
}

.input-group input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.875rem;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}

.btn-primary {
  background-color: var(--primary);
  color: #06110A;
}

.btn-primary:hover {
  background-color: var(--primary-hover);
}

.btn-secondary {
  background-color: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  color: var(--text);
}

.btn-secondary:hover {
  background-color: rgba(255,255,255,0.06);
}

.btn-plan {
  background-color: rgba(255,255,255,0.06);
  color: var(--text);
  margin-top: auto;
}

.btn-plan:hover {
  background-color: rgba(255,255,255,0.10);
}

.btn-hero {
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.9rem 1.15rem;
  box-shadow: 0 18px 55px rgba(0,0,0,0.45);
}

.btn-primary.btn-hero {
  box-shadow: 0 18px 55px rgba(163,230,53,0.16), 0 18px 55px rgba(0,0,0,0.35);
}

.error-msg {
  color: var(--error);
  font-size: 0.875rem;
  margin-bottom: 1rem;
  text-align: center;
  min-height: 1.25rem;
}

.auth-toggle {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.875rem;
}

.auth-toggle a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

/* Dashboard Plans */
.dashboard-header {
  margin-bottom: 3rem;
}

.plansShell {
  max-width: 1100px;
  margin: 0 auto 3rem auto;
}

.plansHeader {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.planTable {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(11, 19, 34, 0.55);
  overflow: hidden;
}

.planRow {
  display: grid;
  grid-template-columns: 1fr min(220px, 34%);
  gap: 1.25rem;
  padding: 1.35rem 1.35rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.planRow:first-child {
  border-top: none;
}

@media (max-width: 720px) {
  .planRow {
    grid-template-columns: 1fr;
  }
}

.planRowMain {
  display: grid;
  gap: 0.45rem;
}

.planRowAction {
  display: flex;
  align-items: center;
}

@media (max-width: 720px) {
  .planRowAction {
    justify-content: flex-start;
  }
}

.planName {
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: 1.05rem;
}

.planMeta {
  color: rgba(229,231,235,0.88);
  font-weight: 800;
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.planMetaSep {
  color: rgba(229,231,235,0.35);
  font-weight: 800;
}

.planDesc {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.planNote {
  color: rgba(229,231,235,0.65);
  font-size: 0.85rem;
}

.planIncludes {
  color: rgba(229,231,235,0.82);
  font-weight: 700;
  font-size: 0.9rem;
}

.planRowFeatured {
  background: linear-gradient(90deg, rgba(163,230,53,0.08), rgba(11, 19, 34, 0.0) 55%);
}

.planRowService {
  background: rgba(255,255,255,0.02);
}

.planRow.is-current {
  outline: 2px solid rgba(163, 230, 53, 0.25);
  outline-offset: -2px;
}

.planRow.is-current .btn {
  cursor: default;
  opacity: 0.92;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(163,230,53,0.25);
  background: rgba(163,230,53,0.08);
  color: rgba(163,230,53,0.95);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.dashboard-header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.hero {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 2rem;
  align-items: center;
  margin: 0 auto 2.25rem auto;
  max-width: 1100px;
  text-align: left;
}

.hero.hero-solo {
  grid-template-columns: 1fr;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.hero-title {
  font-size: 3.15rem;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 2.35rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-media {
    min-height: 220px;
  }
}

.hero-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-top: 0.75rem;
}

.hero-ctas {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.clarity-strip {
  max-width: 1100px;
  margin: 0 auto 1.2rem auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 0.85rem;
  border-radius: 16px;
  border: 1px solid rgba(163,230,53,0.18);
  background: radial-gradient(900px 220px at 20% 0%, rgba(163,230,53,0.14), rgba(255,255,255,0.0) 55%),
    rgba(255,255,255,0.018);
}

.clarity-item {
  background: rgba(11, 19, 34, 0.75);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  font-weight: 900;
  text-align: center;
}

@media (max-width: 900px) {
  .clarity-strip {
    grid-template-columns: 1fr;
  }
}

.trust-strip {
  max-width: 1100px;
  margin: 0 auto 2.25rem auto;
  text-align: center;
  font-weight: 900;
  color: rgba(229,231,235,0.86);
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(11, 19, 34, 0.55);
}

.hero-bullets {
  margin-top: 1rem;
  display: grid;
  gap: 0.45rem;
  color: rgba(229,231,235,0.88);
  font-weight: 700;
  list-style: none;
  padding-left: 0;
}

.hero-bullets li {
  padding-left: 1.2rem;
  position: relative;
}

.hero-bullets li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: rgba(163,230,53,0.85);
  font-weight: 900;
}

.hero-meta {
  margin-top: 0.75rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.hero-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

.badge-chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(163,230,53,0.22);
  background: rgba(163,230,53,0.06);
  color: rgba(163,230,53,0.92);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
}

@media (max-width: 900px) {
  .hero-ctas {
    justify-content: center;
  }
}

.hero-media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 22px 70px rgba(0,0,0,0.55);
  background: #111827;
  min-height: 280px;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.02);
}

.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(800px 280px at 30% 20%, rgba(163,230,53,0.22), rgba(0,0,0,0) 70%),
    linear-gradient(to top, rgba(17,24,39,0.78), rgba(17,24,39,0.0) 55%);
}

.hero-stats {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  z-index: 1;
}

@media (max-width: 900px) {
  .hero-stats {
    grid-template-columns: 1fr;
  }
}

.stat {
  border-radius: 12px;
  padding: 0.75rem 0.85rem;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
}

.stat-k {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.78);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.stat-v {
  margin-top: 0.2rem;
  color: white;
  font-weight: 700;
}

.section {
  margin: 3.5rem auto 0 auto;
  max-width: 1100px;
  background: rgba(255,255,255,0.018);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  padding: 2rem;
  scroll-margin-top: 96px;
}

.section-title {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  max-width: 62ch;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

@media (max-width: 900px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

.benefit-card {
  background: rgba(11, 19, 34, 0.75);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem;
}

.benefit-title {
  font-weight: 900;
  margin-bottom: 0.35rem;
}

.benefit-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.preview-media {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 22px 70px rgba(0,0,0,0.55);
  background: #0b1322;
}

.preview-svg {
  width: 100%;
  height: auto;
  display: block;
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

@media (max-width: 1100px) {
  .diff-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .diff-grid {
    grid-template-columns: 1fr;
  }
}

.diff-card {
  background: rgba(11, 19, 34, 0.75);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem;
}

.diff-title {
  font-weight: 900;
  margin-bottom: 0.35rem;
}

.diff-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
}

@media (max-width: 600px) {
  .section {
    padding: 1.25rem;
    scroll-margin-top: 84px;
  }
}

#pricing.section {
  border-color: rgba(163,230,53,0.18);
  background: radial-gradient(950px 240px at 20% 0%, rgba(163,230,53,0.12), rgba(255,255,255,0.0) 55%),
    rgba(255,255,255,0.018);
}

.pricing-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.35rem 0 0.75rem 0;
}

.pricing-point {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(163,230,53,0.18);
  background: rgba(163,230,53,0.06);
  color: rgba(163,230,53,0.92);
  font-weight: 800;
  font-size: 0.82rem;
  padding: 0.25rem 0.65rem;
}

.plan-for {
  margin-top: -0.35rem;
  margin-bottom: 0.65rem;
  color: rgba(163,230,53,0.92);
  font-weight: 900;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

@media (max-width: 900px) {
  .compare-grid {
    grid-template-columns: 1fr;
  }
}

.compare-card {
  background: rgba(11, 19, 34, 0.75);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem;
}

.compare-card-primary {
  border-color: rgba(163,230,53,0.55);
  box-shadow: 0 18px 60px rgba(163,230,53,0.10);
}

.compare-kicker {
  font-weight: 900;
  margin-bottom: 0.6rem;
}

.compare-list {
  list-style: none;
  display: grid;
  gap: 0.45rem;
  color: var(--text-muted);
  padding-left: 0;
}

.compare-list li {
  padding-left: 1.2rem;
  position: relative;
}

.compare-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: rgba(163,230,53,0.72);
  font-weight: 900;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

@media (max-width: 900px) {
  .details-grid {
    grid-template-columns: 1fr;
  }
}

.details-card {
  background: rgba(11, 19, 34, 0.75);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.1rem 1.25rem;
}

.details-card summary {
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

.details-card summary::-webkit-details-marker {
  display: none;
}

.details-card summary::after {
  content: '+';
  float: right;
  color: var(--text-muted);
  font-weight: 900;
}

.details-card[open] summary::after {
  content: '–';
}

.details-body {
  color: var(--text-muted);
  margin-top: 0.75rem;
  font-size: 0.95rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

@media (max-width: 900px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

.feature {
  background: rgba(11, 19, 34, 0.75);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem;
}

.feature h4 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.feature p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

@media (max-width: 900px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

.step {
  background: rgba(11, 19, 34, 0.75);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 0.9rem;
  align-items: start;
}

.step-n {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(163,230,53,0.12);
  color: rgba(163,230,53,0.95);
  border: 1px solid rgba(163,230,53,0.18);
  font-weight: 800;
}

.step-t {
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.step-d {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

@media (max-width: 900px) {
  .security-grid {
    grid-template-columns: 1fr;
  }
}

.security-item {
  background: rgba(11, 19, 34, 0.75);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem;
}

.security-t {
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.security-d {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

@media (max-width: 900px) {
  .resource-grid {
    grid-template-columns: 1fr;
  }
}

.resource-card {
  background: rgba(11, 19, 34, 0.75);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem;
}

.resource-t {
  font-weight: 900;
  margin-bottom: 0.35rem;
}

.resource-d {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.faq {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  background: rgba(11, 19, 34, 0.75);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem 1.25rem;
}

.faq-q {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  user-select: none;
  font-weight: 700;
}

.faq-a {
  color: var(--text-muted);
  margin-top: 0.75rem;
  display: none;
}

.faq-item.open .faq-a {
  display: block;
}

.cta {
  background: radial-gradient(900px 240px at 20% 0%, rgba(163,230,53,0.22), rgba(255,255,255,0.0) 60%),
    linear-gradient(145deg, rgba(163,230,53,0.08), rgba(255,255,255,0.0));
  border: 1px solid rgba(163,230,53,0.18);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 18px 65px rgba(0,0,0,0.45);
}

.cta-title {
  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.cta-subtitle {
  margin-top: 0.5rem;
  color: var(--text-muted);
  font-size: 1rem;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}

.footer {
  margin: 4rem auto 0 auto;
  max-width: 1100px;
  padding: 2rem 0 0 0;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
}

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

.footerSep {
  margin: 0 0.5rem;
  color: rgba(229, 231, 235, 0.35);
}

.billingToggle {
  display: inline-flex;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.25rem;
  gap: 0.25rem;
  margin-top: 1.25rem;
}

.billingToggleBtn {
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
}

.billingToggleBtn.active {
  background: rgba(255,255,255,0.08);
  color: var(--text);
  box-shadow: 0 10px 20px rgba(0,0,0,0.25);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (max-width: 1100px) {
  .plans-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
}

@media (max-width: 700px) {
  .plans-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .plan-card {
    padding: 1.5rem;
  }
}

.plan-card {
  background: rgba(11, 19, 34, 0.78);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 12px 34px rgba(0,0,0,0.38);
  transform: translateY(0);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  animation: fadeUp 0.45s ease both;
}

.plan-card:not(.highlight) {
  opacity: 0.88;
}

.plan-card:nth-child(1) { animation-delay: 0.02s; }
.plan-card:nth-child(2) { animation-delay: 0.06s; }
.plan-card:nth-child(3) { animation-delay: 0.10s; }
.plan-card:nth-child(4) { animation-delay: 0.14s; }

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 60px rgba(0,0,0,0.55);
}

.plan-card.highlight:hover {
  transform: translateY(-8px);
}

.plan-card:hover .badge {
  transform: translateX(-50%) translateY(-1px);
}

.plan-card.highlight {
  border-color: var(--primary);
  box-shadow: 0 24px 90px rgba(163, 230, 53, 0.16);
  background: linear-gradient(180deg, rgba(163,230,53,0.10), rgba(11, 19, 34, 0.78) 42%);
  transform: translateY(-14px) scale(1.045);
  padding: 2.25rem;
  z-index: 1;
}

.cta-urgency {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(11, 19, 34, 0.60);
  padding: 0.35rem 0.65rem;
  font-weight: 900;
  font-size: 0.85rem;
  margin: 0.55rem 0.35rem 0 0;
}

.plan-card-service {
  background: rgba(11, 19, 34, 0.62);
  border-style: dashed;
  opacity: 0.95;
}

.plan-card.is-current {
  border-color: var(--primary);
  outline: 2px solid rgba(163, 230, 53, 0.25);
  outline-offset: 2px;
}

.plan-card.is-current .btn {
  cursor: default;
  opacity: 0.9;
}

.badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #06110A;
  font-size: 0.75rem;
  font-weight: 900;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
}

.plan-header h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.price .priceMain {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.price .priceUnit {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
}

.priceDual {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.subPrice {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.priceRow {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.priceMain {
  font-size: 2.5rem;
  font-weight: 800;
}

.priceUnit {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}

.plan-note {
  color: var(--text-muted);
  font-size: 0.8125rem;
  margin-bottom: 0.75rem;
}

.plan-desc {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  min-height: 40px;
}

.plan-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-top: auto;
}

.lifetime-block {
  background: rgba(11, 19, 34, 0.78);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: 0 12px 34px rgba(0,0,0,0.38);
  max-width: 640px;
  margin: 0 auto 2rem auto;
  text-align: center;
}

.lifetime-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.lifetime-price {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.lifetime-unit {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-left: 0.25rem;
}

.lifetime-desc {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
}

.features {
  list-style: none;
  margin-bottom: 2rem;
  flex: 1;
}

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

.features li {
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text);
}

.features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: bold;
}

.current-plan-banner {
  background: rgba(163,230,53,0.10);
  border: 1px solid rgba(163,230,53,0.28);
  color: rgba(163,230,53,0.95);
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  font-weight: 500;
  margin-bottom: 1rem;
}

.status-msg {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

.wipBanner {
  position: sticky;
  top: 72px;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1rem;
  background: rgba(163,230,53,0.08);
  border-bottom: 1px solid rgba(163,230,53,0.22);
  color: rgba(229,231,235,0.92);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: -0.01em;
}

@media (max-width: 900px) {
  .wipBanner {
    top: 64px;
    font-size: 0.85rem;
  }
}

.adminToolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.tableWrap {
  width: 100%;
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
}

.adminTable {
  width: 100%;
  border-collapse: collapse;
  min-width: 980px;
  background: rgba(11, 19, 34, 0.45);
}

.adminTable th,
.adminTable td {
  padding: 0.8rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.9rem;
}

.adminTable th {
  font-weight: 900;
  color: rgba(229,231,235,0.86);
  background: rgba(5, 11, 20, 0.35);
  position: sticky;
  top: 0;
}

.adminTable td {
  color: rgba(229,231,235,0.9);
}

.select {
  width: 100%;
  appearance: none;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(5, 11, 20, 0.35);
  color: rgba(229,231,235,0.92);
  border-radius: 10px;
  padding: 0.55rem 0.65rem;
  font-weight: 800;
}

.prebetaLanding {
  max-width: 980px;
  margin: 0 auto;
  padding: 2.2rem 0 1.5rem;
}

.prebetaHero {
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(11, 19, 34, 0.62);
  border-radius: 18px;
  padding: 1.8rem;
  box-shadow: 0 18px 70px rgba(0,0,0,0.50);
}

.prebetaHeroTop {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.prebetaTag {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(163,230,53,0.28);
  background: rgba(163,230,53,0.10);
  color: rgba(163,230,53,0.95);
  font-weight: 900;
  font-size: 0.85rem;
}

.prebetaTitle {
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.prebetaSubtitle {
  margin-top: 0.6rem;
  color: rgba(229,231,235,0.74);
  font-weight: 600;
  max-width: 56ch;
}

.prebetaActions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.2rem;
  flex-wrap: wrap;
}

.prebetaDownloads {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.8rem;
  flex-wrap: wrap;
  align-items: center;
}

.prebetaLink {
  color: rgba(229,231,235,0.78);
  font-weight: 800;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(5, 11, 20, 0.20);
  padding: 0.55rem 0.75rem;
  border-radius: 12px;
}

.prebetaLink:hover {
  color: rgba(229,231,235,0.95);
  background: rgba(255,255,255,0.05);
}

.prebetaGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.9rem;
  margin-top: 1rem;
}

.prebetaCard {
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(5, 11, 20, 0.28);
  border-radius: 16px;
  padding: 1rem;
}

.prebetaCardTitle {
  font-weight: 900;
  letter-spacing: -0.01em;
}

.prebetaCardText {
  margin-top: 0.35rem;
  color: rgba(229,231,235,0.70);
  font-weight: 600;
  font-size: 0.92rem;
}

@media (max-width: 900px) {
  .prebetaLanding {
    padding-top: 1.6rem;
  }
  .prebetaGrid {
    grid-template-columns: 1fr;
  }
}

.adminShell {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 1.25rem;
  align-items: start;
}

.adminSidebar {
  position: sticky;
  top: 118px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(11, 19, 34, 0.62);
  border-radius: 18px;
  padding: 1rem;
}

.adminSidebarTitle {
  font-weight: 900;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
  color: rgba(229,231,235,0.85);
}

.adminNavItem {
  width: 100%;
  appearance: none;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(5, 11, 20, 0.25);
  color: rgba(229,231,235,0.88);
  border-radius: 14px;
  padding: 0.75rem 0.85rem;
  font-weight: 900;
  cursor: pointer;
  text-align: left;
  margin-bottom: 0.6rem;
}

.adminNavItem.active {
  border-color: rgba(163,230,53,0.30);
  background: rgba(163,230,53,0.10);
  color: rgba(163,230,53,0.96);
}

.adminMain {
  min-width: 0;
}

.adminTopbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.adminTopbarTitle {
  font-size: 1.15rem;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.adminTopbarSub {
  margin-top: 0.25rem;
  color: rgba(229,231,235,0.66);
  font-weight: 650;
}

.adminStats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.adminStat {
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(11, 19, 34, 0.48);
  border-radius: 16px;
  padding: 1rem 1.05rem;
}

.adminStatLabel {
  color: rgba(229,231,235,0.62);
  font-weight: 800;
  font-size: 0.88rem;
}

.adminStatValue {
  margin-top: 0.2rem;
  font-size: 1.6rem;
  font-weight: 950;
  letter-spacing: -0.03em;
}

.adminPanel {
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(11, 19, 34, 0.62);
  border-radius: 18px;
  padding: 1rem;
}

.adminPanelHead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.adminSearch {
  width: min(520px, 100%);
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(5, 11, 20, 0.25);
  color: rgba(229,231,235,0.92);
  border-radius: 14px;
  padding: 0.75rem 0.9rem;
  font-weight: 800;
}

.adminStatus {
  color: rgba(229,231,235,0.70);
  font-weight: 800;
  font-size: 0.92rem;
  text-align: right;
}

.adminPlaceholder {
  border: 1px dashed rgba(255,255,255,0.12);
  background: rgba(5, 11, 20, 0.20);
  border-radius: 16px;
  padding: 1.25rem;
}

.adminPlaceholderTitle {
  font-weight: 950;
  letter-spacing: -0.02em;
}

.adminPlaceholderText {
  margin-top: 0.4rem;
  color: rgba(229,231,235,0.68);
  font-weight: 650;
}

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

.modalBackdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.60);
}

.modalPanel {
  position: relative;
  width: min(980px, 100%);
  max-height: min(78vh, 820px);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(11, 19, 34, 0.82);
  border-radius: 18px;
  box-shadow: 0 30px 120px rgba(0,0,0,0.70);
  display: flex;
  flex-direction: column;
}

.modalTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1rem 0.85rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.modalTitle {
  font-weight: 950;
  letter-spacing: -0.02em;
}

.modalClose {
  appearance: none;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(5, 11, 20, 0.25);
  color: rgba(229,231,235,0.92);
  border-radius: 12px;
  padding: 0.5rem 0.65rem;
  font-weight: 950;
  cursor: pointer;
}

.modalBody {
  padding: 1rem;
  overflow: auto;
}

.modalText {
  color: rgba(229,231,235,0.78);
  font-weight: 650;
  font-size: 0.98rem;
  line-height: 1.5;
  margin-bottom: 0.9rem;
}

.modalForm {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 0.9rem;
}

.modalActions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.6rem;
  padding-top: 0.9rem;
  margin-top: 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}

.modalMeta {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 0.75rem;
}

.mdPre {
  white-space: pre-wrap;
  word-break: break-word;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.92rem;
  line-height: 1.45;
  color: rgba(229,231,235,0.90);
  background: rgba(5, 11, 20, 0.30);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 1rem;
}

@media (max-width: 1100px) {
  .adminShell {
    grid-template-columns: 1fr;
  }
  .adminSidebar {
    position: static;
  }
  .adminStats {
    grid-template-columns: 1fr;
  }
}
