/* ============================================
   Section-specific styles
   ============================================ */

/* About */
.about {
  background: linear-gradient(180deg, transparent, oklch(from var(--bg-1) l c h / 0.5) 50%, transparent);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: start;
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
}
.about-photo {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.about-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 50%, oklch(from var(--accent-1) l c h / 0.15));
  mix-blend-mode: overlay;
}
.about-decor {
  position: absolute;
  inset: -20px;
  border-radius: var(--radius-xl);
  background: var(--grad-accent);
  filter: blur(40px);
  opacity: 0.25;
  z-index: -1;
}
.about-content p {
  font-size: 17px;
  color: var(--fg-muted);
  margin-bottom: 18px;
}
.about-content p strong { color: var(--fg); font-weight: 500; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 36px;
}
@media (max-width: 560px) { .values-grid { grid-template-columns: 1fr; } }
.value-card {
  padding: 18px 20px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
}
.value-card .k {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent-1);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.value-card .k::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-1);
  box-shadow: 0 0 8px var(--accent-1);
}
.value-card p {
  font-size: 14.5px;
  color: var(--fg);
  margin: 0;
  line-height: 1.5;
}

/* Experience (timeline) */
.timeline {
  position: relative;
  padding-left: 44px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 12px;
  bottom: 12px;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--border-strong) 10%, var(--border-strong) 90%, transparent);
}
.tl-item {
  position: relative;
  padding-bottom: 44px;
}
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: '';
  position: absolute;
  left: -38px;
  top: 10px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--bg-0);
  border: 2px solid var(--accent-1);
  box-shadow: 0 0 0 4px oklch(from var(--accent-1) l c h / 0.15);
}
.tl-item.current::before {
  background: var(--accent-1);
  animation: pulse 2s infinite;
}
.tl-card {
  padding: 28px 32px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  transition: all 0.3s var(--ease);
}
.tl-card:hover {
  border-color: var(--border-strong);
  transform: translateX(4px);
}
.tl-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--fg-muted);
  margin-bottom: 12px;
}
.tl-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--fg-dim); }
.tl-meta .tag {
  padding: 3px 9px;
  border-radius: 999px;
  background: oklch(from var(--accent-1) l c h / 0.15);
  color: var(--accent-1);
  border: 1px solid oklch(from var(--accent-1) l c h / 0.3);
  font-size: 10.5px;
  letter-spacing: 0.04em;
}
.tl-card h3 {
  font-size: 22px;
  margin-bottom: 4px;
}
.tl-card .company {
  font-size: 14.5px;
  color: var(--fg-muted);
  margin-bottom: 14px;
}
.tl-card .company span { color: var(--accent-1); }
.tl-card ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tl-card ul li {
  position: relative;
  padding-left: 20px;
  font-size: 14.5px;
  color: var(--fg-muted);
  line-height: 1.6;
}
.tl-card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-1);
  font-family: var(--font-mono);
}

/* Education + Certifications */
.edu-cert-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 56px;
}
@media (max-width: 900px) { .edu-cert-grid { grid-template-columns: 1fr; gap: 56px; } }
.edu-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}
.edu-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 180px; height: 180px;
  background: radial-gradient(circle at top right, var(--glow-2), transparent 60%);
  pointer-events: none;
}
.edu-year {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent-1);
  letter-spacing: 0.08em;
}
.edu-card h3 {
  font-size: 26px;
  margin: 10px 0 8px;
}
.edu-school {
  font-size: 15px;
  color: var(--fg-muted);
  margin-bottom: 20px;
}
.edu-extras {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.edu-extras div { display: flex; justify-content: space-between; font-size: 13.5px; }
.edu-extras div span:first-child { color: var(--fg-dim); font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.06em; text-transform: uppercase; }
.edu-extras div span:last-child { color: var(--fg); }

.cert-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (max-width: 600px) { .cert-grid { grid-template-columns: 1fr; } }
.cert-card {
  padding: 20px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.25s var(--ease);
  position: relative;
  overflow: hidden;
}
.cert-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
}
.cert-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--grad-accent);
  display: grid; place-items: center;
  box-shadow: 0 8px 20px -8px var(--glow-1);
  color: white;
}
.cert-icon svg { width: 20px; height: 20px; }
.cert-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15.5px;
  line-height: 1.3;
  color: var(--fg);
}
.cert-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-muted);
}
.cert-meta .issuer { color: var(--fg); }

/* Skills */
.skills-groups {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 800px) { .skills-groups { grid-template-columns: 1fr; } }
.skill-group {
  padding: 28px 30px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s var(--ease);
}
.skill-group:hover { border-color: var(--border-strong); }
.skill-group::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, var(--glow-2), transparent 70%);
  pointer-events: none;
}
.skill-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
}
.skill-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: oklch(from var(--accent-1) l c h / 0.15);
  border: 1px solid oklch(from var(--accent-1) l c h / 0.3);
  display: grid; place-items: center;
  color: var(--accent-1);
}
.skill-icon svg { width: 18px; height: 18px; }
.skill-group h3 {
  font-size: 19px;
  font-weight: 600;
}
.skill-group .sub {
  color: var(--fg-muted);
  font-size: 13.5px;
  margin: 2px 0 20px;
}
.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag {
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 12.5px;
  background: oklch(from var(--bg-2) l c h / 0.7);
  border: 1px solid var(--border);
  color: var(--fg);
  font-family: var(--font-mono);
  transition: all 0.2s var(--ease);
  cursor: default;
}
.tag:hover {
  border-color: var(--accent-1);
  color: var(--accent-1);
  transform: translateY(-1px);
}
.tag.primary {
  background: oklch(from var(--accent-1) l c h / 0.12);
  border-color: oklch(from var(--accent-1) l c h / 0.35);
  color: var(--accent-1);
}

/* Projects */
.projects-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.projects-filters {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  padding: 6px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
}
.filter-btn {
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--fg-muted);
  transition: all 0.2s var(--ease);
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}
.filter-btn:hover { color: var(--fg); }
.filter-btn.active {
  background: var(--grad-accent);
  color: white;
  box-shadow: 0 4px 14px -4px var(--glow-1);
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 1000px) { .projects-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .projects-grid { grid-template-columns: 1fr; } }

.project-card {
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s var(--ease);
  position: relative;
}
.project-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}
.project-visual {
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden;
  background: var(--bg-2);
  display: grid; place-items: center;
}
.project-visual svg.placeholder-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
}
.project-visual .project-vis-label {
  position: relative;
  z-index: 1;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg);
  padding: 6px 12px;
  background: oklch(from var(--bg-0) l c h / 0.7);
  border: 1px solid var(--border);
  border-radius: 999px;
  backdrop-filter: blur(10px);
}
.project-visual .project-vis-glow {
  position: absolute;
  width: 70%; height: 70%;
  background: var(--grad-accent);
  filter: blur(40px);
  opacity: 0.35;
  border-radius: 50%;
}
.project-body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.project-cat {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  color: var(--accent-1);
  text-transform: uppercase;
}
.project-card h3 {
  font-size: 19px;
  line-height: 1.25;
}
.project-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.55;
}
.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.project-tech .tag { font-size: 11px; padding: 4px 10px; }
.project-links {
  display: flex;
  gap: 14px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.project-links a {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s var(--ease);
}
.project-links a:hover { color: var(--accent-1); }
.project-links svg { width: 13px; height: 13px; }

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 18px;
}
@media (max-width: 1000px) { .blog-grid { grid-template-columns: 1fr 1fr; } .blog-card.feature { grid-column: 1 / -1; } }
@media (max-width: 640px) { .blog-grid { grid-template-columns: 1fr; } .blog-card.feature { grid-column: auto; } }

.blog-card {
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s var(--ease);
  cursor: pointer;
}
.blog-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
}
.blog-visual {
  aspect-ratio: 16/9;
  position: relative;
  background: var(--bg-2);
  overflow: hidden;
  display: grid; place-items: center;
}
.blog-card.feature .blog-visual { aspect-ratio: 16/10; }
.blog-visual svg {
  position: absolute;
  inset: 0; width: 100%; height: 100%;
}
.blog-visual-tag {
  position: absolute;
  top: 14px; left: 14px;
  padding: 5px 11px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: oklch(from var(--bg-0) l c h / 0.8);
  border: 1px solid var(--border);
  color: var(--fg);
  backdrop-filter: blur(10px);
  z-index: 1;
}
.blog-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.blog-card.feature .blog-body { padding: 28px; gap: 14px; }
.blog-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-dim);
}
.blog-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--fg-dim); }
.blog-card h3 {
  font-size: 17px;
  line-height: 1.3;
}
.blog-card.feature h3 { font-size: 26px; }
.blog-excerpt {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card.feature .blog-excerpt { -webkit-line-clamp: 3; font-size: 15.5px; }
.blog-read {
  margin-top: auto;
  padding-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent-1);
  transition: gap 0.2s var(--ease);
}
.blog-card:hover .blog-read { gap: 10px; }

/* Contact */
.contact {
  position: relative;
}
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) { .contact-wrap { grid-template-columns: 1fr; gap: 48px; } }
.contact-info h2 { font-size: clamp(32px, 4vw, 48px); margin-bottom: 18px; }
.contact-info p { color: var(--fg-muted); font-size: 17px; margin-bottom: 36px; max-width: 440px; }
.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-channel {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  transition: all 0.25s var(--ease);
}
.contact-channel:hover {
  border-color: var(--border-strong);
  transform: translateX(4px);
}
.contact-channel-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: oklch(from var(--accent-1) l c h / 0.15);
  border: 1px solid oklch(from var(--accent-1) l c h / 0.3);
  display: grid; place-items: center;
  color: var(--accent-1);
  flex-shrink: 0;
}
.contact-channel-icon svg { width: 18px; height: 18px; }
.contact-channel .label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.contact-channel .val {
  font-size: 14.5px;
  color: var(--fg);
  margin-top: 2px;
}

.contact-form {
  padding: 36px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: hidden;
}
.contact-form::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, var(--glow-1), transparent 70%);
  pointer-events: none;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 7px; position: relative; z-index: 1; }
.field label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.field input, .field textarea {
  background: oklch(from var(--bg-0) l c h / 0.5);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 14.5px;
  color: var(--fg);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
  resize: none;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent-1);
  background: oklch(from var(--bg-0) l c h / 0.8);
  box-shadow: 0 0 0 4px oklch(from var(--accent-1) l c h / 0.15);
}
.field textarea { min-height: 140px; }
.form-submit {
  margin-top: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.form-note {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-dim);
}
.form-success {
  padding: 14px 18px;
  border-radius: 10px;
  background: oklch(0.4 0.15 150 / 0.2);
  border: 1px solid oklch(0.6 0.2 150 / 0.4);
  color: oklch(0.85 0.15 150);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: slideIn 0.4s var(--ease);
}
@keyframes slideIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: none; }
}

/* Footer */
.footer {
  padding: 60px 0 40px;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
  background: oklch(from var(--bg-0) l c h / 0.6);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 48px;
  flex-wrap: wrap;
}
.footer-brand { max-width: 340px; }
.footer-brand .logo { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-family: var(--font-display); font-weight: 600; }
.footer-brand p { font-size: 13.5px; color: var(--fg-muted); line-height: 1.6; }
.footer-cols { display: flex; gap: 56px; flex-wrap: wrap; }
.footer-col h4 { font-family: var(--font-mono); font-size: 11px; color: var(--fg-dim); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 14px; font-weight: 500; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col a { font-size: 13.5px; color: var(--fg-muted); transition: color 0.2s var(--ease); }
.footer-col a:hover { color: var(--fg); }
.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--fg-dim);
}
.social-row { display: flex; gap: 10px; }
.social-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  display: grid; place-items: center;
  color: var(--fg-muted);
  transition: all 0.2s var(--ease);
}
.social-icon:hover {
  color: var(--accent-1);
  border-color: var(--accent-1);
  transform: translateY(-2px);
}
.social-icon svg { width: 15px; height: 15px; }

/* Tweaks panel */
.tweaks {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 300px;
  background: oklch(from var(--bg-0) l c h / 0.92);
  backdrop-filter: blur(24px) saturate(1.4);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px -20px oklch(0 0 0 / 0.6);
  padding: 18px;
  z-index: 200;
  display: none;
  font-family: var(--font-body);
  animation: slideIn 0.3s var(--ease);
}
.tweaks.open { display: block; }
.tweaks h4 {
  font-family: var(--font-display);
  font-size: 14px;
  margin-bottom: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tweaks h4 .close { font-family: var(--font-mono); font-size: 14px; color: var(--fg-muted); cursor: pointer; }
.tweaks .sub { font-family: var(--font-mono); font-size: 10.5px; color: var(--fg-dim); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 14px; }
.tweak-group { margin-bottom: 14px; }
.tweak-group label { font-family: var(--font-mono); font-size: 10.5px; color: var(--fg-muted); letter-spacing: 0.08em; text-transform: uppercase; display: block; margin-bottom: 8px; }
.tweak-swatches { display: flex; gap: 8px; }
.tweak-swatch {
  flex: 1;
  height: 36px;
  border-radius: 10px;
  border: 1px solid var(--border);
  cursor: pointer;
  position: relative;
  transition: all 0.2s var(--ease);
  overflow: hidden;
}
.tweak-swatch:hover { transform: translateY(-1px); border-color: var(--border-strong); }
.tweak-swatch.active { border-color: var(--fg); box-shadow: 0 0 0 2px oklch(from var(--fg) l c h / 0.2); }
.tweak-swatch .sw-label {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--font-mono);
  font-size: 9.5px;
  color: white;
  text-shadow: 0 1px 2px oklch(0 0 0 / 0.6);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.tweak-options { display: flex; gap: 6px; flex-wrap: wrap; }
.tweak-opt {
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 11.5px;
  font-family: var(--font-mono);
  color: var(--fg-muted);
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.tweak-opt:hover { color: var(--fg); }
.tweak-opt.active { background: oklch(from var(--accent-1) l c h / 0.2); border-color: oklch(from var(--accent-1) l c h / 0.5); color: var(--fg); }
