/* ═══════════════════════════════════════════════════════════════
   ADRIANA POMMOT — HOME · sistema padronizado
   Tokens extraídos da linguagem aprovada (preto/bone/lime).
   Tipografia fluida (clamp). Plus Jakarta Sans.
   ═══════════════════════════════════════════════════════════════ */
:root {
  --font: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  /* cor */
  --ink: #111111;
  --ink-2: #37342f;
  --paper: #ffffff;
  --bone: #f4f3ef;
  --line: #e7e2da;
  --accent: #e0ff33;
  --accent-press: #d2f51c;
  --accent-soft: #eeffa0;
  --warm-1: #756f67;
  --warm-2: #b8b2a8;
  --body: #49443c;
  --dark: #111110;
  /* layout */
  --maxw: 1440px;
  --gut: clamp(24px, 5vw, 64px);
}

* , *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--ink); background: var(--paper); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--accent); color: var(--ink); }
p { text-wrap: pretty; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-left: var(--gut); padding-right: var(--gut); }

/* ── utilitários de tipo ─────────────────────────────────────── */
.eyebrow { font-size: 13px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--warm-1); }
.lead { font-size: clamp(16px, 1.4vw, 19px); font-weight: 500; line-height: 1.5; color: var(--ink-2); text-wrap: pretty; }

/* ── botões ──────────────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; border-radius: 999px; cursor: pointer; white-space: nowrap;
  transition: box-shadow .2s ease, transform .12s ease, background .2s ease, color .2s ease, border-color .2s ease; }
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--accent); color: var(--ink); border: 1px solid var(--accent); padding: 13px 24px; }
.btn--primary:hover { background: var(--accent); box-shadow: 0 10px 26px rgba(224,255,51,.6); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); border: 1px solid var(--ink); padding: 13px 24px; }
.btn--ghost:hover { background: var(--ink); color: #fff; }
.btn--dark { background: var(--ink); color: #fff; border: 1px solid var(--ink); padding: 13px 24px; }
.btn--dark:hover { box-shadow: 0 10px 26px rgba(17,17,17,.28); transform: translateY(-2px); }

/* ═══════════════════════════════════ NAV ═══════════════════════ */
.nav-name { position: fixed; top: 36px; left: var(--gut); z-index: 100; font-size: 12px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink); background: var(--accent); padding: 9px 20px; border-radius: 999px; overflow: hidden; }
.nav-name span { display: block; line-height: 1; white-space: nowrap; transition: transform .45s cubic-bezier(.19,1,.22,1); }
.nav-name:hover span { transform: translateY(-100%); }
.nav-roll { display: block; overflow: hidden; height: 1em; }
.nav-float { position: fixed; top: 36px; right: var(--gut); z-index: 100; display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.nav-toggle { width: 50px; height: 50px; border-radius: 50%; border: 1px solid var(--accent); cursor: pointer; background: var(--accent); display: flex; align-items: center; justify-content: center; transition: background .3s, border-color .3s; }
.nav-toggle:hover { background: var(--ink); border-color: var(--ink); }
.nav-toggle:hover svg { stroke: #fff; }
.nav-toggle svg { width: 20px; height: 20px; stroke: var(--ink); stroke-width: 1.2; fill: none; }
.nav-toggle .icon-x { display: none; }
.nav-float.open .nav-toggle { background: var(--ink); border-color: var(--ink); }
.nav-float.open .nav-toggle svg { stroke: #fff; }
.nav-float.open .nav-toggle .icon-menu { display: none; }
.nav-float.open .nav-toggle .icon-x { display: block; }
.nav-menu { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; opacity: 0; transform: translateY(-8px); pointer-events: none; transition: opacity .3s, transform .3s; }
.nav-float.open .nav-menu { opacity: 1; transform: none; pointer-events: auto; }
.nav-menu a { font-size: 12px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; padding: 9px 18px; border-radius: 999px; white-space: nowrap; transition: background .25s, color .25s; }
.nav-menu .nav-cta { color: #fff; background: var(--ink); display: inline-flex; align-items: center; gap: 8px; }
.nav-menu .nav-cta:hover { background: var(--accent); color: var(--ink); }
.nav-menu .nav-link { color: var(--ink-2); background: rgba(255,255,255,.6); backdrop-filter: blur(12px); }
.nav-menu .nav-link:hover { background: var(--ink); color: #fff; }

/* ═══════════════════════════════════ HERO (T1) ═════════════════ */
.hero { background: var(--paper); min-height: 100vh; min-height: 100svh; display: flex; flex-direction: column; padding: clamp(84px, 9vh, 116px) 0 0; }
/* hero ancorado à ESQUERDA (alinha o título com a cápsula fixa da marca em telas largas) */
.hero > .wrap.hero-grid { margin-left: 0; margin-right: auto; }
.hero-grid { flex: 1; min-height: 0; display: flex; flex-direction: column; justify-content: space-between; gap: clamp(20px, 3vh, 40px); padding-bottom: clamp(24px, 3.5vh, 40px); }
.hero-top { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.loc { display: inline-flex; align-items: center; gap: 12px; }
.loc svg { width: 24px; height: 24px; color: var(--ink); flex-shrink: 0; }
.loc span { font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--warm-1); }
.hero-tag { font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--warm-1); }
.hero-title { font-size: clamp(44px, 8.6vw, 124px); font-weight: 700; letter-spacing: -0.045em; line-height: 0.92; text-transform: uppercase; color: var(--ink); }
.hero-title span { display: block; }
.hero-title span.hl { display: inline-block; background: linear-gradient(transparent 12%, var(--accent) 12%, var(--accent) 88%, transparent 88%); padding: 0; }
.hero-foot { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; flex-wrap: wrap; }
.hero-foot .lead { max-width: 420px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* hero entrance — DEFENSIVO. Estado padrão = VISÍVEL. A animação só roda
   quando o JS adiciona .hero-ready no <body>. Se JS/anim falharem → hero visível. */
@keyframes heroRise { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: translateY(0); } }
.hero-ready .hero-top,
.hero-ready .hero-title span,
.hero-ready .hero-foot .lead,
.hero-ready .hero-ctas { animation: heroRise .8s cubic-bezier(.2,.7,.3,1) backwards; }
.hero-ready .hero-top { animation-delay: .05s; }
.hero-ready .hero-title span:nth-child(1) { animation-delay: .12s; }
.hero-ready .hero-title span:nth-child(2) { animation-delay: .19s; }
.hero-ready .hero-title span:nth-child(3) { animation-delay: .26s; }
.hero-ready .hero-title span:nth-child(4) { animation-delay: .33s; }
.hero-ready .hero-foot .lead { animation-delay: .44s; }
.hero-ready .hero-ctas { animation-delay: .52s; }
@media (prefers-reduced-motion: reduce) {
  .hero-ready .hero-top, .hero-ready .hero-title span, .hero-ready .hero-foot .lead, .hero-ready .hero-ctas { animation: none; }
}

/* skills ticker */
.ticker { margin-top: 0; background: var(--ink); height: 52px; display: flex; align-items: center; overflow: hidden; }
.ticker-track { display: inline-flex; align-items: center; white-space: nowrap; animation: ticker 45s linear infinite; }
.ticker-track span.s { color: var(--accent); padding: 0 16px; font-size: 12px; }
.ticker-track span.t { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-soft); }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ═══════════════════════════════════ PIXELS (A) ═══════════════ */
.pixels { background: var(--paper); padding: clamp(48px, 5.5vw, 80px) 0; }
.pixels-grid { display: grid; grid-template-columns: 0.78fr 1.22fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.pixels-text { display: flex; flex-direction: column; align-items: flex-start; gap: 26px; }
.pixels-art { display: flex; justify-content: center; }
.pixels-art img { width: 100%; max-width: 780px; mix-blend-mode: multiply; }
.pixels-title { font-size: clamp(34px, 4.2vw, 54px); font-weight: 600; letter-spacing: -0.03em; line-height: 1.02; text-transform: uppercase; color: var(--ink); }
.pixels-title span { display: block; }
.pixels-cta { display: inline-flex; align-items: center; gap: 12px; font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); white-space: nowrap; }
.pixels-cta b { color: var(--warm-2); font-weight: 700; }
.pixels-cta .ar { font-size: 18px; transition: transform .25s ease; }
.pixels-cta:hover .ar { transform: translateX(6px); }

/* ═══════════════════════════════════ PROJETOS (X2 pôster) ═════ */
.projects { background: var(--dark); color: #fff; padding: clamp(48px, 5.5vw, 80px) 0; }
.sec-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; margin-bottom: clamp(40px, 5vw, 56px); }
.sec-head .eyebrow.on-dark { color: rgba(255,255,255,.45); }
.sec-head .eyebrow .em { color: var(--accent); }
.sec-title { font-size: clamp(40px, 6vw, 80px); font-weight: 600; letter-spacing: -0.035em; line-height: 0.92; text-transform: uppercase; }
.sec-note { font-size: 12.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,.4); }
.posters { display: flex; flex-direction: column; gap: clamp(20px, 2.5vw, 28px); }
.poster { position: relative; display: block; border-radius: 16px; overflow: hidden; aspect-ratio: 16/7; }
.poster img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.25,.46,.45,.94); }
.poster:hover img { transform: scale(1.05); }
.poster-scrim { position: absolute; inset: 0; z-index: 2; background: linear-gradient(90deg, rgba(10,10,8,.82) 0%, rgba(10,10,8,.34) 46%, rgba(10,10,8,0) 76%); }
.poster-scrim.placeholder { background: linear-gradient(135deg,#2a2925,#161512); }
.poster-top { position: absolute; left: clamp(24px,3vw,40px); right: clamp(24px,3vw,40px); top: 28px; z-index: 3; display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; }
.poster-num { font-size: 15px; font-weight: 600; color: var(--accent); }
.poster-tags { display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end; }
.poster-tags span { font-size: 11.5px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,.6); border: 1px solid rgba(255,255,255,.2); border-radius: 999px; padding: 6px 13px; white-space: nowrap; }
.poster-bot { position: absolute; left: clamp(24px,3vw,40px); bottom: clamp(24px,3vw,34px); z-index: 3; }
.poster-name { font-size: clamp(48px, 8vw, 96px); font-weight: 700; letter-spacing: -0.04em; line-height: 0.86; text-transform: uppercase; color: #fff; }
.poster-sub { display: flex; align-items: center; gap: 16px; margin-top: 14px; flex-wrap: wrap; }
.poster-sub b { font-size: clamp(15px,1.4vw,18px); font-weight: 500; letter-spacing: 0.02em; text-transform: uppercase; color: rgba(255,255,255,.78); }
.poster-cta { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); white-space: nowrap; transition: gap .3s; }
.poster:hover .poster-cta { gap: 14px; }

/* ═══════════════════════════════════ SERVIÇOS (cards) ═════════ */
.services { background: var(--bone); padding: clamp(48px, 5.5vw, 80px) 0; }
.svc-head { display: flex; justify-content: space-between; align-items: flex-end; gap: clamp(24px,4vw,48px); margin-bottom: clamp(40px,5vw,56px); flex-wrap: wrap; }
.svc-headline { font-size: clamp(48px, 6.5vw, 80px); font-weight: 500; letter-spacing: -0.03em; line-height: 0.95; text-transform: uppercase; color: var(--ink); }
.svc-headline span { display: block; }
.svc-head .lead { max-width: 400px; }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.svc-card { background: var(--paper); border: 1px solid #ece8e1; border-radius: 18px; padding: 0 28px 28px; display: flex; flex-direction: column; position: relative; overflow: hidden; min-height: 460px; box-shadow: 0 1px 2px rgba(17,17,17,.05), 0 10px 30px rgba(17,17,17,.04);
  transition: transform .28s cubic-bezier(.2,.7,.3,1), box-shadow .28s ease; }
.svc-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(17,17,17,.10), 0 5px 14px rgba(17,17,17,.05); }
.svc-bar { position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--line); transition: background .25s; }
.svc-card:hover .svc-bar { background: var(--accent); }
.svc-cardtop { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; }
.svc-icoc { width: 50px; height: 50px; border-radius: 999px; background: var(--bone); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; color: var(--ink); transition: background .25s, border-color .25s, color .25s; }
.svc-card:hover .svc-icoc { background: var(--accent); border-color: var(--accent); }
.svc-icoc svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.svc-num { font-size: 40px; font-weight: 600; letter-spacing: -0.03em; color: var(--warm-2); font-variant-numeric: tabular-nums; }
.svc-name { margin-top: 22px; font-size: 25px; font-weight: 600; letter-spacing: -0.01em; color: var(--ink); }
.svc-desc { margin: 12px 0 22px; font-size: 15px; line-height: 1.6; color: var(--body); }
.svc-ficha { margin-top: auto; padding-top: 20px; border-top: 1px solid var(--line); }
.svc-frow { display: flex; justify-content: space-between; gap: 16px; padding: 9px 0; }
.svc-frow + .svc-frow { border-top: 1px solid var(--line); }
.svc-fl { font-size: 11.5px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--warm-1); flex-shrink: 0; }
.svc-fv { font-size: 14px; font-weight: 500; line-height: 1.4; text-align: right; color: var(--ink-2); }

/* ═══════════════════════════════════ TRAJETÓRIA (D roster) ════ */
.traj { background: var(--paper); padding: clamp(48px, 5.5vw, 80px) 0; }
.traj-head { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; margin-bottom: clamp(32px,4vw,44px); }
.traj-archive { display: inline-flex; align-items: center; gap: 9px; font-size: 12.5px; font-weight: 600; letter-spacing: 0.04em; color: var(--ink-2); border: 1px solid var(--line); border-radius: 999px; padding: 11px 20px; transition: background .25s, border-color .25s, color .25s; }
.traj-archive:hover { background: var(--ink); border-color: var(--ink); color: #fff; }
.traj-archive svg { width: 12px; height: 12px; }
.traj-list { border-top: 1px solid var(--line); }
.traj-row { display: block; padding: clamp(16px,2vw,22px) 24px; margin: 0 -24px; border-bottom: 1px solid var(--line); border-radius: 14px; transition: background .18s ease; }
.traj-row:hover { background: var(--bone); }
.traj-meta { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 4px; gap: 16px; }
.traj-period { font-size: 14px; font-weight: 600; letter-spacing: 0.04em; color: var(--warm-1); font-variant-numeric: tabular-nums; white-space: nowrap; }
.traj-role { font-size: 14px; color: var(--body); text-align: right; }
.traj-org-line { display: flex; align-items: center; gap: 18px; }
.traj-org { font-size: clamp(40px, 7vw, 72px); font-weight: 600; letter-spacing: -0.035em; line-height: 1; text-transform: uppercase; color: var(--ink); }
.traj-org .org-hl { display: inline-block; background: linear-gradient(transparent 58%, var(--accent) 58%, var(--accent) 94%, transparent 94%); }
.traj-arrow { color: var(--ink); opacity: 0; transform: translateX(-10px); transition: opacity .25s, transform .25s; font-size: 24px; }
.traj-row:hover .traj-arrow { opacity: 1; transform: none; }
.now-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink); background: var(--accent); padding: 5px 11px; border-radius: 999px; white-space: nowrap; vertical-align: baseline; margin-left: 16px; }

/* ═══════════════════════════════════ SOBRE MIM (C navegador) ══ */
.about { background: var(--paper); border-top: 1px solid var(--line); padding: clamp(48px, 5.5vw, 80px) 0; }
.about-wrap { display: flex; flex-direction: column; }
.about-grid { display: grid; grid-template-columns: 440px 1fr; min-height: 620px; border: 1px solid var(--line); border-radius: 18px; overflow: hidden; background: var(--paper); }
.about-rail { border-right: 1px solid var(--line); padding: clamp(48px,6vw,64px) 0 44px; display: flex; flex-direction: column; }
.about-railhead { padding: 0 clamp(28px,3.5vw,44px); margin-bottom: 36px; }
.about-railtitle { font-size: clamp(32px, 3.2vw, 44px); font-weight: 600; letter-spacing: -0.025em; line-height: 0.96; text-transform: uppercase; color: var(--ink); margin-top: 14px; }
.about-railhead .lead { margin-top: 16px; font-size: 16px; max-width: 320px; color: var(--body); }
.about-nav { flex: 1; display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.about-tab { all: unset; box-sizing: border-box; cursor: pointer; display: flex; align-items: center; gap: 18px; padding: 0 clamp(28px,3.5vw,44px); height: 64px; border-bottom: 1px solid var(--line); color: var(--ink); transition: color .22s; }
.about-tab .num { font-size: 13px; font-weight: 600; font-variant-numeric: tabular-nums; color: var(--warm-2); width: 22px; transition: color .22s; }
.about-tab .lbl { font-size: 19px; font-weight: 500; letter-spacing: -0.01em; flex: 1; }
.about-tab .ar { opacity: 0; transform: translateX(-6px); transition: opacity .22s, transform .22s; color: var(--accent); font-size: 18px; }
.about-tab:hover:not(.active) { background: var(--bone); }
.about-tab.active { background: var(--ink); color: var(--paper); }
.about-tab.active .num { color: var(--accent); }
.about-tab.active .ar { opacity: 1; transform: none; }
.about-tab:focus-visible { outline: 2px solid var(--accent); outline-offset: -2px; }
.about-ctas { padding: 32px clamp(28px,3.5vw,44px) 0; display: flex; gap: 10px; }
.about-detail { position: relative; overflow: hidden; padding: clamp(48px,7vw,72px) clamp(28px,5vw,80px); display: flex; flex-direction: column; justify-content: center; }
.about-ghost { position: absolute; top: 56px; right: clamp(28px,5vw,80px); font-size: 120px; font-weight: 600; letter-spacing: -0.05em; line-height: 0.8; color: var(--bone); user-select: none; pointer-events: none; }
.about-panel { display: none; max-width: 720px; }
.about-panel.active { display: block; }
.about-panel .plabel { display: block; font-size: 13px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--warm-1); margin-bottom: 22px; }
.about-panel .ptitle { margin: 0 0 28px; font-size: clamp(28px,3.4vw,40px); font-weight: 500; letter-spacing: -0.025em; line-height: 1.08; text-wrap: balance; }
.about-panel .pbody { margin: 0; font-size: clamp(17px,1.6vw,21px); line-height: 1.6; color: var(--body); }
.about-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 36px; }
.about-tags span { font-size: 14px; font-weight: 600; color: var(--ink); background: var(--bone); border-radius: 999px; padding: 9px 18px; white-space: nowrap; }
.about-panel--closer .plabel { letter-spacing: 0.4em; }
.about-closer { font-size: clamp(48px,6vw,88px); font-weight: 500; letter-spacing: -0.035em; line-height: 0.98; }
.about-closer .hl2 { background: linear-gradient(transparent 60%, var(--accent) 60%); }

/* ═══════════════════════════════════ CTA (E menu lime) ════════ */
.cta { background: var(--accent); padding: clamp(44px, 5vw, 72px) 0; }
.cta-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(32px,5vw,56px); align-items: end; }
.cta-eyebrow { font-size: 12.5px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(17,17,17,.55); margin-bottom: 22px; }
.cta-title { font-size: clamp(48px, 7vw, 72px); font-weight: 700; letter-spacing: -0.04em; line-height: 0.88; text-transform: uppercase; color: var(--ink); }
.cta-sub { margin-top: 22px; font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(17,17,17,.6); }
.cta-menu { border-top: 1px solid rgba(17,17,17,.2); }
.cta-row { display: grid; grid-template-columns: auto 1fr auto; gap: 20px; align-items: baseline; padding: clamp(16px,2vw,20px) 8px; border-bottom: 1px solid rgba(17,17,17,.2); color: var(--ink); transition: padding-left .25s ease; }
.cta-row:hover { padding-left: 18px; }
.cta-row .cl { font-size: clamp(26px,3vw,34px); font-weight: 600; letter-spacing: -0.02em; text-transform: uppercase; }
.cta-row .cv { font-size: 15px; font-weight: 500; color: rgba(17,17,17,.6); }
.cta-row .car { font-size: 22px; transition: transform .25s ease; }
.cta-row:hover .car { transform: translate(4px,-4px); }

/* ═══════════════════════════════════ FOOTER ═══════════════════ */
.footer { background: var(--dark); color: #fff; padding: clamp(56px,7vw,72px) 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: clamp(24px,3vw,48px); margin-bottom: clamp(48px,6vw,72px); }
.footer-logo { font-size: 14px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 20px; }
.footer-col-title { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,.28); margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 12.5px; color: rgba(255,255,255,.45); transition: color .25s; }
.footer-links a:hover { color: var(--accent); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.1); flex-wrap: wrap; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,.3); }

/* ── reveal ──────────────────────────────────────────────────── */
.rv { opacity: 0; transform: translateY(22px); transition: opacity .6s ease-out, transform .6s ease-out; will-change: opacity, transform; }
.rv.vis { opacity: 1; transform: none; }
.d1 { transition-delay: .08s; } .d2 { transition-delay: .16s; } .d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) { .rv { opacity: 1; transform: none; transition: none; } .ticker-track { animation: none; } }

/* ═══════════════════════════════════ RESPONSIVE ══════════════ */
@media (max-width: 1080px) {
  .svc-grid { grid-template-columns: 1fr; max-width: 520px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-rail { border-right: 0; border-bottom: 1px solid var(--line); }
  .about-detail { min-height: 0; }
}
@media (max-width: 860px) {
  .pixels-grid { grid-template-columns: 1fr; gap: 32px; }
  .pixels-art { order: 2; }
  .cta-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .poster { aspect-ratio: 4/5; }
  .poster-scrim { background: linear-gradient(0deg, rgba(10,10,8,.9) 0%, rgba(10,10,8,.35) 50%, rgba(10,10,8,.1) 100%); }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .traj-role { display: none; }
  .nav-name { font-size: 11px; padding: 8px 16px; }
}
