/* =====================================================
   main.css
   Layout, components, sections.
   Section index:
     1. Layout primitives
     2. Eyebrow + section heading
     3. Header
     4. Hero (with CV action buttons)
     5. About (professional summary)
     6. CV entries (Education + Work Experience)
     7. Marquee
     8. Capabilities
     9. Certifications
    10. Achievements
    11. Industries
    12. CTA
    13. Footer
   ===================================================== */

/* ---------- 1. Layout primitives ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}
.section {
  padding-block: var(--section-pad);
  position: relative;
}
.section--narrow .container { max-width: 980px; }
.section--dark { background: var(--bg-dark); color: var(--c-7); }
.section--soft { background: var(--c-6); }


/* ---------- 2. Eyebrow + section heading ---------- */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.eyebrow__text {
  font-family: var(--ff-mono);
  font-size: var(--fs-eyebrow);
  font-weight: 400;
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  line-height: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
}
.eyebrow__line {
  flex: 0 0 50px;
  height: 1px;
  background: linear-gradient(to right, var(--accent-strong), rgba(255, 255, 255, 0.15));
}
.eyebrow--dark .eyebrow__text { color: var(--fg); }
.eyebrow--dark .eyebrow__line { background: linear-gradient(to right, var(--accent), rgba(0, 0, 0, 0.08)); }

.section-heading {
  display: flex;
  flex-direction: column;
  margin-bottom: clamp(2.5rem, 4vw, 4.5rem);
  max-width: 900px;
}
.section-heading__title {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: var(--fs-h2);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0;
}


/* ---------- 3. Header ---------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding-block: 1.5rem;
  transition: background-color 0.3s var(--ease), border-color 0.3s var(--ease),
              padding-block 0.3s var(--ease), backdrop-filter 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
.header.is-scrolled {
  background: rgba(10, 10, 10, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  padding-block: 0.85rem;
}
.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  color: var(--c-7);
}
.header__logo {
  display: inline-flex;
  align-items: baseline;
  gap: 0.6rem;
}
.header__logo-mark {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: 1.5rem;
  line-height: 1;
}
.header__logo-word {
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  line-height: 1;
}
@media (max-width: 420px) {
  .header__logo-word { display: none; }
  .header__content { gap: 1rem; }
}
.header__nav ul { display: flex; gap: 2.25rem; }
.header__nav a {
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  line-height: 1;
  position: relative;
  padding-block: 0.25rem;
}
.header__nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 -2px 0;
  height: 1px;
  background: var(--accent-strong);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.header__nav a:hover::after,
.header__nav a.is-active::after { transform: scaleX(1); }
.header__nav a.is-active { color: var(--accent-strong); }

/* Scroll progress bar */
.scroll-progress {
  position: absolute;
  left: 0; bottom: -1px;
  height: 2px;
  width: 0;
  background: var(--accent-strong);
  transition: width 0.12s linear;
  pointer-events: none;
  z-index: 1;
}

/* Mobile nav toggle (hamburger) */
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  color: var(--c-7);
  margin-left: 0.25rem;
}
.nav-toggle__bar {
  display: block;
  width: 22px;
  height: 1px;
  background: currentColor;
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}
.header.is-open .nav-toggle__bar:nth-child(1) { transform: translateY(3px) rotate(45deg); }
.header.is-open .nav-toggle__bar:nth-child(2) { transform: translateY(-3px) rotate(-45deg); }

/* Compact dropdown mobile nav */
.mobile-nav {
  display: none;
  position: absolute;
  inset: 100% 0 auto 0;
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1rem var(--container-pad) 1.5rem;
  color: var(--c-7);
}
.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-block: 0.5rem;
}
.mobile-nav a {
  display: block;
  padding-block: 0.65rem;
  font-family: var(--ff-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mobile-nav a:last-child { border-bottom: 0; }
.mobile-nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1rem;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  font-family: var(--ff-body);
  font-weight: 300;
  font-size: 0.95rem;
}
.mobile-nav__cta svg { width: 12px; height: 12px; }
.header.is-open .mobile-nav { display: block; }

@media (max-width: 768px) {
  .header__nav { display: none; }
  .book-call { display: none; }
  .nav-toggle {
    display: inline-flex;
    width: 32px;
    height: 32px;
    gap: 4px;
    margin-left: 0;
  }
  .nav-toggle__bar { width: 18px; }
  .header__logo { gap: 0.45rem; }
  .header__logo-mark { font-size: 1.25rem; }
  .header__logo-word { font-size: 0.65rem; letter-spacing: 0.14em; }
  .hero__content .eyebrow { gap: 0.5rem; margin-bottom: 0.9rem; }
  .hero__content .eyebrow__line { flex-basis: 28px; }
  .hero__content .eyebrow__text { font-size: 0.7rem; letter-spacing: 0.14em; }
}

.book-call {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid currentColor;
  border-radius: 4px;
  font-family: var(--ff-body);
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.book-call__arrow { width: 12px; height: 12px; transition: transform 0.25s var(--ease); }
.book-call:hover { background: var(--accent-strong); color: var(--c-1); border-color: var(--accent-strong); }
.book-call:hover .book-call__arrow { transform: translateX(3px); }


/* ---------- 4. Hero ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  background: var(--c-4);
  color: var(--c-7);
}
@media (max-width: 768px) { .hero { height: 100svh; min-height: 560px; } }
@media (max-width: 768px) and (max-height: 600px) { .hero { min-height: 480px; } }

.hero__media { position: absolute; inset: 0; }
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 80% 10%, rgba(255, 255, 255, 0.06), transparent 60%),
    radial-gradient(80% 70% at 10% 90%,  rgba(255, 255, 255, 0.04), transparent 60%),
    linear-gradient(180deg, #0a0a0a 0%, #111111 60%, #000000 100%);
}
.hero__canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.45) 100%);
}
.hero__spotlight {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    420px circle at var(--mx, 50%) var(--my, 50%),
    rgba(184, 148, 95, 0.18),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.hero:hover .hero__spotlight { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .hero__spotlight { display: none; }
}

.hero__content {
  position: relative; z-index: 2;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(1.5rem, 4vw, 3rem);
  flex-wrap: wrap;
  padding-top: clamp(5rem, 12vh, 7rem);
  padding-bottom: clamp(2rem, 6vh, 4.5rem);
}
.hero__main { flex: 1 1 60%; min-width: 0; max-width: 900px; }
.hero__heading {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: clamp(2.25rem, 5.2vw + 1rem, 5.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 18ch;
}
.hero__heading em {
  font-style: italic;
  font-weight: 300;
  color: var(--accent-strong);
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 220px;
  flex: 0 0 auto;
}
.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 4px;
  background: transparent;
  color: var(--c-7);
  font-family: var(--ff-body);
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1;
  transform: translate3d(0, 0, 0);
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.18s var(--ease);
}
.hero-btn svg { width: 14px; height: 14px; flex: 0 0 14px; transition: transform 0.25s var(--ease); }
.hero-btn:hover { background: var(--accent-soft); border-color: var(--accent-strong); color: var(--c-7); }
.hero-btn:hover svg { transform: translate(2px, -2px); }
.hero-btn--primary { background: var(--c-7); color: var(--c-4); border-color: var(--c-7); }
.hero-btn--primary:hover { background: var(--accent-strong); color: var(--c-1); border-color: var(--accent-strong); }
.hero-btn--primary:hover svg { transform: translateY(2px); }

@media (max-width: 768px) {
  .hero__content { align-items: flex-start; flex-direction: column; }
  .hero__actions { width: 100%; flex-direction: row; min-width: 0; }
  .hero-btn { flex: 1; }
}


/* ---------- 5. About (professional summary) ---------- */
.about-summary {
  margin: 0;
  font-family: var(--ff-body);
  font-weight: 300;
  font-size: clamp(1.05rem, 0.4vw + 1rem, 1.375rem);
  line-height: 1.65;
  color: var(--c-2);
  max-width: 70ch;
}


/* ---------- 6. CV entries (Education and Work Experience) ---------- */
.cv-list { display: flex; flex-direction: column; gap: clamp(3rem, 6vw, 5rem); }
.cv-entry {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
  transition: border-top-color 0.35s var(--ease);
}
.cv-entry:hover { border-top-color: var(--accent); }
.cv-entry:hover .cv-entry__index { color: var(--accent-strong); }
.cv-entry__index { transition: color 0.3s var(--ease); }
@media (max-width: 700px) {
  .cv-entry { grid-template-columns: 1fr; gap: 1.25rem; }
}
.cv-entry__index {
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--fg-muted);
  line-height: 1;
  padding-top: 0.5rem;
}
.cv-entry__body { display: flex; flex-direction: column; gap: 1.5rem; }
.cv-entry__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.cv-entry__title {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: clamp(1.75rem, 2.4vw, 2.5rem);
  line-height: 1.05;
  letter-spacing: -0.005em;
  margin: 0 0 0.35rem;
}
.cv-entry__sub {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 60ch;
}
.cv-entry__date {
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--fg-muted);
  white-space: nowrap;
}
.cv-entry__detail {
  display: grid;
  grid-template-columns: minmax(0, 260px) 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: start;
}
@media (max-width: 800px) {
  .cv-entry__detail { grid-template-columns: 1fr; }
}
.cv-entry__media {
  aspect-ratio: 4 / 3;
  background: var(--c-4);
  overflow: hidden;
  border-radius: 2px;
}
.cv-entry__media img { width: 100%; height: 100%; object-fit: cover; }
.cv-entry__media--logo {
  aspect-ratio: 1 / 1;
  background: var(--c-7);
  border: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.5rem, 1vw, 0.75rem);
  transition: border-color 0.3s var(--ease), transform 0.35s var(--ease);
}
.cv-entry:hover .cv-entry__media--logo { border-color: var(--accent); transform: translateY(-2px); }
.cv-entry__media--logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.cv-entry__bullets {
  display: flex; flex-direction: column; gap: 0.85rem;
  font-size: 1rem; line-height: 1.55;
  color: var(--c-2);
}
.cv-entry__bullets li {
  position: relative;
  padding-left: 1.25rem;
}
.cv-entry__bullets li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.7em;
  width: 8px; height: 1px;
  background: var(--fg-muted);
}


/* ---------- 7. Marquee ---------- */
.marquee-section {
  background: var(--c-6);
  border-block: 1px solid var(--rule);
  padding-block: clamp(2rem, 3.5vw, 3rem);
  overflow: hidden;
}
.marquee {
  display: flex;
  white-space: nowrap;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 2.25rem;
  padding-right: 2.25rem;
  animation: marquee 32s linear infinite;
  will-change: transform;
}
.marquee__item {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
  line-height: 1;
  letter-spacing: -0.005em;
}
.marquee__dot { font-size: 0.6rem; color: var(--accent); }
@keyframes marquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }


/* ---------- 8. Capabilities ---------- */
.capabilities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
}
@media (max-width: 900px) { .capabilities { grid-template-columns: 1fr; } }
.capability {
  padding-top: 2rem;
  border-top: 1px solid var(--rule-light);
  transition: border-top-color 0.35s var(--ease), transform 0.35s var(--ease);
}
.capability:hover { border-top-color: var(--accent-strong); transform: translateY(-3px); }
.capability__index {
  display: block;
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--accent-strong);
  margin-bottom: 1.25rem;
}
.capability__title {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: var(--fs-h3);
  line-height: 1.1;
  margin: 0 0 0.85rem;
}
.capability__body {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
  max-width: 38ch;
}


/* ---------- 9. Certifications ---------- */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
}
@media (max-width: 800px) { .cert-grid { grid-template-columns: 1fr; } }
.cert-card {
  display: flex; flex-direction: column;
  gap: 1.25rem;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
  transition: border-top-color 0.35s var(--ease), transform 0.35s var(--ease);
}
.cert-card:hover { border-top-color: var(--accent); transform: translateY(-3px); }
.cert-card:hover .cert-card__issuer { color: var(--accent-strong); }
.cert-card__issuer { transition: color 0.3s var(--ease); }
.cert-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 2px;
  background: var(--c-4);
}
.cert-card__media img { width: 100%; height: 100%; object-fit: cover; }
.cert-card__head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
}
.cert-card__title {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: var(--fs-h3);
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.005em;
}
.cert-card__issuer {
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--fg-muted);
}
.cert-card__body { margin: 0; color: var(--c-2); }


/* ---------- 10. Achievements ---------- */
.achievement-list { display: flex; flex-direction: column; }
.achievement {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: baseline;
  gap: clamp(1rem, 3vw, 2.5rem);
  padding-block: 1.75rem;
  border-bottom: 1px solid var(--rule);
  transition: border-bottom-color 0.35s var(--ease), padding-left 0.35s var(--ease);
}
.achievement:hover { border-bottom-color: var(--accent); }
.achievement:hover .achievement__num { color: var(--accent-strong); }
.achievement:first-child { border-top: 1px solid var(--rule); }
@media (max-width: 700px) {
  .achievement {
    grid-template-columns: 60px 1fr;
  }
  .achievement__year { grid-column: 2; }
}
.achievement__num {
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--fg-muted);
  transition: color 0.3s var(--ease);
}
.achievement__body { display: flex; flex-direction: column; gap: 0.35rem; }
.achievement__title {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: clamp(1.25rem, 1.8vw, 1.75rem);
  line-height: 1.15;
  letter-spacing: -0.005em;
  margin: 0;
}
.achievement__detail {
  margin: 0;
  font-size: 0.95rem;
  color: var(--fg-muted);
  max-width: 60ch;
}
.achievement__year {
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--fg-muted);
  white-space: nowrap;
}

/* Featured achievement card (NSE) */
.achievement--featured {
  display: block;
  padding: 0;
  border: 1px solid var(--rule);
  background: var(--bg);
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  overflow: hidden;
}
.achievement-list .achievement--featured:first-child { border-top: 1px solid var(--rule); }
.achievement--featured .achievement__meta {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: baseline;
  gap: clamp(1rem, 3vw, 2.5rem);
  padding: clamp(1.5rem, 3vw, 2.25rem);
}
.achievement--featured .achievement__body { gap: 0.6rem; }
@media (max-width: 700px) {
  .achievement--featured .achievement__meta {
    grid-template-columns: 60px 1fr;
  }
  .achievement--featured .achievement__year { grid-column: 2; }
}

/* Slideshow (used inside featured achievement) */
.achievement--featured > .slideshow {
  max-width: 520px;
  margin: 0 clamp(1.5rem, 3vw, 2.25rem) clamp(1.5rem, 3vw, 2.25rem) calc(80px + clamp(1rem, 3vw, 2.5rem) + clamp(1.5rem, 3vw, 2.25rem));
  border: 1px solid var(--rule);
}
@media (max-width: 700px) {
  .achievement--featured > .slideshow {
    margin-left: clamp(1.5rem, 3vw, 2.25rem);
    max-width: none;
  }
}
.slideshow {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #0a1a2a;
  overflow: hidden;
}
.slideshow__track {
  position: absolute;
  inset: 0;
}
.slideshow__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 700ms var(--ease);
  pointer-events: none;
}
.slideshow__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.slideshow__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.slideshow__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2rem 1.25rem 0.85rem;
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-7);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
}
.slideshow__dots {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  gap: 0.5rem;
  z-index: 2;
}
.slideshow__dot {
  width: 28px;
  height: 3px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 0;
  cursor: pointer;
  transition: background 200ms var(--ease);
}
.slideshow__dot:hover,
.slideshow__dot:focus-visible {
  background: rgba(255, 255, 255, 0.75);
  outline: none;
}
.slideshow__dot.is-active {
  background: var(--accent-strong);
}
@media (prefers-reduced-motion: reduce) {
  .slideshow__slide { transition: none; }
}


/* ---------- 11. Industries ---------- */
.industries { display: flex; flex-direction: column; }
.industry {
  display: flex;
  align-items: baseline;
  gap: clamp(1rem, 3vw, 2.5rem);
  padding: 1.5rem 0 1.5rem 0;
  border-bottom: 1px solid var(--rule);
  transition: padding 0.35s var(--ease), border-bottom-color 0.35s var(--ease);
}
.industry:first-child { border-top: 1px solid var(--rule); }
.industry:hover {
  padding-left: 1rem;
  border-bottom-color: var(--accent);
}
.industry:hover .industry__num { color: var(--accent-strong); }
.industry:hover .industry__name { color: var(--accent-strong); }
.industry__name { transition: color 0.3s var(--ease); }
.industry__num {
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--fg-muted);
  min-width: 3ch;
  transition: color 0.3s var(--ease);
}
.industry__name {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: clamp(1.5rem, 2.5vw, 2.75rem);
  line-height: 1.05;
  letter-spacing: -0.005em;
}


/* ---------- 12. CTA ---------- */
.cta {
  display: flex; flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 1100px;
}
.cta__heading {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: clamp(2.25rem, 5vw + 1rem, 5.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 16ch;
}
.cta__heading em { font-style: italic; color: var(--accent); }
.cta__link {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-family: var(--ff-body);
  font-weight: 300;
  font-size: clamp(1rem, 1vw + 0.5rem, 1.5rem);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid currentColor;
  align-self: flex-start;
  max-width: 100%;
  word-break: break-word;
  overflow-wrap: anywhere;
  transition: gap 0.3s var(--ease);
}
.cta__link svg { width: 18px; height: 18px; transition: transform 0.3s var(--ease); }
.cta__link:hover { gap: 1.5rem; color: var(--accent-strong); border-bottom-color: var(--accent-strong); }
.cta__link:hover svg { transform: translateX(4px); }


/* ---------- 13. Footer ---------- */
.footer {
  background: var(--c-4);
  color: var(--c-7);
  padding-top: clamp(4rem, 7vw, 6rem);
  padding-bottom: 2rem;
}
.footer__content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  border-bottom: 1px solid var(--rule-light);
}
@media (max-width: 900px) { .footer__content { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__content { grid-template-columns: 1fr; } }
.footer__title {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: clamp(1.75rem, 2.5vw, 2.5rem);
  line-height: 1.1;
  margin: 0 0 0.5rem;
}
.footer__sub {
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}
.footer__label {
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 1rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__col a {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s var(--ease);
}
.footer__col a:hover { color: var(--accent-strong); }
.footer__base {
  margin-top: 2rem;
  display: flex; justify-content: space-between; gap: 1rem;
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}
.footer__base p { margin: 0; }
@media (max-width: 560px) { .footer__base { flex-direction: column; } }
