/* pain_point tech — design tokens + base styles */

:root {
  --bg: #FAFAF7;
  --bg-2: #F2F1EC;
  --ink: #0A0A0A;
  --ink-2: #2A2A28;
  --ink-3: #6A6A66;
  --ink-4: #B5B4AE;
  --line: #1A1A1A1A;
  --line-2: #0A0A0A0F;
  --accent: #E8643C;       /* warm orange — pain point */
  --accent-deep: #C4471F;
  --accent-soft: #FBE7DD;

  --font-sans: 'Inter Tight', 'Noto Sans TC', ui-sans-serif, system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  --font-serif: 'Noto Serif TC', ui-serif, Georgia, serif;

  --maxw: 1280px;
  --gutter: clamp(20px, 4vw, 56px);
}

[data-theme="dark"] {
  --bg: #0A0A0A;
  --bg-2: #131311;
  --ink: #F5F4EF;
  --ink-2: #E2E1DC;
  --ink-3: #8A8A85;
  --ink-4: #444441;
  --line: #FFFFFF18;
  --line-2: #FFFFFF0E;
  --accent-soft: #3A1B10;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
img { max-width: 100%; display: block; }

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

/* layout */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.row { display: flex; }
.col { display: flex; flex-direction: column; }

/* type */
.mono { font-family: var(--font-mono); font-feature-settings: "ss01"; }
.serif { font-family: var(--font-serif); }
.tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--ink-3);
}

h1, h2, h3, h4 { margin: 0; font-weight: 500; letter-spacing: -0.02em; line-height: 1.05; }
.h-display {
  font-family: var(--font-sans);
  font-size: clamp(44px, 7.6vw, 112px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  font-weight: 500;
}
.h-1 { font-size: clamp(36px, 5vw, 72px); letter-spacing: -0.028em; line-height: 1; }
.h-2 { font-size: clamp(28px, 3.4vw, 48px); letter-spacing: -0.022em; line-height: 1.05; }
.h-3 { font-size: clamp(22px, 2.4vw, 32px); letter-spacing: -0.018em; line-height: 1.15; }

.lede {
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 56ch;
  text-wrap: pretty;
}

/* underscored brand text */
.brand-mark {
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.brand-mark .u { text-decoration: underline; text-decoration-thickness: 1.5px; text-underline-offset: 2px; }
.brand-mark .accent { color: var(--accent); }

/* divider */
.hr { height: 1px; background: var(--line); border: 0; margin: 0; }

/* button */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 14px; font-weight: 500;
  border: 1px solid var(--ink);
  background: var(--ink); color: var(--bg);
  cursor: pointer;
  white-space: nowrap;
  transition: transform .15s ease, background .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: var(--ink); border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--ink); }
.btn-accent { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-deep); border-color: var(--accent-deep); }
.btn .arrow {
  width: 16px; height: 16px;
  transition: transform .2s ease;
}
.btn:hover .arrow { transform: translate(2px, -2px); }

/* card */
.card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
}
.card-flat {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
}

/* nav */
.nav {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  background: color-mix(in oklab, var(--bg) 76%, transparent);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0;
}
.nav-links {
  display: flex; gap: 28px;
  font-size: 14px;
}
.nav-links a {
  color: var(--ink-2);
  transition: color .15s ease;
  position: relative;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; padding: 9px 16px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink); color: var(--bg);
  white-space: nowrap;
  transition: background .2s, color .2s;
}
.nav-cta:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

/* section frame */
section { position: relative; }
.section { padding: clamp(80px, 10vw, 160px) 0; }
.section-tight { padding: clamp(56px, 7vw, 100px) 0; }
.section-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(24px, 5vw, 80px);
  align-items: end;
  margin-bottom: clamp(40px, 5vw, 72px);
}
@media (max-width: 720px) {
  .section-head { grid-template-columns: 1fr; gap: 12px; }
}

/* Why section: robot shuffler on the left */
#why .section-head { align-items: stretch; }
.why-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  min-height: 240px;
}
.robot-shuffler {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.robot-shuffler-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: robotPop 0.7s ease-out;
}
[data-theme="dark"] .robot-shuffler-img { filter: invert(1); }
@keyframes robotPop {
  0%   { opacity: 0; transform: scale(0.92); }
  20%  { opacity: 1; transform: scale(1.02); }
  100% { opacity: 1; transform: scale(1); }
}
@media (max-width: 720px) {
  .why-left { min-height: 0; }
  .robot-shuffler { max-width: 180px; }
}

/* Services section: coop shuffler on the left */
#services .section-head { align-items: stretch; }
.services-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  min-height: 240px;
}
.coop-shuffler {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.coop-shuffler-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: robotPop 1.5s ease-out;
}
[data-theme="dark"] .coop-shuffler-img { filter: invert(1); }
@media (max-width: 720px) {
  .services-left { min-height: 0; }
  .coop-shuffler { max-width: 180px; }
}

/* Industries section: industry icon shuffler on the left */
#industries .section-head { align-items: stretch; }
.industries-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  min-height: 240px;
}
.ind-shuffler {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ind-shuffler-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: robotPop 1.1s ease-out;
}
[data-theme="dark"] .ind-shuffler-img { filter: invert(1); }
@media (max-width: 720px) {
  .industries-left { min-height: 0; }
  .ind-shuffler { max-width: 180px; }
}

/* Modules section: module diagram shuffler on the left */
#modules .section-head { align-items: stretch; }
.modules-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  min-height: 240px;
}
.mod-shuffler {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mod-shuffler-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: robotPop 2s ease-out;
}
[data-theme="dark"] .mod-shuffler-img { filter: invert(1); }
@media (max-width: 720px) {
  .modules-left { min-height: 0; }
  .mod-shuffler { max-width: 180px; }
}

/* Industries: two-group structure */
.ind-groups { display: flex; flex-direction: column; gap: 64px; }
.ind-group-head {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 28px;
}
.ind-group-tag {
  font-size: 13px; font-weight: 500;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--ink); color: var(--bg);
  white-space: nowrap;
}
.ind-group:nth-child(2) .ind-group-tag {
  background: var(--accent-soft); color: var(--accent-deep);
  border: 1px solid var(--accent);
}
.ind-group-en {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--ink-3);
  white-space: nowrap;
}
.ind-group-line {
  flex: 1;
  height: 1px;
  background: var(--line);
}

/* hero */
.hero {
  padding: clamp(60px, 8vw, 120px) 0 clamp(80px, 10vw, 140px);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 80px);
}
.hero-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.hero-meta > div { padding: 4px 16px; border-left: 1px solid var(--line); }
.hero-meta > div:first-child { border-left: 0; padding-left: 0; }
@media (max-width: 720px) {
  .hero-meta { grid-template-columns: repeat(2, 1fr); gap: 14px; padding: 16px 0; }
  .hero-meta > div { border-left: 0; padding: 0; }
}

/* services */
.svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 900px) { .svc-grid { grid-template-columns: 1fr; } }
.svc {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(28px, 3.5vw, 44px);
  background: var(--bg);
  position: relative;
  overflow: hidden;
  transition: border-color .2s ease;
  display: flex; flex-direction: column;
  min-height: 480px;
}
.svc:hover { border-color: var(--ink); }
.svc-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--ink-3);
}
.svc-title { margin-top: 24px; }
.svc-body { color: var(--ink-2); margin-top: 16px; flex-grow: 1; max-width: 44ch; }
.svc-list {
  list-style: none; padding: 0; margin: 24px 0 0;
  display: grid; gap: 0;
}
.svc-list li {
  padding: 12px 0;
  border-top: 1px dashed var(--line);
  display: flex; justify-content: space-between; gap: 16px;
  font-size: 14px;
  color: var(--ink-2);
}
.svc-list li .mono { color: var(--ink-3); font-size: 11px; letter-spacing: 0.08em; }
.svc-foot {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 14px;
}
.svc-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}
[data-theme="dark"] .svc-pill { color: #FFD2BD; }

/* industries */
.ind-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
@media (max-width: 900px) { .ind-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .ind-grid { grid-template-columns: 1fr; } }
.ind {
  padding: 32px 28px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  position: relative;
  background: var(--bg);
  transition: background .2s;
  cursor: default;
}
.ind:hover { background: var(--bg-2); }
.ind:nth-child(3n) { border-right: 0; }
@media (max-width: 900px) {
  .ind { border-right: 1px solid var(--line); }
  .ind:nth-child(3n) { border-right: 1px solid var(--line); }
  .ind:nth-child(2n) { border-right: 0; }
}
.ind-num { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; color: var(--ink-3); }
.ind-name { margin-top: 24px; font-size: 22px; letter-spacing: -0.018em; font-weight: 500; }
.ind-en { font-family: var(--font-mono); font-size: 11px; color: var(--ink-3); margin-top: 4px; letter-spacing: 0.08em; }
.ind-pain { margin-top: 20px; font-size: 13px; color: var(--ink-2); line-height: 1.55; max-width: 28ch; }

/* modules */
.mod-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 900px) { .mod-grid { grid-template-columns: 1fr; } }
.mod {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  background: var(--bg);
}
.mod-head { display: flex; justify-content: space-between; align-items: baseline; }
.mod-agents {
  margin-top: 22px;
  display: flex; flex-wrap: wrap; gap: 6px;
}
.agent-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 11px;
  border: 1px solid var(--line);
  border-radius: 7px;
  font-size: 12px;
  background: var(--bg-2);
  color: var(--ink-2);
  white-space: nowrap;
}
.agent-chip .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
}

/* process */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 900px) { .process { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .process { grid-template-columns: 1fr; } }
.step {
  padding: 36px 28px 36px;
  border-right: 1px solid var(--line);
  position: relative;
  min-height: 220px;
}
.step:last-child { border-right: 0; }
@media (max-width: 900px) { .step { border-bottom: 1px solid var(--line); } .step:nth-child(2n) { border-right: 0; } }
.step-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--ink-3);
}
.step-title { margin-top: 20px; font-size: 20px; font-weight: 500; letter-spacing: -0.018em; }
.step-body { margin-top: 14px; color: var(--ink-2); font-size: 14px; line-height: 1.55; max-width: 28ch; }

/* case study */
.case {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(28px, 4vw, 64px);
  padding: clamp(40px, 5vw, 80px) 0;
  border-top: 1px solid var(--line);
  align-items: center;
}
@media (max-width: 900px) { .case { grid-template-columns: 1fr; } }
.case:first-of-type { border-top: 0; }
.case-num { font-family: var(--font-mono); font-size: 11px; color: var(--ink-3); letter-spacing: 0.12em; }
.case-industry { margin-top: 8px; font-size: 14px; color: var(--ink-3); }
.case-quote {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.6vw, 36px);
  line-height: 1.25;
  letter-spacing: -0.012em;
  color: var(--ink);
  text-wrap: pretty;
  font-weight: 400;
}
.case-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 32px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.case-stats > div { border-left: 1px solid var(--line); padding: 6px 16px; }
.case-stats > div:first-child { border-left: 0; padding-left: 0; }
.stat-num {
  font-family: var(--font-sans);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  letter-spacing: -0.022em;
  color: var(--accent);
  line-height: 1;
}
.stat-label { font-family: var(--font-mono); font-size: 11px; color: var(--ink-3); margin-top: 8px; letter-spacing: 0.06em; }

/* case visual */
.case-img {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-2);
}
.case-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* placeholder visual */
.ph {
  background: repeating-linear-gradient(135deg, var(--bg-2) 0 16px, transparent 16px 17px), var(--bg);
  border: 1px solid var(--line);
  border-radius: 16px;
  display: grid; place-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  aspect-ratio: 4 / 3;
}

/* CTA strip */
.cta-strip {
  background: var(--ink);
  color: var(--bg);
  border-radius: 28px;
  padding: clamp(48px, 6vw, 88px);
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: end;
  position: relative;
  overflow: hidden;
}
@media (max-width: 900px) { .cta-strip { grid-template-columns: 1fr; } }
.cta-strip .h-1 { color: var(--bg); }
.cta-strip .lede { color: rgba(245, 244, 239, 0.75); }
.cta-strip .accent-mark { color: var(--accent); }
.cta-strip .btn-accent { background: var(--accent); border-color: var(--accent); color: #fff; }

/* footer */
.foot {
  border-top: 1px solid var(--line);
  padding: 56px 0 40px;
  font-size: 14px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
}
@media (max-width: 720px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
.foot-grid h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 16px;
  font-weight: 500;
}
.foot-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.foot-grid a { color: var(--ink-2); }
.foot-grid a:hover { color: var(--accent); }
.foot-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px; border-top: 1px solid var(--line);
  color: var(--ink-3); font-size: 12px;
}

/* contact form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 5vw, 80px);
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-3);
  text-transform: uppercase;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 15px;
  outline: none;
  transition: border-color .2s, background .2s;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--ink); background: var(--bg);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } }
.radio-group { display: flex; flex-wrap: wrap; gap: 8px; }
.radio-pill {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  cursor: pointer;
  background: var(--bg);
  color: var(--ink-2);
  white-space: nowrap;
  transition: all .15s;
  user-select: none;
}
.radio-pill:hover { border-color: var(--ink-3); color: var(--ink); }
.radio-pill[data-selected="true"] {
  background: var(--ink); color: var(--bg); border-color: var(--ink);
}
.checkbox-row {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: var(--ink-3);
  cursor: pointer;
}
.checkbox-row input { width: 16px; height: 16px; margin-top: 3px; }

/* logo cloud (industries strip in hero) */
.marq {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.marq-track {
  display: flex;
  gap: 64px;
  padding: 18px 0;
  animation: marq 38s linear infinite;
  white-space: nowrap;
  width: max-content;
}
@keyframes marq {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marq-item {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: inline-flex; align-items: center; gap: 12px;
}
.marq-item .star { color: var(--accent); }

/* big visual block */
.bigvis {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(40px, 5vw, 64px);
  background:
    radial-gradient(ellipse at top right, color-mix(in oklab, var(--accent) 14%, transparent), transparent 60%),
    var(--bg);
  position: relative;
  overflow: hidden;
}
.bigvis::after {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(var(--line-2) 1px, transparent 1px), linear-gradient(90deg, var(--line-2) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  mask-image: radial-gradient(circle at 30% 50%, black, transparent 75%);
  opacity: 0.5;
}

/* arrow chevron */
.chev {
  display: inline-block;
  width: 14px; height: 14px;
  position: relative;
}
.chev::before {
  content: ""; position: absolute; inset: 0;
  border-top: 1.4px solid currentColor;
  border-right: 1.4px solid currentColor;
  transform: rotate(45deg) scale(0.7);
  transform-origin: center;
}

/* lang switch */
.lang {
  display: inline-flex; align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}
.lang button {
  background: transparent; border: 0; padding: 6px 11px;
  font: inherit; color: inherit; cursor: pointer;
  white-space: nowrap;
}
.lang button[data-active="true"] { background: var(--ink); color: var(--bg); }

/* misc */
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent);
  padding: 6px 12px;
  border: 1px solid color-mix(in oklab, var(--accent) 50%, transparent);
  border-radius: 999px;
  background: var(--accent-soft);
}
[data-theme="dark"] .kicker { color: #FFC2A6; }

.floating-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  animation: pulse 1.8s ease-in-out infinite;
  box-shadow: 0 0 0 0 color-mix(in oklab, var(--accent) 60%, transparent);
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 color-mix(in oklab, var(--accent) 60%, transparent); }
  50% { box-shadow: 0 0 0 6px transparent; }
}
