@charset "UTF-8";
:root {
  --bg: #0a0a0b;
  --bg-2: #111113;
  --bg-3: #18181b;
  --border: rgba(255,255,255,0.07);
  --border-hover: rgba(255,255,255,0.14);
  --text-primary: #f4f4f5;
  --text-secondary: #a1a1aa;
  --text-muted: #52525b;
  --accent: #e8ff3b;
  --accent-dim: rgba(232,255,59,0.10);
  --accent-dim2: rgba(232,255,59,0.06);
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --transition: 0.22s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--border-hover);
  border-radius: 2px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
}

.mono {
  font-family: var(--font-mono);
}

.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s ease;
  transform: translate(-50%, -50%);
}

.cursor-ring {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(232, 255, 59, 0.4);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.18s ease, width 0.2s, height 0.2s;
  transform: translate(-50%, -50%);
}

.navbar-custom {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
  background: transparent;
}
.navbar-custom.scrolled {
  background: rgba(10, 10, 11, 0.92);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.logo-mark {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}
.logo-icon::before {
  content: "";
  position: absolute;
  inset: 3px;
  border: 1.5px solid #000;
  border-radius: 3px;
}

.logo-icon-inner {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: #000;
  letter-spacing: -1px;
  position: relative;
  z-index: 1;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text-primary);
  letter-spacing: 0.01em;
}
.logo-text span {
  color: var(--accent);
}

.logo-svg-wrap {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

.logo-text-wrap {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--text-primary);
  letter-spacing: 0.01em;
  line-height: 1;
}
.logo-text-wrap small {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.52rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--text-primary);
}
.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #000;
  background: var(--accent);
  border: none;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 500;
  transition: all var(--transition);
}
.nav-cta:hover {
  background: #fff;
  color: #000;
}

.nav-hamburger {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--text-primary);
  padding: 0.4rem 0.6rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 1.1rem;
}

.mobile-nav-offcanvas {
  --bs-offcanvas-width: 300px;
  --bs-offcanvas-bg: var(--bg);
  --bs-offcanvas-color: var(--text-primary);
  --bs-offcanvas-border-color: var(--border);
}
.mobile-nav-offcanvas .offcanvas-header {
  border-bottom: 1px solid var(--border);
  padding: 1.5rem;
}
.mobile-nav-offcanvas .offcanvas-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--text-primary);
}
.mobile-nav-offcanvas .offcanvas-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}
.mobile-nav-links {
  margin: 0 0 2rem;
  padding: 0;
}
.mobile-nav-links li {
  border-bottom: 1px solid var(--border);
}
.mobile-nav-link {
  display: block;
  padding: 1rem 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--text-primary);
  text-decoration: none;
  transition: color var(--transition);
}
.mobile-nav-link:hover, .mobile-nav-link.active {
  color: var(--accent);
}

.mobile-nav-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

@media (max-width: 991px) {
  .nav-links, .nav-cta {
    display: none;
  }
  .nav-hamburger {
    display: block;
  }
}

section {
  padding: 7rem 0;
}

.section-label, .project-label, .post-label, .page-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.section-label::before, .project-label::before, .post-label::before, .page-label::before {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: var(--accent);
}

.section-heading {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.section-heading em {
  font-style: italic;
  color: var(--text-secondary);
}

.section-divider {
  width: 100%;
  height: 1px;
  background: var(--border);
}

.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.2rem;
  transition: all var(--transition);
}
.view-all-link i {
  transition: transform var(--transition);
}
.view-all-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}
.view-all-link:hover i {
  transform: translateX(4px);
}

.btn-primary-custom {
  background: var(--accent);
  color: #000;
  border: none;
  padding: 0.85rem 2rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition);
  font-family: var(--font-body);
}
.btn-primary-custom:hover {
  background: #fff;
  color: #000;
  transform: translateY(-1px);
}

.btn-ghost-custom {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  padding: 0.85rem 2rem;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition);
  font-family: var(--font-body);
}
.btn-ghost-custom:hover {
  border-color: var(--border-hover);
  color: var(--text-primary);
}

@keyframes pulse-dot {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.6);
  }
}
@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.avail-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 99px;
  padding: 0.3rem 0.85rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4ade80;
  margin-bottom: 1.5rem;
}

.avail-badge-dot {
  width: 6px;
  height: 6px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
          mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 255, 59, 0.06) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 7rem 2rem 0;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 2.5s ease infinite;
}

.hero-name {
  font-size: clamp(3.5rem, 9vw, 8rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.hero-name .line-2 {
  color: var(--text-secondary);
  font-style: italic;
}
.hero-name .accent-word {
  -webkit-text-stroke: 1.5px var(--text-primary);
  color: transparent;
}

.hero-tagline {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 3rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.25rem;
  line-height: 1;
  color: var(--text-primary);
}
.hero-stat-num span {
  color: var(--accent);
}

.hero-stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 0.35rem;
  font-family: var(--font-mono);
}

.marquee-strip {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 3rem;
  animation: marquee-scroll 30s linear infinite;
  width: -moz-max-content;
  width: max-content;
}

.marquee-item {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.marquee-item::after {
  content: "·";
  color: var(--accent);
  font-size: 1rem;
}

.about-section {
  background: var(--bg);
}

.about-photo-wrapper {
  position: relative;
  display: inline-block;
}

.about-photo {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3/4;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: var(--radius-lg);
  filter: grayscale(20%);
  display: block;
}

.about-photo-frame {
  position: absolute;
  inset: -12px;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius-lg) + 12px);
  pointer-events: none;
}

.about-photo-accent {
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 80px;
  height: 80px;
  background: var(--accent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.about-photo-accent-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: #000;
  line-height: 1;
}

.about-photo-accent-text {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #000;
  opacity: 0.7;
  line-height: 1.2;
}

.about-body p {
  color: var(--text-secondary);
  font-size: 1rem;
}

.skill-tag,
.skill-tags .skill-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 99px;
  color: var(--text-secondary);
  transition: all var(--transition);
}
.skill-tag:hover,
.skill-tags .skill-tag:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.services-section {
  background: var(--bg-2);
}

.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  display: block;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
}
.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-dim);
  border: 1px solid rgba(232, 255, 59, 0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.service-title, .service-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.service-desc, .service-card-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

.service-num, .service-card-num {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

.service-full-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.service-full-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.service-full-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}
.service-full-card:hover::after {
  opacity: 1;
}

.service-icon-wrap {
  width: 52px;
  height: 52px;
  background: var(--accent-dim);
  border: 1px solid rgba(232, 255, 59, 0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.service-card-desc {
  flex: 1;
}

.service-card-link {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.5rem;
  transition: color var(--transition);
}
.service-card-link i {
  transition: transform var(--transition);
}
.service-card-link:hover {
  color: var(--accent);
}
.service-card-link:hover i {
  transform: translateX(3px);
}

.service-feature-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}
.service-feature-list li {
  font-size: 0.88rem;
  color: var(--text-secondary);
  padding: 0.3rem 0 0.3rem 1.4rem;
  position: relative;
}
.service-feature-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.8rem;
}

.page-hero {
  padding: 10rem 0 5rem;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.page-hero-grid, .post-hero-grid, .project-hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
          mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
}

.breadcrumb-custom {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.breadcrumb-custom a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}
.breadcrumb-custom a:hover {
  color: var(--accent);
}

.service-icon-lg {
  width: 72px;
  height: 72px;
  background: var(--accent-dim);
  border: 1px solid rgba(232, 255, 59, 0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 2rem;
}

.content-section {
  padding: 5rem 0;
}
.content-section.alt {
  background: var(--bg-2);
}

.prose p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.prose h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 1rem;
  margin-top: 2.5rem;
}
.prose h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  margin-top: 2rem;
}

.prose > *:first-child {
  margin-top: 0;
}

.prose h1 {
  font-family: var(--font-display);
  font-size: 2.1rem;
  margin-bottom: 1.1rem;
  margin-top: 2.75rem;
  color: var(--text-primary);
}

.prose h2, .prose h3 {
  color: var(--text-primary);
}

.prose h4, .prose h5, .prose h6 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  margin-top: 1.75rem;
  color: var(--text-primary);
}

.prose a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.prose strong, .prose b {
  color: var(--text-primary);
  font-weight: 600;
}

.prose ul, .prose ol {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.prose li {
  margin-bottom: 0.5rem;
}

.prose li > ul, .prose li > ol {
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.prose blockquote {
  border-left: 3px solid var(--accent);
  padding: 0.25rem 0 0.25rem 1.25rem;
  margin: 1.5rem 0;
  color: var(--text-secondary);
  font-style: italic;
}

.prose img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  margin: 1.5rem 0;
}

.prose hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2.5rem 0;
}

.prose code {
  font-family: var(--font-mono);
  font-size: 0.85em;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.15em 0.4em;
  color: var(--accent);
}

.prose pre {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  overflow-x: auto;
  margin-bottom: 1.25rem;
}

.prose pre code {
  background: none;
  border: none;
  padding: 0;
  color: var(--text-secondary);
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.prose th, .prose td {
  border: 1px solid var(--border);
  padding: 0.6rem 0.9rem;
  text-align: left;
}

.prose th {
  background: var(--bg-3);
  color: var(--text-primary);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.process-step {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  margin-bottom: 1rem;
}
.process-step:hover {
  border-color: var(--border-hover);
  transform: translateX(4px);
}

.process-num, .process-num-h {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(232, 255, 59, 0.2);
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.process-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.process-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0;
}

.process-step-h {
  text-align: center;
  padding: 1.5rem;
  position: relative;
}
.process-step-h::after {
  content: "→";
  position: absolute;
  right: -1.5rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1rem;
}
.process-step-h:last-child::after {
  display: none;
}
.process-step-h h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 0.4rem;
}
.process-step-h p {
  color: var(--text-secondary);
  font-size: 0.82rem;
  line-height: 1.65;
  margin: 0;
}

.process-num-h {
  margin: 0 auto 1rem;
}

.tech-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.tech-pill {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  padding: 0.4rem 1rem;
  border: 1px solid var(--border);
  border-radius: 99px;
  color: var(--text-secondary);
  transition: all var(--transition);
}
.tech-pill:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.include-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
}
.include-item:last-child {
  border-bottom: none;
}

.include-icon {
  color: var(--accent);
  font-size: 0.9rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.include-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.sidebar-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: sticky;
  top: 7rem;
}

.sidebar-sticky {
  position: sticky;
  top: 7rem;
}

.sidebar-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
  display: block;
}

.sidebar-price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.sidebar-price-note {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

.sidebar-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 1.5rem 0;
}

.cta-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.cta-card h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 1rem;
}
.cta-card p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.cta-band {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.cta-band p {
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto 2rem;
}

.related-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: all var(--transition);
  height: 100%;
}
.related-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  color: inherit;
}

.related-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-dim);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.related-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.related-desc {
  color: var(--text-secondary);
  font-size: 0.82rem;
  line-height: 1.6;
  margin: 0;
}

.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.stat-cell {
  flex: 1;
  min-width: 160px;
  padding: 2rem;
  border-right: 1px solid var(--border);
  text-align: center;
}
.stat-cell:last-child {
  border-right: none;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.25rem;
  color: var(--text-primary);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.4rem;
}

.projects-section {
  background: var(--bg);
}

.project-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.project-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}
.project-card.featured {
  border-color: rgba(232, 255, 59, 0.2);
}

.project-img {
  aspect-ratio: 16/9;
  background: var(--bg-3);
  overflow: hidden;
  position: relative;
}
.project-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
  filter: grayscale(30%);
}

.project-card:hover .project-img img {
  transform: scale(1.04);
  filter: grayscale(0%);
}

.project-img-placeholder {
  width: 100%;
  height: 100%;
  background: var(--bg-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--text-muted);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 11, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  opacity: 0;
  transition: opacity var(--transition);
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-overlay-btn {
  background: var(--accent);
  color: #000;
  border: none;
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  font-family: var(--font-body);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: background var(--transition);
}
.project-overlay-btn:hover {
  background: #fff;
}
.project-overlay-btn.ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.project-overlay-btn.ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.project-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.85rem;
}

.project-tag, .post-tag {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 99px;
  background: var(--accent-dim2);
  color: var(--accent);
  border: 1px solid rgba(232, 255, 59, 0.12);
}

.project-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.project-desc {
  color: var(--text-secondary);
  font-size: 0.87rem;
  line-height: 1.65;
  flex: 1;
}

.project-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.project-link {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: color var(--transition);
}
.project-link:hover {
  color: var(--accent);
}

.featured-badge {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #000;
  background: var(--accent);
  padding: 0.2rem 0.6rem;
  border-radius: 99px;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.project-hero {
  padding: 9rem 0 4rem;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.project-hero-title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.project-cover {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: 2rem;
}
.project-cover img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 16/6;
  filter: grayscale(10%);
}

.meta-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: sticky;
  top: 7rem;
}

.meta-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
  display: block;
}

.meta-value {
  font-size: 0.9rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.meta-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 1rem 0;
}

.meta-link {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color var(--transition);
}
.meta-link:hover {
  color: var(--accent);
}

.feature-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-bottom: 0.75rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: all var(--transition);
}
.feature-card:hover {
  border-color: var(--border-hover);
}

.feature-icon {
  width: 36px;
  height: 36px;
  background: var(--accent-dim);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
}

.feature-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.feature-desc {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0;
}

.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}
.gallery img {
  width: 100%;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all var(--transition);
  filter: grayscale(20%);
}
.gallery img:hover {
  filter: grayscale(0%);
  border-color: var(--border-hover);
}

.next-project-card {
  display: block;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-decoration: none;
  color: inherit;
  transition: all var(--transition);
}
.next-project-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  color: inherit;
}

.next-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.next-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0;
}

.next-arrow {
  font-size: 1.1rem;
  color: var(--accent);
}

.filter-bar {
  padding: 1.5rem 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 72px;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(10, 10, 11, 0.9);
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 0.5rem;
  align-items: center;
}

.filter-btn {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 99px;
  background: var(--bg-2);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}
.filter-btn:hover {
  border-color: var(--border-hover);
  color: var(--text-primary);
  background: var(--bg-3);
}
.filter-btn.active {
  border-color: var(--accent);
  color: #000;
  background: var(--accent);
  font-weight: 500;
}

.blog-section {
  background: var(--bg-2);
}

.blog-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.blog-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  color: inherit;
}

.blog-thumb {
  aspect-ratio: 16/9;
  background: var(--bg-3);
  overflow: hidden;
}
.blog-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
  filter: grayscale(40%);
}

.blog-card:hover .blog-thumb img {
  transform: scale(1.04);
  filter: grayscale(0%);
}

.blog-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--text-muted);
}

.blog-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.blog-cat {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.blog-date {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.blog-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.blog-excerpt {
  color: var(--text-secondary);
  font-size: 0.87rem;
  line-height: 1.65;
  flex: 1;
}

.blog-read-more {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}
.blog-read-more i {
  transition: transform var(--transition);
}

.blog-card:hover .blog-read-more {
  color: var(--accent);
}

.blog-card:hover .blog-read-more i {
  transform: translateX(3px);
}

.tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 99px;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  text-decoration: none;
  transition: all var(--transition);
  display: inline-block;
}
.tag:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.tag.tag-muted {
  background: var(--bg-3);
}

.read-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: var(--accent);
  z-index: 2000;
  transition: width 0.1s linear;
  width: 0%;
}

.post-hero {
  padding: 9rem 0 4rem;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.post-hero-grid {
  pointer-events: none;
}

.post-title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.post-meta-bar {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.post-meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.post-meta-item i {
  color: var(--accent);
  font-size: 0.85rem;
}

.post-cover {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: 2rem;
}
.post-cover img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 16/6;
  filter: grayscale(10%);
}

.article-wrap {
  padding: 4rem 0 6rem;
}

.toc-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.toc-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.toc-label i {
  color: var(--accent);
}

.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.toc-list li {
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--border);
}
.toc-list li:last-child {
  border-bottom: none;
}
.toc-list a {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.toc-list a::before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--text-muted);
  flex-shrink: 0;
}
.toc-list a:hover {
  color: var(--accent);
}
.toc-list a:hover::before {
  background: var(--accent);
}
.toc-list.sub {
  padding-left: 1rem;
}

.article-prose {
  max-width: 100%;
}
.article-prose p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 1.4rem;
}
.article-prose h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin: 3rem 0 1rem;
  padding-top: 1rem;
  color: var(--text-primary);
  line-height: 1.2;
}
.article-prose h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 2rem 0 0.75rem;
  color: var(--text-primary);
}
.article-prose h4 {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 1.5rem 0 0.75rem;
}
.article-prose ul, .article-prose ol {
  padding-left: 0;
  list-style: none;
  margin-bottom: 1.4rem;
}
.article-prose ul li {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  padding: 0.3rem 0 0.3rem 1.4rem;
  position: relative;
}
.article-prose ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.85rem;
}
.article-prose ol {
  counter-reset: ol-counter;
}
.article-prose ol li {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  padding: 0.3rem 0 0.3rem 2rem;
  position: relative;
  counter-increment: ol-counter;
}
.article-prose ol li::before {
  content: counter(ol-counter, decimal-leading-zero);
  position: absolute;
  left: 0;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--accent);
  top: 0.55rem;
}
.article-prose pre {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  overflow-x: auto;
  margin: 1.5rem 0;
}
.article-prose pre code {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: #a8ff78;
  line-height: 1.7;
  white-space: pre;
}
.article-prose code:not(pre code) {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--accent);
  background: var(--accent-dim2);
  border: 1px solid rgba(232, 255, 59, 0.12);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
}
.article-prose blockquote {
  border-left: 2px solid var(--accent);
  padding: 0.75rem 1.5rem;
  margin: 1.5rem 0;
  background: var(--accent-dim2);
}
.article-prose blockquote p {
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  margin: 0;
}
.article-prose img {
  width: 100%;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  margin: 1.5rem 0;
  display: block;
}
.article-prose figure {
  margin: 1.5rem 0;
}
.article-prose figcaption {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.5rem;
}
.article-prose hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 3rem 0;
}
.article-prose strong {
  color: var(--text-primary);
  font-weight: 500;
}
.article-prose a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.article-prose a:hover {
  color: #fff;
}
.article-prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.9rem;
}
.article-prose th, .article-prose td {
  border: 1px solid var(--border);
  padding: 0.6rem 0.9rem;
  text-align: left;
}
.article-prose th {
  background: var(--bg-3);
  color: var(--text-primary);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.callout {
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.callout i {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.callout p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.callout-info {
  background: rgba(55, 138, 221, 0.08);
  border: 1px solid rgba(55, 138, 221, 0.2);
}
.callout-info i {
  color: #378add;
}

.callout-warn {
  background: rgba(232, 255, 59, 0.06);
  border: 1px solid rgba(232, 255, 59, 0.2);
}
.callout-warn i {
  color: var(--accent);
}

.callout-danger {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
}
.callout-danger i {
  color: #ef4444;
}

.author-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-top: 3rem;
}

.author-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 2px solid var(--border);
  flex-shrink: 0;
}

.author-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.author-role {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.author-bio {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

.author-socials {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.author-social-link {
  width: 34px;
  height: 34px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all var(--transition);
}
.author-social-link:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.share-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
  background: var(--bg-3);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all var(--transition);
  margin-bottom: 0.5rem;
  cursor: pointer;
}
.share-btn i {
  font-size: 0.95rem;
  color: var(--accent);
}
.share-btn:hover {
  border-color: var(--border-hover);
  color: var(--text-primary);
}

.post-nav-card {
  display: block;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-decoration: none;
  color: inherit;
  transition: all var(--transition);
}
.post-nav-card:hover {
  border-color: var(--border-hover);
  color: inherit;
}

.post-nav-dir {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.post-nav-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.3;
  margin: 0;
}

.related-card .related-thumb {
  aspect-ratio: 16/9;
  background: var(--bg-3);
  overflow: hidden;
}
.related-card .related-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(30%);
  transition: all var(--transition);
}
.related-card .related-card:hover .related-thumb img {
  filter: grayscale(0%);
  transform: scale(1.04);
}
.related-card .related-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--text-muted);
}
.related-card .related-body {
  padding: 1.25rem;
}
.related-card .related-cat {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.related-card .testimonials-section {
  background: var(--bg-2);
}
.related-card .testimonial-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.related-card .testimonial-card::before {
  content: "“";
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--accent-dim);
  position: absolute;
  top: 0.5rem;
  right: 1.5rem;
  pointer-events: none;
}
.related-card .testimonial-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
}
.related-card .testimonial-stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1.25rem;
}
.related-card .testimonial-stars i {
  color: var(--accent);
  font-size: 0.85rem;
}
.related-card .testimonial-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.75;
  font-style: italic;
  flex: 1;
  margin-bottom: 1.5rem;
}
.related-card .testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.related-card .testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid var(--border);
  flex-shrink: 0;
  background: var(--bg-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent);
}
.related-card .testimonial-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin-bottom: 0.1rem;
}
.related-card .testimonial-role {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.related-card .testimonial-platform {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.6;
  flex-shrink: 0;
}
.related-card {
  /* ── CONTACT ── */
}
.related-card .faq-item {
  border-bottom: 1px solid var(--border);
}
.related-card .faq-item:last-child {
  border-bottom: none;
}
.related-card .faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--text-primary);
  transition: color var(--transition);
}
.related-card .faq-question:hover {
  color: var(--accent);
}
.related-card .faq-icon {
  color: var(--accent);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.related-card .faq-answer {
  padding: 0 0 1.25rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.75;
  display: none;
}
@media (max-width: 991px) {
  .related-card .nav-links, .related-card .nav-cta {
    display: none;
  }
  .related-card .nav-hamburger {
    display: block;
  }
  .related-card .hero-stats {
    gap: 2rem;
  }
}
@media (max-width: 767px) {
  .related-card section {
    padding: 5rem 0;
  }
  .related-card .hero-name {
    font-size: clamp(2.5rem, 12vw, 5rem);
  }
  .related-card .contact-card {
    padding: 1.75rem;
  }
  .related-card .hero-content {
    padding-top: 5rem;
  }
  .related-card .sidebar-card, .related-card .meta-card {
    position: static;
    margin-top: 2rem;
  }
  .related-card .gallery {
    grid-template-columns: 1fr;
  }
  .related-card .cta-band {
    padding: 2.5rem 1.5rem;
  }
  .related-card .stat-cell {
    min-width: 140px;
  }
  .related-card .sidebar-sticky {
    position: static;
  }
  .related-card .post-hero {
    padding: 7rem 0 3rem;
  }
  .related-card .page-hero {
    padding: 8rem 0 3rem;
  }
}
@media (max-width: 576px) {
  .related-card .cta-band {
    padding: 2.5rem 1.5rem;
  }
}

/* ── TESTIMONIALS ── */
.testimonials-section {
  background: var(--bg-2);
}

.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: "“";
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--accent-dim);
  position: absolute;
  top: 0.5rem;
  right: 1.5rem;
  pointer-events: none;
}

.testimonial-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
}

.testimonial-stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1.25rem;
}

.testimonial-stars i {
  color: var(--accent);
  font-size: 0.85rem;
}

.testimonial-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.75;
  font-style: italic;
  flex: 1;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid var(--border);
  flex-shrink: 0;
  background: var(--bg-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent);
}

.testimonial-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin-bottom: 0.1rem;
}

.testimonial-role {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.testimonial-platform {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.6;
  flex-shrink: 0;
}

/* ── CONTACT ── */
.contact-section {
  background: var(--bg);
}

.contact-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}

.contact-info-item:last-child {
  border-bottom: none;
}

.contact-info-icon {
  width: 38px;
  height: 38px;
  background: var(--accent-dim);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-info-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.contact-info-val {
  font-size: 0.9rem;
  color: var(--text-primary);
}

.form-label-custom {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  display: block;
}

.form-control-custom {
  width: 100%;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  color: var(--text-primary);
  font-family: var(--font-body);
  transition: border-color var(--transition);
  outline: none;
  resize: none;
}

.form-control-custom::-moz-placeholder {
  color: var(--text-muted);
}

.form-control-custom::placeholder {
  color: var(--text-muted);
}

.form-control-custom:focus {
  border-color: var(--accent);
}

.social-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.social-link {
  width: 42px;
  height: 42px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1rem;
  transition: all var(--transition);
}

.social-link:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}

/* ── FOOTER ── */
footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
}

/* ── ABOUT PAGE TIMELINE ── */

.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  padding-bottom: 2.5rem;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -2rem;
  top: 6px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--accent);
}

.timeline-period {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.timeline-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0.35rem 0 0.15rem;
  color: var(--text-primary);
}

.timeline-org {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
}

.timeline-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-top: 0.5rem;
}

.faq-accordion .accordion-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
}
.faq-accordion .accordion-item:last-child {
  border-bottom: none;
}
.faq-accordion .accordion-button {
  padding: 1.25rem 0;
  background: transparent;
  border: none;
  box-shadow: none;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--text-primary);
  transition: color var(--transition);
}
.faq-accordion .accordion-button:hover {
  color: var(--accent);
}
.faq-accordion .accordion-button:not(.collapsed) {
  background: transparent;
  color: var(--accent);
  box-shadow: none;
}
.faq-accordion .accordion-button:focus {
  box-shadow: none;
}
.faq-accordion .accordion-button::after {
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23a1a1aa' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
}
.faq-accordion .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23e8ff3b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
}
.faq-accordion .accordion-body {
  padding: 0 0 1.25rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.75;
}

.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: "\201C";
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--accent-dim);
  position: absolute;
  top: 0.5rem;
  right: 1.5rem;
  pointer-events: none;
}
.testimonial-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
}
.testimonial-stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1.25rem;
}
.testimonial-stars i {
  color: var(--accent);
  font-size: 0.85rem;
}
.testimonial-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.75;
  font-style: italic;
  flex: 1;
  margin-bottom: 1.5rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border);
  flex-shrink: 0;
  background: var(--bg-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent);
}
.testimonial-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin-bottom: 0.1rem;
}
.testimonial-role {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.testimonial-platform {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.6;
  flex-shrink: 0;
}

.testimonial-marquee {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}
.testimonial-marquee-rows {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.testimonial-row {
  display: flex;
  gap: 1.5rem;
  overflow-x: hidden;
  overflow-anchor: none;
}
.testimonial-slide {
  flex: 0 0 340px;
}
.marquee-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-2);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  z-index: 2;
}
.marquee-arrow:hover {
  border-color: var(--accent);
  color: var(--accent);
}
@media (max-width: 767px) {
  .testimonial-slide {
    flex-basis: 280px;
  }
  .testimonial-marquee {
    padding: 0 0.5rem;
    gap: 0.5rem;
  }
  .marquee-arrow {
    width: 36px;
    height: 36px;
  }
}
/*# sourceMappingURL=theme.css.map */