:root {
  --bg: #06070c;
  --panel: #0f1019;
  --panel-strong: #14111f;
  --border: rgba(209, 169, 255, 0.16);
  --text: #f8f7ff;
  --muted: #b9b4cb;
  --purple: #a855f7;
  --purple-hot: #d946ef;
  --violet: #7c3aed;
  --blue: #7a5cff;
  --green: #22c55e;
  --pink: #f05bff;
  --shadow-purple: rgba(168, 85, 247, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(120, 41, 226, 0.38), transparent 32%),
    radial-gradient(circle at 16% 8%, rgba(168, 85, 247, 0.13), transparent 28%),
    linear-gradient(180deg, #090a12 0%, var(--bg) 44%, #070712 100%);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.page-glow {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 78% 28%, rgba(160, 83, 255, 0.28), transparent 26%),
    radial-gradient(circle at 45% 45%, rgba(217, 70, 239, 0.09), transparent 34%);
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(209, 169, 255, 0.12);
  background: rgba(6, 7, 12, 0.78);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 23px;
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none;
}

.brand-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
}

.brand-icon img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 16px rgba(168, 85, 247, 0.45));
}

.brand-word {
  color: #fff;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.14);
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
}

.nav a {
  text-decoration: none;
}

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

.nav-cta {
  padding: 9px 14px;
  border: 1px solid rgba(217, 70, 239, 0.38);
  border-radius: 999px;
  background: rgba(168, 85, 247, 0.08);
  color: var(--text) !important;
  box-shadow: inset 0 0 18px rgba(168, 85, 247, 0.1);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 82px;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 76% 46%, rgba(128, 51, 255, 0.42), transparent 28%),
    radial-gradient(circle at 92% 40%, rgba(224, 88, 255, 0.18), transparent 18%);
  content: "";
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 48px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding: 9px 18px;
  border: 1px solid rgba(217, 70, 239, 0.72);
  border-radius: 999px;
  background: rgba(6, 7, 12, 0.5);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 0 34px rgba(168, 85, 247, 0.18), inset 0 0 22px rgba(168, 85, 247, 0.1);
}

.badge-group {
  position: relative;
  width: 36px;
  height: 22px;
}

.badge-group::before,
.badge-group::after {
  position: absolute;
  content: "";
}

.badge-group::before {
  top: 1px;
  left: 11px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #d958ff, #8b5cf6);
  box-shadow:
    -16px 4px 0 -4px #a855f7,
    16px 4px 0 -4px #a855f7;
}

.badge-group::after {
  right: 0;
  bottom: 0;
  left: 0;
  height: 11px;
  border-radius: 999px 999px 4px 4px;
  background: linear-gradient(135deg, #d958ff, #7c3aed);
}

.hero h1 {
  margin: 0 0 18px;
  max-width: 790px;
  font-size: clamp(52px, 7vw, 92px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero h1 span {
  background: linear-gradient(90deg, #c260ff 0%, #9d58ff 45%, #fff 92%);
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
}

.hero h2 {
  margin: 0 0 18px;
  color: #f4efff;
  font-size: clamp(20px, 3vw, 28px);
  line-height: 1.25;
  letter-spacing: 0;
}

.hero p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

.button-primary {
  background: linear-gradient(135deg, var(--purple-hot), var(--violet));
  color: #fff;
  box-shadow: 0 18px 44px rgba(168, 85, 247, 0.34);
}

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

.trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 13px;
}

.trust-row strong {
  padding: 6px 10px;
  border: 1px solid rgba(209, 169, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.brand-showcase {
  position: relative;
  min-height: 560px;
}

.hero-mark-wrap {
  position: absolute;
  top: 10px;
  right: -26px;
  width: min(420px, 86vw);
  opacity: 0.98;
}

.hero-mark-wrap::before {
  position: absolute;
  inset: 14%;
  z-index: -1;
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.5);
  filter: blur(70px);
  content: "";
}

.hero-mark {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 34px 38px rgba(35, 6, 82, 0.65));
}

.showcase-panel {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(100%, 520px);
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(20, 17, 31, 0.9), rgba(9, 9, 17, 0.82));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42), 0 0 80px rgba(168, 85, 247, 0.16);
  backdrop-filter: blur(16px);
}

.dash-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  color: var(--muted);
}

.dash-topbar div {
  display: flex;
  gap: 7px;
}

.dash-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
}

.dash-topbar p {
  margin: 0;
  font-size: 13px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.metric,
.table-card {
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.metric small {
  color: var(--muted);
}

.metric strong {
  display: block;
  margin: 8px 0;
  font-size: 28px;
  line-height: 1.1;
}

.status,
.pill {
  font-size: 12px;
  font-weight: 800;
}

.blue {
  color: #a78bfa;
}

.violet {
  color: #c084fc;
}

.pink {
  color: #f0abfc;
}

.green {
  color: #4ade80;
}

.table-card {
  margin-top: 14px;
}

.table-row {
  display: grid;
  grid-template-columns: 1fr 0.8fr 0.9fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-size: 14px;
}

.table-row:last-child {
  border-bottom: 0;
}

.table-head {
  color: var(--text);
  font-weight: 800;
}

.pill {
  justify-self: start;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.section {
  padding: 82px 0;
}

.section-muted {
  border-block: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(168, 85, 247, 0.05), rgba(255, 255, 255, 0.015));
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading h2,
.split h2,
.quote-box h2,
.contact-grid h2 {
  margin: 0 0 14px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-heading p,
.split p,
.quote-box p,
.contact-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

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

.feature-card,
.step-card,
.tech-list div,
.quote-box,
.contact-form {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(15, 16, 25, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.feature-card {
  min-height: 220px;
}

.icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(217, 70, 239, 0.32);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(217, 70, 239, 0.18), rgba(124, 58, 237, 0.14));
  color: #f5d0fe;
  font-size: 13px;
  font-weight: 900;
}

.feature-card h3,
.step-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  letter-spacing: 0;
}

.feature-card p,
.step-card p,
.tech-list span {
  margin: 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  gap: 44px;
}

.tech-list {
  display: grid;
  gap: 12px;
}

.tech-list div {
  display: grid;
  gap: 4px;
}

.tech-list strong {
  font-size: 18px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.step-card span {
  color: #d8b4fe;
  font-size: 13px;
  font-weight: 900;
}

.pricing-section {
  padding-top: 64px;
}

.quote-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.quote-box .button {
  flex: 0 0 auto;
}

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

.pricing-card {
  position: relative;
  display: flex;
  min-height: 560px;
  flex-direction: column;
  gap: 22px;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(15, 16, 25, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.pricing-card-featured {
  border-color: rgba(217, 70, 239, 0.52);
  background:
    radial-gradient(circle at top right, rgba(168, 85, 247, 0.2), transparent 36%),
    rgba(15, 16, 25, 0.92);
  box-shadow: 0 24px 72px rgba(168, 85, 247, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.plan-badge {
  align-self: flex-start;
  padding: 7px 11px;
  border: 1px solid rgba(217, 70, 239, 0.38);
  border-radius: 999px;
  background: rgba(168, 85, 247, 0.1);
  color: #f5d0fe;
  font-size: 12px;
  font-weight: 900;
}

.pricing-card h3 {
  margin: 0 0 10px;
  font-size: 26px;
  line-height: 1.1;
}

.pricing-fit {
  margin: 0;
  color: var(--muted);
}

.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price strong {
  font-size: clamp(42px, 5vw, 58px);
  line-height: 0.95;
}

.price span {
  color: var(--muted);
  font-weight: 800;
}

.onboarding {
  margin: -8px 0 0;
  color: #f5d0fe;
  font-weight: 900;
}

.pricing-card ul {
  display: grid;
  gap: 12px;
  margin: 0 0 auto;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
}

.pricing-card li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--purple-hot), var(--violet));
  box-shadow: 0 0 14px rgba(168, 85, 247, 0.6);
  content: "";
}

.contact-section {
  padding-top: 48px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  gap: 40px;
}

.contact-form {
  display: grid;
  gap: 15px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  outline: none;
  background: rgba(0, 0, 0, 0.25);
  color: var(--text);
  font: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(217, 70, 239, 0.75);
  box-shadow: 0 0 0 4px rgba(168, 85, 247, 0.14);
}

.contact-form textarea {
  resize: vertical;
}

.cf-turnstile {
  margin: 4px 0 2px;
}

.site-footer {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  color: var(--muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-inner a,
.footer-links a {
  color: #d8b4fe;
  text-decoration: none;
}

.guide-hero {
  padding: 86px 0 56px;
}

.guide-hero-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 34px;
  align-items: start;
}

.guide-hero h1 {
  max-width: 860px;
  margin: 0 0 18px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1;
  letter-spacing: 0;
}

.guide-hero p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.guide-actions {
  margin-top: 26px;
}

.guide-toc,
.guide-card,
.guide-shot,
.guide-feature-list article,
.guide-tool-grid article,
.guide-process article,
.guide-callout {
  border: 1px solid var(--border);
  background: rgba(15, 16, 25, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.guide-toc {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: 20px;
}

.guide-toc strong {
  margin-bottom: 4px;
  color: #fff;
}

.guide-toc a {
  color: var(--muted);
  text-decoration: none;
}

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

.guide-section {
  padding: 76px 0;
}

.guide-section-muted {
  border-block: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(168, 85, 247, 0.05), rgba(255, 255, 255, 0.015));
}

.guide-card-grid,
.guide-feature-list,
.guide-tool-grid,
.guide-process,
.guide-figure-grid {
  display: grid;
  gap: 18px;
}

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

.guide-card,
.guide-feature-list article,
.guide-tool-grid article,
.guide-process article,
.guide-callout {
  padding: 22px;
  border-radius: 20px;
}

.guide-card h3,
.guide-feature-list h3,
.guide-process h3,
.guide-callout h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.guide-card p,
.guide-feature-list p,
.guide-process p,
.guide-callout p {
  margin: 0;
  color: var(--muted);
}

.guide-two-col {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: start;
}

.guide-two-col h2 {
  margin: 0 0 14px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
}

.guide-two-col p {
  color: var(--muted);
  font-size: 17px;
}

.guide-steps-list,
.guide-check-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding-left: 22px;
  color: var(--muted);
}

.guide-steps-list li,
.guide-check-list li {
  padding-left: 4px;
}

.guide-figure {
  margin: 0;
}

.guide-media img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(15, 16, 25, 0.78);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.guide-media img + .guide-shot {
  display: none;
}

.guide-shot {
  min-height: 330px;
  padding: 24px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(124, 58, 237, 0.16), rgba(217, 70, 239, 0.07)),
    rgba(15, 16, 25, 0.78);
}

.guide-shot span {
  display: inline-flex;
  margin-bottom: 70px;
  padding: 7px 11px;
  border: 1px solid rgba(217, 70, 239, 0.38);
  border-radius: 999px;
  color: #f5d0fe;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.guide-shot strong {
  display: block;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
}

.guide-shot p {
  max-width: 560px;
  margin: 12px 0 0;
  color: var(--muted);
}

.guide-figure figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.guide-feature-list {
  grid-template-columns: repeat(4, 1fr);
}

.guide-figure-grid {
  grid-template-columns: 1fr 1fr;
  margin-top: 28px;
}

.guide-tool-grid {
  grid-template-columns: repeat(3, 1fr);
}

.guide-tool-grid article {
  display: grid;
  gap: 7px;
}

.guide-tool-grid strong {
  color: #fff;
}

.guide-tool-grid span {
  color: var(--muted);
}

.guide-callout {
  margin-top: 22px;
  border-color: rgba(217, 70, 239, 0.38);
  background:
    radial-gradient(circle at top right, rgba(168, 85, 247, 0.18), transparent 34%),
    rgba(15, 16, 25, 0.82);
}

.guide-process {
  grid-template-columns: repeat(3, 1fr);
}

.guide-process span {
  color: #d8b4fe;
  font-size: 13px;
  font-weight: 900;
}

.guide-process a {
  color: #d8b4fe;
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .hero-grid,
  .split,
  .contact-grid,
  .guide-hero-grid,
  .guide-two-col {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .steps,
  .pricing-grid,
  .guide-card-grid,
  .guide-feature-list,
  .guide-tool-grid,
  .guide-process,
  .guide-figure-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .guide-toc {
    position: static;
  }

  .brand-showcase {
    min-height: 600px;
  }

  .hero-mark-wrap {
    right: 50%;
    width: min(380px, 80vw);
    transform: translateX(50%);
  }

  .showcase-panel {
    right: 50%;
    transform: translateX(50%);
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .hero {
    padding-top: 58px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .metric-grid,
  .feature-grid,
  .steps,
  .pricing-grid,
  .guide-card-grid,
  .guide-feature-list,
  .guide-tool-grid,
  .guide-process,
  .guide-figure-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    min-height: auto;
  }

  .quote-box,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .button,
  .hero-actions {
    width: 100%;
  }

  .table-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .eyebrow {
    align-items: flex-start;
    border-radius: 24px;
    font-size: 13px;
  }

  .brand-showcase {
    min-height: 560px;
  }

  .showcase-panel {
    padding: 14px;
  }
}
