/* ─── Akou v2 — design studio site ─────────────────────────────────── */

/*
  ╔══════════════════════════════════════════════════════════╗
  ║  VARIÁVEIS PRINCIPAIS — edite aqui para mudar o site    ║
  ╠══════════════════════════════════════════════════════════╣
  ║                                                          ║
  ║  Para mudar a COR DE DESTAQUE do site inteiro,          ║
  ║  basta alterar accentColor no TWEAK_DEFAULTS_V2         ║
  ║  dentro de app-v2.jsx                                   ║
  ║                                                          ║
  ║  Exemplos:                                              ║
  ║    Branco (atual):  #F5F5F0                             ║
  ║    Amarelo-verde:   #E2FA6F                             ║
  ║    Azul:            #7DC8E8                             ║
  ║    Rosa:            #FF8FBF                             ║
  ║    Laranja:         #FFB347                             ║
  ║                                                          ║
  ╚══════════════════════════════════════════════════════════╝
*/

:root {
  /* ── Paleta base ─────────────────────────────────────────── */
  --bg:        #0A0A0A;
  --fg:        #F5F5F0;
  --fg-dim:    rgba(245, 245, 240, 0.45);
  --fg-faint:  rgba(245, 245, 240, 0.18);

  /* ── COR PRINCIPAL — controlada pelo JS (app-v2.jsx) ─────── */
  --accent:        #F5F5F0;
  --accent-hover:  rgba(245, 245, 240, 0.85);
  --accent-fg:     #0A0A0A;
  --accent-glow:   rgba(245, 245, 240, 0.25);
  --accent-glow-lg:rgba(245, 245, 240, 0.15);

  /* ── Bordas / separadores ────────────────────────────────── */
  --rule: rgba(245, 245, 240, 0.12);
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

html {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Inter Tight', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
}

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

::selection { background: var(--accent); color: var(--accent-fg); }

/* ─── Loader ──────────────────────────────────────────────────── */
.loader {
  position: fixed; inset: 0; z-index: 100;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.loader-inner {
  display: flex; align-items: baseline; gap: 0.04em;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: clamp(64px, 14vw, 220px);
  letter-spacing: -0.04em;
  line-height: 1;
}
.loader-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.3em);
  transition: opacity 0.5s cubic-bezier(.2,.7,.2,1), transform 0.6s cubic-bezier(.2,.7,.2,1);
}
.loader-char.in { opacity: 1; transform: translateY(0); }
.loader-dot {
  width: 0.18em; height: 0.18em; border-radius: 50%;
  background: var(--accent); align-self: center;
  margin-left: 0.05em; opacity: 0; transform: scale(0);
  transition: opacity 0.4s, transform 0.5s cubic-bezier(.34,1.56,.64,1);
}
.loader-dot.in { opacity: 1; transform: scale(1); }
.loader.exit {
  transform: translateY(-100%);
  transition: transform 0.9s cubic-bezier(.7,0,.2,1);
}
body.loading { overflow: hidden; }

/* ─── Nav ─────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 22px 32px;
  font-size: 14px;
  font-weight: 450;
  letter-spacing: -0.01em;
  mix-blend-mode: difference;
  color: var(--fg);
}
.nav-brand { height: 18px;}
.nav-brand .dot {
  display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); margin-left: 4px;
  vertical-align: middle; transform: translateY(-2px);
}
.nav-links { display: flex; gap: 36px; justify-content: center; }
.nav-link {
  position: relative; padding: 4px 0; opacity: 0.85;
  transition: opacity 0.2s;
}
.nav-link::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: currentColor; transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.4s cubic-bezier(.7,0,.2,1);
}
.nav-link:hover { opacity: 1; }
.nav-link:hover::after { transform: scaleX(1); transform-origin: left center; }
.nav-lang { display: flex; gap: 12px; justify-content: flex-end; font-variant-numeric: tabular-nums; }
.nav-lang button {
  background: none; border: 0; padding: 0; cursor: pointer;
  opacity: 0.45; transition: opacity 0.2s;
}
.nav-lang button.active { opacity: 1; }
.nav-lang button:hover { opacity: 1; }

/* ─── Hero ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 120px 32px 60px;
  display: grid;
  grid-template-rows: 1fr auto;

  background-image: 
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.9) 0%,
      rgba(0,0,0,0.6) 10%,
      rgba(0,0,0,0) 50%,
      rgba(0,0,0,0.8) 90%,
      rgba(0,0,0,1) 100%
    ),
    url('heroImage.jpg');

  background-repeat: no-repeat;
  background-position: left;
  background-size: 260vh;
}

.hero-top {
  display: grid;
  grid-template-columns: 1.2fr;
  gap: 60px;
  align-items: center;
}

.hero-headline {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(32px, 4vw, 68px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin: 0;
  max-width: 16ch;
  text-wrap: pretty;
}
.hero-headline .accent {
  font-style: italic; font-weight: 300;
}

.hero-light-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 540px;
  justify-self: end;
  display: flex; align-items: center; justify-content: center;
}

/* ── Variant: AURORA / Nebulosa fluida ── */
.light-aurora {
  position: absolute; inset: 0;
  border-radius: 50%;
  overflow: hidden;
  filter: blur(2px);
}
.aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  mix-blend-mode: screen;
  opacity: 0.85;
}
.aurora-blob.b1 {
  width: 70%; height: 70%; left: 10%; top: 5%;
  background: var(--accent);
  animation: aurora1 14s ease-in-out infinite;
}
.aurora-blob.b2 {
  width: 60%; height: 60%; right: 5%; bottom: 10%;
  background: #7DC8E8;
  animation: aurora2 18s ease-in-out infinite;
}
.aurora-blob.b3 {
  width: 50%; height: 50%; left: 30%; top: 35%;
  background: #DDFFD0;
  animation: aurora3 22s ease-in-out infinite;
}
.aurora-blob.b4 {
  width: 40%; height: 40%; right: 25%; top: 10%;
  background: #FFF5D6;
  opacity: 0.5;
  animation: aurora4 16s ease-in-out infinite;
}
.aurora-veil {
  position: absolute; inset: -10%;
  background: radial-gradient(circle, transparent 30%, var(--bg) 75%);
  pointer-events: none;
}
@keyframes aurora1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(8%, -10%) scale(1.15); }
  66%      { transform: translate(-6%, 12%) scale(0.9); }
}
@keyframes aurora2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-12%, -8%) scale(1.2); }
}
@keyframes aurora3 {
  0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
  50%      { transform: translate(10%, 8%) scale(1.3) rotate(180deg); }
}
@keyframes aurora4 {
  0%, 100% { transform: translate(0, 0) scale(0.8); }
  50%      { transform: translate(-15%, 15%) scale(1.4); }
}

/* ── Variant: LIQUID METAL ── */
.light-liquid {
  position: absolute;
  top: 8%; left: 8%; right: 8%; bottom: 8%;
  border-radius: 50%;
  background:
    conic-gradient(from 0deg at 50% 50%,
      var(--accent) 0deg,
      #DDFFD0 60deg,
      #7DC8E8 120deg,
      #2A2A2A 200deg,
      var(--accent) 280deg,
      #FFF5D6 340deg,
      var(--accent) 360deg);
  filter: blur(0.5px) contrast(1.1);
  animation: liquid-spin 12s linear infinite;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.1) inset,
    0 30px 80px var(--accent-glow),
    0 0 200px var(--accent-glow-lg);
}
.light-liquid::before {
  content: '';
  position: absolute; inset: 6%;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 30% 25%, rgba(255,255,255,0.7) 0%, transparent 35%),
    radial-gradient(ellipse at 75% 75%, rgba(0,0,0,0.4) 0%, transparent 50%);
  filter: blur(8px);
  mix-blend-mode: overlay;
  animation: liquid-shine 8s ease-in-out infinite;
}
.light-liquid::after {
  content: '';
  position: absolute; inset: -20%;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow-lg) 0%, transparent 55%);
  filter: blur(40px);
  pointer-events: none;
  z-index: -1;
}
@keyframes liquid-spin {
  to { transform: rotate(360deg); }
}
@keyframes liquid-shine {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50%      { transform: scale(1.15) rotate(40deg); }
}

/* ── Variant: TYPE / Display ── */
.light-type {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(120px, 24vw, 280px);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.85;
  user-select: none;
  position: relative;
  overflow: hidden;
}
.light-type-letters {
  position: relative;
  background: linear-gradient(
    100deg,
    var(--fg) 0%,
    var(--fg) 30%,
    var(--accent) 50%,
    var(--fg) 70%,
    var(--fg) 100%
  );
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: type-shimmer 5s linear infinite;
}
.light-type-glow {
  position: absolute; inset: -10%;
  background: radial-gradient(ellipse at center, var(--accent-glow) 0%, transparent 55%);
  filter: blur(40px);
  pointer-events: none;
  animation: type-pulse 4s ease-in-out infinite;
}
@keyframes type-shimmer {
  0%   { background-position: 200% 0%; }
  100% { background-position: -100% 0%; }
}
@keyframes type-pulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.1); }
}

/* ─── Hero bottom ─────────────────────────────── */
.hero-bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: end;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 14px 22px 14px 24px;
  background: #fff; color: #000;
  border-radius: 999px; border: 0; cursor: pointer;
  font-weight: 500; font-size: 15px; letter-spacing: -0.005em;
  transition: transform 0.4s cubic-bezier(.2,.7,.2,1), background 0.3s;
  align-self: start; width: fit-content;
}
.hero-cta:hover { transform: translateY(-2px); background: var(--accent-hover); }
.hero-cta .arrow {
  width: 18px; height: 18px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform 0.4s cubic-bezier(.2,.7,.2,1);
}
.hero-cta:hover .arrow { transform: translateX(4px); }

.hero-sub {
  font-size: 15px; line-height: 1.45;
  max-width: 28ch; color: var(--fg); opacity: 0.9;
  margin: 0;
  text-align: right;
}

/* ─── Hero bottom row (scroll icon + logo bar) ── */
.hero-bottom-row {
  display: flex;
  align-items: center;
  gap: 48px;
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid var(--rule);
  overflow: hidden;
}

.hero-scroll {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-dim);
  white-space: nowrap;
  flex-shrink: 0;
}

.hero-scroll-icon {
  display: inline-block;
  width: 20px; height: 20px;
  border: 1px solid var(--fg-dim);
  border-radius: 999px;
  position: relative;
  flex-shrink: 0;
}
.hero-scroll-icon::after {
  content: '';
  position: absolute;
  top: 5px; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 5px;
  background: var(--fg-dim);
  border-radius: 1px;
  animation: scroll-icon 2s ease-in-out infinite;
}
@keyframes scroll-icon {
  0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
  50%       { opacity: 0; transform: translateX(-50%) translateY(4px); }
}

.logo-bar-track-wrap {
  flex: 1;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}

.logo-bar-track {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  white-space: nowrap;
  animation: logo-scroll 28s linear infinite;
}

.logo-item {
  display: inline-block;
  color: var(--fg-dim);
  white-space: nowrap;
  transition: color 0.3s;
  cursor: default;
  user-select: none;
}
.logo-item:hover { color: var(--fg); }

@keyframes logo-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-33.333%); }
}

.hero-eyebrow {
  position: absolute;
  top: 100px; left: 32px; right: 32px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-dim);
}
.hero-eyebrow .dot {
  display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  background: #fff; margin-right: 8px;
  vertical-align: middle; transform: translateY(-1px);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: translateY(-1px) scale(1); }
  50%      { opacity: 0.5; transform: translateY(-1px) scale(1.4); }
}

/* ─── Reveal section ─────────────────────────── */
.reveal-section {
  padding: 200px 32px 240px;
  display: grid;
  grid-template-columns: 1fr 9fr 1fr;
  gap: 32px;
  position: relative;
}
.reveal-eyebrow {
  font-size: 12px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--fg-dim);
  position: sticky; top: 100px; align-self: start;
}
.reveal-eyebrow .dot {
  display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); margin-right: 8px;
  vertical-align: middle; transform: translateY(-1px);
}
.reveal-text {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(28px, 3.4vw, 54px);
  font-weight: 400; letter-spacing: -0.025em;
  line-height: 1.18; text-wrap: pretty; max-width: 22ch;
}
.reveal-word {
  display: inline-block;
  color: var(--fg-faint);
  transition: color 0.3s ease-out;
  margin-right: 0.22em;
}
.reveal-word.in { color: var(--fg); }
.reveal-word.accent.in { color: var(--accent); font-style: italic; font-weight: 300; }

/* ─── Mosaic Work Cards ───────────────────────── */
.work-section-v2 {
  padding: 60px 32px 160px;
  max-width: 1140px;
  margin: auto;
}
.work-head {
  display: flex; justify-content: space-between; align-items: end;
  margin-bottom: 80px; padding-bottom: 24px;
  border-bottom: 1px solid var(--rule);
}
.work-head h2 {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 400; letter-spacing: -0.035em;
  line-height: 1; margin: 0;
}
.work-head h2 .accent {
  font-style: italic; font-weight: 300;
}
.work-head .meta {
  font-size: 12px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--fg-dim);
}

/* mosaic — 12-col grid, items occupy varying rows + offsets */
.mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 80px 32px;
  align-items: start;
}
.mosaic-item {
  cursor: pointer;
  position: relative;
  display: block;
}
.mosaic-item.m1 { grid-column: 1 / span 6; margin-top: 0; }
.mosaic-item.m2 { grid-column: 8 / span 5; margin-top: 140px; }
.mosaic-item.m3 { grid-column: 2 / span 5; margin-top: -60px; }
.mosaic-item.m4 { grid-column: 8 / span 5; margin-top: 60px; }
.mosaic-item.m5 { grid-column: 3 / span 6; margin-top: 40px; }
.mosaic-item.m6 { grid-column: 1 / span 4; margin-top: -40px; }

.mosaic-visual {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: #111;
  transition: transform 0.7s cubic-bezier(.2,.7,.2,1);
}
.mosaic-item.m2 .mosaic-visual,
.mosaic-item.m3 .mosaic-visual,
.mosaic-item.m6 .mosaic-visual { aspect-ratio: 3 / 4; }
.mosaic-item.m4 .mosaic-visual { aspect-ratio: 4 / 5; }

.mosaic-visual canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  transition: transform 1.2s cubic-bezier(.2,.7,.2,1), filter 0.6s;
}
.mosaic-visual::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.7) 100%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}
.mosaic-item:hover .mosaic-visual::after { opacity: 1; }
.mosaic-item:hover canvas { transform: scale(1.06); filter: brightness(1.05); }

.mosaic-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 22px 24px;
  z-index: 2;
  pointer-events: none;
}
.mosaic-num {
  align-self: flex-start;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px; letter-spacing: 0.06em;
  color: rgba(255,255,255,0.85);
  margin-bottom: auto;
  opacity: 0.85;
}
.mosaic-info {
  transform: translateY(8px);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(.2,.7,.2,1), opacity 0.4s;
}
.mosaic-item:hover .mosaic-info { transform: translateY(0); opacity: 1; }
.mosaic-info-row {
  display: flex; justify-content: space-between; align-items: end;
  gap: 16px;
}
.mosaic-title {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(22px, 2.4vw, 36px);
  font-weight: 450; letter-spacing: -0.02em;
  line-height: 1.05; margin: 0;
  color: #fff;
}
.mosaic-tag {
  font-size: 12px; letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 6px;
}
.mosaic-year {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px; letter-spacing: 0.06em;
  color: rgba(255,255,255,0.75);
}

.mosaic-caption {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--fg-dim);
  text-transform: uppercase;
  opacity: 0.7;
  transition: opacity 0.4s, color 0.4s;
}
.mosaic-item:hover .mosaic-caption { opacity: 1; color: var(--fg); }
.mosaic-caption .l { font-family: 'JetBrains Mono', ui-monospace, monospace; }

/* ─── Marquee ─────────────────────────────────── */
.marquee {
  padding: 60px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
}
.marquee-track {
  display: flex; gap: 60px;
  animation: marquee 58s linear infinite;
  white-space: nowrap; width: max-content;
}
.marquee span {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(40px, 6vw, 88px);
  font-weight: 400; letter-spacing: -0.035em;
  display: inline-flex; align-items: center; gap: 60px;
}
.marquee span::after {
  content: ''; width: 12px; height: 12px;
  border-radius: 50%; background: #fff;
  display: inline-block;
}
.marquee span:nth-child(even) {
  font-style: italic; font-weight: 300;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ─── Footer ──────────────────────────────────── */
.footer {
  position: relative;
  padding: 120px 32px 32px;
  border-top: 1px solid var(--rule);
  background:
    radial-gradient(ellipse at 50% 100%, #ffffff17, transparent 60%),
    var(--bg);
  overflow: hidden;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px; margin-bottom: 100px;
}
.footer-cta-block h3 {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 400; letter-spacing: -0.03em;
  line-height: 1.05; margin: 0 0 28px;
  text-wrap: pretty; max-width: 16ch;
}
.footer-cta-block h3 .accent {
  font-style: italic; font-weight: 300; color: var(--accent);
}
.footer-mail {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 17px; font-weight: 450; letter-spacing: -0.01em;
  padding-bottom: 6px; border-bottom: 1px solid var(--fg);
  transition: color 0.3s, border-color 0.3s, gap 0.3s;
}
.footer-mail:hover { color: var(--accent); border-color: var(--accent); gap: 16px; }

.footer-col-title {
  font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--fg-dim);
  margin: 0 0 18px;
}
.footer-col ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.footer-col li a {
  font-size: 15px; font-weight: 450; letter-spacing: -0.005em;
  position: relative; display: inline-block;
  transition: color 0.3s, transform 0.4s cubic-bezier(.2,.7,.2,1);
}
.footer-col li a:hover { color: var(--accent); transform: translateX(6px); }

.footer-status {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--fg-dim); margin-top: 18px;
}
.footer-status .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 12px var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}

.footer-giant {
  margin: 0 -32px 0;
  padding: 0 16px;
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(140px, 28vw, 480px);
  font-weight: 500; letter-spacing: -0.06em;
  line-height: 0.85; text-align: center;
  user-select: none;
  background: linear-gradient(180deg, var(--fg) 0%, var(--fg) 60%, transparent 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.footer-giant .dot {
  display: inline-block;
  width: 0.18em; height: 0.18em; border-radius: 50%;
  background: var(--accent); vertical-align: 0.05em;
  margin-left: -0.04em;
  -webkit-text-fill-color: var(--accent);
}

.footer-bottom {
  margin-top: 40px; padding-top: 28px;
  border-top: 1px solid var(--rule);
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 24px; font-size: 12px;
  letter-spacing: 0.04em; color: var(--fg-dim);
  text-transform: uppercase;
}
.footer-bottom .center { text-align: center; }
.footer-bottom .right { text-align: right; }
.footer-bottom .legal a { margin-left: 24px; transition: color 0.3s; }
.footer-bottom .legal a:hover { color: var(--accent); }

/* ─── Responsive ──────────────────────────────── */
@media (max-width: 900px) {
  .hero { padding: 120px 20px 40px; }
  .hero-eyebrow { left: 20px; right: 20px; }
  .hero-top { grid-template-columns: 1fr; gap: 40px; }
  .hero-light-wrap { max-width: 360px; justify-self: center; }
  .hero-bottom { grid-template-columns: 1fr; gap: 32px; }
  .hero-sub { text-align: left;}
  .hero-bottom-row { flex-direction: column; align-items: flex-start; gap: 24px; }
  .logo-bar-track-wrap { width: 100%; }
  .reveal-section { padding: 120px 20px 140px; grid-template-columns: 1fr; }
  .reveal-eyebrow { position: static; }
  .work-section-v2 { padding: 60px 20px 120px; }
  .mosaic { grid-template-columns: 1fr; gap: 50px; }
  .mosaic-item.m1, .mosaic-item.m2, .mosaic-item.m3,
  .mosaic-item.m4, .mosaic-item.m5, .mosaic-item.m6 { grid-column: 1; margin-top: 0; }
  .mosaic-visual,
  .mosaic-item.m2 .mosaic-visual,
  .mosaic-item.m3 .mosaic-visual,
  .mosaic-item.m4 .mosaic-visual,
  .mosaic-item.m6 .mosaic-visual { aspect-ratio: 4 / 3; }
  .footer { padding: 80px 20px 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; margin-bottom: 60px; }
  .footer-bottom { grid-template-columns: 1fr; }
  .footer-bottom .center, .footer-bottom .right { text-align: left; }
  .footer-bottom .legal a:first-child { margin-left: 0; }
  .nav { padding: 16px 20px; font-size: 13px; }
  .nav-links { gap: 18px; }
  .light-type { font-size: clamp(80px, 32vw, 200px); }
}

/* ===== Firefox ===== */
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.25) transparent;
}

/* ===== Chrome, Edge, Safari ===== */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 999px;
}
::-webkit-scrollbar-thumb:hover { background-color: rgba(255, 255, 255, 0.45); }

/* ─── Work grid simples ───────────────────────── */
.wgrid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 90px;
  align-items: center;
  max-width: 1020px;
  margin: auto;
}

.wcard-visual {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 0px;
  background: #111;
  cursor: pointer;
}

.wcard-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(.2,.7,.2,1);
}

.wcard:hover .wcard-visual img { transform: scale(1.15); }

.wcard:hover .wcard-title,
.wcard:hover .wcard-tag {
  transform: translateY(0);
  opacity: 1;
}

.wcard-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed rgba(245,245,240,0.15);
}

.wcard-placeholder span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--fg-dim);
  text-align: center;
  padding: 16px;
}

.wcard-overlay {
  position: absolute;
  inset: 0;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 50%);
}

.wcard-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.6);
  align-self: flex-start;
}

.wcard-title {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 450;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.1;
  transform: translateY(-20px);
  opacity: 0;
  transition: all 0.4s ease;
}

.wcard-tag {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
  transform: translateY(-20px);
  opacity: 0;
  transition: all 0.4s ease;
  transition-delay: 0.1s;
}

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