/* ============================================================
   technologIA — site styles
   NEON BLOCKS identity · agência criativa de IA para PMEs
   ============================================================ */

/* ---------- tokens ---------- */
:root {
  /* brand */
  --magenta: #ff2f7d;
  --magenta-soft: #ff5b9c;
  --violet: #6b4cff;
  --violet-soft: #8b6bff;
  --blue: #4f6bff;
  --grad: linear-gradient(120deg, var(--magenta) 0%, var(--violet) 100%);
  --grad-soft: linear-gradient(120deg, var(--magenta-soft), var(--violet-soft));

  /* dark theme (default) */
  --bg: #0a0810;
  --bg-2: #0e0b18;
  --surface: #15111f;
  --surface-2: #1c1729;
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: #f4eff8;
  --text-2: #c5bdd3;
  --muted: #8b8299;
  --glow-strength: 1;
  --grain-opacity: 0.04;

  /* type */
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-heading: "Urbanist", system-ui, sans-serif;
  --font-body: "Geist", system-ui, sans-serif;
  --font-mono: "Geist Mono", ui-monospace, monospace;

  /* layout */
  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 18px;
  --radius-lg: 28px;
  --nav-h: 76px;
}

[data-theme="light"] {
  --bg: #f6f3fb;
  --bg-2: #efeaf6;
  --surface: #ffffff;
  --surface-2: #f4f0fa;
  --border: rgba(20, 12, 30, 0.10);
  --border-strong: rgba(20, 12, 30, 0.18);
  --text: #160f22;
  --text-2: #43394f;
  --muted: #766c84;
  --glow-strength: 0.55;
  --grain-opacity: 0.02;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background 0.5s ease, color 0.5s ease;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select { font-family: inherit; }
::selection { background: var(--magenta); color: #fff; }

/* grain overlay */
body::after {
  content: "";
  position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  opacity: var(--grain-opacity);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- layout helpers ---------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section {
  padding-block: clamp(80px, 12vh, 160px);
  position: relative;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 12.5px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted);
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--grad);
}
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.03em;
}
.h-xl { font-size: clamp(44px, 7.5vw, 104px); }
.h-lg { font-size: clamp(34px, 5vw, 64px); }
.h-md { font-size: clamp(26px, 3.4vw, 40px); }
.lede { font-size: clamp(18px, 2.1vw, 23px); color: var(--text-2); line-height: 1.5; }
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: 16px;
  letter-spacing: -0.01em;
  padding: 15px 26px;
  border-radius: 999px;
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s, background 0.3s, color 0.3s;
  white-space: nowrap;
}
.btn .arr { transition: transform 0.25s; }
.btn:hover .arr { transform: translateX(4px); }
.btn-primary { background: var(--grad); color: #fff; }
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255, 47, 125, calc(0.45 * var(--glow-strength))),
              0 6px 24px rgba(107, 76, 255, calc(0.4 * var(--glow-strength)));
}
.btn-ghost {
  border: 1px solid var(--border-strong); color: var(--text);
  background: color-mix(in srgb, var(--surface) 50%, transparent);
}
.btn-ghost:hover { border-color: var(--magenta); transform: translateY(-2px); }
.btn-lg { padding: 18px 34px; font-size: 18px; }

/* ============================================================
   LOGO
   ============================================================ */
.logo { display: inline-flex; align-items: center; gap: 14px; }
.logo-blocks { display: inline-flex; gap: 5px; }
.blk {
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; color: #fff;
  line-height: 1; border-radius: 5px;
}
.blk-i { background: linear-gradient(160deg, var(--magenta-soft), var(--magenta)); }
.blk-a { background: linear-gradient(160deg, var(--violet-soft), var(--violet)); }
.logo-nav .blk { width: 34px; height: 34px; font-size: 22px; }
.logo-nav .blk-i {
  box-shadow: 0 0 16px rgba(255, 47, 125, calc(0.55 * var(--glow-strength)));
}
.logo-nav .blk-a {
  box-shadow: 0 0 16px rgba(107, 76, 255, calc(0.55 * var(--glow-strength)));
}
.logo-word {
  font-family: var(--font-display); font-weight: 500;
  font-size: 21px; letter-spacing: -0.02em;
}
.logo-word .wi { color: var(--magenta); font-weight: 700; }
.logo-word .wa { color: var(--violet); font-weight: 700; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--border);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-size: 15px; color: var(--text-2); font-weight: 500;
  position: relative; transition: color 0.2s;
}
.nav-links a::after {
  content: "";
  position: absolute; left: 0; bottom: -6px;
  height: 2px; width: 0;
  background: var(--grad);
  transition: width 0.25s ease;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-theme-toggle {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border-strong);
  color: var(--muted);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  cursor: pointer;
  background: transparent;
}
.nav-theme-toggle:hover { border-color: var(--magenta); color: var(--magenta); }
.nav-theme-toggle svg { width: 18px; height: 18px; }

@media (max-width: 920px) {
  .nav-links { display: none; }
  .nav-cta .btn-ghost { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding-top: calc(var(--nav-h) + 40px); padding-bottom: 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  overflow: hidden;
}
#shader-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block;
}

.hero .wrap {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-copy { max-width: 860px; }
.hero h1 { margin: 0 0 28px; }
.hero .lede { max-width: 560px; margin-inline: auto; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 38px; justify-content: center; }
.hero-meta { display: flex; gap: 34px; margin-top: 48px; flex-wrap: wrap; }
.hero-meta .stat .n {
  font-family: var(--font-display); font-weight: 700; font-size: 30px;
}
.hero-meta .stat .l { font-size: 13.5px; color: var(--muted); }

@media (max-width: 980px) {
  .hero .wrap { gap: 30px; }
}

/* marquee strip */
.marquee {
  padding-block: 18px; overflow: hidden;
  background: linear-gradient(to bottom, var(--bg), var(--bg-2) 38%, var(--bg-2) 62%, var(--bg));
  display: flex;
}
.marquee-track {
  display: flex; gap: 46px; white-space: nowrap;
  animation: scrollx 30s linear infinite;
  padding-right: 46px;
}
.marquee-track span {
  font-family: var(--font-display); font-weight: 600; font-size: 19px;
  color: var(--muted);
  display: inline-flex; align-items: center; gap: 46px;
}
.marquee-track span::after { content: "✦"; color: var(--magenta); }
@keyframes scrollx { to { transform: translateX(-50%); } }
.marquee:hover .marquee-track { animation-play-state: paused; }

/* ============================================================
   SERVICES
   ============================================================ */
.sec-head { max-width: 720px; margin-bottom: 64px; }
.sec-head h2 { margin: 18px 0 18px; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.svc-card {
  position: relative; padding: 0 0 30px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
              border-color 0.4s, box-shadow 0.4s;
  display: flex; flex-direction: column;
}
.svc-card::before {
  content: ""; position: absolute; inset: 0; opacity: 0;
  transition: opacity 0.4s;
  background: radial-gradient(
    420px 200px at var(--mx, 50%) 0%,
    color-mix(in srgb, var(--accent, var(--magenta)) 18%, transparent),
    transparent 70%
  );
  pointer-events: none; z-index: 1;
}
.svc-card:hover {
  transform: translateY(-8px);
  border-color: color-mix(in srgb, var(--accent, var(--magenta)) 50%, var(--border));
  box-shadow: 0 30px 60px -20px color-mix(in srgb, var(--accent, var(--magenta)) 40%, transparent);
}
.svc-card:hover::before { opacity: 1; }

/* image banner */
.svc-img {
  position: relative; width: 100%; height: 210px; overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0; flex: none;
}
.svc-img img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.svc-card:hover .svc-img img { transform: scale(1.06); }
.svc-img::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(
    to bottom,
    transparent 35%,
    color-mix(in srgb, var(--surface) 60%, transparent) 72%,
    var(--surface) 100%
  );
}

/* content area */
.svc-card > :not(.svc-img):not(.svc-tag) { padding-inline: 30px; position: relative; z-index: 2; }
.svc-card > .svc-num { padding-top: 20px; }
.svc-num { font-family: var(--font-mono); font-size: 13px; color: var(--muted); letter-spacing: 0.1em; }
.svc-card h3 { font-size: 23px; margin: 10px 0 10px; }
.svc-card p { color: var(--text-2); font-size: 15px; margin-bottom: 20px; flex: 1; }
.svc-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.svc-list li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14.5px; color: var(--text-2);
}
.svc-list li::before {
  content: "";
  flex: none; width: 16px; height: 16px; margin-top: 3px;
  border-radius: 50%;
  background: var(--accent, var(--magenta));
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%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 fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.svc-card.s1 { --accent: var(--magenta); }
.svc-card.s2 { --accent: var(--violet); }
.svc-card.s3 { --accent: var(--blue); }
.svc-tag {
  position: absolute; top: 16px; right: 16px; z-index: 3;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent, var(--magenta));
  background: color-mix(in srgb, var(--surface) 70%, transparent);
  backdrop-filter: blur(8px);
  border: 1px solid color-mix(in srgb, var(--accent) 40%, transparent);
  padding: 4px 10px; border-radius: 999px;
}

@media (max-width: 880px) { .services-grid { grid-template-columns: 1fr; } }

/* ============================================================
   PROCESS
   ============================================================ */
.process {
  background: linear-gradient(
    to bottom,
    var(--bg) 0,
    var(--bg-2) 120px,
    var(--bg-2) calc(100% - 120px),
    var(--bg) 100%
  );
}
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; margin-top: 56px;
}
.step {
  position: relative; padding: 30px 26px 28px;
  border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--surface);
  transition: transform 0.35s, border-color 0.35s;
}
.step:hover { transform: translateY(-6px); border-color: var(--border-strong); }
.step-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px;
}
.step-n {
  font-family: var(--font-display); font-weight: 700; font-size: 54px;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 0.9;
}
.step-icon {
  width: 42px; height: 42px; border-radius: 12px; flex: none;
  display: flex; align-items: center; justify-content: center;
  background: color-mix(in srgb, var(--magenta) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--magenta) 28%, transparent);
  color: var(--magenta);
}
.step-icon svg { width: 20px; height: 20px; }
.step h4 { font-size: 18px; margin-bottom: 10px; }
.step p { font-size: 14.5px; color: var(--text-2); }
.step-line {
  position: absolute; top: 46px; right: -12px;
  width: 24px; height: 2px;
  background: var(--border-strong);
}
.step:last-child .step-line { display: none; }
@media (max-width: 880px) {
  .process-grid { grid-template-columns: 1fr 1fr; }
  .step-line { display: none; }
}

/* ============================================================
   AGENT DEMO
   ============================================================ */
.agent .wrap {
  display: grid; grid-template-columns: 0.9fr 1.1fr;
  gap: 60px; align-items: center;
}
.agent-copy h2 { margin: 18px 0 20px; }
.agent-copy .lede { margin-bottom: 28px; }
.agent-points {
  list-style: none; display: flex;
  flex-direction: column; gap: 16px; margin-bottom: 32px;
}
.agent-points li { display: flex; gap: 14px; align-items: flex-start; }
.agent-points .pi {
  flex: none; width: 38px; height: 38px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  background: color-mix(in srgb, var(--violet) 16%, transparent);
  color: var(--violet);
  border: 1px solid color-mix(in srgb, var(--violet) 32%, transparent);
}
.agent-points .pi svg { width: 20px; height: 20px; }
.agent-points strong {
  font-family: var(--font-display); font-weight: 600;
  font-size: 16.5px; display: block;
}
.agent-points span { font-size: 14.5px; color: var(--text-2); }

/* phone mockup */
.phone {
  position: relative; width: 340px; max-width: 100%; margin-inline: auto;
  background: var(--surface); border: 1px solid var(--border-strong);
  border-radius: 38px; padding: 16px;
  box-shadow: 0 40px 100px -30px rgba(107, 76, 255, calc(0.6 * var(--glow-strength))),
              0 0 0 1px var(--border);
}
.phone-screen {
  background: var(--bg); border-radius: 26px; overflow: hidden;
  height: 560px; display: flex; flex-direction: column;
  border: 1px solid var(--border);
}
.phone-top {
  padding: 18px 18px 14px;
  display: flex; align-items: center; gap: 12px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}
.phone-top .av {
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700;
  color: #fff; font-size: 18px;
  box-shadow: 0 0 18px rgba(255, 47, 125, calc(0.5 * var(--glow-strength)));
}
.phone-top .who { line-height: 1.25; }
.phone-top .who b { font-family: var(--font-display); font-size: 15px; }
.phone-top .who span {
  font-size: 12px; color: #36d399;
  display: flex; align-items: center; gap: 6px;
}
.phone-top .who span::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: #36d399; box-shadow: 0 0 8px #36d399;
}
.chat {
  flex: 1; padding: 18px;
  display: flex; flex-direction: column; gap: 12px;
  overflow: hidden;
}
.bubble {
  max-width: 80%; padding: 11px 15px;
  font-size: 14.5px; line-height: 1.45;
  border-radius: 18px;
  opacity: 0; transform: translateY(8px);
  animation: pop 0.4s forwards;
}
.bubble.bot {
  align-self: flex-start;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-bottom-left-radius: 5px;
}
.bubble.user {
  align-self: flex-end;
  background: var(--grad); color: #fff;
  border-bottom-right-radius: 5px;
}
@keyframes pop { to { opacity: 1; transform: translateY(0); } }
.typing {
  display: flex; gap: 4px; align-self: flex-start;
  background: var(--surface-2); border: 1px solid var(--border);
  padding: 13px 16px; border-radius: 18px; border-bottom-left-radius: 5px;
}
.typing span {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--muted);
  animation: blinkdot 1.2s infinite;
}
.typing span:nth-child(2) { animation-delay: 0.2s; }
.typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes blinkdot {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-3px); }
}
.phone-input {
  padding: 14px; border-top: 1px solid var(--border);
  display: flex; gap: 10px; align-items: center;
  background: var(--bg-2);
}
.phone-input .fake {
  flex: 1; height: 40px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--border);
  display: flex; align-items: center; padding: 0 16px;
  font-size: 13.5px; color: var(--muted);
}
.phone-input .send {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  color: #fff; flex: none;
}
.phone-input .send svg { width: 18px; height: 18px; }

@media (max-width: 980px) {
  .agent .wrap { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================================
   ABOUT / TEAM
   ============================================================ */
.about-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 0;
}
.about-copy { max-width: 860px; }
.about-copy h2 { margin: 18px 0 22px; }
.about-copy p { color: var(--text-2); margin-bottom: 18px; }
.values {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-top: 36px;
}
.value {
  padding: 24px 26px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex; gap: 18px; align-items: flex-start;
  transition: transform 0.3s, border-color 0.3s;
}
.value:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.value .vn { font-family: var(--font-mono); font-size: 12px; color: var(--muted); }
.value b { font-family: var(--font-display); font-weight: 600; font-size: 17px; }
.value p { margin: 0; font-size: 14px; }
@media (max-width: 720px) {
  .values { grid-template-columns: 1fr; }
}

/* ============================================================
   CONTACT / CTA
   ============================================================ */
/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: linear-gradient(to bottom, var(--bg) 0, var(--bg-2) 100px, var(--bg-2) 100%);
}

/* --- big email contact block --- */
.footer-contact {
  padding: clamp(64px, 10vh, 120px) 0 clamp(56px, 8vh, 100px);
  border-bottom: 1px solid var(--border);
}
.footer-contact .eyebrow { display: block; margin-bottom: 32px; }

.footer-email {
  display: inline-flex; align-items: center; gap: clamp(16px, 2.5vw, 28px);
  flex-wrap: wrap;
  font-family: var(--font-heading);
  font-size: clamp(32px, 6vw, 88px);
  font-weight: 700; letter-spacing: -0.03em; line-height: 1;
  color: var(--text);
  text-decoration: none;
}
/* Skiper UI Link004 — mix-blend-difference sweep on the text */
.footer-email-text {
  position: relative; overflow: hidden;
  padding: 0 4px;
}
.footer-email-text::before {
  content: "";
  pointer-events: none;
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 0;
  background: #fff;
  mix-blend-mode: difference;
  transition: height 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-email:hover .footer-email-text::before { height: 1.12em; }
.footer-email:hover .footer-email-arrow { transform: translate(6px, -6px) scale(1.1); }

.footer-email-arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: clamp(44px, 6vw, 82px); height: clamp(44px, 6vw, 82px);
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  font-size: clamp(20px, 3vw, 40px);
  font-style: normal; line-height: 1;
  flex-shrink: 0;
  box-shadow: 0 0 28px color-mix(in srgb, var(--magenta) calc(38% * var(--glow-strength)), transparent);
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s;
}

/* --- info columns --- */
.footer-info {
  padding-block: 50px 46px;
  border-bottom: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1.3fr 0.8fr 1fr;
  gap: 40px;
}
.footer-col h5 {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 14px;
}
.footer-col p {
  font-size: 14.5px; color: var(--text-2); line-height: 1.75;
}
.footer-col a {
  display: block; font-size: 15px;
  color: var(--text-2); margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--magenta); }

/* --- bottom bar --- */
.footer-bottom { padding-block: 22px; }
.footer-bottom .wrap {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
}
.footer-bottom span {
  font-family: var(--font-mono); font-size: 11.5px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted);
}

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-email { font-size: clamp(28px, 8vw, 44px); }
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
html.js .reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1),
              transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
html.js .reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }

/* ============================================================
   ACCESSIBILITY — REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  #shader-bg { display: none; }
  .marquee-track { animation: none !important; }
}
