:root {
  --bg: #fbfbff;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: rgba(255, 255, 255, 0.94);
  --border: rgba(77, 59, 194, 0.12);
  --text: #18204f;
  --muted: #67729b;
  --accent: #6246ea;
  --accent-strong: #4f2df0;
  --accent-soft: #f3efff;
  --shadow: 0 30px 80px rgba(96, 73, 205, 0.12);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(111, 76, 255, 0.14), transparent 34%),
    radial-gradient(circle at 80% 20%, rgba(162, 199, 255, 0.16), transparent 25%),
    linear-gradient(180deg, #ffffff 0%, #fbfbff 52%, #f8f8ff 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: 0;
  filter: blur(70px);
}

body::before {
  width: 280px;
  height: 280px;
  left: -40px;
  top: 120px;
  background: rgba(110, 80, 255, 0.18);
}

body::after {
  width: 340px;
  height: 340px;
  right: 0;
  bottom: 80px;
  background: rgba(164, 125, 255, 0.14);
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(1720px, calc(100% - 24px));
  margin: 12px auto;
  padding: 14px 34px 72px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.68));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 12px 34px;
  position: relative;
}

.brand img {
  display: block;
  width: 172px;
  height: auto;
}

.nav-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.nav-toggle-button {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 50px;
  height: 50px;
  margin-left: auto;
  border: 1px solid rgba(98, 70, 234, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 28px rgba(97, 77, 203, 0.08);
  cursor: pointer;
}

.nav-toggle-button span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.main-nav,
.header-actions,
.hero-actions,
.panel-topbar,
.message,
.profile-row,
.store-row,
.order-row,
.composer,
.feature {
  display: flex;
  align-items: center;
}

.main-nav {
  gap: 28px;
}

.main-nav a,
.login-link {
  color: var(--text);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: background 160ms ease, box-shadow 160ms ease, color 160ms ease;
}

.nav-current {
  color: var(--accent);
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(98, 70, 234, 0.08);
  box-shadow: inset 0 0 0 1px rgba(98, 70, 234, 0.08), 0 8px 20px rgba(98, 70, 234, 0.08);
}

.nav-current-button {
  box-shadow: 0 0 0 3px rgba(98, 70, 234, 0.14);
}

.header-actions {
  gap: 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 16px;
  border: 1px solid var(--border);
  text-decoration: none;
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.composer button:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(98, 70, 234, 0.18);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent-strong), #7a43ff);
  border-color: transparent;
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.88);
}

.button-small {
  min-height: 50px;
  padding: 0 26px;
  border-radius: 14px;
}

.play-icon {
  position: relative;
  width: 18px;
  height: 18px;
  border: 1.5px solid rgba(98, 70, 234, 0.44);
  border-radius: 50%;
}

.play-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 52%;
  transform: translate(-40%, -50%);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid var(--accent);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(620px, 1.2fr);
  gap: 34px;
  align-items: center;
  padding: 52px 18px 44px;
}

.hero-copy {
  max-width: 620px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  border: 1px solid rgba(98, 70, 234, 0.18);
  border-radius: 999px;
  color: var(--accent);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.eyebrow-icon {
  font-size: 0.92rem;
}

.hero-copy h1 {
  margin: 28px 0 22px;
  font-size: clamp(4.2rem, 5.8vw, 6.2rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

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

.hero-copy p {
  margin: 0;
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(1.1rem, 1.35vw, 1.34rem);
  line-height: 1.78;
}

.hero-actions {
  gap: 18px;
  margin-top: 36px;
}

.orbit-hero {
  width: min(100%, 900px);
  margin-left: auto;
}

.orbit-hero img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 26px 52px rgba(98, 70, 234, 0.12));
}

.home-hero {
  padding-bottom: 8px;
}

.subpage-hero {
  padding: 48px 18px 18px;
}

.subpage-copy {
  max-width: 860px;
}

.subpage-copy h1 {
  margin: 24px 0 18px;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.subpage-copy p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.5vw, 1.26rem);
  line-height: 1.75;
}

.card-grid-section,
.process-section {
  padding: 28px 18px 10px;
}

.card-grid,
.process-steps,
.split-section {
  display: grid;
  gap: 20px;
}

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

.info-card,
.section-panel,
.process-step,
.cta-panel {
  border: 1px solid rgba(98, 70, 234, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 20px 48px rgba(88, 74, 189, 0.06);
}

.info-card,
.process-step {
  padding: 24px;
}

.info-card h2,
.section-panel h2,
.process-step h2,
.cta-panel h2 {
  margin: 18px 0 10px;
  font-size: 1.24rem;
}

.info-card p,
.section-panel p,
.process-step p,
.cta-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.text-link {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  margin: 54px 18px 0;
  padding: 28px 8px 0;
  border-top: 1px solid rgba(95, 79, 193, 0.12);
}

.footer-brand-block {
  max-width: 360px;
}

.footer-brand img {
  width: 162px;
}

.footer-brand-block p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  min-width: min(100%, 420px);
}

.footer-column h2 {
  margin: 0 0 14px;
  font-size: 0.96rem;
}

.footer-column a {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  text-decoration: none;
}

.footer-column a:hover,
.text-link:hover {
  color: var(--accent);
}

.split-section {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 28px 18px 10px;
}

.section-panel {
  padding: 28px;
}

.accent-panel {
  background:
    radial-gradient(circle at top right, rgba(111, 76, 255, 0.1), transparent 40%),
    rgba(255, 255, 255, 0.84);
}

.bullet-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.85;
}

.process-steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--accent-strong), #7a43ff);
  font-size: 0.96rem;
  font-weight: 800;
}

.cta-panel {
  margin: 28px 18px 0;
  padding: 32px;
  text-align: center;
}

.hero-actions-centered {
  justify-content: center;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 10px;
  padding: 34px 6px 18px;
  border-top: 1px solid rgba(95, 79, 193, 0.12);
}

.feature {
  gap: 16px;
  padding: 0 18px;
}

.feature + .feature {
  border-left: 1px solid rgba(95, 79, 193, 0.12);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: var(--accent);
  background: radial-gradient(circle at top, rgba(126, 97, 255, 0.18), rgba(126, 97, 255, 0.06));
  font-size: 1.45rem;
}

.feature h2,
.business-section h2 {
  margin: 0;
}

.feature h2 {
  font-size: 1.06rem;
}

.feature p,
.business-section p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.business-section {
  padding: 104px 24px 34px;
  text-align: center;
}

.eyebrow-centered {
  margin: 0 auto 22px;
}

.business-section h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.business-section p {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.15rem;
}

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

  .hero-copy {
    max-width: none;
  }

  .orbit-hero {
    width: min(100%, 760px);
    margin: 10px auto 0;
  }

  .card-grid,
  .process-steps,
  .split-section {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 980px) {
  .page-shell {
    width: min(100% - 20px, 1720px);
    padding: 8px 16px 44px;
    border-radius: 24px;
  }

  .site-header {
    flex-wrap: nowrap;
    padding-bottom: 20px;
  }

  .main-nav {
    gap: 18px;
  }

  .hero {
    gap: 28px;
  }

  .feature-strip {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .process-steps,
  .split-section {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .feature + .feature {
    border-left: 0;
    border-top: 1px solid rgba(95, 79, 193, 0.12);
    padding-top: 22px;
    margin-top: 22px;
  }
}

@media (max-width: 720px) {
  .site-header,
  .header-actions,
  .hero-actions {
    align-items: stretch;
  }

  .site-header,
  .header-actions,
  .hero-actions {
    flex-direction: column;
  }

  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 156px;
  }

  .nav-toggle-button {
    display: inline-flex;
  }

  .main-nav,
  .header-actions {
    width: 100%;
    grid-column: 1 / -1;
  }

  .main-nav,
  .header-actions {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 14px;
    border: 1px solid rgba(98, 70, 234, 0.1);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 20px 40px rgba(97, 77, 203, 0.08);
  }

  .nav-toggle:checked ~ .main-nav,
  .nav-toggle:checked ~ .header-actions {
    display: flex;
  }

  .nav-toggle:checked + .nav-toggle-button span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle:checked + .nav-toggle-button span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle:checked + .nav-toggle-button span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav a,
  .login-link {
    display: block;
    padding: 12px 10px;
    border-radius: 12px;
  }

  .nav-current {
    padding: 12px 10px;
    border-radius: 12px;
    box-shadow: inset 0 0 0 1px rgba(98, 70, 234, 0.08);
  }

  .main-nav a:hover,
  .login-link:hover {
    background: rgba(98, 70, 234, 0.06);
  }

  .header-actions > * {
    width: 100%;
  }

  .hero-copy h1 {
    margin-top: 24px;
    font-size: clamp(2.7rem, 14vw, 4.2rem);
  }

  .hero-copy p,
  .business-section p,
  .subpage-copy p {
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }

  .orbit-hero {
    width: min(100%, 560px);
  }

  .feature {
    padding-left: 0;
    padding-right: 0;
  }

  .business-section {
    padding-top: 72px;
  }

  .site-footer {
    margin-top: 42px;
    padding-top: 24px;
  }
}
