﻿:root {
  --primary: #6366f1;
  --primary-hover: #4f46e5;
  --accent: #ec4899;
  --bg: #0f172a;
  --bg-soft: #111827;
  --surface: #1e293b;
  --surface-2: #172033;
  --text: #f8fafc;
  --text-muted: #94a3b8;
  --border: #334155;
  --ok: #34d399;
  --warn: #fb7185;
  --radius: 16px;
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 12% -12%, rgba(99, 102, 241, 0.35), transparent 40%),
    radial-gradient(circle at 92% 0%, rgba(236, 72, 153, 0.22), transparent 42%),
    linear-gradient(180deg, #0f172a 0%, #0b1424 50%, #0c1627 100%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul {
  margin: 0;
  padding: 0;
}

.bg-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -3;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.07) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(circle at 50% 25%, #000 30%, transparent 90%);
}

.bg-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(90px);
  pointer-events: none;
  z-index: -2;
}

.orb-a {
  width: 360px;
  height: 360px;
  top: 25%;
  left: -180px;
  background: rgba(99, 102, 241, 0.28);
}

.orb-b {
  width: 420px;
  height: 420px;
  top: -170px;
  right: -220px;
  background: rgba(236, 72, 153, 0.24);
}

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

.site-header {
  position: sticky;
  top: 12px;
  z-index: 10;
  margin-top: 12px;
  min-height: 72px;
  padding: 12px 16px;
  border: 1px solid rgba(51, 65, 85, 0.85);
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.82);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand img {
  width: 24px;
  height: 24px;
  border-radius: 6px;
}

.brand span {
  display: grid;
  line-height: 1.2;
}

.brand strong {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.brand small {
  color: var(--text-muted);
  font-size: 11px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  color: #cad7ee;
}

.main-nav a {
  opacity: 0.88;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.main-nav a:hover {
  color: #fff;
  opacity: 1;
}

.btn {
  appearance: none;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  color: #fff;
  border-color: rgba(236, 72, 153, 0.45);
  background: linear-gradient(120deg, var(--primary), var(--accent));
  box-shadow: 0 12px 24px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 14px 28px rgba(99, 102, 241, 0.38);
}

.btn-ghost {
  color: #d5e4ff;
  border-color: rgba(99, 102, 241, 0.45);
  background: rgba(30, 41, 59, 0.55);
}

.btn-ghost:hover {
  border-color: rgba(99, 102, 241, 0.7);
  background: rgba(30, 41, 59, 0.8);
}

.btn-full {
  width: 100%;
}

.hero {
  padding-top: 48px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: start;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(2rem, 4.8vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  max-width: 13ch;
}

.hero-badge {
  margin: 0 0 14px;
  width: fit-content;
  border: 1px solid rgba(99, 102, 241, 0.6);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #bfcbff;
  background: rgba(30, 41, 59, 0.5);
}

.hero-subtitle {
  margin: 16px 0 0;
  color: var(--text-muted);
  max-width: 58ch;
}

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

.hero-chips {
  margin-top: 16px;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-chips li {
  border: 1px solid rgba(51, 65, 85, 0.9);
  background: rgba(30, 41, 59, 0.65);
  color: #d5e0f2;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 700;
}

.hero-price-note {
  margin: 15px 0 0;
  color: #b8c7e2;
  font-size: 14px;
}

.hero-price-note strong {
  color: #fff;
}

.hero-panel {
  border: 1px solid rgba(51, 65, 85, 0.9);
  border-radius: 16px;
  background:
    radial-gradient(circle at 100% 0%, rgba(236, 72, 153, 0.18), transparent 40%),
    linear-gradient(180deg, rgba(30, 41, 59, 0.94), rgba(15, 23, 42, 0.98));
  box-shadow:
    0 22px 44px rgba(2, 7, 21, 0.46),
    0 0 0 1px rgba(99, 102, 241, 0.08) inset;
  overflow: hidden;
  width: min(100%, 500px);
  justify-self: end;
  will-change: transform, box-shadow;
  animation: popup-float 7.2s ease-in-out infinite;
}

@keyframes popup-float {
  0%,
  100% {
    transform: translateY(0);
    box-shadow:
      0 22px 44px rgba(2, 7, 21, 0.46),
      0 0 0 1px rgba(99, 102, 241, 0.08) inset;
  }
  50% {
    transform: translateY(-10px);
    box-shadow:
      0 30px 58px rgba(2, 7, 21, 0.56),
      0 0 0 1px rgba(236, 72, 153, 0.16) inset;
  }
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  border-bottom: 1px solid var(--border);
}

.panel-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
}

.panel-brand img {
  width: 22px;
  height: 22px;
}

.panel-plan {
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.15);
  border: 1px solid rgba(148, 163, 184, 0.4);
  color: #c8d3e8;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.panel-actions {
  display: grid;
  gap: 8px;
  padding: 12px;
}

.panel-action {
  appearance: none;
  border: 1px solid rgba(51, 65, 85, 0.9);
  border-radius: 12px;
  background: rgba(30, 41, 59, 0.72);
  color: #e2e8f0;
  min-height: 54px;
  padding: 13px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.panel-action:hover {
  border-color: rgba(99, 102, 241, 0.56);
  background: rgba(35, 47, 69, 0.86);
  transform: translateY(-1px);
}

.panel-action.is-active {
  border-color: rgba(236, 72, 153, 0.66);
  background:
    radial-gradient(130% 100% at 100% 0%, rgba(236, 72, 153, 0.2), transparent 50%),
    rgba(31, 42, 65, 0.94);
  box-shadow:
    inset 0 0 0 1px rgba(236, 72, 153, 0.24),
    0 10px 20px rgba(10, 14, 24, 0.32);
}

.panel-action.is-active svg {
  stroke: #f9a8d4;
}

.panel-action svg {
  width: 18px;
  height: 18px;
  stroke: var(--primary);
  stroke-width: 2;
  fill: none;
  flex-shrink: 0;
}

.panel-action.is-locked {
  border-color: rgba(236, 72, 153, 0.45);
  color: #b4c0d4;
}

.panel-action.is-locked em {
  margin-left: auto;
  border-radius: 999px;
  padding: 3px 7px;
  background: rgba(236, 72, 153, 0.15);
  border: 1px solid rgba(236, 72, 153, 0.35);
  color: #f9a8d4;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
}

.panel-upgrade {
  margin: 0 12px 12px;
  border: 1px solid rgba(236, 72, 153, 0.4);
  border-radius: 12px;
  padding: 12px;
  background: linear-gradient(140deg, rgba(99, 102, 241, 0.12), rgba(236, 72, 153, 0.1));
}

.panel-upgrade p {
  margin: 0 0 10px;
  color: #bfcbdf;
  font-size: 13px;
  text-align: center;
}

.section {
  padding-top: 100px;
}

.section-head {
  margin-bottom: 20px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.65rem, 3.2vw, 2.75rem);
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.section-head p {
  margin: 10px 0 0;
  color: var(--text-muted);
}

.card {
  border: 1px solid rgba(51, 65, 85, 0.9);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
}

.features-revamp {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 16px;
}

.features-summary {
  border: 1px solid rgba(99, 102, 241, 0.36);
  border-radius: 18px;
  padding: 18px;
  background:
    radial-gradient(110% 80% at 0% 0%, rgba(99, 102, 241, 0.14), transparent 50%),
    linear-gradient(180deg, rgba(23, 35, 59, 0.84), rgba(12, 20, 36, 0.9));
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
}

.features-kicker {
  margin: 0;
  display: inline-flex;
  border: 1px solid rgba(236, 72, 153, 0.42);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #f8cde6;
  background: rgba(236, 72, 153, 0.12);
}

.features-summary h3 {
  margin: 12px 0 8px;
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.features-summary > p {
  margin: 0;
  color: #b8c8e4;
  font-size: 14px;
}

.feature-metrics {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.feature-metric {
  border: 1px solid rgba(99, 102, 241, 0.32);
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.56);
  padding: 10px;
  display: grid;
  gap: 2px;
}

.feature-metric strong {
  font-size: 18px;
  line-height: 1;
  color: #e9eeff;
  letter-spacing: -0.02em;
}

.feature-metric span {
  color: #9eb0ce;
  font-size: 12px;
}

.features-lanes {
  display: grid;
  gap: 12px;
}

.feature-lane {
  border: 1px solid rgba(51, 65, 85, 0.88);
  border-radius: 16px;
  background:
    radial-gradient(120% 120% at 100% 0%, rgba(99, 102, 241, 0.12), transparent 45%),
    linear-gradient(180deg, rgba(23, 35, 59, 0.84), rgba(12, 20, 36, 0.9));
  padding: 14px 16px;
}

.feature-lane-pro {
  border-color: rgba(236, 72, 153, 0.42);
  background:
    radial-gradient(120% 120% at 100% 0%, rgba(236, 72, 153, 0.16), transparent 45%),
    linear-gradient(180deg, rgba(25, 34, 58, 0.88), rgba(12, 20, 36, 0.92));
}

.feature-lane-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lane-chip {
  border: 1px solid rgba(99, 102, 241, 0.48);
  border-radius: 8px;
  min-width: 36px;
  height: 24px;
  padding: 0 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #d4deff;
  background: rgba(99, 102, 241, 0.16);
}

.lane-chip-pro {
  border-color: rgba(236, 72, 153, 0.58);
  color: #f8cde6;
  background: rgba(236, 72, 153, 0.14);
}

.feature-lane h3 {
  margin: 0;
  font-size: 19px;
  letter-spacing: -0.02em;
}

.feature-lane-list {
  margin-top: 10px;
  list-style: none;
  display: grid;
  gap: 7px;
}

.feature-lane-list li {
  position: relative;
  padding-left: 14px;
  color: #d3deed;
  font-size: 14px;
  line-height: 1.45;
}

.feature-lane-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(140deg, var(--primary), var(--accent));
}

.card h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.card ul {
  margin-top: 12px;
  list-style: none;
  display: grid;
  gap: 8px;
}

.card li {
  position: relative;
  padding-left: 14px;
  color: #d3deed;
  font-size: 14px;
}

.card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(140deg, var(--primary), var(--accent));
}

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

.step-card {
  border: 1px solid rgba(51, 65, 85, 0.9);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.78), rgba(15, 23, 42, 0.92));
  padding: 16px;
}

.step-card span {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(99, 102, 241, 0.2);
  color: #dbe4ff;
  border: 1px solid rgba(99, 102, 241, 0.45);
  font-weight: 800;
  font-size: 13px;
}

.step-card h3 {
  margin: 12px 0 6px;
  font-size: 18px;
}

.step-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
}

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

.price-card {
  position: relative;
  border-radius: 28px;
  padding: 24px 24px 20px;
  border: 1px solid rgba(99, 102, 241, 0.42);
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(99, 102, 241, 0.22), transparent 48%),
    linear-gradient(180deg, rgba(13, 26, 51, 0.98), rgba(7, 16, 35, 0.98));
  box-shadow:
    inset 0 0 0 1px rgba(99, 102, 241, 0.12),
    0 24px 50px rgba(0, 7, 20, 0.52);
  display: flex;
  flex-direction: column;
  min-height: 620px;
}

.price-card-free::after,
.price-card-pro::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 28px;
  pointer-events: none;
}

.price-card-free::after {
  box-shadow: 0 0 0 1px rgba(132, 136, 255, 0.26), 0 0 36px rgba(99, 102, 241, 0.14);
}

.price-card-pro {
  border-color: rgba(236, 72, 153, 0.55);
  background:
    radial-gradient(130% 90% at 100% 0%, rgba(236, 72, 153, 0.24), transparent 45%),
    radial-gradient(110% 70% at 0% 0%, rgba(99, 102, 241, 0.2), transparent 42%),
    linear-gradient(180deg, rgba(10, 28, 58, 0.98), rgba(5, 17, 39, 0.98));
}

.price-card-pro::after {
  box-shadow: 0 0 0 1px rgba(236, 72, 153, 0.38), 0 0 42px rgba(236, 72, 153, 0.22);
}

.plan-highlight {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 999px;
  border: 1px solid rgba(236, 72, 153, 0.62);
  background: linear-gradient(90deg, rgba(99, 102, 241, 0.3), rgba(236, 72, 153, 0.3));
  color: #f8d3ea;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  padding: 6px 14px;
}

.plan {
  margin: 0 0 2px;
  color: #f4f9ff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 30px;
  line-height: 1;
  font-weight: 800;
}

.plan-pro {
  color: #ffffff;
}

.price-line {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin-bottom: 8px;
}

.price {
  margin: 0;
  font-size: clamp(2.65rem, 4.8vw, 3.7rem);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 800;
  color: #ffffff;
}

.price-term {
  font-size: clamp(1.05rem, 1.65vw, 1.45rem);
  line-height: 1.1;
  margin-bottom: 6px;
  font-weight: 700;
  color: rgba(231, 240, 255, 0.78);
}

.price span {
  font-size: 0.34em;
  letter-spacing: 0;
  color: #bccce7;
  margin-left: 2px;
}

.note {
  margin: 0 0 12px;
  color: #9eb4da;
  font-size: 14px;
  line-height: 1.35;
}

.plan-feature-list {
  margin-top: 12px;
  list-style: none;
  display: grid;
  gap: 10px;
}

.plan-feature-item {
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: center;
  gap: 10px;
  color: #e4eefc;
  font-size: clamp(13px, 1.05vw, 16px);
  line-height: 1.28;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.plan-feature-item.is-disabled {
  color: rgba(160, 178, 208, 0.45);
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}

.feature-status {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
}

.feature-status.is-on {
  color: #1a1033;
  background: linear-gradient(180deg, #8b8dff, #ec7bc2);
  box-shadow: 0 0 10px rgba(139, 141, 255, 0.35);
}

.feature-status.is-off {
  color: #6e7888;
  background: rgba(148, 163, 184, 0.25);
  border: 1px solid rgba(148, 163, 184, 0.32);
}

.btn-plan {
  min-height: 46px;
  border-radius: 999px;
  font-size: clamp(14px, 1.1vw, 18px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}

.btn-plan-free {
  color: #e8ecff;
  border: 1px solid rgba(99, 102, 241, 0.45);
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.86), rgba(15, 23, 42, 0.94));
}

.btn-plan-free:hover {
  border-color: rgba(236, 72, 153, 0.55);
  background: linear-gradient(180deg, rgba(36, 46, 68, 0.95), rgba(20, 28, 48, 0.98));
}

.btn-plan-pro {
  color: #ffffff;
  border: 1px solid rgba(236, 72, 153, 0.62);
  background: linear-gradient(90deg, var(--primary), var(--accent));
  box-shadow: 0 12px 30px rgba(99, 102, 241, 0.35);
}

.btn-plan-pro:hover {
  box-shadow: 0 16px 34px rgba(236, 72, 153, 0.3);
}

.price-card-footer {
  margin-top: auto;
  padding-top: 14px;
  display: grid;
  gap: 10px;
}

.price-footnote {
  display: block;
  color: #8da8d2;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  min-height: 15px;
}

.price-footnote.is-placeholder {
  visibility: hidden;
}

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

.faq-item {
  overflow: hidden;
}

.faq-btn {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--text);
  padding: 14px 16px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

.faq-btn span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(99, 102, 241, 0.5);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #c6d3ea;
  font-size: 16px;
  transition: transform 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.faq-item.is-open .faq-btn span {
  transform: rotate(45deg);
  color: #fbcfe8;
  border-color: rgba(236, 72, 153, 0.5);
}

.faq-body {
  padding: 0 16px 16px;
  color: var(--text-muted);
  font-size: 14px;
}

.publish-cta {
  margin-top: 42px;
  padding: 26px 22px;
  text-align: center;
  border: 1px solid rgba(99, 102, 241, 0.36);
  background:
    radial-gradient(85% 120% at 50% 0%, rgba(99, 102, 241, 0.22), transparent 58%),
    linear-gradient(180deg, rgba(22, 33, 55, 0.9), rgba(11, 19, 34, 0.95));
}

.publish-kicker {
  margin: 0;
  display: inline-flex;
  border: 1px solid rgba(236, 72, 153, 0.42);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  color: #f8cde6;
  background: rgba(236, 72, 153, 0.12);
}

.publish-cta h2 {
  margin: 12px 0 0;
  font-size: clamp(1.55rem, 2.6vw, 2.15rem);
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.publish-lead {
  margin: 10px auto 0;
  color: var(--text-muted);
  font-size: 14px;
  max-width: 58ch;
}

.publish-install-btn {
  margin-top: 16px;
  min-width: 210px;
  min-height: 46px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
}

.footer-cta {
  margin-top: 76px;
}

.footer-cta-card {
  border-top: 1px solid rgba(99, 102, 241, 0.16);
  border-bottom: 1px solid rgba(99, 102, 241, 0.16);
  padding: clamp(46px, 8vw, 92px) 18px clamp(54px, 8vw, 94px);
  text-align: center;
  background:
    radial-gradient(40% 35% at 50% 35%, rgba(99, 102, 241, 0.2), transparent 72%),
    linear-gradient(180deg, rgba(8, 16, 34, 0.68), rgba(6, 12, 27, 0.78));
}

.footer-cta-logo {
  width: 58px;
  height: 58px;
  display: inline-block;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.32);
}

.footer-cta-card h2 {
  margin: 14px 0 0;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.footer-cta-card p {
  margin: 14px auto 0;
  max-width: 630px;
  color: #aebfdc;
  font-size: clamp(15px, 1.5vw, 18px);
}

.footer-cta-btn {
  margin-top: 20px;
  min-width: 200px;
  min-height: 50px;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 700;
}

.footer-cta-meta {
  margin-top: 10px !important;
  color: #7f95bb !important;
  font-size: 13px !important;
  letter-spacing: 0.01em;
}

.site-footer {
  margin-top: 56px;
  border-top: 1px solid rgba(51, 65, 85, 0.62);
  background:
    radial-gradient(90% 120% at 0% 0%, rgba(99, 102, 241, 0.1), transparent 55%),
    linear-gradient(180deg, rgba(8, 16, 34, 0.86), rgba(6, 12, 27, 0.95));
}

.footer-main {
  padding: 36px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
}

.footer-brand-block {
  flex: 1 1 44%;
}

.footer-brand {
  display: inline-flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-brand img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.footer-brand div {
  display: grid;
  gap: 4px;
}

.footer-brand strong {
  font-size: 26px;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.footer-brand small {
  font-size: 15px;
  color: #95a8ca;
}

.footer-columns {
  flex: 1 1 56%;
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 18px;
}

.footer-col p {
  margin: 0 0 10px;
  color: rgba(142, 167, 205, 0.75);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  color: rgba(216, 229, 251, 0.8);
  font-size: 13px;
  margin-bottom: 8px;
  font-weight: 600;
}

.footer-col a:hover {
  color: rgba(255, 255, 255, 0.95);
}

.footer-bottom {
  border-top: 1px solid rgba(51, 65, 85, 0.62);
  padding: 14px 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #89a2c8;
  font-size: 14px;
}

.is-focus-target {
  outline: 2px solid rgba(236, 72, 153, 0.72);
  outline-offset: 3px;
}

.toast-stack {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 50;
  display: grid;
  gap: 8px;
  pointer-events: none;
}

.toast {
  min-width: 240px;
  max-width: min(420px, calc(100vw - 32px));
  border-radius: 10px;
  border: 1px solid rgba(99, 102, 241, 0.46);
  background: rgba(10, 18, 34, 0.92);
  color: #e7efff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.35;
  padding: 10px 12px;
  box-shadow: 0 12px 28px rgba(1, 8, 19, 0.52);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.toast-success {
  border-color: rgba(52, 211, 153, 0.58);
}

.legal-page-main {
  padding-top: 44px;
  padding-bottom: 24px;
}

.legal-hero {
  border: 1px solid rgba(99, 102, 241, 0.36);
  border-radius: 18px;
  padding: 20px 18px;
  background:
    radial-gradient(95% 120% at 0% 0%, rgba(99, 102, 241, 0.2), transparent 52%),
    linear-gradient(180deg, rgba(22, 33, 55, 0.9), rgba(11, 19, 34, 0.95));
}

.legal-hero h1 {
  margin: 0;
  font-size: clamp(1.9rem, 4.2vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.legal-meta {
  margin: 8px 0 0;
  color: rgba(168, 185, 216, 0.72);
  font-size: 12px;
  line-height: 1.45;
}

.legal-grid {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.legal-card {
  border: 1px solid rgba(51, 65, 85, 0.9);
  border-radius: 16px;
  padding: 16px;
  background:
    radial-gradient(90% 95% at 100% 0%, rgba(99, 102, 241, 0.14), transparent 45%),
    linear-gradient(180deg, rgba(23, 35, 59, 0.84), rgba(12, 20, 36, 0.9));
}

.legal-card h2 {
  margin: 0;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.legal-card p {
  margin: 9px 0 0;
  color: #c2d1eb;
  font-size: 14px;
}

.legal-list {
  margin: 9px 0 0;
  padding-left: 18px;
  color: #c2d1eb;
  font-size: 14px;
  display: grid;
  gap: 6px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  filter: blur(3px);
  transition:
    opacity 0.55s ease,
    transform 0.55s cubic-bezier(0.2, 1, 0.3, 1),
    filter 0.55s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

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

  .hero-panel {
    width: 100%;
    justify-self: stretch;
  }

  .hero-copy h1 {
    max-width: 18ch;
  }

  .features-revamp {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 840px) {
  .site-header {
    position: static;
    flex-wrap: wrap;
    justify-content: center;
    padding: 12px;
  }

  .main-nav {
    width: 100%;
    justify-content: center;
  }

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

  .price-card {
    min-height: 0;
  }

  .plan {
    font-size: 27px;
  }

  .plan-feature-item {
    font-size: 14px;
  }

  .btn-plan {
    font-size: 15px;
  }

  .footer-cta-card {
    padding: 42px 14px 48px;
  }

  .publish-cta {
    margin-top: 30px;
    padding: 24px 18px;
  }

  .footer-main {
    flex-direction: column;
    gap: 20px;
    padding: 24px 0;
  }

  .footer-brand-block {
    flex-basis: auto;
  }

  .footer-columns {
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-cta {
    margin-top: 48px;
  }

  .site-footer {
    margin-top: 36px;
  }

  .section {
    padding-top: 82px;
  }
}

@media (max-width: 680px) {
  .shell {
    width: calc(100% - 24px);
  }

  .hero {
    padding-top: 30px;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(1.85rem, 10vw, 2.7rem);
  }

  .hero-actions .btn {
    flex: 1 1 190px;
  }

  .feature-metrics,
  .features-lanes,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .price-card {
    padding: 20px 16px 16px;
    border-radius: 22px;
  }

  .price-card-free::after,
  .price-card-pro::after {
    border-radius: 22px;
  }

  .plan {
    font-size: 25px;
  }

  .price {
    font-size: clamp(2.6rem, 13vw, 3.5rem);
  }

  .price-term {
    font-size: 1.15rem;
    margin-bottom: 4px;
  }

  .plan-feature-item {
    font-size: 13px;
  }

  .btn-plan {
    font-size: 14px;
    min-height: 42px;
  }

  .footer-cta-card {
    padding: 36px 10px 40px;
  }

  .publish-cta {
    margin-top: 24px;
    padding: 20px 14px;
  }

  .footer-cta {
    margin-top: 38px;
  }

  .site-footer {
    margin-top: 30px;
  }

  .publish-cta h2 {
    font-size: clamp(1.35rem, 7vw, 1.9rem);
  }

  .publish-lead {
    font-size: 13px;
  }

  .publish-install-btn {
    min-width: 180px;
    min-height: 42px;
    font-size: 14px;
  }

  .footer-cta-logo {
    width: 50px;
    height: 50px;
    border-radius: 14px;
  }

  .footer-cta-card h2 {
    font-size: clamp(1.7rem, 8vw, 2.3rem);
  }

  .footer-cta-card p {
    font-size: 14px;
  }

  .footer-main {
    padding: 22px 0 18px;
  }

  .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 12px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
  }

  .legal-page-main {
    padding-top: 28px;
  }

  .legal-hero {
    padding: 16px 14px;
  }

  .legal-card {
    padding: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
    filter: none;
  }
}
