:root {
  --font-primary: "Segoe UI Variable Text", "Segoe UI", "Trebuchet MS", sans-serif;
  --font-heading: "Segoe UI Variable Display", "Segoe UI", "Trebuchet MS", sans-serif;
  --font-body: var(--font-primary);
  --font-display: var(--font-heading);
  --font-mono: "Cascadia Code", "Consolas", monospace;

  --container: 1180px;
  --container-narrow: 960px;
  --max: var(--container);

  --space-1: 0.375rem;
  --space-2: 0.625rem;
  --space-3: 0.875rem;
  --space-4: 1.125rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 2.75rem;
  --space-8: 3.75rem;
  --space-9: clamp(4.25rem, 7vw, 6.75rem);

  --radius-sm: 14px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 30px;
  --radius-pill: 999px;

  --bg-950: #050914;
  --bg-900: #09111d;
  --bg-850: #0c1625;
  --bg-800: #111c2d;

  --surface-1: rgba(255, 255, 255, 0.05);
  --surface-2: rgba(255, 255, 255, 0.032);
  --surface-3: rgba(12, 20, 33, 0.88);

  --line-soft: rgba(214, 223, 240, 0.08);
  --line-mid: rgba(214, 223, 240, 0.14);
  --line-strong: rgba(214, 223, 240, 0.22);

  --text-strong: #f5f8fe;
  --text-base: #dbe3f2;
  --text-muted: #9eabc3;
  --text-faint: #7e8ba3;
  --theme-text-heading: var(--text-strong);
  --theme-text-primary: var(--text-base);
  --theme-text-secondary: var(--text-muted);

  --brand: #77a7ff;
  --brand-strong: #cdddff;
  --accent: #6ef2d6;
  --accent-strong: #e4fff8;
  --gold: #f0c96f;
  --danger: #ff86b2;
  --success: #8ff4bc;

  --shadow-soft: 0 16px 38px rgba(0, 0, 0, 0.22);
  --shadow-card: 0 28px 68px rgba(0, 0, 0, 0.34);
  --shadow-hero: 0 36px 90px rgba(0, 0, 0, 0.42);
  --glow-brand: 0 0 34px rgba(119, 167, 255, 0.18);
  --glow-accent: 0 0 28px rgba(110, 242, 214, 0.16);

  --transition-fast: 0.18s ease;
  --transition-base: 0.24s ease;
}

:root[data-theme="light"] {
  --bg-950: #f9fcff;
  --bg-900: #f1f6fb;
  --bg-850: #e8eef6;
  --bg-800: #dde7f1;

  --surface-1: rgba(252, 254, 255, 0.76);
  --surface-2: rgba(244, 248, 252, 0.78);
  --surface-3: rgba(246, 250, 254, 0.9);

  --line-soft: rgba(89, 106, 132, 0.08);
  --line-mid: rgba(89, 106, 132, 0.16);
  --line-strong: rgba(89, 106, 132, 0.24);

  --text-strong: #172434;
  --text-base: #2f4056;
  --text-muted: #52647e;
  --text-faint: #6f8197;

  --brand: #688fe2;
  --brand-strong: #e5efff;
  --accent: #67d8d6;
  --accent-strong: #183f53;
  --gold: #d3a95d;
  --danger: #be4459;
  --success: #2f9473;

  --shadow-soft: 0 18px 38px rgba(56, 74, 103, 0.12);
  --shadow-card: 0 24px 62px rgba(56, 74, 103, 0.16);
  --shadow-hero: 0 32px 84px rgba(56, 74, 103, 0.18);
  --glow-brand: 0 0 32px rgba(104, 143, 226, 0.18);
  --glow-accent: 0 0 26px rgba(103, 216, 214, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  overflow-y: scroll;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-primary);
  color: var(--theme-text-primary, var(--text-base));
  background: var(--bg-950);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  caret-color: transparent;
  overflow-x: hidden;
}

body[data-page]:not([data-page="secure"]) {
  padding-top: var(--site-nav-offset, 58px);
  padding-bottom: var(--site-footer-offset, 42px);
}

img,
svg,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  font-family: inherit;
  color: inherit;
}

button {
  color: inherit;
}

select[data-custom-select],
.custom-select {
  --select-surface-bg: var(--theme-input-bg, var(--surface-2));
  --select-surface-border: var(--theme-input-border, var(--line-mid));
  --select-surface-color: var(--theme-text-primary, var(--theme-input-color, var(--text-strong)));
  --select-surface-shadow: var(--theme-input-shadow, var(--shadow-soft));
  --select-focus-border: var(--theme-input-focus-border, var(--theme-panel-hover-border, var(--line-strong)));
  --select-focus-shadow: var(--theme-input-focus-shadow, var(--theme-panel-hover-shadow, var(--glow-brand)));
  --select-panel-bg: var(--theme-panel-bg, var(--surface-3));
  --select-panel-border: var(--theme-panel-border, var(--line-mid));
  --select-panel-shadow: var(--theme-panel-shadow, var(--shadow-card));
  --select-panel-text: var(--theme-text-heading, var(--theme-panel-heading, var(--text-strong)));
  --select-panel-muted: var(--theme-text-secondary, var(--theme-copy-body, var(--text-base)));
  --select-option-hover-bg: var(--theme-button-secondary-bg, var(--surface-2));
  --select-option-hover-border: var(--theme-button-secondary-border, var(--line-mid));
  --select-option-hover-color: var(--theme-text-heading, var(--theme-button-secondary-color, var(--text-strong)));
  --select-option-active-bg: var(--theme-button-primary-bg, var(--surface-1));
  --select-option-active-border: var(--theme-button-primary-border, var(--line-strong));
  --select-option-active-color: var(--theme-text-heading, var(--theme-button-primary-color, var(--text-strong)));
  --select-option-active-shadow: var(--theme-button-primary-shadow, var(--shadow-soft));
}

select[data-custom-select] {
  width: 100%;
  min-height: 48px;
  padding: 12px 44px 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--select-surface-border);
  background-color: transparent;
  background-image:
    linear-gradient(45deg, transparent 50%, currentColor 50%),
    linear-gradient(135deg, currentColor 50%, transparent 50%),
    var(--select-surface-bg);
  background-position:
    calc(100% - 20px) calc(50% + 1px),
    calc(100% - 14px) calc(50% + 1px),
    0 0;
  background-size:
    6px 6px,
    6px 6px,
    100% 100%;
  background-repeat: no-repeat;
  color: var(--select-surface-color);
  border-color: var(--select-surface-border);
  box-shadow: var(--select-surface-shadow);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

select[data-custom-select]:focus,
select[data-custom-select]:focus-visible {
  border-color: var(--select-focus-border);
  box-shadow: var(--select-focus-shadow);
}

select[data-custom-select][data-custom-select-enhanced="true"] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.custom-select {
  position: relative;
  width: 100%;
}

.custom-select__trigger {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--select-surface-border);
  background: var(--select-surface-bg);
  color: var(--select-surface-color);
  box-shadow: var(--select-surface-shadow);
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
  cursor: pointer;
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast),
    transform var(--transition-fast),
    background var(--transition-fast);
}

.custom-select__trigger:hover {
  border-color: var(--select-focus-border);
}

.custom-select__trigger:focus-visible,
.custom-select[data-open="true"] .custom-select__trigger {
  border-color: var(--select-focus-border);
  box-shadow: var(--select-focus-shadow);
}

.custom-select__trigger:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

.custom-select__value {
  min-width: 0;
  flex: 1;
  color: inherit;
  line-height: 1.35;
}

.custom-select.is-placeholder .custom-select__value {
  color: var(--select-panel-muted);
}

.custom-select__chevron {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.68;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.custom-select[data-open="true"] .custom-select__chevron {
  transform: rotate(225deg) translate(-2px, -2px);
  opacity: 1;
}

.custom-select__panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  z-index: 340;
  border-radius: 16px;
  border: 1px solid var(--select-panel-border);
  background: var(--select-panel-bg);
  box-shadow: var(--select-panel-shadow);
  overflow: hidden;
}

.custom-select__panel[hidden] {
  display: none;
}

.custom-select__list {
  display: grid;
  gap: 8px;
  max-height: min(320px, 48vh);
  padding: 10px;
  overflow: auto;
}

.custom-select__option {
  width: 100%;
  padding: 11px 12px;
  border-radius: 12px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--select-panel-text);
  text-align: left;
  cursor: pointer;
  line-height: 1.35;
  transition:
    border-color var(--transition-fast),
    background var(--transition-fast),
    box-shadow var(--transition-fast),
    color var(--transition-fast);
}

.custom-select__option:hover,
.custom-select__option:focus-visible,
.custom-select__option.is-active {
  border-color: var(--select-option-hover-border);
  background: var(--select-option-hover-bg);
  color: var(--select-option-hover-color);
}

.custom-select__option[aria-selected="true"] {
  border-color: var(--select-option-active-border);
  background: var(--select-option-active-bg);
  color: var(--select-option-active-color);
  box-shadow: var(--select-option-active-shadow);
}

.custom-select__option[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
  box-shadow: none;
}

html[data-theme="light"] {
  color-scheme: light;
}

::selection {
  background: rgba(142, 166, 255, 0.28);
  color: var(--theme-text-heading, #ffffff);
}

:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 1px rgba(184, 199, 255, 0.34),
    0 0 0 4px rgba(142, 166, 255, 0.14);
}

main {
  position: relative;
  z-index: 1;
}

.container {
  width: min(calc(100% - clamp(24px, 4vw, 56px)), var(--container));
  margin: 0 auto;
}

.container-narrow {
  width: min(calc(100% - clamp(24px, 4vw, 56px)), var(--container-narrow));
  margin: 0 auto;
}

footer .container {
  width: calc(100% - 24px);
  max-width: none;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 120;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
    linear-gradient(135deg, rgba(142, 166, 255, 0.09), rgba(140, 231, 216, 0.05) 48%, rgba(215, 189, 134, 0.05)),
    rgba(10, 16, 28, 0.68);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 18px 42px rgba(0, 0, 0, 0.3),
    0 0 32px rgba(142, 166, 255, 0.06);
}

.nav::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(142, 166, 255, 0.06) 18%,
      rgba(140, 231, 216, 0.05) 50%,
      rgba(142, 166, 255, 0.06) 82%,
      transparent 100%
    );
  opacity: 0.9;
}

.nav::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background:
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(142, 166, 255, 0.42) 18%,
      rgba(140, 231, 216, 0.26) 50%,
      rgba(142, 166, 255, 0.42) 82%,
      transparent 100%
    );
  pointer-events: none;
}

.nav-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0.65rem;
  min-height: 39px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--theme-text-heading, var(--text-strong));
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.brand:hover {
  transform: translateY(-1px);
}

.brand .logo,
footer .logo {
  width: auto;
  height: 24px;
  filter:
    drop-shadow(0 10px 18px rgba(0, 0, 0, 0.2))
    drop-shadow(0 0 18px rgba(142, 166, 255, 0.12));
}

.brand span {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  font-size: 0.88rem;
  color: var(--theme-text-heading, var(--text-strong));
  text-shadow: 0 0 16px rgba(142, 166, 255, 0.12);
}

.theme-select-shell {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  min-height: 24px;
  padding: 0 28px 0 11px;
  border: 1px solid rgba(214, 223, 240, 0.1);
  border-radius: var(--radius-pill);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.012);
  color: var(--theme-text-primary, rgba(233, 239, 252, 0.82));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 10px 18px rgba(0, 0, 0, 0.1);
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast),
    background var(--transition-fast),
    transform var(--transition-fast);
}

.theme-select-shell::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-65%) rotate(45deg);
  opacity: 0.74;
  pointer-events: none;
}

.theme-select-shell:hover,
.theme-select-shell:focus-within {
  transform: translateY(-1px);
  border-color: rgba(214, 223, 240, 0.14);
  background:
    linear-gradient(135deg, rgba(142, 166, 255, 0.08), rgba(140, 231, 216, 0.04) 62%, rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.018);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 12px 22px rgba(0, 0, 0, 0.14),
    0 0 16px rgba(142, 166, 255, 0.08);
}

.theme-mode-shell {
  gap: 4px;
  padding: 3px;
}

.theme-mode-shell::after {
  content: none;
}

.theme-toggle-button {
  justify-content: center;
  min-width: 36px;
  padding: 3px;
}

.theme-toggle-button::after {
  content: none;
}

.theme-toggle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  min-height: 18px;
  font-size: 0.95rem;
  line-height: 1;
  transition:
    transform var(--transition-fast),
    filter var(--transition-fast),
    opacity var(--transition-fast);
}

.theme-toggle-button:hover .theme-toggle-icon,
.theme-toggle-button:focus-visible .theme-toggle-icon {
  transform: translateY(-1px);
}

.theme-toggle-button.is-light .theme-toggle-icon {
  filter: saturate(1.1) brightness(1.06);
}

.theme-toggle-button.is-dark .theme-toggle-icon {
  opacity: 0.88;
}

.theme-mode-button {
  min-height: 18px;
  padding: 0 10px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  background: transparent;
  color: inherit;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: lowercase;
  cursor: pointer;
  transition:
    color var(--transition-fast),
    background var(--transition-fast),
    border-color var(--transition-fast),
    box-shadow var(--transition-fast),
    transform var(--transition-fast);
}

.theme-mode-button:hover {
  transform: translateY(-1px);
}

.theme-mode-button.is-active {
  color: var(--theme-text-heading, var(--text-strong));
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(214, 223, 240, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 10px 18px rgba(0, 0, 0, 0.12);
}

.theme-select-label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--theme-text-secondary, var(--text-faint));
  white-space: nowrap;
}

.theme-select {
  min-width: 170px;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1;
  padding: 0;
  appearance: none;
  cursor: pointer;
}

.theme-select:focus {
  outline: none;
}

.theme-select option {
  color: var(--theme-text-heading, #172434);
}

.nav-theme-slot {
  display: inline-flex;
  align-items: center;
  position: absolute;
  right: clamp(14px, 3vw, 34px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.nav-toggle {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  justify-self: end;
  gap: 6px;
  flex-wrap: wrap;
  min-width: 0;
}

.nav-links a,
.nav-links button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 0 9px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.012);
  color: var(--theme-text-primary, rgba(233, 239, 252, 0.82));
  letter-spacing: 0.01em;
  font-size: 0.93rem;
  transition:
    color var(--transition-fast),
    background var(--transition-fast),
    border-color var(--transition-fast),
    box-shadow var(--transition-fast),
    transform var(--transition-fast);
  cursor: pointer;
}

.nav-links a::before,
.nav-links button::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 48%);
  opacity: 0;
  transition: opacity var(--transition-fast);
  pointer-events: none;
}

.nav-links a:hover,
.nav-links button:hover {
  transform: translateY(-1px);
  color: var(--theme-text-heading, var(--text-strong));
  border-color: rgba(214, 223, 240, 0.1);
  background:
    linear-gradient(135deg, rgba(142, 166, 255, 0.08), rgba(140, 231, 216, 0.04) 62%, rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.018);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 12px 22px rgba(0, 0, 0, 0.14),
    0 0 16px rgba(142, 166, 255, 0.08);
}

.nav-links a:hover::before,
.nav-links button:hover::before {
  opacity: 1;
}

.nav-links .nav-accent {
  border-color: rgba(140, 231, 216, 0.18);
  background:
    linear-gradient(135deg, rgba(140, 231, 216, 0.09), rgba(142, 166, 255, 0.06)),
    rgba(255, 255, 255, 0.025);
  color: var(--accent-strong);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 12px 22px rgba(0, 0, 0, 0.14),
    0 0 16px rgba(140, 231, 216, 0.08);
}

.nav-links .nav-accent:hover {
  border-color: rgba(140, 231, 216, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 14px 24px rgba(0, 0, 0, 0.16),
    0 0 20px rgba(140, 231, 216, 0.1);
}

.nav-links .is-active {
  color: var(--theme-text-heading, var(--text-strong));
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  text-shadow:
    0 0 10px rgba(190, 205, 255, 0.4),
    0 0 18px rgba(142, 166, 255, 0.32),
    0 0 28px rgba(140, 231, 216, 0.16);
}

.nav-links .nav-accent.is-active {
  border-color: transparent;
  background: transparent;
  color: var(--accent-strong);
  box-shadow: none;
  text-shadow:
    0 0 10px rgba(210, 255, 246, 0.44),
    0 0 18px rgba(140, 231, 216, 0.34),
    0 0 28px rgba(142, 166, 255, 0.14);
}

.nav-links .is-active::after {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  top: 50%;
  height: 18px;
  transform: translateY(-50%);
  border-radius: var(--radius-pill);
  background:
    radial-gradient(ellipse at center, rgba(142, 166, 255, 0.24) 0%, rgba(140, 231, 216, 0.14) 52%, transparent 78%);
  filter: blur(10px);
  opacity: 1;
  z-index: -1;
  pointer-events: none;
}

.nav-links .nav-accent.is-active::after {
  background:
    radial-gradient(ellipse at center, rgba(140, 231, 216, 0.26) 0%, rgba(142, 166, 255, 0.16) 55%, transparent 80%);
}

html[data-theme="light"] .nav {
  border-bottom-color: rgba(96, 118, 148, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(243, 247, 252, 0.52)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(223, 233, 244, 0.08) 48%, rgba(214, 223, 235, 0.08)),
    rgba(246, 250, 255, 0.76);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    0 18px 40px rgba(56, 74, 103, 0.12),
    0 0 26px rgba(104, 143, 226, 0.06);
}

html[data-theme="light"] .nav::after {
  background:
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(188, 70, 85, 0.24) 18%,
      rgba(104, 143, 226, 0.26) 50%,
      rgba(103, 216, 214, 0.2) 82%,
      transparent 100%
    );
}

html[data-theme-preset="cotton-candy-light"] .nav {
  border-bottom-color: rgba(96, 118, 148, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(243, 247, 252, 0.5)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(230, 238, 247, 0.08) 48%, rgba(219, 228, 240, 0.08)),
    rgba(246, 250, 255, 0.8);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 18px 40px rgba(56, 74, 103, 0.11);
}

html[data-theme-preset="cotton-candy-light"] .nav::before {
  background:
    linear-gradient(
      90deg,
      rgba(6, 9, 15, 0.36) 0%,
      rgba(6, 9, 15, 0.2) 12%,
      rgba(6, 9, 15, 0.06) 20%,
      transparent 30%,
      transparent 70%,
      rgba(6, 9, 15, 0.06) 80%,
      rgba(6, 9, 15, 0.2) 88%,
      rgba(6, 9, 15, 0.36) 100%
    );
  opacity: 0.42;
}

html[data-theme-preset="cotton-candy-light"] .nav::after {
  background:
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(188, 70, 85, 0.2) 18%,
      rgba(104, 143, 226, 0.22) 50%,
      rgba(103, 216, 214, 0.16) 82%,
      transparent 100%
    );
}

html[data-theme="light"] .brand .logo,
html[data-theme="light"] footer .logo {
  filter:
    drop-shadow(0 10px 16px rgba(56, 74, 103, 0.08))
    drop-shadow(0 0 16px rgba(104, 143, 226, 0.1));
}

html[data-theme="light"] .nav-links a,
html[data-theme="light"] .nav-links button {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.54), rgba(243, 247, 252, 0.42)),
    rgba(247, 251, 255, 0.52);
  color: var(--theme-text-primary, rgba(43, 55, 74, 0.9));
}

html[data-theme="light"] .nav-links a:hover,
html[data-theme="light"] .nav-links button:hover {
  border-color: rgba(96, 118, 148, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.44), rgba(231, 238, 247, 0.24) 58%, rgba(255, 255, 255, 0.2)),
    rgba(248, 251, 255, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    0 12px 24px rgba(56, 74, 103, 0.1),
    0 0 18px rgba(104, 143, 226, 0.08);
}

html[data-theme="light"] .nav-links .nav-accent {
  border-color: rgba(96, 118, 148, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.56), rgba(243, 247, 252, 0.44)),
    rgba(247, 251, 255, 0.56);
  color: var(--theme-text-heading, #25465d);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    0 12px 22px rgba(56, 74, 103, 0.08),
    0 0 18px rgba(104, 143, 226, 0.06);
}

html[data-theme="light"] .nav-links .is-active {
  color: var(--theme-text-heading, #2d3951);
}

html[data-theme="light"] .nav-links .nav-accent.is-active {
  color: var(--theme-text-heading, #24465f);
}

html[data-theme="light"] .nav-links .is-active::after {
  background:
    radial-gradient(ellipse at center, rgba(255, 255, 255, 0.64) 0%, rgba(104, 143, 226, 0.22) 44%, rgba(188, 70, 85, 0.14) 68%, transparent 84%);
}

html[data-theme="light"] .nav-links .nav-accent.is-active::after {
  background:
    radial-gradient(ellipse at center, rgba(255, 255, 255, 0.62) 0%, rgba(103, 216, 214, 0.2) 44%, rgba(104, 143, 226, 0.14) 72%, transparent 84%);
}

html[data-theme="light"] .theme-select-shell {
  border-color: rgba(96, 118, 148, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.56), rgba(243, 247, 252, 0.44)),
    rgba(247, 251, 255, 0.56);
  color: var(--theme-text-primary, rgba(43, 55, 74, 0.9));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    0 12px 22px rgba(56, 74, 103, 0.08),
    0 0 18px rgba(104, 143, 226, 0.06);
}

html[data-theme="light"] .theme-select-shell:hover,
html[data-theme="light"] .theme-select-shell:focus-within {
  border-color: rgba(96, 118, 148, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.44), rgba(231, 238, 247, 0.24) 58%, rgba(255, 255, 255, 0.2)),
    rgba(248, 251, 255, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    0 12px 24px rgba(56, 74, 103, 0.1),
    0 0 18px rgba(104, 143, 226, 0.08);
}

html[data-theme="light"] .theme-select-label {
  color: var(--theme-text-secondary, rgba(82, 100, 126, 0.88));
}

footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 110;
  margin-top: var(--space-6);
  padding: 7px 0 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--theme-text-secondary, var(--text-muted));
  backdrop-filter: blur(18px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
    linear-gradient(135deg, rgba(142, 166, 255, 0.06), rgba(140, 231, 216, 0.03) 48%, rgba(215, 189, 134, 0.03)),
    rgba(11, 18, 30, var(--footer-bg-opacity, 0.56));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 -12px 34px rgba(0, 0, 0, 0.16);
}

html[data-theme="light"] footer {
  border-top-color: rgba(96, 118, 148, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(243, 247, 252, 0.5)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(230, 238, 247, 0.08) 48%, rgba(219, 228, 240, 0.08)),
    rgba(246, 250, 255, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 -12px 28px rgba(56, 74, 103, 0.1);
}

html[data-theme-preset="cotton-candy-light"] footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--theme-text-secondary, #9eabc3);
  --footer-bg-opacity: 0.74;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
    linear-gradient(135deg, rgba(142, 166, 255, 0.06), rgba(140, 231, 216, 0.03) 48%, rgba(215, 189, 134, 0.03)),
    rgba(11, 18, 30, var(--footer-bg-opacity, 0.56));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 -12px 34px rgba(0, 0, 0, 0.16);
}

html[data-theme-preset="cotton-candy-light"] footer .logo {
  filter:
    drop-shadow(0 10px 18px rgba(0, 0, 0, 0.2))
    drop-shadow(0 0 18px rgba(142, 166, 255, 0.12));
}

html[data-theme-preset="cotton-candy-dark-ui"] .nav {
  border-bottom-color: rgba(96, 118, 148, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(243, 247, 252, 0.5)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(230, 238, 247, 0.08) 48%, rgba(219, 228, 240, 0.08)),
    rgba(246, 250, 255, 0.8);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 18px 40px rgba(56, 74, 103, 0.11);
}

html[data-theme-preset="cotton-candy-dark-ui"] .nav::before {
  background:
    linear-gradient(
      90deg,
      rgba(6, 9, 15, 0.36) 0%,
      rgba(6, 9, 15, 0.2) 12%,
      rgba(6, 9, 15, 0.06) 20%,
      transparent 30%,
      transparent 70%,
      rgba(6, 9, 15, 0.06) 80%,
      rgba(6, 9, 15, 0.2) 88%,
      rgba(6, 9, 15, 0.36) 100%
    );
  opacity: 0.42;
}

html[data-theme-preset="cotton-candy-dark-ui"] .nav::after {
  background:
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(188, 70, 85, 0.2) 18%,
      rgba(104, 143, 226, 0.22) 50%,
      rgba(103, 216, 214, 0.16) 82%,
      transparent 100%
    );
}

html[data-theme-preset="cotton-candy-dark-ui"] .brand .logo,
html[data-theme-preset="cotton-candy-dark-ui"] footer .logo {
  filter:
    drop-shadow(0 10px 16px rgba(56, 74, 103, 0.08))
    drop-shadow(0 0 16px rgba(104, 143, 226, 0.1));
}

html[data-theme-preset="cotton-candy-dark-ui"] footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--theme-text-secondary, #9eabc3);
  --footer-bg-opacity: 0.74;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
    linear-gradient(135deg, rgba(142, 166, 255, 0.06), rgba(140, 231, 216, 0.03) 48%, rgba(215, 189, 134, 0.03)),
    rgba(11, 18, 30, var(--footer-bg-opacity, 0.56));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 -12px 34px rgba(0, 0, 0, 0.16);
}

footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(142, 166, 255, 0.08) 20%,
      rgba(214, 223, 240, 0.14) 50%,
      rgba(140, 231, 216, 0.08) 80%,
      transparent 100%
    );
  box-shadow: 0 0 8px rgba(142, 166, 255, 0.06);
  opacity: 0.96;
}

html[data-theme-preset="cotton-candy-light"] footer::after {
  content: none;
}

html[data-theme-preset="cotton-candy-dark-ui"] footer::after {
  content: none;
}

.footer-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 8px;
}

.footer-copy,
.footer-signoff {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--footer-copy-color, rgba(226, 234, 246, 0.9));
  text-shadow: var(--footer-copy-shadow, 0 1px 0 rgba(7, 10, 16, 0.2));
}

.footer-copy {
  grid-column: 1;
  justify-self: start;
}

.footer-signoff {
  grid-column: 2;
  justify-self: end;
  text-align: right;
  color: var(--footer-signoff-color, rgba(241, 246, 255, 0.96));
}

footer .logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 24px;
  opacity: 1;
  filter:
    drop-shadow(0 1px 0 rgba(7, 10, 16, 0.26))
    drop-shadow(0 0 16px rgba(142, 166, 255, 0.14));
}

html[data-theme="light"] .footer-copy,
html[data-theme="light"] .footer-signoff {
  --footer-copy-color: rgba(34, 48, 69, 0.98);
  --footer-signoff-color: rgba(18, 31, 51, 0.98);
  --footer-copy-shadow: 0 1px 0 rgba(255, 255, 255, 0.76);
}

html[data-theme="light"] .footer-signoff {
  --footer-signoff-color: rgba(18, 31, 51, 0.98);
}

html[data-theme="light"] footer .logo {
  filter:
    drop-shadow(0 1px 0 rgba(255, 255, 255, 0.74))
    drop-shadow(0 0 14px rgba(104, 143, 226, 0.1));
}

html[data-theme-preset="cotton-candy-light"] .footer-copy,
html[data-theme-preset="cotton-candy-light"] .footer-signoff,
html[data-theme-preset="cotton-candy-dark-ui"] .footer-copy,
html[data-theme-preset="cotton-candy-dark-ui"] .footer-signoff {
  --footer-copy-color: rgba(228, 236, 248, 0.92);
  --footer-signoff-color: rgba(244, 248, 255, 0.98);
  --footer-copy-shadow: 0 1px 0 rgba(7, 10, 16, 0.24);
}

html[data-theme-preset="cotton-candy-light"] .footer-signoff,
html[data-theme-preset="cotton-candy-dark-ui"] .footer-signoff {
  --footer-signoff-color: rgba(244, 248, 255, 0.98);
}

html[data-theme-preset="cotton-candy-light"] .footer-copy,
html[data-theme-preset="cotton-candy-light"] .footer-signoff {
  --footer-copy-color: rgba(249, 251, 255, 0.99);
  --footer-signoff-color: rgba(255, 255, 255, 1);
  --footer-copy-shadow: 0 1px 0 rgba(6, 9, 15, 0.22);
}

@media (max-width: 980px) {
  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-copy,
  .footer-signoff {
    grid-column: auto;
    justify-self: center;
    text-align: center;
  }

  footer .logo {
    position: static;
    left: auto;
    top: auto;
    transform: none;
  }
}

@media (max-width: 760px) {
  .container,
  .container-narrow {
    width: min(calc(100% - 20px), var(--container));
  }

  .nav-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    min-height: 40px;
  }

  .brand span {
    font-size: 0.88rem;
  }

  .nav-toggle {
    position: relative;
    z-index: 2;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
      rgba(8, 14, 25, 0.88);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.06),
      0 10px 18px rgba(0, 0, 0, 0.16),
      0 0 14px rgba(142, 166, 255, 0.06);
    cursor: pointer;
  }

  .nav-toggle span {
    display: block;
    width: 16px;
    height: 2px;
    margin: 0 auto;
    border-radius: var(--radius-pill);
    background: var(--text-strong);
    transition: transform var(--transition-base), opacity var(--transition-base);
  }

  .nav.is-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav.is-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .nav.is-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 5px;
    padding: 8px;
    border: 1px solid rgba(214, 223, 240, 0.12);
    border-radius: 24px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
      linear-gradient(135deg, rgba(142, 166, 255, 0.08), rgba(140, 231, 216, 0.04) 48%, rgba(215, 189, 134, 0.04)),
      rgba(6, 10, 20, 0.96);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.05),
      0 28px 58px rgba(0, 0, 0, 0.34),
      0 0 26px rgba(142, 166, 255, 0.08);
  }

  .nav.is-open .nav-links {
    display: flex;
  }

  .nav-theme-slot {
    right: 54px;
    z-index: 2;
  }

  .nav-links > * {
    width: 100%;
  }

  .nav-links a,
  .nav-links button,
  .theme-select-shell {
    justify-content: flex-start;
    min-height: 31px;
    padding: 0 10px;
  }

  .theme-select-shell {
    gap: 10px;
    min-height: 34px;
    padding-left: 10px;
    padding-right: 32px;
  }

  .theme-mode-shell {
    gap: 4px;
    padding: 3px;
  }

  .theme-toggle-button {
    min-width: 34px;
    padding: 3px;
  }

  .theme-select-label {
    display: none;
  }

  .theme-select {
    min-width: 128px;
    width: 128px;
    font-size: 0.8rem;
  }

  .theme-mode-button {
    min-height: 24px;
    padding: 0 10px;
  }

  footer {
    margin-top: var(--space-5);
    padding: 6px 0 8px;
  }
}

@media (max-width: 520px) {
  .brand .logo,
  footer .logo {
    height: 24px;
  }

  .nav-toggle {
    width: 32px;
    height: 32px;
  }

  .nav-links a,
  .nav-links button,
  .theme-select-shell {
    min-height: 30px;
    font-size: 0.88rem;
  }

  .footer-copy,
  .footer-signoff {
    font-size: 0.84rem;
  }
}

@media (max-width: 760px) {
    footer {
        padding: 4px 0;
    }

    .footer-inner {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 6px 12px;
    }

    .footer-copy,
    .footer-signoff {
        font-size: 0.76rem;
        line-height: 1.2;
        margin: 0;
        text-align: center;
    }

    footer .logo {
        position: static;
        transform: none;
        height: 16px;
        margin: 0 4px;
    }

    .nav-links .is-active {
        font-weight: 400;
    }

    html[data-theme="light"] .nav-toggle {
        background: #ffffff;
        border-color: rgba(96, 118, 148, 0.14);
    }

    html[data-theme="light"] .nav-toggle span {
        background: #2f4056;
    }

    html[data-theme="light"] .nav-links {
        background: #ffffff;
        border-color: rgba(96, 118, 148, 0.14);
    }
}


html[data-theme-preset] .nav {
  border-bottom-color: var(--theme-nav-border);
  background: var(--theme-nav-bg);
  box-shadow: var(--theme-nav-shadow);
}

html[data-theme-preset] .nav::before {
  background: var(--theme-nav-before);
  opacity: 0.92;
}

html[data-theme-preset] .nav::after {
  background: var(--theme-nav-after);
}

html[data-theme-preset] .brand .logo,
html[data-theme-preset] footer .logo {
  filter: var(--theme-nav-logo-filter);
}

html[data-theme-preset] .nav-links a,
html[data-theme-preset] .nav-links button {
  background: var(--theme-nav-link-bg);
  color: var(--theme-nav-link-color);
}

html[data-theme-preset] .nav-links a:hover,
html[data-theme-preset] .nav-links button:hover {
  color: var(--theme-nav-link-hover-color);
  border-color: var(--theme-nav-link-hover-border);
  background: var(--theme-nav-link-hover-bg);
  box-shadow: var(--theme-nav-link-hover-shadow);
}

html[data-theme-preset] .nav-links .nav-accent {
  border-color: var(--theme-nav-accent-border);
  background: var(--theme-nav-accent-bg);
  color: var(--theme-nav-accent-color);
  box-shadow: var(--theme-nav-accent-shadow);
}

html[data-theme-preset] .nav-links .is-active {
  color: var(--theme-nav-active-color);
  text-shadow: var(--theme-nav-active-text-shadow);
}

html[data-theme-preset] .nav-links .is-active::after {
  background: var(--theme-nav-active-glow);
}

html[data-theme-preset] .theme-select-shell {
  background: var(--theme-select-bg);
  border-color: var(--theme-select-border);
  color: var(--theme-select-color);
  box-shadow: var(--theme-select-shadow);
}

html[data-theme-preset] .theme-select-shell:hover,
html[data-theme-preset] .theme-select-shell:focus-within {
  background: var(--theme-select-hover-bg);
  border-color: var(--theme-select-hover-border);
}

html[data-theme-preset] .theme-mode-button:hover {
  background: var(--theme-select-hover-bg);
  border-color: var(--theme-select-hover-border);
}

html[data-theme-preset] .theme-mode-button.is-active {
  background: var(--theme-nav-accent-bg);
  border-color: var(--theme-nav-accent-border);
  color: var(--theme-nav-accent-color);
  box-shadow: var(--theme-nav-accent-shadow);
}

html[data-theme-preset] .theme-select-label {
  color: var(--theme-select-label-color);
}

html[data-theme-preset] footer {
  background: var(--theme-footer-bg);
  box-shadow: var(--theme-footer-shadow);
}

html[data-theme-preset] footer::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: var(--theme-footer-after);
  opacity: 0.72;
}

html[data-theme-preset] .footer-copy,
html[data-theme-preset] .footer-signoff {
  color: var(--theme-footer-copy-color);
  text-shadow: var(--theme-footer-copy-shadow);
}

html[data-theme-preset] .footer-signoff {
  color: var(--theme-footer-signoff-color);
}

html[data-theme-preset] footer .logo {
  filter: var(--theme-footer-logo-filter);
}

html[data-theme-preset="cotton-candy-light"] .nav {
  border-bottom-color: rgba(96, 118, 148, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(243, 247, 252, 0.28)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(230, 238, 247, 0.07) 48%, rgba(219, 228, 240, 0.06)),
    rgba(246, 250, 255, 0.44);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 14px 28px rgba(56, 74, 103, 0.08);
}

html[data-theme-preset="cotton-candy-light"] .nav::before {
  background:
    linear-gradient(
      90deg,
      rgba(6, 9, 15, 0.28) 0%,
      rgba(6, 9, 15, 0.16) 12%,
      rgba(6, 9, 15, 0.05) 20%,
      transparent 30%,
      transparent 70%,
      rgba(6, 9, 15, 0.05) 80%,
      rgba(6, 9, 15, 0.16) 88%,
      rgba(6, 9, 15, 0.28) 100%
    );
  opacity: 0.34;
}

html[data-theme-preset="cotton-candy-light"] .nav::after {
  background:
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(188, 70, 85, 0.18) 18%,
      rgba(104, 143, 226, 0.18) 50%,
      rgba(103, 216, 214, 0.14) 82%,
      transparent 100%
    );
}

html[data-theme-preset="cotton-candy-light"] footer {
  border-top-color: rgba(96, 118, 148, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(241, 246, 252, 0.28)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(188, 70, 85, 0.05) 36%, rgba(104, 143, 226, 0.06) 72%, rgba(103, 216, 214, 0.04)),
    rgba(246, 250, 255, 0.46);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 -10px 22px rgba(56, 74, 103, 0.08);
}

html[data-theme-preset="cotton-candy-light"] footer::after {
  background:
    linear-gradient(
      90deg,
      rgba(6, 9, 15, 0.24) 0%,
      rgba(6, 9, 15, 0.12) 12%,
      rgba(6, 9, 15, 0.04) 20%,
      transparent 30%,
      transparent 70%,
      rgba(6, 9, 15, 0.04) 80%,
      rgba(6, 9, 15, 0.12) 88%,
      rgba(6, 9, 15, 0.24) 100%
    );
  opacity: 0.46;
}

html[data-theme-preset="cotton-candy-light"] .footer-copy,
html[data-theme-preset="cotton-candy-light"] .footer-signoff {
  color: var(--theme-footer-copy-color, rgba(34, 48, 69, 0.98));
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.76);
}

html[data-theme-preset="cotton-candy-light"] .footer-signoff {
  color: var(--theme-footer-signoff-color, rgba(18, 31, 51, 0.98));
}

html[data-theme-preset="cotton-candy-light"] footer .logo {
  filter:
    drop-shadow(0 1px 0 rgba(255, 255, 255, 0.74))
    drop-shadow(0 0 14px rgba(104, 143, 226, 0.1));
}

html[data-theme-preset="cotton-candy-dark-ui"] footer {
  border-top-color: rgba(96, 118, 148, 0.1);
  background: var(--theme-footer-bg);
  box-shadow: var(--theme-footer-shadow);
}

html[data-theme-preset="cotton-candy-dark-ui"] footer::after {
  background: var(--theme-footer-after);
  opacity: 0.46;
}

html[data-theme-preset="cotton-candy-dark-ui"] .footer-copy,
html[data-theme-preset="cotton-candy-dark-ui"] .footer-signoff {
  color: var(--theme-footer-copy-color);
  text-shadow: var(--theme-footer-copy-shadow);
}

html[data-theme-preset="cotton-candy-dark-ui"] .footer-signoff {
  color: var(--theme-footer-signoff-color);
}

html[data-theme-preset="cotton-candy-dark-ui"] footer .logo {
  filter: var(--theme-footer-logo-filter);
}
h1,
h2,
h3 {
  font-family: var(--font-heading);
  color: var(--theme-text-heading, var(--text-strong));
}
