/* ============================================================
   ELOXEE VENTURES — crypto marketing agency
   ============================================================ */

:root {
  --bg: #05060a;
  --bg-soft: #07080d;
  --surface: #0d1018;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --text: #e9ecf4;
  --muted: #8f95ab;
  --volt: #c6f24e;
  --ink: #0a0d06;
  --violet: #7b61ff;
  --win: #6ee787;
  --font-display: "Clash Display", "Space Grotesk", system-ui, sans-serif;
  --font-body: "Space Grotesk", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

button, a { -webkit-tap-highlight-color: transparent; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
b { font-weight: 600; color: #fff; }

::selection { background: var(--volt); color: var(--ink); }

:focus-visible { outline: 2px solid var(--volt); outline-offset: 3px; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #1b1f2c; border-radius: 8px; border: 2px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: #2a3042; }

.mono { font-family: var(--font-mono); }

.container { width: min(1200px, 92%); margin-inline: auto; }

/* ---------- ambient layers ---------- */

.grain {
  position: fixed; inset: 0; z-index: 60; pointer-events: none; opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
}

.orb {
  position: fixed; z-index: 0; border-radius: 50%;
  pointer-events: none; will-change: transform;
  animation: orbFloat 18s ease-in-out infinite alternate;
}
.orb-a {
  width: 640px; height: 640px; top: -180px; left: -160px;
  background: radial-gradient(circle at 50% 50%, rgba(198, 242, 78, 0.15), rgba(198, 242, 78, 0.05) 45%, transparent 70%);
}
.orb-b {
  width: 660px; height: 660px; bottom: -200px; right: -180px;
  background: radial-gradient(circle at 50% 50%, rgba(123, 97, 255, 0.13), rgba(123, 97, 255, 0.04) 45%, transparent 70%);
  animation-delay: -9s;
}

@keyframes orbFloat {
  to { transform: translate(70px, 50px) scale(1.08); }
}

.cursor-glow {
  position: fixed; left: 0; top: 0; z-index: 1;
  width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(198, 242, 78, 0.09), transparent 62%);
  pointer-events: none; transform: translate(-50%, -50%); will-change: transform;
}
@media (hover: none), (pointer: coarse) { .cursor-glow { display: none; } }

/* ---------- outline text helper ---------- */

.outline {
  color: transparent;
  -webkit-text-stroke: 1.6px rgba(233, 236, 244, 0.92);
}
@supports not (-webkit-text-stroke: 1px #000) {
  .outline { color: var(--text); }
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 600; font-size: 15px; letter-spacing: 0.02em;
  padding: 15px 28px; border-radius: 10px; white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.btn span { font-family: var(--font-mono); transition: transform 0.2s ease; }
.btn:hover span { transform: translate(2px, -2px); }

.btn-volt {
  background: var(--volt); color: var(--ink);
  box-shadow: 0 0 26px rgba(198, 242, 78, 0.22);
}
.btn-volt:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 40px rgba(198, 242, 78, 0.38);
}

.btn-ghost { border: 1px solid var(--line-strong); color: var(--text); }
.btn-ghost:hover { border-color: rgba(198, 242, 78, 0.55); color: var(--volt); }

.btn-sm { padding: 11px 20px; font-size: 13.5px; border-radius: 9px; }
.btn-lg { padding: 19px 42px; font-size: 17px; border-radius: 12px; }

/* ---------- nav ---------- */

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(5, 6, 10, 0.5);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: background 0.3s ease, border-color 0.3s ease;
}
.nav.scrolled { background: rgba(5, 6, 10, 0.85); border-bottom-color: var(--line); }

.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }

.logo { display: inline-flex; align-items: center; gap: 12px; }
.logo-mark { width: 34px; height: 34px; flex-shrink: 0; }
.logo-mark .m-chip { fill: var(--volt); }
.logo-mark .m-bolt { fill: var(--bg); }
.logo-name {
  font-family: var(--font-display); font-weight: 700; font-size: 19px; letter-spacing: 0.01em;
  display: flex; flex-direction: column; line-height: 1;
}
.logo-word { display: inline-flex; align-items: center; }
.logo-cursor {
  width: 6px; height: 15px; background: var(--volt); margin-left: 6px;
  animation: cursorBlink 2.6s steps(1) infinite;
}
.logo-sub {
  font-family: var(--font-mono); font-weight: 500; font-size: 9.5px;
  letter-spacing: 0.42em; color: var(--muted); margin-top: 6px;
}

@keyframes cursorBlink {
  0%, 55% { opacity: 1; }
  56%, 100% { opacity: 0; }
}

.nav-links { display: flex; gap: 36px; }
.nav-links a {
  font-family: var(--font-mono); font-size: 12.5px; letter-spacing: 0.14em; color: var(--muted);
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--volt); }

.nav-cta { display: flex; align-items: center; gap: 18px; }

.social-ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border: 1px solid var(--line-strong); border-radius: 9px;
  color: var(--muted); transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.social-ico:hover { color: var(--volt); border-color: rgba(198, 242, 78, 0.5); transform: translateY(-1px); }
.social-ico svg { width: 16px; height: 16px; }

.nav-burger { display: none; flex-direction: column; gap: 6px; padding: 8px; }
.nav-burger span { width: 26px; height: 2px; background: var(--text); transition: transform 0.3s ease; }
.nav-burger.open span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(5, 6, 10, 0.97);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 30px;
  opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a {
  font-family: var(--font-display); font-weight: 600; font-size: 32px;
  transition: color 0.2s ease;
}
.mobile-menu a:hover { color: var(--volt); }
.mobile-menu .btn { font-size: 15px; margin-top: 8px; }

/* ---------- hero ---------- */

.hero {
  position: relative; overflow: hidden;
  padding: 110px 0 90px;
}

.hero-grid-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 95% 75% at 50% 28%, #000 25%, transparent 72%);
  mask-image: radial-gradient(ellipse 95% 75% at 50% 28%, #000 25%, transparent 72%);
}

.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center;
}

.status-line {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; letter-spacing: 0.12em; color: var(--muted);
  border: 1px solid var(--line); border-radius: 999px; padding: 9px 18px;
  background: rgba(255, 255, 255, 0.02);
  margin-bottom: 34px;
}
.status-line .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--volt); flex-shrink: 0;
  box-shadow: 0 0 10px rgba(198, 242, 78, 0.9);
  animation: blink 1.6s ease infinite;
}
#statusText { transition: opacity 0.35s ease; }
#statusText.fade { opacity: 0; }

@keyframes blink { 50% { opacity: 0.35; } }

.hero-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(54px, 7.4vw, 106px);
  line-height: 0.98; letter-spacing: -0.02em;
}
.hero-title .line { display: block; }
.hero-title .line-volt { color: var(--volt); text-shadow: 0 0 60px rgba(198, 242, 78, 0.25); }

.hero-sub {
  font-size: 17px; line-height: 1.65; color: var(--muted);
  max-width: 52ch; margin-top: 30px;
}

.hero-cta { display: flex; align-items: center; flex-wrap: wrap; gap: 18px; margin-top: 38px; }

.sticker {
  font-size: 11px; letter-spacing: 0.1em; color: var(--volt);
  border: 1px solid rgba(198, 242, 78, 0.4); border-radius: 999px; padding: 8px 16px;
  transform: rotate(-5deg); background: rgba(198, 242, 78, 0.05);
}

.hero-mini {
  display: flex; flex-wrap: wrap; gap: 14px 34px; margin-top: 46px;
  font-size: 11.5px; letter-spacing: 0.1em; color: var(--muted);
}
.hero-mini b { color: var(--text); }

/* hero visual */

.hero-visual { display: grid; gap: 20px; }

.terminal {
  background: #07090f; border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55), 0 0 70px rgba(198, 242, 78, 0.06);
}
.term-head {
  display: flex; align-items: center; gap: 8px;
  padding: 13px 16px; border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}
.term-head span { width: 11px; height: 11px; border-radius: 50%; }
.term-head span:nth-child(1) { background: #ff5f57; }
.term-head span:nth-child(2) { background: #febc2e; }
.term-head span:nth-child(3) { background: #28c840; }
.term-head em { margin-left: auto; font-style: normal; font-size: 11px; letter-spacing: 0.08em; color: var(--muted); }

.term-body { padding: 22px 22px 24px; font-size: 12.8px; line-height: 2.05; min-height: 238px; }
.term-body .t-cmd { color: var(--volt); }
.term-body .t-out { color: #a8b0c4; }
.term-body .t-win { color: var(--win); }
.cursor { display: inline-block; width: 8px; height: 15px; background: var(--volt); vertical-align: text-bottom; animation: blink 0.9s steps(1) infinite; }

.img-frame {
  position: relative; border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
  background: var(--bg-soft);
}
.img-frame img {
  width: 100%; height: 100%; min-height: 170px; object-fit: cover;
  filter: grayscale(1) contrast(1.12) brightness(0.72);
  transform: scale(1.02); transition: transform 1.4s ease;
}
.img-frame::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(165deg, rgba(198, 242, 78, 0.14), transparent 52%), rgba(5, 6, 10, 0.28);
  mix-blend-mode: screen;
}
.img-frame:hover img { transform: scale(1.07); }
.img-frame figcaption {
  position: relative; z-index: 1;
  display: flex; justify-content: space-between; gap: 12px;
  padding: 11px 16px; border-top: 1px solid var(--line);
  font-size: 10px; letter-spacing: 0.16em; color: var(--muted);
  background: rgba(5, 6, 10, 0.72);
}

/* ---------- marquee ---------- */

.marquee-band {
  border-block: 1px solid var(--line);
  background: var(--bg-soft);
  padding: 30px 0; overflow: hidden;
}
.marquee-track { display: flex; width: max-content; animation: marquee 32s linear infinite; will-change: transform; transform: translateZ(0); }
.marquee-band:hover .marquee-track { animation-play-state: paused; }
.marquee-chunk { display: flex; align-items: center; flex-shrink: 0; }
.marquee-chunk span {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(40px, 5.2vw, 74px); line-height: 1; white-space: nowrap;
  padding-right: 46px;
}
.marq-solid { color: var(--text); }
.marq-outline { color: transparent; -webkit-text-stroke: 1.5px rgba(233, 236, 244, 0.75); }
.marq-volt { color: var(--volt); }
.marq-star { color: var(--volt); font-size: clamp(18px, 2.2vw, 30px) !important; padding-right: 46px; }

@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- stats ---------- */

.stats { padding: 72px 0; border-bottom: 1px solid var(--line); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px; }
.stat { border-top: 1px solid var(--line); padding-top: 26px; }
.stat-num {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(46px, 4.6vw, 68px); line-height: 1; color: var(--volt);
}
.stat-label { font-size: 11px; letter-spacing: 0.14em; color: var(--muted); margin-top: 14px; }

/* ---------- sections ---------- */

.section { padding: 120px 0; }
section[id] { scroll-margin-top: 90px; }

.section-head {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 32px;
  margin-bottom: 60px;
}
.section-label { font-size: 12px; letter-spacing: 0.2em; color: var(--volt); margin-bottom: 20px; }
.section-title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(36px, 4.6vw, 62px); line-height: 1.04; letter-spacing: -0.01em;
}
.section-note { font-size: 11.5px; letter-spacing: 0.12em; color: var(--muted); text-align: right; max-width: 320px; }

/* services */

.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

.card {
  position: relative; overflow: hidden;
  background: var(--surface); border: 1px solid var(--line); border-radius: 16px;
  padding: 30px 30px 26px;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}
.card::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0;
  background: radial-gradient(420px circle at 85% 0%, rgba(198, 242, 78, 0.09), transparent 60%);
  transition: opacity 0.35s ease;
}
.card:hover { transform: translateY(-5px); border-color: rgba(198, 242, 78, 0.4); box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45); }
.card:hover::before { opacity: 1; }

.card-top { display: flex; justify-content: space-between; align-items: center; }
.card-num { font-size: 12px; letter-spacing: 0.14em; color: var(--muted); }
.card-arrow {
  font-family: var(--font-mono); font-size: 17px; color: var(--muted);
  transition: color 0.25s ease, transform 0.25s ease;
}
.card:hover .card-arrow { color: var(--volt); transform: translate(2px, -2px); }

.card h3 { font-family: var(--font-display); font-weight: 600; font-size: 23px; margin: 16px 0 10px; }
.card p { font-size: 15px; line-height: 1.62; color: var(--muted); }

.card-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.card-tags li {
  font-size: 10.5px; letter-spacing: 0.09em; color: #aab3c5;
  border: 1px solid var(--line); border-radius: 999px; padding: 6px 13px;
  transition: border-color 0.25s ease, color 0.25s ease;
}
.card:hover .card-tags li { border-color: rgba(198, 242, 78, 0.35); color: var(--text); }

/* work */

.work-sec { background: var(--bg-soft); border-block: 1px solid var(--line); }
.work-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

.run-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 16px;
  padding: 28px 30px;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}
.run-card:hover {
  transform: translateY(-5px); border-color: rgba(198, 242, 78, 0.4);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), 0 0 50px rgba(198, 242, 78, 0.05);
}

.run-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.pill {
  font-size: 10.5px; letter-spacing: 0.12em; color: var(--muted);
  border: 1px solid var(--line); border-radius: 999px; padding: 6px 13px;
}
.pill-volt {
  color: var(--volt); border-color: rgba(198, 242, 78, 0.35);
  background: rgba(198, 242, 78, 0.07);
}

.run-ticker { font-family: var(--font-display); font-weight: 700; font-size: clamp(36px, 3.6vw, 50px); letter-spacing: 0.01em; }

.run-metrics {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  border-block: 1px solid var(--line); padding: 17px 0; margin: 20px 0;
}
.run-metrics b { display: block; font-size: 17px; color: var(--volt); font-weight: 500; }
.run-metrics span { display: block; font-size: 9.5px; letter-spacing: 0.12em; color: var(--muted); margin-top: 7px; }

.run-desc { font-size: 14.5px; line-height: 1.65; color: var(--muted); }
.run-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.run-tags span {
  font-size: 10px; letter-spacing: 0.1em; color: #aab3c5;
  border: 1px solid var(--line); border-radius: 999px; padding: 5px 12px;
}

/* process */

.steps { border-bottom: 1px solid var(--line); }
.step {
  display: grid; grid-template-columns: 150px 1fr auto; gap: 30px; align-items: start;
  border-top: 1px solid var(--line); padding: 36px 6px;
  transition: background 0.3s ease;
}
.step:hover { background: rgba(255, 255, 255, 0.015); }

.step-num {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(52px, 5.4vw, 84px); line-height: 1;
  color: transparent; -webkit-text-stroke: 1.5px rgba(233, 236, 244, 0.3);
  transition: -webkit-text-stroke-color 0.3s ease, transform 0.3s ease;
}
.step:hover .step-num { -webkit-text-stroke-color: rgba(198, 242, 78, 0.85); transform: translateX(6px); }

.step-body h3 { font-family: var(--font-display); font-weight: 600; font-size: clamp(24px, 2.6vw, 34px); }
.step-body p { color: var(--muted); font-size: 15.5px; line-height: 1.65; max-width: 62ch; margin-top: 10px; }

.step-tag {
  font-size: 11px; letter-spacing: 0.12em; color: var(--muted);
  border: 1px solid var(--line); border-radius: 999px; padding: 8px 16px; margin-top: 10px;
  white-space: nowrap;
}

/* edge */

.edge-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 70px; align-items: start; }
.edge-sticky { position: sticky; top: 120px; }
.edge-img { margin-top: 36px; }
.edge-item {
  display: flex; gap: 26px; border-top: 1px solid var(--line); padding: 30px 6px;
}
.edge-item:last-child { border-bottom: 1px solid var(--line); }
.edge-item > span { font-size: 12px; letter-spacing: 0.14em; color: var(--volt); padding-top: 7px; }
.edge-item h3 { font-family: var(--font-display); font-weight: 600; font-size: 23px; }
.edge-item p { color: var(--muted); font-size: 15px; line-height: 1.65; max-width: 56ch; margin-top: 9px; }

/* cta */

.cta {
  position: relative; overflow: hidden;
  padding: 150px 0; text-align: center;
}
.cta-bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1) brightness(0.3) contrast(1.15);
}
.cta-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 45%, rgba(198, 242, 78, 0.12), transparent 65%),
    linear-gradient(180deg, rgba(5, 6, 10, 0.86) 0%, rgba(5, 6, 10, 0.62) 40%, var(--bg) 100%);
}
.cta-inner { position: relative; z-index: 1; }
.cta-label { font-size: 12px; letter-spacing: 0.2em; color: var(--volt); margin-bottom: 26px; }
.cta h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(52px, 8vw, 112px); line-height: 0.98; letter-spacing: -0.02em;
}
.cta-inner > p { font-size: 17px; color: var(--muted); margin-top: 26px; }
.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 18px; margin-top: 40px; }
.cta .btn-lg { margin-top: 0; }
.cta-handle { font-size: 12.5px; letter-spacing: 0.12em; color: var(--muted); margin-top: 22px; }
.cta-handle b { color: var(--volt); font-weight: 500; }

/* splash — full-screen entry */

.splash {
  min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  padding: 150px 0 110px;
}
.splash .scroll-cue {
  position: absolute; left: 50%; bottom: 30px; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 0.18em; color: var(--muted);
  transition: color 0.2s ease;
}
.splash .scroll-cue:hover { color: var(--volt); }
.splash .scroll-cue span { display: inline-block; animation: cueBob 2.2s ease-in-out infinite; }

@keyframes cueBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* footer */

footer { border-top: 1px solid var(--line); background: var(--bg-soft); padding: 76px 0 34px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 56px; }
.foot-brand p { font-size: 15px; color: var(--muted); max-width: 36ch; margin-top: 18px; line-height: 1.65; }
.foot-col h4 { font-size: 11px; letter-spacing: 0.18em; color: var(--volt); margin-bottom: 20px; font-weight: 500; }
.foot-col a { display: block; font-size: 15px; color: var(--muted); margin: 11px 0; transition: color 0.2s ease; }
.foot-col a:hover { color: var(--volt); }
.foot-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px 28px;
  border-top: 1px solid var(--line); margin-top: 60px; padding-top: 26px;
  font-size: 11px; letter-spacing: 0.14em; color: var(--muted);
}

/* ---------- reveal ---------- */

.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.in { opacity: 1; transform: none; }

.services-grid .reveal:nth-child(2),
.work-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.services-grid .reveal:nth-child(3),
.work-grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.services-grid .reveal:nth-child(4),
.work-grid .reveal:nth-child(4) { transition-delay: 0.24s; }
.services-grid .reveal:nth-child(5) { transition-delay: 0.32s; }
.services-grid .reveal:nth-child(6) { transition-delay: 0.4s; }
.services-grid .reveal:nth-child(7) { transition-delay: 0.48s; }
.services-grid .reveal:nth-child(8) { transition-delay: 0.56s; }
.steps .reveal:nth-child(2) { transition-delay: 0.08s; }
.steps .reveal:nth-child(3) { transition-delay: 0.16s; }
.steps .reveal:nth-child(4) { transition-delay: 0.24s; }

/* ---------- responsive ---------- */

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero { padding: 100px 0 70px; }
  .hero-visual { grid-template-columns: 1.1fr 0.9fr; align-items: stretch; max-width: 640px; }
  .edge-grid { grid-template-columns: 1fr; gap: 56px; }
  .edge-sticky { position: static; }
  .edge-img { max-width: 480px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-cta { gap: 12px; }
  .hero-grid { gap: 40px; }
  .hero-visual { grid-template-columns: 1fr; }
  .term-body { font-size: 12px; padding: 18px 16px 20px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .section { padding: 88px 0; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 14px; margin-bottom: 40px; }
  .section-note { text-align: left; }
  .services-grid, .work-grid { grid-template-columns: 1fr; }
  .run-metrics b { font-size: 15px; }
  .step { grid-template-columns: 64px 1fr; gap: 20px; }
  .step-tag { display: none; }
  .edge-item { gap: 16px; }
  .foot-grid { grid-template-columns: 1fr; gap: 40px; }
  .cta { padding: 110px 0; }
  .splash { padding: 120px 0 60px; }
  .splash .scroll-cue { position: static; transform: none; display: flex; justify-content: center; margin-top: 38px; }
}

@media (max-width: 560px) {
  .logo-name { font-size: 17px; }
  .logo-mark { width: 30px; height: 30px; }
  .hero-title { font-size: clamp(44px, 13.5vw, 60px); }
  .hero-sub { font-size: 16px; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .cta-actions .btn { width: 100%; justify-content: center; }
  .sticker { width: auto; margin-inline: auto; }
  .hero-mini { flex-direction: column; gap: 10px; }
  .stats-grid { gap: 22px; }
  .stat-num { font-size: clamp(34px, 9vw, 46px); }
  .run-metrics { gap: 8px; }
  .foot-bottom { flex-direction: column; gap: 10px; }
}

/* ---------- reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
