:root {
  --activation-blue: #1688f8;
  --activation-blue-bright: #58a7ff;
  --activation-blue-hover: #79bbff;
  --activation-teal: #8bd7c7;
  --activation-ink: #f6f9ff;
  --activation-muted: #a9b6c8;
  --activation-panel: rgba(10, 18, 30, 0.86);
  --activation-panel-soft: rgba(13, 24, 39, 0.68);
  --activation-border: rgba(88, 167, 255, 0.2);
  --activation-border-strong: rgba(88, 167, 255, 0.42);
}

.activation-main {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.activation-main::before {
  position: absolute;
  inset: 0 0 auto;
  height: 760px;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 12%, rgba(22, 136, 248, 0.2), transparent 38%),
    radial-gradient(circle at 76% 30%, rgba(56, 205, 185, 0.08), transparent 28%);
  opacity: 0.92;
}

.activation-header-help {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #b8c5d6;
  font-size: 0.88rem;
  text-decoration: none;
  transition: color 160ms ease;
}

.activation-header-help:hover,
.activation-header-help:focus-visible {
  color: var(--activation-blue-hover);
}

.activation-result-section {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: calc(100vh - 88px);
  place-items: center;
  padding: 72px 20px 80px;
}

.activation-result-shell {
  width: min(100%, 780px);
}

.activation-result-card {
  position: relative;
  padding: clamp(34px, 6vw, 64px);
  overflow: hidden;
  text-align: center;
  background:
    linear-gradient(145deg, rgba(18, 31, 50, 0.96), rgba(7, 13, 23, 0.96));
  border: 1px solid var(--activation-border-strong);
  border-radius: 28px;
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.025) inset;
}

.activation-result-card::before {
  position: absolute;
  width: 360px;
  height: 360px;
  top: -260px;
  left: calc(50% - 180px);
  content: "";
  pointer-events: none;
  background: rgba(22, 136, 248, 0.28);
  border-radius: 999px;
  filter: blur(70px);
}

.activation-result-card > * {
  position: relative;
  z-index: 1;
}

.activation-success-icon {
  display: grid;
  width: 70px;
  height: 70px;
  margin: 0 auto 24px;
  color: #fff;
  background: linear-gradient(145deg, #2c9cff, #336cf4);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 22px;
  place-items: center;
  box-shadow: 0 16px 42px rgba(22, 136, 248, 0.34);
}

.activation-success-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.3;
}

.activation-eyebrow {
  margin: 0 0 12px;
  color: var(--activation-blue-bright);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.activation-result-card h1,
.activation-hero h1 {
  margin: 0;
  color: var(--activation-ink);
  font-weight: 760;
  letter-spacing: -0.045em;
}

.activation-result-card h1 {
  font-size: clamp(2rem, 6vw, 3.25rem);
  line-height: 1.04;
}

.activation-result-copy {
  max-width: 610px;
  margin: 20px auto 0;
  color: #c0cad8;
  font-size: clamp(1rem, 2.2vw, 1.12rem);
  line-height: 1.7;
}

.activation-result-copy + .activation-result-copy {
  margin-top: 12px;
}

.activation-action-wrap {
  margin: 32px auto 0;
}

.activation-primary {
  display: inline-flex;
  min-width: min(100%, 330px);
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 25px;
  color: #fff;
  font: inherit;
  font-size: 1rem;
  font-weight: 750;
  cursor: pointer;
  background: linear-gradient(135deg, #2496ff, #366ff4);
  border: 1px solid rgba(123, 190, 255, 0.74);
  border-radius: 13px;
  box-shadow: 0 14px 35px rgba(20, 114, 246, 0.26);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.activation-primary:hover,
.activation-primary:focus-visible {
  color: #fff;
  border-color: rgba(178, 220, 255, 0.95);
  box-shadow: 0 18px 42px rgba(20, 114, 246, 0.36);
  outline: none;
  transform: translateY(-2px);
}

.activation-primary:focus-visible {
  outline: 2px solid rgba(178, 220, 255, 0.95);
  outline-offset: 3px;
}

.activation-primary:active {
  transform: translateY(0);
}

.activation-primary:disabled {
  color: #8290a3;
  cursor: not-allowed;
  background: rgba(74, 88, 108, 0.34);
  border-color: rgba(150, 165, 184, 0.18);
  box-shadow: none;
  transform: none;
}

.activation-primary svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.activation-status {
  min-height: 24px;
  margin: 14px auto 0;
  color: #9eadc1;
  font-size: 0.9rem;
  line-height: 1.5;
}

.activation-status[data-tone="working"] {
  color: #b9dcff;
}

.activation-status[data-tone="error"] {
  color: #ffc1bd;
}

.activation-privacy-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 20px 0 0;
  color: #8391a5;
  font-size: 0.8rem;
}

.activation-privacy-note svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.activation-fallback {
  display: grid;
  margin-top: 30px;
  padding-top: 25px;
  color: #8f9db0;
  font-size: 0.9rem;
  line-height: 1.65;
  border-top: 1px solid rgba(120, 166, 218, 0.15);
  gap: 7px;
}

.activation-fallback a,
.activation-guide a,
.activation-support-card a,
.activation-trouble-card a {
  color: var(--activation-blue-bright);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.activation-fallback a:hover,
.activation-fallback a:focus-visible,
.activation-guide a:hover,
.activation-guide a:focus-visible,
.activation-support-card a:hover,
.activation-support-card a:focus-visible,
.activation-trouble-card a:hover,
.activation-trouble-card a:focus-visible {
  color: var(--activation-blue-hover);
}

.activation-result-card[data-state="missing"] .activation-success-icon {
  color: #dce7f5;
  background: linear-gradient(145deg, #47566b, #293548);
  border-color: rgba(187, 204, 226, 0.2);
  box-shadow: none;
}

.activation-guide {
  position: relative;
  z-index: 1;
  padding: 76px 20px 110px;
}

.activation-shell {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.activation-hero {
  max-width: 810px;
  margin: 0 auto 54px;
  text-align: center;
}

.activation-hero .demo-pill {
  margin-bottom: 21px;
}

.activation-hero h1 {
  font-size: clamp(2.65rem, 7vw, 5rem);
  line-height: 0.98;
}

.activation-hero h1 span {
  color: var(--activation-blue-bright);
}

.activation-hero > p {
  max-width: 690px;
  margin: 24px auto 0;
  color: #aebacc;
  font-size: clamp(1.03rem, 2vw, 1.2rem);
  line-height: 1.7;
}

.activation-paths {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
  align-items: start;
  gap: 20px;
}

.activation-path-card,
.activation-trouble-card,
.activation-support-card {
  background: linear-gradient(145deg, var(--activation-panel), rgba(7, 13, 23, 0.9));
  border: 1px solid var(--activation-border);
  border-radius: 22px;
  box-shadow: 0 22px 62px rgba(0, 0, 0, 0.24);
}

.activation-path-card {
  padding: clamp(25px, 4vw, 38px);
}

.activation-path-card.is-primary {
  border-color: var(--activation-border-strong);
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.28), 0 0 70px rgba(22, 136, 248, 0.06);
}

.activation-card-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.activation-card-heading h2 {
  margin: 0;
  color: #f4f8ff;
  font-size: clamp(1.35rem, 3vw, 1.8rem);
  letter-spacing: -0.025em;
}

.activation-card-heading p {
  margin: 9px 0 0;
  color: #93a1b5;
  line-height: 1.55;
}

.activation-card-badge {
  flex: 0 0 auto;
  padding: 6px 10px;
  color: #bde6ff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(22, 136, 248, 0.13);
  border: 1px solid rgba(88, 167, 255, 0.28);
  border-radius: 999px;
}

.activation-steps {
  display: grid;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  gap: 20px;
}

.activation-step {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
}

.activation-step-number {
  display: grid;
  width: 38px;
  height: 38px;
  color: #cbe8ff;
  font-weight: 800;
  background: rgba(22, 136, 248, 0.12);
  border: 1px solid rgba(88, 167, 255, 0.27);
  border-radius: 12px;
  place-items: center;
}

.activation-step h3 {
  margin: 1px 0 4px;
  color: #edf4ff;
  font-size: 1rem;
}

.activation-step p {
  margin: 0;
  color: #98a7ba;
  font-size: 0.92rem;
  line-height: 1.6;
}

.activation-manual {
  margin-top: 28px;
  padding: 20px;
  background: rgba(10, 24, 40, 0.66);
  border: 1px solid rgba(88, 167, 255, 0.16);
  border-radius: 15px;
}

.activation-manual h3 {
  margin: 0 0 12px;
  color: #dceaff;
  font-size: 0.92rem;
}

.activation-route {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.activation-route span:not(.activation-route-arrow) {
  padding: 7px 10px;
  color: #c5d2e3;
  font-size: 0.82rem;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(164, 192, 226, 0.13);
  border-radius: 8px;
}

.activation-route-arrow {
  color: #5683b2;
}

.activation-tip {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-top: 22px;
  padding: 15px 16px;
  color: #9facbd;
  font-size: 0.86rem;
  line-height: 1.55;
  background: rgba(139, 215, 199, 0.055);
  border: 1px solid rgba(139, 215, 199, 0.14);
  border-radius: 12px;
}

.activation-tip svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  color: var(--activation-teal);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.activation-section-heading {
  max-width: 660px;
  margin: 86px 0 28px;
}

.activation-section-heading h2 {
  margin: 0;
  color: #f1f6fd;
  font-size: clamp(1.8rem, 4vw, 2.55rem);
  letter-spacing: -0.035em;
}

.activation-section-heading p {
  margin: 12px 0 0;
  color: #97a5b8;
  line-height: 1.65;
}

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

.activation-trouble-card {
  padding: 24px;
}

.activation-trouble-icon {
  display: grid;
  width: 36px;
  height: 36px;
  margin-bottom: 17px;
  color: #89c4ff;
  background: rgba(22, 136, 248, 0.1);
  border: 1px solid rgba(88, 167, 255, 0.2);
  border-radius: 11px;
  place-items: center;
}

.activation-trouble-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.activation-trouble-card h3 {
  margin: 0;
  color: #eaf2fd;
  font-size: 1.02rem;
}

.activation-trouble-card p {
  margin: 8px 0 0;
  color: #95a4b7;
  font-size: 0.9rem;
  line-height: 1.65;
}

.activation-support-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 20px;
  padding: clamp(24px, 4vw, 34px);
  border-color: rgba(139, 215, 199, 0.18);
}

.activation-support-card h2 {
  margin: 0;
  color: #eff8f6;
  font-size: 1.25rem;
}

.activation-support-card p {
  margin: 8px 0 0;
  color: #98aaa7;
  line-height: 1.55;
}

.activation-support-link {
  flex: 0 0 auto;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 10px 16px;
  color: #c9f2ea !important;
  font-weight: 700;
  text-decoration: none !important;
  background: rgba(139, 215, 199, 0.08);
  border: 1px solid rgba(139, 215, 199, 0.25);
  border-radius: 10px;
  transition: background 160ms ease, border-color 160ms ease;
}

.activation-support-link:hover,
.activation-support-link:focus-visible {
  color: #e8fffa !important;
  background: rgba(139, 215, 199, 0.13);
  border-color: rgba(139, 215, 199, 0.45);
}

@media (max-width: 900px) {
  .activation-paths {
    grid-template-columns: 1fr;
  }

  .activation-path-card.is-primary {
    order: 0;
  }

  .activation-path-card:not(.is-primary) {
    order: 1;
  }
}

@media (max-width: 720px) {
  .activation-header-help {
    display: none;
  }

  .activation-result-section {
    min-height: calc(100vh - 70px);
    padding: 88px 14px 60px;
  }

  .activation-result-card {
    padding: 34px 22px;
    border-radius: 22px;
  }

  .activation-success-icon {
    width: 62px;
    height: 62px;
    border-radius: 19px;
  }

  .activation-guide {
    padding: 92px 15px 78px;
  }

  .activation-hero {
    margin-bottom: 38px;
    text-align: left;
  }

  .activation-hero > p {
    margin-left: 0;
  }

  .activation-card-heading {
    display: block;
  }

  .activation-card-badge {
    display: inline-flex;
    margin-top: 15px;
  }

  .activation-trouble-grid {
    grid-template-columns: 1fr;
  }

  .activation-support-card {
    display: block;
  }

  .activation-support-link {
    margin-top: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .activation-primary,
  .activation-header-help,
  .activation-support-link {
    transition: none;
  }
}
