/* =========================================
   CURATEK — AI Product Studio Styles
   ========================================= */

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

/* ---- Dark mode (default) ---- */
:root {
  --blue:          #04349B;
  --blue-dark:     #022370;
  --blue-mid:      #0a4fd4;

  --bg:            #0d0d0d;
  --bg-2:          #141414;
  --bg-3:          #1c1c1c;
  --bg-4:          #242424;

  --fg:            #ffffff;
  --text:          #e5e5e5;
  --text-muted:    #888;
  --border:        rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.25);
  --nav-bg:        rgba(13,13,13,0.88);
  --input-ph:      #555;

  --font:       'Rajdhani', sans-serif;
  --font-mono:  'JetBrains Mono', monospace;
  --container:  1160px;
  --radius:     6px;
  --transition: 0.22s ease;

  --acc-ufc:  #e5484d;
  --acc-chef: #46a758;
  --acc-jobs: #9d6ee8;
  --acc-darkly: #5b50e8;
  --live:     #4ade80;

  color-scheme: dark;
}

@media (prefers-color-scheme: light) {
  :root {
    --bg:            #f8f9fb;
    --bg-2:          #eef0f4;
    --bg-3:          #e4e7ed;
    --bg-4:          #dce0e8;
    --fg:            #1a1a2e;
    --text:          #2d2d3a;
    --text-muted:    #666680;
    --border:        rgba(0,0,0,0.09);
    --border-strong: rgba(0,0,0,0.22);
    --nav-bg:        rgba(248,249,251,0.90);
    --input-ph:      #aaa;
    --acc-ufc:  #ce2c31;
    --acc-chef: #2f7c3f;
    --acc-jobs: #7a3fd1;
    --acc-darkly: #7b6ff0;
    --live:     #16a34a;
    color-scheme: light;
  }
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  transition: background 0.3s ease, color 0.3s ease;
}

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

.section { padding: 110px 0; }

h1, h2, h3 {
  font-family: var(--font);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--fg);
}

h1 { font-size: clamp(2.8rem, 6.5vw, 5rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); }

p { color: var(--text-muted); line-height: 1.75; }
a { text-decoration: none; color: inherit; }

.mono {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.btn--primary:hover {
  background: var(--blue-mid);
  border-color: var(--blue-mid);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--fg);
  border-color: var(--border-strong);
}
.btn--outline:hover {
  border-color: var(--fg);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--text-muted);
  border-color: transparent;
  padding: 10px 18px;
  font-size: 0.95rem;
}
.btn--ghost:hover { color: var(--fg); }

.btn--lg   { padding: 15px 36px; font-size: 1.05rem; }
.btn--full { width: 100%; justify-content: center; }

/* NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--nav-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease, border-color 0.3s ease;
}
.nav.scrolled {
  background: var(--nav-bg);
  border-bottom-color: var(--border-strong);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 12px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--fg);
}
.nav__logo     { display: block; color: var(--fg); }
.nav__wordmark {
  font-family: var(--font);
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--fg);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__links a {
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color var(--transition);
}
.nav__links a:hover           { color: var(--fg); }
.nav__links .btn--ghost       { color: var(--text-muted); }
.nav__links .btn--ghost:hover { color: var(--fg); }
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* HERO */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 0 80px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(4,52,155,0.12) 0%, transparent 70%),
              linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  transition: background 0.3s ease;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
  opacity: 0.5;
}
.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.hero__eyebrow {
  color: var(--text-muted);
  margin-bottom: 24px;
}
.hero__headline { margin-bottom: 24px; }
.hero__accent   { color: var(--blue-mid); }
.hero__sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 580px;
  margin-bottom: 40px;
}

.manifest {
  margin-top: 48px;
  max-width: 680px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.manifest__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.manifest__row {
  display: grid;
  grid-template-columns: 36px 1fr 1fr auto 24px;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  position: relative;
  text-decoration: none;
  color: inherit;
  transition: background var(--transition);
}
.manifest__row:last-child { border-bottom: none; }
.manifest__row:hover { background: var(--bg-3); }
.manifest__row::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--row-accent);
  opacity: 0;
  transition: opacity var(--transition);
}
.manifest__row:hover::before { opacity: 1; }
.manifest__row--ufc  { --row-accent: var(--acc-ufc); }
.manifest__row--chef { --row-accent: var(--acc-chef); }
.manifest__row--jobs { --row-accent: var(--acc-jobs); }
.manifest__row--darkly { --row-accent: var(--acc-darkly); }
.manifest__idx { color: var(--text-muted); }
.manifest__name {
  font-family: var(--font);
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
}
.manifest__desc {
  color: var(--text-muted);
}
.manifest__status {
  min-width: 65px;
  text-align: right;
}
.manifest__arrow {
  color: var(--text-muted);
  font-size: 16px;
  transition: transform var(--transition);
}
.manifest__row:hover .manifest__arrow {
  transform: translate(3px, -3px);
}

.status--live { color: var(--live); }
.status--dev  { color: var(--text-muted); }
.status__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--live);
  display: inline-block;
  margin-right: 6px;
  vertical-align: middle;
  animation: pulse 2.4s ease-in-out infinite;
}
.status--dev .status__dot {
  background: transparent;
  border: 1px solid currentColor;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74,222,128,.35); }
  50%       { box-shadow: 0 0 0 6px rgba(74,222,128,0); }
}

.hero__eyebrow,
.hero__headline,
.hero__sub,
.manifest {
  opacity: 0;
  transform: translateY(8px);
  animation: bootIn 0.5s ease-out forwards;
}
.hero__eyebrow   { animation-delay: 0s; }
.hero__headline  { animation-delay: 0.08s; }
.hero__sub       { animation-delay: 0.16s; }
.manifest        { animation-delay: 0.3s; }
.manifest__row:nth-child(2) { opacity: 0; transform: translateY(8px); animation: bootIn 0.5s ease-out forwards; animation-delay: 0.42s; }
.manifest__row:nth-child(3) { opacity: 0; transform: translateY(8px); animation: bootIn 0.5s ease-out forwards; animation-delay: 0.54s; }
.manifest__row:nth-child(4) { opacity: 0; transform: translateY(8px); animation: bootIn 0.5s ease-out forwards; animation-delay: 0.66s; }
.manifest__row:nth-child(5) { opacity: 0; transform: translateY(8px); animation: bootIn 0.5s ease-out forwards; animation-delay: 0.78s; }
@keyframes bootIn {
  to { opacity: 1; transform: none; }
}

.product--ufc  { --accent: var(--acc-ufc); }
.product--chef { --accent: var(--acc-chef); }
.product--jobs { --accent: var(--acc-jobs); }
.product--darkly { --accent: var(--acc-darkly); }
.product {
  border-top: 1px solid var(--border);
}
.product--chef { background: var(--bg-2); }
.product--darkly { background: var(--bg-2); }
.product--jobs { background: var(--bg); }
.product__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.product--chef .product__text { order: 2; }
.product--chef .product__panel { order: 1; }
.product--darkly .product__text { order: 2; }
.product--darkly .product__panel { order: 1; }
.product__eyebrow {
  color: var(--accent);
  margin-bottom: 16px;
}
.product__text h2 { margin-bottom: 8px; }
.product__link {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent);
  text-decoration: none;
  margin-bottom: 20px;
  transition: color var(--transition);
}
.product__link:hover { color: var(--fg); }
.product__lead {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 20px;
}
.spec {
  margin: 28px 0;
  border-top: 1px solid var(--border);
}
.spec__row {
  display: grid;
  grid-template-columns: 140px 1fr;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.spec__row dt {
  color: var(--text-muted);
  font-size: 11px;
}
.spec__row dd {
  color: var(--fg);
  font-size: 13px;
}
.product__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.product__features li {
  font-size: 15px;
  color: var(--text);
  padding: 6px 0;
  position: relative;
  padding-left: 18px;
}
.product__features li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--accent);
  position: absolute;
  left: 0;
  top: 12px;
}
.product__panel {
  transition: box-shadow 0.25s;
}
.product__panel:hover {
  box-shadow: 0 0 40px color-mix(in srgb, var(--accent) 12%, transparent);
}
.panel {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.25s;
}
.panel__bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 11px;
}
.panel__dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bg-4);
  display: inline-block;
  margin-right: 5px;
}
.panel__body { padding: 24px; }
[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
[data-reveal].in-view {
  opacity: 1;
  transform: none;
}
.product__panel[data-reveal] {
  transition-delay: 0.12s;
}

.predict__corners {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}
.predict__corner {
  font-size: 11px;
  letter-spacing: 0.08em;
}
.predict__corner--red   { color: var(--acc-ufc); }
.predict__corner--blue  { color: var(--text-muted); }
.predict__bar {
  width: 100%;
  height: 10px;
  background: var(--bg-4);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 12px;
}
.predict__fill {
  display: block;
  height: 100%;
  background: var(--accent);
  border-radius: inherit;
}
.predict__nums {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}
.predict__nums span:first-child { color: var(--accent); }
.predict__nums span:last-child  { color: var(--text-muted); }
.predict__conf {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.12em;
}
.telemetry {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.telemetry__num {
  display: block;
  font-size: 22px;
  color: var(--fg);
  margin-bottom: 4px;
}
.telemetry__label {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}


.kitchen__title {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}
.kitchen__list { list-style: none; }
.kitchen__list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.kitchen__item {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 500;
  color: var(--fg);
}
.pill {
  font-size: 11px;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text-muted);
}
.pill--urgent {
  color: var(--accent);
  border-color: color-mix(in srgb, var(--accent) 40%, transparent);
  background: color-mix(in srgb, var(--accent) 10%, transparent);
}
.suggestion {
  margin-top: 20px;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-left: 2px solid var(--accent);
  border-radius: 8px;
  background: var(--bg-2);
}
.suggestion__label {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}
.suggestion__text {
  font-size: 15px;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.55;
}
.suggestion__tag {
  font-size: 10px;
  color: var(--text-muted);
}

.match {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
}
.ring {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 140px;
}
.ring svg {
  width: 100%;
  height: auto;
}
.ring__center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.ring__num {
  font-size: 28px;
  color: var(--fg);
  line-height: 1;
}
.ring__label {
  font-size: 9px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}
.ring__progress {
  transition: stroke-dashoffset 1.2s ease-out 0.2s;
}
.product__panel.in-view .ring__progress {
  stroke-dashoffset: 39.2;
}
.findings__head {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  margin: 14px 0 6px;
}
.findings__head:first-child { margin-top: 0; }
.findings__row {
  font-size: 15px;
  color: var(--text);
  padding: 4px 0;
}
.findings__row span[aria-hidden] {
  margin-right: 10px;
}
.findings__row--plus span[aria-hidden] { color: var(--accent); }
.findings__row--gap span[aria-hidden]  { color: var(--text-muted); }
.skills {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip {
  font-size: 10.5px;
  padding: 5px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-muted);
}

.flag-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-2);
  padding: 18px 20px;
  margin-bottom: 20px;
}
.flag-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.flag-card__key {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: 0.04em;
}
.toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}
.toggle--on { color: var(--accent); }
.toggle__knob {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  box-shadow: 0 0 8px color-mix(in srgb, var(--accent) 40%, transparent);
}
.flag-card__rules {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  line-height: 1.6;
}
.flag-card__rules p {
  margin: 0;
  color: var(--text-muted);
}
.flag-card__label {
  color: var(--text);
  font-weight: 500;
  margin-right: 6px;
}
.flag-card__value {
  color: var(--accent);
  font-weight: 600;
}
.flag-card__stats {
  display: flex;
  align-items: center;
  gap: 20px;
}
.flag-card__stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.flag-card__num {
  font-size: 18px;
  color: var(--fg);
  line-height: 1;
}
.flag-card__label {
  font-size: 9px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.pill--healthy {
  color: var(--accent);
  border-color: color-mix(in srgb, var(--accent) 40%, transparent);
  background: color-mix(in srgb, var(--accent) 10%, transparent);
}

.studio {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.studio__inner {
  max-width: 720px;
  text-align: center;
}
.studio__eyebrow {
  color: var(--text-muted);
  margin-bottom: 16px;
}
.studio__inner h2 { margin-bottom: 20px; }
.studio__body {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 0;
}
.studio__ticker {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  line-height: 2;
  border-top: 1px solid var(--border);
  padding-top: 20px;
  margin-top: 28px;
}

.contact {
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.contact__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.contact__info { text-align: center; }
.contact__info .section__label { display: block; margin-bottom: 14px; }
.contact__info h2  { margin-bottom: 18px; }
.contact__info > p { margin-bottom: 36px; font-size: 1.03rem; }
.contact__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 auto;
}
.contact__list li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font);
  font-size: 1.25rem;
}
.contact__list svg { color: var(--blue-mid); flex-shrink: 0; width: 24px; height: 24px; }
.contact__list a {
  color: var(--text);
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color var(--transition);
}
.contact__list a:hover { color: var(--fg); }
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 36px 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 32px;
  align-items: start;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--fg);
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.footer__tag {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-left: 12px;
}
.footer__products {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
}
.footer__products a {
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer__products a:hover { color: var(--fg); }
.footer__meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: right;
}
.footer__copy { font-size: 0.88rem; color: var(--text-muted); }
.footer__email {
  font-family: var(--font);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer__email:hover { color: var(--fg); }

@media (max-width: 900px) {
  .product__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .product__text,
  .product__panel {
    order: initial;
  }
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer__meta { text-align: left; }
  .studio__ticker { white-space: normal; }
}

@media (max-width: 680px) {
  .section { padding: 72px 0; }
  .nav__links { display: none; }
  .nav__links.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    height: calc(100vh - 68px);
    overflow-y: auto;
    background: var(--bg-2);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 32px 28px;
    gap: 16px;
    z-index: 99;
    align-items: flex-start;
    border-top: 1px solid var(--border);
  }
  .nav__links.is-open a {
    font-size: 1.2rem;
    padding: 10px 0;
  }
  .nav__toggle { display: flex; }
  .nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .manifest__desc { display: none; }
  .manifest__row  { grid-template-columns: 36px 1fr auto 24px; }
  .match { grid-template-columns: 1fr; }
  .ring { max-width: 120px; max-height: 120px; margin: 0 auto; }
  .form__row { grid-template-columns: 1fr; }
 
  .telemetry { grid-template-columns: 1fr; }
  .product--chef .product__text,
  .product--darkly .product__text {
    order: 1;
  }
  .flag-card__stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
.manifest__row:focus-visible {
  outline: 2px solid var(--blue-mid);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .hero__eyebrow,
  .hero__headline,
  .hero__sub,
  .manifest,
  .manifest__row {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .status__dot { animation: none; }
  [data-reveal] {
    transition: none;
    opacity: 1;
    transform: none;
  }
  .ring__progress { transition: none; }
}
