/* ---------- Tokens ---------- */
:root {
  --bg: #f7f8fc;
  --bg-soft: #ffffff;
  --bg-tint: #eef1f8;
  --ink: #0f172a;
  --ink-2: #334155;
  --ink-3: #64748b;
  --line: #e2e6f0;
  --line-2: #d6dbe8;
  --brand: #4f46e5;
  --brand-2: #6366f1;
  --brand-soft: #eef0ff;
  --accent: #06b6d4;
  --accent-2: #14b8a6;
  --warm: #f97316;
  --pink: #ec4899;
  --grad: linear-gradient(135deg, #4f46e5 0%, #6366f1 30%, #06b6d4 70%, #14b8a6 100%);
  --grad-text: linear-gradient(120deg, #4f46e5, #06b6d4 60%, #14b8a6);
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06), 0 1px 1px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.06), 0 2px 6px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.10), 0 6px 16px rgba(15, 23, 42, 0.05);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 22px;
  --maxw: 1180px;
  --pad: clamp(20px, 4vw, 48px);
  --t: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

h1, h2, h3, h4, h5 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
}

p { margin: 0; color: var(--ink-2); }

/* ---------- Aurora background ---------- */
.bg-aurora {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(60% 50% at 12% 8%, rgba(99, 102, 241, 0.18) 0%, transparent 60%),
    radial-gradient(50% 45% at 90% 12%, rgba(6, 182, 212, 0.16) 0%, transparent 60%),
    radial-gradient(45% 40% at 75% 85%, rgba(236, 72, 153, 0.12) 0%, transparent 60%),
    radial-gradient(55% 45% at 10% 95%, rgba(20, 184, 166, 0.14) 0%, transparent 60%),
    var(--bg);
  filter: saturate(110%);
}

/* ---------- Nav ---------- */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 14px var(--pad) 0;
}
.nav {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 14px 10px 18px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border: 1px solid rgba(226, 230, 240, 0.8);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 600; }
.brand-mark {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  padding: 2px;
  background: var(--grad);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  flex-shrink: 0;
}
.brand-mark picture,
.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
}
.brand-mark img {
  border: 2px solid #fff;
}
.brand-name { font-family: "Space Grotesk"; font-weight: 600; letter-spacing: -0.01em; }

.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
  margin: 0 auto;
  padding: 0;
}
.nav-links a {
  display: inline-block;
  padding: 8px 14px;
  color: var(--ink-2);
  font-weight: 500;
  font-size: 14px;
  border-radius: 999px;
  transition: background 200ms var(--t), color 200ms var(--t);
}
.nav-links a:hover { background: var(--brand-soft); color: var(--brand); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  font-weight: 600;
  font-size: 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 200ms var(--t), box-shadow 200ms var(--t),
    background 200ms var(--t), color 200ms var(--t);
}
.btn-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--brand);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn-ghost:hover {
  background: #fff;
  border-color: var(--brand);
  color: var(--brand);
  transform: translateY(-1px);
}
.nav-cta { padding: 9px 16px; }

/* ---------- Layout ---------- */
main { display: block; }
.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(70px, 9vw, 120px) var(--pad);
}
.section-head { max-width: 760px; margin-bottom: 48px; }
.section-kicker {
  display: inline-block;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  padding: 6px 12px;
  background: var(--brand-soft);
  border-radius: 999px;
  margin-bottom: 18px;
}
.section h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  line-height: 1.15;
}

/* ---------- Hero ---------- */
.hero {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(40px, 7vw, 90px) var(--pad) clamp(40px, 6vw, 80px);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink-2);
  padding: 8px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.18);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.18); }
  50% { box-shadow: 0 0 0 8px rgba(20, 184, 166, 0.05); }
}
.hero h1 {
  margin-top: 22px;
  font-size: clamp(36px, 6vw, 68px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.025em;
}
.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lede {
  margin-top: 22px;
  font-size: clamp(16px, 1.5vw, 18px);
  color: var(--ink-2);
  max-width: 600px;
  line-height: 1.65;
}
.lede strong { color: var(--ink); font-weight: 600; }

.hero-ctas { display: flex; gap: 12px; margin-top: 30px; flex-wrap: wrap; }

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.meta-num {
  font-family: "Space Grotesk";
  font-weight: 700;
  font-size: clamp(22px, 2.6vw, 30px);
  color: var(--ink);
  letter-spacing: -0.02em;
}
.meta-label {
  margin-top: 4px;
  font-size: 13px;
  color: var(--ink-3);
}

/* Hero card */
.hero-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  padding: 1px;
  border-radius: inherit;
  background: var(--grad);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.6;
  pointer-events: none;
}
.card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 11px;
  background: rgba(20, 184, 166, 0.10);
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 600;
  border-radius: 999px;
}
.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.2);
  animation: pulse 2.4s ease-in-out infinite;
}
.card-mono {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: var(--ink-3);
}
.hero-card h3 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.card-sub {
  margin-top: 6px;
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  color: var(--ink-3);
}
.card-list {
  margin: 22px 0 22px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.card-list li {
  font-size: 14.5px;
  color: var(--ink-2);
  padding-left: 22px;
  position: relative;
  line-height: 1.55;
}
.card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: var(--grad);
  transform: rotate(45deg);
}
.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
}
.card-tags span {
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  background: var(--bg-tint);
  color: var(--ink-2);
  border-radius: 999px;
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.about-lead {
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.55;
  color: var(--ink);
  font-weight: 400;
  letter-spacing: -0.005em;
}
.about-pillars {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.pillar {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  transition: transform 240ms var(--t), box-shadow 240ms var(--t),
    border-color 240ms var(--t);
}
.pillar:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-2);
}
.pillar-icon {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 16px;
  margin-bottom: 12px;
}
.pillar h4 {
  font-size: 15.5px;
  font-weight: 600;
  margin-bottom: 6px;
}
.pillar p { font-size: 14px; color: var(--ink-3); line-height: 1.55; }

/* ---------- Timeline / Experience ---------- */
.timeline {
  display: grid;
  gap: 22px;
}
.role {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 3vw, 34px);
  box-shadow: var(--shadow-sm);
  transition: transform 280ms var(--t), box-shadow 280ms var(--t),
    border-color 280ms var(--t);
}
.role:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-2);
}
.role-featured {
  background: linear-gradient(180deg, #ffffff 0%, #fafbff 100%);
}
.role-featured::after {
  content: "";
  position: absolute;
  left: 0;
  top: 26px;
  bottom: 26px;
  width: 3px;
  border-radius: 999px;
  background: var(--grad);
}
.role-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}
.role-stamp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink-3);
  letter-spacing: 0.02em;
}
.role-stamp .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ink-3);
}
.role-stamp .dot-live {
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18);
  animation: pulse 2.4s ease-in-out infinite;
}
.role-tag {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}
.tag-new {
  background: linear-gradient(120deg, #4f46e5, #06b6d4);
  color: #fff;
}
.tag-founding {
  background: linear-gradient(120deg, #f97316, #ec4899);
  color: #fff;
}
.role-title {
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 600;
  letter-spacing: -0.015em;
}
.role-company {
  margin-top: 4px;
  font-size: 14.5px;
  color: var(--brand);
  font-weight: 500;
}
.role-summary {
  margin-top: 14px;
  font-size: 15px;
  color: var(--ink-2);
  max-width: 760px;
  line-height: 1.65;
}
.role-bullets {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  max-width: 820px;
}
.role-bullets li {
  position: relative;
  padding-left: 24px;
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.6;
}
.role-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  opacity: 0.85;
}
.role-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px dashed var(--line);
}
.role-tech span {
  font-size: 12px;
  font-weight: 500;
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--bg-tint);
  color: var(--ink-2);
}

.client-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}
.client {
  background: var(--bg-tint);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  transition: transform 220ms var(--t), background 220ms var(--t);
}
.client:hover { background: #fff; transform: translateY(-2px); }
.client h5 {
  font-size: 14px;
  font-weight: 600;
  color: var(--brand);
  margin-bottom: 8px;
}
.client p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-2);
}
.client strong { color: var(--ink); font-weight: 600; }

.role-compact { padding: 22px clamp(22px, 3vw, 30px); }
.earlier-list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.earlier-list li {
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.6;
  padding-left: 18px;
  position: relative;
}
.earlier-list li::before {
  content: "›";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand);
  font-weight: 700;
}
.earlier-list strong { color: var(--ink); font-weight: 600; }

/* ---------- Bento / Expertise ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}
.tile {
  grid-column: span 2;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  transition: transform 240ms var(--t), box-shadow 240ms var(--t),
    border-color 240ms var(--t);
}
.tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-2);
}
.tile-lg { grid-column: span 3; }
.tile-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.tile-icon {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 16px;
}
.tile h4 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.tile p {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.55;
  margin-bottom: 14px;
}
.chips { display: flex; flex-wrap: wrap; gap: 6px; }
.chips span {
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  background: var(--bg-tint);
  border: 1px solid var(--line);
  color: var(--ink-2);
  border-radius: 999px;
}

.industries { margin-top: 50px; text-align: center; }
.industry-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}
.industry-row span {
  font-size: 13px;
  font-weight: 500;
  padding: 7px 14px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink-2);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

/* ---------- Credentials ---------- */
.cred-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 24px;
}
.cred-col {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.cred-col h4 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-3);
  margin-bottom: 18px;
}
.cred-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.cred-list li {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 14px;
  padding: 14px;
  background: var(--bg-tint);
  border-radius: var(--radius-sm);
  align-items: center;
}
.cred-year {
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand);
  text-align: center;
  background: #fff;
  padding: 6px 8px;
  border-radius: 8px;
  border: 1px solid var(--line);
}
.cred-list strong {
  display: block;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.cred-list span:not(.cred-year) {
  display: block;
  font-size: 13px;
  color: var(--ink-3);
  margin-top: 2px;
}

/* ---------- Contact ---------- */
.section-contact { padding-top: 40px; }
.contact-card {
  background: linear-gradient(140deg, #0f172a 0%, #1e293b 50%, #312e81 100%);
  color: #fff;
  border-radius: 28px;
  padding: clamp(36px, 5vw, 64px);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 60px);
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.contact-card::before {
  content: "";
  position: absolute;
  width: 540px;
  height: 540px;
  right: -200px;
  top: -200px;
  background: radial-gradient(closest-side, rgba(6, 182, 212, 0.5), transparent);
  filter: blur(30px);
  pointer-events: none;
}
.contact-card::after {
  content: "";
  position: absolute;
  width: 440px;
  height: 440px;
  left: -160px;
  bottom: -180px;
  background: radial-gradient(closest-side, rgba(99, 102, 241, 0.4), transparent);
  filter: blur(20px);
  pointer-events: none;
}
.contact-card > * { position: relative; z-index: 1; }
.contact-card .section-kicker {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.contact-card h2 { color: #fff; font-size: clamp(28px, 3.5vw, 40px); }
.contact-lede {
  margin-top: 14px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.78);
  max-width: 460px;
  line-height: 1.6;
}
.contact-actions { display: grid; gap: 10px; }
.contact-link {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  color: #fff;
  transition: background 220ms var(--t), border-color 220ms var(--t),
    transform 220ms var(--t);
}
.contact-link:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-2px);
}
.contact-link-static { cursor: default; }
.contact-link-static:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  transform: none;
}
.contact-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.55);
}
.contact-value {
  font-family: "Space Grotesk";
  font-size: 15.5px;
  font-weight: 500;
  color: #fff;
}

/* ---------- Footer ---------- */
.footer {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 40px var(--pad) 60px;
  font-size: 13px;
  color: var(--ink-3);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-sep { color: var(--line-2); }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms var(--t), transform 700ms var(--t);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid,
  .about-grid,
  .cred-grid,
  .contact-card { grid-template-columns: 1fr; }
  .bento { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tile, .tile-lg { grid-column: span 1; }
  .nav-links { display: none; }
  .nav { padding-right: 8px; }
}

@media (max-width: 560px) {
  .hero-meta { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
  .meta-num { font-size: 20px; }
  .meta-label { font-size: 11.5px; }
  .about-pillars { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr; }
  .nav-cta { display: none; }
  .brand-name { display: none; }
  .role-featured::after { display: none; }
  .contact-link {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}

@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;
  }
}
