:root {
  --kc-bg: #050505;
  --kc-bg-soft: #0a0a0a;
  --kc-surface: #111111;
  --kc-border: rgba(255, 255, 255, 0.1);
  --kc-text: #f4f4f5;
  --kc-muted: #a1a1aa;
  --kc-accent: #e5080d;
  --kc-accent-deep: #a5181b;
}

body {
  color: var(--kc-text);
  background:
    radial-gradient(circle at 10% -10%, rgba(229, 8, 13, 0.22) 0%, rgba(229, 8, 13, 0) 40%),
    radial-gradient(circle at 90% 0%, rgba(165, 24, 27, 0.28) 0%, rgba(165, 24, 27, 0) 45%),
    var(--kc-bg) !important;
  min-height: 100vh;
}


.navbar {
  background: rgba(17, 19, 25, 0.8) !important;
  border-color: rgba(255, 255, 255, 0.16) !important;
  backdrop-filter: blur(10px);
}

main.container {
  position: relative;
  z-index: 2;
}

.alert {
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.alert-info {
  background: rgba(59, 130, 246, 0.15);
  color: #dbeafe;
}

.alert-success {
  background: rgba(16, 185, 129, 0.16);
  color: #d1fae5;
}

.alert-warning {
  background: rgba(245, 158, 11, 0.2);
  color: #fef3c7;
}

.alert-danger {
  background: rgba(239, 68, 68, 0.2);
  color: #fee2e2;
}

.kc-landing {
  color: var(--kc-text);
}

.kc-section {
  padding: 1.4rem;
  border-radius: 1.5rem;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.88), rgba(10, 10, 10, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.kc-hero {
  background:
    radial-gradient(circle at 15% 10%, rgba(229, 8, 13, 0.2), transparent 40%),
    radial-gradient(circle at 85% 100%, rgba(165, 24, 27, 0.23), transparent 50%),
    linear-gradient(165deg, rgba(20, 20, 20, 0.95) 0%, rgba(8, 8, 8, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.45);
}

.kc-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-weight: 700;
  color: #f87171;
}

.kc-lead,
.kc-muted {
  color: var(--kc-muted);
}

.kc-panel {
  background: rgba(18, 18, 18, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.2rem;
}

.kc-btn {
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: all 0.24s ease;
}

.kc-btn-primary {
  background: linear-gradient(120deg, var(--kc-accent), #f43f5e);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 30px rgba(229, 8, 13, 0.32);
}

.kc-btn-primary:hover {
  background: linear-gradient(120deg, #f43f5e, var(--kc-accent));
  color: #fff;
  transform: translateY(-1px);
}

.kc-btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.14);
}

.kc-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.kc-mini-points span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #d4d4d8;
  font-size: 0.92rem;
}

.kc-mini-points span::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: linear-gradient(180deg, #f87171, var(--kc-accent));
}

.kc-list {
  color: #e4e4e7;
}

.kc-list li {
  margin-bottom: 0.62rem;
  position: relative;
  padding-left: 1rem;
}

.kc-list li::before {
  content: "-";
  position: absolute;
  left: 0;
  top: 0;
  color: #f87171;
}

.kc-agent-table thead th {
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #d4d4d8;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.02);
}

.kc-agent-table th,
.kc-agent-table td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #e4e4e7;
  padding: 0.9rem 0.8rem;
  font-size: 0.95rem;
}

.kc-agent-table tbody th {
  color: #fff;
  font-weight: 600;
}

.kc-wow-card {
  background: linear-gradient(170deg, rgba(22, 22, 22, 0.95), rgba(11, 11, 11, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.kc-wow-card h3 {
  color: #fff;
}

.kc-wow-card p {
  color: #d4d4d8;
}

.kc-wow-card small {
  color: #a1a1aa;
}

.kc-wow-card:hover {
  transform: translateY(-4px);
  border-color: rgba(229, 8, 13, 0.42);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.42);
}

.kc-disclaimer {
  color: #71717a;
  font-size: 0.85rem;
}

.kc-compare-card {
  background: linear-gradient(170deg, rgba(20, 20, 20, 0.95), rgba(9, 9, 9, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.2rem;
}

.kc-compare-best {
  border-color: rgba(229, 8, 13, 0.46);
  box-shadow: 0 0 42px rgba(229, 8, 13, 0.18);
  position: relative;
  overflow: hidden;
}

.kc-compare-best::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at top right, rgba(229, 8, 13, 0.2), transparent 58%);
}

.kc-best-badge {
  display: inline-flex;
  padding: 0.28rem 0.72rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
  background: rgba(229, 8, 13, 0.24);
  border: 1px solid rgba(229, 8, 13, 0.45);
  color: #fecaca;
}

.kc-compare-list li {
  margin-bottom: 0.66rem;
  color: #d4d4d8;
  padding-left: 1rem;
  position: relative;
}

.kc-compare-list li::before {
  content: ">";
  position: absolute;
  left: 0;
  top: 0;
  color: #f87171;
}

.kc-dashboard-server-card {
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.92), rgba(10, 10, 10, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 1.25rem;
}

.kc-dashboard-progress {
  position: relative;
}

.kc-dashboard-stepper {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 0.95rem;
}

.kc-dashboard-step {
  position: relative;
  display: grid;
  gap: 0.45rem;
  min-width: 0;
}

.kc-dashboard-step::after {
  content: "";
  position: absolute;
  top: 0.42rem;
  left: calc(100% - 0.2rem);
  width: calc(100% - 0.35rem);
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.kc-dashboard-step:last-child::after {
  display: none;
}

.kc-dashboard-step__dot {
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 0 rgba(229, 8, 13, 0);
  transition: background-color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.kc-dashboard-step__label {
  font-size: 0.79rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.7);
}

.kc-dashboard-step--complete .kc-dashboard-step__dot {
  background: rgba(229, 8, 13, 0.88);
  border-color: rgba(248, 113, 113, 0.95);
  box-shadow: 0 0 0 0.22rem rgba(229, 8, 13, 0.12);
}

.kc-dashboard-step--complete .kc-dashboard-step__label,
.kc-dashboard-step--current .kc-dashboard-step__label {
  color: #fff;
}

.kc-dashboard-step--current .kc-dashboard-step__dot {
  background: #f8fafc;
  border-color: #fff;
  box-shadow: 0 0 0 0.28rem rgba(255, 255, 255, 0.08);
}

.kc-dashboard-step--error .kc-dashboard-step__dot {
  background: #f87171;
  border-color: #fecaca;
  box-shadow: 0 0 0 0.22rem rgba(248, 113, 113, 0.12);
}

.kc-dashboard-step--error .kc-dashboard-step__label {
  color: #fecaca;
}

.kc-dashboard-progress__track {
  height: 0.6rem;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.kc-dashboard-progress__bar {
  transition: width 0.3s ease, background-color 0.2s ease;
}

@media (max-width: 991.98px) {
  .kc-dashboard-stepper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .kc-dashboard-step::after {
    display: none;
  }
}
.kc-plan-card {
  background: linear-gradient(180deg, rgba(19, 19, 19, 0.95), rgba(10, 10, 10, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 1.2rem;
  position: relative;
}

.kc-plan-best {
  border-color: rgba(229, 8, 13, 0.46);
  box-shadow: 0 0 36px rgba(229, 8, 13, 0.16);
}

.kc-plan-card .display-6 {
  color: #fff;
}

.kc-pricing-card {
  position: relative;
  isolation: isolate;
  border-radius: 2rem;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.kc-pricing-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    inset 0 -24px 36px -30px rgba(0, 0, 0, 0.74);
  pointer-events: none;
  z-index: 0;
}

.kc-pricing-card>* {
  position: relative;
  z-index: 2;
}

/* Tier 1 - Бюджетный  */
.kc-pricing-card--tier1 {
  box-shadow:
    0 30px 46px -32px rgba(0, 0, 0, 0.94),
    0 0 0 1px rgba(255, 255, 255, 0.02) inset;
}

.kc-pricing-card--tier1::before {
  background:
    radial-gradient(92% 54% at 50% 0%, rgba(255, 245, 236, 0.04) 0%, rgba(255, 245, 236, 0.01) 32%, rgba(255, 245, 236, 0) 74%),
    radial-gradient(118% 80% at 16% 0%, rgba(59, 130, 246, 0.18) 0%, rgba(59, 130, 246, 0.08) 24%, rgba(59, 130, 246, 0) 58%),
    radial-gradient(100% 82% at 88% 100%, rgba(16, 185, 129, 0.16) 0%, rgba(16, 185, 129, 0.08) 34%, rgba(16, 185, 129, 0) 68%),
    linear-gradient(156deg, rgba(20, 24, 28, 0.98) 0%, rgba(14, 16, 20, 0.98) 48%, rgba(10, 11, 14, 0.99) 100%);
}

/* Tier 2 - Базовый (Featured) */
.kc-pricing-card--tier2 {
  transform: translateY(-0.75rem);
  z-index: 10;
  border-color: rgba(239, 68, 68, 0.25);
  box-shadow:
    0 30px 46px -32px rgba(0, 0, 0, 0.94),
    0 0 50px -15px rgba(239, 68, 68, 0.35),
    0 0 0 1px rgba(239, 68, 68, 0.1) inset;
}

@media (max-width: 768px) {
  .kc-pricing-card--tier2 {
    transform: none;
  }
}

.kc-pricing-card--tier2::before {
  background:
    radial-gradient(92% 54% at 50% 0%, rgba(255, 245, 236, 0.14) 0%, rgba(255, 245, 236, 0.05) 32%, rgba(255, 245, 236, 0) 74%),
    radial-gradient(118% 80% at 16% 0%, rgba(239, 68, 68, 0.18) 0%, rgba(239, 68, 68, 0.08) 24%, rgba(239, 68, 68, 0) 58%),
    radial-gradient(100% 82% at 88% 100%, rgba(251, 146, 60, 0.16) 0%, rgba(244, 114, 182, 0.08) 34%, rgba(244, 114, 182, 0) 68%),
    linear-gradient(156deg, rgba(28, 24, 24, 0.98) 0%, rgba(18, 17, 18, 0.98) 48%, rgba(10, 10, 11, 0.99) 100%);
}

/* Tier 3 - Про */
.kc-pricing-card--tier3 {
  box-shadow:
    0 30px 46px -32px rgba(0, 0, 0, 0.94),
    0 0 0 1px rgba(255, 255, 255, 0.02) inset;
}

.kc-pricing-card--tier3::before {
  background:
    radial-gradient(92% 54% at 50% 0%, rgba(255, 245, 236, 0.04) 0%, rgba(255, 245, 236, 0.01) 32%, rgba(255, 245, 236, 0) 74%),
    radial-gradient(118% 80% at 16% 0%, rgba(168, 85, 247, 0.18) 0%, rgba(168, 85, 247, 0.08) 24%, rgba(168, 85, 247, 0) 58%),
    radial-gradient(100% 82% at 88% 100%, rgba(236, 72, 153, 0.16) 0%, rgba(236, 72, 153, 0.08) 34%, rgba(236, 72, 153, 0) 68%),
    linear-gradient(156deg, rgba(24, 20, 28, 0.98) 0%, rgba(16, 14, 20, 0.98) 48%, rgba(11, 10, 14, 0.99) 100%);
}

.kc-pricing-card-badge {
  top: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0.42rem 0.96rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, rgba(53, 33, 34, 0.97), rgba(34, 26, 27, 0.98));
  color: rgba(255, 244, 239, 0.96);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  white-space: nowrap;
  transform: translate(-50%, -50%);
  box-shadow:
    0 12px 24px -18px rgba(0, 0, 0, 0.8),
    0 0 18px -16px rgba(248, 113, 113, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  z-index: 3;
}

.kc-pricing-card-kicker {
  margin: 0 0 0.7rem;
  color: rgba(254, 226, 226, 0.78);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.kc-pricing-card-summary {
  display: grid;
  grid-template-columns: 1.4rem minmax(0, 1fr);
  gap: 0.7rem;
  align-items: start;
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(248, 113, 113, 0.08) 0%, rgba(248, 113, 113, 0) 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.018) 100%);
  color: rgba(244, 244, 245, 0.92);
  font-size: 0.92rem;
  line-height: 1.5;
  box-shadow:
    0 12px 24px -24px rgba(0, 0, 0, 0.9),
    0 0 0 1px rgba(255, 255, 255, 0.02) inset;
}

.kc-pricing-card-summary-icon {
  display: inline-flex;
  width: 1.4rem;
  height: 1.4rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(251, 146, 60, 0.3);
  background: rgba(251, 146, 60, 0.12);
  color: rgba(255, 237, 213, 0.96);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1;
}

.kc-pricing-card-cta {
  border: 1px solid rgba(255, 255, 255, 0.52);
  background: linear-gradient(180deg, rgba(249, 246, 242, 0.98) 0%, rgba(240, 235, 230, 0.96) 100%);
  color: #0f172a;
  box-shadow:
    0 16px 28px -24px rgba(255, 255, 255, 0.32),
    0 10px 26px -24px rgba(248, 113, 113, 0.28),
    0 0 0 1px rgba(15, 23, 42, 0.05) inset;
  transition:
    transform 180ms ease,
    box-shadow 220ms ease,
    filter 220ms ease;
}

.kc-pricing-card-cta:hover {
  color: #020617;
  transform: translateY(-1px);
  filter: brightness(1.01);
  box-shadow:
    0 18px 30px -22px rgba(255, 255, 255, 0.38),
    0 12px 28px -20px rgba(251, 146, 60, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset;
}

footer {
  border-color: rgba(255, 255, 255, 0.08) !important;
  background: rgba(0, 0, 0, 0.65);
}

footer small {
  color: #a1a1aa;
}

@media (max-width: 991.98px) {
  .kc-section {
    padding: 1rem;
  }

  .kc-agent-table th,
  .kc-agent-table td {
    font-size: 0.86rem;
    min-width: 180px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .kc-btn,
  .kc-wow-card {
    transition: none;
  }
}

/* Extracted from index.html */
html,
body {
  background-color: #050505;
  min-height: 100%;
  overscroll-behavior: none;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  margin: 0;
}

.kc-landing-page [data-site-header],
.kc-landing-page [data-hero-title] .kc-hero-title-line,
.kc-landing-page [data-hero-copy],
.kc-landing-page [data-hero-actions] {
  will-change: transform, opacity;
}

.kc-terminal-font {
  font-family: 'JetBrains Mono', 'SFMono-Regular', Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;
}

.kc-live-terminal {
  box-shadow:
    0 34px 72px -26px rgba(0, 0, 0, 0.88),
    0 0 0 1px rgba(248, 113, 113, 0.12),
    0 -14px 40px -36px rgba(239, 68, 68, 0.5);
}

.kc-live-terminal::before {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  top: -11px;
  height: 28px;
  background: radial-gradient(ellipse at 50% 100%, rgba(248, 113, 113, 0.52) 0%, rgba(248, 113, 113, 0.14) 48%, rgba(248, 113, 113, 0) 82%);
  filter: blur(8px);
  pointer-events: none;
  z-index: 1;
}

.kc-live-terminal>* {
  position: relative;
  z-index: 2;
}

.kc-live-log {
  max-height: 500px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(145, 145, 155, 0.45) transparent;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.05);
}

.kc-live-log::-webkit-scrollbar {
  width: 7px;
}

.kc-live-log::-webkit-scrollbar-thumb {
  background: rgba(145, 145, 155, 0.52);
  border-radius: 999px;
}

.kc-log-line {
  opacity: 1;
  transform: translateY(0);
  will-change: transform, opacity;
  white-space: pre-wrap;
  word-break: break-word;
}

.kc-log-line-enter {
  opacity: 0;
  transform: translateY(6px);
  animation: kc-log-enter 220ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.kc-role {
  font-weight: 600;
  margin-right: 0.5rem;
}

.kc-role-user {
  color: #d4d4d8;
}

.kc-role-openclaw {
  color: #f87171;
}

.kc-role-tool {
  color: #fbbf24;
}

.kc-role-done {
  color: #86efac;
}

.kc-prompt {
  color: #e5e7eb;
}

.kc-command {
  color: #ffffff;
}

.kc-command-prefix {
  color: #c7c9cf;
}

.kc-command-focus {
  color: #f4f4f5;
  font-weight: 500;
  background: transparent;
}

.kc-last-login {
  color: #a7a7ad;
  letter-spacing: 0.01em;
  margin-bottom: 0.55rem;
}

.kc-user-shell-command {
  margin-top: 0.1rem;
  margin-bottom: 0.9rem;
  white-space: normal;
}

.kc-line-meta {
  color: #8f8f98;
  letter-spacing: 0.02em;
  margin: 0.55rem 0 0.35rem;
}

.kc-line-plan {
  margin-bottom: 1rem;
}

.kc-line-action {
  color: #9a9aa3;
  margin: 0.35rem 0;
}

@keyframes kc-log-enter {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

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

@media (max-width: 767px) {
  .kc-live-log {
    max-height: 360px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .kc-log-line-enter {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
}

.kc-site-header {
  border-bottom: 1px solid transparent;
  border-radius: 9999px;
  background-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

.kc-site-header--scrolled {
  background-color: rgba(12, 12, 12, 0.88);
  border-bottom-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 14px 28px -20px rgba(0, 0, 0, 0.56);
}

.kc-site-header-shell {
  left: 0.85rem;
  right: 0.85rem;
}

html.kc-page-loading .kc-landing-page [data-hero-title] .kc-hero-title-line,
html.kc-page-loading .kc-landing-page [data-hero-copy],
html.kc-page-loading .kc-landing-page [data-hero-actions] {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
}

html.kc-page-ready .kc-landing-page [data-hero-title] .kc-hero-title-line:first-child {
  animation: kc-hero-rise 440ms ease-out 60ms both;
}

html.kc-page-ready .kc-landing-page [data-hero-title] .kc-hero-title-line:last-child {
  animation: kc-hero-rise 440ms ease-out 120ms both;
}

html.kc-page-ready .kc-landing-page [data-hero-copy] {
  animation: kc-hero-rise 440ms ease-out 180ms both;
}

html.kc-page-ready .kc-landing-page [data-hero-actions] {
  animation: kc-hero-rise 440ms ease-out 240ms both;
}

.kc-hero-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(120% 92% at 50% -18%, rgba(252, 96, 96, 0.22) 0%, rgba(252, 96, 96, 0.08) 36%, rgba(252, 96, 96, 0) 69%),
    linear-gradient(180deg, rgba(8, 9, 13, 0.78) 0%, rgba(5, 5, 5, 0.06) 72%, rgba(5, 5, 5, 0) 100%);
}

.kc-hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: clamp(94px, 10vw, 136px) 100%, 100% clamp(62px, 7vw, 90px);
  opacity: 0.18;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.45) 62%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.45) 62%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.kc-hero-section::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -4.2rem;
  width: min(920px, 88vw);
  height: clamp(150px, 18vw, 220px);
  background: radial-gradient(ellipse at 50% 100%, rgba(239, 68, 68, 0.45) 0%, rgba(239, 68, 68, 0.13) 46%, rgba(239, 68, 68, 0.03) 62%, rgba(239, 68, 68, 0) 82%);
  filter: blur(10px);
  pointer-events: none;
  z-index: 0;
}

.kc-hero-stars {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.46;
  background-image:
    radial-gradient(circle at 9% 12%, rgba(255, 255, 255, 0.78) 0 1.1px, transparent 1.2px),
    radial-gradient(circle at 17% 24%, rgba(255, 255, 255, 0.56) 0 1px, transparent 1.1px),
    radial-gradient(circle at 27% 16%, rgba(255, 255, 255, 0.72) 0 1.1px, transparent 1.2px),
    radial-gradient(circle at 35% 31%, rgba(255, 255, 255, 0.58) 0 1px, transparent 1.1px),
    radial-gradient(circle at 47% 20%, rgba(255, 255, 255, 0.74) 0 1.1px, transparent 1.2px),
    radial-gradient(circle at 56% 35%, rgba(255, 255, 255, 0.6) 0 1px, transparent 1.1px),
    radial-gradient(circle at 66% 15%, rgba(255, 255, 255, 0.7) 0 1.1px, transparent 1.2px),
    radial-gradient(circle at 76% 28%, rgba(255, 255, 255, 0.64) 0 1px, transparent 1.1px),
    radial-gradient(circle at 86% 19%, rgba(255, 255, 255, 0.75) 0 1.1px, transparent 1.2px),
    radial-gradient(circle at 93% 33%, rgba(255, 255, 255, 0.55) 0 1px, transparent 1.1px);
  mask-image: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.98) 0%,
      rgba(0, 0, 0, 0.9) 28%,
      rgba(0, 0, 0, 0.45) 46%,
      rgba(0, 0, 0, 0.08) 56%,
      transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.98) 0%,
      rgba(0, 0, 0, 0.9) 28%,
      rgba(0, 0, 0, 0.45) 46%,
      rgba(0, 0, 0, 0.08) 56%,
      transparent 100%);
}

.kc-hero-content {
  position: relative;
  z-index: 2;
}

.kc-hero-terminal-wrap {
  margin-top: clamp(-0.65rem, -1vw, -0.2rem);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  position: relative;
  isolation: isolate;
}



.kc-hero-terminal-wrap>* {
  position: relative;
  z-index: 1;
}

.kc-terminal-caption {
  margin-top: clamp(0.85rem, 1.8vw, 1.2rem);
  text-align: center;
  font-size: clamp(0.78rem, 1.35vw, 0.96rem);
  letter-spacing: 0.03em;
  color: rgba(161, 165, 174, 0.82);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.55);
}

.kc-flow-section {
  position: relative;
  isolation: isolate;
  scroll-margin-top: 7rem;
}

.kc-flow-section::before,
.kc-flow-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: clamp(68px, 9vw, 120px);
  pointer-events: none;
  z-index: 0;
}

.kc-flow-section::before {
  top: 0;
  background: linear-gradient(to bottom, rgba(5, 5, 5, 0.88) 0%, rgba(5, 5, 5, 0.42) 46%, rgba(5, 5, 5, 0) 100%);
}

.kc-flow-section::after {
  bottom: 0;
  background: linear-gradient(to top, rgba(5, 5, 5, 0.88) 0%, rgba(5, 5, 5, 0.42) 46%, rgba(5, 5, 5, 0) 100%);
}

.kc-flow-section>* {
  position: relative;
  z-index: 1;
}

.kc-flow-section--surface {
  background: linear-gradient(180deg,
      rgba(12, 12, 12, 0.96) 0%,
      rgba(9, 9, 9, 0.97) 46%,
      rgba(11, 11, 11, 0.95) 100%);
}

.kc-flow-section--base {
  background: linear-gradient(180deg,
      rgba(8, 8, 8, 0.62) 0%,
      rgba(5, 5, 5, 0.8) 52%,
      rgba(8, 8, 8, 0.64) 100%);
}

.kc-faq-item {
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  padding: 1.35rem 1.45rem;
  cursor: pointer;
  transition:
    border-color 220ms ease,
    background-color 220ms ease;
}

.kc-faq-item:hover {
  border-color: rgba(255, 255, 255, 0.12);
}

.kc-faq-item--expanded {
  border-color: rgba(255, 255, 255, 0.05);
  background: #111111;
}

.kc-faq-item h3 {
  margin: 0;
}

.kc-faq-trigger {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.85rem;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: inherit;
}

.kc-faq-trigger:focus,
.kc-faq-trigger:focus-visible {
  outline: none;
  box-shadow: none;
}

.kc-faq-question {
  font-size: clamp(1rem, 1.3vw, 1.16rem);
  line-height: 1.42;
  font-weight: 600;
  color: rgba(250, 250, 250, 0.98);
  letter-spacing: 0.005em;
}

.kc-faq-icon {
  flex-shrink: 0;
  color: rgba(113, 113, 122, 0.95);
  transition:
    transform 280ms cubic-bezier(0.22, 1, 0.36, 1),
    color 220ms ease;
}

.kc-faq-item--expanded .kc-faq-icon {
  color: rgba(161, 161, 170, 0.95);
}

.kc-faq-panel {
  --kc-faq-panel-gap: 0.92rem;
  margin-top: var(--kc-faq-panel-gap);
  box-sizing: border-box;
  padding: 0.8rem 0.95rem 0.86rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.78rem;
  background: rgba(255, 255, 255, 0.025);
  color: rgba(226, 232, 240, 0.95);
  font-size: clamp(0.97rem, 1.04vw, 1.03rem);
  line-height: 1.66;
  letter-spacing: 0.002em;
  overflow: hidden;
  will-change: max-height, margin-top, opacity;
}

.kc-faq-item--expanded .kc-faq-panel {
  border-color: rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.kc-site-footer {
  background: linear-gradient(180deg, rgba(7, 7, 7, 0.9) 0%, rgba(1, 1, 1, 0.95) 100%);
  position: relative;
  overflow: hidden;
}

.kc-site-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: clamp(56px, 8vw, 96px);
  background: linear-gradient(to bottom, rgba(8, 8, 8, 0.78), rgba(8, 8, 8, 0));
  pointer-events: none;
  z-index: 0;
}

.kc-site-footer>* {
  position: relative;
  z-index: 1;
}

.kc-brand-wordmark {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.12rem;
  min-width: 0;
  line-height: 1;
}

.kc-brand-wordmark__primary,
.kc-brand-wordmark__secondary {
  display: block;
  white-space: nowrap;
}

.kc-brand-wordmark__primary {
  font-size: clamp(1.02rem, 2.5vw, 1.26rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.kc-brand-wordmark__secondary {
  font-family: "Space Grotesk", "Inter", "Segoe UI", sans-serif;
  font-size: clamp(0.6rem, 1.2vw, 0.72rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(214, 214, 219, 0.7);
}

.kc-brand-wordmark--feature {
  gap: 0.14rem;
}

.kc-brand-wordmark--feature .kc-brand-wordmark__primary {
  font-size: clamp(1.08rem, 2vw, 1.34rem);
}

.kc-brand-wordmark--feature .kc-brand-wordmark__secondary {
  color: rgba(167, 243, 208, 0.78);
}

.kc-brand-wordmark--footer {
  gap: 0.14rem;
}

.kc-brand-wordmark--footer .kc-brand-wordmark__primary {
  font-size: 0.95rem;
}

.kc-brand-wordmark--footer .kc-brand-wordmark__secondary {
  font-size: 0.64rem;
}

.kc-brand-wordmark--navbar .kc-brand-wordmark__primary {
  font-size: 1rem;
}

.kc-brand-wordmark--navbar .kc-brand-wordmark__secondary {
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.72);
}

.kc-header-cta {
  white-space: nowrap;
  font-size: 0.9rem;
  line-height: 1.1;
  padding: 0.62rem 1rem;
}


@media (min-width: 768px) {
  .kc-site-header-shell {
    left: 3.9rem;
    right: 3.9rem;
  }

  .kc-header-cta {
    font-size: 0.875rem;
    padding: 0.64rem 1.25rem;
  }
}

@media (min-width: 1024px) {
  .kc-site-header-shell {
    left: 7.5rem;
    right: 7.5rem;
  }
}

@media (max-width: 767px) {
  .kc-flow-section {
    scroll-margin-top: 6rem;
  }

  .kc-site-header-shell {
    top: 0.6rem;
  }

  .kc-hero-section {
    background:
      radial-gradient(120% 90% at 50% -18%, rgba(252, 96, 96, 0.08) 0%, rgba(252, 96, 96, 0.02) 34%, rgba(252, 96, 96, 0) 68%),
      linear-gradient(180deg, rgba(8, 9, 13, 0.68) 0%, rgba(5, 5, 5, 0.04) 72%, rgba(5, 5, 5, 0) 100%);
  }

  .kc-hero-stars {
    opacity: 0.38;
  }

  .kc-hero-orb {
    opacity: calc(var(--kc-orb-breathe-opacity) * 0.48);
  }

  .kc-live-terminal::before {
    display: none;
  }

  .kc-live-terminal {
    box-shadow:
      0 26px 52px -30px rgba(0, 0, 0, 0.9),
      0 0 0 1px rgba(248, 113, 113, 0.08),
      0 -8px 16px -20px rgba(239, 68, 68, 0.16);
  }

  .kc-hero-section::after {
    width: 108vw;
    height: 96px;
    bottom: -2.25rem;
    opacity: 0.28;
    filter: blur(10px);
  }

  .kc-hero-cta {
    box-shadow:
      0 0 8px rgba(248, 113, 113, 0.2),
      0 8px 16px -14px rgba(239, 68, 68, 0.34),
      0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  }
}

@media (max-width: 460px) {
  .kc-site-header-shell {
    left: 0.55rem;
    right: 0.55rem;
  }

  .kc-brand-wordmark--header .kc-brand-wordmark__primary {
    font-size: 0.96rem;
  }

  .kc-brand-wordmark--header .kc-brand-wordmark__secondary {
    font-size: 0.56rem;
  }

  .kc-header-cta {
    font-size: 0.82rem;
    padding: 0.56rem 0.86rem;
  }
}

@media (max-width: 360px) {
  .kc-brand-wordmark--header {
    gap: 0.08rem;
  }

  .kc-brand-wordmark--header .kc-brand-wordmark__primary {
    font-size: 0.88rem;
  }

  .kc-brand-wordmark--header .kc-brand-wordmark__secondary {
    font-size: 0.5rem;
  }
}

.kc-hero-orb {
  --kc-orb-shift-x: 0px;
  --kc-orb-shift-y: 0px;
  --kc-orb-float-x: 0px;
  --kc-orb-float-y: 0px;
  --kc-orb-breathe-scale: 1;
  --kc-orb-breathe-opacity: 0.82;
  transform: translate3d(calc(var(--kc-orb-shift-x) + var(--kc-orb-float-x)),
      calc(var(--kc-orb-shift-y) + var(--kc-orb-float-y)),
      0) scale(var(--kc-orb-breathe-scale));
  opacity: var(--kc-orb-breathe-opacity);
}

.kc-hero-orb--center {
  --kc-orb-shift-x: -50%;
}

@media (prefers-reduced-motion: reduce) {

  html.kc-page-loading .kc-landing-page [data-hero-title] .kc-hero-title-line,
  html.kc-page-loading .kc-landing-page [data-hero-copy],
  html.kc-page-loading .kc-landing-page [data-hero-actions] {
    transform: none !important;
    opacity: 1;
  }

  html.kc-page-ready .kc-landing-page [data-hero-title] .kc-hero-title-line,
  html.kc-page-ready .kc-landing-page [data-hero-copy],
  html.kc-page-ready .kc-landing-page [data-hero-actions] {
    animation: none !important;
  }
}

.kc-hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid rgba(255, 219, 219, 0.28);
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 56%, #b91c1c 100%);
  box-shadow:
    0 0 16px rgba(248, 113, 113, 0.38),
    0 10px 24px -14px rgba(239, 68, 68, 0.7),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  transform: translateY(0);
  transition:
    transform 180ms ease,
    box-shadow 220ms ease,
    filter 220ms ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.kc-hero-cta::before {
  content: "";
  position: absolute;
  inset: -45% auto -45% -20%;
  width: 56%;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0) 74%);
  transform: translateX(-116%) rotate(14deg);
  transition: transform 360ms ease;
  pointer-events: none;
  z-index: 0;
}

.kc-hero-cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 22px rgba(248, 113, 113, 0.48),
    0 14px 30px -14px rgba(239, 68, 68, 0.76),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  filter: saturate(1.07);
}

.kc-hero-cta:hover::before {
  transform: translateX(250%) rotate(14deg);
}

.kc-hero-cta:active {
  transform: translateY(0);
  box-shadow:
    0 0 12px rgba(248, 113, 113, 0.32),
    0 8px 20px -14px rgba(239, 68, 68, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.kc-hero-cta:focus-visible {
  outline: 2px solid rgba(252, 165, 165, 0.9);
  outline-offset: 3px;
}

.kc-hero-cta-label,
.kc-hero-cta-arrow {
  position: relative;
  z-index: 1;
}

.kc-hero-cta-arrow {
  transition: transform 220ms ease;
}

.kc-hero-cta:hover .kc-hero-cta-arrow {
  transform: translateX(2px);
}

[data-reveal] {
  --kc-reveal-delay: 0ms;
}

.kc-reveal-pending {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition:
    opacity 360ms ease-out,
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--kc-reveal-delay);
  will-change: transform, opacity;
}

[data-reveal="left"].kc-reveal-pending {
  transform: translate3d(-18px, 0, 0);
}

[data-reveal="right"].kc-reveal-pending {
  transform: translate3d(18px, 0, 0);
}

.kc-reveal-pending.kc-reveal-in {
  opacity: 1;
  transform: none;
}

@keyframes kc-hero-rise {
  from {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {

  .kc-hero-cta,
  .kc-hero-cta::before,
  .kc-hero-cta-arrow,
  .kc-reveal-pending {
    transition: none !important;
  }

  .kc-reveal-pending,
  .kc-reveal-pending.kc-reveal-in {
    opacity: 1 !important;
    transform: none !important;
  }
}

.kc-cases-marquee {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  scrollbar-width: none;
  -ms-overflow-style: none;
  touch-action: pan-y;
}

.kc-cases-marquee::-webkit-scrollbar {
  display: none;
}

.kc-cases-marquee--active {
  overflow: hidden;
  cursor: grab;
  user-select: none;
}

.kc-cases-marquee--dragging {
  cursor: grabbing;
}

.kc-cases-track {
  display: flex;
  align-items: stretch;
  gap: 1.25rem;
  width: max-content;
  will-change: transform;
  padding: 0.4rem 0.25rem 1.2rem;
}

.kc-case-card {
  --kc-case-accent: 239, 68, 68;
  --kc-case-glow-x: 50%;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(145deg, rgba(var(--kc-case-accent), 0.08) -28%, rgba(var(--kc-case-accent), 0) 44%),
    linear-gradient(180deg, #171717 0%, #0f0f0f 100%);
  box-shadow:
    0 18px 32px -24px rgba(0, 0, 0, 0.88),
    0 0 0 1px rgba(255, 255, 255, 0.02) inset;
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease,
    filter 260ms ease;
}

.kc-case-card::after {
  content: "";
  position: absolute;
  left: -6%;
  right: -6%;
  bottom: -38%;
  height: 34%;
  background: radial-gradient(circle at var(--kc-case-glow-x) 34%, rgba(var(--kc-case-accent), 0.24) 0%, rgba(var(--kc-case-accent), 0.04) 56%, transparent 76%);
  filter: blur(10px);
  opacity: 0.24;
  transform: translateY(10px);
  pointer-events: none;
  z-index: 0;
  transition: opacity 260ms ease, filter 260ms ease, transform 260ms ease;
}

.kc-case-card:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--kc-case-accent), 0.52);
  box-shadow:
    0 24px 40px -24px rgba(0, 0, 0, 0.92),
    0 0 28px -18px rgba(var(--kc-case-accent), 0.34),
    0 0 0 1px rgba(var(--kc-case-accent), 0.2) inset;
  filter: saturate(1.04);
}

.kc-case-card:hover::after {
  opacity: 0.46;
  filter: blur(12px);
  transform: translateY(0);
}

.kc-case-card--media {
  --kc-case-accent: 239, 68, 68;
  --kc-case-glow-x: 58%;
}

.kc-case-card--study {
  --kc-case-accent: 56, 189, 248;
  --kc-case-glow-x: 44%;
}

.kc-case-card--community {
  --kc-case-accent: 16, 185, 129;
  --kc-case-glow-x: 62%;
}

.kc-case-card--dev {
  --kc-case-accent: 236, 72, 153;
  --kc-case-glow-x: 48%;
}

.kc-case-card--planner {
  --kc-case-accent: 245, 158, 11;
  --kc-case-glow-x: 42%;
}

.kc-case-card--research {
  --kc-case-accent: 148, 163, 184;
  --kc-case-glow-x: 56%;
}

.kc-case-card--email {
  --kc-case-accent: 59, 130, 246;
  --kc-case-glow-x: 50%;
}

.kc-case-card--video {
  --kc-case-accent: 168, 85, 247;
  --kc-case-glow-x: 54%;
}

.kc-case-card--sales {
  --kc-case-accent: 249, 115, 22;
  --kc-case-glow-x: 46%;
}

.kc-case-card--voice {
  --kc-case-accent: 6, 182, 212;
  --kc-case-glow-x: 52%;
}

.kc-case-card--crm {
  --kc-case-accent: 244, 63, 94;
  --kc-case-glow-x: 48%;
}

.kc-case-card--notion {
  --kc-case-accent: 99, 102, 241;
  --kc-case-glow-x: 55%;
}

.kc-case-glow {
  position: absolute;
  top: -3.45rem;
  right: -3.2rem;
  width: 10.8rem;
  height: 10.8rem;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.08) 14%, rgba(255, 255, 255, 0) 34%),
    radial-gradient(circle at 52% 58%, rgba(var(--kc-case-accent), 0.34) 0%, rgba(var(--kc-case-accent), 0.16) 38%, rgba(var(--kc-case-accent), 0.02) 62%, transparent 76%);
  box-shadow:
    inset -16px -18px 30px rgba(0, 0, 0, 0.16),
    inset 10px 10px 18px rgba(255, 255, 255, 0.04),
    0 18px 26px -20px rgba(var(--kc-case-accent), 0.45);
  opacity: 0.82;
  filter: saturate(1.05);
  transform: translate3d(0, 0, 0) scale(1);
  pointer-events: none;
  z-index: 0;
  transition:
    transform 320ms cubic-bezier(0.22, 0.8, 0.32, 1),
    opacity 260ms ease,
    box-shadow 280ms ease,
    filter 280ms ease;
}

.kc-case-glow::before {
  content: "";
  position: absolute;
  inset: -22%;
  border-radius: inherit;
  background: radial-gradient(circle at 62% 64%, rgba(var(--kc-case-accent), 0.3) 0%, rgba(var(--kc-case-accent), 0.08) 45%, transparent 72%);
  filter: blur(14px);
  opacity: 0.72;
}

.kc-case-glow::after {
  content: "";
  position: absolute;
  top: 18%;
  left: 24%;
  width: 30%;
  height: 30%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.52) 0%, rgba(255, 255, 255, 0.16) 34%, rgba(255, 255, 255, 0) 76%);
  filter: blur(1px);
  opacity: 0.85;
}

.kc-case-card:hover .kc-case-glow {
  transform: translate3d(-3px, 1px, 0) scale(1.09);
  opacity: 0.96;
  filter: saturate(1.14);
  box-shadow:
    inset -18px -20px 34px rgba(0, 0, 0, 0.2),
    inset 11px 11px 20px rgba(255, 255, 255, 0.06),
    0 20px 30px -18px rgba(var(--kc-case-accent), 0.52);
}

.kc-case-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 24px -14px rgba(var(--kc-case-accent), 0.55);
}

.kc-case-icon svg {
  color: rgb(var(--kc-case-accent));
}

.kc-compare-section {
  position: relative;
}

.kc-compare-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.3rem;
  width: 100%;
  max-width: 980px;
  margin-inline: auto;
}

@media (min-width: 1024px) {
  .kc-compare-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.kc-compare-panel {
  --kc-compare-accent-rgb: 161, 161, 170;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-width: 0;
  border-radius: 1.6rem;
  padding: 1.42rem;
  min-height: 100%;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.kc-compare-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.kc-compare-panel::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  pointer-events: none;
  z-index: 0;
}

.kc-compare-panel--manual {
  --kc-compare-accent-rgb: 148, 163, 184;
  border: 1px solid rgba(113, 113, 122, 0.38);
  background: linear-gradient(180deg, rgba(20, 20, 23, 0.97) 0%, rgba(11, 11, 14, 0.98) 100%);
  box-shadow:
    0 20px 30px -28px rgba(0, 0, 0, 0.9),
    0 0 0 1px rgba(113, 113, 122, 0.08) inset;
}

.kc-compare-panel--manual::before,
.kc-compare-panel--manual::after {
  display: none;
}

.kc-compare-panel--cloud {
  --kc-compare-accent-rgb: 52, 211, 153;
  border: 1px solid rgba(74, 222, 128, 0.38);
  background: linear-gradient(180deg, rgba(17, 18, 22, 0.97) 0%, rgba(10, 11, 14, 0.99) 100%);
  box-shadow:
    0 24px 38px -30px rgba(0, 0, 0, 0.9),
    0 0 22px -18px rgba(34, 197, 94, 0.24),
    0 0 0 1px rgba(74, 222, 128, 0.11) inset,
    0 0 0 1px rgba(74, 222, 128, 0.14);
}

.kc-compare-panel--cloud::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0) 44%);
}

.kc-compare-panel--cloud::after {
  background: linear-gradient(90deg, rgba(74, 222, 128, 0.04) 0%, rgba(34, 197, 94, 0.28) 58%, rgba(74, 222, 128, 0.2) 100%);
}

.kc-compare-panel--cloud:hover {
  transform: translateY(-2px);
  border-color: rgba(110, 231, 183, 0.48);
  box-shadow:
    0 26px 38px -30px rgba(0, 0, 0, 0.9),
    0 0 28px -16px rgba(34, 197, 94, 0.3),
    0 0 0 1px rgba(110, 231, 183, 0.18) inset,
    0 0 0 1px rgba(110, 231, 183, 0.22);
}

.kc-compare-layer {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.kc-compare-head {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 0.55rem;
}

.kc-compare-title {
  font-size: clamp(1.3rem, 2.4vw, 1.72rem);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  margin: 0;
  letter-spacing: -0.01em;
}

.kc-compare-subtitle {
  margin: 0.38rem 0 1rem;
  color: rgba(226, 232, 240, 0.85);
  font-size: 0.92rem;
  max-width: 34ch;
}

.kc-compare-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.68rem;
}

.kc-compare-point {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.92rem;
  padding: 0.8rem 0.86rem;
  background: rgba(0, 0, 0, 0.26);
  display: grid;
  grid-template-columns: 1.42rem minmax(0, 1fr);
  gap: 0.7rem;
  align-items: flex-start;
}

.kc-compare-point::before {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1;
  margin-top: 0.03rem;
}

.kc-compare-panel--manual .kc-compare-point {
  border-color: rgba(82, 82, 91, 0.46);
  background: rgba(20, 20, 23, 0.78);
}

.kc-compare-panel--manual .kc-compare-point::before {
  content: "×";
  color: rgba(231, 229, 228, 0.92);
  border: 0;
  background: transparent;
  font-size: 1.15rem;
  font-weight: 900;
}

.kc-compare-panel--cloud .kc-compare-point {
  border-color: rgba(74, 222, 128, 0.34);
  background: linear-gradient(180deg, rgba(21, 23, 27, 0.9) 0%, rgba(12, 13, 16, 0.9) 100%);
  box-shadow: 0 0 0 1px rgba(74, 222, 128, 0.1) inset,
    0 10px 18px -16px rgba(34, 197, 94, 0.35);
}

.kc-compare-panel--cloud .kc-compare-point:hover {
  border-color: rgba(110, 231, 183, 0.52);
  box-shadow: 0 0 0 1px rgba(110, 231, 183, 0.14) inset,
    0 0 18px -12px rgba(34, 197, 94, 0.42);
}

.kc-compare-panel--cloud .kc-compare-point::before {
  content: "✓";
  color: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(74, 222, 128, 0.72);
  background: rgba(22, 163, 74, 0.72);
}

.kc-compare-point-text {
  margin: 0;
  color: rgba(241, 245, 249, 0.95);
  font-size: 0.93rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

@media (prefers-reduced-motion: reduce) {

  .kc-compare-panel,
  .kc-compare-point {
    transition: none !important;
  }
}

@media (max-width: 767px) {
  .kc-cases-marquee {
    mask-image: none;
    -webkit-mask-image: none;
  }

  .kc-compare-panel {
    border-radius: 1.3rem;
    padding: 1.05rem;
  }

  .kc-compare-subtitle {
    margin-bottom: 0.9rem;
    font-size: 0.88rem;
  }

  .kc-compare-point {
    padding: 0.68rem 0.75rem;
  }

  .kc-compare-point-text {
    font-size: 0.9rem;
  }

  .kc-faq-item {
    border-radius: 0.9rem;
    padding: 1.05rem 1.08rem;
  }

  .kc-faq-question {
    font-size: 1rem;
  }

  .kc-faq-panel {
    --kc-faq-panel-gap: 0.8rem;
    margin-top: var(--kc-faq-panel-gap);
    padding: 0.72rem 0.82rem 0.78rem;
    border-radius: 0.7rem;
    font-size: 0.95rem;
    line-height: 1.6;
  }
}

@media (prefers-reduced-motion: reduce) {
  .kc-cases-marquee {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .kc-cases-track {
    width: max-content;
    transform: none !important;
  }

  .kc-faq-item,
  .kc-faq-icon {
    transition: none !important;
  }
}

/* ---------- Auth Layout ---------- */
body.auth-layout {
  font-family: "Inter", sans-serif;
  color: var(--kc-text);
  background: #050505 !important;
}

.auth-layout .auth-shell {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 14% -8%, rgba(239, 68, 68, 0.18) 0%, rgba(239, 68, 68, 0) 42%),
    radial-gradient(circle at 94% 4%, rgba(190, 24, 93, 0.14) 0%, rgba(190, 24, 93, 0) 44%),
    linear-gradient(180deg, #070708 0%, #050505 42%, #040404 100%);
}

.auth-layout .kc-site-header-shell {
  left: 0.85rem;
  right: 0.85rem;
}

.auth-layout .auth-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  width: 100%;
  height: 4rem;
  padding: 0 0.625rem;
}

.auth-layout .auth-header-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  min-width: 0;
  color: #fff;
  text-decoration: none;
}

.auth-layout .auth-header-brand-link .kc-brand-wordmark {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
}

.auth-layout .auth-header-nav {
  flex-shrink: 0;
}

.auth-layout .auth-nav-link {
  color: rgba(229, 231, 235, 0.84);
  font-size: 0.87rem;
  font-weight: 500;
  transition: color 180ms ease;
}

.auth-layout .auth-nav-link:hover {
  color: rgba(255, 255, 255, 1);
}

.auth-layout .auth-nav-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  padding: 0.57rem 0.95rem;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 600;
  color: #0b0b0c;
  background: #fff;
  transition: background-color 180ms ease;
}

.auth-layout .auth-nav-pill:hover {
  background: #ededed;
}

.auth-layout .auth-main {
  position: relative;
  z-index: 10;
  padding: 7.6rem 1.5rem 3.8rem;
}

.auth-layout .auth-flash-stack {
  max-width: 42rem;
  margin: 0 auto 1.15rem;
  display: grid;
  gap: 0.65rem;
}

.auth-layout .auth-flash {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.9rem;
  padding: 0.78rem 0.92rem;
  font-size: 0.93rem;
  line-height: 1.4;
  color: #f4f4f5;
  background: rgba(255, 255, 255, 0.05);
}

.auth-layout .auth-flash-success {
  border-color: rgba(74, 222, 128, 0.4);
  background: rgba(16, 185, 129, 0.12);
}

.auth-layout .auth-flash-info {
  border-color: rgba(96, 165, 250, 0.4);
  background: rgba(59, 130, 246, 0.14);
}

.auth-layout .auth-flash-warning {
  border-color: rgba(251, 191, 36, 0.42);
  background: rgba(245, 158, 11, 0.14);
}

.auth-layout .auth-flash-danger {
  border-color: rgba(248, 113, 113, 0.42);
  background: rgba(239, 68, 68, 0.16);
}

.auth-layout .auth-grid {
  display: grid;
  gap: 1.1rem;
  align-items: stretch;
  max-width: 35rem;
  margin: 0 auto;
}

.auth-layout .auth-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.65rem;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.auth-layout .auth-card {
  padding: clamp(1.3rem, 2.7vw, 2rem);
  background: linear-gradient(165deg, rgba(18, 18, 21, 0.94) 0%, rgba(10, 10, 12, 0.96) 100%);
  box-shadow:
    0 30px 44px -38px rgba(0, 0, 0, 0.95),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset;
}

.auth-layout .auth-title {
  margin: 0;
  color: #fff;
  font-size: clamp(1.65rem, 2.7vw, 2.24rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.auth-layout .auth-description {
  margin: 0.72rem 0 1.1rem;
  color: #a1a1aa;
  line-height: 1.55;
  font-size: 0.96rem;
}

.auth-layout .auth-alert {
  margin-bottom: 0.95rem;
  padding: 0.76rem 0.84rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(248, 113, 113, 0.5);
  background: rgba(220, 38, 38, 0.16);
  color: #fee2e2;
  font-size: 0.91rem;
  line-height: 1.42;
}

.auth-layout .auth-field {
  display: grid;
  gap: 0.42rem;
}

.auth-layout .auth-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(229, 231, 235, 0.95);
}

.auth-layout .auth-input {
  width: 100%;
  border-radius: 0.88rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(13, 13, 15, 0.92);
  color: #f8fafc;
  font-size: 0.95rem;
  line-height: 1.2;
  padding: 0.78rem 0.95rem;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.auth-layout .auth-input::placeholder {
  color: rgba(161, 161, 170, 0.9);
}

.auth-layout .auth-input:hover {
  border-color: rgba(255, 255, 255, 0.26);
}

.auth-layout .auth-input:focus-visible {
  outline: none;
  border-color: rgba(248, 113, 113, 0.78);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.24);
  background: rgba(11, 11, 13, 0.95);
}

.auth-layout .auth-input--invalid {
  border-color: rgba(248, 113, 113, 0.74);
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.18);
}

.auth-layout .auth-error {
  margin: 0;
  color: #fca5a5;
  font-size: 0.82rem;
}

.auth-layout .auth-submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 650;
  padding: 0.86rem 1.2rem;
  background: linear-gradient(120deg, #b70b10 0%, #cd1921 60%, #e13a43 100%);
  box-shadow:
    0 16px 26px -18px rgba(220, 38, 38, 0.8),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  transition:
    box-shadow 180ms ease,
    filter 180ms ease;
}

.auth-layout .auth-submit:hover {
  filter: saturate(1.08);
  box-shadow:
    0 18px 30px -16px rgba(220, 38, 38, 0.86),
    0 0 0 1px rgba(255, 255, 255, 0.11) inset;
}

.auth-layout .auth-submit:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(220, 38, 38, 0.28),
    0 16px 28px -16px rgba(220, 38, 38, 0.88);
}

.auth-layout .auth-switch {
  margin: 1.05rem 0 0;
  color: #a1a1aa;
  font-size: 0.9rem;
  line-height: 1.45;
}

.auth-layout .auth-switch-link {
  color: rgba(255, 255, 255, 0.96);
  text-decoration: none;
  font-weight: 600;
  transition: color 180ms ease;
}

.auth-layout .auth-switch-link:hover {
  color: #ffffff;
}

@media (min-width: 768px) {
  .auth-layout .kc-site-header-shell {
    left: 3.9rem;
    right: 3.9rem;
  }

  .auth-layout .auth-header-inner {
    height: 5rem;
    padding: 0 1.25rem;
  }

  .auth-layout .auth-header-brand-link {
    gap: 0.75rem;
  }

  .auth-layout .auth-main {
    padding-top: 8.4rem;
  }
}

@media (min-width: 1024px) {
  .auth-layout .kc-site-header-shell {
    left: 7.5rem;
    right: 7.5rem;
  }
}

@media (max-width: 767px) {
  .auth-layout .auth-main {
    padding-top: 6.95rem;
    padding-bottom: 3rem;
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }

  .auth-layout .auth-header-inner {
    min-height: 4rem;
    height: 4rem;
    padding: 0 0.625rem;
    gap: 0.5rem;
  }

  .auth-layout .auth-header-brand-link {
    gap: 0.625rem;
  }

  .auth-layout .auth-header-brand-link img {
    height: 2.75rem;
  }

  .auth-layout .auth-header-nav {
    gap: 0.44rem;
  }

  .auth-layout .auth-nav-link,
  .auth-layout .auth-nav-pill {
    font-size: 0.77rem;
  }

  .auth-layout .auth-nav-pill {
    padding: 0.46rem 0.7rem;
  }

  .auth-layout .auth-grid {
    max-width: 100%;
    gap: 0.9rem;
  }

  .auth-layout .auth-card {
    padding: 1.05rem;
    border-radius: 1.22rem;
  }

  .auth-layout .auth-title {
    font-size: clamp(1.32rem, 6.9vw, 1.72rem);
    line-height: 1.16;
  }

  .auth-layout .auth-description {
    margin: 0.58rem 0 0.95rem;
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .auth-layout .auth-label {
    font-size: 0.84rem;
  }

  .auth-layout .auth-input {
    padding: 0.72rem 0.82rem;
    border-radius: 0.74rem;
    font-size: 0.92rem;
  }

  .auth-layout .auth-error {
    font-size: 0.79rem;
  }

  .auth-layout .auth-alert {
    margin-bottom: 0.82rem;
    padding: 0.67rem 0.74rem;
    border-radius: 0.74rem;
    font-size: 0.86rem;
  }

  .auth-layout .auth-submit {
    font-size: 0.91rem;
    padding: 0.78rem 1rem;
  }

  .auth-layout .auth-switch {
    margin-top: 0.9rem;
    font-size: 0.84rem;
  }

  .auth-layout .auth-flash-stack {
    margin-bottom: 0.92rem;
  }

  .auth-layout .auth-flash {
    border-radius: 0.74rem;
    padding: 0.66rem 0.74rem;
    font-size: 0.86rem;
  }

  .auth-layout .auth-footer-inner {
    gap: 0.8rem;
    text-align: center;
  }

  .auth-layout .auth-footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.85rem 1.05rem;
    font-size: 0.82rem;
  }
}

@media (max-width: 420px) {
  .auth-layout .auth-main {
    padding-top: 6.35rem;
    padding-left: 0.72rem;
    padding-right: 0.72rem;
  }

  .auth-layout .auth-header-brand-link img {
    height: 2.75rem;
  }

  .auth-layout .auth-nav-link,
  .auth-layout .auth-nav-pill {
    font-size: 0.74rem;
  }

  .auth-layout .auth-nav-pill {
    padding: 0.41rem 0.62rem;
  }

  .auth-layout .auth-card {
    padding: 0.92rem;
  }

  .auth-layout .auth-title {
    font-size: clamp(1.2rem, 6.6vw, 1.36rem);
  }

  .auth-layout .auth-description {
    font-size: 0.86rem;
  }
}

@media (max-width: 360px) {
  .auth-layout .auth-nav-link {
    display: none;
  }
}

/* ---------- Cookie Banner ---------- */
.kc-cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100vw - 48px);
  max-width: 680px;
  z-index: 1040;
  background: linear-gradient(145deg, rgba(18, 18, 20, 0.97), rgba(10, 10, 12, 0.99));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.2rem;
  padding: 0.95rem 1.1rem;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset,
    0 1px 0 rgba(255, 255, 255, 0.08) inset;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.kc-cookie-banner.show {
  transform: translateX(-50%);
}

.kc-cookie-text {
  flex: 1;
  min-width: 0;
}

.kc-cookie-desc {
  margin: 0;
  color: #a1a1aa;
  font-size: 0.82rem;
  line-height: 1.42;
}

.kc-cookie-desc a {
  color: #a1a1aa;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.kc-cookie-desc a:hover {
  color: #e4e4e7;
}

.kc-cookie-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.kc-cookie-btn-accept {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.58rem 1.05rem;
  border-radius: 999px;
  background: #ffffff;
  color: #09090b;
  font-size: 0.82rem;
  font-weight: 650;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.18s ease, transform 0.15s ease, box-shadow 0.18s ease;
  box-shadow: 0 4px 14px rgba(255, 255, 255, 0.22);
}

.kc-cookie-btn-accept:hover {
  background: #f0f0f0;
  box-shadow: 0 6px 18px rgba(255, 255, 255, 0.28);
}

.kc-cookie-btn-accept:active {
  transform: translateY(0);
}

/* Pricing Variant 1 (Dark Solid Colors + Glow) */
.kc-pricing-card-v1 {
  position: relative;
  isolation: isolate;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #111;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.kc-pricing-card-v1--center {
  background: linear-gradient(180deg, #101010 0%, #0d0d0d 100%);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow:
    0 20px 40px -20px rgba(0, 0, 0, 0.94),
    0 0 50px -15px rgba(255, 255, 255, 0.15),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  transform: translateY(-0.35rem) scale(1.02);
  transform-origin: center center;
  padding-bottom: 2rem;
  z-index: 10;
}

.kc-pricing-specs {
  display: flex;
  flex-direction: column;
  gap: 0.54rem;
}

.kc-pricing-spec {
  min-height: 2.05rem;
}

.kc-pricing-spec-icon {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.62rem;
}

.kc-pricing-spec-svg {
  width: 0.9rem;
  height: 0.9rem;
}

.kc-pricing-spec-label {
  line-height: 1.2;
}

@media (max-width: 768px) {
  .kc-pricing-card-v1--center {
    transform: none;
    padding-bottom: 2rem;
  }

  .kc-pricing-specs {
    gap: 0.48rem;
  }

  .kc-pricing-spec {
    min-height: 1.88rem;
  }

  .kc-pricing-spec-icon {
    width: 1.65rem;
    height: 1.65rem;
  }

  .kc-pricing-spec-svg {
    width: 0.84rem;
    height: 0.84rem;
  }
}

.kc-pricing-btn-dark {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: all 0.2s ease;
}

.kc-pricing-btn-dark:hover {
  background: rgba(255, 255, 255, 0.1);
}

.kc-pill-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.9rem;
  background: #fff;
  color: #000;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
}

@media (max-width: 767px) {
  .kc-cookie-banner {
    bottom: 12px;
    left: 16px;
    right: 16px;
    width: auto;
    max-width: none;
    transform: none;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1rem;
    border-radius: 1rem;
  }

  .kc-cookie-banner.show {
    transform: none;
  }

  .kc-cookie-actions {
    flex-shrink: 0;
  }

  .kc-cookie-btn-accept {
    flex: none;
  }
}

@media (max-width: 540px) {
  .kc-cookie-banner {
    flex-direction: column;
    align-items: stretch;
  }

  .kc-cookie-actions {
    justify-content: flex-end;
  }

  .kc-cookie-btn-accept {
    width: 100%;
  }
}

.kc-final-cta-glow {
  background: conic-gradient(from 0deg,
      rgba(255, 132, 132, 0.15) 0deg,
      rgba(255, 209, 125, 0.12) 60deg,
      rgba(153, 246, 228, 0.12) 120deg,
      rgba(147, 197, 253, 0.12) 180deg,
      rgba(196, 181, 253, 0.12) 240deg,
      rgba(249, 168, 212, 0.12) 300deg,
      rgba(255, 132, 132, 0.15) 360deg);
  animation: kc-pricing-rgb-spin 15s linear infinite reverse;
}

/* ---------- Legal Footer ---------- */
.kc-legal-footer {
  position: relative;
  z-index: 10;
  padding: 1rem 1.2rem 1.05rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.kc-legal-footer__inner {
  max-width: 1520px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.68rem 1rem;
  align-items: center;
}

.kc-legal-footer__brand {
  display: flex;
  align-items: center;
  gap: 0.62rem;
}

.kc-legal-footer__logo {
  width: 2.2rem;
  height: 2.2rem;
  object-fit: contain;
  opacity: 0.68;
}

.kc-legal-footer__brand-copy {
  display: flex;
  align-items: flex-end;
  gap: 0.44rem;
  flex-wrap: wrap;
}

.kc-legal-footer__brand-name {
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
  white-space: nowrap;
}

.kc-legal-footer__copyright,
.kc-legal-footer__meta {
  color: rgba(161, 161, 170, 0.92);
  font-size: 0.83rem;
  line-height: 1.3;
  margin: 0;
}

.kc-legal-footer__copyright,
.kc-legal-footer__owner,
.kc-legal-footer__meta {
  white-space: nowrap;
}

.kc-legal-footer__operator {
  display: flex;
  align-items: center;
  gap: 0.42rem 0.86rem;
  flex-wrap: wrap;
  min-width: 0;
}

.kc-legal-footer__owner {
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.3;
}

.kc-legal-footer__contacts {
  display: inline-flex;
  flex-wrap: nowrap;
  gap: 0.35rem 0.88rem;
  align-items: center;
}

.kc-legal-footer__contacts a {
  white-space: nowrap;
}

.kc-legal-footer__contacts a,
.kc-legal-footer__links a {
  color: rgba(214, 214, 219, 0.92);
  text-decoration: none;
  transition: color 180ms ease;
}

.kc-legal-footer__links a {
  white-space: nowrap;
}

.kc-legal-footer__contacts a:hover,
.kc-legal-footer__links a:hover {
  color: #ffffff;
}

.kc-legal-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.35rem 0.8rem;
  align-self: center;
  font-size: 0.84rem;
  line-height: 1.3;
}

.kc-legal-footer__links a + a::before {
  content: "•";
  margin-right: 0.45rem;
  color: rgba(113, 113, 122, 0.82);
}

/* ---------- Auth Consents ---------- */
.auth-layout .auth-consent-group {
  display: grid;
  gap: 0.42rem;
}

.auth-layout .auth-consent {
  display: grid;
  grid-template-columns: 1.15rem minmax(0, 1fr);
  gap: 0.78rem;
  align-items: start;
  padding: 0;
  border: 0;
  background: transparent;
}

.auth-layout .auth-consent--invalid {
  color: inherit;
}

.auth-layout .auth-consent--invalid .auth-consent__copy {
  color: rgba(252, 165, 165, 0.98);
}

.auth-layout .auth-consent__input {
  margin-top: 0.18rem;
  accent-color: #ef4444;
  width: 1rem;
  height: 1rem;
}

.auth-layout .auth-consent__copy {
  color: rgba(228, 228, 231, 0.94);
  font-size: 0.9rem;
  line-height: 1.55;
}

.auth-layout .auth-consent__link {
  color: rgba(255, 255, 255, 0.96);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.auth-layout .auth-consent__link:hover {
  color: #ffffff;
}

/* ---------- Legal Pages ---------- */
body.legal-layout {
  background: #050505 !important;
}

.legal-layout .legal-main {
  position: relative;
  z-index: 10;
  padding: 7.9rem 1.4rem 3.8rem;
}

.legal-layout .legal-shell {
  max-width: 900px;
  margin: 0 auto;
}

.legal-layout .legal-document {
  border-radius: 1.7rem;
  padding: clamp(1.3rem, 2.8vw, 2.25rem);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(165deg, rgba(18, 18, 21, 0.94) 0%, rgba(10, 10, 12, 0.96) 100%);
  box-shadow:
    0 30px 44px -38px rgba(0, 0, 0, 0.95),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.legal-layout .legal-document__title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
}

.legal-layout .legal-document__updated {
  margin: 0.58rem 0 0;
  color: rgba(161, 161, 170, 0.92);
  font-size: 0.87rem;
  line-height: 1.45;
}

.legal-layout .legal-document__lead {
  margin: 1.15rem 0 1.35rem;
  color: rgba(212, 212, 216, 0.94);
  font-size: 1rem;
  line-height: 1.7;
}

.legal-layout .legal-document__section + .legal-document__section {
  margin-top: 1.4rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-layout .legal-document__section-title {
  margin: 0 0 0.72rem;
  color: #ffffff;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.45;
}

.legal-layout .legal-document__paragraph {
  margin: 0;
  color: rgba(228, 228, 231, 0.92);
  font-size: 0.96rem;
  line-height: 1.72;
}

.legal-layout .legal-document__paragraph + .legal-document__paragraph {
  margin-top: 0.8rem;
}

.legal-layout .legal-document__list {
  margin: 0.85rem 0 0;
  padding-left: 1.2rem;
  color: rgba(228, 228, 231, 0.92);
  display: grid;
  gap: 0.58rem;
  line-height: 1.65;
}

@media (max-width: 1450px) {
  .kc-legal-footer__inner {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
  }

  .kc-legal-footer__links {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 960px) {
  .kc-legal-footer__inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .kc-legal-footer__links {
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  .kc-legal-footer {
    padding: 0.92rem 0.9rem 1rem;
  }

  .kc-legal-footer__brand-copy {
    flex-wrap: wrap;
    row-gap: 0.12rem;
  }

  .kc-legal-footer__brand-name {
    font-size: 0.91rem;
  }

  .kc-brand-wordmark--footer .kc-brand-wordmark__primary {
    font-size: 0.91rem;
  }

  .kc-legal-footer__copyright,
  .kc-legal-footer__meta,
  .kc-legal-footer__owner,
  .kc-legal-footer__contacts,
  .kc-legal-footer__links {
    font-size: 0.8rem;
  }

  .kc-legal-footer__operator {
    row-gap: 0.25rem;
  }

  .kc-legal-footer__contacts {
    flex-wrap: wrap;
  }

  .auth-layout .auth-consent__copy {
    font-size: 0.85rem;
  }

  .legal-layout .legal-main {
    padding: 6.9rem 0.9rem 3rem;
  }

  .legal-layout .legal-document {
    padding: 1.02rem;
    border-radius: 1.2rem;
  }

  .legal-layout .legal-document__title {
    font-size: clamp(1.45rem, 8vw, 1.9rem);
  }

  .legal-layout .legal-document__updated {
    font-size: 0.82rem;
  }

  .legal-layout .legal-document__lead,
  .legal-layout .legal-document__paragraph,
  .legal-layout .legal-document__list {
    font-size: 0.92rem;
  }
}
