/* =============================================================
   DESIGN TOKENS
============================================================= */
:root {
  --accent:         #4493fa;
  --bg-base:        #0a0a0c;
  --bg-surface:     #0f0f12;
  --border:         #2a2a2e;
  --text-primary:   #ffffff;
  --text-secondary: #cccccc;
  --text-muted:     #999999;
  --text-dim:       #666666;
  --status-green:   #34d27b;
  --font:           'Inter', system-ui, sans-serif;

  --radius-pill: 999px;
  --radius-card: 10px;
  --radius-img:  6px;

  --section-px: 48px;
  --section-py: 104px;
}

/* =============================================================
   KEYFRAMES
============================================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes ringPing {
  0%        { opacity: 0.5; transform: scale(0.45); }
  80%, 100% { opacity: 0;   transform: scale(1.9);  }
}
@keyframes hubPulse {
  0%, 100% { transform: scale(1);    }
  50%      { transform: scale(1.08); }
}
@keyframes pulseTravel {
  from { stroke-dashoffset: 260; }
  to   { stroke-dashoffset: 0;   }
}

/* =============================================================
   RESET & BASE
============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background:             var(--bg-base);
  color:                  var(--text-primary);
  font-family:            var(--font);
  -webkit-font-smoothing: antialiased;
  min-height:             100vh;
  overflow-x:             hidden;
}
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-weight: 700; }

/* =============================================================
   UTILITIES
============================================================= */
.text-accent { color: var(--accent); }

.section-label {
  font-size:      14px;
  font-weight:    500;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color:          var(--text-dim);
  margin-bottom:  52px;
}

.fade-up         { animation: fadeUp 0.6s ease forwards; }
.fade-up-delayed { animation: fadeUp 0.7s ease 0.1s both; }

/* =============================================================
   BUTTONS
============================================================= */
.btn {
  display:       inline-flex;
  align-items:   center;
  gap:           9px;
  padding:       14px 24px;
  border-radius: var(--radius-pill);
  font-size:     15px;
  font-weight:   600;
  cursor:        pointer;
  transition:    transform 0.15s ease, box-shadow 0.2s ease,
                 background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.btn--primary {
  background: var(--accent);
  color:      #0a0a0c;
  border:     none;
}
.btn--primary:hover {
  transform:  translateY(-2px);
  box-shadow: 0 10px 30px rgba(68,147,250,.35);
}
.btn--outline {
  background:  transparent;
  color:       var(--text-primary);
  border:      0.5px solid #3a3a3f;
  font-weight: 500;
}
.btn--outline:hover {
  border-color: var(--text-primary);
  background:   rgba(255,255,255,.07);
  transform:    translateY(-2px);
}
.btn--ghost {
  display:       inline-flex;
  align-items:   center;
  padding:       9px 18px;
  border-radius: var(--radius-pill);
  font-size:     14px;
  font-weight:   600;
  color:         var(--text-primary);
  border:        0.5px solid var(--border);
  transition:    background 0.2s ease, border-color 0.2s ease,
                 color 0.2s ease, transform 0.15s ease;
}
.btn--ghost:hover {
  background:   var(--accent);
  border-color: var(--accent);
  color:        #0a0a0c;
  transform:    translateY(-1px);
}

/* =============================================================
   CHIPS
============================================================= */
.chip-group { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  padding:       8px 15px;
  border:        0.5px solid var(--border);
  border-radius: var(--radius-pill);
  background:    var(--bg-surface);
  font-size:     14px;
  color:         var(--text-secondary);
}

/* =============================================================
   HEADER
============================================================= */
.site-header {
  position:        sticky;
  top:             0;
  z-index:         10;
  display:         flex;
  align-items:     center;
  justify-content: space-between;
  padding:         16px 64px;
  background:      rgba(10,10,12,.85);
  backdrop-filter: blur(12px);
  border-bottom:   none;
}
.logo {
  font-size:      14px;
  font-weight:    600;
  color:          var(--text-muted);
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.nav { display: flex; align-items: center; gap: 30px; }
.nav__link {
  font-size:     14px;
  color:         var(--text-secondary);
  padding:       7px 14px;
  border-radius: var(--radius-pill);
  transition:    color 0.2s ease, background 0.2s ease;
}
.nav__link:hover { color: var(--text-primary); background: rgba(255,255,255,.07); }

/* =============================================================
   HERO
============================================================= */
.hero {
  position:    relative;
  display:     grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap:         56px;
  align-items: center;
  padding:     72px 64px;
  min-height:  calc(100vh - 71px);
  overflow:    hidden;
}
.hero__glow {
  position:       absolute;
  top:            -120px;
  left:           -140px;
  width:          520px;
  height:         520px;
  border-radius:  50%;
  background:     radial-gradient(circle, rgba(68,147,250,.16), transparent 65%);
  pointer-events: none;
}
.hero__content {
  position:       relative;
  display:        flex;
  flex-direction: column;
  gap:            30px;
  max-width:      700px;
}

/* Headline */
.hero__headline {
  /* 48 max, matching the <=1600 step — at 62 the type outgrew the box on
     very wide screens and the headline spilled to a 4th line */
  font-size:      clamp(38px, 4.6vw, 48px);
  font-weight:    700;
  line-height:    1.06;
  letter-spacing: -0.02em;
  color:          var(--text-primary);
  /* 700 so the box keeps up with the type on wide screens — at 600 the
     headline stayed narrow while the font grew to 48px and spilled to a
     4th line. Below ~1400 the hero grid column is the binding limit. */
  max-width:      720px;
  text-wrap:      balance;
}

/* Stats */
.stats-row { display: flex; align-items: stretch; margin-top: 30px; }
.stat {
  display:        flex;
  flex-direction: column;
  gap:            5px;
  padding-right:  26px;
}
.stat--bordered { padding: 0 26px; border-left: none; }
.stat__value { font-size: 26px; font-weight: 700; color: var(--text-primary); letter-spacing: -0.01em; }
.stat__label { font-size: 14px; line-height: 1.4; color: var(--text-muted); }

/* CTAs */
.hero__ctas { display: flex; align-items: center; gap: 14px; margin-top: 20px; }

/* Featured case card */
.featured-case { position: relative; }
.case-card {
  position:      relative;
  background:    var(--bg-surface);
  border-top:    2px solid #125bba;
  border-radius: var(--radius-card);
  overflow:      hidden;
  box-shadow:    0 30px 80px rgba(0,0,0,.55);
}
.case-card__header {
  display:         flex;
  align-items:     center;
  justify-content: space-between;
  padding:         18px 22px 14px;
}
.case-card__label {
  font-size:      14px;
  font-weight:    600;
  color:          var(--accent);
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.case-card__counter { font-size: 14px; color: var(--text-dim); letter-spacing: 0.5px; }
.case-card__image {
  position:        relative;
  margin:          0 22px;
  aspect-ratio:    16 / 10;
  border-radius:   8px;
  overflow:        hidden;
  background:      repeating-linear-gradient(135deg, #16161a 0 14px, #101014 14px 28px);
  display:         flex;
  align-items:     center;
  justify-content: center;
}
.case-card__image img {
  position:   absolute;
  inset:      0;
  width:      100%;
  height:     100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}
.case-card__placeholder {
  font-family:    ui-monospace, 'SF Mono', Menlo, monospace;
  font-size:      14px;
  color:          #5a5a62;
  letter-spacing: 0.5px;
}
.case-card__body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 12px; transition: opacity 0.3s ease; }
.case-card__body.fading { opacity: 0; }
.case-card__meta { display: flex; flex-direction: column; gap: 12px; }
.case-card__tag   { font-size: 14px; font-weight: 600; color: var(--accent); letter-spacing: 0.6px; }
.case-card__title { font-size: 21px; font-weight: 700; line-height: 1.3; color: var(--text-primary); margin-top: -6px; }
.case-card__desc  { font-size: 14px; line-height: 1.55; color: rgba(153,153,153,.85); min-height: 44px; }
.case-card__footer {
  display:         flex;
  align-items:     center;
  justify-content: space-between;
  margin-top:      6px;
  padding-top:     16px;
  border-top:      0.5px solid var(--border);
}
.case-card__link { font-size: 14px; font-weight: 500; color: var(--text-primary); transition: color 0.2s ease; }
.case-card__link:hover { color: var(--accent); }

.case-dots { display: flex; gap: 7px; align-items: center; }
.case-dot { height: 3px; border-radius: 2px; background: var(--border); width: 7px; transition: width 0.45s ease, background 0.45s ease; }
.case-dot--active { width: 18px; background: var(--accent); }

/* =============================================================
   ABOUT
============================================================= */
.about {
  border-top: 0.5px solid var(--border);
  padding:    var(--section-py) var(--section-px);
  background: var(--bg-base);
}
.about__grid {
  display:               grid;
  grid-template-columns: 1fr 0.65fr;
  gap:                   36px;
  align-items:           center;
}

/* Animation column */
.about__animation { order: 1; overflow: visible; }
.network-wrap { position: relative; width: 100%; overflow: visible; }
.network-svg {
  display:    block;
  width:      100%;
  height:     auto;
  overflow:   visible;
  font-family: var(--font);
  position:    relative;
}

.network-svg .node-circle {
  transform-box:    fill-box;
  transform-origin: center;
  transition: opacity 0.4s ease, transform 0.55s cubic-bezier(0.34,1.56,0.64,1), fill 0.6s ease;
}
.network-svg .node-ring {
  transform-box:    fill-box;
  transform-origin: center;
  animation:        ringPing 1.5s ease-out infinite;
  transition:       opacity 0.4s ease;
}
.network-svg .hub-ring {
  transform-box:    fill-box;
  transform-origin: center;
  animation:        ringPing 3s ease-out infinite;
}
.network-svg .hub-core {
  transform-box:    fill-box;
  transform-origin: center;
  animation:        hubPulse 3.4s ease-in-out infinite;
  filter:           drop-shadow(0 0 12px rgba(68,147,250,.55));
}
.network-svg .node-line {
  stroke-linecap: round;
  transition:     stroke-dashoffset 0.6s cubic-bezier(0.22,1,0.36,1), opacity 0.6s ease;
}
.network-svg .pulse-line {
  stroke-linecap:   round;
  stroke-dasharray: 4 240;
  animation:        pulseTravel 1.9s linear infinite;
  transition:       opacity 0.5s ease;
}
.network-svg .perimeter {
  fill:            none;
  stroke-linejoin: round;
  transition:      stroke-dashoffset 0.9s cubic-bezier(0.22,1,0.36,1), opacity 0.7s ease;
}

.hub-label {
  position:       absolute;
  left:           50%;
  top:            48.67%;
  transform:      translate(-50%, -50%);
  font-size:      clamp(11px, 3vw, 18px);
  font-weight:    600;
  letter-spacing: 0.2px;
  color:          #ffffff;
  pointer-events: none;
  text-align:     center;
  line-height:    1.3;
}

.network-pills { pointer-events: none; }
.network-pill {
  position:      absolute;
  display:       inline-block;
  padding:       4px 11px;
  border-radius: var(--radius-pill);
  font-size:     14px;
  font-weight:   500;
  letter-spacing: 0.2px;
  white-space:   nowrap;
  box-shadow:    0 2px 10px rgba(0,0,0,.35);
  transition:    opacity 0.5s ease, color 0.5s ease,
                 background 0.6s ease, border-color 0.6s ease;
}

.stats-overlay {
  position:                absolute;
  bottom:                  22%;
  left:                    50%;
  z-index:                 2;
  padding:                 16px 20px;
  background:              rgba(15,15,18,.78);
  backdrop-filter:         blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border:                  0.5px solid var(--border);
  border-radius:           16px;
  box-shadow:              0 16px 48px rgba(0,0,0,.55);
  display:                 flex;
  flex-direction:          column;
  gap:                     7px;
}
.stats-overlay__label { font-size: 14px; font-weight: 600; color: var(--accent); letter-spacing: 1.5px; text-transform: uppercase; }
.stats-overlay__value { display: flex; align-items: baseline; gap: 10px; font-variant-numeric: tabular-nums; }
.stats-overlay__value span:first-child,
.stats-overlay__value span:last-child { font-size: 28px; font-weight: 700; color: var(--text-primary); letter-spacing: -0.02em; line-height: 1; }
.stats-overlay__arrow { font-size: 22px; font-weight: 400; color: #bdbdc4; line-height: 1; }
.stats-overlay__sub { font-size: 14px; color: var(--text-muted); }

/* Text column */
.about__text { order: 2; display: flex; flex-direction: column; gap: 38px; }
.about__quote {
  text-indent:    -0.42em;
  font-size:      clamp(26px, 2.7vw, 38px);
  font-weight:    600;
  line-height:    1.32;
  letter-spacing: -0.01em;
  color:          var(--text-primary);
  max-width:      660px;
}
.about__body {
  display:        flex;
  flex-direction: column;
  gap:            18px;
  font-size:      17px;
  line-height:    1.7;
  color:          rgba(153,153,153,.85);
  max-width:      600px;
}

/* =============================================================
   WORK
============================================================= */
.work {
  border-top: none;
  padding:    var(--section-py) var(--section-px);
}
.work-grid {
  display:               grid;
  grid-template-columns: repeat(3, 1fr);
  gap:                   2px;
}
.work-card {
  display:        flex;
  flex-direction: column;
  gap:            16px;
  padding:        28px 28px 24px;
  border-top:     none;
  background:     var(--bg-base);
  cursor:         pointer;
  transition:     transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
  position:       relative;
}
.work-card:hover {
  transform:  translateY(-4px);
  background: #13131a;
  box-shadow: 0 12px 40px rgba(0,0,0,0.45), 0 0 0 0.5px rgba(68,147,250,0.18);
  z-index:    1;
}
.work-card:hover .work-card__link {
  color: var(--accent);
}
.work-card:hover .work-card__image img {
  transform: scale(1.03);
}
.work-card--accent { border-top: 1.5px solid var(--accent); }
.work-card__tag   { font-size: 14px; font-weight: 600; color: var(--accent); letter-spacing: 1.2px; text-transform: uppercase; }
.work-card__title { font-size: 18px; font-weight: 700; color: var(--text-primary); line-height: 1.3; margin-top: -8px; }
.work-card__image {
  aspect-ratio:  16 / 10;
  border-radius: var(--radius-img);
  overflow:      hidden;
  position:      relative;
  background:    repeating-linear-gradient(135deg, #16161a 0 14px, #101014 14px 28px);
}
.work-card__image img {
  position:   absolute;
  inset:      0;
  width:      100%;
  height:     100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.work-card__link { font-size: 14px; color: var(--text-secondary); padding-top: 4px; transition: color 0.2s ease; }
.work-card__link:hover { color: var(--accent); }

/* =============================================================
   FOOTER
============================================================= */
.footer {
  border-top: none;
  padding:    80px var(--section-px) 40px;
  background: var(--bg-base);
}
.footer__cta {
  font-size:      clamp(24px, 3vw, 40px);
  font-weight:    600;
  line-height:    1.3;
  color:          var(--text-primary);
  max-width:      600px;
  letter-spacing: -0.01em;
  margin-bottom:  72px;
}
.footer__columns {
  display:               grid;
  grid-template-columns: repeat(3, 1fr);
  gap:                   32px;
  padding-bottom:        56px;
  border-bottom:         none;
}
.footer__col { display: flex; flex-direction: column; gap: 14px; }
.footer__col-label { font-size: 14px; font-weight: 600; color: var(--text-dim); letter-spacing: 1.4px; text-transform: uppercase; }
.footer__col-item  { font-size: 15px; color: var(--text-secondary); line-height: 1.6; }
.footer__col-link {
  font-size:     15px;
  color:         var(--text-secondary);
  padding:       7px 14px;
  border-radius: var(--radius-pill);
  margin-left:   -14px;
  display:       inline-block;
  transition:    color 0.2s ease, background 0.2s ease;
}
.footer__col-link:hover  { color: var(--text-primary); background: rgba(255,255,255,.07); }
.footer__col-link:active { color: var(--text-primary); background: rgba(255,255,255,.13); }
.footer__bottom {
  display:         flex;
  align-items:     center;
  justify-content: space-between;
  padding-top:     28px;
  font-size:       14px;
  color:           #555555;
}

/* =============================================================
   RESPONSIVE
============================================================= */
@media (max-width: 1024px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__animation { order: 2; }
  .about__text { order: 1; }
  .network-svg { margin-left: 0; }
}

@media (max-width: 1600px) {
  .hero { padding: 56px 48px; gap: 48px; }
  .hero__content { gap: 24px; }
  .hero__headline { font-size: clamp(34px, 3.2vw, 48px); }
}

@media (max-width: 1200px) {
  .hero { padding: 48px 40px; gap: 40px; }
  .hero__headline { font-size: clamp(30px, 3vw, 38px); }
}

@media (max-width: 900px) {
  :root { --section-px: 24px; }
  .site-header { padding: 22px var(--section-px); }
  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 48px var(--section-px) 64px;
    min-height: auto;
  }
  .hero__content { max-width: none; }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .stats-row { flex-direction: column; gap: 18px; }
  .stat { padding: 0; }
  .stat--bordered { border-left: none; }
  .nav { gap: 12px; }
  .hero__ctas { flex-wrap: wrap; }
  .work-grid { grid-template-columns: 1fr; }
  .footer__columns { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* =============================================================
   MOBILE — ≤768px
============================================================= */

/* Burger button (hidden on desktop) */
.burger {
  display:          none;
  background:       none;
  border:           none;
  padding:          8px;
  cursor:           pointer;
  flex-direction:   column;
  gap:              5px;
  align-items:      center;
  justify-content:  center;
  min-width:        44px;
  min-height:       44px;
  -webkit-tap-highlight-color: transparent;
}
.burger-line {
  width:            22px;
  height:           1.5px;
  background:       var(--text-primary);
  border-radius:    1px;
  transition:       transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.burger.is-open .burger-line:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.is-open .burger-line:nth-child(2) { opacity: 0; }
.burger.is-open .burger-line:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Menu overlay (hidden by default) */
.menu-overlay {
  display:        none;
  position:       fixed;
  inset:          0;
  z-index:        80;
  background:     rgba(11,11,11,0.98);
  flex-direction: column;
  opacity:        0;
  transition:     opacity 0.3s ease;
}
.menu-overlay.is-open { display: flex; opacity: 1; }
.menu-overlay__header {
  display:         flex;
  align-items:     center;
  justify-content: space-between;
  height:          52px;
  padding:         0 20px;
}
.menu-overlay__close {
  background: none;
  border:     none;
  cursor:     pointer;
  width:      44px;
  height:     44px;
  display:    flex;
  align-items:     center;
  justify-content: center;
  color: var(--text-primary);
}
.menu-overlay__nav {
  padding:         44px 20px;
  flex:            1;
  display:         flex;
  flex-direction:  column;
  justify-content: center;
  gap:             4px;
}
.menu-link {
  display:         block;
  font-size:       44px;
  font-weight:     800;
  color:           var(--text-primary);
  text-decoration: none;
  letter-spacing:  -0.04em;
  line-height:     1.1;
  padding:         6px 0;
}
.menu-link--muted { color: rgba(240,240,240,0.25); }
.menu-overlay__footer {
  padding:   24px 20px;
  font-size: 14px;
  color:     rgba(240,240,240,0.35);
}

@media (max-width: 768px) {
  /* Nav */
  .site-header {
    padding: 0 20px;
    height:  52px;
  }
  .site-header .logo { font-size: 15px; }
  .nav  { display: none; }
  .burger { display: flex; }

  /* Hero — single column */
  .hero {
    grid-template-columns: 1fr;
    gap:         32px;
    padding:     28px 20px 44px;
    min-height:  auto;
  }
  .hero__glow { display: none; }
  .hero__content { max-width: none; order: 1; min-width: 0; }

  .hero__headline {
    font-size:      30px;
    margin-bottom:  28px;
    letter-spacing: -0.03em;
  }

  .stats-row {
    flex-direction: column;
    gap:            0;
    border-top:     1px solid rgba(240,240,240,0.07);
    margin-bottom:  28px;
  }
  .stat {
    display:       flex;
    flex-direction: row;
    align-items:   center;
    gap:           16px;
    padding:       14px 0;
    border-bottom: 1px solid rgba(240,240,240,0.05);
    border-right:  none;
  }
  .stat--bordered {
    border-left:  none;
    padding-left: 0;
  }
  .stat__value {
    font-size:   48px;
    min-width:   68px;
    line-height: 1;
    flex-shrink: 0;
  }
  .stat__label { font-size: 14px; line-height: 1.45; }

  .hero__ctas {
    flex-direction: column;
    gap:            10px;
  }
  .btn--primary {
    display:    block;
    text-align: center;
    padding:    15px 20px;
    width:      100%;
  }
  .btn--outline {
    display:    block;
    text-align: center;
    padding:    12px 20px;
    width:      100%;
  }

  /* Featured case — full-width below hero content */
  .featured-case {
    order:         2;
    width:         100%;
    max-width:     none;
    min-width:     0;
    margin:        0;
  }
  .case-card {
    border-radius: 12px;
    border:        1px solid rgba(240,240,240,0.07);
    overflow:      hidden;
  }
  .case-card__header {
    padding: 12px 16px;
  }
  .case-card__image {
    height:        210px;
    border-radius: 0;
    cursor:        pointer;
  }
  .case-card__body { padding: 16px; }
  .case-card__title { font-size: 17px; }
  .case-card__desc  { display: none; }

  /* About section — hide animation, show text only */
  .about {
    padding: 44px 20px 44px;
  }
  .about__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .about__animation { display: none; }
  .about__text      { order: 1; }
  .about__quote {
    font-size:     22px;
    margin-bottom: 20px;
  }
  .about__body p    { font-size: 14px; }
  .chip-group       { gap: 6px; }
  .chip             { font-size: 14px; padding: 5px 12px; }

  /* Work section */
  .work { padding: 44px 20px 44px; }
  .work-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .work-card {
    display:               grid;
    grid-template-columns: 1fr auto;
    grid-template-rows:    auto auto auto;
    grid-template-areas:
      "img   img"
      "tag   arrow"
      "title title";
    gap:           0;
    padding:       0;
    border-top:    none;
    border-bottom: none;
    border-radius: 16px;
    overflow:      hidden;
    margin-bottom: 0;
    background:    #18181e;
    cursor:        pointer;
  }
  .work-card:last-child { margin-bottom: 0; }
  .work-card--accent { border-top: none; }
  .work-card__image {
    grid-area:     img;
    aspect-ratio:  none;
    height:        220px;
    border-radius: 0;
    width:         100%;
    overflow:      hidden;
  }
  .work-card__image img {
    width:      100%;
    height:     100%;
    object-fit: cover;
  }
  .work-card__tag {
    grid-area:   tag;
    font-size:   14px;
    padding:     20px 20px 6px;
    align-self:  center;
  }
  .work-card__title {
    grid-area:  title;
    font-size:  18px;
    padding:    0 20px 22px;
  }
  .work-card__link {
    grid-area:       arrow;
    display:         flex;
    align-items:     center;
    padding:         20px 20px 6px;
    font-size:       0;
    color:           var(--text-primary);
    text-decoration: none;
  }
  .work-card__link::after {
    content:   '→';
    font-size: 20px;
  }

  /* Section label */
  .section-label { margin-bottom: 14px; }

  /* Footer */
  .footer {
    padding: 36px 20px 44px;
  }
  .footer__cta {
    font-size:     26px;
    margin-bottom: 26px;
  }
  .footer__columns {
    grid-template-columns: 1fr;
    gap:                   24px;
    margin-bottom:         40px;
  }
  .footer__bottom {
    flex-direction: column;
    gap:            4px;
    align-items:    flex-start;
  }
}
