:root {
  --bg: #0a0a0a;
  --fg: #ededed;
  --fg-dim: rgba(237, 237, 237, 0.55);
  --fg-faint: rgba(237, 237, 237, 0.25);
  --accent: #c9f31d;
  --border: rgba(237, 237, 237, 0.08);
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html, body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  /* native cursor */
}
a, button { cursor: pointer; }
input, textarea, select { cursor: text; }
select { cursor: pointer; }

a { color: inherit; text-decoration: none; }

#bg-canvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.7'/></svg>");
}

/* ----- TOPBAR ----- */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.02em;
  mix-blend-mode: difference;
  color: #fff;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 500;
}
.brand-mark {
  color: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
.brand-name sup { font-size: 9px; opacity: 0.6; }

.nav {
  display: flex;
  gap: 28px;
}
.nav a {
  position: relative;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.nav a:hover { opacity: 1; }
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 1px;
  background: currentColor;
  transition: width 0.3s;
}
.nav a:hover::after { width: 100%; }

.cta-mini {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(8px);
  transition: border-color 0.3s, background 0.3s;
}
.cta-mini:hover {
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.05);
}
.cta-mini .dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 1.5s ease-in-out infinite;
}

/* ----- HERO ----- */
.hero {
  position: relative;
  z-index: 3;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 32px 80px;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(8px);
  font-size: 12px;
  font-weight: 400;
  color: var(--fg-dim);
  letter-spacing: 0.04em;
  width: fit-content;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(10px);
}
.dot-pulse {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent);
  animation: pulse 1.5s ease-in-out infinite;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(64px, 14vw, 220px);
  line-height: 0.88;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin-bottom: 48px;
}
.hero-title .line {
  display: block;
  overflow: hidden;
}
.hero-title .line span {
  display: inline-block;
  transform: translateY(110%);
  background: linear-gradient(180deg, #fff 0%, #fff 40%, #888 70%, #555 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-title .line-2 span {
  padding-left: 8vw;
  background: linear-gradient(180deg, var(--accent) 0%, #a8d018 70%, #6b8a0a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-title .line-3 span {
  padding-left: 18vw;
}

.hero-sub {
  font-size: clamp(15px, 1.4vw, 19px);
  font-weight: 300;
  color: var(--fg-dim);
  line-height: 1.5;
  max-width: 480px;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(10px);
}

.hero-cta {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(10px);
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 28px;
  background: var(--accent);
  color: #000;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  border-radius: 100px;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.4) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201, 243, 29, 0.3);
}
.btn-primary:hover::before {
  transform: translateX(100%);
}
.btn-primary svg { transition: transform 0.3s; }
.btn-primary:hover svg { transform: translate(3px, -3px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 18px 28px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 14px;
  color: var(--fg-dim);
  transition: border-color 0.3s, color 0.3s;
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.3);
  color: var(--fg);
}

.hero-foot {
  display: flex;
  gap: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  opacity: 0;
  transform: translateY(10px);
}
.stat-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.stat:nth-child(2) .stat-num { color: var(--accent); }
.stat-label {
  font-size: 12px;
  color: var(--fg-faint);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ----- SCROLL HINT ----- */
.scroll-hint {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-faint);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--fg-faint), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

/* ----- CURSOR — using native cursor in this variant ----- */
.cursor, .cursor-trail { display: none !important; }

/* ----- ANIMATIONS ----- */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.9); }
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(0.5); opacity: 0.3; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ===========================================================
   SECTIONS (Manifesto / Services / Works / Process / Pricing /
             Contact / Footer)
   =========================================================== */
.section {
  position: relative;
  z-index: 3;
  background: var(--bg);
  padding: 140px 0;
  border-top: 1px solid var(--border);
}
.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

.section-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--fg-faint); margin-bottom: 40px;
}
.section-eyebrow span {
  width: 32px; height: 1px; background: var(--accent);
}

.section-title {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(48px, 8vw, 120px);
  line-height: 0.92; letter-spacing: -0.04em;
  margin-bottom: 80px;
}
.section-title > span { display: block; overflow: hidden; }
.section-title > span > span {
  display: inline-block;
  background: linear-gradient(180deg, #fff 0%, #fff 40%, #888 75%, #555 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-title .accent-em {
  background: linear-gradient(180deg, var(--accent) 0%, #a8d018 70%, #6b8a0a 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ----- MANIFESTO ----- */
.manifesto-text {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 4.2vw, 64px);
  line-height: 1.15; letter-spacing: -0.025em;
  max-width: 1100px;
  margin-bottom: 80px;
  color: var(--fg);
}
.reveal-words .word {
  display: inline-block;
  opacity: 0.15;
  transition: opacity 0.6s ease;
}
.reveal-words .word.in { opacity: 1; }

.manifesto-meta {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  padding-top: 32px; border-top: 1px solid var(--border);
}
.meta-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--fg-faint); margin-bottom: 8px;
}
.meta-val { font-size: 16px; color: var(--fg); line-height: 1.4; }

/* ----- SERVICES ----- */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.service-card {
  position: relative;
  background: var(--bg);
  padding: 36px 32px 32px;
  display: flex; flex-direction: column;
  transition: background 0.5s;
  min-height: 360px;
}
.service-card:hover { background: #0f0f0f; }
.service-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.15em;
  color: var(--fg-faint); margin-bottom: 24px;
}
.service-name {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 500; letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.service-desc {
  font-size: 14px; color: var(--fg-dim);
  line-height: 1.6; margin-bottom: 20px;
}
.service-list {
  list-style: none; margin-bottom: 24px;
  display: flex; flex-direction: column; gap: 8px;
}
.service-list li {
  position: relative;
  padding-left: 16px;
  font-size: 13px; color: var(--fg-dim); line-height: 1.45;
}
.service-list li::before {
  content: ""; position: absolute;
  left: 0; top: 8px; width: 6px; height: 1px;
  background: var(--accent);
}
.service-price {
  margin-top: auto;
  font-family: var(--font-display);
  font-size: 20px; font-weight: 500;
  color: var(--fg); letter-spacing: -0.01em;
}
.service-price-hot {
  color: var(--accent);
}

/* ----- WORKS ----- */
.works-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.work-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: #0d0d0d;
  display: flex; flex-direction: column;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s;
}
.work-card:hover {
  transform: translateY(-6px);
  border-color: rgba(237,237,237,0.25);
}
.work-visual {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: #0a0a0a;
}
.work-orb {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 60%, var(--accent) 0%, transparent 55%);
  opacity: 0.45;
  filter: blur(30px);
  transition: opacity 0.6s, transform 0.6s;
}
.work-card:hover .work-orb {
  opacity: 0.7; transform: scale(1.1);
}
.work-visual-1 .work-orb { background: radial-gradient(circle at 60% 50%, #c9f31d 0%, transparent 55%); }
.work-visual-2 .work-orb { background: radial-gradient(circle at 40% 70%, #ff7ad9 0%, transparent 55%); }
.work-visual-3 .work-orb { background: radial-gradient(circle at 50% 40%, #ff6b35 0%, transparent 55%); }
.work-visual-4 .work-orb { background: radial-gradient(circle at 60% 60%, #4eecff 0%, transparent 55%); }
.work-visual-5 .work-orb { background: radial-gradient(circle at 50% 50%, #a855f7 0%, transparent 55%); }

.work-label {
  position: absolute; top: 16px; left: 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--fg-faint);
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  padding: 6px 10px; border-radius: 100px;
  z-index: 2;
}
.work-title-big {
  position: relative; z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700; letter-spacing: -0.03em;
  text-transform: uppercase; line-height: 0.92;
  text-align: center;
  background: linear-gradient(180deg, #fff 0%, #888 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  mix-blend-mode: screen;
}
.work-info { padding: 22px 22px 24px; }
.work-name {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 500; letter-spacing: -0.01em;
  margin-bottom: 10px; line-height: 1.3;
}
.work-desc {
  font-size: 13px; color: var(--fg-dim);
  line-height: 1.55; margin-bottom: 16px;
}
.work-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.work-tags span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.05em;
  padding: 4px 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--fg-dim);
}

.work-card-cta {
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 40px;
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
  min-height: 360px;
}
.work-cta-inner { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.work-cta-mark {
  font-family: var(--font-display);
  font-size: 56px; font-weight: 300; color: var(--accent);
  line-height: 1; margin-bottom: 4px;
}
.work-card-cta h3 {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 500; letter-spacing: -0.02em;
}
.work-card-cta p {
  font-size: 13px; color: var(--fg-dim); line-height: 1.55;
  max-width: 260px;
}
.work-card-cta .btn-primary { padding: 14px 22px; font-size: 13px; }

/* ----- PROCESS ----- */
.process-steps {
  list-style: none; max-width: 880px;
  display: flex; flex-direction: column; gap: 28px;
}
.process-step {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 32px;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  align-items: start;
}
.process-step:last-child { border-bottom: 1px solid var(--border); }
.step-num {
  font-family: var(--font-display);
  font-size: 64px; font-weight: 500; letter-spacing: -0.04em;
  background: linear-gradient(180deg, var(--accent) 0%, #6b8a0a 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.step-body h3 {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 500; letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.step-body p {
  font-size: 15px; color: var(--fg-dim); line-height: 1.55;
  max-width: 580px; margin-bottom: 10px;
}
.step-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.1em;
  color: var(--fg-faint);
}

/* ----- PRICING ----- */
.pricing-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin-bottom: 32px;
}
.price-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #0d0d0d;
  padding: 28px 24px 32px;
  display: flex; flex-direction: column;
  transition: border-color 0.3s, transform 0.3s;
}
.price-card:hover {
  border-color: rgba(237,237,237,0.25);
  transform: translateY(-3px);
}
.price-card-hot {
  border-color: var(--accent);
  background: linear-gradient(180deg, #0f0f08 0%, #0d0d0d 100%);
}
.price-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--fg-faint); margin-bottom: 16px;
}
.price-card-hot .price-tag { color: var(--accent); }
.price-num {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 500; letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.price-sub {
  font-size: 12px; color: var(--fg-dim);
  margin-bottom: 24px; line-height: 1.4;
}
.price-list {
  list-style: none; display: flex; flex-direction: column; gap: 10px;
  padding-top: 20px; border-top: 1px solid var(--border);
}
.price-list li {
  position: relative; padding-left: 16px;
  font-size: 13px; color: var(--fg-dim); line-height: 1.45;
}
.price-list li::before {
  content: ""; position: absolute;
  left: 0; top: 8px; width: 6px; height: 1px;
  background: var(--accent);
}
.price-badge {
  position: absolute; top: -10px; right: 16px;
  background: var(--accent); color: #000;
  padding: 4px 10px; border-radius: 100px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
}
.pricing-note {
  font-size: 13px; color: var(--fg-faint); max-width: 600px;
  font-style: italic;
}

/* ----- CONTACT ----- */
.contact-container {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: start;
}
.contact-title { margin-bottom: 32px; font-size: clamp(40px, 6vw, 84px); }
.contact-lede {
  font-size: 16px; color: var(--fg-dim); line-height: 1.55;
  max-width: 440px; margin-bottom: 40px;
}
.contact-direct {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--border);
}
.contact-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; border-bottom: 1px solid var(--border);
  transition: padding 0.3s;
}
.contact-link:hover { padding-left: 8px; }
.contact-link-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--fg-faint);
}
.contact-link-val {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 500; letter-spacing: -0.01em;
}

.contact-form {
  position: relative;
  display: flex; flex-direction: column; gap: 20px;
  padding: 36px;
  background: #0d0d0d;
  border: 1px solid var(--border);
  border-radius: 14px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--fg-faint);
}
.field input,
.field textarea,
.field select {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  font-family: var(--font-body);
  font-size: 15px; color: var(--fg);
  resize: none;
  outline: none;
  transition: border-color 0.3s;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--fg-faint); }
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--accent);
}
.field select {
  appearance: none;
  cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, var(--fg-faint) 50%),
                    linear-gradient(135deg, var(--fg-faint) 50%, transparent 50%);
  background-position: calc(100% - 14px) 50%, calc(100% - 8px) 50%;
  background-size: 6px 6px;
  background-repeat: no-repeat;
}
.field select option { background: #0a0a0a; color: var(--fg); }
.btn-submit { margin-top: 8px; align-self: flex-start; }
.form-success {
  display: none;
  padding: 12px 16px;
  background: rgba(201, 243, 29, 0.12);
  border: 1px solid var(--accent);
  border-radius: 8px;
  color: var(--accent);
  font-size: 13px;
}
.contact-form.submitted .form-success { display: block; }
.contact-form.submitted .field,
.contact-form.submitted .btn-submit { opacity: 0.4; pointer-events: none; }

/* ----- FOOTER ----- */
.footer {
  position: relative; z-index: 3;
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
}
.footer-brand p {
  color: var(--fg-dim); font-size: 14px; line-height: 1.5;
  margin-top: 16px; max-width: 320px;
}
.footer-col {
  display: flex; flex-direction: column; gap: 10px;
}
.footer-col-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--fg-faint); margin-bottom: 6px;
}
.footer-col a {
  font-size: 14px; color: var(--fg-dim);
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.1em;
  color: var(--fg-faint);
}

/* ----- REVEAL UTILITIES ----- */
/* hide only after JS marks `js-ready`, so content remains visible if JS fails */
html.js-ready .reveal-fade {
  opacity: 0; transform: translateY(40px);
  transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}
html.js-ready .reveal-fade.in-view { opacity: 1; transform: none; }

html.js-ready .reveal-lines > span > span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
html.js-ready .reveal-lines.in-view > span > span { transform: translateY(0); }
html.js-ready .reveal-lines.in-view > span:nth-child(2) > span { transition-delay: 0.12s; }
html.js-ready .reveal-lines.in-view > span:nth-child(3) > span { transition-delay: 0.24s; }

html.js-ready .section-eyebrow {
  opacity: 0; transform: translateX(-20px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
html.js-ready .section-eyebrow.in-view { opacity: 1; transform: none; }

/* ----- RESPONSIVE ----- */
@media (max-width: 1100px) {
  .services-grid, .works-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-container { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .topbar { padding: 16px 20px; }
  .nav { display: none; }
  .hero { padding: 80px 20px 60px; }
  .hero-title .line-2 span { padding-left: 0; }
  .hero-title .line-3 span { padding-left: 4vw; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-ghost { justify-content: center; }
  .hero-foot { flex-direction: column; gap: 20px; }
  .scroll-hint { display: none; }
  html, body { cursor: auto; }

  .section { padding: 80px 0; }
  .container { padding: 0 20px; }
  .section-title { margin-bottom: 48px; }
  .manifesto-meta { grid-template-columns: 1fr; gap: 20px; }
  .services-grid, .works-grid, .pricing-grid { grid-template-columns: 1fr; }
  .process-step { grid-template-columns: 1fr; gap: 12px; }
  .step-num { font-size: 40px; }
  .contact-form { padding: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 12px; }
}
