.kicker,
.eyebrow {
  display: flex;
  gap: 11px;
  align-items: center;
  margin: 0 0 20px;
  color: var(--color-cyan);
  font-size: 0.74rem;
  font-weight: 820;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.kicker::before,
.eyebrow::before {
  width: 27px;
  height: 1px;
  background: currentColor;
  box-shadow: 0 0 12px currentColor;
  content: "";
}

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

.button {
  display: inline-flex;
  min-height: 51px;
  align-items: center;
  justify-content: center;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 15px;
  font-size: 0.92rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--transition-fast), border-color var(--transition-fast), background-color var(--transition-fast), box-shadow var(--transition-fast);
}

.button:hover {
  color: inherit;
  transform: translateY(-2px);
}

.button-primary,
.button.primary {
  background: linear-gradient(135deg, #56e4ff, #6f8fff);
  box-shadow: 0 16px 38px rgba(43, 158, 255, 0.25);
  color: #020a14;
}

.button-primary:hover,
.button.primary:hover {
  box-shadow: 0 20px 48px rgba(43, 158, 255, 0.36);
  color: #020a14;
}

.button-secondary,
.button.ghost {
  border-color: rgba(139, 176, 245, 0.26);
  background: rgba(14, 29, 52, 0.62);
  color: var(--color-text);
}

.button-secondary:hover,
.button.ghost:hover {
  border-color: rgba(79, 210, 255, 0.5);
  background: rgba(22, 43, 74, 0.78);
}

.button[aria-disabled="true"],
.button:disabled {
  border-color: rgba(143, 166, 198, 0.16);
  background: rgba(143, 166, 198, 0.08);
  box-shadow: none;
  color: #7e91ad;
  cursor: not-allowed;
  transform: none;
}

.text-link {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  color: var(--color-text);
  font-weight: 800;
  text-decoration-color: rgba(57, 216, 255, 0.5);
  text-underline-offset: 6px;
}

.text-link::after {
  color: var(--color-cyan);
  content: "\2192";
  transition: transform var(--transition-fast);
}

.text-link:hover::after {
  transform: translateX(3px);
}

.status-chip,
.badge {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-chip::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 12px currentColor;
  content: "";
}

.status-active {
  border-color: rgba(75, 225, 173, 0.3);
  background: rgba(75, 225, 173, 0.07);
  color: #aaf5da;
}

.status-planned {
  border-color: rgba(57, 216, 255, 0.3);
  background: rgba(57, 216, 255, 0.07);
  color: #a6eeff;
}

.status-future,
.badge.muted {
  border-color: rgba(121, 151, 255, 0.32);
  background: rgba(121, 151, 255, 0.08);
  color: #c3ceff;
}

.status-warning {
  border-color: rgba(255, 196, 107, 0.3);
  background: rgba(255, 196, 107, 0.06);
  color: #ffe0a7;
}

.card,
.page-card,
.feature-card,
.legal-card,
.support-card,
.requirement-card,
.download-card,
.feedback-card {
  position: relative;
  overflow: hidden;
  padding: clamp(25px, 3vw, 38px);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-medium);
  background: linear-gradient(145deg, rgba(17, 35, 61, 0.8), rgba(6, 15, 28, 0.9));
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
}

.card::after,
.page-card::after,
.feature-card::after {
  position: absolute;
  right: -90px;
  bottom: -120px;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(55, 200, 255, 0.1), transparent 67%);
  content: "";
  pointer-events: none;
}

.card > *,
.page-card > *,
.feature-card > * {
  position: relative;
  z-index: 1;
}

.card p,
.page-card p,
.feature-card p,
.legal-card p,
.support-card p,
.requirement-card p,
.download-card p,
.feedback-card p {
  color: var(--color-text-muted);
}

.card h2,
.page-card h2,
.download-card h2 {
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  letter-spacing: -0.04em;
}

.card-grid,
.page-link-grid,
.feature-grid,
.legal-layout,
.support-grid,
.requirements-grid,
.download-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.card-grid.three,
.feature-grid.three,
.requirements-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.check-list,
.feature-list {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  color: var(--color-text-muted);
  list-style: none;
}

.check-list li,
.feature-list li {
  position: relative;
  padding-left: 24px;
}

.check-list li::before,
.feature-list li::before {
  position: absolute;
  top: 0.66em;
  left: 2px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-cyan);
  box-shadow: 0 0 10px rgba(57, 216, 255, 0.75);
  content: "";
}

.notice {
  padding: 18px 20px;
  border-left: 2px solid var(--color-cyan);
  background: rgba(29, 66, 100, 0.19);
  color: var(--color-text-muted);
}

.notice.warning {
  border: 1px solid rgba(255, 196, 107, 0.24);
  border-left-width: 3px;
  border-radius: var(--radius-small);
  background: rgba(255, 196, 107, 0.06);
}

.notice strong {
  color: var(--color-text);
}

.trust-row,
.principle-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  align-items: center;
  margin: 30px 0 0;
  color: var(--color-text-muted);
  font-size: 0.76rem;
  font-weight: 720;
}

.trust-row span,
.principle-strip span {
  display: inline-flex;
  align-items: center;
}

.trust-row span::before,
.principle-strip span::before {
  width: 5px;
  height: 5px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--color-cyan);
  box-shadow: 0 0 9px var(--color-cyan);
  content: "";
}

.final-cta,
.cta {
  display: flex;
  gap: 36px;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: clamp(70px, 9vw, 126px);
  padding: clamp(31px, 5vw, 64px);
  border: 1px solid rgba(77, 204, 255, 0.29);
  border-radius: var(--radius-large);
  background:
    radial-gradient(circle at 85% 0%, rgba(74, 131, 255, 0.2), transparent 36%),
    linear-gradient(140deg, rgba(15, 37, 65, 0.9), rgba(6, 16, 30, 0.92));
  box-shadow: var(--shadow-panel);
}

.final-cta h2,
.cta h2 {
  max-width: 760px;
  font-size: clamp(2.2rem, 4.3vw, 4.2rem);
}

.final-cta .hero-actions,
.cta .hero-actions {
  flex: 0 0 auto;
}

.code-block {
  max-width: 100%;
  overflow-x: auto;
  padding: 15px 17px;
  border: 1px solid var(--color-line);
  border-radius: 12px;
  background: rgba(2, 8, 17, 0.75);
  color: #cae8ff;
  font-size: 0.78rem;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

@media (max-width: 900px) {
  .card-grid,
  .card-grid.three,
  .page-link-grid,
  .feature-grid,
  .feature-grid.three,
  .legal-layout,
  .support-grid,
  .requirements-grid,
  .download-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .final-cta,
  .cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .hero-actions,
  .final-cta .hero-actions,
  .cta .hero-actions {
    width: 100%;
  }

  .button {
    width: 100%;
  }
}
