@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;700&display=swap");

:root {
  color-scheme: light;
  --bg: #f6f0e6;
  --bg-2: #fff9f1;
  --panel: rgba(255, 252, 247, 0.88);
  --panel-strong: #fffdf9;
  --panel-dark: #10213d;
  --ink: #162033;
  --muted: #5c677c;
  --line: rgba(20, 32, 51, 0.1);
  --line-strong: rgba(20, 32, 51, 0.18);
  --brand: #1f5eff;
  --brand-deep: #0f172a;
  --brand-soft: rgba(31, 94, 255, 0.08);
  --accent: #ffca72;
  --danger: #b45309;
  --ok: #166534;
  --shadow: 0 30px 90px rgba(16, 22, 36, 0.14);
  --shadow-soft: 0 18px 44px rgba(16, 22, 36, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(41, 95, 255, 0.2), transparent 32%),
    radial-gradient(circle at top right, rgba(255, 202, 114, 0.34), transparent 34%),
    radial-gradient(circle at 50% 120%, rgba(16, 33, 61, 0.1), transparent 36%),
    linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
  padding: 22px 18px 48px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.22) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 78%);
  opacity: 0.4;
}

.shell {
  position: relative;
  width: 100%;
  max-width: 1532px;
  margin: 0 auto;
}

.home-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  margin: 0 0 14px 4px;
  padding: 10px 16px;
  border-radius: 999px;
  color: #10213d;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(20, 32, 51, 0.1);
  box-shadow: 0 10px 24px rgba(16, 22, 36, 0.08);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.home-link svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-link:hover {
  color: var(--brand);
  border-color: rgba(31, 94, 255, 0.22);
}

.card {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(20px);
}

.hero {
  display: grid;
  gap: 22px;
  align-items: stretch;
}

.hero-combined {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.38fr) minmax(420px, 0.92fr);
  gap: 36px;
  min-height: 780px;
  padding: 44px 30px 24px 48px;
  color: #fff;
  background:
    radial-gradient(circle at 0% 100%, rgba(32, 126, 255, 0.9), transparent 22%),
    radial-gradient(circle at 78% 80%, rgba(74, 112, 255, 0.72), transparent 34%),
    radial-gradient(circle at 72% 18%, rgba(31, 94, 255, 0.35), transparent 34%),
    linear-gradient(128deg, #061236 0%, #08086c 44%, #0710a9 69%, #2670ff 100%);
  border: 1px solid rgba(64, 124, 255, 0.55);
  border-radius: 42px;
  box-shadow:
    0 34px 90px rgba(8, 22, 84, 0.22),
    inset 0 0 0 2px rgba(82, 132, 255, 0.38),
    inset 0 -12px 22px rgba(41, 104, 255, 0.66);
}

.hero-combined::before,
.hero-combined::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-combined::before {
  inset: 0;
  background:
    linear-gradient(150deg, transparent 0 46%, rgba(76, 137, 255, 0.1) 46.2% 46.4%, transparent 46.6%),
    linear-gradient(154deg, transparent 0 55%, rgba(76, 137, 255, 0.12) 55.1% 55.3%, transparent 55.5%),
    linear-gradient(28deg, transparent 0 61%, rgba(76, 137, 255, 0.12) 61.1% 61.3%, transparent 61.5%),
    radial-gradient(circle at 64% 58%, rgba(89, 149, 255, 0.16) 0 2px, transparent 3px),
    radial-gradient(circle at 72% 47%, rgba(89, 149, 255, 0.16) 0 2px, transparent 3px),
    radial-gradient(circle at 82% 63%, rgba(89, 149, 255, 0.2) 0 2px, transparent 3px);
  opacity: 0.9;
}

.hero-combined::after {
  right: 28%;
  bottom: 0;
  width: 380px;
  height: 220px;
  background: radial-gradient(ellipse at center, rgba(83, 159, 255, 0.2), transparent 70%);
  transform: rotate(-15deg);
  filter: blur(2px);
}

.hero-main,
.hero-side,
.panel,
.pricing-card,
.faq-intro,
.faq-card {
  animation: rise-in 0.6s ease both;
}

.hero-side,
.panel,
.pricing-card,
.faq-card {
  animation-delay: 0.06s;
}

.hero-main {
  position: relative;
  z-index: 1;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: space-between;
  padding: 6px 0 0;
  color: #fff;
  background: transparent;
  box-shadow: none;
}

.hero-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
}

.eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-main .eyebrow {
  color: rgba(255, 255, 255, 0.88);
}

.hero-brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 17px;
  letter-spacing: 0.22em;
}

.spark-mark {
  position: relative;
  width: 26px;
  height: 26px;
  display: inline-block;
  flex: 0 0 auto;
}

.spark-mark::before,
.spark-mark::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  background: linear-gradient(180deg, #ffffff, #5fc5ff);
  box-shadow: 0 0 18px rgba(84, 183, 255, 0.8);
  clip-path: polygon(50% 0, 72% 38%, 100% 50%, 72% 62%, 50% 100%, 28% 62%, 0 50%, 28% 38%);
}

.spark-mark::before {
  width: 8px;
  height: 26px;
}

.spark-mark::after {
  width: 18px;
  height: 18px;
  transform: translate(14px, -8px) scale(0.45);
}

.secure-chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 38px;
  padding: 10px 24px;
  border-radius: 999px;
  background: rgba(88, 123, 255, 0.18);
  border: 1px solid rgba(141, 174, 255, 0.62);
  color: rgba(255, 255, 255, 0.96);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 12px 26px rgba(3, 9, 46, 0.22);
}

.secure-chip svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

h1,
.section-title,
.plan-copy h3,
.faq-card h3 {
  font-family: "Space Grotesk", "Segoe UI", Arial, sans-serif;
}

.hero-main h1 {
  margin: 0;
  max-width: 870px;
  font-size: clamp(58px, 4.75vw, 86px);
  line-height: 0.95;
  letter-spacing: -0.055em;
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.hero-main h1 span {
  display: inline-block;
  color: transparent;
  background: linear-gradient(180deg, #62d5ff 0%, #4ea6ff 48%, #816bff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(0 12px 12px rgba(45, 151, 255, 0.18));
}

.hero-main p {
  margin: 0;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.7;
}

.hero-lead {
  margin-top: 28px !important;
  font-size: 21px;
  max-width: 790px !important;
}

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

.hero-actions svg,
.hero-badges svg,
.hero-spotlight svg,
.activation-step svg,
.hero-side-note svg {
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  border: 1px solid rgba(142, 172, 255, 0.35);
  background: rgba(8, 18, 65, 0.22);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.badge svg {
  width: 20px;
  height: 20px;
}

.hero-spotlight {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 20px;
  align-items: center;
  max-width: 765px;
  margin-top: 20px;
  padding: 20px 24px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 8% 36%, rgba(69, 163, 255, 0.28), transparent 20%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(82, 117, 255, 0.16));
  border: 1px solid rgba(149, 183, 255, 0.48);
  box-shadow:
    0 22px 60px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.spotlight-gem {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  color: #72d2ff;
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.7), transparent 22%),
    linear-gradient(145deg, rgba(107, 208, 255, 0.3), rgba(34, 63, 184, 0.84));
  box-shadow:
    0 18px 35px rgba(12, 40, 148, 0.48),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.spotlight-gem svg {
  width: 42px;
  height: 42px;
  stroke-width: 1.7;
}

.spotlight-label {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1767ff, #674dff);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.spotlight-title {
  margin-top: 10px;
  font-family: "Space Grotesk", "Segoe UI", Arial, sans-serif;
  font-size: 29px;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.hero-spotlight p {
  margin-top: 10px;
}

.hero-side {
  position: relative;
  z-index: 1;
  align-self: stretch;
  padding: 48px 34px 28px;
  min-height: 100%;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.94) 42%, rgba(248, 250, 255, 0.98) 100%);
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 24px;
  box-shadow:
    0 30px 70px rgba(4, 15, 68, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.hero-side .section-title {
  margin-top: 14px;
  font-size: 34px;
  line-height: 0.98;
  color: #071642;
}

.hero-side .eyebrow {
  color: #1744d4;
  font-size: 15px;
  letter-spacing: 0.14em;
}

.hero-side-block {
  display: grid;
  gap: 0;
}

.hero-side .hint {
  margin-top: 18px;
  font-size: 19px;
  color: #52618a;
  line-height: 1.65;
}

.section-title {
  margin: 6px 0 0;
  font-size: 32px;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

[data-session-email] {
  display: inline;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.hint {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.message {
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid var(--line);
  line-height: 1.65;
  background: #fff;
}

.message.info {
  background: rgba(31, 94, 255, 0.08);
  border-color: rgba(31, 94, 255, 0.14);
}

.message.warn {
  background: rgba(180, 83, 9, 0.08);
  border-color: rgba(180, 83, 9, 0.16);
}

.message.ok {
  background: rgba(22, 101, 52, 0.08);
  border-color: rgba(22, 101, 52, 0.16);
}

.hero-status.message.info {
  display: none;
}

.hero-side [data-status].message.info {
  display: none;
}

.hero-status.message.warn,
.hero-status.message.ok {
  margin-top: 2px;
}

.activation-list {
  display: grid;
  gap: 16px;
  margin-top: 2px;
}

.activation-step {
  display: grid;
  grid-template-columns: 32px 78px 1fr;
  gap: 20px;
  align-items: center;
  min-height: 120px;
  padding: 20px 22px 20px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(26, 58, 125, 0.08);
  box-shadow: 0 14px 34px rgba(16, 34, 79, 0.1);
}

.activation-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  background: linear-gradient(180deg, #256eff, #052fcf);
  box-shadow: 0 10px 20px rgba(20, 73, 219, 0.28);
}

.activation-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  border-radius: 18px;
  color: #2566e9;
  background: linear-gradient(145deg, #f2f5ff, #e9eefc);
  box-shadow:
    0 12px 24px rgba(25, 44, 91, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.activation-icon svg {
  width: 34px;
  height: 34px;
  stroke-width: 1.8;
}

.activation-step strong {
  display: block;
  color: #101a43;
  font-size: 18px;
  line-height: 1.25;
}

.activation-step p {
  margin: 8px 0 0;
  color: #59678e;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.45;
}

.hero-side-note {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  align-items: center;
  margin-top: auto;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(31, 94, 255, 0.18);
  color: #1744b7;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.45;
}

.hero-side-note strong {
  color: #001974;
  font-weight: 800;
}

.shield-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  color: #1767ff;
  background: linear-gradient(145deg, #eff4ff, #e5ecff);
}

.shield-icon svg {
  width: 34px;
  height: 34px;
  stroke-width: 1.8;
}

.steps-section {
  margin-top: 22px;
}

.signin-spotlight {
  margin-top: 22px;
}

.auth-hero {
  padding: 32px;
  background:
    radial-gradient(circle at top right, rgba(31, 94, 255, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 251, 245, 0.92));
  border: 1px solid rgba(31, 94, 255, 0.12);
  box-shadow: 0 26px 50px rgba(31, 94, 255, 0.08);
}

.auth-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 24px;
  align-items: center;
}

.auth-hero-copy .section-title {
  max-width: 640px;
}

.auth-hero-form {
  position: relative;
  margin-top: 0;
  padding: 24px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(20, 32, 51, 0.08);
  box-shadow: 0 14px 34px rgba(20, 32, 51, 0.06);
}

.auth-hero-form .field,
.auth-hero-form.field {
  gap: 10px;
}

.auth-notice {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: start;
  margin-top: 14px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(31, 94, 255, 0.16);
  background: rgba(31, 94, 255, 0.07);
  color: #1b2a4a;
  line-height: 1.45;
}

.auth-notice::before {
  content: "OK";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: linear-gradient(135deg, #0f5fff, #2567ff);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  box-shadow: 0 12px 22px rgba(31, 94, 255, 0.2);
}

.auth-notice.warn {
  border-color: rgba(180, 83, 9, 0.2);
  background: rgba(180, 83, 9, 0.08);
}

.auth-notice.warn::before {
  content: "!";
  background: linear-gradient(135deg, #b45309, #f59e0b);
}

.auth-notice.info::before {
  content: "...";
}

.auth-notice-title {
  display: block;
  color: #10213d;
  font-size: 15px;
  font-weight: 900;
}

.auth-notice-text {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.auth-focus-tag {
  position: absolute;
  top: -14px;
  right: 20px;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0f172a, #215cff);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 14px 24px rgba(31, 94, 255, 0.18);
}

.toast-stack {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 20;
  display: grid;
  gap: 10px;
  width: min(390px, calc(100vw - 28px));
  pointer-events: none;
}

.toast {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(31, 94, 255, 0.18);
  box-shadow: 0 22px 50px rgba(16, 22, 36, 0.16);
  backdrop-filter: blur(18px);
  animation: toast-in 0.22s ease both;
}

.toast::before {
  content: "OK";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 15px;
  background: linear-gradient(135deg, #0f5fff, #2567ff);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.toast.warn {
  border-color: rgba(180, 83, 9, 0.22);
}

.toast.warn::before {
  content: "!";
  background: linear-gradient(135deg, #b45309, #f59e0b);
}

.toast-title {
  color: #10213d;
  font-size: 15px;
  font-weight: 900;
}

.toast-text {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.auth-hero-side {
  display: grid;
  gap: 14px;
}

.auth-hero-grid-compact {
  align-items: start;
}

.steps-header {
  max-width: 640px;
  margin-bottom: 18px;
}

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

.mini-step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: start;
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 252, 247, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.mini-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: linear-gradient(135deg, #0f172a, #245eff);
  color: #fff;
  font-family: "Space Grotesk", "Segoe UI", Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  box-shadow: 0 14px 26px rgba(31, 94, 255, 0.18);
}

.mini-step strong {
  display: block;
  margin-bottom: 6px;
  font-size: 17px;
  letter-spacing: -0.02em;
}

.mini-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.commerce-layout {
  display: grid;
  gap: 22px;
  margin-top: 22px;
  align-items: start;
}

.auth-column {
  display: grid;
  gap: 18px;
}

.panel,
.pricing-card {
  padding: 30px;
}

.trust-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.trust-inline-item {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(20, 32, 51, 0.08);
  color: #20304d;
  font-size: 13px;
  font-weight: 700;
}

.field {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.field label {
  font-size: 14px;
  font-weight: 700;
}

.field input {
  width: 100%;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  font-size: 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.field input:focus {
  outline: none;
  border-color: rgba(31, 94, 255, 0.42);
  box-shadow: 0 0 0 4px rgba(31, 94, 255, 0.12);
}

.status {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 16px;
}

.status strong {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 16px;
  background: rgba(31, 94, 255, 0.08);
  color: var(--brand-deep);
  font-size: 15px;
}

.pricing-card {
  background:
    radial-gradient(circle at top right, rgba(255, 202, 114, 0.24), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 251, 245, 0.92));
}

.pricing-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  gap: 18px;
  align-items: end;
}

.pricing-aside {
  padding: 18px;
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.pricing-aside strong,
.faq-card h3 {
  display: block;
}

.pricing-aside span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.55;
}

.plan-stack {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.pricing-lock {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(15, 23, 42, 0.06);
  border: 1px dashed rgba(15, 23, 42, 0.16);
  color: #344154;
  font-weight: 700;
  line-height: 1.55;
}

.plan-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(20, 32, 51, 0.08);
}

.plan-row.featured {
  border-color: rgba(31, 94, 255, 0.28);
  background:
    radial-gradient(circle at top right, rgba(31, 94, 255, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(241, 246, 255, 0.98), rgba(255, 255, 255, 0.94));
  box-shadow: 0 24px 44px rgba(31, 94, 255, 0.12);
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 11px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.pill-strong {
  background: rgba(15, 23, 42, 0.92);
  color: #fff;
}

.plan-copy h3 {
  margin: 12px 0 0;
  font-size: 38px;
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.plan-copy .name {
  margin-top: 6px;
  font-size: 18px;
  font-weight: 800;
}

.plan-copy p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

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

.button,
button {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  border-radius: 18px;
  padding: 15px 20px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.16s ease, opacity 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

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

.button:disabled,
button:disabled {
  cursor: not-allowed;
  opacity: 1;
  transform: none;
}

.pricing-card button:disabled {
  background: #eef2f8;
  color: #7a8699;
  border: 1px solid rgba(20, 32, 51, 0.08);
  box-shadow: none;
}

.button-primary {
  background: linear-gradient(135deg, #0f5fff, #2567ff);
  color: #fff;
  box-shadow:
    0 18px 32px rgba(8, 64, 210, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  border: 1px solid rgba(20, 32, 51, 0.12);
  box-shadow: 0 8px 20px rgba(20, 32, 51, 0.05);
}

.button-link {
  background: transparent;
  color: var(--brand);
  border: 1px dashed rgba(31, 94, 255, 0.34);
}

.button-ghost {
  background: rgba(4, 14, 62, 0.22);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.hero-cta {
  min-width: 292px;
  min-height: 66px;
  border-radius: 12px;
  font-size: 19px;
}

.hero-cta svg {
  width: 25px;
  height: 25px;
  stroke-width: 2.3;
}

.hero-ghost {
  min-width: 206px;
  min-height: 66px;
  border-radius: 12px;
  font-size: 19px;
}

.hero-ghost svg {
  width: 26px;
  height: 26px;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) repeat(3, minmax(0, 0.7fr));
  gap: 18px;
  margin-top: 22px;
}

.faq-intro,
.faq-card {
  padding: 28px;
}

.faq-card {
  background: rgba(255, 255, 255, 0.82);
}

.faq-card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.faq-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.support-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding: 0 4px;
}

.support-copy p,
.support-contact {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.support-contact {
  font-weight: 800;
  color: var(--brand-deep);
}

.support-email {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(15, 23, 42, 0.28);
}

.support-email:hover {
  border-bottom-color: rgba(31, 94, 255, 0.6);
}

.tiny {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.footer {
  margin-top: 22px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  text-align: center;
}

.hidden {
  display: none !important;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes toast-in {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@media (max-width: 1040px) {
  .hero-combined,
  .commerce-layout,
  .faq-section,
  .auth-hero-grid,
  .pricing-header,
  .step-list {
    grid-template-columns: 1fr;
  }

  .hero-combined {
    min-height: auto;
    padding: 28px;
  }

  .hero-main {
    gap: 24px;
  }

  .hero-side {
    min-height: auto;
  }

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

  .plan-row .button {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 1280px) and (min-width: 1041px) {
  .hero-combined {
    grid-template-columns: minmax(0, 1.24fr) minmax(400px, 0.9fr);
    gap: 26px;
    min-height: 720px;
    padding-left: 34px;
  }

  .hero-main h1 {
    font-size: clamp(52px, 4.6vw, 68px);
  }

  .hero-lead {
    font-size: 18px;
  }

  .hero-side {
    padding: 34px 24px 24px;
  }

  .activation-step {
    grid-template-columns: 30px 64px 1fr;
    gap: 16px;
    min-height: 106px;
  }

  .activation-icon {
    width: 64px;
    height: 64px;
  }

  .activation-step p {
    font-size: 14px;
  }
}

@media (max-width: 720px) {
  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }

  body {
    background: linear-gradient(180deg, #f8fbff 0%, #fff8ef 100%);
    padding: 14px 12px 36px;
  }

  body::before {
    display: none;
  }

  .shell {
    max-width: 100%;
  }

  .home-link {
    width: 100%;
    justify-content: center;
    margin: 0 0 10px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: none;
  }

  .card,
  .toast,
  .mini-step {
    backdrop-filter: none;
  }

  .hero-main,
  .hero-side,
  .panel,
  .pricing-card,
  .faq-intro,
  .faq-card {
    animation: none;
  }

  .hero-combined::before,
  .hero-combined::after {
    display: none;
  }

  .toast-stack {
    top: 10px;
    right: 10px;
    left: 10px;
    width: auto;
  }

  .hero-main,
  .hero-combined,
  .hero-side,
  .auth-hero,
  .panel,
  .pricing-card,
  .faq-intro,
  .faq-card {
    padding: 22px;
    border-radius: 24px;
  }

  .hero-combined {
    gap: 16px;
    padding: 14px;
    border-radius: 28px;
    background: linear-gradient(145deg, #071642 0%, #0622a4 58%, #236cff 100%);
    box-shadow:
      0 18px 38px rgba(8, 22, 84, 0.16),
      inset 0 0 0 1px rgba(82, 132, 255, 0.32);
  }

  .hero-main {
    padding: 12px 8px 4px;
  }

  .hero-brand-mark {
    gap: 10px;
    font-size: 12px;
    letter-spacing: 0.16em;
  }

  .spark-mark {
    width: 20px;
    height: 20px;
  }

  .spark-mark::before {
    height: 20px;
  }

  .secure-chip {
    min-height: 34px;
    padding: 8px 14px;
    font-size: 11px;
  }

  .hero-topline {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 14px;
  }

  .hero-main h1 {
    max-width: 100%;
    font-size: clamp(34px, 10.8vw, 48px);
    letter-spacing: -0.045em;
  }

  .hero-main h1 span {
    filter: none;
  }

  .hero-lead,
  .hero-main p {
    font-size: 16px;
    line-height: 1.55;
  }

  .section-title {
    font-size: 28px;
  }

  [data-session-email] {
    display: block;
    margin-top: 4px;
    font-size: clamp(22px, 7vw, 28px);
    line-height: 1.08;
  }

  .hero-side .section-title {
    font-size: 28px;
  }

  .hero-side .hint {
    font-size: 16px;
  }

  .spotlight-title {
    font-size: 23px;
  }

  .hero-actions,
  .hero-badges,
  .trust-inline,
  .actions {
    gap: 10px;
  }

  .badge,
  .auth-hero-form,
  .button,
  button {
    width: 100%;
    justify-content: center;
  }

  .hero-cta,
  .hero-ghost {
    min-width: 0;
    min-height: 56px;
    font-size: 16px;
  }

  .hero-spotlight {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px;
    box-shadow: none;
  }

  .spotlight-gem {
    width: 64px;
    height: 64px;
  }

  .activation-list {
    gap: 12px;
  }

  .activation-step {
    grid-template-columns: 30px 54px 1fr;
    gap: 12px;
    min-height: auto;
    padding: 14px 12px;
    border-radius: 16px;
  }

  .activation-number {
    width: 30px;
    height: 30px;
    font-size: 15px;
  }

  .activation-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
  }

  .activation-icon svg {
    width: 28px;
    height: 28px;
  }

  .activation-step strong {
    font-size: 15px;
  }

  .activation-step p {
    font-size: 13px;
    line-height: 1.35;
  }

  .hero-side-note {
    grid-template-columns: 46px 1fr;
    gap: 12px;
    font-size: 14px;
    padding: 14px;
  }

  .shield-icon {
    width: 46px;
    height: 46px;
    border-radius: 13px;
  }

  .shield-icon svg {
    width: 28px;
    height: 28px;
  }

  .auth-focus-tag {
    position: static;
    margin-bottom: 4px;
    width: 100%;
    justify-content: center;
  }

  .mini-step {
    grid-template-columns: 44px 1fr;
    padding: 20px;
  }

  .mini-step span {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    font-size: 18px;
  }

  .plan-copy h3 {
    font-size: 32px;
  }

  .pricing-card {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 28px rgba(16, 22, 36, 0.08);
  }

  .pricing-aside,
  .plan-row,
  .plan-row.featured,
  .faq-card,
  .faq-intro,
  .mini-step,
  .auth-hero {
    box-shadow: none;
  }

  .plan-row,
  .plan-row.featured {
    background: #fff;
    min-width: 0;
  }

  .plan-row.featured {
    background: linear-gradient(180deg, #f3f7ff, #fff);
  }

  .plan-copy,
  .plan-copy p,
  .hint,
  .support-copy,
  .support-contact {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .support-strip {
    padding: 0;
  }
}
