/* ============================================================
   Components — nav, hero, motif, sections
   ============================================================ */

/* ---------------- Nav ---------------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), backdrop-filter 0.3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: color-mix(in oklab, var(--bg) 78%, transparent);
  backdrop-filter: blur(16px) saturate(1.4);
  border-bottom-color: var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; letter-spacing: -0.01em; }
.brand .mark {
  width: 30px; height: 30px; border-radius: 9px; flex: none;
  display: grid; place-items: center;
  background: var(--accent-soft); border: 1px solid var(--accent-line);
  position: relative;
}
.brand .mark::before, .brand .mark::after {
  content: ""; position: absolute; width: 4px; border-radius: 2px; background: var(--accent);
}
.brand .mark::before { height: 14px; left: 9px; }
.brand .mark::after  { height: 9px; right: 9px; align-self: center; opacity: 0.6; }
.brand small { color: var(--text-3); font-family: var(--font-mono); font-size: 0.7rem; font-weight: 400; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 8px 13px; border-radius: 8px; font-size: 0.9rem; color: var(--text-2); white-space: nowrap;
  transition: color 0.18s, background 0.18s;
}
.nav-links a:hover { color: var(--text); background: var(--surface); }
.nav-links a[aria-current="true"] { color: var(--accent); }
.nav-right { display: flex; align-items: center; gap: 10px; }

.theme-toggle {
  width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center;
  border: 1px solid var(--border-strong); background: var(--surface); color: var(--text-2);
  transition: color 0.18s, border-color 0.18s, transform 0.18s;
}
.theme-toggle:hover { color: var(--text); border-color: var(--accent-line); transform: translateY(-1px); }
.theme-toggle svg { width: 18px; height: 18px; }
.theme-toggle .sun { display: none; }
[data-theme="light"] .theme-toggle .sun { display: block; }
[data-theme="light"] .theme-toggle .moon { display: none; }

.nav-toggle { display: none; width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--border-strong); background: var(--surface); }
.nav-toggle span { display: block; width: 16px; height: 1.5px; background: var(--text); margin: 3.5px auto; transition: transform 0.25s, opacity 0.2s; }

@media (max-width: 860px) {
  .nav-links {
    position: fixed; inset: 68px 0 auto 0; flex-direction: column; align-items: stretch; gap: 2px;
    background: color-mix(in oklab, var(--bg) 96%, transparent); backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border); padding: 12px var(--gutter) 20px;
    transform: translateY(-130%); transition: transform 0.35s var(--ease); pointer-events: none;
  }
  .nav.open .nav-links { transform: none; pointer-events: auto; }
  .nav-links a { padding: 13px; font-size: 1rem; }
  .nav-cta-desktop { display: none; }
  .nav-toggle { display: block; }
  .nav.open .nav-toggle span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
  .nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav.open .nav-toggle span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }
}

/* ---------------- Hero ---------------- */
.hero { padding-top: clamp(120px, 16vh, 180px); padding-bottom: clamp(56px, 8vw, 96px); }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; gap: 44px; } }

.avail {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 14px 7px 11px; border-radius: 999px;
  background: var(--ok-soft); border: 1px solid color-mix(in oklab, var(--ok) 32%, transparent);
  font-family: var(--font-mono); font-size: 0.76rem; letter-spacing: 0.02em; color: var(--text);
}
.avail .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ok); position: relative; flex: none; }
.avail .dot::after { content: ""; position: absolute; inset: -4px; border-radius: 50%; border: 1px solid var(--ok); opacity: 0.5; animation: ping 2.4s var(--ease) infinite; }
@keyframes ping { 0% { transform: scale(0.6); opacity: 0.7; } 80%, 100% { transform: scale(1.8); opacity: 0; } }

.hero h1 { font-size: var(--fs-display); margin: 22px 0 0; letter-spacing: -0.035em; }
.hero h1 .grad {
  background: linear-gradient(120deg, var(--accent), oklch(0.8 0.13 220));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero .lead { color: var(--text-2); font-size: var(--fs-lead); margin-top: 24px; max-width: 46ch; }
.hero .lead strong { color: var(--text); font-weight: 600; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 18px 26px; margin-top: 30px; color: var(--text-3); font-family: var(--font-mono); font-size: 0.8rem; }
.hero-meta b { color: var(--text); font-weight: 500; }

/* ---------------- Signature motif: agent lanes ---------------- */
.fleet {
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--border); border-radius: var(--r-lg);
  box-shadow: var(--shadow-2); overflow: hidden; position: relative;
}
.fleet::after { content: ""; position: absolute; inset: 0; pointer-events: none; box-shadow: var(--glow); opacity: 0.5; border-radius: var(--r-lg); }
.fleet-bar {
  display: flex; align-items: center; gap: 8px; padding: 12px 15px;
  border-bottom: 1px solid var(--border); background: color-mix(in oklab, var(--surface) 70%, transparent);
}
.fleet-bar .tl { display: flex; gap: 6px; }
.fleet-bar .tl i { width: 11px; height: 11px; border-radius: 50%; background: var(--border-strong); }
.fleet-bar .title { font-family: var(--font-mono); font-size: 0.76rem; color: var(--text-3); margin-left: 6px; }
.fleet-bar .live { margin-left: auto; font-family: var(--font-mono); font-size: 0.7rem; color: var(--ok); display: inline-flex; align-items: center; gap: 6px; }
.fleet-bar .live::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 8px var(--ok); animation: pulse 1.6s ease-in-out infinite; }
@keyframes pulse { 50% { opacity: 0.35; } }

.lanes { padding: 8px; display: flex; flex-direction: column; gap: 6px; }
.lane {
  display: grid; grid-template-columns: 150px 1fr; align-items: center; gap: 12px;
  padding: 11px 12px; border-radius: 12px; background: var(--surface-2);
  border: 1px solid transparent; transition: border-color 0.3s;
}
.lane.active { border-color: var(--accent-line); }
.lane-agent { display: flex; align-items: center; gap: 8px; min-width: 0; }
.lane-agent .ai { width: 9px; height: 9px; border-radius: 3px; flex: none; background: var(--accent); }
.lane-agent .ai.g { background: var(--ok); }
.lane-agent .ai.v { background: oklch(0.7 0.16 300); }
.lane-agent .ai.o { background: oklch(0.74 0.15 50); }
.lane-agent .nm { font-family: var(--font-mono); font-size: 0.74rem; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lane-body { min-width: 0; }
.lane-task { font-family: var(--font-mono); font-size: 0.74rem; color: var(--text-2); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; height: 1.2em; }
.lane-task .cursor { color: var(--accent); animation: blink 1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }
.lane-prog { height: 3px; border-radius: 2px; background: var(--border); margin-top: 7px; overflow: hidden; }
.lane-prog i { display: block; height: 100%; width: 0; background: var(--accent); border-radius: 2px; transition: width 0.4s linear; }
.lane.done .lane-prog i { background: var(--ok); }
.lane-check { width: 15px; height: 15px; opacity: 0; transition: opacity 0.3s; color: var(--ok); flex: none; }
.lane.done .lane-check { opacity: 1; }
.lane-agent { position: relative; }

.fleet-foot {
  display: flex; align-items: center; gap: 14px; padding: 11px 15px; border-top: 1px solid var(--border);
  font-family: var(--font-mono); font-size: 0.72rem; color: var(--text-3); flex-wrap: wrap;
}
.fleet-foot b { color: var(--text); font-weight: 500; }
.fleet-foot .sep { width: 1px; height: 12px; background: var(--border-strong); }

/* ---------------- Proof bar ---------------- */
.proof { border-block: 1px solid var(--border); background: color-mix(in oklab, var(--surface) 50%, transparent); }
.proof-inner { display: flex; align-items: center; gap: 18px; padding-block: 22px; flex-wrap: wrap; }
.proof-label { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-3); white-space: nowrap; }
.proof-track { display: flex; flex-wrap: wrap; gap: 10px 22px; flex: 1; }
.proof-track span { font-family: var(--font-mono); font-size: 0.85rem; color: var(--text-2); transition: color 0.2s; }
.proof-track span:hover { color: var(--accent); }

/* ---------------- How I Build (workflow graph) ---------------- */
.flow-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
@media (max-width: 980px) { .flow-grid { grid-template-columns: 1fr; } }

.flow-steps { display: flex; flex-direction: column; gap: 10px; }
.flow-step {
  display: grid; grid-template-columns: 44px 1fr; gap: 16px; align-items: start;
  padding: 18px 20px; border-radius: var(--r); background: var(--surface);
  border: 1px solid var(--border); transition: border-color 0.25s, background 0.25s, transform 0.25s;
  cursor: default;
}
.flow-step:hover { border-color: var(--accent-line); transform: translateX(4px); }
.flow-step.lit { border-color: var(--accent-line); background: var(--surface-2); }
.flow-num {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  font-family: var(--font-mono); font-size: 0.95rem; font-weight: 500;
  background: var(--accent-soft); border: 1px solid var(--accent-line); color: var(--accent);
  transition: background 0.25s, color 0.25s;
}
.flow-step.lit .flow-num { background: var(--accent); color: var(--accent-ink); }
.flow-step h3 { font-size: 1.08rem; letter-spacing: -0.01em; }
.flow-step p { color: var(--text-2); font-size: 0.92rem; margin-top: 5px; }
.flow-step .tag { font-family: var(--font-mono); font-size: 0.72rem; color: var(--text-3); margin-top: 9px; display: inline-block; }
.flow-step .tag b { color: var(--accent); font-weight: 500; }

/* graph panel */
.flow-graph {
  position: sticky; top: 92px;
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--border); border-radius: var(--r-lg); box-shadow: var(--shadow-1);
  padding: 22px; min-height: 420px; overflow: hidden;
}
.flow-graph .gh { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.flow-graph .gh span { font-family: var(--font-mono); font-size: 0.72rem; color: var(--text-3); }
.flow-graph svg { width: 100%; height: auto; }
.node-label { font-family: var(--font-mono); font-size: 9px; }

/* ---------------- Selected Work ---------------- */
.work-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 820px) { .work-grid { grid-template-columns: 1fr; } }

.card {
  position: relative; display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
  overflow: hidden; transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.card:hover { border-color: var(--border-strong); transform: translateY(-4px); box-shadow: var(--shadow-2); }
.card-media {
  height: 168px; position: relative; overflow: hidden;
  background:
    repeating-linear-gradient(135deg, var(--surface-2) 0 11px, transparent 11px 22px),
    linear-gradient(180deg, var(--elevated), var(--surface));
  border-bottom: 1px solid var(--border);
  display: grid; place-items: center;
}
.card-media .ph { font-family: var(--font-mono); font-size: 0.74rem; color: var(--text-3); letter-spacing: 0.04em; }
.card-media .kind {
  position: absolute; top: 13px; left: 13px; font-family: var(--font-mono); font-size: 0.68rem;
  padding: 5px 10px; border-radius: 999px; background: color-mix(in oklab, var(--bg) 70%, transparent);
  border: 1px solid var(--border-strong); color: var(--text-2); backdrop-filter: blur(6px);
}
.card-media .kind.live { color: var(--ok); border-color: color-mix(in oklab, var(--ok) 34%, transparent); }
.card-body { padding: 22px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.card-body h3 { font-size: var(--fs-h3); }
.card-body .role { font-family: var(--font-mono); font-size: 0.74rem; color: var(--accent); }
.card-body .desc { color: var(--text-2); font-size: 0.94rem; }
.card-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; padding-top: 6px; }
.card-foot .more {
  display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-mono); font-size: 0.78rem;
  color: var(--text); transition: gap 0.2s, color 0.2s;
}
.card:hover .card-foot .more { color: var(--accent); gap: 11px; }
.card-foot .links { display: flex; gap: 6px; }
.icon-btn { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; border: 1px solid var(--border); color: var(--text-2); transition: color 0.2s, border-color 0.2s, background 0.2s; }
.icon-btn:hover { color: var(--text); border-color: var(--accent-line); background: var(--surface-2); }
.icon-btn svg { width: 16px; height: 16px; }

.card.placeholder { border-style: dashed; background: transparent; }
.card.placeholder .card-media { background: repeating-linear-gradient(135deg, var(--surface) 0 11px, transparent 11px 22px); border-bottom-style: dashed; }
.card.placeholder .todo { font-family: var(--font-mono); font-size: 0.74rem; color: var(--text-3); }
.card.placeholder h3 { color: var(--text-2); }

/* full-card button reset for clickable cards */
.card-trigger { text-align: left; width: 100%; background: none; }

/* ---------------- Modal ---------------- */
.modal-scrim {
  position: fixed; inset: 0; z-index: 300; display: grid; place-items: center; padding: 20px;
  background: color-mix(in oklab, #000 62%, transparent); backdrop-filter: blur(6px);
  opacity: 0; pointer-events: none; transition: opacity 0.3s var(--ease);
}
.modal-scrim.open { opacity: 1; pointer-events: auto; }
.modal {
  width: min(760px, 100%); max-height: 88vh; overflow-y: auto;
  background: var(--surface); border: 1px solid var(--border-strong); border-radius: var(--r-xl);
  box-shadow: var(--shadow-2); transform: translateY(18px) scale(0.98); transition: transform 0.35s var(--ease);
}
.modal-scrim.open .modal { transform: none; }
.modal-hd { position: sticky; top: 0; z-index: 2; display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; padding: 26px 28px 18px; background: linear-gradient(180deg, var(--surface), color-mix(in oklab, var(--surface) 85%, transparent)); border-bottom: 1px solid var(--border); }
.modal-hd .role { font-family: var(--font-mono); font-size: 0.74rem; color: var(--accent); }
.modal-hd h3 { font-size: clamp(1.5rem, 1.2rem + 1.4vw, 2.1rem); margin-top: 6px; }
.modal-close { width: 40px; height: 40px; border-radius: 10px; flex: none; display: grid; place-items: center; border: 1px solid var(--border-strong); color: var(--text-2); transition: color 0.2s, border-color 0.2s, transform 0.2s; }
.modal-close:hover { color: var(--text); border-color: var(--accent-line); transform: rotate(90deg); }
.modal-bd { padding: 22px 28px 30px; display: flex; flex-direction: column; gap: 26px; }
.mb-block h4 { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-3); margin-bottom: 10px; }
.mb-block p { color: var(--text-2); }
.mb-list { display: flex; flex-direction: column; gap: 10px; }
.mb-list li { list-style: none; display: grid; grid-template-columns: 20px 1fr; gap: 11px; color: var(--text-2); }
.mb-list li svg { width: 16px; height: 16px; color: var(--ok); margin-top: 4px; }
.mb-list li b { color: var(--text); font-weight: 600; }
.modal-links { display: flex; flex-wrap: wrap; gap: 10px; }

/* ---------------- Skills ---------------- */
.skills-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 900px) { .skills-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .skills-grid { grid-template-columns: 1fr; } }
.skill-card { padding: 22px; border-radius: var(--r); background: var(--surface); border: 1px solid var(--border); transition: border-color 0.25s; }
.skill-card:hover { border-color: var(--accent-line); }
.skill-card .sh { display: flex; align-items: center; gap: 11px; margin-bottom: 16px; }
.skill-card .sh .ic { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; background: var(--accent-soft); border: 1px solid var(--accent-line); color: var(--accent); }
.skill-card .sh .ic svg { width: 17px; height: 17px; }
.skill-card .sh h3 { font-size: 1rem; letter-spacing: -0.01em; }
.skill-card.featured { background: linear-gradient(180deg, var(--accent-soft), var(--surface)); border-color: var(--accent-line); }

/* ---------------- Beyond Code ---------------- */
.beyond {
  background: linear-gradient(120deg, var(--surface), var(--bg-2));
  border: 1px solid var(--border); border-radius: var(--r-xl); overflow: hidden;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 0;
}
@media (max-width: 820px) { .beyond { grid-template-columns: 1fr; } }
.beyond-l { padding: clamp(28px, 4vw, 48px); }
.beyond-l .eyebrow { color: oklch(0.74 0.15 50); }
.beyond-l .eyebrow::before { background: oklch(0.74 0.15 50 / 0.4); }
.beyond-l h2 { font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.3rem); margin: 16px 0 14px; }
.beyond-l p { color: var(--text-2); max-width: 44ch; }
.beyond-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.beyond-r { position: relative; border-left: 1px solid var(--border); display: grid; place-items: center; padding: 32px; min-height: 220px; background: repeating-linear-gradient(135deg, var(--surface-2) 0 12px, transparent 12px 24px); }
@media (max-width: 820px) { .beyond-r { border-left: none; border-top: 1px solid var(--border); } }
.beyond-r .ph { font-family: var(--font-mono); font-size: 0.74rem; color: var(--text-3); text-align: center; }
.partner-row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.partner {
  font-family: var(--font-mono); font-size: 0.8rem; padding: 8px 14px; border-radius: 10px;
  background: color-mix(in oklab, var(--bg) 60%, transparent); border: 1px solid var(--border-strong); color: var(--text-2);
}

/* ---------------- About ---------------- */
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(28px, 5vw, 60px); align-items: start; }
@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; } }
.about-photo {
  aspect-ratio: 4/5; border-radius: var(--r-lg); border: 1px solid var(--border);
  background: repeating-linear-gradient(135deg, var(--surface-2) 0 12px, transparent 12px 24px), linear-gradient(180deg, var(--elevated), var(--surface));
  display: grid; place-items: center; position: relative; overflow: hidden;
}
.about-photo .ph { font-family: var(--font-mono); font-size: 0.74rem; color: var(--text-3); }
.about-photo .badge { position: absolute; bottom: 14px; left: 14px; right: 14px; display: flex; align-items: center; gap: 9px; padding: 10px 13px; border-radius: 12px; background: color-mix(in oklab, var(--bg) 78%, transparent); border: 1px solid var(--border-strong); backdrop-filter: blur(8px); font-family: var(--font-mono); font-size: 0.74rem; }
.about-body h2 { font-size: var(--fs-h2); margin: 14px 0 0; }
.about-body p { color: var(--text-2); margin-top: 18px; font-size: var(--fs-lead); }
.about-body p strong { color: var(--text); font-weight: 600; }
.about-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 30px; }
@media (max-width: 480px) { .about-facts { grid-template-columns: 1fr; } }
.fact { padding: 16px; border-radius: var(--r); background: var(--surface); border: 1px solid var(--border); }
.fact .n { font-family: var(--font-display); font-size: 1.7rem; font-weight: 600; letter-spacing: -0.02em; }
.fact .l { font-family: var(--font-mono); font-size: 0.72rem; color: var(--text-3); margin-top: 4px; }

/* ---------------- Contact ---------------- */
.contact-card {
  background: linear-gradient(160deg, var(--surface), var(--bg-2));
  border: 1px solid var(--border); border-radius: var(--r-xl); box-shadow: var(--shadow-1);
  padding: clamp(32px, 5vw, 64px); text-align: center; position: relative; overflow: hidden;
}
.contact-card::before { content: ""; position: absolute; top: -40%; left: 50%; transform: translateX(-50%); width: 600px; height: 400px; background: radial-gradient(ellipse, var(--accent-soft), transparent 65%); pointer-events: none; }
.contact-card .eyebrow { position: relative; }
.contact-card h2 { font-size: var(--fs-h2); margin: 18px 0 16px; position: relative; }
.contact-card p { color: var(--text-2); font-size: var(--fs-lead); max-width: 46ch; margin: 0 auto; position: relative; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 30px; position: relative; }
.social-row { display: flex; gap: 10px; justify-content: center; margin-top: 26px; position: relative; }
.social-row a { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; border: 1px solid var(--border-strong); background: var(--surface); color: var(--text-2); transition: color 0.2s, border-color 0.2s, transform 0.2s; }
.social-row a:hover { color: var(--accent); border-color: var(--accent-line); transform: translateY(-3px); }
.social-row a svg { width: 19px; height: 19px; }

/* ---------------- Footer ---------------- */
.footer { border-top: 1px solid var(--border); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding-block: 30px; flex-wrap: wrap; }
.footer-inner .built { font-family: var(--font-mono); font-size: 0.74rem; color: var(--text-3); display: inline-flex; align-items: center; gap: 9px; }
.footer-inner .built .cf { color: oklch(0.74 0.15 50); }
.footer-nav { display: flex; gap: 18px; }
.footer-nav a { font-size: 0.85rem; color: var(--text-3); transition: color 0.2s; }
.footer-nav a:hover { color: var(--text); }

/* utility */
.divider-label { display: flex; align-items: center; gap: 14px; color: var(--text-3); font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 26px; }
.divider-label::after { content: ""; flex: 1; height: 1px; background: var(--border); }
