:root {
  --bg: #060606;
  --bg-soft: #0b0b0c;
  --card: rgba(255, 255, 255, 0.05);
  --card-strong: rgba(255, 255, 255, 0.07);
  --line: rgba(255, 255, 255, 0.10);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #f5f7fb;
  --muted: #a7adb8;
  --muted-2: #7e848f;
  --white: #ffffff;
  --black: #000000;
  --shadow: 0 20px 70px rgba(0, 0, 0, 0.45);
  --shadow-soft: 0 12px 40px rgba(0, 0, 0, 0.28);
  --radius: 22px;
  --max: 1180px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

a {
  color: inherit;
  text-decoration: none;
}

body {
  font-family: "Inter", Arial, sans-serif;
  background:
    radial-gradient(circle at top center, rgba(255,255,255,0.08), transparent 28%),
    linear-gradient(180deg, #040404 0%, #070707 100%);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
}

.wrap {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.center {
  text-align: center;
}

.narrow {
  max-width: 760px;
  margin-inline: auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(6, 6, 6, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.2px;
  flex-shrink: 0;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 10px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  color: var(--muted);
  padding: 10px 14px;
  border-radius: 12px;
  transition: 0.25s ease;
  font-size: 0.95rem;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.05);
}

.nav-cta {
  color: var(--black) !important;
  background: var(--white);
  font-weight: 700;
}

.nav-cta:hover {
  background: #e7e7e7 !important;
  color: var(--black) !important;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 70px;
}

.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.8), transparent 85%);
  pointer-events: none;
}

.glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.25;
  pointer-events: none;
}

.glow-a {
  width: 340px;
  height: 340px;
  background: rgba(255,255,255,0.16);
  top: 20px;
  left: -80px;
}

.glow-b {
  width: 320px;
  height: 320px;
  background: rgba(255,255,255,0.10);
  right: -60px;
  bottom: 0;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 32px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 0.8rem;
  letter-spacing: 0.28em;
  color: #c9ced8;
  text-transform: uppercase;
}

.hero-copy h1 {
  font-size: clamp(2.7rem, 6vw, 5.2rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}

.sub {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero-points {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.hero-points span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: #dce1ea;
  font-size: 0.9rem;
}

.fineprint {
  color: var(--muted-2);
  font-size: 0.92rem;
}

.hero-panel {
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 28px;
  padding: 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  width: 100%;
}

.hero-panel-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.panel-badge,
.panel-status {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.panel-badge {
  background: rgba(255,255,255,0.08);
  color: #eef2f7;
}

.panel-status {
  background: var(--white);
  color: var(--black);
}

.hero-logo {
  width: 92px;
  margin: 0 auto 22px;
  border-radius: 18px;
  box-shadow: 0 0 35px rgba(255,255,255,0.08);
}

.hero-stats {
  display: grid;
  gap: 12px;
}

.stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 15px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.08);
}

.stat span {
  color: var(--muted);
  font-size: 0.92rem;
}

.stat strong {
  font-size: 0.95rem;
  text-align: right;
}

.hero-note {
  margin-top: 16px;
  padding: 15px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.08);
  color: #d8dde6;
  font-size: 0.95rem;
}

.section {
  padding: 92px 0;
}

.section-dark {
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.01));
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.section-kicker {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.78rem;
  margin-bottom: 14px;
}

.section-kicker.bright {
  color: #d6dce6;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}

.section-copy {
  color: var(--muted);
  font-size: 1.03rem;
}

.cards-3,
.pricing-grid,
.steps {
  display: grid;
  gap: 24px;
}

.cards-3,
.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 36px;
}

.card,
.pricing-card,
.step,
.contact-box {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.card,
.pricing-card {
  padding: 28px;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.card:hover,
.pricing-card:hover,
.step:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  background: var(--card-strong);
}

.card.featured,
.pricing-featured {
  border-color: rgba(255,255,255,0.22);
  box-shadow: 0 18px 55px rgba(255,255,255,0.07);
}

.card.muted,
.disabled-card {
  opacity: 0.82;
}

.card-tag,
.mini {
  display: inline-block;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,0.09);
  color: #eef2f7;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.card-tag.neutral {
  background: rgba(255,255,255,0.07);
}

.card-tag.dark {
  background: rgba(255,255,255,0.05);
}

.card h3,
.pricing-card h3,
.step h3 {
  font-size: 1.45rem;
  line-height: 1.1;
  margin-bottom: 12px;
}

.card p,
.step p {
  color: var(--muted);
}

.card-list,
.price-list {
  list-style: none;
  margin-top: 18px;
}

.card-list li,
.price-list li {
  position: relative;
  padding-left: 18px;
  color: #d7dbe3;
  margin-bottom: 10px;
}

.card-list li::before,
.price-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255,255,255,0.75);
}

.price-tag {
  margin-top: 22px;
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.coming-soon {
  margin-top: 22px;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 14px;
  background: rgba(255,255,255,0.07);
  color: #e6e9ef;
  font-weight: 700;
}

.addon-box,
.addon-pricing {
  margin-top: 20px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.08);
}

.addon-box.subtle {
  background: rgba(255,255,255,0.035);
}

.addon-box span,
.addon-title {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 6px;
}

.addon-box strong,
.addon-price {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.addon-box p,
.addon-copy {
  color: var(--muted);
  font-size: 0.94rem;
}

.price {
  font-size: 2.6rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.05em;
  margin-bottom: 18px;
}

.price span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0;
}

.button-stack {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 14px;
  font-weight: 700;
  transition: 0.25s ease;
  border: 1px solid transparent;
  text-align: center;
}

.btn.full {
  width: 100%;
}

.btn-primary {
  background: var(--white);
  color: var(--black);
}

.btn-primary:hover {
  background: #e9e9e9;
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255,255,255,0.05);
  color: var(--white);
  border-color: rgba(255,255,255,0.10);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-2px);
}

.btn-secondary.light {
  background: transparent;
  border-color: rgba(255,255,255,0.14);
}

.btn-disabled {
  background: rgba(255,255,255,0.05);
  color: #9aa1ad;
  border-color: rgba(255,255,255,0.08);
  cursor: default;
}

.step {
  padding: 26px;
}

.step-no {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--white);
  color: var(--black);
  font-weight: 800;
  margin-bottom: 16px;
}

.contact-box {
  margin-top: 30px;
  padding: 32px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.icon-btn {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  transition: 0.25s ease;
  flex-shrink: 0;
}

.icon-btn svg {
  width: 28px;
  height: 28px;
}

.icon-btn:hover {
  transform: translateY(-3px);
  background: var(--white);
  color: var(--black);
  box-shadow: 0 14px 34px rgba(255,255,255,0.15);
}

.contact-text {
  color: #d4d8e0;
  margin: 8px 0;
  word-break: break-word;
}

.contact-text a {
  color: inherit;
}

.disclaimer-section {
  padding-top: 70px;
  padding-bottom: 86px;
}

.footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(0,0,0,0.42);
}

.footer-row {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted-2);
  font-size: 0.94rem;
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-panel {
    max-width: 680px;
    margin: 0 auto;
  }

  .cards-3,
  .pricing-grid,
  .steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .nav {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .brand {
    justify-content: center;
  }

  .nav-links {
    justify-content: center;
  }

  .hero {
    padding: 64px 0 54px;
  }

  .section {
    padding: 72px 0;
  }

  .hero-copy {
    text-align: center;
  }

  .sub {
    margin-inline: auto;
  }

  .hero-actions,
  .hero-points {
    justify-content: center;
  }

  .hero-copy h1 {
    font-size: clamp(2.2rem, 9vw, 3.6rem);
  }

  .price {
    font-size: 2.2rem;
  }

  .contact-box {
    padding: 26px 20px;
  }

  .footer-row {
    min-height: auto;
    padding: 20px 0;
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .wrap {
    width: min(100% - 20px, var(--max));
  }

  .topbar {
    position: sticky;
  }

  .nav-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 8px;
  }

  .nav-links a {
    text-align: center;
    padding: 12px 10px;
    font-size: 0.92rem;
  }

  .hero {
    padding: 52px 0 46px;
  }

  .hero-copy h1 {
    font-size: 2rem;
    line-height: 1.02;
  }

  .sub,
  .section-copy,
  .card p,
  .step p,
  .contact-text {
    font-size: 0.96rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-points span {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero-panel {
    padding: 18px;
    border-radius: 22px;
  }

  .hero-panel-top {
    flex-direction: column;
    align-items: stretch;
  }

  .panel-badge,
  .panel-status {
    justify-content: center;
  }

  .stat {
    flex-direction: column;
    align-items: flex-start;
  }

  .stat strong {
    text-align: left;
  }

  .card,
  .pricing-card,
  .step {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .price {
    font-size: 2rem;
  }

  .price span {
    display: block;
    margin-top: 6px;
  }

  .icon-btn {
    width: 54px;
    height: 54px;
  }
}