:root {
  --accent: #920c6a;
  --accent-2: #b32786;
  --accent-3: #d35cae;
  --bg: #100812;
  --bg-deep: #0a040b;
  --surface: #2e1e2e;
  --surface-soft: #3a2540;
  --text: #f2eaf1;
  --text-secondary: #a78ca3;

  --success: #22c55e;
  --warning: #f59e0b;
  --error: #ef4444;
  --cyber: #c73f99;
  --cyber-soft: #e7b8da;

  --max-width: 1320px;
  --radius: 28px;
  --shadow: 0 24px 56px rgba(8, 4, 11, 0.38);
  --glow-soft: 0 0 56px rgba(183, 39, 134, 0.28);
  --glow-strong: 0 0 96px rgba(211, 92, 174, 0.38);
  --border: 1px solid rgba(242, 234, 241, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 20% 18%, rgba(146, 12, 106, 0.12), transparent 46%),
    radial-gradient(circle at 82% 78%, rgba(179, 39, 134, 0.08), transparent 52%),
    var(--bg);
  line-height: 1.58;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: -10%;
  pointer-events: none;
  z-index: -2;
}

body::before {
  background: conic-gradient(
    from 0deg,
    rgba(146, 12, 106, 0.06),
    rgba(179, 39, 134, 0.05),
    rgba(211, 92, 174, 0.04),
    rgba(146, 12, 106, 0.06)
  );
  animation: auroraDrift 68s ease-in-out infinite;
}

body::after {
  background: radial-gradient(circle at 50% 50%, rgba(179, 39, 134, 0.05), transparent 66%);
  filter: blur(64px);
  animation: auroraPulse 36s ease-in-out infinite;
}


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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: min(var(--max-width), calc(100% - 3.5rem));
  margin: 0 auto;
}

.section {
  padding: 7.2rem 0;
}

.kicker {
  display: inline-block;
  margin-bottom: 1.1rem;
  padding: 0.52rem 0.95rem;
  border: var(--border);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 235, 252, 0.18), rgba(255, 235, 252, 0) 48%),
    linear-gradient(145deg, rgba(73, 43, 86, 0.84), rgba(52, 31, 63, 0.78));
  color: #cfb9cb;
  font-size: 0.96rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.trial-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: var(--border);
  background:
    linear-gradient(180deg, rgba(255, 236, 252, 0.24), rgba(255, 236, 252, 0) 40%),
    linear-gradient(145deg, rgba(179, 39, 134, 0.28), rgba(73, 43, 86, 0.48));
  color: #eedcea;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.lead,
.section-text,
.small {
  color: var(--text-secondary);
}

.lead {
  font-size: clamp(1.08rem, 1.45vw, 1.35rem);
}

.lead-secondary {
  margin-top: 0.8rem;
}

h1 {
  font-size: clamp(1.55rem, 3.4vw, 2.9rem);
  line-height: 1.1;
  letter-spacing: -0.012em;
  font-weight: 700;
  max-width: 17ch;
}

h2 {
  font-size: clamp(2rem, 3.6vw, 3.3rem);
  margin-bottom: 1.35rem;
  letter-spacing: -0.015em;
}

h3 {
  font-size: clamp(1.28rem, 1.7vw, 1.62rem);
}

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  border-bottom: var(--border);
  background:
    linear-gradient(180deg, rgba(255, 236, 252, 0.1), rgba(255, 236, 252, 0) 55%),
    rgba(46, 30, 46, 0.86);
}

.nav-wrap {
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.3rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-weight: 800;
  font-size: 1.18rem;
}

.logo-mark {
  width: 2.8rem;
  height: 2.8rem;
  display: grid;
  place-items: center;
}

.logo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.logo-wordmark {
  height: 3.2rem;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav {
  display: flex;
  gap: 1.5rem;
  color: var(--text-secondary);
  font-size: 1.03rem;
}

.nav a {
  position: relative;
  transition: color 0.24s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.36rem;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.24s ease;
}

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

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  border: var(--border);
  background: linear-gradient(145deg, var(--surface-soft), var(--surface));
  color: var(--text);
  border-radius: 0.9rem;
  padding: 0.68rem 0.95rem;
  font-size: 1rem;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(211, 92, 174, 0.55);
  padding: 1rem 1.42rem;
  background:
    linear-gradient(180deg, rgba(255, 236, 252, 0.24), rgba(255, 236, 252, 0) 38%),
    linear-gradient(135deg, rgba(96, 34, 86, 0.94), rgba(179, 39, 134, 0.95));
  color: #fff9fe;
  font-weight: 800;
  font-size: 1.02rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 246, 254, 0.42),
    inset 0 -10px 20px rgba(86, 25, 98, 0.24),
    0 0 0 1px rgba(179, 39, 134, 0.2),
    0 10px 28px rgba(146, 12, 106, 0.32);
  transition: transform 0.32s ease, filter 0.32s ease, box-shadow 0.32s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-3px) scale(1.02);
  filter: brightness(1.06);
  box-shadow:
    inset 0 1px 0 rgba(255, 246, 254, 0.52),
    inset 0 -10px 20px rgba(86, 25, 98, 0.2),
    0 0 0 1px rgba(179, 39, 134, 0.34),
    0 0 26px rgba(179, 39, 134, 0.4),
    0 12px 30px rgba(146, 12, 106, 0.35);
}

.btn-ghost {
  border: 1px solid rgba(167, 140, 163, 0.46);
  background:
    linear-gradient(180deg, rgba(242, 234, 241, 0.14), rgba(242, 234, 241, 0) 38%),
    linear-gradient(135deg, rgba(46, 30, 46, 0.94), rgba(58, 37, 64, 0.9));
  color: var(--text);
  box-shadow:
    inset 0 1px 0 rgba(255, 246, 254, 0.2),
    0 0 0 1px rgba(146, 12, 106, 0.18),
    0 8px 20px rgba(46, 30, 46, 0.24);
}

.btn-sm {
  padding: 0.75rem 1.1rem;
  font-size: 0.95rem;
}

.btn-block {
  width: 100%;
}

.hero {
  padding-top: 5.2rem;
}

.hero-grid {
  display: grid;
  gap: 1.8rem;
  grid-template-columns: 1.18fr 0.82fr;
  align-items: center;
}

.hero .lead {
  margin-top: 1.35rem;
  max-width: 60ch;
}

.hero-side-stack {
  display: grid;
  gap: 1rem;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-meta {
  margin-top: 2.1rem;
  display: flex;
  gap: 1.6rem;
  flex-wrap: wrap;
}

.hero-meta li {
  display: grid;
  gap: 0.3rem;
}

.hero-meta strong {
  font-size: 1.24rem;
}

.hero-meta span {
  color: var(--text-secondary);
  font-size: 1rem;
}

.hero-card,
.card,
.step,
.faq-item {
  position: relative;
  border: var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 236, 252, 0.11), rgba(255, 236, 252, 0) 40%),
    linear-gradient(160deg, rgba(46, 30, 46, 0.9), rgba(24, 15, 27, 0.94));
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.hero-card::before,
.card::before,
.step::before,
.faq-item::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(
    120deg,
    rgba(146, 12, 106, 0.26),
    rgba(211, 92, 174, 0.13),
    rgba(146, 12, 106, 0.26)
  );
  transition: opacity 0.28s ease;
}

.hero-card {
  padding: 1.8rem;
}

.status-list {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.9rem;
}

.status-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  border: var(--border);
  border-radius: 1rem;
  padding: 0.92rem 1rem;
  color: var(--text-secondary);
  background:
    linear-gradient(180deg, rgba(255, 232, 249, 0.11), rgba(255, 232, 249, 0) 46%),
    rgba(57, 36, 60, 0.42);
}

.status-item b {
  color: var(--text);
}

.status-ok {
  color: var(--success) !important;
}

.signal-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.9rem;
  border: 1px solid rgba(211, 92, 174, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 236, 252, 0.11), rgba(255, 236, 252, 0) 42%),
    radial-gradient(circle at 76% 12%, rgba(179, 39, 134, 0.16), transparent 46%),
    radial-gradient(circle at 20% 90%, rgba(179, 39, 134, 0.2), transparent 52%),
    linear-gradient(170deg, rgba(31, 18, 45, 0.97), rgba(19, 12, 33, 0.97));
  padding: 1.1rem 1.1rem 1.05rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 244, 253, 0.24),
    0 0 0 1px rgba(179, 39, 134, 0.12),
    0 18px 36px rgba(46, 30, 46, 0.34);
}

.signal-card::before {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.65rem;
  height: 56px;
  border-radius: 999px;
  background: radial-gradient(circle at 50% 50%, rgba(179, 39, 134, 0.46), rgba(179, 39, 134, 0) 72%);
  filter: blur(16px);
  pointer-events: none;
}

.signal-card::after {
  content: "";
  position: absolute;
  inset: 38% 0.2rem 0.8rem;
  background-image:
    linear-gradient(rgba(211, 92, 174, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(211, 92, 174, 0.09) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.34;
  mask-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.85) 28%, rgba(0, 0, 0, 1));
  pointer-events: none;
}

.signal-head {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.6rem;
  color: #c9b2d7;
  font-size: 0.78rem;
}

.signal-chip {
  border: 1px solid rgba(211, 92, 174, 0.34);
  border-radius: 999px;
  padding: 0.32rem 0.62rem;
  background:
    linear-gradient(180deg, rgba(255, 239, 252, 0.16), rgba(255, 239, 252, 0) 45%),
    rgba(58, 37, 64, 0.62);
  color: #f0dff0;
}

.signal-graph {
  position: relative;
  z-index: 2;
  margin-top: 0.85rem;
  height: 138px;
  border-radius: 1rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 115%, rgba(179, 39, 134, 0.24), rgba(179, 39, 134, 0) 70%),
    linear-gradient(180deg, rgba(255, 236, 252, 0.05), rgba(255, 236, 252, 0));
}

.signal-graph::before {
  content: "";
  position: absolute;
  inset: 0 0 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 360 180'%3E%3Cpath d='M-56 128 C20 84 106 156 160 58 C178 18 202 18 220 58 C274 156 350 84 416 128' stroke='%23ff9de3' stroke-opacity='0.94' stroke-width='7' stroke-linecap='round' fill='none'/%3E%3C/svg%3E");
  background-size: calc(100% + 72px) 100%;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 2%, #000 98%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 2%, #000 98%, transparent 100%);
}

.signal-graph::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 22px;
  width: 180px;
  height: 68px;
  transform: translateX(-50%);
  background: radial-gradient(circle at 50% 60%, rgba(211, 92, 174, 0.4), rgba(211, 92, 174, 0) 72%);
  filter: blur(16px);
}

.signal-dot {
  position: absolute;
  z-index: 3;
  top: 19px;
  left: 50%;
  width: 15px;
  height: 15px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: #ffe0f4;
  box-shadow: 0 0 0 8px rgba(211, 92, 174, 0.22), 0 0 18px rgba(211, 92, 174, 0.84);
}

.signal-label,
.signal-note {
  position: relative;
  z-index: 2;
  color: #cbb0d0;
  text-align: center;
}

.signal-label {
  margin-top: 0.42rem;
  font-size: 0.98rem;
}

.signal-value {
  position: relative;
  z-index: 2;
  margin-top: 0.28rem;
  font-size: clamp(2rem, 4.2vw, 2.65rem);
  line-height: 1;
  text-align: center;
  font-weight: 800;
  color: var(--text);
}

.signal-note {
  margin-top: 0.28rem;
  font-size: 0.84rem;
}

.cards-3 {
  margin-top: 1.85rem;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-grid {
  margin-top: 1.85rem;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.compare-grid {
  margin-top: 1.85rem;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.compare-card h3 {
  margin-bottom: 0.75rem;
}

.compare-list {
  display: grid;
  gap: 0.78rem;
}

.compare-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--text-secondary);
}

.compare-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 999px;
}

.compare-list-bad li::before {
  background: var(--error);
}

.compare-list-good li::before {
  background: var(--success);
}

.compare-card-good {
  border-color: rgba(34, 197, 94, 0.42);
}

.app-grid {
  margin-top: 1.85rem;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.app-card .btn {
  margin-top: 1.2rem;
}

.card {
  padding: 1.75rem;
}

.card:hover,
.step:hover,
.faq-item:hover,
.hero-card:hover {
  transform: translateY(-7px);
  border-color: rgba(146, 12, 106, 0.56);
  box-shadow: var(--shadow), var(--glow-soft);
}

.card:hover::before,
.step:hover::before,
.faq-item:hover::before,
.hero-card:hover::before {
  opacity: 1;
}

.card p {
  margin-top: 0.72rem;
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.section-footnote {
  margin-top: 1.2rem;
  padding: 0.95rem 1rem;
  border: var(--border);
  border-radius: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 236, 252, 0.1), rgba(255, 236, 252, 0) 48%),
    rgba(52, 33, 54, 0.44);
  color: var(--text-secondary);
  display: grid;
  gap: 0.5rem;
  font-size: 0.98rem;
}

.section-footnote.single {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-size: 1rem;
}

.pricing-note {
  margin-top: 1.4rem;
}

.steps {
  margin-top: 1.85rem;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step {
  padding: 1.75rem;
}

.step-num {
  display: inline-block;
  margin-bottom: 0.78rem;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.plan {
  position: relative;
}

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

.apps-showcase,
.pricing-showcase {
  position: relative;
  overflow: hidden;
}

.apps-showcase::before,
.pricing-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: linear-gradient(rgba(146, 12, 106, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(146, 12, 106, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.18;
}

.apps-showcase .container,
.pricing-showcase .container {
  position: relative;
  z-index: 1;
}

.apps-kicker {
  display: inline-flex;
  margin: 0 auto;
  padding: 0.62rem 1.25rem;
  border: 1px solid rgba(146, 12, 106, 0.28);
  border-radius: 999px;
  color: var(--cyber-soft);
  background:
    linear-gradient(180deg, rgba(255, 236, 252, 0.16), rgba(255, 236, 252, 0) 46%),
    rgba(46, 30, 46, 0.74);
  font-size: 1rem;
  font-weight: 700;
}

.apps-showcase .container {
  text-align: center;
}

.apps-title {
  margin-top: 1.25rem;
  margin-bottom: 0.9rem;
  font-size: clamp(2.4rem, 6vw, 5.2rem);
}

.apps-title span {
  color: var(--cyber);
}

.apps-lead {
  max-width: 780px;
  margin: 0 auto;
  font-size: clamp(1.05rem, 1.8vw, 1.95rem);
}

.apps-lead-secondary {
  margin-top: 0.5rem;
}

.apps-links-grid {
  margin-top: 2.4rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.app-link-card {
  min-height: 230px;
  border-radius: 1.4rem;
  border: 1px solid rgba(146, 12, 106, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 236, 252, 0.1), rgba(255, 236, 252, 0) 40%),
    linear-gradient(160deg, rgba(46, 30, 46, 0.88), rgba(24, 15, 27, 0.94));
  display: grid;
  place-content: center;
  gap: 0.35rem;
  text-align: center;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.app-link-card:hover {
  transform: translateY(-4px);
  border-color: rgba(146, 12, 106, 0.5);
  box-shadow: 0 0 40px rgba(146, 12, 106, 0.18);
}

.app-icon {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #f3e6f0;
  border: 1px solid rgba(146, 12, 106, 0.35);
  border-radius: 0.75rem;
  padding: 0.42rem 0.58rem;
  line-height: 1;
  justify-self: center;
}

.app-link-card b {
  font-size: 1.85rem;
}

.app-link-card small {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.period-switch {
  width: max-content;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding: 0.45rem;
  border-radius: 1rem;
  border: 1px solid rgba(146, 12, 106, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 236, 252, 0.08), rgba(255, 236, 252, 0) 50%),
    rgba(46, 30, 46, 0.76);
  margin: 1rem auto 1.8rem;
}

.period-btn {
  border: 1px solid transparent;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 236, 252, 0.12), rgba(255, 236, 252, 0) 44%),
    rgba(46, 30, 46, 0.84);
  color: #dcc9e5;
  padding: 0.74rem 1.05rem;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.22s ease, background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.period-btn span {
  color: var(--cyber);
  font-size: 0.9rem;
}

.period-btn.is-active {
  border-color: rgba(211, 92, 174, 0.56);
  background:
    linear-gradient(180deg, rgba(255, 233, 251, 0.22), rgba(255, 233, 251, 0) 40%),
    linear-gradient(140deg, rgba(96, 34, 86, 0.92), rgba(179, 39, 134, 0.93));
  color: #fff8fe;
  box-shadow:
    inset 0 1px 0 rgba(255, 246, 254, 0.4),
    0 0 0 1px rgba(179, 39, 134, 0.24),
    0 0 16px rgba(179, 39, 134, 0.32);
}

.period-btn.is-active span {
  color: #fff3fc;
}

.plan-grid-v2 {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.plan-v2 {
  position: relative;
  border: 1px solid rgba(146, 12, 106, 0.2);
  border-radius: 1.45rem;
  background:
    linear-gradient(180deg, rgba(255, 236, 252, 0.1), rgba(255, 236, 252, 0) 40%),
    linear-gradient(160deg, rgba(46, 30, 46, 0.9), rgba(24, 15, 27, 0.94));
  padding: 1.6rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  min-height: 500px;
  transition: padding-bottom 0.3s ease, transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.plan-v2.has-period {
  min-height: 540px;
  padding-bottom: 1.5rem;
}

.plan-v2-featured {
  border-color: rgba(146, 12, 106, 0.6);
  box-shadow: 0 0 0 1px rgba(146, 12, 106, 0.38), 0 0 40px rgba(146, 12, 106, 0.16);
}

.plan-chip {
  position: absolute;
  top: -0.9rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.38rem 0.95rem;
  border-radius: 999px;
  background: var(--cyber);
  color: #360724;
  font-weight: 800;
}

.plan-discount {
  position: absolute;
  top: 0.95rem;
  right: 1rem;
  margin: 0;
  padding: 0.28rem 0.58rem;
  border-radius: 999px;
  border: 1px solid rgba(146, 12, 106, 0.45);
  background: rgba(146, 12, 106, 0.15);
  color: #ffd2ef;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(-6px) scale(0.92);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.plan-discount.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.plan-v2 h3 {
  margin-top: 0.75rem;
}

.plan-desc {
  color: var(--text-secondary);
  margin-top: 0.55rem;
  min-height: 3em;
}

.price-v2 {
  margin-top: 0.62rem;
  margin-bottom: 0.42rem;
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.price-v2 strong {
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  color: var(--cyber);
  line-height: 1;
}

.price-v2 span {
  color: #b9a7b5;
  font-size: 1rem;
}

.plan-total {
  margin: 0;
  min-height: 0;
  color: #cfa9c6;
  font-size: 0.96rem;
  opacity: 0;
  transform: translateY(-4px);
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.24s ease, transform 0.24s ease, max-height 0.24s ease, margin 0.24s ease;
}

.plan-total.is-visible {
  opacity: 1;
  transform: translateY(0);
  max-height: 2rem;
  margin: 0 0 0.45rem;
  animation: totalAurora 0.75s ease;
}

.plan-features-title {
  margin: 0.75rem 0 0;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.plan-v2 ul {
  display: grid;
  gap: 0.62rem;
  margin-top: 0.7rem;
}

.plan-v2:not(.has-period) ul {
  margin-top: 0.7rem;
}

.plan-v2 li {
  position: relative;
  padding-left: 1.3rem;
}

.plan-v2 li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--cyber);
  font-size: 0.88rem;
}

.plan-cta {
  margin-top: auto;
  border: 1px solid rgba(167, 140, 163, 0.46);
  background:
    linear-gradient(180deg, rgba(242, 234, 241, 0.16), rgba(242, 234, 241, 0) 38%),
    linear-gradient(145deg, rgba(58, 37, 64, 0.96), rgba(46, 30, 46, 0.96) 52%, rgba(34, 22, 36, 0.96));
  color: var(--text);
  box-shadow:
    inset 0 1px 0 rgba(242, 234, 241, 0.2),
    0 8px 22px rgba(46, 30, 46, 0.24);
}

.plan-v2-featured .plan-cta {
  border-color: rgba(211, 92, 174, 0.58);
  background:
    linear-gradient(180deg, rgba(255, 228, 250, 0.3), rgba(255, 228, 250, 0) 38%),
    linear-gradient(145deg, rgba(108, 28, 88, 0.95), rgba(179, 39, 134, 0.96));
  color: #fff7fd;
}

.plan-cta:hover,
.plan-cta:focus-visible {
  box-shadow: 0 0 24px rgba(146, 12, 106, 0.24);
}

.plan ul {
  margin: 1.2rem 0;
  display: grid;
  gap: 0.65rem;
}

.plan li {
  color: var(--text-secondary);
  font-size: 1.02rem;
}

.price {
  margin-top: 0.8rem;
  font-size: clamp(2rem, 2.9vw, 2.6rem);
  font-weight: 800;
}

.price span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.84rem;
  padding: 0.36rem 0.65rem;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.16);
  color: var(--success);
  border: 1px solid rgba(34, 197, 94, 0.45);
}

.plan-popular {
  border-color: rgba(146, 12, 106, 0.82);
}

.faq-list {
  margin-top: 1.85rem;
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  overflow: clip;
}

.faq-question {
  width: 100%;
  text-align: left;
  border: 0;
  color: var(--text);
  background: transparent;
  padding: 1.3rem 1.35rem;
  font-size: 1.08rem;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.24s ease;
}

.faq-question::after {
  content: "+";
  float: right;
  color: var(--text-secondary);
  transition: transform 0.24s ease;
}

.faq-question[aria-expanded="true"]::after {
  transform: rotate(45deg);
}

.faq-question:hover,
.faq-question:focus-visible {
  color: #ffffff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.faq-answer p {
  padding: 0 1.35rem 1.35rem;
  color: var(--text-secondary);
  font-size: 1rem;
}

.footer {
  border-top: var(--border);
  background:
    linear-gradient(180deg, rgba(255, 236, 252, 0.08), rgba(255, 236, 252, 0) 44%),
    linear-gradient(180deg, rgba(46, 30, 46, 0.84), rgba(22, 14, 24, 0.96));
}

.footer-wrap {
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.footer-logo {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
  display: block;
}

.footer-links {
  display: grid;
  gap: 0.56rem;
  color: var(--text-secondary);
}

.footer-links a:hover {
  color: var(--text);
  text-shadow: 0 0 22px rgba(146, 12, 106, 0.44);
}

.noise-overlay,
.dot-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.noise-overlay {
  opacity: 0.018;
  background-image: radial-gradient(rgba(242, 234, 241, 0.3) 0.5px, transparent 0.5px);
  background-size: 4px 4px;
  animation: none;
}

.dot-overlay {
  opacity: 0.035;
  background-image: radial-gradient(circle, rgba(242, 234, 241, 0.12) 0.8px, transparent 0.8px);
  background-size: 24px 24px;
  background-position: -8px -8px;
  animation: dotsDrift 120s linear infinite;
}

.bg-shape {
  position: fixed;
  z-index: -1;
  filter: blur(70px);
  opacity: 0.1;
  animation: blobFloat 54s ease-in-out infinite;
}

.bg-shape-top {
  width: 26rem;
  height: 26rem;
  top: 4rem;
  right: -4rem;
  background: rgba(179, 39, 134, 0.42);
  animation-delay: 0s;
}

.bg-shape-mid {
  width: 21rem;
  height: 21rem;
  top: 36%;
  left: 42%;
  background: rgba(255, 178, 234, 0.28);
  animation-delay: -3.4s;
}

.bg-shape-bottom {
  width: 24rem;
  height: 24rem;
  bottom: -5rem;
  left: -5rem;
  background: rgba(146, 12, 106, 0.34);
  animation-delay: -7.8s;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(8px);
  transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@keyframes auroraDrift {
  0% {
    transform: translate3d(0, 0, 0) scale(1.02);
  }
  50% {
    transform: translate3d(1.2%, -1.6%, 0) scale(1.04);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1.02);
  }
}

@keyframes auroraPulse {
  0%,
  100% {
    opacity: 0.72;
  }
  50% {
    opacity: 1;
  }
}

@keyframes blobFloat {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  33% {
    transform: translate3d(14px, -10px, 0) scale(1.04);
  }
  66% {
    transform: translate3d(-10px, 12px, 0) scale(0.98);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes dotsDrift {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-14px, -10px, 0);
  }
}

@keyframes noiseShift {
  0% {
    transform: translate3d(0, 0, 0);
  }
  33% {
    transform: translate3d(1px, -1px, 0);
  }
  66% {
    transform: translate3d(-1px, 1px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes logoPulse {
  0%,
  100% {
    box-shadow: var(--glow-soft);
  }
  50% {
    box-shadow: var(--glow-strong);
  }
}

@keyframes totalAurora {
  0% {
    text-shadow: 0 0 0 rgba(146, 12, 106, 0);
    filter: brightness(1);
  }
  45% {
    text-shadow: 0 0 18px rgba(146, 12, 106, 0.72), 0 0 36px rgba(146, 12, 106, 0.32);
    filter: brightness(1.2);
  }
  100% {
    text-shadow: 0 0 0 rgba(146, 12, 106, 0);
    filter: brightness(1);
  }
}

@media (max-width: 1024px) {
  .hero-grid,
  .cards-3,
  .steps,
  .trust-grid,
  .app-grid,
  .compare-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

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

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

  .plan-v2 {
    min-height: 460px;
  }

  .container {
    width: min(var(--max-width), calc(100% - 2rem));
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    top: 108px;
    left: 0;
    right: 0;
    display: none;
    padding: 1rem 1.1rem;
    flex-direction: column;
    border-bottom: var(--border);
    background: rgba(46, 30, 46, 0.96);
  }

  .nav.is-open {
    display: flex;
  }

  .header .btn-sm {
    display: none;
  }

  .hero {
    padding-top: 5rem;
  }

  .signal-graph {
    height: 118px;
  }

  .section {
    padding: 4.8rem 0;
  }

  h1 {
    max-width: 15ch;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 1.3rem 0;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--max-width), calc(100% - 1.25rem));
  }

  .section {
    padding: 4rem 0;
  }

  h1 {
    font-size: clamp(1.45rem, 7.2vw, 2.15rem);
    line-height: 1.14;
    max-width: 20ch;
  }

  .logo-wordmark {
    height: 2.15rem;
  }

  h2 {
    font-size: clamp(1.6rem, 7vw, 2.1rem);
  }

  .apps-title {
    font-size: clamp(1.9rem, 10vw, 2.8rem);
  }

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

  .app-link-card {
    min-height: 178px;
  }

  .app-link-card b {
    font-size: 1.5rem;
  }

  .plan-grid-v2 {
    grid-template-columns: 1fr;
  }

  .period-switch {
    width: 100%;
    justify-content: center;
  }

  .hero-card,
  .card,
  .step {
    padding: 1.25rem;
    border-radius: 22px;
  }

  .signal-card {
    padding: 0.92rem;
    border-radius: 1.25rem;
  }

  .signal-value {
    font-size: clamp(1.7rem, 9vw, 2.2rem);
  }

  .hero-meta {
    gap: 1rem;
  }

  .trial-pill {
    width: 100%;
    justify-content: center;
  }

  .btn,
  .btn-sm {
    width: 100%;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }
}
