/* ============================================================================
   大轩巴 — style.css
   A restrained, monochrome design system. Light & Dark only.
   No decorative color. Typography and spacing do the work.
   Optimized for 60fps interactions, accessibility (WCAG 2.1 AA), and a
   small, predictable footprint.
   ----------------------------------------------------------------------------
   Sections
     1.  Design tokens (light / dark)
     2.  Reset & base
     3.  Typography
     4.  Layout primitives
     5.  Utilities
     6.  Buttons
     7.  Cards
     8.  Navigation (top bar, mobile drawer, theme switch)
     9.  Intro / hero
     10. Products grid
     11. About
     12. Contact
     13. Footer
     14. Forms
     15. Badges / tags / chips
     16. Callouts / alerts
     17. Modal
     18. Tabs
     19. Accordion (FAQ)
     20. Tooltip
     21. Tables
     22. Breadcrumb
     23. Pagination
     24. Dropdown menu
     25. Progress / skeleton / spinner
     26. Avatar
     27. Code blocks
     28. Stats
     29. Steps
     30. Lists
     31. Download cards (AI page)
     32. Download handler (download.html)
     33. Reveal & motion
     34. Keyframes
     35. Responsive
     36. Print
     37. Reduced motion
     38. Forced colors / a11y
   ========================================================================== */


/* ============================================================================
   1. DESIGN TOKENS
   Light is the default. [data-theme="dark"] overrides the surface tokens.
   Palette is strictly monochrome: ink on paper. A single neutral accent
   (the ink itself) carries emphasis. No hues.
   ========================================================================== */
:root,
[data-theme="light"] {
  color-scheme: light;

  /* surfaces */
  --bg:            #ffffff;
  --bg-1:          #fafafa;
  --bg-2:          #f4f4f5;
  --surface:       #ffffff;
  --surface-2:     #fafafa;
  --surface-3:     #f4f4f5;

  /* text */
  --text:          #18181b;
  --text-2:        #3f3f46;
  --text-muted:    #71717a;
  --text-faint:    #a1a1aa;
  --on-accent:     #ffffff;

  /* lines */
  --border:        #e4e4e7;
  --border-strong: #d4d4d8;
  --border-faint:  #f0f0f1;

  /* accent = ink (monochrome) */
  --accent:        #18181b;
  --accent-2:      #3f3f46;
  --accent-soft:   rgba(24, 24, 27, 0.06);

  /* focus */
  --focus:         #18181b;
  --focus-ring:    0 0 0 3px rgba(24, 24, 27, 0.18);

  /* shadows — soft, neutral, never colored */
  --shadow-1: 0 1px 2px rgba(24,24,27,0.04), 0 1px 3px rgba(24,24,27,0.06);
  --shadow-2: 0 2px 6px rgba(24,24,27,0.05), 0 8px 24px rgba(24,24,27,0.06);
  --shadow-3: 0 4px 12px rgba(24,24,27,0.06), 0 18px 48px rgba(24,24,27,0.08);

  /* radii */
  --r-xs: 6px;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 22px;
  --r-pill: 999px;

  /* spacing scale (4px base) */
  --sp-1: 4px;  --sp-2: 8px;  --sp-3: 12px; --sp-4: 16px;
  --sp-5: 20px; --sp-6: 24px; --sp-7: 32px; --sp-8: 40px;
  --sp-9: 56px; --sp-10: 72px; --sp-11: 96px; --sp-12: 128px;

  /* typography */
  --font-sans: "Inter", "Outfit", system-ui, -apple-system, "Segoe UI", "PingFang SC",
               "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", "Cascadia Code", Menlo, Consolas, monospace;

  --fs-2xs: 0.6875rem;   /* 11 */
  --fs-xs:  0.75rem;     /* 12 */
  --fs-sm:  0.8125rem;   /* 13 */
  --fs-base:0.9375rem;   /* 15 */
  --fs-md:  1rem;        /* 16 */
  --fs-lg:  1.125rem;    /* 18 */
  --fs-xl:  1.375rem;    /* 22 */
  --fs-2xl: 1.75rem;     /* 28 */
  --fs-3xl: 2.25rem;     /* 36 */
  --fs-4xl: 3rem;        /* 48 */
  --fs-5xl: 3.75rem;     /* 60 */
  --fs-6xl: 4.75rem;     /* 76 */

  --lh-tight: 1.15;
  --lh-snug:  1.35;
  --lh-normal:1.65;

  --fw-regular: 400;
  --fw-medium:  500;
  --fw-semibold:600;
  --fw-bold:    700;

  /* motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-1: 120ms;
  --dur-2: 200ms;
  --dur-3: 320ms;
  --dur-4: 500ms;

  /* layout */
  --container: 1160px;
  --container-narrow: 760px;
  --nav-h: 64px;
  --z-nav: 100;
  --z-drawer: 200;
  --z-modal: 400;
  --z-toast: 500;
}

[data-theme="dark"] {
  color-scheme: dark;

  --bg:            #0a0a0b;
  --bg-1:          #0e0e10;
  --bg-2:          #141417;
  --surface:       #141417;
  --surface-2:     #18181b;
  --surface-3:     #1f1f23;

  --text:          #fafafa;
  --text-2:        #d4d4d8;
  --text-muted:    #a1a1aa;
  --text-faint:    #71717a;
  --on-accent:     #0a0a0b;

  --border:        #27272a;
  --border-strong: #3f3f46;
  --border-faint:  #1c1c1f;

  --accent:        #fafafa;
  --accent-2:      #d4d4d8;
  --accent-soft:   rgba(250, 250, 250, 0.08);

  --focus:         #fafafa;
  --focus-ring:    0 0 0 3px rgba(250, 250, 250, 0.22);

  --shadow-1: 0 1px 2px rgba(0,0,0,0.4), 0 1px 3px rgba(0,0,0,0.5);
  --shadow-2: 0 2px 6px rgba(0,0,0,0.45), 0 8px 24px rgba(0,0,0,0.5);
  --shadow-3: 0 4px 12px rgba(0,0,0,0.5), 0 18px 48px rgba(0,0,0,0.6);
}


/* ============================================================================
   2. RESET & BASE
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }

* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  line-height: var(--lh-normal);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  transition: background-color var(--dur-3) var(--ease-out),
              color var(--dur-3) var(--ease-out);
}

img, svg, video, canvas { display: block; max-width: 100%; }

img, svg { vertical-align: middle; }

a { color: inherit; text-decoration: none; }

button, input, select, textarea { font: inherit; color: inherit; }

button { cursor: pointer; background: none; border: none; }

ul, ol { list-style: none; padding: 0; }

:where(h1, h2, h3, h4, h5, h6) { font-weight: var(--fw-bold); line-height: var(--lh-tight); color: var(--text); }

::selection { background: var(--accent); color: var(--on-accent); }

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
  border-radius: var(--r-xs);
}

/* custom scrollbar — subtle, monochrome */
* { scrollbar-width: thin; scrollbar-color: var(--border-strong) transparent; }
*::-webkit-scrollbar { width: 10px; height: 10px; }
*::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: var(--r-pill); border: 2px solid var(--bg); }
*::-webkit-scrollbar-track { background: transparent; }

body.no-scroll { overflow: hidden; }


/* ============================================================================
   3. TYPOGRAPHY
   ========================================================================== */
.display {
  font-size: clamp(var(--fs-3xl), 6vw, var(--fs-6xl));
  font-weight: var(--fw-bold);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

h1, .h1 { font-size: clamp(var(--fs-2xl), 4vw, var(--fs-4xl)); letter-spacing: -0.02em; }
h2, .h2 { font-size: clamp(var(--fs-xl), 3vw, var(--fs-3xl)); letter-spacing: -0.015em; }
h3, .h3 { font-size: var(--fs-xl); }
h4, .h4 { font-size: var(--fs-lg); }
h5, .h5 { font-size: var(--fs-md); }
h6, .h6 { font-size: var(--fs-base); }

.lead {
  font-size: clamp(var(--fs-md), 1.4vw, var(--fs-xl));
  line-height: var(--lh-snug);
  color: var(--text-2);
  font-weight: var(--fw-regular);
}

p { color: var(--text-2); }

.muted { color: var(--text-muted); }
.faint { color: var(--text-faint); }

.text-xs  { font-size: var(--fs-xs); }
.text-sm  { font-size: var(--fs-sm); }
.text-base{ font-size: var(--fs-base); }
.text-lg  { font-size: var(--fs-lg); }
.text-xl  { font-size: var(--fs-xl); }

.mono { font-family: var(--font-mono); font-size: 0.9em; }

.eyebrow {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--sp-3);
}

.strong { font-weight: var(--fw-semibold); color: var(--text); }
.mark { background: var(--accent); color: var(--on-accent); padding: 0 0.18em; border-radius: var(--r-xs); }

.lh-tight { line-height: var(--lh-tight); }
.lh-snug  { line-height: var(--lh-snug); }
.lh-normal{ line-height: var(--lh-normal); }

.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.nowrap   { white-space: nowrap; }
.break-words { word-break: break-word; }


/* ============================================================================
   4. LAYOUT PRIMITIVES
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--sp-5);
}
.container--narrow { max-width: var(--container-narrow); }
.container--wide   { max-width: 1320px; }

.section { padding-block: var(--sp-11); }
.section--tight { padding-block: var(--sp-9); }
.section--flush { padding-block: 0; }

.section__head { max-width: 720px; margin-bottom: var(--sp-8); }
.section__head.center { margin-inline: auto; text-align: center; }
.section__head .lead { margin-top: var(--sp-3); }

.divider { height: 1px; background: var(--border); border: 0; margin-block: var(--sp-8); }

.grid { display: grid; gap: var(--sp-5); }
.grid-2 { display: grid; gap: var(--sp-5); grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { display: grid; gap: var(--sp-5); grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { display: grid; gap: var(--sp-5); grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-auto { display: grid; gap: var(--sp-5); grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }

.row { display: flex; align-items: center; gap: var(--sp-3); }
.row--center { justify-content: center; }
.row--between { justify-content: space-between; }
.row--start { justify-content: flex-start; }
.row--end { justify-content: flex-end; }
.row--top { align-items: flex-start; }
.row--stretch { align-items: stretch; }
.wrap { flex-wrap: wrap; }

.col { display: flex; flex-direction: column; gap: var(--sp-3); }

.mx-auto { margin-inline: auto; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.relative { position: relative; }
.absolute { position: absolute; }
.sticky { position: sticky; }
.fixed { position: fixed; }
.inset-0 { inset: 0; }


/* ============================================================================
   5. UTILITIES
   ========================================================================== */
/* spacing helpers */
.m-0 { margin: 0; } .mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.mt-1 { margin-top: var(--sp-1); } .mt-2 { margin-top: var(--sp-2); }
.mt-3 { margin-top: var(--sp-3); } .mt-4 { margin-top: var(--sp-4); }
.mt-5 { margin-top: var(--sp-5); } .mt-6 { margin-top: var(--sp-6); }
.mt-7 { margin-top: var(--sp-7); } .mt-8 { margin-top: var(--sp-8); }
.mb-1 { margin-bottom: var(--sp-1); } .mb-2 { margin-bottom: var(--sp-2); }
.mb-3 { margin-bottom: var(--sp-3); } .mb-4 { margin-bottom: var(--sp-4); }
.mb-5 { margin-bottom: var(--sp-5); } .mb-6 { margin-bottom: var(--sp-6); }
.mb-7 { margin-bottom: var(--sp-7); } .mb-8 { margin-bottom: var(--sp-8); }
.gap-1 { gap: var(--sp-1); } .gap-2 { gap: var(--sp-2); }
.gap-3 { gap: var(--sp-3); } .gap-4 { gap: var(--sp-4); }
.gap-5 { gap: var(--sp-5); } .gap-6 { gap: var(--sp-6); }

/* display */
.hidden { display: none !important; }
.block { display: block; }
.inline-block { display: inline-block; }
.flex { display: flex; }
.grid-d { display: grid; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* widths */
.w-full { width: 100%; }
.max-w-prose { max-width: 68ch; }

/* borders */
.rounded-xs { border-radius: var(--r-xs); }
.rounded-sm { border-radius: var(--r-sm); }
.rounded-md { border-radius: var(--r-md); }
.rounded-lg { border-radius: var(--r-lg); }
.rounded-xl { border-radius: var(--r-xl); }
.rounded-pill { border-radius: var(--r-pill); }

/* surfaces */
.bg-1 { background: var(--bg-1); }
.bg-2 { background: var(--bg-2); }
.surface { background: var(--surface); }
.border-soft { border: 1px solid var(--border); }

/* opacity */
.op-60 { opacity: 0.6; } .op-70 { opacity: 0.7; } .op-80 { opacity: 0.8; }

/* transitions */
.transition { transition: all var(--dur-2) var(--ease-out); }


/* ============================================================================
   6. BUTTONS
   ========================================================================== */
.btn {
  --btn-bg: transparent;
  --btn-fg: var(--text);
  --btn-bd: var(--border-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 0 var(--sp-5);
  height: 44px;
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  line-height: 1;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border: 1px solid var(--btn-bd);
  border-radius: var(--r-md);
  white-space: nowrap;
  user-select: none;
  cursor: pointer;
  transition: transform var(--dur-1) var(--ease-out),
              background-color var(--dur-2) var(--ease-out),
              border-color var(--dur-2) var(--ease-out),
              box-shadow var(--dur-2) var(--ease-out),
              opacity var(--dur-2) var(--ease-out);
  will-change: transform;
}
.btn svg { width: 1.05em; height: 1.05em; flex: none; }

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  --btn-bg: var(--accent);
  --btn-fg: var(--on-accent);
  --btn-bd: var(--accent);
}
.btn--primary:hover { box-shadow: var(--shadow-2); }

.btn--outline {
  --btn-bg: transparent;
  --btn-fg: var(--text);
  --btn-bd: var(--border-strong);
}
.btn--outline:hover { background: var(--accent-soft); border-color: var(--text-muted); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--text);
  --btn-bd: transparent;
}
.btn--ghost:hover { background: var(--accent-soft); }

.btn--subtle {
  --btn-bg: var(--surface-2);
  --btn-fg: var(--text);
  --btn-bd: var(--border);
}
.btn--subtle:hover { background: var(--surface-3); }

/* sizes */
.btn--sm { height: 36px; padding: 0 var(--sp-4); font-size: var(--fs-sm); border-radius: var(--r-sm); }
.btn--lg { height: 52px; padding: 0 var(--sp-7); font-size: var(--fs-lg); border-radius: var(--r-lg); }
.btn--block { width: 100%; }
.btn--icon { width: 44px; padding: 0; }
.btn--icon.btn--sm { width: 36px; }

.btn[disabled], .btn[aria-disabled="true"] {
  opacity: 0.5; pointer-events: none;
}

/* link-style button */
.btn-link {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  color: var(--text); font-weight: var(--fw-semibold);
  border-bottom: 1px solid var(--border-strong);
  padding-bottom: 2px;
  transition: border-color var(--dur-2) var(--ease-out), gap var(--dur-2) var(--ease-out);
}
.btn-link:hover { border-color: var(--text); gap: var(--sp-3); }
.btn-link svg { width: 1em; height: 1em; }


/* ============================================================================
   7. CARDS
   ========================================================================== */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  transition: border-color var(--dur-2) var(--ease-out),
              box-shadow var(--dur-2) var(--ease-out),
              transform var(--dur-2) var(--ease-out);
}
.card--bordered { border-color: var(--border-strong); }
.card--flat { border-color: transparent; background: var(--surface-2); }
.card--hover:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-2);
  transform: translateY(-2px);
}

.card__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: var(--r-md);
  background: var(--accent-soft); color: var(--text);
  margin-bottom: var(--sp-4);
}
.card__icon svg { width: 22px; height: 22px; }

.card h3, .card .card__title {
  font-size: var(--fs-lg); margin-bottom: var(--sp-2); letter-spacing: -0.01em;
}
.card p { color: var(--text-muted); font-size: var(--fs-base); }

.card__body { color: var(--text-muted); }


/* ============================================================================
   8. NAVIGATION
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: var(--z-nav);
  height: var(--nav-h);
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-2) var(--ease-out), background-color var(--dur-2) var(--ease-out);
}
.site-header--scrolled {
  border-bottom-color: var(--border);
  background: color-mix(in srgb, var(--bg) 90%, transparent);
}
.site-header__inner {
  height: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--sp-5);
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-4);
}

.brand { display: inline-flex; align-items: center; gap: var(--sp-3); }
.brand__mark {
  width: 38px; height: 38px; border-radius: var(--r-md);
  background: var(--accent); color: var(--on-accent);
  display: grid; place-items: center;
  font-weight: var(--fw-bold); font-size: 1.15rem;
  flex: none;
}
.brand__name { font-weight: var(--fw-bold); font-size: var(--fs-md); letter-spacing: -0.01em; line-height: 1.1; }
.brand__sub { font-size: var(--fs-2xs); color: var(--text-muted); letter-spacing: 0.04em; }

.nav { display: flex; align-items: center; gap: var(--sp-2); }
.nav__link {
  position: relative;
  padding: var(--sp-2) var(--sp-3);
  font-size: var(--fs-base);
  font-weight: var(--fw-medium);
  color: var(--text-muted);
  border-radius: var(--r-sm);
  transition: color var(--dur-2) var(--ease-out), background-color var(--dur-2) var(--ease-out);
}
.nav__link:hover { color: var(--text); background: var(--accent-soft); }
.nav__link--active { color: var(--text); }

.nav__actions { display: flex; align-items: center; gap: var(--sp-2); }

/* theme switch — strict 2-state (light / dark) */
.theme-switch {
  position: relative;
  width: 60px; height: 32px;
  border-radius: var(--r-pill);
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  display: inline-flex; align-items: center;
  padding: 3px;
  transition: background-color var(--dur-2) var(--ease-out), border-color var(--dur-2) var(--ease-out);
  flex: none;
}
.theme-switch__icon {
  flex: 1; display: grid; place-items: center; height: 100%;
  color: var(--text-muted); z-index: 1;
  transition: color var(--dur-2) var(--ease-out);
}
.theme-switch__icon svg { width: 15px; height: 15px; }
.theme-switch__icon--sun  { color: var(--text); }
.theme-switch__thumb {
  position: absolute; top: 3px; left: 3px;
  width: 24px; height: 24px; border-radius: var(--r-pill);
  background: var(--accent); color: var(--on-accent);
  display: grid; place-items: center;
  transition: transform var(--dur-3) var(--ease-out);
  box-shadow: var(--shadow-1);
}
.theme-switch__thumb svg { width: 14px; height: 14px; }
[data-theme="dark"] .theme-switch__thumb { transform: translateX(28px); }
[data-theme="dark"] .theme-switch__icon--moon { color: var(--text); }
[data-theme="dark"] .theme-switch__icon--sun  { color: var(--text-muted); }
[data-theme="light"] .theme-switch__icon--sun  { color: var(--text); }
[data-theme="light"] .theme-switch__icon--moon { color: var(--text-muted); }

/* burger */
.nav__burger {
  width: 40px; height: 40px; border-radius: var(--r-sm);
  display: grid; place-items: center; color: var(--text);
  border: 1px solid transparent;
  transition: background-color var(--dur-2) var(--ease-out);
}
.nav__burger:hover { background: var(--accent-soft); }
.nav__burger svg { width: 22px; height: 22px; }

/* desktop hides burger; mobile shows it */
.nav__burger { display: none; }

/* mobile drawer */
.mobile-menu {
  position: fixed; inset: var(--nav-h) 0 auto 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: var(--sp-4) var(--sp-5) var(--sp-6);
  display: flex; flex-direction: column; gap: var(--sp-1);
  transform: translateY(-12px);
  opacity: 0; pointer-events: none;
  transition: transform var(--dur-2) var(--ease-out), opacity var(--dur-2) var(--ease-out);
  z-index: var(--z-drawer);
}
.mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-menu a {
  padding: var(--sp-3) var(--sp-3);
  font-size: var(--fs-md); font-weight: var(--fw-medium);
  border-radius: var(--r-sm); color: var(--text-2);
}
.mobile-menu a:hover { background: var(--accent-soft); color: var(--text); }
.mobile-menu a.is-cta { color: var(--text); font-weight: var(--fw-semibold); }


/* ============================================================================
   9. INTRO / HERO
   ========================================================================== */
.intro { padding-top: var(--sp-10); padding-bottom: var(--sp-9); }
.intro__inner {
  max-width: 880px; margin-inline: auto; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: var(--sp-5);
}
.intro__avatar {
  width: 96px; height: 96px; border-radius: var(--r-xl);
  background: var(--accent); color: var(--on-accent);
  display: grid; place-items: center;
  font-size: 2.6rem; font-weight: var(--fw-bold);
  box-shadow: var(--shadow-2);
}
.intro__name { letter-spacing: -0.03em; }
.intro__role {
  font-size: var(--fs-md); color: var(--text-muted); font-weight: var(--fw-medium);
  letter-spacing: 0.02em;
}
.intro__bio { max-width: 60ch; color: var(--text-2); }
.intro__tags { display: flex; flex-wrap: wrap; gap: var(--sp-2); justify-content: center; }
.intro__actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); justify-content: center; margin-top: var(--sp-2); }

/* a quiet hairline ornament under the intro */
.intro__rule { width: 56px; height: 2px; background: var(--border-strong); border-radius: var(--r-pill); }


/* ============================================================================
   10. PRODUCTS GRID
   ========================================================================== */
.products__grid { display: grid; gap: var(--sp-5); grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }

.product-card {
  position: relative;
  display: flex; flex-direction: column; gap: var(--sp-4);
  padding: var(--sp-6);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  text-align: left;
  color: inherit;
  overflow: hidden;
  transition: border-color var(--dur-2) var(--ease-out),
              box-shadow var(--dur-2) var(--ease-out),
              transform var(--dur-2) var(--ease-out);
}
.product-card::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 0%), var(--accent-soft), transparent 60%);
  opacity: 0; transition: opacity var(--dur-2) var(--ease-out);
  pointer-events: none;
}
.product-card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-2);
  transform: translateY(-3px);
}
.product-card:hover::after { opacity: 1; }

.product-card__media {
  width: 52px; height: 52px; border-radius: var(--r-md);
  background: var(--surface-2); border: 1px solid var(--border);
  display: grid; place-items: center; color: var(--text);
  flex: none;
}
.product-card__media svg { width: 26px; height: 26px; }
.product-card__title { font-size: var(--fs-lg); font-weight: var(--fw-bold); letter-spacing: -0.01em; }
.product-card__desc { color: var(--text-muted); font-size: var(--fs-base); flex: 1; }
.product-card__meta {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-3); padding-top: var(--sp-3);
  border-top: 1px solid var(--border-faint);
  font-size: var(--fs-sm); color: var(--text-muted);
}
.product-card__arrow {
  display: inline-flex; align-items: center; gap: var(--sp-1);
  color: var(--text); font-weight: var(--fw-semibold);
  transition: gap var(--dur-2) var(--ease-out);
}
.product-card:hover .product-card__arrow { gap: var(--sp-2); }
.product-card__arrow svg { width: 16px; height: 16px; }

/* featured product gets a stronger frame */
.product-card--featured { border-color: var(--border-strong); }


/* ============================================================================
   11. ABOUT
   ========================================================================== */
.about__grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: var(--sp-8); align-items: start; }
.about__text p { color: var(--text-2); margin-bottom: var(--sp-4); }
.about__text p:last-child { margin-bottom: 0; }

.about__facts { display: grid; gap: var(--sp-4); }
.fact {
  display: flex; align-items: baseline; justify-content: space-between; gap: var(--sp-4);
  padding: var(--sp-4) 0; border-bottom: 1px solid var(--border-faint);
}
.fact:first-child { padding-top: 0; }
.fact:last-child { border-bottom: 0; padding-bottom: 0; }
.fact__k { color: var(--text-muted); font-size: var(--fs-sm); }
.fact__v { font-weight: var(--fw-semibold); font-size: var(--fs-md); }


/* ============================================================================
   12. CONTACT
   ========================================================================== */
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-6); }
.contact__channel {
  display: flex; align-items: center; gap: var(--sp-4);
  padding: var(--sp-5);
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: border-color var(--dur-2) var(--ease-out), transform var(--dur-2) var(--ease-out);
}
.contact__channel:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.contact__ic {
  width: 44px; height: 44px; border-radius: var(--r-md); flex: none;
  background: var(--accent-soft); display: grid; place-items: center; color: var(--text);
}
.contact__ic svg { width: 22px; height: 22px; }
.contact__k { font-size: var(--fs-sm); color: var(--text-muted); }
.contact__v { font-weight: var(--fw-semibold); }


/* ============================================================================
   13. FOOTER
   ========================================================================== */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg-1);
  padding-block: var(--sp-9) var(--sp-6);
  margin-top: var(--sp-10);
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: var(--sp-7);
}
.site-footer__brand p { color: var(--text-muted); font-size: var(--fs-sm); max-width: 32ch; margin-top: var(--sp-3); }
.site-footer__col h4 {
  font-size: var(--fs-sm); text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-muted); margin-bottom: var(--sp-4); font-weight: var(--fw-semibold);
}
.site-footer__col a {
  display: block; padding: var(--sp-1) 0;
  color: var(--text-2); font-size: var(--fs-base);
  transition: color var(--dur-2) var(--ease-out);
}
.site-footer__col a:hover { color: var(--text); }
.site-footer__bottom {
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4);
  margin-top: var(--sp-8); padding-top: var(--sp-5);
  border-top: 1px solid var(--border);
  font-size: var(--fs-sm); color: var(--text-muted);
  flex-wrap: wrap;
}
.site-footer__social { display: flex; gap: var(--sp-2); }
.site-footer__social a {
  width: 38px; height: 38px; border-radius: var(--r-sm);
  display: grid; place-items: center; color: var(--text-muted);
  border: 1px solid var(--border);
  transition: color var(--dur-2) var(--ease-out), border-color var(--dur-2) var(--ease-out);
}
.site-footer__social a:hover { color: var(--text); border-color: var(--border-strong); }
.site-footer__social svg { width: 18px; height: 18px; }


/* ============================================================================
   14. FORMS
   ========================================================================== */
.field { display: flex; flex-direction: column; gap: var(--sp-2); }
.field__label { font-size: var(--fs-sm); font-weight: var(--fw-semibold); color: var(--text); }
.field__hint { font-size: var(--fs-xs); color: var(--text-muted); }
.field__error { font-size: var(--fs-xs); color: var(--text); font-weight: var(--fw-semibold); }

.input, .textarea, .select {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-sm);
  padding: 0 var(--sp-4);
  height: 44px;
  color: var(--text);
  font-size: var(--fs-base);
  transition: border-color var(--dur-2) var(--ease-out), box-shadow var(--dur-2) var(--ease-out);
}
.textarea { height: auto; padding: var(--sp-3) var(--sp-4); min-height: 120px; line-height: var(--lh-normal); resize: vertical; }
.input::placeholder, .textarea::placeholder { color: var(--text-faint); }
.input:focus, .textarea:focus, .select:focus {
  outline: none; border-color: var(--text); box-shadow: var(--focus-ring);
}
.input:disabled, .textarea:disabled, .select:disabled { opacity: 0.6; cursor: not-allowed; }

.select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%2371717a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m4 6 4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right var(--sp-3) center;
  padding-right: var(--sp-8);
}

/* checkbox & radio */
.check, .radio { display: inline-flex; align-items: center; gap: var(--sp-3); cursor: pointer; font-size: var(--fs-base); }
.check input, .radio input { position: absolute; opacity: 0; width: 0; height: 0; }
.check__box, .radio__dot {
  width: 20px; height: 20px; flex: none;
  border: 1px solid var(--border-strong); background: var(--surface);
  display: grid; place-items: center;
  transition: background-color var(--dur-2) var(--ease-out), border-color var(--dur-2) var(--ease-out);
}
.check__box { border-radius: var(--r-xs); }
.radio__dot { border-radius: var(--r-pill); }
.check__box svg { width: 14px; height: 14px; color: var(--on-accent); opacity: 0; transform: scale(0.6); transition: opacity var(--dur-1), transform var(--dur-1); }
.radio__dot::after { content: ""; width: 9px; height: 9px; border-radius: var(--r-pill); background: var(--on-accent); opacity: 0; transform: scale(0.4); transition: opacity var(--dur-1), transform var(--dur-1); }
.check input:checked + .check__box, .radio input:checked + .radio__dot { background: var(--accent); border-color: var(--accent); }
.check input:checked + .check__box svg { opacity: 1; transform: scale(1); }
.radio input:checked + .radio__dot::after { opacity: 1; transform: scale(1); }
.check input:focus-visible + .check__box, .radio input:focus-visible + .radio__dot { box-shadow: var(--focus-ring); }

/* switch */
.switch { display: inline-flex; align-items: center; gap: var(--sp-3); cursor: pointer; font-size: var(--fs-base); }
.switch input { position: absolute; opacity: 0; width: 0; height: 0; }
.switch__track {
  width: 44px; height: 26px; border-radius: var(--r-pill);
  background: var(--surface-3); border: 1px solid var(--border-strong);
  position: relative; transition: background-color var(--dur-2) var(--ease-out);
}
.switch__track::after {
  content: ""; position: absolute; top: 2px; left: 2px;
  width: 20px; height: 20px; border-radius: var(--r-pill);
  background: var(--text); transition: transform var(--dur-2) var(--ease-out);
}
.switch input:checked + .switch__track { background: var(--accent); border-color: var(--accent); }
.switch input:checked + .switch__track::after { transform: translateX(18px); background: var(--on-accent); }
.switch input:focus-visible + .switch__track { box-shadow: var(--focus-ring); }

/* range */
.range { -webkit-appearance: none; appearance: none; width: 100%; height: 4px; border-radius: var(--r-pill); background: var(--border-strong); outline: none; }
.range::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 18px; height: 18px; border-radius: var(--r-pill); background: var(--accent); border: 2px solid var(--bg); cursor: pointer; box-shadow: var(--shadow-1); }
.range::-moz-range-thumb { width: 18px; height: 18px; border: 2px solid var(--bg); border-radius: var(--r-pill); background: var(--accent); cursor: pointer; }

/* search */
.search { position: relative; }
.search .input { padding-left: var(--sp-9); }
.search__ic { position: absolute; left: var(--sp-3); top: 50%; transform: translateY(-50%); color: var(--text-muted); width: 18px; height: 18px; }


/* ============================================================================
   15. BADGES / TAGS / CHIPS
   ========================================================================== */
.badge {
  display: inline-flex; align-items: center; gap: var(--sp-1);
  padding: 2px var(--sp-2); border-radius: var(--r-pill);
  font-size: var(--fs-2xs); font-weight: var(--fw-semibold); letter-spacing: 0.02em;
  border: 1px solid var(--border-strong); color: var(--text-2); background: var(--surface);
}
.badge--solid { background: var(--accent); color: var(--on-accent); border-color: var(--accent); }
.badge--outline { background: transparent; }
.badge--soft { background: var(--accent-soft); border-color: transparent; }

.tag {
  display: inline-flex; align-items: center; gap: var(--sp-1);
  padding: var(--sp-1) var(--sp-3); border-radius: var(--r-pill);
  font-size: var(--fs-xs); color: var(--text-muted);
  background: var(--surface-2); border: 1px solid var(--border);
}
.chip {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-4); border-radius: var(--r-pill);
  font-size: var(--fs-sm); border: 1px solid var(--border-strong);
  background: var(--surface); transition: border-color var(--dur-2), background-color var(--dur-2);
}
.chip:hover { border-color: var(--text-muted); background: var(--accent-soft); }
.chip--active { background: var(--accent); color: var(--on-accent); border-color: var(--accent); }


/* ============================================================================
   16. CALLOUTS / ALERTS
   ========================================================================== */
.callout {
  display: flex; gap: var(--sp-4);
  padding: var(--sp-5); border-radius: var(--r-md);
  background: var(--surface-2); border: 1px solid var(--border);
}
.callout__icon { flex: none; width: 22px; height: 22px; color: var(--text); margin-top: 2px; }
.callout__icon svg { width: 22px; height: 22px; }
.callout p { color: var(--text-2); font-size: var(--fs-base); margin: 0; }
.callout--bordered { background: var(--surface); }


/* ============================================================================
   17. MODAL
   ========================================================================== */
.modal { position: fixed; inset: 0; z-index: var(--z-modal); display: none; }
.modal.open { display: block; }
.modal__backdrop {
  position: absolute; inset: 0; background: rgba(10,10,11,0.5);
  -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
  animation: fade-in var(--dur-2) var(--ease-out);
}
.modal__dialog {
  position: relative; margin: 12vh auto; width: min(92vw, 520px);
  background: var(--surface); border: 1px solid var(--border-strong);
  border-radius: var(--r-lg); box-shadow: var(--shadow-3);
  padding: var(--sp-7);
  animation: pop-in var(--dur-3) var(--ease-out);
}
.modal__head { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4); margin-bottom: var(--sp-4); }
.modal__close { width: 36px; height: 36px; border-radius: var(--r-sm); display: grid; place-items: center; color: var(--text-muted); }
.modal__close:hover { background: var(--accent-soft); color: var(--text); }
.modal__body { color: var(--text-2); }
.modal__foot { display: flex; justify-content: flex-end; gap: var(--sp-3); margin-top: var(--sp-6); }


/* ============================================================================
   18. TABS
   ========================================================================== */
[data-tabs] { display: flex; flex-direction: column; gap: var(--sp-5); }
.tabs {
  display: inline-flex; gap: var(--sp-1); padding: 4px;
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: var(--r-md); flex-wrap: wrap;
}
.tabs [role="tab"] {
  padding: var(--sp-2) var(--sp-4); border-radius: var(--r-sm);
  font-size: var(--fs-sm); font-weight: var(--fw-semibold); color: var(--text-muted);
  transition: background-color var(--dur-2) var(--ease-out), color var(--dur-2) var(--ease-out);
}
.tabs [role="tab"][aria-selected="true"] { background: var(--surface); color: var(--text); box-shadow: var(--shadow-1); }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fade-up var(--dur-3) var(--ease-out); }


/* ============================================================================
   19. ACCORDION (FAQ)
   ========================================================================== */
.accordion { border-top: 1px solid var(--border); }
.accordion__item { border-bottom: 1px solid var(--border); }
.accordion__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4);
  padding: var(--sp-5) 0; text-align: left;
  font-size: var(--fs-md); font-weight: var(--fw-semibold); color: var(--text);
}
.accordion__chev { width: 20px; height: 20px; flex: none; color: var(--text-muted); transition: transform var(--dur-2) var(--ease-out); }
.accordion__item.open .accordion__chev { transform: rotate(180deg); }
.accordion__a { overflow: hidden; max-height: 0; transition: max-height var(--dur-3) var(--ease-out); }
.accordion__a-inner { padding-bottom: var(--sp-5); color: var(--text-2); font-size: var(--fs-base); }


/* ============================================================================
   20. TOOLTIP
   ========================================================================== */
[data-tip] { position: relative; }
[data-tip]::after {
  content: attr(data-tip);
  position: absolute; bottom: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(4px);
  background: var(--accent); color: var(--on-accent);
  padding: var(--sp-1) var(--sp-3); border-radius: var(--r-sm);
  font-size: var(--fs-xs); font-weight: var(--fw-medium); white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity var(--dur-2), transform var(--dur-2) var(--ease-out);
  z-index: 10;
}
[data-tip]:hover::after { opacity: 1; transform: translateX(-50%) translateY(0); }


/* ============================================================================
   21. TABLES
   ========================================================================== */
.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--r-lg); }
.table { width: 100%; border-collapse: collapse; font-size: var(--fs-base); }
.table th, .table td { padding: var(--sp-3) var(--sp-4); text-align: left; border-bottom: 1px solid var(--border-faint); }
.table th { font-size: var(--fs-sm); color: var(--text-muted); font-weight: var(--fw-semibold); background: var(--surface-2); }
.table tr:last-child td { border-bottom: 0; }
.table--striped tbody tr:nth-child(even) { background: var(--surface-2); }


/* ============================================================================
   22. BREADCRUMB
   ========================================================================== */
.breadcrumb { display: flex; align-items: center; gap: var(--sp-2); font-size: var(--fs-sm); color: var(--text-muted); flex-wrap: wrap; }
.breadcrumb a { color: var(--text-muted); transition: color var(--dur-2); }
.breadcrumb a:hover { color: var(--text); }
.breadcrumb svg { width: 14px; height: 14px; }
.breadcrumb span[aria-current] { color: var(--text); font-weight: var(--fw-medium); }


/* ============================================================================
   23. PAGINATION
   ========================================================================== */
.pagination { display: flex; gap: var(--sp-1); }
.pagination a, .pagination button {
  min-width: 38px; height: 38px; padding: 0 var(--sp-3);
  display: grid; place-items: center; border-radius: var(--r-sm);
  border: 1px solid var(--border); color: var(--text-2); font-size: var(--fs-sm); font-weight: var(--fw-medium);
  transition: border-color var(--dur-2), background-color var(--dur-2), color var(--dur-2);
}
.pagination a:hover, .pagination button:hover { border-color: var(--border-strong); background: var(--accent-soft); }
.pagination .is-active { background: var(--accent); color: var(--on-accent); border-color: var(--accent); }


/* ============================================================================
   24. DROPDOWN MENU
   ========================================================================== */
.menu {
  position: absolute; top: calc(100% + 8px); right: 0; min-width: 200px;
  background: var(--surface); border: 1px solid var(--border-strong);
  border-radius: var(--r-md); box-shadow: var(--shadow-3); padding: var(--sp-1); z-index: var(--z-drawer);
  display: none;
}
.menu.open { display: block; animation: fade-up var(--dur-2) var(--ease-out); }
.menu__item {
  display: flex; align-items: center; gap: var(--sp-3); width: 100%;
  padding: var(--sp-3) var(--sp-3); border-radius: var(--r-sm);
  font-size: var(--fs-base); color: var(--text-2); text-align: left;
}
.menu__item:hover { background: var(--accent-soft); color: var(--text); }
.menu__sep { height: 1px; background: var(--border); margin: var(--sp-1) 0; }


/* ============================================================================
   25. PROGRESS / SKELETON / SPINNER
   ========================================================================== */
.progress { width: 100%; height: 6px; background: var(--surface-3); border-radius: var(--r-pill); overflow: hidden; }
.progress__bar { height: 100%; background: var(--accent); border-radius: var(--r-pill); transition: width var(--dur-3) var(--ease-out); }

.skeleton {
  background: linear-gradient(90deg, var(--surface-2) 25%, var(--surface-3) 37%, var(--surface-2) 63%);
  background-size: 400% 100%;
  border-radius: var(--r-md);
  animation: shimmer 1.4s ease-in-out infinite;
}

.spinner {
  width: 36px; height: 36px; border-radius: var(--r-pill);
  border: 3px solid var(--border-strong); border-top-color: var(--accent);
  animation: spin 0.8s linear infinite;
}

.bar-loader { width: 220px; height: 4px; background: var(--surface-3); border-radius: var(--r-pill); overflow: hidden; }
.bar-loader > span { display: block; height: 100%; width: 40%; background: var(--accent); border-radius: var(--r-pill); animation: bar-slide 1.1s var(--ease-in-out) infinite; }


/* ============================================================================
   26. AVATAR
   ========================================================================== */
.avatar {
  width: 40px; height: 40px; border-radius: var(--r-pill);
  background: var(--accent-soft); color: var(--text);
  display: grid; place-items: center; font-weight: var(--fw-semibold); flex: none;
  border: 1px solid var(--border);
}
.avatar--lg { width: 56px; height: 56px; font-size: var(--fs-lg); }
.avatar--sm { width: 30px; height: 30px; font-size: var(--fs-xs); }


/* ============================================================================
   27. CODE BLOCKS
   ========================================================================== */
.code-block {
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: var(--r-md); overflow: hidden;
}
.code-block__bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--sp-2) var(--sp-4); border-bottom: 1px solid var(--border);
  font-size: var(--fs-xs); color: var(--text-muted);
}
.code-block pre { margin: 0; padding: var(--sp-4); overflow-x: auto; font-family: var(--font-mono); font-size: var(--fs-sm); line-height: 1.7; color: var(--text); }
.code-block code { font-family: var(--font-mono); }
:not(pre) > code {
  font-family: var(--font-mono); font-size: 0.88em;
  background: var(--surface-2); border: 1px solid var(--border);
  padding: 0.1em 0.4em; border-radius: var(--r-xs);
}


/* ============================================================================
   28. STATS
   ========================================================================== */
.stats { display: flex; flex-wrap: wrap; gap: var(--sp-7); justify-content: center; }
.stat { text-align: center; }
.stat__num { font-size: var(--fs-3xl); font-weight: var(--fw-bold); letter-spacing: -0.03em; line-height: 1; }
.stat__label { font-size: var(--fs-sm); color: var(--text-muted); margin-top: var(--sp-2); }

.stats--grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); text-align: left; }
.stats--grid .stat { text-align: left; padding: var(--sp-5); border: 1px solid var(--border); border-radius: var(--r-lg); }
.stats--grid .stat__num { font-size: var(--fs-2xl); }


/* ============================================================================
   29. STEPS
   ========================================================================== */
.steps { display: grid; gap: var(--sp-5); grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.step {
  padding: var(--sp-6); border: 1px solid var(--border); border-radius: var(--r-lg);
  background: var(--surface);
}
.step__no {
  width: 34px; height: 34px; border-radius: var(--r-pill);
  display: grid; place-items: center; font-weight: var(--fw-bold);
  background: var(--accent); color: var(--on-accent); margin-bottom: var(--sp-4);
}
.step h4 { font-size: var(--fs-md); margin-bottom: var(--sp-2); }
.step p { color: var(--text-muted); font-size: var(--fs-base); }


/* ============================================================================
   30. LISTS
   ========================================================================== */
.list { display: flex; flex-direction: column; gap: var(--sp-3); }
.list__item { display: flex; align-items: flex-start; gap: var(--sp-3); color: var(--text-2); }
.list__tick { flex: none; width: 20px; height: 20px; color: var(--text); margin-top: 2px; }
.list__tick svg { width: 20px; height: 20px; }


/* ============================================================================
   31. DOWNLOAD CARDS (AI page)
   ========================================================================== */
.download-grid { display: grid; gap: var(--sp-5); grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }

.download-card {
  display: flex; flex-direction: column; gap: var(--sp-4);
  padding: var(--sp-6);
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
  transition: border-color var(--dur-2) var(--ease-out), box-shadow var(--dur-2) var(--ease-out);
}
.download-card--primary { border-color: var(--border-strong); }
.download-card:hover { box-shadow: var(--shadow-2); border-color: var(--border-strong); }

.download-card__head { display: flex; align-items: center; gap: var(--sp-4); }
.download-card__plat {
  width: 48px; height: 48px; border-radius: var(--r-md); flex: none;
  background: var(--surface-2); border: 1px solid var(--border);
  display: grid; place-items: center; color: var(--text);
}
.download-card__plat svg { width: 26px; height: 26px; }
.download-card__head h3 { font-size: var(--fs-md); letter-spacing: -0.01em; }
.download-card__head .meta { font-size: var(--fs-xs); color: var(--text-muted); margin-top: 2px; }
.download-card__head .meta .size { color: var(--text-2); font-weight: var(--fw-semibold); }
.download-card .desc { font-size: var(--fs-sm); color: var(--text-muted); }
.download-card__note { margin-top: var(--sp-4); font-size: var(--fs-xs); color: var(--text-muted); letter-spacing: 0.01em; padding-top: var(--sp-3); border-top: 1px solid var(--border-faint); }


/* ============================================================================
   32. DOWNLOAD HANDLER (download.html)
   ========================================================================== */
.handler { min-height: 100vh; display: grid; place-items: center; padding: var(--sp-6); }
.handler.is-overlay { position: fixed; inset: 0; z-index: 1000; min-height: 0; background: var(--bg); display: none; }
.handler.is-overlay.show { display: grid; }
.handler.is-overlay .handler__card { box-shadow: var(--shadow-3); }
.handler__card {
  width: min(92vw, 460px); text-align: center;
  padding: var(--sp-8); border: 1px solid var(--border); border-radius: var(--r-xl);
  background: var(--surface); box-shadow: var(--shadow-2);
  display: flex; flex-direction: column; align-items: center; gap: var(--sp-4);
}
.handler__icon {
  width: 64px; height: 64px; border-radius: var(--r-lg);
  display: grid; place-items: center; color: var(--text);
  background: var(--accent-soft);
}
.handler__icon svg { width: 30px; height: 30px; }
.handler--error .handler__icon { color: var(--text); }
.handler h1 { font-size: var(--fs-xl); }
.handler p { color: var(--text-muted); font-size: var(--fs-base); }
.handler .spinner { margin: var(--sp-2) auto; }
.handler__bar { width: 200px; height: 4px; background: var(--surface-3); border-radius: var(--r-pill); overflow: hidden; }
.handler__bar > span { display: block; height: 100%; width: 40%; background: var(--accent); border-radius: var(--r-pill); animation: bar-slide 1.1s var(--ease-in-out) infinite; }
.handler .btn { margin-top: var(--sp-2); }


/* ============================================================================
   33. REVEAL & MOTION
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity var(--dur-4) var(--ease-out), transform var(--dur-4) var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 80ms; }
.reveal[data-delay="2"] { transition-delay: 160ms; }
.reveal[data-delay="3"] { transition-delay: 240ms; }

/* magnetic wrapper (gentle, pointer-only) */
.magnetic { display: inline-flex; }
.magnetic > * { will-change: transform; transition: transform var(--dur-2) var(--ease-out); }

/* back to top */
.to-top {
  position: fixed; right: var(--sp-5); bottom: var(--sp-5); z-index: var(--z-nav);
  width: 44px; height: 44px; border-radius: var(--r-pill);
  background: var(--surface); border: 1px solid var(--border-strong);
  color: var(--text); display: grid; place-items: center;
  box-shadow: var(--shadow-2);
  opacity: 0; transform: translateY(12px) scale(0.9); pointer-events: none;
  transition: opacity var(--dur-2) var(--ease-out), transform var(--dur-2) var(--ease-out);
}
.to-top.show { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { border-color: var(--text); }
.to-top svg { width: 20px; height: 20px; }

/* toast */
.toast {
  position: fixed; left: 50%; bottom: var(--sp-7); transform: translateX(-50%) translateY(16px);
  z-index: var(--z-toast);
  display: inline-flex; align-items: center; gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-5);
  background: var(--accent); color: var(--on-accent);
  border-radius: var(--r-pill); box-shadow: var(--shadow-3);
  font-size: var(--fs-sm); font-weight: var(--fw-semibold);
  opacity: 0; pointer-events: none;
  transition: opacity var(--dur-2) var(--ease-out), transform var(--dur-2) var(--ease-out);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast .ic { width: 16px; height: 16px; }

/* consent banner (optional) */
.consent {
  position: fixed; left: var(--sp-5); bottom: var(--sp-5); z-index: var(--z-toast);
  max-width: 360px; padding: var(--sp-5);
  background: var(--surface); border: 1px solid var(--border-strong);
  border-radius: var(--r-lg); box-shadow: var(--shadow-3);
  transform: translateY(16px); opacity: 0; pointer-events: none;
  transition: opacity var(--dur-2) var(--ease-out), transform var(--dur-2) var(--ease-out);
}
.consent.show { transform: none; opacity: 1; pointer-events: auto; }


/* ============================================================================
   34. KEYFRAMES (subtle, monochrome)
   ========================================================================== */
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes fade-up { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
@keyframes pop-in { from { opacity: 0; transform: scale(0.96) translateY(8px); } to { opacity: 1; transform: none; } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes shimmer { 0% { background-position: 100% 0; } 100% { background-position: 0 0; } }
@keyframes bar-slide { 0% { transform: translateX(-120%); } 100% { transform: translateX(320%); } }

@keyframes float-soft { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }


/* ============================================================================
   35. RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: var(--sp-6); }
  .about__grid { grid-template-columns: 1fr; gap: var(--sp-6); }
  .contact__grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root {
    --sp-9: 44px; --sp-10: 56px; --sp-11: 64px;
  }
  .nav { display: none; }
  .nav__burger { display: grid; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats--grid { grid-template-columns: 1fr; }
  .section { padding-block: var(--sp-9); }
  .intro { padding-top: var(--sp-8); }
  .modal__dialog { margin: 8vh auto; padding: var(--sp-5); }
  .site-footer__grid { grid-template-columns: 1fr; gap: var(--sp-5); }
  .site-footer__bottom { flex-direction: column; align-items: flex-start; gap: var(--sp-3); }
}

@media (max-width: 420px) {
  .container { padding-inline: var(--sp-4); }
  .btn--lg { width: 100%; }
  .intro__actions { flex-direction: column; width: 100%; }
  .intro__actions .btn { width: 100%; }
}


/* ============================================================================
   39. PROSE (rich text / article body)
   ========================================================================== */
.prose { max-width: 68ch; color: var(--text-2); font-size: var(--fs-base); line-height: var(--lh-normal); }
.prose > * + * { margin-top: var(--sp-4); }
.prose h2, .prose h3, .prose h4 { color: var(--text); margin-top: var(--sp-7); letter-spacing: -0.01em; }
.prose h2 { font-size: var(--fs-2xl); }
.prose h3 { font-size: var(--fs-xl); }
.prose h4 { font-size: var(--fs-lg); }
.prose a { color: var(--text); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--border-strong); }
.prose a:hover { text-decoration-color: var(--text); }
.prose ul, .prose ol { padding-left: var(--sp-5); }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li + li { margin-top: var(--sp-2); }
.prose blockquote { border-left: 3px solid var(--border-strong); padding-left: var(--sp-4); color: var(--text-muted); font-style: normal; }
.prose hr { border: 0; border-top: 1px solid var(--border); margin-block: var(--sp-7); }
.prose img { border-radius: var(--r-md); border: 1px solid var(--border); }
.prose-sm { font-size: var(--fs-sm); }


/* ============================================================================
   40. CTA BAND
   ========================================================================== */
.cta-band {
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-6);
  flex-wrap: wrap;
  padding: var(--sp-8);
  background: var(--surface); border: 1px solid var(--border-strong);
  border-radius: var(--r-xl);
}
.cta-band__title { font-size: var(--fs-2xl); letter-spacing: -0.02em; }
.cta-band__text { color: var(--text-muted); margin-top: var(--sp-2); max-width: 52ch; }
.cta-band__actions { display: flex; gap: var(--sp-3); flex-wrap: wrap; }
.cta-band--center { text-align: center; justify-content: center; flex-direction: column; align-items: center; }
.cta-band--solid { background: var(--accent); border-color: var(--accent); }
.cta-band--solid .cta-band__title, .cta-band--solid .cta-band__text { color: var(--on-accent); }
.cta-band--solid .cta-band__text { opacity: 0.85; }
.cta-band--solid .btn--primary { background: var(--on-accent); color: var(--accent); border-color: var(--on-accent); }
.cta-band--solid .btn--ghost { color: var(--on-accent); }
.cta-band--solid .btn--ghost:hover { background: rgba(255,255,255,0.12); }


/* ============================================================================
   41. FEATURE SPLIT
   ========================================================================== */
.feature-split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-8); align-items: center; }
.feature-split--reverse .feature-split__media { order: -1; }
.feature-split__media {
  aspect-ratio: 4 / 3; border-radius: var(--r-lg);
  background: var(--surface-2); border: 1px solid var(--border);
  display: grid; place-items: center; color: var(--text-faint); overflow: hidden;
}
.feature-split__media svg { width: 38%; height: 38%; opacity: 0.5; }
.feature-split h2 { margin-bottom: var(--sp-4); }
.feature-split p { color: var(--text-2); margin-bottom: var(--sp-5); }


/* ============================================================================
   42. TESTIMONIAL
   ========================================================================== */
.testimonial {
  padding: var(--sp-7); border: 1px solid var(--border); border-radius: var(--r-lg);
  background: var(--surface); display: flex; flex-direction: column; gap: var(--sp-4);
}
.testimonial__quote { font-size: var(--fs-lg); line-height: var(--lh-snug); color: var(--text); font-weight: var(--fw-medium); }
.testimonial__who { display: flex; align-items: center; gap: var(--sp-3); margin-top: auto; }
.testimonial__name { font-weight: var(--fw-semibold); font-size: var(--fs-base); }
.testimonial__role { font-size: var(--fs-sm); color: var(--text-muted); }
.testimonials-grid { display: grid; gap: var(--sp-5); grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }


/* ============================================================================
   43. TIMELINE
   ========================================================================== */
.timeline { display: flex; flex-direction: column; gap: 0; border-left: 1px solid var(--border); margin-left: var(--sp-2); }
.timeline__item { position: relative; padding: 0 0 var(--sp-7) var(--sp-6); }
.timeline__item:last-child { padding-bottom: 0; }
.timeline__dot {
  position: absolute; left: -5px; top: 4px; width: 9px; height: 9px;
  border-radius: var(--r-pill); background: var(--accent);
}
.timeline__date { font-size: var(--fs-sm); color: var(--text-muted); font-weight: var(--fw-semibold); }
.timeline__title { font-size: var(--fs-md); font-weight: var(--fw-semibold); margin: var(--sp-1) 0 var(--sp-2); }
.timeline__body { color: var(--text-muted); font-size: var(--fs-base); }


/* ============================================================================
   44. PRICING (monochrome)
   ========================================================================== */
.pricing { display: grid; gap: var(--sp-5); grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.tier { display: flex; flex-direction: column; gap: var(--sp-4); padding: var(--sp-6); border: 1px solid var(--border); border-radius: var(--r-lg); background: var(--surface); }
.tier--featured { border-color: var(--border-strong); box-shadow: var(--shadow-2); }
.tier__name { font-size: var(--fs-lg); font-weight: var(--fw-bold); }
.tier__price { font-size: var(--fs-3xl); font-weight: var(--fw-bold); letter-spacing: -0.03em; }
.tier__price small { font-size: var(--fs-base); font-weight: var(--fw-regular); color: var(--text-muted); }
.tier__features { display: flex; flex-direction: column; gap: var(--sp-2); margin: var(--sp-2) 0 var(--sp-4); }
.tier__feature { display: flex; align-items: flex-start; gap: var(--sp-2); font-size: var(--fs-base); color: var(--text-2); }
.tier__feature svg { width: 18px; height: 18px; flex: none; margin-top: 2px; color: var(--text); }
.tier .btn { margin-top: auto; }


/* ============================================================================
   45. ALERTS (monochrome — borders, not hue)
   ========================================================================== */
.alert { display: flex; gap: var(--sp-3); padding: var(--sp-4); border-radius: var(--r-md); border: 1px solid var(--border-strong); background: var(--surface); align-items: flex-start; }
.alert__icon { flex: none; width: 20px; height: 20px; margin-top: 1px; }
.alert__icon svg { width: 20px; height: 20px; }
.alert__body { font-size: var(--fs-base); color: var(--text-2); }
.alert__title { font-weight: var(--fw-semibold); color: var(--text); margin-bottom: 2px; }
.alert--info { border-left: 3px solid var(--text); }
.alert--success { border-left: 3px solid var(--text); }
.alert--error { border-left: 3px solid var(--text); }
.alert--soft { background: var(--surface-2); }


/* ============================================================================
   46. SEGMENTED CONTROL
   ========================================================================== */
.segmented { display: inline-flex; padding: 3px; gap: 2px; background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--r-md); }
.segmented button {
  padding: var(--sp-2) var(--sp-4); border-radius: var(--r-sm);
  font-size: var(--fs-sm); font-weight: var(--fw-semibold); color: var(--text-muted);
  transition: background-color var(--dur-2) var(--ease-out), color var(--dur-2) var(--ease-out);
}
.segmented button[aria-pressed="true"] { background: var(--surface); color: var(--text); box-shadow: var(--shadow-1); }


/* ============================================================================
   47. KBD
   ========================================================================== */
.kbd {
  display: inline-block; padding: 2px 7px; min-width: 22px; text-align: center;
  font-family: var(--font-mono); font-size: var(--fs-xs);
  background: var(--surface); border: 1px solid var(--border-strong);
  border-bottom-width: 2px; border-radius: var(--r-xs); color: var(--text-2);
}


/* ============================================================================
   48. FIGURE / CAPTION
   ========================================================================== */
.figure { margin: 0; }
.figure__media { border-radius: var(--r-md); border: 1px solid var(--border); overflow: hidden; background: var(--surface-2); }
.figure__caption { margin-top: var(--sp-2); font-size: var(--fs-sm); color: var(--text-muted); }


/* ============================================================================
   49. SIDENAV / TABLE OF CONTENTS
   ========================================================================== */
.sidenav { position: sticky; top: calc(var(--nav-h) + var(--sp-5)); display: flex; flex-direction: column; gap: 2px; }
.sidenav a {
  padding: var(--sp-2) var(--sp-3); border-radius: var(--r-sm);
  font-size: var(--fs-sm); color: var(--text-muted); border-left: 2px solid transparent;
  transition: color var(--dur-2), background-color var(--dur-2), border-color var(--dur-2);
}
.sidenav a:hover { color: var(--text); background: var(--accent-soft); }
.sidenav a.is-active { color: var(--text); border-left-color: var(--accent); font-weight: var(--fw-semibold); }
.layout-with-sidenav { display: grid; grid-template-columns: 200px 1fr; gap: var(--sp-8); align-items: start; }


/* ============================================================================
   50. PANEL / WELL
   ========================================================================== */
.panel { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: var(--sp-6); }
.well { background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--r-md); padding: var(--sp-5); }
.well--tight { padding: var(--sp-4); }


/* ============================================================================
   51. COVER / HERO VARIANTS
   ========================================================================== */
.cover { min-height: 78vh; display: grid; place-items: center; text-align: center; padding: var(--sp-10) var(--sp-5); }
.cover__inner { max-width: 760px; display: flex; flex-direction: column; align-items: center; gap: var(--sp-5); }
.hero--split { display: grid; grid-template-columns: 1.1fr 1fr; gap: var(--sp-8); align-items: center; }
.hero--split__media { aspect-ratio: 1 / 1; border-radius: var(--r-xl); background: var(--surface-2); border: 1px solid var(--border); display: grid; place-items: center; color: var(--text-faint); }
.hero--split__media svg { width: 40%; height: 40%; opacity: 0.4; }


/* ============================================================================
   52. BUTTON EXTENSIONS
   ========================================================================== */
.btn-group { display: inline-flex; border: 1px solid var(--border-strong); border-radius: var(--r-md); overflow: hidden; }
.btn-group .btn { border: 0; border-radius: 0; border-right: 1px solid var(--border); }
.btn-group .btn:last-child { border-right: 0; }
.btn--danger { --btn-bg: transparent; --btn-fg: var(--text); --btn-bd: var(--border-strong); }
.btn--danger:hover { background: var(--accent-soft); }


/* ============================================================================
   53. NAV EXTENSIONS (subnav / pill nav)
   ========================================================================== */
.subnav { display: flex; gap: var(--sp-1); flex-wrap: wrap; padding-bottom: var(--sp-4); border-bottom: 1px solid var(--border); }
.subnav a { padding: var(--sp-2) var(--sp-3); border-radius: var(--r-sm); font-size: var(--fs-sm); color: var(--text-muted); font-weight: var(--fw-medium); }
.subnav a:hover { color: var(--text); background: var(--accent-soft); }
.subnav a.is-active { color: var(--text); background: var(--surface-2); }
.pill-nav { display: flex; gap: var(--sp-2); flex-wrap: wrap; }
.pill-nav a { padding: var(--sp-2) var(--sp-4); border-radius: var(--r-pill); border: 1px solid var(--border); font-size: var(--fs-sm); color: var(--text-2); transition: border-color var(--dur-2), color var(--dur-2), background-color var(--dur-2); }
.pill-nav a:hover { border-color: var(--border-strong); color: var(--text); }
.pill-nav a.is-active { background: var(--accent); color: var(--on-accent); border-color: var(--accent); }


/* ============================================================================
   54. LOADING DOTS
   ========================================================================== */
.dots { display: inline-flex; gap: 5px; align-items: center; }
.dots span { width: 7px; height: 7px; border-radius: var(--r-pill); background: var(--text-muted); animation: dot-pulse 1.2s var(--ease-in-out) infinite; }
.dots span:nth-child(2) { animation-delay: 0.18s; }
.dots span:nth-child(3) { animation-delay: 0.36s; }
@keyframes dot-pulse { 0%, 100% { opacity: 0.3; transform: scale(0.8); } 50% { opacity: 1; transform: scale(1); } }


/* ============================================================================
   55. TICK / CHECK ROWS
   ========================================================================== */
.checklist { display: grid; gap: var(--sp-3); }
.checklist li { display: flex; align-items: flex-start; gap: var(--sp-3); font-size: var(--fs-base); color: var(--text-2); }
.checklist svg { width: 20px; height: 20px; flex: none; margin-top: 1px; color: var(--text); }
.checklist--cols { grid-template-columns: 1fr 1fr; }


/* ============================================================================
   56. PAGE HEADER (interior pages)
   ========================================================================== */
.page-head { padding-block: var(--sp-8) var(--sp-6); }
.page-head__title { font-size: clamp(var(--fs-2xl), 4vw, var(--fs-4xl)); letter-spacing: -0.025em; }
.page-head__sub { color: var(--text-muted); margin-top: var(--sp-3); max-width: 60ch; font-size: var(--fs-md); }


/* ============================================================================
   57. MORE RESPONSIVE
   ========================================================================== */
@media (max-width: 900px) {
  .feature-split, .hero--split, .layout-with-sidenav { grid-template-columns: 1fr; gap: var(--sp-6); }
  .feature-split--reverse .feature-split__media { order: 0; }
  .sidenav { position: static; flex-direction: row; flex-wrap: wrap; border-left: 0; border-bottom: 1px solid var(--border); padding-bottom: var(--sp-3); }
  .sidenav a { border-left: 0; border-bottom: 2px solid transparent; }
  .sidenav a.is-active { border-left: 0; border-bottom-color: var(--accent); }
  .cta-band { flex-direction: column; align-items: flex-start; }
  .checklist--cols { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .cta-band { padding: var(--sp-6); }
  .tier, .testimonial, .panel { padding: var(--sp-5); }
  .stats { gap: var(--sp-5); }
  .intro__avatar { width: 80px; height: 80px; font-size: 2.1rem; }
}

/* high-DPI tweaks for hairline borders */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .divider, .border-soft { border-width: 0.5px; }
}


/* ============================================================================
   58. PAGE-SPECIFIC (AI hero / product hero)
   ========================================================================== */
.ai-hero { padding-block: var(--sp-9) var(--sp-8); text-align: center; }
.ai-hero .container { display: flex; flex-direction: column; align-items: center; gap: var(--sp-4); }
.ai-hero__logo { width: 168px; height: 168px; color: var(--text); margin-bottom: var(--sp-2); }
.ai-hero__pill {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  padding: var(--sp-1) var(--sp-4); border-radius: var(--r-pill);
  border: 1px solid var(--border-strong); background: var(--surface-2);
  font-size: var(--fs-sm); color: var(--text-muted); font-weight: var(--fw-medium);
}
.ai-hero__pill .dot { width: 7px; height: 7px; border-radius: var(--r-pill); background: var(--accent); }
.ai-hero__lead { max-width: 60ch; }

.product-hero { padding-block: var(--sp-9) var(--sp-7); }
.product-hero__inner { display: flex; flex-direction: column; align-items: flex-start; gap: var(--sp-4); max-width: 760px; }
.product-hero__media {
  width: 64px; height: 64px; border-radius: var(--r-lg);
  background: var(--surface-2); border: 1px solid var(--border);
  display: grid; place-items: center; color: var(--text);
}
.product-hero__media svg { width: 32px; height: 32px; }
.product-hero h1 { letter-spacing: -0.025em; }
.product-hero__sub { color: var(--text-muted); font-size: var(--fs-md); max-width: 60ch; }
.product-hero__actions { display: flex; gap: var(--sp-3); flex-wrap: wrap; margin-top: var(--sp-2); }


/* ============================================================================
   59. LOGO TREATMENT (monochrome, theme-aware)
   ========================================================================== */
.brand__mark, .intro__avatar, .ai-hero__logo, .product-hero__media, .avatar {
  color: var(--text);
}
[data-theme="dark"] .brand__mark { background: var(--accent); color: var(--on-accent); }
[data-theme="light"] .brand__mark { background: var(--accent); color: var(--on-accent); }


/* ============================================================================
   36. PRINT
   ========================================================================== */
@media print {
  .site-header, .mobile-menu, .to-top, .consent, .theme-switch, .nav__burger,
  .handler__bar, .spinner, .footer__social { display: none !important; }
  body { background: #fff; color: #000; }
  a { color: #000; text-decoration: underline; }
  .card, .product-card, .download-card { border: 1px solid #ccc; box-shadow: none; }
}


/* ============================================================================
   37. REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .magnetic > * { transform: none !important; }
}


/* ============================================================================
   38. FORCED COLORS / A11Y
   ========================================================================== */
@media (forced-colors: active) {
  .btn--primary, .product-card--featured, .stat__no, .step__no,
  .toast, .badge--solid, .avatar, .brand__mark, .intro__avatar, .theme-switch__thumb {
    border: 1px solid CanvasText;
  }
  .card, .product-card, .download-card, .callout, .input, .textarea, .select { border: 1px solid CanvasText; }
  .skeleton, .spinner, .bar-loader { border: 1px solid CanvasText; }
}
