:root {
  --bg: #07031d;
  --bg-soft: #101f3c;
  --panel: rgba(10, 18, 48, 0.72);
  --panel-strong: rgba(17, 26, 68, 0.92);
  --line: rgba(117, 145, 255, 0.22);
  --text: #eef3ff;
  --muted: #a8b6df;
  --accent: #ff6d70;
  --accent-2: #5f8cff;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 15% 10%, rgba(84, 115, 255, 0.25), transparent 22%),
    radial-gradient(circle at 85% 22%, rgba(255, 95, 118, 0.16), transparent 18%),
    linear-gradient(180deg, #040116 0%, #08122f 42%, #071126 100%);
  color: var(--text);
}

a,
button,
input {
  font: inherit;
}

a,
button {
  color: inherit;
  text-decoration: none;
}

button {
  border: 0;
  background: none;
  cursor: pointer;
}

body.modal-open {
  overflow: hidden;
}

.is-hidden {
  display: none !important;
}

.page-shell {
  overflow: hidden;
}

.topbar,
.hero-section,
.about-section,
.stats-section,
.capabilities-section,
.workflow-section,
.plans-section,
.faq-section,
.site-footer {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 12px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 14px;
  padding: 16px 22px;
  border: 1px solid rgba(135, 160, 255, 0.12);
  border-radius: 18px;
  background: rgba(7, 14, 39, 0.82);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 26px rgba(103, 131, 255, 0.65);
}

.brand-name {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-tag {
  margin: 3px 0 0;
  font-size: 0.72rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.86rem;
  color: #c5d3fb;
}

.topbar-actions,
.account-shell {
  display: flex;
  align-items: center;
  gap: 12px;
}

.topbar-actions {
  margin-left: auto;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.account-shell {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width 0.24s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.ghost-chip,
.credit-chip,
.points-chip,
.account-chip,
.plan-trigger,
.submit-button,
.auth-tab,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease,
    color 0.22s ease;
}

.ghost-chip {
  min-width: 116px;
  padding: 14px 18px;
  border: 1px solid rgba(121, 147, 255, 0.24);
  background: rgba(18, 28, 68, 0.76);
  color: #deebff;
  font-weight: 700;
}

.credit-chip {
  min-width: 158px;
  padding: 14px 18px;
  background: linear-gradient(135deg, rgba(255, 111, 122, 0.92), rgba(90, 133, 255, 0.86));
  color: white;
  font-weight: 700;
  box-shadow: 0 18px 30px rgba(88, 104, 255, 0.28);
}

.points-chip {
  padding: 14px 16px;
  background: linear-gradient(135deg, rgba(255, 111, 122, 0.2), rgba(90, 133, 255, 0.24));
  color: #f4f7ff;
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
}

.account-chip {
  padding: 11px 14px;
  flex-direction: column;
  align-items: flex-start;
  min-width: 170px;
  border: 1px solid rgba(121, 147, 255, 0.24);
  background: rgba(18, 28, 68, 0.76);
  color: #eff3ff;
  text-align: left;
}

.account-chip span {
  font-size: 0.92rem;
  font-weight: 700;
}

.account-chip small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
}

.ghost-chip:hover,
.credit-chip:hover,
.account-chip:hover,
.plan-trigger:hover,
.submit-button:hover,
.btn:hover {
  transform: translateY(-2px);
}

.hero-section {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.92fr;
  gap: 48px;
  align-items: center;
  min-height: 720px;
  padding: 110px 0 90px;
}

.starfield {
  position: absolute;
  inset: 70px -8% 0;
  background:
    radial-gradient(circle at 8% 14%, rgba(255, 111, 122, 0.9) 0 1px, transparent 1.5px),
    radial-gradient(circle at 18% 56%, rgba(95, 140, 255, 0.95) 0 1px, transparent 1.5px),
    radial-gradient(circle at 30% 28%, rgba(61, 216, 181, 0.9) 0 1px, transparent 1.5px),
    radial-gradient(circle at 44% 38%, rgba(255, 111, 122, 0.9) 0 1px, transparent 1.5px),
    radial-gradient(circle at 60% 66%, rgba(95, 140, 255, 0.95) 0 1px, transparent 1.5px),
    radial-gradient(circle at 75% 22%, rgba(61, 216, 181, 0.9) 0 1px, transparent 1.5px),
    radial-gradient(circle at 88% 48%, rgba(255, 111, 122, 0.82) 0 1px, transparent 1.5px);
  opacity: 0.72;
  pointer-events: none;
}

.hero-copy,
.hero-panel,
.rocket {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ff9ea4;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-copy h1,
.section-copy h2,
.section-heading h2 {
  margin: 18px 0 18px;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.hero-copy h1 {
  max-width: 560px;
  font-size: clamp(3.1rem, 6vw, 5.2rem);
}

.hero-copy h1 span {
  color: var(--accent);
}

.hero-text,
.section-copy p,
.section-heading p,
.feature-tile p,
.capability-card p,
.timeline p,
.plan-card li,
.faq-list p,
.footer-note {
  color: var(--muted);
  line-height: 1.9;
}

.hero-text {
  max-width: 540px;
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  min-width: 180px;
  padding: 14px 22px;
  font-weight: 700;
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  box-shadow: 0 18px 28px rgba(94, 111, 255, 0.28);
}

.btn-secondary {
  background: rgba(19, 31, 79, 0.88);
  border-color: rgba(121, 147, 255, 0.26);
  color: #dbe5ff;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
  color: #d4deff;
  font-size: 0.9rem;
}

.hero-panel {
  display: grid;
  gap: 18px;
}

.feature-tile {
  padding: 28px;
  border: 1px solid rgba(123, 148, 255, 0.14);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(14, 23, 63, 0.85), rgba(11, 18, 48, 0.6));
  box-shadow: var(--shadow);
}

.feature-tile h3,
.capability-card h3,
.timeline h3,
.plan-card h3,
.stat-card strong {
  margin: 0 0 10px;
}

.rocket {
  position: absolute;
  left: 40%;
  bottom: 80px;
  width: 94px;
  height: 94px;
  transform: rotate(18deg);
  animation: float 4.8s ease-in-out infinite;
}

.rocket-core {
  position: absolute;
  inset: 0;
  border-radius: 42px 42px 26px 26px;
  background:
    radial-gradient(circle at 50% 28%, rgba(241, 246, 255, 0.95) 0 16%, transparent 17%),
    linear-gradient(180deg, #f4f7ff 0%, #c4c9ff 38%, #6e74ff 100%);
  box-shadow: 0 0 36px rgba(113, 125, 255, 0.45);
}

.rocket-core::before,
.rocket-core::after {
  content: "";
  position: absolute;
  bottom: 14px;
  width: 24px;
  height: 36px;
  border-radius: 8px 8px 18px 18px;
  background: linear-gradient(180deg, #a2b7ff, #596ef8);
}

.rocket-core::before {
  left: -10px;
  transform: rotate(24deg);
}

.rocket-core::after {
  right: -10px;
  transform: rotate(-24deg);
}

.about-section,
.capabilities-section,
.workflow-section,
.plans-section,
.faq-section {
  padding: 80px 0;
}

.about-section {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  align-items: center;
}

.section-copy h2,
.section-heading h2 {
  font-size: clamp(2.2rem, 4vw, 3.7rem);
}

.bullet-list {
  padding: 0;
  margin: 26px 0 34px;
  list-style: none;
}

.bullet-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  color: #dce6ff;
}

.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.orbital-visual {
  position: relative;
  min-height: 480px;
}

.orbital-ring,
.orbital-core {
  position: absolute;
  border-radius: 50%;
}

.ring-one {
  inset: 44px 18%;
  border: 1px solid rgba(255, 129, 146, 0.22);
  transform: rotate(20deg);
}

.ring-two {
  inset: 0 28%;
  border: 1px solid rgba(103, 138, 255, 0.18);
  transform: rotate(-18deg);
}

.orbital-core {
  inset: 27% 26%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 243, 222, 0.9), transparent 22%),
    radial-gradient(circle at 66% 65%, rgba(255, 116, 89, 0.9), transparent 24%),
    linear-gradient(135deg, rgba(255, 183, 118, 0.9), rgba(255, 110, 73, 0.18));
  box-shadow:
    0 0 0 18px rgba(255, 108, 89, 0.08),
    0 40px 80px rgba(0, 0, 0, 0.34);
}

.stats-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 18px 0 72px;
}

.stat-card {
  padding: 28px 24px;
  border: 1px solid rgba(123, 148, 255, 0.14);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(12, 21, 58, 0.84), rgba(12, 18, 44, 0.74));
  text-align: center;
}

.stat-card strong {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
}

.stat-card span {
  font-size: 0.88rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section-heading {
  max-width: 760px;
}

.section-heading.narrow {
  max-width: 560px;
}

.capability-grid,
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 34px;
}

.capability-card,
.plan-card {
  padding: 28px;
  border: 1px solid rgba(127, 150, 255, 0.14);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(15, 22, 59, 0.86), rgba(11, 16, 43, 0.92));
  box-shadow: var(--shadow);
}

.plan-card {
  cursor: pointer;
}

.plan-card:hover,
.plan-card:focus-visible {
  transform: translateY(-4px);
  outline: none;
}

.capability-card a,
.plan-trigger {
  display: inline-flex;
  margin-top: 18px;
  color: #f3f6ff;
  font-weight: 700;
}

.plan-trigger,
.submit-button {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(121, 147, 255, 0.24);
  background: rgba(18, 28, 68, 0.76);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.22);
}

.workflow-section {
  position: relative;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.timeline article {
  padding: 28px;
  border-radius: 24px;
  border: 1px solid rgba(126, 149, 255, 0.14);
  background: rgba(12, 18, 46, 0.78);
}

.timeline span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  font-weight: 800;
}

.plan-name {
  margin: 0 0 18px;
  color: #ffadb4;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.plan-card h3 {
  font-size: 2.6rem;
}

.plan-card h3 span {
  font-size: 1rem;
  color: var(--muted);
}

.plan-points {
  margin: -2px 0 0;
  color: #edf3ff;
  font-weight: 700;
}

.plan-card ul {
  padding-left: 18px;
  margin: 20px 0 0;
}

.plan-card li + li {
  margin-top: 10px;
}

.plan-card.featured {
  border-color: rgba(255, 128, 143, 0.28);
  background:
    linear-gradient(180deg, rgba(24, 32, 79, 0.96), rgba(14, 18, 48, 0.98)),
    linear-gradient(135deg, rgba(255, 112, 128, 0.16), transparent 55%);
  transform: translateY(-8px);
}

.plan-card.featured:hover,
.plan-card.featured:focus-visible {
  transform: translateY(-12px);
}

.modal-layer {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  align-items: center;
  padding: 32px 20px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 18, 0.72);
  backdrop-filter: blur(12px);
}

.modal-card {
  position: relative;
  width: min(1040px, calc(100% - 20px));
  max-height: calc(100vh - 64px);
  margin: 0 auto;
  overflow: auto;
  padding: 28px;
  border: 1px solid rgba(124, 149, 255, 0.16);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(13, 20, 54, 0.96), rgba(8, 14, 38, 0.98)),
    linear-gradient(135deg, rgba(255, 111, 122, 0.08), transparent 48%);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.48);
}

.auth-modal {
  max-width: 560px;
}

.modal-close {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: flex-end;
  width: 100%;
  color: #cfdcff;
  font-weight: 700;
}

.modal-copy h2,
.checkout-summary h2 {
  margin: 18px 0 12px;
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.modal-copy p,
.checkout-summary p {
  color: var(--muted);
  line-height: 1.8;
}

.auth-switcher {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
  margin-top: 18px;
  padding: 8px;
  border: 1px solid rgba(121, 147, 255, 0.18);
  border-radius: 18px;
  background: rgba(14, 22, 56, 0.84);
}

.auth-tab {
  padding: 12px 16px;
  color: #b8c6ea;
  font-weight: 700;
}

.auth-tab.is-active {
  background: linear-gradient(135deg, rgba(255, 111, 122, 0.18), rgba(90, 133, 255, 0.18));
  color: #fff4f5;
  box-shadow: inset 0 0 0 1px rgba(255, 132, 146, 0.1);
}

.auth-form,
.checkout-form {
  margin-top: 22px;
}

.checkout-layout,
.field-grid {
  display: grid;
  gap: 18px;
}

.checkout-layout {
  grid-template-columns: 0.88fr 1.12fr;
  align-items: start;
  gap: 26px;
}

.field-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.field-wide {
  grid-column: 1 / -1;
}

.field span {
  color: #dce6ff;
  font-size: 0.84rem;
  font-weight: 700;
}

.field input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(121, 147, 255, 0.22);
  border-radius: 16px;
  background: rgba(8, 15, 40, 0.9);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input::placeholder {
  color: #8090bb;
}

.field input:focus {
  border-color: rgba(110, 146, 255, 0.65);
  box-shadow: 0 0 0 4px rgba(95, 140, 255, 0.12);
}

.submit-button {
  margin-top: 18px;
  background: linear-gradient(135deg, rgba(255, 111, 122, 0.94), rgba(90, 133, 255, 0.88));
  color: white;
  font-weight: 700;
}

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.75;
}

.checkbox-field input {
  margin-top: 4px;
}

.form-message {
  min-height: 24px;
  margin: 14px 0 0;
  font-size: 0.92rem;
  font-weight: 700;
}

.form-message.is-error {
  color: #ff9aa4;
}

.form-message.is-success {
  color: #78f0c4;
}

.summary-card {
  display: grid;
  gap: 16px;
  margin-top: 22px;
  padding: 22px;
  border: 1px solid rgba(121, 147, 255, 0.18);
  border-radius: 22px;
  background: rgba(8, 15, 40, 0.84);
}

.summary-card span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.summary-card strong {
  display: block;
  margin-top: 6px;
  color: #f5f8ff;
  font-size: 1.04rem;
}

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.faq-list details {
  padding: 22px 24px;
  border: 1px solid rgba(126, 149, 255, 0.14);
  border-radius: 20px;
  background: rgba(12, 18, 46, 0.82);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

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

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 36px 0 46px;
  border-top: 1px solid rgba(124, 149, 255, 0.12);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: #d7e2ff;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(18deg);
  }
  50% {
    transform: translateY(-16px) rotate(12deg);
  }
}

@media (max-width: 1080px) {
  .hero-section,
  .about-section,
  .capability-grid,
  .plans-grid,
  .timeline,
  .stats-section,
  .checkout-layout {
    grid-template-columns: 1fr 1fr;
  }

  .hero-section,
  .about-section {
    gap: 30px;
  }
}

@media (max-width: 800px) {
  .topbar,
  .nav-links,
  .topbar-actions,
  .account-shell,
  .hero-section,
  .about-section,
  .stats-section,
  .capability-grid,
  .plans-grid,
  .timeline,
  .checkout-layout,
  .field-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .topbar,
  .site-footer,
  .hero-actions,
  .topbar-actions,
  .account-shell {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .topbar-actions,
  .account-shell {
    width: 100%;
  }

  .ghost-chip,
  .credit-chip,
  .points-chip,
  .account-chip,
  .btn,
  .plan-trigger,
  .submit-button {
    width: 100%;
  }

  .hero-section {
    min-height: auto;
    padding-top: 72px;
  }

  .rocket {
    display: none;
  }

  .orbital-visual {
    min-height: 320px;
  }

  .modal-layer {
    padding: 18px 12px;
  }

  .modal-card {
    width: 100%;
    max-height: calc(100vh - 36px);
    padding: 20px;
  }
}
