/* DIGITAL FACTORY — Home page specific styles
   (relies on assets/style.css for tokens & shared components) */

/* ========== GRAIN OVERLAY ========== */


/* ========== NAVIGATION ========== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 22px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.35s ease, backdrop-filter 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: var(--bg-nav);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--border-paper);
}
.logo {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.02em;
}
.logo-mark {
  display: inline-block;
  width: 10px; height: 10px;
  background: var(--accent);
  border-radius: 50%;
  transform: translateY(-1px);
  position: relative;
}
.logo-mark::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  opacity: 0.3;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.4); opacity: 0; }
}
.logo em { font-style: italic; font-weight: 400; color: var(--accent-soft); }

.nav-links {
  display: flex;
  gap: 36px;
  font-size: 14px;
  font-weight: 500;
}
.nav-links a {
  position: relative;
  padding: 4px 0;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--accent-soft); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  padding: 10px 18px;
  border: 1px solid var(--border-light);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nav-cta:hover {
  border-color: var(--accent);
  color: var(--accent-soft);
}
.nav-cta::after { content: '→'; transition: transform 0.25s; }
.nav-cta:hover::after { transform: translateX(4px); }

@media (max-width: 820px) {
  .nav-links { display: none; }
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  padding: 140px var(--gutter) 80px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-content: center;
  max-width: var(--maxw);
  margin: 0 auto;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-bg::before {
  content: '';
  position: absolute;
  top: -10%; right: -10%;
  width: 60vw; height: 60vw;
  background: radial-gradient(circle at center, var(--accent-glow), transparent 60%);
  filter: blur(60px);
}
.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -20%; left: -10%;
  width: 50vw; height: 50vw;
  background: radial-gradient(circle at center, rgba(0,0,0,0), transparent 60%);
  filter: blur(80px);
}

.hero-meta {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted-2);
  margin-bottom: 44px;
  opacity: 0;
  animation: rise 0.9s ease 0.1s forwards;
}
.hero-meta .dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}

.hero h1 {
  position: relative;
  z-index: 1;
  font-family: var(--serif);
  font-size: clamp(48px, 8.5vw, 132px);
  font-weight: var(--display-weight);
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: var(--fg-page);
  max-width: 1100px;
  margin-bottom: 48px;
}
.hero h1 span {
  display: inline-block;
  opacity: 0;
  animation: rise 1s ease forwards;
}
.hero h1 span:nth-child(1) { animation-delay: 0.2s; }
.hero h1 span:nth-child(2) { animation-delay: 0.35s; }
.hero h1 span:nth-child(3) { animation-delay: 0.5s; }
.hero h1 span:nth-child(4) { animation-delay: 0.65s; }

.hero h1 em {
  font-style: italic;
  font-weight: var(--display-italic-weight);
  color: var(--accent-soft);
  font-feature-settings: "ss01";
}

@keyframes rise {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: end;
  margin-top: 60px;
  opacity: 0;
  animation: rise 0.9s ease 0.85s forwards;
}
@media (max-width: 820px) {
  .hero-row { grid-template-columns: 1fr; gap: 36px; }
}

.hero-lede {
  font-family: var(--serif);
  font-size: clamp(18px, 1.7vw, 22px);
  font-weight: var(--display-weight);
  line-height: 1.5;
  color: var(--fg-muted-soft);
  max-width: 540px;
  border-left: 1px solid var(--accent-border-soft);
  padding-left: 22px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-radius: 4px;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--accent);
  color: var(--ink);
}
.btn-primary:hover {
  background: var(--accent-soft);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -10px var(--accent-shadow);
}
.btn-ghost {
  border: 1px solid var(--border-light);
  color: var(--fg-page);
}
.btn-ghost:hover {
  border-color: var(--fg-page);
  background: var(--bg-input);
}
.btn .arrow { transition: transform 0.3s; }
.btn:hover .arrow { transform: translateX(6px); }

/* ========== TICKER ========== */
.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-footer);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
}
.ticker-track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  animation: scroll-x 38s linear infinite;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.ticker-track span {
  display: inline-flex;
  align-items: center;
  gap: 56px;
}
.ticker-track .star {
  color: var(--accent);
  font-size: 10px;
}
@keyframes scroll-x {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ========== SECTION DEFAULTS ========== */
section {
  padding: 120px var(--gutter);
  max-width: var(--maxw);
  margin: 0 auto;
  position: relative;
}
.section-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 80px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 820px) {
  .section-head { grid-template-columns: 1fr; gap: 24px; }
  section { padding: 80px var(--gutter); }
}
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: '';
  width: 30px; height: 1px;
  background: var(--accent);
}
.section-head h2 {
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 64px);
  font-weight: var(--display-weight);
  line-height: 1.05;
  letter-spacing: -0.025em;
}
.section-head h2 em { font-style: italic; color: var(--accent-soft); font-weight: 400; }

/* ========== MANIFESTO ========== */
.manifesto {
  background: var(--bg-inverted);
  color: var(--fg-inverted);
  max-width: none;
  padding: 140px var(--gutter);
  position: relative;
}
.manifesto-inner {
  max-width: var(--maxw);
  margin: 0 auto;
}
.manifesto .eyebrow { color: var(--accent); }
.manifesto .eyebrow::before { background: var(--accent); }

.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) { .manifesto-grid { grid-template-columns: 1fr; gap: 50px; } }

.manifesto-title {
  font-family: var(--serif);
  font-size: clamp(36px, 5.5vw, 80px);
  font-weight: var(--display-weight);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--fg-inverted);
}
.manifesto-title em {
  font-style: italic;
  color: var(--accent);
}
.manifesto-body {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.55;
  font-weight: var(--display-weight);
  color: var(--char);
}
.manifesto-body p { margin-bottom: 22px; }
.manifesto-body strong { font-weight: 500; color: var(--fg-inverted); opacity: 1; }
.manifesto-body .pull {
  display: block;
  font-style: italic;
  font-size: 22px;
  color: var(--accent);
  border-left: 2px solid var(--accent);
  padding: 4px 0 4px 22px;
  margin: 30px 0;
}

/* numbered manifesto points */
.principles {
  margin-top: 40px;
  display: grid;
  gap: 0;
}
.principle {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-top: 1px solid var(--line-inverted);
  align-items: baseline;
}
.principle:last-child { border-bottom: 1px solid var(--line-inverted); }
.principle .num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.1em;
}
.principle h4 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 6px;
  color: var(--fg-inverted);
}
.principle p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.55;
}

/* ========== OFFRES (CARDS) ========== */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
@media (max-width: 900px) { .offers-grid { grid-template-columns: 1fr; } }
.offer {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 40px 36px 44px;
  position: relative;
  transition: background 0.4s ease;
  cursor: default;
  min-height: 380px;
  display: flex;
  flex-direction: column;
}
.offer:hover { background: var(--accent-glow-soft); }
.offer-num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent);
  margin-bottom: 28px;
  letter-spacing: 0.12em;
}
.offer-icon {
  width: 56px; height: 56px;
  margin-bottom: 24px;
  border: 1px solid var(--line);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.4s;
}
.offer:hover .offer-icon {
  border-color: var(--accent);
  background: var(--accent-tint);
}
.offer-icon svg { width: 24px; height: 24px; stroke: var(--accent-soft); }

.offer h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.offer h3 em { font-style: italic; color: var(--accent-soft); }
.offer p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--fg-muted-soft-3);
  margin-bottom: auto;
  padding-bottom: 24px;
}
.offer ul {
  list-style: none;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.offer ul li {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding-left: 18px;
  position: relative;
}
.offer ul li::before {
  content: '+';
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* ========== METHODOLOGIE / TIMELINE ========== */
.method {
  padding-top: 80px;
}
.method-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}
.method-steps::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 6%;
  right: 6%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
  opacity: 0.5;
}
@media (max-width: 900px) {
  .method-steps { grid-template-columns: 1fr; }
  .method-steps::before { display: none; }
}
.step {
  padding: 0 20px;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.step.in-view { opacity: 1; transform: translateY(0); }
.step:nth-child(2).in-view { transition-delay: 0.12s; }
.step:nth-child(3).in-view { transition-delay: 0.24s; }
.step:nth-child(4).in-view { transition-delay: 0.36s; }

.step-circle {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--ink);
  border: 1px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 14px;
  color: var(--accent);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.step h4 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.step .step-time {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent-soft);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.step p {
  font-size: 14px;
  color: var(--fg-muted-soft-4);
  line-height: 1.55;
}

/* ========== EXPERTS ========== */
.experts {
  background: var(--bg-experts);
  max-width: none;
  padding: 140px var(--gutter);
}
.experts-inner { max-width: var(--maxw); margin: 0 auto; }

.experts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
@media (max-width: 900px) { .experts-grid { grid-template-columns: 1fr; } }

.expert-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: 32px;
  border-radius: 6px;
  position: relative;
  transition: all 0.4s ease;
}
.expert-card:hover {
  border-color: var(--accent-border-soft);
  transform: translateY(-4px);
}
.expert-portrait {
  width: 64px; height: 64px;
  border-radius: 50%;
  margin-bottom: 22px;
  background: linear-gradient(135deg, var(--accent), var(--tertiary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  position: relative;
}
.expert-portrait::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--accent-border-soft);
}
.expert-card h4 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.expert-role {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent-soft);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}
.expert-bio {
  font-size: 14px;
  line-height: 1.55;
  color: var(--fg-muted-soft-4);
  margin-bottom: 22px;
}
.expert-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.expert-tags span {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 9px;
  border: 1px solid var(--line);
  border-radius: 100px;
}

/* ========== CASES ========== */
.cases-list {
  display: flex;
  flex-direction: column;
}
.case {
  display: grid;
  grid-template-columns: 100px 1.4fr 1fr 1fr;
  gap: 30px;
  padding: 36px 0;
  border-top: 1px solid var(--line);
  align-items: start;
  transition: padding 0.3s ease;
  cursor: default;
}
.case:last-child { border-bottom: 1px solid var(--line); }
.case:hover { padding-left: 16px; }
@media (max-width: 900px) {
  .case { grid-template-columns: 1fr; gap: 12px; }
  .case:hover { padding-left: 0; }
}
.case-num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.1em;
}
.case-title h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin-bottom: 8px;
}
.case-title p {
  font-size: 13px;
  color: var(--muted-2);
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.case-result {
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.5;
  color: rgba(244, 239, 230, 0.75);
  font-style: italic;
}
.case-metric {
  text-align: right;
}
@media (max-width: 900px) { .case-metric { text-align: left; } }
.case-metric .big {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: var(--display-weight);
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.02em;
  display: block;
}
.case-metric .label {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 6px;
  display: block;
}

/* ========== METRICS BANNER ========== */
.metrics {
  background: var(--bg-inverted);
  color: var(--fg-inverted);
  max-width: none;
  padding: 100px var(--gutter);
  position: relative;
  overflow: hidden;
}
.metrics::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--fg-inverted);
  opacity: 0.15;
}
.metrics-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  align-items: end;
}
@media (max-width: 820px) { .metrics-inner { grid-template-columns: repeat(2, 1fr); } }
.metric .num {
  font-family: var(--serif);
  font-size: clamp(54px, 6.5vw, 96px);
  font-weight: var(--display-weight);
  letter-spacing: -0.04em;
  line-height: 0.9;
  color: var(--fg-inverted);
}
.metric .num em { font-style: italic; color: var(--accent); }
.metric .desc {
  font-size: 14px;
  color: var(--muted);
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line-inverted);
  line-height: 1.5;
}

/* ========== TESTIMONIAL ========== */
.testimonials {
  padding-top: 0;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media (max-width: 900px) { .testimonial-grid { grid-template-columns: 1fr; } }
.testimonial {
  border: 1px solid var(--line);
  padding: 40px;
  border-radius: 6px;
  position: relative;
  background: var(--bg-card);
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: 14px; left: 28px;
  font-family: var(--serif);
  font-size: 90px;
  color: var(--accent);
  opacity: 0.25;
  line-height: 1;
}
.testimonial blockquote {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: var(--display-weight);
  line-height: 1.45;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  color: var(--fg-muted-soft-strong);
  position: relative;
  z-index: 1;
}
.testimonial blockquote em { color: var(--accent-soft); font-style: italic; }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.testimonial-author .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 16px;
  color: var(--ink);
  font-weight: 500;
}
.testimonial-author .info strong {
  font-weight: 500;
  font-size: 14px;
  display: block;
}
.testimonial-author .info span {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ========== CTA FINAL ========== */
.cta-final {
  background: var(--ink);
  max-width: none;
  padding: 160px var(--gutter);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80vw; height: 80vw;
  max-width: 1000px; max-height: 1000px;
  background: radial-gradient(circle, var(--accent-shadow-faint), transparent 60%);
  filter: blur(50px);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; }
.cta-final h2 {
  font-family: var(--serif);
  font-size: clamp(40px, 7vw, 96px);
  font-weight: var(--display-weight);
  line-height: 1;
  letter-spacing: -0.035em;
  margin-bottom: 36px;
}
.cta-final h2 em { font-style: italic; color: var(--accent-soft); }
.cta-final p {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: var(--display-weight);
  color: var(--fg-muted-soft-2);
  margin-bottom: 50px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========== FOOTER ========== */
footer {
  background: var(--bg-footer);
  border-top: 1px solid var(--line);
  padding: 80px var(--gutter) 30px;
}
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}
@media (max-width: 820px) { .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; } }

.footer-brand .logo { margin-bottom: 22px; }
.footer-brand p {
  font-size: 14px;
  color: var(--muted-2);
  line-height: 1.6;
  max-width: 320px;
  margin-bottom: 20px;
}
.footer-brand .addr {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  line-height: 1.7;
}

.footer-col h5 {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 14px;
  color: var(--fg-muted-soft-2);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--accent-soft); }

.footer-bottom {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ========== REVEAL ON SCROLL ========== */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
