:root {
  --adp-font-scale: 1;
  --adp-space-scale: 1;
  --adp-radius: 10px;
  --adp-focus: #56c2ff;
  --adp-text: #eef3ff;
  --adp-surface: #0f172a;
  --adp-border: rgba(255, 255, 255, 0.2);
}

html[data-adp-theme="warm"] {
  --adp-focus: #ffd166;
}

html[data-adp-theme="pro"] {
  --adp-focus: #56c2ff;
}

html[data-adp-theme="zen"] {
  --adp-focus: #d5ff6f;
}

html[data-adp-theme="neon"] {
  --adp-focus: #b28cff;
}

html[data-adp-density="compact"] {
  --adp-space-scale: 0.9;
}

html[data-adp-density="relaxed"] {
  --adp-space-scale: 1.2;
}

html[data-adp-motion="reduced"] * {
  transition: none !important;
  animation: none !important;
  scroll-behavior: auto !important;
}

html[data-adp-contrast="high"] {
  --adp-border: rgba(255, 255, 255, 0.52);
}

body[data-adaptive-enabled="1"] {
  font-size: calc(16px * var(--adp-font-scale));
}

body[data-adaptive-enabled="1"] h1 {
  font-size: calc(2rem * var(--adp-font-scale));
}

body[data-adaptive-enabled="1"] h2 {
  font-size: calc(1.5rem * var(--adp-font-scale));
}

body[data-adaptive-enabled="1"] h3 {
  font-size: calc(1.25rem * var(--adp-font-scale));
}

body[data-adaptive-enabled="1"] p,
body[data-adaptive-enabled="1"] li,
body[data-adaptive-enabled="1"] label,
body[data-adaptive-enabled="1"] input,
body[data-adaptive-enabled="1"] select,
body[data-adaptive-enabled="1"] textarea,
body[data-adaptive-enabled="1"] button,
body[data-adaptive-enabled="1"] a {
  font-size: calc(1em * var(--adp-font-scale));
}

body[data-adaptive-enabled="1"] .card,
body[data-adaptive-enabled="1"] .feature-card,
body[data-adaptive-enabled="1"] .price-card,
body[data-adaptive-enabled="1"] .auth-card,
body[data-adaptive-enabled="1"] .auth-hero {
  border-radius: calc(var(--adp-radius) + (2px * var(--adp-space-scale)));
}

body[data-adaptive-enabled="1"] .btn,
body[data-adaptive-enabled="1"] button,
body[data-adaptive-enabled="1"] input,
body[data-adaptive-enabled="1"] select,
body[data-adaptive-enabled="1"] textarea,
body[data-adaptive-enabled="1"] .form-control,
body[data-adaptive-enabled="1"] .form-select,
body[data-adaptive-enabled="1"] .auth-input,
body[data-adaptive-enabled="1"] .auth-textarea {
  min-height: calc(2.4rem * var(--adp-space-scale));
  border-color: var(--adp-border);
}

body[data-adaptive-enabled="1"] .btn,
body[data-adaptive-enabled="1"] button {
  padding-top: calc(0.45rem * var(--adp-space-scale));
  padding-bottom: calc(0.45rem * var(--adp-space-scale));
  padding-left: calc(0.8rem * var(--adp-space-scale));
  padding-right: calc(0.8rem * var(--adp-space-scale));
}

body[data-adaptive-enabled="1"] :focus-visible {
  outline: 3px solid var(--adp-focus);
  outline-offset: 2px;
}

body[data-adp-helper="on"] [data-helper],
body[data-adp-helper="on"] .helper-tip {
  display: block !important;
}

body[data-adp-helper="off"] [data-helper],
body[data-adp-helper="off"] .helper-tip {
  display: none !important;
}

body[data-adp-age="senior"] .btn,
body[data-adp-age="senior"] button,
body[data-adp-age="senior"] input,
body[data-adp-age="senior"] select,
body[data-adp-age="senior"] textarea {
  min-height: calc(2.8rem * var(--adp-space-scale));
}
