/* iTech4net — editorial cream + electric lime
   ============================================ */

:root {
  /* Paper palette */
  --paper:        oklch(0.96 0.018 85);
  --paper-2:      oklch(0.93 0.020 85);
  --paper-3:      oklch(0.89 0.022 85);
  --ink:          oklch(0.16 0.012 60);
  --ink-2:        oklch(0.30 0.012 60);
  --ink-3:        oklch(0.50 0.010 60);
  --ink-4:        oklch(0.72 0.008 70);
  --line:         oklch(0.16 0.012 60 / 0.12);
  --line-2:       oklch(0.16 0.012 60 / 0.25);

  /* Accent */
  --lime:         oklch(0.93 0.22 118);
  --lime-2:       oklch(0.85 0.22 120);
  --punch:        oklch(0.62 0.22 28);

  /* Type */
  --f-display: "Bricolage Grotesque", "Inter Tight", system-ui, sans-serif;
  --f-body:    "Inter Tight", "Inter", system-ui, sans-serif;
  --f-mono:    "Geist Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Motion */
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body {
  background-image:
    radial-gradient(circle at 0 0, transparent 0, transparent 70%, oklch(0 0 0 / 0.025) 100%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence baseFrequency='0.85' numOctaves='2' seed='3'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.045 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-attachment: fixed;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
img, svg { display: block; max-width: 100%; }
::selection { background: var(--lime); color: var(--ink); }

/* ==================== Custom cursor ==================== */
.cursor-blob {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--ink);
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  transition: width 240ms var(--ease), height 240ms var(--ease), background 240ms ease;
  will-change: transform;
}
.cursor-blob.hover {
  width: 64px;
  height: 64px;
  background: var(--lime);
}
@media (hover: none), (max-width: 720px) { .cursor-blob { display: none; } }

/* ==================== Container ==================== */
.wrap {
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 3vw, 2.5rem);
}

/* ==================== Top status bar ==================== */
.statusbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--f-mono);
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  padding: 0.5rem 0;
  overflow: hidden;
}
.statusbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 8px var(--lime);
  animation: dot-pulse 1.6s ease-in-out infinite;
}
@keyframes dot-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}
.status-time {
  font-variant-numeric: tabular-nums;
  opacity: 0.7;
}

/* ==================== Header ==================== */
.header {
  position: fixed;
  top: 32px;
  left: 0; right: 0;
  z-index: 40;
  padding: 1.125rem 0;
  border-bottom: 1px solid transparent;
  transition: background 240ms ease, backdrop-filter 240ms ease, border-color 240ms ease, padding 240ms ease;
}
.header.scrolled {
  background: oklch(0.96 0.018 85 / 0.88);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  padding: 0.875rem 0;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: -0.025em;
}
.brand-mark {
  display: inline-block;
  width: 10px; height: 10px;
  background: var(--lime);
  border: 1.5px solid var(--ink);
  transform: rotate(45deg);
  position: relative;
  top: -2px;
}
.brand sup {
  font-family: var(--f-mono);
  font-size: 0.625rem;
  font-weight: 500;
  color: var(--ink-3);
  letter-spacing: 0;
  margin-left: -0.125rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-family: var(--f-mono);
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
}
.nav-link {
  position: relative;
  padding: 0.25rem 0;
  transition: color 200ms ease;
}
.nav-link::before {
  content: "→ ";
  opacity: 0;
  display: inline-block;
  margin-right: 0;
  transform: translateX(-6px);
  transition: opacity 200ms ease, transform 200ms ease, margin-right 200ms ease;
}
.nav-link:hover::before {
  opacity: 1;
  transform: translateX(0);
  margin-right: 0.25rem;
}

/* ==================== Buttons ==================== */
.btn {
  --bg: var(--ink);
  --fg: var(--paper);
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.95rem 1.5rem;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: -0.015em;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 200ms var(--ease), color 240ms ease;
  will-change: transform;
}
.btn::before {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 0; height: 0;
  border-radius: 50%;
  background: var(--lime);
  transform: translate(-50%, -50%);
  transition: width 360ms var(--ease), height 360ms var(--ease);
  z-index: -1;
}
.btn:hover::before { width: 280%; height: 280%; }
.btn:hover { color: var(--ink); }
.btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  font-size: 0.85rem;
  margin-right: -0.4rem;
  transition: background 240ms ease, color 240ms ease, transform 240ms ease;
}
.btn:hover .btn-arrow {
  background: var(--ink);
  color: var(--lime);
  transform: rotate(-45deg);
}
.btn-outline {
  --bg: transparent;
  --fg: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-outline .btn-arrow {
  background: var(--ink);
  color: var(--paper);
}
.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

/* ==================== Hero ==================== */
.hero {
  padding: 11rem 0 4rem;
  position: relative;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  font-family: var(--f-mono);
  font-size: 0.8125rem;
  color: var(--ink-2);
  letter-spacing: 0.02em;
}
.hero-tag .tag-num {
  font-family: var(--f-mono);
  background: var(--ink);
  color: var(--paper);
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
}
.hero-tag .tag-line {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--ink);
  margin: 0 0.25rem;
}

.hero-title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(3rem, 10vw, 9rem);
  line-height: 0.92;
  letter-spacing: -0.045em;
  margin-bottom: 2.5rem;
}
.hero-title .row {
  display: block;
  overflow: hidden;
  padding: 0.05em 0;
}
.hero-title .row .word {
  display: inline-block;
  white-space: nowrap;
}
.hero-title .row > * {
  display: inline-block;
  transform: translateY(110%) rotate(4deg);
  opacity: 0;
  animation: rise-word 0.95s var(--ease-out) forwards;
}
.hero-title .row:nth-child(1) > * { animation-delay: 0.05s; }
.hero-title .row:nth-child(2) > * { animation-delay: 0.18s; }
.hero-title .row:nth-child(3) > * { animation-delay: 0.32s; }
.hero-title .row:nth-child(4) > * { animation-delay: 0.46s; }
@keyframes rise-word {
  to { transform: translateY(0) rotate(0); opacity: 1; }
}

.hero-title .accent {
  font-style: italic;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 0 0.25em;
}
.hero-title .accent::before {
  content: "";
  position: absolute;
  inset: 0.15em -0.05em;
  background: var(--lime);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  animation: highlight-grow 0.6s var(--ease-out) 0.9s forwards;
}
@keyframes highlight-grow {
  to { transform: scaleX(1); }
}

.hero-rotate {
  display: inline-block;
  position: relative;
  vertical-align: baseline;
  height: 1em;
  min-width: 5ch;
}
.hero-rotate-track {
  position: absolute;
  left: 0; top: 0;
  animation: rotate-words 12s steps(1, end) infinite;
}
.hero-rotate-track > span {
  display: block;
  height: 1em;
  white-space: nowrap;
}
@keyframes rotate-words {
  0%, 25%   { transform: translateY(0); }
  26%, 50%  { transform: translateY(-1em); }
  51%, 75%  { transform: translateY(-2em); }
  76%, 100% { transform: translateY(-3em); }
}

.hero-bot {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-top: 2rem;
}
.hero-lede {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(1.125rem, 1.5vw, 1.4rem);
  line-height: 1.4;
  max-width: 36ch;
  color: var(--ink-2);
  opacity: 0;
  animation: rise-soft 0.9s var(--ease-out) 0.7s forwards;
}
.hero-lede strong { color: var(--ink); font-weight: 600; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
  opacity: 0;
  animation: rise-soft 0.9s var(--ease-out) 0.85s forwards;
}
@keyframes rise-soft {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==================== Marquee ==================== */
.marquee {
  margin: 5rem 0 0;
  padding: 1.75rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background:
    repeating-linear-gradient(
      -8deg,
      transparent 0 28px,
      oklch(0.16 0.012 60 / 0.04) 28px 29px
    );
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  width: max-content;
  animation: scroll-track 38s linear infinite;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(1.5rem, 3vw, 2.8rem);
  letter-spacing: -0.025em;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track .item {
  display: inline-flex;
  align-items: center;
  gap: 3.5rem;
}
.marquee-track .star {
  font-size: 0.7em;
  color: var(--lime);
  -webkit-text-stroke: 1.5px var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  animation: spin-slow 8s linear infinite;
}
@keyframes spin-slow {
  to { transform: rotate(360deg); }
}
@keyframes scroll-track {
  to { transform: translateX(-50%); }
}

/* ==================== Section base ==================== */
.section {
  padding: clamp(5rem, 10vw, 9rem) 0;
  position: relative;
}
.section-tag {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--f-mono);
  font-size: 0.75rem;
  color: var(--ink-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}
.section-tag::before {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  background: var(--ink-3);
}
.section-tag .num {
  color: var(--ink);
  font-weight: 600;
}

.section-title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(2.25rem, 5vw, 4.25rem);
  line-height: 1;
  letter-spacing: -0.035em;
  margin-bottom: 1.5rem;
  max-width: 18ch;
}
.section-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--ink-3);
}
.section-lede {
  font-family: var(--f-display);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: var(--ink-2);
  line-height: 1.5;
  max-width: 50ch;
}

/* ==================== About ==================== */
.about-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}
.about-meta {
  font-family: var(--f-mono);
  font-size: 0.8125rem;
  color: var(--ink-3);
  letter-spacing: 0.02em;
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem 2.5rem;
}
.about-meta dt {
  text-transform: uppercase;
  font-size: 0.7rem;
  color: var(--ink-3);
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}
.about-meta dd {
  font-family: var(--f-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.stat-val {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
}
.stat-val .sym { color: var(--lime-2); -webkit-text-stroke: 1px var(--ink); }
.stat-lbl {
  font-family: var(--f-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--ink-3);
  letter-spacing: 0.06em;
}

/* ==================== Services list ==================== */
.svc-list {
  list-style: none;
  position: relative;
}
.svc-item {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 2rem;
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  position: relative;
  cursor: pointer;
  transition: padding 320ms var(--ease);
}
.svc-item:last-child { border-bottom: 1px solid var(--line); }
.svc-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 360ms var(--ease);
  z-index: -1;
}
.svc-item .svc-num { font-family: var(--f-mono); font-size: 0.8125rem; color: var(--ink-3); letter-spacing: 0.05em; min-width: 36px; transition: color 300ms ease; }
.svc-item .svc-name { font-family: var(--f-display); font-size: clamp(1.5rem, 3.2vw, 2.6rem); font-weight: 500; letter-spacing: -0.03em; transition: color 300ms ease, transform 360ms var(--ease); }
.svc-item .svc-tags { display: flex; gap: 0.4rem; flex-wrap: wrap; justify-content: flex-end; max-width: 200px; }
.svc-item .svc-tags span {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.3rem 0.6rem;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  color: var(--ink-2);
  white-space: nowrap;
  transition: border-color 300ms ease, color 300ms ease;
}
.svc-item .svc-arrow {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: transform 360ms var(--ease), background 300ms ease;
}
.svc-item:hover {
  padding: 2.5rem 1.5rem;
}
.svc-item:hover::before { transform: scaleY(1); }
.svc-item:hover .svc-num,
.svc-item:hover .svc-name { color: var(--paper); }
.svc-item:hover .svc-name { transform: translateX(8px); }
.svc-item:hover .svc-tags span { color: var(--paper); border-color: var(--paper); }
.svc-item:hover .svc-arrow { transform: rotate(-45deg); }

/* Hover image follower */
.svc-preview {
  position: fixed;
  pointer-events: none;
  z-index: 30;
  width: 340px;
  height: 240px;
  border-radius: 14px;
  overflow: hidden;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.85);
  transition: opacity 280ms var(--ease), transform 280ms var(--ease);
  background: var(--ink);
  box-shadow: 0 30px 80px -20px oklch(0 0 0 / 0.4);
  border: 1px solid var(--line);
}
.svc-preview.visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.svc-preview-card {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  font-family: var(--f-mono);
  color: var(--paper);
  font-size: 0.85rem;
  opacity: 0;
  transition: opacity 220ms ease;
  text-align: center;
  padding: 1.5rem;
}
.svc-preview-card.show { opacity: 1; }
.svc-preview-card svg { width: 44px; height: 44px; color: var(--lime); margin-bottom: 0.5rem; }
.svc-preview-card .pv-title { font-family: var(--f-display); font-size: 1.4rem; letter-spacing: -0.02em; color: var(--paper); }
.svc-preview-card .pv-sub { color: oklch(0.85 0.01 60); font-size: 0.75rem; }

/* ==================== Work / Réalisations ==================== */
.work {
  background: var(--paper);
  position: relative;
}
.work-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 5rem);
  margin-bottom: 5rem;
  align-items: center;
}
.work-row.reverse {
  direction: rtl;
}
.work-row.reverse > * { direction: ltr; }
.work-media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--paper-3);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 480ms var(--ease);
}
.work-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--line);
  border-radius: inherit;
  pointer-events: none;
}
.work-media image-slot { width: 100%; height: 100%; display: block; }
.work-row:hover .work-media { transform: scale(1.015); }

.work-info {
  padding: 1rem 0;
}
.work-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--f-mono);
  font-size: 0.75rem;
  color: var(--ink-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.work-eyebrow .num {
  background: var(--ink);
  color: var(--paper);
  padding: 0.18rem 0.5rem;
  border-radius: 3px;
  font-size: 0.68rem;
}
.work-title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  letter-spacing: -0.035em;
  line-height: 0.95;
  margin-bottom: 1.25rem;
}
.work-title a.work-link {
  font-family: var(--f-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  vertical-align: middle;
  padding: 0.25rem 0.65rem;
  background: var(--lime);
  color: var(--ink);
  border-radius: 999px;
  margin-left: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: background 240ms ease, transform 240ms ease;
}
.work-title a.work-link:hover {
  background: var(--ink);
  color: var(--lime);
  transform: translate(0, -2px);
}
.work-desc {
  font-family: var(--f-display);
  font-size: 1.0625rem;
  color: var(--ink-2);
  line-height: 1.55;
  margin-bottom: 1.75rem;
  max-width: 48ch;
}
.work-desc strong { color: var(--ink); font-weight: 600; }
.work-feat {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.work-feat-item {
  font-family: var(--f-mono);
  font-size: 0.8125rem;
  color: var(--ink-2);
  padding: 0.75rem 0;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.work-feat-item .ft-num {
  color: var(--ink-3);
  font-size: 0.7rem;
}
.work-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.work-stack span {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.65rem;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  color: var(--ink-2);
}

/* ==================== Process ==================== */
.process {
  background: var(--ink);
  color: var(--paper);
}
.process .section-tag { color: oklch(0.85 0.01 60); }
.process .section-tag::before { background: oklch(0.85 0.01 60); }
.process .section-tag .num { color: var(--paper); }
.process .section-title { color: var(--paper); }
.process .section-title em { color: var(--lime); font-weight: 500; font-style: normal; }
.process .section-lede { color: oklch(0.78 0.01 60); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: oklch(0.30 0.012 60);
  border: 1px solid oklch(0.30 0.012 60);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 4rem;
}
.process-step {
  padding: 2.5rem 2rem;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: background 320ms ease;
  position: relative;
  min-height: 280px;
}
.process-step:hover { background: oklch(0.20 0.012 60); }
.process-step:hover .process-step-num { color: var(--lime); }
.process-step-num {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 2.5rem;
  letter-spacing: -0.04em;
  line-height: 1;
  color: oklch(0.55 0.01 60);
  transition: color 320ms ease;
}
.process-step h3 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  margin-top: auto;
}
.process-step p {
  font-family: var(--f-display);
  font-size: 0.9375rem;
  color: oklch(0.75 0.01 60);
  line-height: 1.5;
}
.process-step-dot {
  position: absolute;
  top: 1.75rem;
  right: 2rem;
  font-family: var(--f-mono);
  font-size: 0.7rem;
  color: oklch(0.55 0.01 60);
  letter-spacing: 0.05em;
}

/* ==================== Final CTA ==================== */
.finale {
  padding: clamp(6rem, 12vw, 11rem) 0;
  text-align: center;
  position: relative;
}
.finale .ml-tag {
  font-family: var(--f-mono);
  font-size: 0.8125rem;
  color: var(--ink-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.finale h2 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(3rem, 11vw, 10rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
  margin-bottom: 2.5rem;
}
.finale h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--ink-3);
}
.finale .cta-row {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.finale-orbit {
  position: absolute;
  top: 50%; left: 50%;
  width: clamp(420px, 60vw, 720px);
  height: clamp(420px, 60vw, 720px);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: -1;
}
.finale-orbit svg {
  width: 100%;
  height: 100%;
  color: var(--ink);
  opacity: 0.10;
  animation: spin-slow 80s linear infinite;
}

/* ==================== Footer ==================== */
.footer {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  padding: 4rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer-brand h4 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin-bottom: 1rem;
}
.footer-brand p {
  font-family: var(--f-display);
  color: var(--ink-2);
  max-width: 32ch;
  font-size: 1.0625rem;
  line-height: 1.5;
}
.footer-col h5 {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a {
  font-family: var(--f-display);
  font-size: 1rem;
  color: var(--ink);
  position: relative;
  display: inline-block;
}
.footer-col a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: currentColor;
  transition: width 280ms var(--ease);
}
.footer-col a:hover::after { width: 100%; }
.footer-bot {
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: var(--f-mono);
  font-size: 0.75rem;
  color: var(--ink-3);
  letter-spacing: 0.02em;
}
.footer-mega {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(5rem, 22vw, 22rem);
  letter-spacing: -0.06em;
  line-height: 0.85;
  margin: 0 0 -0.15em;
  white-space: nowrap;
  color: var(--ink);
  text-align: center;
  overflow: hidden;
  display: flex;
  justify-content: center;
}
.footer-mega .lime { color: var(--lime-2); -webkit-text-stroke: 2px var(--ink); }

/* ==================== Reveal ==================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 900ms var(--ease-out), transform 900ms var(--ease-out);
  transition-delay: var(--delay, 0ms);
}
.reveal.in { opacity: 1; transform: none; }

.split-line {
  display: block;
  overflow: hidden;
}
.split-line > span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 900ms var(--ease-out);
  transition-delay: var(--delay, 0ms);
}
.reveal.in .split-line > span,
.split-line.in > span { transform: translateY(0); }

/* ==================== Contact page ==================== */
.contact-main { padding: 11rem 0 0; }
.contact-hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 5rem;
}
.contact-hero h1 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(3rem, 9vw, 8rem);
  line-height: 0.92;
  letter-spacing: -0.045em;
}
.contact-hero h1 em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(transparent 55%, var(--lime) 55%);
}
.contact-hero p {
  font-family: var(--f-display);
  font-size: 1.125rem;
  color: var(--ink-2);
  line-height: 1.5;
  max-width: 38ch;
  margin-bottom: 1rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  padding: 5rem 0 7rem;
  border-top: 1px solid var(--line);
}
.contact-aside h3 {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  margin-bottom: 1.5rem;
}
.contact-card {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
  transition: padding-left 280ms var(--ease);
  cursor: pointer;
}
.contact-card:last-child { border-bottom: 1px solid var(--line); }
.contact-card:hover { padding-left: 0.5rem; }
.contact-card .ct-label {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-3);
}
.contact-card .ct-val {
  font-family: var(--f-display);
  font-size: 1.4rem;
  letter-spacing: -0.02em;
}
.contact-meta {
  margin-top: 3rem;
  padding: 1.5rem;
  background: var(--ink);
  color: var(--paper);
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact-meta .meta-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 12px var(--lime);
  flex-shrink: 0;
  animation: dot-pulse 1.6s ease-in-out infinite;
}
.contact-meta .meta-text {
  font-family: var(--f-mono);
  font-size: 0.8125rem;
  line-height: 1.45;
}

.form-shell {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 2.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
  position: relative;
}
.field label {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-3);
}
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 0.85rem 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-2);
  font-family: var(--f-display);
  font-size: 1.15rem;
  color: var(--ink);
  transition: border-color 280ms ease, padding 280ms ease;
  border-radius: 0;
  letter-spacing: -0.01em;
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-4); }
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-bottom-color: var(--ink);
  padding-left: 0.5rem;
}
.field textarea { min-height: 130px; resize: vertical; line-height: 1.5; }
.field select { appearance: none; cursor: pointer; padding-right: 1.5rem; background: transparent url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23404040' stroke-width='2'><polyline points='6 9 12 15 18 9'/></svg>") no-repeat right center; }

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.25rem;
}
.chip-row input[type="checkbox"] { position: absolute; opacity: 0; pointer-events: none; }
.chip-row label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.85rem;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 0.78rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink-2);
  cursor: pointer;
  transition: all 220ms ease;
}
.chip-row label:hover { border-color: var(--ink); color: var(--ink); }
.chip-row input:checked + label {
  background: var(--ink);
  color: var(--lime);
  border-color: var(--ink);
}
.chip-row input:checked + label::before {
  content: "✓";
  font-weight: 700;
}

.field-budget {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.field-budget .bv {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.6rem;
  letter-spacing: -0.03em;
  background: linear-gradient(transparent 55%, var(--lime) 55%);
  padding: 0 0.2em;
}
.field-budget .bs {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
input[type="range"] {
  appearance: none;
  width: 100%;
  height: 4px;
  background: var(--paper-3);
  border-radius: 2px;
  cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--lime);
  border: 2px solid var(--ink);
  cursor: pointer;
  transition: transform 200ms ease;
}
input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.2); }
input[type="range"]::-moz-range-thumb {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--lime);
  border: 2px solid var(--ink);
  cursor: pointer;
}

.form-foot {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.form-foot small {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  padding: 0.875rem 1.5rem;
  background: var(--ink);
  color: var(--paper);
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  z-index: 9999;
  opacity: 0;
  transition: opacity 320ms ease, transform 320ms var(--ease);
  box-shadow: 0 20px 60px -10px oklch(0 0 0 / 0.4);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast .tk {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.7rem;
}

/* ==================== Responsive ==================== */
@media (max-width: 960px) {
  .hero { padding-top: 9rem; }
  .hero-bot { grid-template-columns: 1fr; gap: 2rem; }
  .hero-actions { justify-content: flex-start; }
  .about-row { grid-template-columns: 1fr; gap: 3rem; }
  .work-row { grid-template-columns: 1fr; gap: 2rem; }
  .work-row.reverse { direction: ltr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .contact-hero { grid-template-columns: 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .form-shell { padding: 1.75rem; }
}
@media (max-width: 640px) {
  .header { top: 28px; }
  .nav-links { display: none; }
  .nav-links.mobile-show {
    display: flex;
    position: fixed;
    inset: 60px 0 0;
    flex-direction: column;
    background: var(--paper);
    padding: 2rem;
    gap: 1rem;
    font-size: 1.25rem;
  }
  .svc-item { grid-template-columns: auto 1fr; gap: 1rem; }
  .svc-item .svc-tags, .svc-item .svc-arrow { display: none; }
  .process-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .about-meta { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: 1fr; gap: 1rem; }
  .work-feat { grid-template-columns: 1fr; }
}

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