:root {
  --bg: #07030d;
  --bg-soft: #11091b;
  --card: rgba(22, 12, 34, 0.82);
  --card-strong: rgba(33, 14, 52, 0.94);
  --line: rgba(210, 142, 255, 0.2);
  --text: #f8ecff;
  --muted: #bca9ca;
  --purple: #8d22ff;
  --purple-soft: #c158ff;
  --pink: #ff6eb4;
  --cyan: #39e8dc;
  --green: #38e2a5;
  --shadow: 0 24px 90px rgba(128, 23, 255, 0.28);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 16% 12%, rgba(141, 34, 255, 0.25), transparent 36rem),
    radial-gradient(circle at 88% 18%, rgba(255, 110, 180, 0.16), transparent 30rem),
    linear-gradient(145deg, #050207 0%, #0b0412 48%, #130620 100%);
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  overflow-x: hidden;
}

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

button,
input,
select {
  font: inherit;
}

code {
  color: #e9c8ff;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 0.12rem 0.38rem;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

.bg-orb {
  position: fixed;
  z-index: -2;
  width: 28rem;
  height: 28rem;
  filter: blur(20px);
  border-radius: 999px;
  opacity: 0.32;
}

.bg-orb-one {
  left: -12rem;
  top: 10rem;
  background: var(--purple);
}

.bg-orb-two {
  right: -10rem;
  top: 34rem;
  background: var(--pink);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  width: min(var(--max), calc(100% - 32px));
  margin: 16px auto 0;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(8, 3, 14, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.28);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: white;
  font-weight: 900;
  letter-spacing: -0.06em;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  box-shadow: 0 0 32px rgba(141, 34, 255, 0.55);
}

.brand strong {
  display: block;
  letter-spacing: 0.04em;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav a {
  color: var(--muted);
  padding: 10px 12px;
  border-radius: 999px;
  transition: 0.2s ease;
}

.nav a:hover {
  color: white;
  background: rgba(255, 255, 255, 0.07);
}

.header-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.header-button {
  padding: 12px 18px;
  color: white;
  background: linear-gradient(135deg, #8e24ff, #ff65b3);
  box-shadow: 0 14px 34px rgba(141, 34, 255, 0.32);
}

.button {
  padding: 14px 20px;
}

.button:hover,
.header-button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  box-shadow: 0 18px 46px rgba(141, 34, 255, 0.35);
}

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

.button-small {
  padding: 12px 16px;
  color: #06100d;
  background: linear-gradient(135deg, var(--green), var(--cyan));
}

.section {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 88px);
  padding: 82px 0 56px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr);
  align-items: center;
  gap: 42px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ff9bcc;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.pulse {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(56, 226, 165, 0.1), 0 0 28px rgba(56, 226, 165, 0.75);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin: 20px 0 18px;
  font-size: clamp(2.7rem, 7vw, 6.6rem);
  line-height: 0.94;
  letter-spacing: -0.075em;
  max-width: 920px;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.lead {
  color: #d8c9e3;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.72;
  max-width: 720px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-row {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span {
  color: #e7d5f0;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
}

.hero-card {
  position: relative;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(12, 4, 20, 0.86);
  box-shadow: var(--shadow);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(141, 34, 255, 0.7), rgba(255, 110, 180, 0.4), transparent);
  opacity: 0.55;
}

.card-top {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  margin-bottom: 16px;
}

.status-dot {
  color: #08100c;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--green);
  font-size: 0.82rem;
  font-weight: 900;
}

.fake-window {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 24px;
  background: #09040f;
}

.fake-title {
  color: #bd79ff;
  margin-bottom: 18px;
  font-size: 1.25rem;
  font-weight: 900;
}

.fake-window label {
  display: block;
  color: var(--muted);
  margin-bottom: 8px;
}

.fake-input {
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  color: #ead6ff;
  background: rgba(255, 255, 255, 0.05);
  font-family: Consolas, "SFMono-Regular", monospace;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fake-window button {
  width: 100%;
  margin-top: 14px;
  padding: 14px;
  border: 0;
  border-radius: 12px;
  color: white;
  background: linear-gradient(135deg, var(--purple), #b02dff);
  font-weight: 900;
}

.fake-window p {
  margin: 14px 0 0;
  color: #ff7b97;
  text-align: center;
  font-size: 0.92rem;
}

.mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 14px;
}

.mini-grid div {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.mini-grid strong,
.mini-grid span {
  display: block;
}

.mini-grid span {
  color: var(--muted);
  margin-top: 4px;
}

.strip,
.security {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(141, 34, 255, 0.14), rgba(255, 110, 180, 0.08)),
    rgba(255, 255, 255, 0.04);
}

.strip {
  margin-bottom: 84px;
}

.strip p,
.security p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.strip-label {
  display: block;
  margin-bottom: 8px;
  color: white;
  font-weight: 900;
}

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

.section-heading p {
  color: var(--muted);
  line-height: 1.7;
}

.plans {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.plan {
  position: relative;
  min-height: 320px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  background: var(--card);
  overflow: hidden;
}

.plan::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(141, 34, 255, 0.2), transparent 55%);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.plan:hover::before,
.plan.accent::before {
  opacity: 1;
}

.plan.accent {
  border-color: rgba(255, 110, 180, 0.38);
  box-shadow: 0 20px 70px rgba(141, 34, 255, 0.18);
}

.plan > * {
  position: relative;
}

.plan-badge {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.78rem;
  font-weight: 900;
}

.plan h3 {
  margin: 22px 0 8px;
  font-size: 1.8rem;
  letter-spacing: -0.04em;
}

.price {
  color: #fff;
  font-size: 1.22rem;
  font-weight: 900;
}

.plan p {
  color: var(--muted);
  line-height: 1.62;
  margin: 16px 0 22px;
}

.plan .button {
  width: 100%;
  margin-top: auto;
}

.how,
.security,
.faq,
.final-cta {
  margin-top: 92px;
}

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

.steps article,
.faq details {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.045);
}

.steps span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 14px;
  color: white;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  font-weight: 900;
}

.steps p {
  color: var(--muted);
  line-height: 1.62;
  margin-bottom: 0;
}

.security {
  grid-template-columns: 0.9fr 1.1fr;
}

.security-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.security-list div {
  padding: 18px;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.security-list b,
.security-list span {
  display: block;
}

.security-list span {
  color: var(--muted);
  margin-top: 6px;
  line-height: 1.45;
}

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

.faq summary {
  cursor: pointer;
  font-weight: 900;
}

.faq details p {
  color: var(--muted);
  line-height: 1.7;
  margin: 14px 0 0;
}

.final-cta {
  padding: 54px 28px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 110, 180, 0.22), transparent 32rem),
    rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow);
}

.final-cta p {
  color: var(--muted);
  margin-bottom: 22px;
}

.footer {
  width: min(var(--max), calc(100% - 32px));
  margin: 34px auto 24px;
  padding: 18px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer a {
  color: #e7b7ff;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  max-width: min(360px, calc(100vw - 36px));
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  color: white;
  background: rgba(20, 8, 31, 0.94);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: 0.22s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

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

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

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

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

@media (max-width: 680px) {
  .site-header {
    border-radius: 24px;
    align-items: stretch;
  }

  .brand small,
  .header-button {
    display: none;
  }

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

  h1 {
    font-size: clamp(2.55rem, 16vw, 4.4rem);
  }

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

  .hero-card,
  .strip,
  .security {
    border-radius: 24px;
  }

  .strip,
  .plans,
  .steps,
  .security-list,
  .faq-grid,
  .mini-grid {
    grid-template-columns: 1fr;
  }

  .plan {
    min-height: 0;
  }

  .footer {
    display: block;
  }

  .footer span {
    display: block;
    margin-top: 8px;
  }
}
