*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg:           #080808;
  --bg-raised:    #0F0F0F;
  --bg-card:      #111111;
  --border:       #1C1C1C;
  --border-mid:   #252525;
  --border-strong:#303030;
  --text:         #F0F0F0;
  --text-2:       #808080;
  --text-3:       #383838;
  --accent:       #00B4FF;
  --accent-dim:   rgba(0, 180, 255, 0.08);
  --accent-ring:  rgba(0, 180, 255, 0.3);
  --nav-bg:       rgba(8, 8, 8, 0.88);
  --smf-primary:  #00B4FF;
  --sans:  -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --mono:  'JetBrains Mono', 'Fira Code', 'SF Mono', 'Cascadia Code', monospace;
  --max:   1080px;
  --nav-h: 60px;
}

@media (prefers-color-scheme: light) {
  :root:not([data-theme="dark"]) {
    --bg:           #FFFFFF;
    --bg-raised:    #FAFAFA;
    --bg-card:      #F4F4F4;
    --border:       #E8E8E8;
    --border-mid:   #D8D8D8;
    --border-strong:#C0C0C0;
    --text:         #111111;
    --text-2:       #606060;
    --text-3:       #B8B8B8;
    --accent:       #0078CC;
    --accent-dim:   rgba(0, 120, 204, 0.08);
    --accent-ring:  rgba(0, 120, 204, 0.3);
    --nav-bg:       rgba(255, 255, 255, 0.88);
    --smf-primary:  #0078CC;
  }
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ─── Layout ──────────────────────────────────────────── */

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Navigation ──────────────────────────────────────── */

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: var(--nav-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-brand {
  font-family: var(--mono);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  transition: color 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-brand:hover {
  color: var(--accent);
  text-decoration: none;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
}

.nav-links a {
  font-size: 0.875rem;
  color: var(--text-2);
  transition: color 0.15s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  text-decoration: none;
}

/* ─── Nav theme controls ──────────────────────────────── */

.nav-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.accent-swatches {
  display: flex;
  gap: 5px;
  align-items: center;
}

.swatch {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 0;
  transition: transform 0.12s;
  flex-shrink: 0;
}

.swatch:hover {
  transform: scale(1.3);
}

.swatch.active {
  box-shadow: 0 0 0 1.5px var(--bg), 0 0 0 3px currentColor;
}

.swatch-blue   { background: #00B4FF; color: #00B4FF; }
.swatch-orange { background: #FF7700; color: #FF7700; }
.swatch-green  { background: #00FF66; color: #00FF66; }

.theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-2);
  padding: 2px 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.15s;
  font-size: 0.8125rem;
  line-height: 1;
  border-radius: 4px;
}

.theme-toggle:hover {
  color: var(--text);
}

/* ─── Molecule mark ──────────────────────────────────── */

.molecule-mark {
  width: 64px;
  height: 64px;
  color: var(--accent);
  display: block;
  margin-bottom: 20px;
}

.nav-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--accent);
}

/* ─── Hero (homepage) ─────────────────────────────────── */

.hero {
  padding: 88px 0 68px;
}

.hero-eyebrow {
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero-wordmark {
  font-family: var(--mono);
  font-size: clamp(64px, 12vw, 120px);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--text);
  margin-bottom: 28px;
}

.hero-tagline {
  font-size: 1.1875rem;
  color: var(--text-2);
  max-width: 440px;
  line-height: 1.55;
}

/* ─── Page header (interior pages) ───────────────────── */

.page-header {
  padding: 72px 0 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 64px;
}

.page-header-eyebrow {
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--smf-primary);
  margin-bottom: 14px;
}

.page-header h1 {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.page-header .lead {
  font-size: 1.0625rem;
  color: var(--text-2);
  max-width: 520px;
  margin-top: 14px;
  line-height: 1.55;
}

/* ─── Section ─────────────────────────────────────────── */

.section {
  padding: 72px 0;
}

.section + .section {
  border-top: 1px solid var(--border);
}

.section-label {
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 36px;
}

.section-title {
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
  line-height: 1.2;
}

.section-sub {
  font-size: 0.9375rem;
  color: var(--text-2);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.6;
}

/* ─── App cards ───────────────────────────────────────── */

.apps-grid {
  display: grid;
  gap: 12px;
}

.app-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 22px 24px;
  color: inherit;
  transition: border-color 0.15s;
}

.app-card:hover {
  border-color: var(--border-strong);
  text-decoration: none;
}

.app-card.disabled {
  opacity: 0.38;
  pointer-events: none;
}

.app-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.app-icon-sm {
  background: linear-gradient(145deg, #003d5c 0%, #007ab8 100%);
  color: rgba(255,255,255,0.9);
}

.app-icon-placeholder {
  background: var(--border);
  color: var(--text-3);
}

.app-info {
  flex: 1;
  min-width: 0;
}

.app-name {
  font-weight: 600;
  font-size: 0.9375rem;
  margin-bottom: 3px;
}

.app-desc {
  font-size: 0.8125rem;
  color: var(--text-2);
}

.app-badge {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid var(--border-mid);
  color: var(--text-3);
  flex-shrink: 0;
}

.app-arrow {
  color: var(--text-3);
  font-size: 1rem;
  flex-shrink: 0;
  transition: color 0.15s, transform 0.15s;
}

.app-card:hover .app-arrow {
  color: var(--text-2);
  transform: translateX(2px);
}

/* ─── Features grid ───────────────────────────────────── */

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--border);
  gap: 1px;
}

.feature-item {
  background: var(--bg-card);
  padding: 28px 26px;
}

.feature-tag {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.feature-tag.free {
  color: var(--text-3);
}

.feature-title {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 8px;
  line-height: 1.3;
}

.feature-desc {
  font-size: 0.8rem;
  color: var(--text-2);
  line-height: 1.55;
}

/* ─── Pricing ─────────────────────────────────────────── */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 30px;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--accent);
}

.pricing-badge {
  position: absolute;
  top: -1px;
  right: 20px;
  background: var(--accent);
  color: #000;
  font-family: var(--mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 0 0 6px 6px;
}

.pricing-tier {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 20px;
}

.pricing-amount {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-amount sub {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-2);
  letter-spacing: 0;
  vertical-align: baseline;
  margin-left: 2px;
}

.pricing-note {
  font-size: 0.75rem;
  color: var(--text-2);
  margin-bottom: 28px;
  min-height: 18px;
}

.pricing-features {
  list-style: none;
  border-top: 1px solid var(--border);
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.8125rem;
  color: var(--text-2);
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.4;
}

.pricing-features li .check {
  color: var(--text-3);
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 0.75rem;
}

.pricing-features li.yes .check {
  color: var(--accent);
}

.pricing-features li.yes {
  color: var(--text);
}

/* ─── How it works steps ──────────────────────────────── */

.steps {
  display: grid;
  gap: 1px;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--border);
}

.step {
  background: var(--bg-card);
  padding: 28px 26px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-num {
  font-family: var(--mono);
  font-size: 0.6875rem;
  color: var(--text-3);
  padding-top: 2px;
  flex-shrink: 0;
  width: 20px;
}

.step-title {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.step-desc {
  font-size: 0.8rem;
  color: var(--text-2);
  line-height: 1.55;
}

/* ─── Buttons ─────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.15s;
  white-space: nowrap;
}

.btn:hover {
  opacity: 0.82;
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: #000;
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-mid);
}

.btn-outline:hover {
  border-color: var(--border-strong);
}

/* ─── CTA strip ───────────────────────────────────────── */

.cta-strip {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-strip-text h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.cta-strip-text p {
  font-size: 0.8125rem;
  color: var(--text-2);
}

/* ─── App Store placeholder ───────────────────────────── */

.appstore-placeholder {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border-mid);
  border-radius: 8px;
  padding: 12px 20px;
  color: var(--text-2);
  font-size: 0.8125rem;
  cursor: not-allowed;
  opacity: 0.6;
}

.appstore-placeholder .icon {
  font-size: 1.25rem;
}

/* ─── Prose (privacy policy body) ────────────────────── */

.prose {
  max-width: 700px;
}

.prose h2 {
  font-size: 1.1875rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 52px 0 14px;
  padding-top: 52px;
  border-top: 1px solid var(--border);
  scroll-margin-top: calc(var(--nav-h) + 24px);
}

.prose h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.prose h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  margin: 28px 0 10px;
  color: var(--text);
}

.prose p {
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 16px;
}

.prose ul,
.prose ol {
  padding-left: 20px;
  margin-bottom: 16px;
}

.prose li {
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 6px;
}

.prose strong {
  color: var(--text);
  font-weight: 600;
}

.prose a {
  color: var(--accent);
}

.prose .effective-date {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--text-2);
  margin-bottom: 40px;
  letter-spacing: 0.02em;
}

.prose .table-wrap {
  overflow-x: auto;
  margin: 8px 0 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8125rem;
  min-width: 540px;
}

.prose thead th {
  text-align: left;
  font-weight: 600;
  color: var(--text);
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 10px 14px;
  white-space: nowrap;
  vertical-align: bottom;
}

.prose tbody td {
  color: var(--text-2);
  border-bottom: 1px solid var(--border);
  padding: 10px 14px;
  line-height: 1.5;
  vertical-align: top;
}

.prose tbody tr:last-child td {
  border-bottom: none;
}

.prose tbody td strong {
  color: var(--text);
  font-weight: 600;
}

.prose-anchor {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--text-3);
  margin-left: 10px;
  text-decoration: none;
  opacity: 0;
  transition: opacity 0.15s;
  vertical-align: middle;
  font-weight: 400;
}

.prose h2:hover .prose-anchor {
  opacity: 1;
}

.prose-anchor:hover {
  color: var(--accent);
  text-decoration: none;
}

/* ─── FAQ ─────────────────────────────────────────────── */

.faq {
  border-top: 1px solid var(--border);
}

.faq-item {
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  scroll-margin-top: calc(var(--nav-h) + 24px);
}

.faq-q {
  font-weight: 600;
  font-size: 0.9375rem;
  margin-bottom: 14px;
  line-height: 1.4;
}

.faq-a {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.75;
}

.faq-a p {
  margin-bottom: 10px;
}

.faq-a p:last-child {
  margin-bottom: 0;
}

/* ─── Contact box ─────────────────────────────────────── */

.contact-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
  margin-top: 48px;
}

.contact-box h2 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.contact-box p {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 18px;
}

/* ─── About page ──────────────────────────────────────── */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.about-body p {
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 18px;
}

.about-body p:last-child {
  margin-bottom: 0;
}

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

.about-links {
  list-style: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.about-links li {
  border-bottom: 1px solid var(--border);
}

.about-links li:last-child {
  border-bottom: none;
}

.about-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  font-size: 0.875rem;
  color: var(--text-2);
  transition: background 0.12s, color 0.12s;
}

.about-links a:hover {
  background: var(--bg-card);
  color: var(--text);
  text-decoration: none;
}

.about-links a .link-label {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-2);
}

/* ─── FAQ page ────────────────────────────────────────── */

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 64px;
  align-items: start;
}

.faq-content .section {
  padding: 18px 0;
}

.faq-content .section:first-child {
  padding-top: 0;
}

.faq-content .section + .section {
  border-top: none;
}

.faq-content .section-label {
  font-size: 0.875rem;
}

.faq-footer {
  max-width: calc(100% - 264px); /* left column only: full width minus 200px col + 64px gap */
}

@media (max-width: 800px) {
  .faq-footer {
    max-width: 100%;
  }
}

.faq-toc {
  position: sticky;
  top: calc(var(--nav-h) + 32px);
}

.faq-toc-label {
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 14px;
}

.faq-toc-section {
  margin-bottom: 18px;
}

.faq-toc-section-name {
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}

.faq-toc-list {
  list-style: none;
}

.faq-toc-item a {
  font-size: 0.8125rem;
  color: var(--text-2);
  line-height: 1.5;
  display: block;
  padding: 2px 0;
  transition: color 0.15s;
}

.faq-toc-item a:hover {
  color: var(--text);
  text-decoration: none;
}

.faq-anchor {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--text-3);
  margin-left: 8px;
  text-decoration: none;
  opacity: 0;
  transition: opacity 0.15s;
}

.faq-item:hover .faq-anchor {
  opacity: 1;
}

.faq-anchor:hover {
  color: var(--accent);
  text-decoration: none;
}

@media (max-width: 800px) {
  .faq-layout { grid-template-columns: 1fr; }
  .faq-toc { display: none; }
}

/* ─── Logo explainer ──────────────────────────────────── */

.logo-explainer {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 48px;
  align-items: start;
}

.logo-explainer-mark {
  width: 88px;
  height: 88px;
  color: var(--accent);
}

/* ─── Footer ──────────────────────────────────────────── */

footer {
  border-top: 1px solid var(--border);
  padding: 36px 0 40px;
  margin-top: 80px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand {
  font-family: var(--mono);
  font-size: 0.8125rem;
  color: var(--text-3);
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.8rem;
  color: var(--text-2);
  transition: color 0.15s;
}

.footer-links a:hover {
  color: var(--text);
  text-decoration: none;
}

.footer-copy {
  width: 100%;
  font-size: 0.725rem;
  color: var(--text-3);
  margin-top: 4px;
}

/* ─── Tag / pill ──────────────────────────────────────── */

.tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid var(--border-mid);
  color: var(--text-3);
}

.tag.accent {
  border-color: var(--accent-ring);
  color: var(--accent);
  background: var(--accent-dim);
}

/* ─── Utility ─────────────────────────────────────────── */

.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.text-2 { color: var(--text-2); }

/* ─── Responsive ──────────────────────────────────────── */

@media (max-width: 640px) {
  .hero { padding: 56px 0 44px; }
  .hero-wordmark { letter-spacing: -0.04em; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .logo-explainer { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .cta-strip { flex-direction: column; align-items: flex-start; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .page-header { padding: 56px 0 36px; margin-bottom: 48px; }
  .section { padding: 56px 0; }
  nav .nav-links { gap: 20px; }
}

/* ─── Manual theme overrides ──────────────────────────── */

html[data-theme="light"] {
  --bg:           #FFFFFF;
  --bg-raised:    #FAFAFA;
  --bg-card:      #F4F4F4;
  --border:       #E8E8E8;
  --border-mid:   #D8D8D8;
  --border-strong:#C0C0C0;
  --text:         #111111;
  --text-2:       #606060;
  --text-3:       #B8B8B8;
  --accent:       #0078CC;
  --accent-dim:   rgba(0, 120, 204, 0.08);
  --accent-ring:  rgba(0, 120, 204, 0.3);
  --nav-bg:       rgba(255, 255, 255, 0.88);
  --smf-primary:  #0078CC;
}

html[data-theme="dark"] {
  --bg:           #080808;
  --bg-raised:    #0F0F0F;
  --bg-card:      #111111;
  --border:       #1C1C1C;
  --border-mid:   #252525;
  --border-strong:#303030;
  --text:         #F0F0F0;
  --text-2:       #808080;
  --text-3:       #383838;
  --accent:       #00B4FF;
  --accent-dim:   rgba(0, 180, 255, 0.08);
  --accent-ring:  rgba(0, 180, 255, 0.3);
  --nav-bg:       rgba(8, 8, 8, 0.88);
  --smf-primary:  #00B4FF;
}

/* ─── Accent color overrides ──────────────────────────── */

html[data-accent="orange"] {
  --accent:      #FF7700;
  --accent-dim:  rgba(255, 119, 0, 0.08);
  --accent-ring: rgba(255, 119, 0, 0.3);
}

@media (prefers-color-scheme: light) {
  html[data-accent="orange"]:not([data-theme="dark"]) {
    --accent:      #C05400;
    --accent-dim:  rgba(192, 84, 0, 0.08);
    --accent-ring: rgba(192, 84, 0, 0.3);
  }
}

html[data-theme="light"][data-accent="orange"] {
  --accent:      #C05400;
  --accent-dim:  rgba(192, 84, 0, 0.08);
  --accent-ring: rgba(192, 84, 0, 0.3);
}

html[data-accent="green"] {
  --accent:      #00FF66;
  --accent-dim:  rgba(0, 255, 102, 0.08);
  --accent-ring: rgba(0, 255, 102, 0.3);
}

@media (prefers-color-scheme: light) {
  html[data-accent="green"]:not([data-theme="dark"]) {
    --accent:      #007838;
    --accent-dim:  rgba(0, 120, 56, 0.08);
    --accent-ring: rgba(0, 120, 56, 0.3);
  }
}

html[data-theme="light"][data-accent="green"] {
  --accent:      #007838;
  --accent-dim:  rgba(0, 120, 56, 0.08);
  --accent-ring: rgba(0, 120, 56, 0.3);
}
