:root {
  --accent: #059669;
  --bg: #ffffff;
  --dark: #252525;
  --text: #0a0a0a;
  --muted: #4b5563;
  --muted-2: #6b7280;
  --line: #e7e7e7;
  --line-soft: #f0f0f0;
  --panel: #fafafa;
  --panel-2: #f6f7f7;
  --radius: 18px;
  --radius-pill: 999px;
  --container: 1440px;
  --shadow-soft: 0 20px 60px rgba(10, 10, 10, 0.06);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  position: relative;
  width: 100%;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

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

button {
  font: inherit;
}

.display {
  font-family: "Inter Tight", sans-serif;
  letter-spacing: -0.035em;
  font-weight: 600;
}

.mono {
  font-family: "JetBrains Mono", monospace;
}

.container {
  width: min(100% - 48px, var(--container));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 112px 0;
}

.section-sm {
  padding: 52px 0;
}

.section-intro {
  margin-bottom: 56px;
}

.section-intro.center {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-title,
.pricing-title {
  font-size: clamp(42px, 6vw, 80px);
  line-height: 0.98;
  margin: 12px 0 0;
}

.section-copy,
.pricing-desc,
.faq-note,
.faq-answer,
.project-overlay p {
  color: var(--muted);
  line-height: 1.6;
}

.section-copy {
  font-size: 17px;
  max-width: 760px;
  margin: 16px auto 0;
}

.kicker,
.section-label-sm {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.kicker::before,
.section-label-sm::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 600;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease, color 0.22s ease, opacity 0.22s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}

.btn-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.btn-ghost {
  background: #fff;
  color: var(--text);
  border-color: var(--line);
}

.btn-ghost:hover {
  background: var(--panel);
}

.btn-small {
  min-height: 42px;
  padding-inline: 16px;
}


.nav {
  position: sticky;
  top: 0;
  z-index: 100;

  /* Glass base */
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);

  /* Subtle depth */
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);

  /* Soft shadow (very important for Apple feel) */
  border-bottom: 1px solid var(--line-soft);

  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

.nav::before {
  content: "";
  position: absolute;
  inset: 0;

  /* Light diffusion */
  background: linear-gradient(to bottom,
      rgba(255, 255, 255, 0.7),
      rgba(255, 255, 255, 0.2));

  pointer-events: none;
  z-index: -1;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 64px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark-wrap {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #0f0f0f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-logo {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.brand-name {
  font-weight: 700;
  font-size: 14px;
}

.brand-role {
  color: var(--muted-2);
  font-size: 11px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a:not(.btn) {
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  transition: background 0.22s ease;
}

.nav-links a:not(.btn):hover {
  background: var(--panel);
}

.mobile-menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.hero {
  padding: 88px 0 72px;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(10, 10, 10, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(10, 10, 10, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent 78%);
  pointer-events: none;
}

.backlight {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.26;
}

.backlight-hero {
  width: 520px;
  height: 520px;
  right: -120px;
  top: -120px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.3) 0%, rgba(5, 150, 105, 0.08) 45%, transparent 72%);
}

.backlight-footer {
  width: 460px;
  height: 460px;
  left: -120px;
  bottom: -120px;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.22) 0%, rgba(5, 150, 105, 0.06) 45%, transparent 72%);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.75);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-soft);
  font-size: 13px;
  font-weight: 500;
}

.img-round {
  border-radius: 50%;
}

.availability {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted-2);
  font-size: 11px;
}

.availability-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  animation: blink 2s infinite;
}

.hero-title {
  font-size: clamp(58px, 6vw, 136px);
  line-height: 1;
  margin: 0;
  max-width: 1200px;
}

.hero-accent {
  color: var(--accent);
}

.hero-description {
  max-width: 760px;
  margin: 28px 0 0;
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 72px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat {
  padding: 26px 22px;
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: 0;
}

.stat-value {
  font-size: 42px;
  line-height: 1;
  text-align: center;
}

.stat-label {
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted-2);
  text-align: center;
}

.hero-slider {
  overflow: hidden;
}

.slider-track {
  display: flex;
  width: max-content;
  animation: marquee 240s linear infinite;
}

.star {
  font-size: 20px;
}

.slide {
  height: 390px;
  overflow: hidden;
  background: #fff;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  flex-shrink: 0;
}

.slide img,
.service-visual img,
.project-card>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-strip .container {
  text-align: center;
}

.text-center {
  text-align: center;
}

.client-logo-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  border: 1px solid var(--line);
  overflow: hidden;
}

.client-logo-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  border-right: 1px solid var(--line);
  background: #fff;
  transition: background 0.22s ease, transform 0.22s ease;
  text-decoration: none;
  cursor: pointer;
}

.client-logo-item:last-child {
  border-right: 0;
}

.client-logo-item:hover {
  background: var(--panel);
  transform: translateY(-2px);
  z-index: 1;
}

.client-logo-item img {
  max-width: 100%;
  max-height: 28px;
  width: auto;
  margin: 0 auto;
  object-fit: contain;
  filter: grayscale(1) opacity(0.6);
  transition: filter 0.22s ease;
  display: block;
}

.client-logo-item:hover img {
  filter: grayscale(0) opacity(1);
}

.client-logo-arrow {
  position: absolute;
  top: 2px;
  right: 0;
  width: 18px;
  height: 18px;
  border-bottom-left-radius: 5px;
  background: rgba(5, 150, 105, 0.1);
  color: var(--accent);
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.22s ease, background 0.22s ease;
  line-height: 1;
}

.client-logo-item:hover .client-logo-arrow {
  opacity: 1;
  background: rgba(5, 150, 105, 0.15);
}

.services-grid.cards-6,
.work-grid,
.testimonials-grid,
.pricing-grid {
  display: grid;
  gap: 16px;
}

.services-grid.cards-6 {
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  min-height: 280px;
  padding: 36px 28px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background 0.25s ease;
}

.service-card:last-child {
  border-right: 0;
}

.service-card:hover {
  background: var(--panel);
}

.service-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.service-num {
  font-size: 11px;
  color: #9ca3af;
}

.service-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.service-desc,
.process-desc,
.pricing-desc,
.faq-answer,
.testimony-text {
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

.testimonial:hover,
.plan:hover {
  transform: translateY(-4px);
  background: var(--panel);
}

.plan-dark:hover {
  background: var(--dark) !important;
}


.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.tag {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.testimonials-grid {
  grid-template-columns: repeat(3, 1fr);
}

.testimonial {
  padding: 28px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 22px;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.stars {
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 2px;
}

.testimony-text {
  margin: 0;
  color: var(--text);
  font-size: 17px;
  line-height: 1.65;
  flex: 1;
  word-break: break-word;
  overflow-wrap: break-word;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.testimonial-meta img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-name {
  font-weight: 700;
  font-size: 14px;
}

.testimonial-role {
  font-size: 12px;
  color: var(--muted-2);
  margin-top: 2px;
}

.pricing-head {
  text-align: center;
  margin-bottom: 46px;
}

.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1200px;
  margin: 0 auto;
}

.plan {
  position: relative;
  border-radius: 24px;
  padding: 34px 30px;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.plan-light {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.plan-dark {
  background: #0f1110;
  color: #fff;
  border: 1px solid #0f1110;
  box-shadow: var(--shadow-soft);
}

.plan-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

.plan-name {
  font-size: 13px;
  font-weight: 700;
  opacity: 0.9;
}

.plan-price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 10px;
}

.plan-price {
  font-size: 62px;
  line-height: 1;
}

.plan-unit {
  font-size: 14px;
  opacity: 0.7;
}

.plan-features {
  list-style: none;
  margin: 22px 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.plan-features li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.55;
  font-size: 14px;
}

.check {
  color: var(--accent);
  font-weight: 700;
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
}

.faq-title {
  font-size: clamp(38px, 5vw, 62px);
}

.faq-note {
  max-width: 440px;
  margin: 16px 0 24px;
  font-size: 15px;
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}

.faq-question {
  width: 100%;
  padding: 0;
  background: none;
  border: 0;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  text-align: left;
  cursor: pointer;
  font-size: 22px;
  font-family: "Inter Tight", sans-serif;
  letter-spacing: -0.02em;
}

.faq-toggle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--panel);
  color: var(--text);
  font-size: 18px;
  flex-shrink: 0;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.faq-answer-wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, margin-top 0.35s ease;
}

.faq-item.active .faq-answer-wrap {
  max-height: 240px;
  margin-top: 14px;
}

.faq-item.active .faq-toggle {
  background: var(--accent);
  color: #fff;
  transform: rotate(180deg);
}

.footer {
  position: relative;
  overflow: hidden;
  padding: 96px 0 48px;
  border-top: 1px solid var(--line-soft);
}

.footer-inner {
  position: relative;
  z-index: 1;
}

.footer-copy {
  text-align: center;
}

.footer-copy h2 {
  font-size: clamp(44px, 8vw, 96px);
  line-height: 0.95;
  margin: 0 0 28px;
}

.footer-bottom {
  margin-top: 54px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.social-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.social-links a {
  font-size: 14px;
  color: var(--muted);
}

.social-links a:hover {
  color: var(--text);
}

.footer-note {
  margin: 0;
  color: var(--muted-2);
  font-size: 13px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

.tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
}

.tile {
  aspect-ratio: 4 / 3;
  background: var(--panel);
  border-radius: 16px;
  border: 1px solid var(--line);
  overflow: hidden;
  position: relative;
}

.tile::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image: repeating-linear-gradient(45deg, rgba(10, 10, 10, 0.25) 0 1.5px, transparent 1.5px 6px);
}

.tile-content {
  position: absolute;
  inset: 0;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.tile-badge {
  align-self: flex-start;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-2);
  padding: 4px 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.tile-name {
  font-size: 22px;
}

.tile-type {
  font-size: 11px;
  color: var(--muted-2);
  margin-top: 4px;
}

.mono {
  font-family: "JetBrains Mono", monospace;
}

.services-grid,
.process-grid,
.testimonials-grid,
.pricing-grid {
  display: grid;
  gap: 16px;
}

.services-intro,
.faq-layout {
  display: grid;
  gap: 80px;
}

.services-intro {
  grid-template-columns: 1fr 1.2fr;
  margin-bottom: 72px;
  align-items: end;
}

.services-copy,
.section-copy {
  font-size: 17px;
  line-height: 1.55;
  color: var(--muted);
}

.services-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
}

.howIWork .services-grid {
  grid-template-columns: repeat(3, 1fr) !important;
}


@keyframes blink {

  0%,
  45% {
    opacity: 1;
  }

  50%,
  95% {
    opacity: 0;
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1280px) {
  .client-logo-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .client-logo-item:nth-child(5n) {
    border-right: 0;
  }

  .services-grid.cards-6,
  .work-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 980px) {
  .mobile-menu-btn {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a:not(.btn) {
    padding: 12px 14px;
    background: var(--panel);
  }

  .nav::before {
    content: "";
    position: absolute;
    inset: 0;

    /* Light diffusion */
    background: linear-gradient(to bottom,
        rgba(255, 255, 255, 0.7),
        rgba(255, 255, 255, 0.2));

    pointer-events: none;
    z-index: -1;
  }

  .hero-top,
  .pricing-grid,
  .stats,
  .services-grid.cards-6,
  .work-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .hero-top {
    display: grid;
    justify-content: flex-start;
  }

  .stats {
    display: grid;
  }

  .stat {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stat:last-child {
    border-bottom: 0;
  }

  .client-logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .client-logo-item:nth-child(3n) {
    border-right: 0;
  }

  .client-logo-item:nth-child(n+4) {
    border-top: 1px solid var(--line);
  }

  .slide {
    width: 280px;
    height: 190px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .section {
    padding: 84px 0;
  }

  .hero {
    padding: 68px 0 52px;
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-buttons {
    width: 100%;
  }

  .hero-buttons .btn,
  .faq-layout .btn,
  .footer-copy .btn {
    width: 100%;
  }

  .client-logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .stats,
  .services-grid,
  .process-grid,
  .testimonials-grid,
  .pricing-grid,
  .tiles,
  .howIWork .services-grid {
    grid-template-columns: 1fr !important;
  }

  .illustration-container {
    transform-origin: center !important;
    margin: 0 auto !important;
  }

  .about-hero-inner {
    overflow: hidden;
  }

  .project-card {
    min-height: 340px;
  }

  .faq-question {
    font-size: 18px;
  }

  .social-links {
    gap: 14px;
  }
}

/* ─── Case Study Pages ──────────────────────────────── */

.cs-hero {
  padding: 80px 0 64px;
  border-bottom: 1px solid var(--line-soft);
  position: relative;
  overflow: hidden;
}

.cs-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(10, 10, 10, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(10, 10, 10, 0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 75%);
  pointer-events: none;
}

.cs-hero-inner {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 32px;
}

.breadcrumb a {
  color: var(--muted-2);
}

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

.breadcrumb sep {
  color: var(--line);
}

.cs-title {
  font-family: "Inter Tight", sans-serif;
  font-size: clamp(42px, 6vw, 88px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0 0 24px;
}

.cs-lead {
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 640px;
  margin: 0 0 40px;
}

.cs-meta {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  margin-top: 48px;
}

.cs-meta-item {
  padding: 20px 28px;
  border-right: 1px solid var(--line);
  flex: 1;
  min-width: 140px;
}

.cs-meta-item:last-child {
  border-right: 0;
}

.cs-meta-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 6px;
}

.cs-meta-value {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}

.cs-meta-value a {
  color: var(--accent);
}

.cs-section {
  padding: 72px 0;
  border-bottom: 1px solid var(--line-soft);
}

.cs-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.cs-split.reverse>*:first-child {
  order: 2;
}

.cs-split.reverse>*:last-child {
  order: 1;
}

.cs-content h2 {
  font-family: "Inter Tight", sans-serif;
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 16px;
}

.cs-content p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}

.cs-img {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
  display: flex;
  flex-direction: column;
}

/* Safari-style browser chrome bar */
.cs-img::before {
  content: '';
  display: block;
  flex-shrink: 0;
  height: 48px;
  background-color: var(--panel);
  border-bottom: 1px solid var(--line);
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='12'%3E%3Ccircle cx='6' cy='6' r='4.5' fill='%23d4d4d4'/%3E%3Ccircle cx='24' cy='6' r='4.5' fill='%23d4d4d4'/%3E%3Ccircle cx='42' cy='6' r='4.5' fill='%23d4d4d4'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25'%3E%3Crect width='100%25' height='100%25' rx='6' fill='%23e7e7e7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 16px center, center right 16px;
  background-size: 54px 12px, 80% 24px;
}

.cs-img img {
  width: 100%;
  height: auto;
  display: block;
  flex: 1;
}

.cs-img-full {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
}

.cs-img-full img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 600px;
  object-fit: cover;
}

.cs-result {
  margin-top: 24px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 16px 20px;
  border-radius: 12px;
  background: rgba(5, 150, 105, 0.06);
  border: 1px solid rgba(5, 150, 105, 0.16);
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
}

.cs-result-icon {
  color: var(--accent);
  flex-shrink: 0;
  font-size: 16px;
  margin-top: 1px;
}

.cs-cta {
  margin-top: 72px;
  padding: 48px;
  border-radius: 20px;
  background: #0f1110;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.cs-cta::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.22) 0%, transparent 70%);
  right: -60px;
  top: -80px;
  pointer-events: none;
}

.cs-cta-text {
  position: relative;
  z-index: 1;
}

.cs-cta-text h3 {
  font-family: "Inter Tight", sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 6px;
}

.cs-cta-text p {
  margin: 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
}

.cs-cta-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.btn-white {
  background: #fff;
  color: #0f1110;
  border-color: #fff;
}

.btn-white:hover {
  background: rgba(255, 255, 255, 0.9);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.08);
}

.cs-next {
  padding: 48px 0;
  border-top: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cs-next-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 6px;
}

.cs-next-title {
  font-family: "Inter Tight", sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.cs-next-title:hover {
  color: var(--accent);
}

@media (max-width: 768px) {
  .cs-split {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .cs-split.reverse>*:first-child {
    order: 1;
  }

  .cs-split.reverse>*:last-child {
    order: 2;
  }

  .cs-cta {
    padding: 32px 24px;
  }

  .cs-meta {
    flex-direction: column;
  }

  .cs-meta-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .cs-meta-item:last-child {
    border-bottom: 0;
  }
}

/* ─── Work Gallery Page ──────────────────────────── */

.work-hero {
  padding: 88px 0 72px;
  border-bottom: 1px solid var(--line-soft);
  position: relative;
  overflow: hidden;
}

.work-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(10, 10, 10, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(10, 10, 10, 0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent 78%);
  pointer-events: none;
}

.work-hero-inner {
  position: relative;
  z-index: 1;
}

.work-hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-top: 20px;
}

.work-hero-trust span {
  padding: 0 10px;
  border-left: 1px solid var(--line);
}

.work-hero-trust span:first-child {
  border-left: 0;
  padding-left: 0;
}

/* Filters */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 48px;
}

.filter-btn {
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}

/* Grids */
.featured-grid,
.projects-grid,
.impact-grid,
.internal-links {
  display: grid;
  gap: 16px;
}

.featured-grid,
.projects-grid,
.internal-links {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 56px;
}

.impact-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 56px;
}

.internal-links {
  margin-top: 48px;
}

/* Case Study Cards */
.case-card {
  border-radius: 20px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 80px rgba(10, 10, 10, 0.1);
}

.case-card-img {
  aspect-ratio: 16 / 9;
  background: var(--panel);
  overflow: hidden;
  position: relative;
}

.case-card-img img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.case-card:hover .case-card-img img {
  transform: scale(1.03);
}

.case-card-img-placeholder,
.ui-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--panel) 0%, var(--panel-2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  border-radius: inherit;
}

.ui-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10, 10, 10, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 10, 10, 0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.ui-placeholder::after {
  content: 'UI Presentation Placeholder';
  z-index: 1;
}

.case-card-img-placeholder,
.ui-placeholder {
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  background: linear-gradient(135deg, var(--panel), var(--panel-2));
}

.case-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.case-tag {
  display: inline-flex;
  align-items: center;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 12px;
}

.case-title {
  font-family: "Inter Tight", sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin: 0 0 8px;
  line-height: 1.2;
}

.case-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 18px;
  flex: 1;
}

.case-meta {
  display: flex;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
  margin-bottom: 18px;
}

.case-meta-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.case-meta-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.case-meta-value {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.case-result {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(5, 150, 105, 0.06);
  border: 1px solid rgba(5, 150, 105, 0.14);
  margin-bottom: 18px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text);
}

.case-result-icon {
  color: var(--accent);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Project Tiles */
.project-tile {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  cursor: pointer;
}

.project-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(10, 10, 10, 0.09);
}

.project-tile-img {
  /*aspect-ratio: 4 / 3;*/
  background: var(--panel);
  overflow: hidden;
  position: relative;
}

.project-tile-img img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.project-tile:hover .project-tile-img img {
  transform: scale(1.04);
}

.project-tile-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--muted-2);
  background: linear-gradient(135deg, var(--panel), var(--panel-2));
}

.project-tile-info {
  padding: 16px 18px;
  border-top: 1px solid var(--line-soft);
}

.project-tile-tag {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 5px;
}

.project-tile-name {
  font-family: "Inter Tight", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 4px;
}

.project-tile-value {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
}

/* Approach Section */
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.approach-pillars {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 32px;
}

.approach-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-soft);
}

.approach-item:last-child {
  border-bottom: 0;
}

.approach-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--panel);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.approach-item h4 {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 4px;
}

.approach-item p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

.approach-quote {
  padding: 36px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: var(--panel);
  position: relative;
}

.approach-quote::before {
  content: '"';
  font-family: "Inter Tight", sans-serif;
  font-size: 96px;
  line-height: 0.8;
  color: var(--accent);
  opacity: 0.18;
  position: absolute;
  top: 24px;
  left: 30px;
  pointer-events: none;
}

.approach-quote blockquote {
  margin: 0;
  font-family: "Inter Tight", sans-serif;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.3;
  color: var(--text);
  position: relative;
  z-index: 1;
}

.approach-quote cite {
  display: block;
  margin-top: 16px;
  font-style: normal;
  font-size: 13px;
  color: var(--muted-2);
}

/* Impact Section */
.impact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 26px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
}

.impact-check {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(5, 150, 105, 0.1);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  flex-shrink: 0;
}

.impact-item h4 {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 4px;
}

.impact-item p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

/* CTA Banner */
.work-cta {
  border-radius: 24px;
  background: #0f1110;
  color: #fff;
  padding: 64px 56px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.work-cta::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.25) 0%, transparent 70%);
  right: -100px;
  top: -120px;
  pointer-events: none;
}

.work-cta h2 {
  font-family: "Inter Tight", sans-serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin: 0 0 12px;
}

.work-cta p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
  max-width: 520px;
  line-height: 1.6;
}

.work-cta-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.btn-white {
  background: #fff;
  color: #0f1110;
  border-color: #fff;
}

.btn-white:hover {
  background: rgba(255, 255, 255, 0.9);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* Internal Links */
.internal-link-card {
  padding: 28px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: background 0.22s ease, transform 0.22s ease;
  text-decoration: none;
  color: inherit;
}

.internal-link-card:hover {
  background: var(--panel);
  transform: translateX(4px);
}

.internal-link-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}

.internal-link-title {
  font-family: "Inter Tight", sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.internal-link-arrow {
  font-size: 20px;
  color: var(--muted-2);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.internal-link-card:hover .internal-link-arrow {
  transform: translateX(4px);
  color: var(--text);
}

/* Responsiveness for Work Gallery */
@media (max-width: 1024px) {

  .featured-grid,
  .projects-grid {
    grid-template-columns: 1fr 1fr;
  }

  .approach-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .work-cta {
    grid-template-columns: 1fr;
  }

  .work-cta-btns {
    flex-direction: row;
  }

  .internal-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {

  .featured-grid,
  .projects-grid,
  .impact-grid {
    grid-template-columns: 1fr;
  }

  .work-cta {
    padding: 40px 28px;
  }

  .work-cta-btns {
    flex-direction: column;
  }

  .work-cta-btns .btn {
    width: 100%;
  }

  .services-intro {
    grid-template-columns: 1fr;
  }

  .services-intro,
  .faq-layout {
    gap: 0;
  }
}
.d-none {
  display: none !important;
}
/* ─── About Page ─────────────────────────────────── */

.about-hero {
  padding: 88px 0 112px;
  position: relative;
  overflow: hidden;
}

.about-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(10, 10, 10, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(10, 10, 10, 0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent 78%);
  pointer-events: none;
}

.about-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 60px;
}

.about-hero-photo {
  border-radius: 20px;
  object-fit: cover;
  object-position: top center;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  flex-shrink: 0;
  width: 100%;
  height: auto;
}

.about-hero-image-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 380px;
}

.about-hero-ornament {
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  text-align: left;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-hero-ornament:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(10, 10, 10, 0.1);
}

.ornament-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.ornament-badge {
  font-size: 11px;
  color: var(--accent);
  background: rgba(5, 150, 105, 0.08);
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ornament-loc {
  font-size: 11px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.loc-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  position: relative;
}

.loc-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-out infinite;
}

.ornament-body {
  border-top: 1px solid var(--line-soft);
  padding-top: 16px;
}

.ornament-quote {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  font-style: italic;
  margin: 0;
  font-family: "Inter Tight", sans-serif;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  100% {
    transform: scale(3);
    opacity: 0;
  }
}

.about-who {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-who-text p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 0 18px;
}

.about-who-text p:last-child {
  margin-bottom: 0;
}

.about-skill-card {
  padding: 28px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.about-skill-card h3 {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 700;
}

.about-skill-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-skill-list li {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}

.about-skill-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

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

/* Experience List */
.exp-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.exp-item {
  display: grid;
  grid-template-columns: 48px 212px 1fr;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line-soft);
  align-items: start;
}

.exp-logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--panel);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  overflow: hidden;
}

.exp-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

.exp-item:first-child {
  padding-top: 0;
}

.exp-item:last-child {
  border-bottom: 0;
}

.exp-role {
  font-family: "Inter Tight", sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 4px;
}

.exp-period {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.exp-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}

.exp-link {
  color: var(--accent);
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.exp-link:hover {
  border-color: var(--accent);
}

/* Process Grid */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
}

.process-card {
  padding: 32px 28px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.process-num {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
}

.process-card h3 {
  font-family: "Inter Tight", sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin: 0 0 12px;
}

.process-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}

/* Skills Cards */
.skills-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
}

.skill-block {
  padding: 32px 28px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.skill-block-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--panel);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 18px;
}

.skill-block h3 {
  font-family: "Inter Tight", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.skill-tag {
  display: inline-flex;
  padding: 4px 10px;
  margin: 2px 0;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
  white-space: nowrap;
  background: #fff;
}

/* Quick Facts */
.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  overflow: hidden;
  margin-top: 56px;
}

.fact-item {
  padding: 40px 28px;
  border-right: 1px solid var(--line);
  text-align: center;
}

.fact-item:last-child {
  border-right: 0;
}

.fact-value {
  font-family: "Inter Tight", sans-serif;
  font-size: clamp(42px, 5vw, 62px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text);
}

.fact-label {
  margin-top: 8px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted-2);
}

.faq-stack {
  display: flex;
  flex-direction: column;
  margin-top: 56px;
}

/* Responsiveness for About Page */
@media (max-width: 1024px) {
  .about-who {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .process-grid,
  .skills-cards {
    grid-template-columns: 1fr 1fr;
  }

  .facts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fact-item:nth-child(2) {
    border-right: 0;
  }

  .fact-item:nth-child(3) {
    border-top: 1px solid var(--line);
  }

  .fact-item:nth-child(4) {
    border-top: 1px solid var(--line);
    border-right: 0;
  }
}

@media (max-width: 768px) {
  .about-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-hero-image-wrap {
    width: 100%;
    order: -1;
    align-items: center;
  }

  .about-hero-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
  }

  .about-hero-ornament {
    width: 100%;
    max-width: 420px;
    background: var(--panel);
    border: 1px solid var(--line);
    margin: 0 auto;
  }

  .exp-item {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .exp-logo {
    display: none;
    /* or small and inline */
  }

  .process-grid,
  .skills-cards {
    grid-template-columns: 1fr;
  }

  .facts-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 9999;
}

.skip-link:focus {
  position: fixed;
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  background: #fff;
  color: #0b0b0b;
  border-radius: 6px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* =========================================================
       New additions — ornaments, process, stack, tile metrics
       Classes prefixed .vj- to avoid collisions with existing CSS
       ========================================================= */

/* Animated hairline divider between sections */
.vj-divider-wrap {
  padding: 0 24px;
}

.vj-divider {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 1px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.08);
  overflow: visible;
}

.vj-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00c26e;
  box-shadow: 0 0 14px rgba(0, 194, 110, 0.55);
  transform: translate(-50%, -50%);
  animation: vj-travel 7s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

@keyframes vj-travel {
  0% {
    left: 0%;
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    left: 100%;
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .vj-divider::after {
    animation: none;
    left: 50%;
  }
}

/* Corner crosshair marks (process grid) */
.vj-corner {
  position: absolute;
  width: 14px;
  height: 14px;
  pointer-events: none;
  opacity: 0.35;
  color: #0b0b0b;
}

.vj-corner::before,
.vj-corner::after {
  content: "";
  position: absolute;
  background: currentColor;
}

.vj-corner::before {
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  transform: translateY(-50%);
}

.vj-corner::after {
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  transform: translateX(-50%);
}

.vj-corner-tl {
  top: -7px;
  left: -7px;
}

.vj-corner-tr {
  top: -7px;
  right: -7px;
}

.vj-corner-bl {
  bottom: -7px;
  left: -7px;
}

.vj-corner-br {
  bottom: -7px;
  right: -7px;
}

/* Plus marks (stack grid corners) */
.vj-plus {
  position: absolute;
  width: 12px;
  height: 12px;
  pointer-events: none;
  opacity: 0.3;
  color: #0b0b0b;
}

.vj-plus::before,
.vj-plus::after {
  content: "";
  position: absolute;
  background: currentColor;
}

.vj-plus::before {
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  transform: translateY(-50%);
}

.vj-plus::after {
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  transform: translateX(-50%);
}

.vj-plus-tl {
  top: -18px;
  left: -18px;
}

.vj-plus-tr {
  top: -18px;
  right: -18px;
}

.vj-plus-bl {
  bottom: -18px;
  left: -18px;
}

.vj-plus-br {
  bottom: -18px;
  right: -18px;
}

/* Process section */
.vj-process-section {
  position: relative;
}

.vj-process-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  background-position: 0 0;
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 70%);
  mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.vj-process-section>.container {
  position: relative;
  z-index: 1;
}

.vj-process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
  padding: 8px;
}

/* Cluster headers span the full grid width */
.vj-cluster-head {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  padding-top: 8px;
}

/* First cluster shouldn't have top spacing */
.vj-cluster-head:first-of-type {
  margin-top: 0;
  padding-top: 0;
}

.vj-cluster-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.55);
  /* swap for your muted token if you have one */
  white-space: nowrap;
}

.vj-cluster-rule {
  flex: 1;
  height: 1px;
  background: currentColor;
  opacity: 0.12;
}

/* On narrow screens, keep the labels readable */
@media (max-width: 640px) {
  .vj-cluster-head {
    margin-top: 4px;
  }

  .vj-cluster-label {
    font-size: 10px;
  }
}

@media (max-width: 960px) {
  .vj-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .vj-process-grid {
    grid-template-columns: 1fr;
  }
}

.vj-step {
  position: relative;
  padding: 28px 24px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 14px;
  background: #fff;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.vj-step:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 0, 0, 0.2);
  box-shadow: 0 14px 28px -14px rgba(0, 0, 0, 0.1);
}

.vj-step::after {
  content: "";
  position: absolute;
  top: 28px;
  right: 24px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00c26e;
  box-shadow: 0 0 10px rgba(0, 194, 110, 0.5);
}

.vj-step-num {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(0, 0, 0, 0.55);
  margin-bottom: 20px;
  display: inline-block;
}

.vj-step-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 0 0 8px;
  color: #0b0b0b;
  line-height: 1.2;
}

.vj-step-desc {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(0, 0, 0, 0.62);
  margin: 0 0 16px;
}

.vj-step-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.7);
}

.vj-step-list li {
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

/* Stack section */
.vj-stack-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 32px;
}

@media (max-width: 800px) {
  .vj-stack-head {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.vj-stack-copy {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.62);
  max-width: 460px;
  margin: 0;
  justify-self: end;
}

@media (max-width: 800px) {
  .vj-stack-copy {
    justify-self: start;
  }
}

.vj-stack-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 8px;
}

@media (max-width: 900px) {
  .vj-stack-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 420px) {
  .vj-stack-grid {
    grid-template-columns: 1fr;
  }
}

.vj-tool {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  background: #fff;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.vj-tool:hover {
  border-color: rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.vj-tool-mark {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #0b0b0b;
  background: rgba(0, 194, 110, 0.1);
  border: 1px solid rgba(0, 194, 110, 0.22);
  border-radius: 8px;
}

.vj-tool-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.vj-tool-name {
  font-size: 14px;
  font-weight: 600;
  color: #0b0b0b;
  letter-spacing: -0.01em;
}

.vj-tool-meta {
  font-size: 10px;
  letter-spacing: 0.08em;
  color: rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
}

/* Project tile metrics */
.vj-tile-metrics {
  display: flex;
  gap: 24px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed rgba(0, 0, 0, 0.14);
}

.vj-metric {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.vj-metric-val {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0b0b0b;
  line-height: 1;
}

.vj-metric-lbl {
  font-size: 10px;
  letter-spacing: 0.08em;
  color: rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
}