@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Space+Grotesk:wght@500;700&display=swap');

*, *::before, *::after { box-sizing: border-box; }

:root {
  --bg: #08090A;
  --surface: #101113;
  --surface-2: #16181B;
  --border: #202225;
  --border-hi: #303338;
  --text: #F7F8F8;
  --muted: #9BA1A8;
  --accent: #3B82F6;
  --accent-soft: rgba(59,130,246,0.14);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.loading { overflow: hidden; }

.wrap { max-width: 1140px; margin: 0 auto; padding: 0 32px; }
.accent { color: var(--accent); }

h1, h2, h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0;
  line-height: 1.05;
}

p { margin: 0; }
a { text-decoration: none; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }

/* ---------- grain ---------- */
.grain {
  position: fixed;
  inset: -50%;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grainShift 0.6s steps(2) infinite;
}
@keyframes grainShift {
  0% { transform: translate(0,0); }
  50% { transform: translate(-2%, 1%); }
  100% { transform: translate(1%, -2%); }
}

/* ---------- custom cursor ---------- */
.cursor { position: fixed; top: 0; left: 0; z-index: 9999; pointer-events: none; mix-blend-mode: difference; opacity: 0; }
.cursor.on { opacity: 1; }
.cursor-dot {
  position: absolute; width: 6px; height: 6px; border-radius: 50%;
  background: #fff; transform: translate(-50%,-50%);
}
.cursor-ring {
  position: absolute; width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.6); transform: translate(-50%,-50%);
  transition: width 0.28s var(--ease), height 0.28s var(--ease), background 0.28s var(--ease), border-color 0.28s var(--ease);
}
.cursor.link .cursor-ring { width: 58px; height: 58px; background: rgba(255,255,255,0.12); border-color: transparent; }
.cursor.card .cursor-ring { width: 74px; height: 74px; border-color: rgba(255,255,255,0.35); }
.cursor.view .cursor-ring { width: 88px; height: 88px; background: rgba(255,255,255,0.9); border-color: transparent; }
.cursor.view .cursor-dot { opacity: 0; }
.cursor-ring::after {
  content: attr(data-label); position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; letter-spacing: 1px; text-transform: uppercase;
  font-weight: 500; color: #000; opacity: 0;
}
.cursor.view .cursor-ring::after { opacity: 1; content: 'View'; }

/* ---------- loader ---------- */
.loader {
  position: fixed; inset: 0; z-index: 10000; background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}
.loader.done { opacity: 0; visibility: hidden; }
.loader-inner { display: flex; flex-direction: column; align-items: center; gap: 22px; }
.loader-mark { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 26px; letter-spacing: -0.03em; }
.loader-bar { width: 180px; height: 2px; background: var(--border); overflow: hidden; }
.loader-bar span { display: block; height: 100%; width: 0%; background: var(--accent); transition: width 0.15s linear; }
.loader-count { font-size: 12px; color: var(--muted); font-variant-numeric: tabular-nums; letter-spacing: 1px; }

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(8,9,10,0.7);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: transform 0.4s var(--ease), border-color 0.3s ease, background 0.3s ease;
}
.nav.scrolled { border-bottom-color: var(--border); }
.nav.hidden { transform: translateY(-100%); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }

.mark { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 18px; letter-spacing: -0.03em; }

.links { display: flex; gap: 34px; }
.links a { font-size: 14px; font-weight: 500; color: var(--muted); position: relative; overflow: hidden; height: 20px; display: block; }
.links a span { display: block; transition: transform 0.4s var(--ease), color 0.3s ease; }
.links a::after {
  content: attr(data-x); position: absolute; left: 0; top: 100%;
}
.links a:hover span { transform: translateY(-2px); color: var(--text); }
.links a::before {
  content: ''; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px;
  background: var(--accent); transform: scaleX(0); transform-origin: right;
  transition: transform 0.42s var(--ease);
}
.links a:hover::before { transform: scaleX(1); transform-origin: left; }

.menu-btn { display: none; background: none; border: 0; padding: 8px; cursor: pointer; flex-direction: column; gap: 5px; }
.menu-btn span { display: block; width: 22px; height: 1.5px; background: var(--text); transition: transform 0.3s var(--ease), opacity 0.3s ease; }
.menu-btn.open span:first-child { transform: translateY(3.25px) rotate(45deg); }
.menu-btn.open span:last-child { transform: translateY(-3.25px) rotate(-45deg); }

.mobile-menu {
  position: fixed; top: 76px; left: 0; right: 0; z-index: 99;
  background: var(--bg); border-bottom: 1px solid var(--border);
  display: flex; flex-direction: column;
  max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease);
}
.mobile-menu.open { max-height: 300px; }
.mobile-menu a {
  padding: 18px 32px; font-size: 17px; font-weight: 500;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-child { border-bottom: 0; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 26px; border-radius: 7px;
  font-size: 14px; font-weight: 500; position: relative;
  transition: background 0.28s var(--ease), border-color 0.28s var(--ease), color 0.28s var(--ease), transform 0.2s var(--ease);
  will-change: transform;
}
.btn-small { padding: 9px 19px; border: 1px solid var(--border-hi); }
.btn-small:hover { background: var(--surface-2); }
.btn-lg { padding: 17px 34px; font-size: 15px; }

.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: #2f74e8; }
.btn-ghost { border: 1px solid var(--border-hi); color: var(--text); }
.btn-ghost:hover { background: var(--surface-2); border-color: #3c4046; }

.wa-icon {
  display: inline-block; width: 17px; height: 17px; flex-shrink: 0;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51l-.57-.01c-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884a9.82 9.82 0 016.988 2.898 9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893A11.821 11.821 0 0020.465 3.488'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51l-.57-.01c-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884a9.82 9.82 0 016.988 2.898 9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893A11.821 11.821 0 0020.465 3.488'/%3E%3C/svg%3E") center/contain no-repeat;
}

.arrow { display: inline-block; transition: transform 0.32s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- eyebrow ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); font-weight: 500; margin-bottom: 20px;
}
.tick { width: 16px; height: 1px; background: var(--accent); }
.pulse-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); position: relative; }
.pulse-dot::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  background: var(--accent); animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(3.2); opacity: 0; }
}

.lead { font-size: 18px; color: var(--muted); line-height: 1.65; max-width: 560px; }

/* ---------- hero ---------- */
.hero { position: relative; padding: 190px 0 120px; overflow: hidden; }
.hero-glow {
  position: absolute; top: -180px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 620px; pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(59,130,246,0.16), transparent 62%);
  filter: blur(30px);
}
.hero-inner { position: relative; }
.hero-title { font-size: clamp(42px, 8vw, 88px); margin: 8px 0 30px; }
.hero-title .line { display: block; overflow: hidden; padding-bottom: 0.06em; }
.hero-title .word {
  display: inline-block; transform: translateY(105%);
  opacity: 0;
}
.hero-title.go .word { animation: wordUp 0.95s var(--ease) forwards; }
@keyframes wordUp { to { transform: translateY(0); opacity: 1; } }

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 38px; }

.scroll-hint {
  position: absolute; bottom: 46px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted);
}
.scroll-line { width: 1px; height: 46px; background: var(--border-hi); position: relative; overflow: hidden; }
.scroll-line i { position: absolute; top: 0; left: 0; width: 100%; height: 40%; background: var(--accent); animation: scrollDrop 2.1s var(--ease) infinite; }
@keyframes scrollDrop { 0% { transform: translateY(-100%); } 100% { transform: translateY(250%); } }

/* ---------- marquee ---------- */
.marquee-band { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 22px 0; background: var(--surface); }
.marquee { overflow: hidden; white-space: nowrap; }
.marquee-track { display: inline-flex; align-items: center; gap: 30px; animation: scrollX 34s linear infinite; }
.marquee-track span { font-family: 'Space Grotesk', sans-serif; font-size: 17px; font-weight: 500; color: var(--muted); letter-spacing: -0.01em; }
.marquee-track .sep { color: var(--accent); font-size: 12px; }
@keyframes scrollX { to { transform: translateX(-33.333%); } }

/* ---------- stats ---------- */
.stats { padding: 76px 0; border-bottom: 1px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.stat { display: flex; flex-direction: column; gap: 8px; }
.stat .num { font-family: 'Space Grotesk', sans-serif; font-size: 42px; font-weight: 700; letter-spacing: -0.04em; font-variant-numeric: tabular-nums; }
.stat .label { font-size: 14px; color: var(--muted); line-height: 1.5; }

/* ---------- section heads ---------- */
.section-head { margin-bottom: 56px; max-width: 620px; }
.section-head h2 { font-size: clamp(30px, 4.5vw, 46px); }
.section-sub { margin-top: 18px; font-size: 16.5px; color: var(--muted); line-height: 1.65; }

/* ---------- services ---------- */
.services { padding: 110px 0; border-bottom: 1px solid var(--border); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service {
  position: relative; overflow: hidden;
  border: 1px solid var(--border); border-radius: 14px;
  padding: 34px 30px 30px; background: var(--surface);
  transition: border-color 0.35s var(--ease), transform 0.4s var(--ease);
}
.service::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: 0;
  background: radial-gradient(340px circle at var(--mx, 50%) var(--my, 50%), rgba(59,130,246,0.13), transparent 65%);
  transition: opacity 0.4s ease;
}
.service:hover { border-color: var(--border-hi); transform: translateY(-4px); }
.service:hover::before { opacity: 1; }
.service-num { font-family: 'Space Grotesk', sans-serif; color: var(--accent); font-weight: 700; font-size: 15px; letter-spacing: 0.06em; margin-bottom: 26px; }
.service h3 { font-size: 21px; margin-bottom: 12px; }
.service p { color: var(--muted); font-size: 15px; line-height: 1.65; }
.tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 22px; }
.tags li {
  font-size: 11.5px; letter-spacing: 0.05em; color: var(--muted);
  border: 1px solid var(--border); border-radius: 100px; padding: 5px 12px;
  background: var(--surface-2);
}

/* ---------- work ---------- */
.work { padding: 110px 0; border-bottom: 1px solid var(--border); }
.work-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.work-card { display: block; will-change: transform; }
.work-thumb {
  position: relative; width: 100%; aspect-ratio: 16/11; overflow: hidden;
  background: var(--surface); border: 1px solid var(--border); border-radius: 14px;
  transition: border-color 0.35s var(--ease);
}
.work-card:hover .work-thumb { border-color: var(--border-hi); }
.thumb-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  transition: transform 0.7s var(--ease);
  display: block;
}
.work-card:hover .thumb-img { transform: scale(1.05); }

.thumb-inner { position: absolute; inset: 0; transition: transform 0.7s var(--ease); }
.thumb-inner[data-shape="a"] {
  background:
    radial-gradient(circle at 30% 35%, rgba(59,130,246,0.32), transparent 52%),
    radial-gradient(circle at 72% 68%, rgba(59,130,246,0.14), transparent 55%),
    var(--surface);
}
.thumb-inner[data-shape="b"] {
  background:
    radial-gradient(circle at 68% 32%, rgba(59,130,246,0.28), transparent 50%),
    radial-gradient(circle at 28% 74%, rgba(255,255,255,0.06), transparent 55%),
    var(--surface);
}
.work-card:hover .thumb-inner { transform: scale(1.06); }
.work-year {
  position: absolute; top: 16px; right: 18px;
  font-size: 11.5px; letter-spacing: 0.1em; color: var(--muted);
  background: rgba(8,9,10,0.6); border: 1px solid var(--border);
  padding: 4px 11px; border-radius: 100px; backdrop-filter: blur(6px);
}
.work-meta { padding: 22px 4px 0; }
.work-meta h3 { font-size: 21px; display: flex; align-items: center; gap: 9px; }
.work-card:hover .arrow { transform: translateX(5px); }
.work-meta p { color: var(--muted); font-size: 15px; margin-top: 8px; }

.work-meta .tags { margin-top: 16px; }

.work-thumb-open {
  display: flex; align-items: center; justify-content: center;
  border-style: dashed; border-color: var(--border-hi);
  background: transparent;
}
.open-inner {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  color: var(--muted); transition: color 0.35s var(--ease), transform 0.45s var(--ease);
}
.open-plus {
  font-family: 'Space Grotesk', sans-serif; font-size: 34px; font-weight: 500;
  width: 58px; height: 58px; border-radius: 50%;
  border: 1px solid var(--border-hi);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.35s var(--ease), background 0.35s var(--ease);
}
.open-text { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; }
.work-card-open:hover .work-thumb { border-color: var(--accent); }
.work-card-open:hover .open-inner { color: var(--accent); transform: translateY(-3px); }
.work-card-open:hover .open-plus { border-color: var(--accent); background: var(--accent-soft); }

.contact-alt { margin-top: 24px; font-size: 14.5px; color: var(--muted); }
.contact-alt a { color: var(--text); border-bottom: 1px solid var(--border-hi); padding-bottom: 2px; transition: border-color 0.3s ease, color 0.3s ease; }
.contact-alt a:hover { color: var(--accent); border-color: var(--accent); }

.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 13.5px; color: var(--muted); transition: color 0.3s ease; }
.footer-links a:hover { color: var(--text); }

/* ---------- offer / pricing ---------- */
.offer { position: relative; padding: 110px 0; border-bottom: 1px solid var(--border); overflow: hidden; }
.offer-glow {
  position: absolute; top: 40%; left: 50%; transform: translate(-50%,-50%);
  width: 1000px; height: 520px; pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(59,130,246,0.10), transparent 65%);
  filter: blur(40px);
}
.offer .wrap { position: relative; }
.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.offer-card {
  position: relative; overflow: hidden;
  border: 1px solid var(--border); border-radius: 14px;
  padding: 34px 30px; background: var(--surface);
  transition: border-color 0.35s var(--ease), transform 0.4s var(--ease);
}
.offer-card::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: 0;
  background: radial-gradient(340px circle at var(--mx, 50%) var(--my, 50%), rgba(59,130,246,0.13), transparent 65%);
  transition: opacity 0.4s ease;
}
.offer-card:hover { border-color: var(--border-hi); transform: translateY(-4px); }
.offer-card:hover::before { opacity: 1; }
.offer-card-feature { border-color: rgba(59,130,246,0.45); }
.offer-card-feature:hover { border-color: var(--accent); }

.offer-badge {
  position: absolute; top: 18px; right: 18px;
  font-size: 11px; letter-spacing: 0.09em; text-transform: uppercase; font-weight: 500;
  color: var(--accent); background: var(--accent-soft);
  border: 1px solid rgba(59,130,246,0.3);
  padding: 5px 11px; border-radius: 100px;
}

.offer-icon {
  width: 44px; height: 44px; border-radius: 11px;
  border: 1px solid var(--border-hi); background: var(--surface-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); margin-bottom: 24px;
  transition: border-color 0.35s var(--ease), background 0.35s var(--ease);
}
.offer-icon svg { width: 21px; height: 21px; }
.offer-card:hover .offer-icon { border-color: rgba(59,130,246,0.4); background: var(--accent-soft); }

.offer-card h3 { font-size: 21px; margin-bottom: 12px; }
.offer-card p { color: var(--muted); font-size: 15px; line-height: 1.65; }

.offer-cta {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  margin-top: 44px;
}
.offer-note { font-size: 14px; color: var(--muted); }

/* ---------- process ---------- */
.process { padding: 110px 0; border-bottom: 1px solid var(--border); }
.steps { display: flex; flex-direction: column; }
.step {
  display: grid; grid-template-columns: 96px 1fr; gap: 24px;
  padding: 30px 0; border-top: 1px solid var(--border);
  transition: padding-left 0.4s var(--ease);
}
.step:last-child { border-bottom: 1px solid var(--border); }
.step:hover { padding-left: 12px; }
.step-num { font-family: 'Space Grotesk', sans-serif; font-size: 14px; font-weight: 700; color: var(--accent); letter-spacing: 0.08em; padding-top: 5px; }
.step-body h3 { font-size: 22px; margin-bottom: 10px; }
.step-body p { color: var(--muted); font-size: 15.5px; line-height: 1.65; max-width: 560px; }

/* ---------- contact ---------- */
.contact { position: relative; padding: 140px 0 150px; overflow: hidden; text-align: center; }
.contact-glow {
  position: absolute; bottom: -240px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 560px; pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(59,130,246,0.18), transparent 62%);
  filter: blur(34px);
}
.contact-inner { position: relative; display: flex; flex-direction: column; align-items: center; }
.contact h2 { font-size: clamp(34px, 6vw, 62px); margin-bottom: 22px; }
.contact .lead { margin-bottom: 36px; }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--border); padding: 34px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.footer p { color: var(--muted); font-size: 13.5px; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.85s var(--ease), transform 0.85s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .offer-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; gap: 26px; }
}
@media (max-width: 720px) {
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
  .wrap { padding: 0 22px; }
  .links { display: none; }
  .nav-inner .btn-small { display: none; }
  .menu-btn { display: flex; }
  .hero { padding: 150px 0 100px; }
  .scroll-hint { display: none; }
  .step { grid-template-columns: 1fr; gap: 10px; }
  .cursor { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-title .word { opacity: 1; transform: none; }
  .cursor, .grain { display: none; }
}
