/* ============================================================
   BUZZIT — social scheduling landing page
   Visual DNA: dark #0C0C0C, Kanit, gradient ink, buzz gradient
   ============================================================ */

:root {
  --bg: #0C0C0C;
  --bg-soft: #141416;
  --ink: #D7E2EA;
  --ink-dim: rgba(215, 226, 234, 0.6);
  --ink-faint: rgba(215, 226, 234, 0.4);
  --line: rgba(215, 226, 234, 0.14);
  --line-strong: rgba(215, 226, 234, 0.28);

  /* buzz accent gradient */
  --buzz: linear-gradient(123deg, #18011F 7%, #B600A8 37%, #7621B0 72%, #BE4C00 100%);
  --buzz-soft: linear-gradient(123deg, #B600A8 0%, #7621B0 60%, #BE4C00 100%);
  --magenta: #B600A8;
  --violet: #7621B0;
  --amber: #BE4C00;

  /* ink gradient for headings */
  --ink-grad: linear-gradient(180deg, #646973 0%, #BBCCD7 100%);

  --maxw: 1320px;
}

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

html, body { background: var(--bg); }

html { scroll-behavior: smooth; }

body {
  font-family: 'Kanit', system-ui, sans-serif;
  color: var(--ink);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(20px, 4vw, 56px); }

/* ---------- shared type ---------- */
.ink-grad {
  background: var(--ink-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.display {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.86;
}
.eyebrow {
  font-size: clamp(0.72rem, 1vw, 0.92rem);
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-weight: 500;
  color: var(--ink-faint);
}

/* ---------- buttons ---------- */
.btn-buzz {
  display: inline-flex; align-items: center; gap: 0.6em;
  border: none; cursor: pointer;
  font-family: inherit; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: #fff;
  background: var(--buzz);
  border-radius: 999px;
  outline: 2px solid #fff; outline-offset: -3px;
  box-shadow: 0 4px 4px rgba(181,1,167,0.25), 4px 4px 12px #7721B1 inset;
  padding: clamp(0.7rem, 1.1vw, 1rem) clamp(1.6rem, 2.4vw, 2.6rem);
  font-size: clamp(0.74rem, 0.95vw, 0.95rem);
  transition: transform 0.25s ease, filter 0.25s ease;
}
.btn-buzz:hover { transform: translateY(-2px); filter: brightness(1.08); }
.btn-buzz svg { width: 1.1em; height: 1.1em; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.6em;
  border: 2px solid var(--line-strong); cursor: pointer;
  font-family: inherit; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--ink); background: transparent;
  border-radius: 999px;
  padding: clamp(0.66rem, 1vw, 0.92rem) clamp(1.5rem, 2.2vw, 2.4rem);
  font-size: clamp(0.74rem, 0.95vw, 0.95rem);
  transition: background 0.25s ease, border-color 0.25s ease;
}
.btn-ghost:hover { background: rgba(215,226,234,0.08); border-color: var(--ink); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: clamp(16px, 2vw, 26px) clamp(20px, 4vw, 56px);
  transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(12,12,12,0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 0.5rem; font-weight: 800; font-size: clamp(1.25rem, 1.8vw, 1.6rem); text-transform: lowercase; letter-spacing: -0.02em; }
.brand .dot { width: 0.62em; height: 0.62em; border-radius: 50%; background: var(--buzz-soft); box-shadow: 0 0 16px rgba(182,0,168,0.8); animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.25); opacity: 0.7; } }

.nav-links { display: flex; gap: clamp(1.4rem, 2.6vw, 2.8rem); }
.nav-links a {
  font-size: clamp(0.8rem, 1vw, 1rem); font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink);
  transition: opacity 0.2s ease; position: relative;
}
.nav-links a::after { content:''; position:absolute; left:0; bottom:-6px; height:2px; width:0; background: var(--buzz-soft); transition: width 0.25s ease; }
.nav-links a:hover { opacity: 0.7; }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 1rem; }
.nav-menu-btn { display: none; background: none; border: none; color: var(--ink); cursor: pointer; }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav .btn-buzz { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: space-between;
  padding-top: clamp(104px, 13vh, 170px);
  padding-bottom: clamp(28px, 4vh, 56px);
  overflow: clip;
}
.hero-glow {
  position: absolute; left: 50%; top: 46%; transform: translate(-50%,-50%);
  width: min(820px, 88vw); aspect-ratio: 1; pointer-events: none; z-index: 0;
  background: radial-gradient(circle, rgba(182,0,168,0.26) 0%, rgba(118,33,176,0.15) 35%, transparent 66%);
  filter: blur(20px);
}
.hero-top { position: relative; z-index: 2; text-align: center; }
.hero h1 {
  font-size: clamp(2.8rem, 11vw, 11.5rem);
  white-space: nowrap;
}
.hero h1 .line2 { display: block; }
.hero-sub-tag { margin-top: clamp(0.8rem, 1.6vw, 1.4rem); font-size: clamp(0.72rem, 1vw, 0.95rem); letter-spacing: 0.34em; text-transform: uppercase; color: var(--ink-faint); font-weight: 500; }

.hero-bottom {
  position: relative; z-index: 3;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem;
}
.hero-lead {
  max-width: 320px; font-weight: 300; text-transform: uppercase;
  letter-spacing: 0.06em; line-height: 1.35; color: var(--ink-dim);
  font-size: clamp(0.78rem, 1.15vw, 1.1rem);
}
.hero-lead strong { font-weight: 600; color: var(--ink); }
.hero-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 0.9rem; }
.hero-trust { display: flex; align-items: center; gap: 0.5rem; font-size: 0.78rem; color: var(--ink-faint); text-transform: uppercase; letter-spacing: 0.14em; }
.avatars { display: flex; }
.avatars span { width: 26px; height: 26px; border-radius: 50%; border: 2px solid var(--bg); margin-left: -9px; background-size: cover; }
.avatars span:first-child { margin-left: 0; }

/* hero centerpiece (composer mock) */
.hero-stage {
  position: relative; z-index: 5;
  width: min(380px, 80vw);
  margin: clamp(24px, 4vh, 56px) auto;
}
.magnet { will-change: transform; transition: transform 0.6s ease-in-out; }

.composer {
  position: relative;
  background: linear-gradient(180deg, #161618 0%, #0e0e10 100%);
  border: 1px solid var(--line-strong);
  border-radius: 28px;
  padding: 18px;
  box-shadow: 0 40px 100px -30px rgba(0,0,0,0.9), 0 0 0 1px rgba(255,255,255,0.02) inset;
}
.composer-head { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.composer-head .av { width: 34px; height: 34px; border-radius: 50%; background: var(--buzz-soft); }
.composer-head .meta b { display: block; font-weight: 600; font-size: 0.92rem; }
.composer-head .meta span { font-size: 0.72rem; color: var(--ink-faint); }
.composer-head .live { margin-left: auto; font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: #46e08a; display: flex; align-items: center; gap: 5px; }
.composer-head .live::before { content:''; width: 6px; height: 6px; border-radius: 50%; background: #46e08a; box-shadow: 0 0 8px #46e08a; }
.composer-text { font-weight: 300; font-size: 0.92rem; line-height: 1.4; color: var(--ink); margin-bottom: 14px; }
.composer-text .hl { color: #d98cf5; }
.composer-media { height: 120px; border-radius: 16px; overflow: hidden; margin-bottom: 14px; position: relative; background: linear-gradient(120deg, #2a0b3a, #1a1340 60%, #3a1505); }
.composer-media::after { content: 'media'; position: absolute; right: 10px; bottom: 8px; font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.5); font-family: ui-monospace, monospace; }
.composer-platforms { display: flex; gap: 8px; margin-bottom: 16px; }
.composer-platforms .p { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; background: rgba(255,255,255,0.06); border: 1px solid var(--line); color: var(--ink-dim); }
.composer-platforms .p.on { background: var(--buzz-soft); color: #fff; border-color: transparent; }
.composer-platforms .p svg { width: 17px; height: 17px; }
.composer-foot { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--line); padding-top: 13px; }
.composer-foot .when { font-size: 0.78rem; color: var(--ink-dim); display: flex; align-items: center; gap: 7px; }
.composer-foot .when svg { width: 15px; height: 15px; color: var(--magenta); }
.composer-foot .go { font-size: 0.74rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; padding: 8px 16px; border-radius: 999px; background: var(--buzz); color: #fff; box-shadow: 0 3px 10px rgba(181,1,167,0.4); }

/* floating platform chips */
.float-chip { position: absolute; width: clamp(46px, 5vw, 64px); height: clamp(46px, 5vw, 64px); border-radius: 18px; display: grid; place-items: center; color: #fff; box-shadow: 0 20px 40px -16px rgba(0,0,0,0.8); border: 1px solid rgba(255,255,255,0.12); backdrop-filter: blur(8px); }
.float-chip svg { width: 46%; height: 46%; }
.float-chip.c1 { top: 6%; left: -23%; background: linear-gradient(135deg,#833AB4,#FD1D1D 70%,#FCB045); animation: floaty 6s ease-in-out infinite; }
.float-chip.c2 { top: 22%; right: -24%; background: linear-gradient(135deg,#1d1d1f,#3a3a3c); animation: floaty 7s ease-in-out infinite 0.6s; }
.float-chip.c3 { bottom: 14%; left: -24%; background: linear-gradient(135deg,#0A66C2,#1287e0); animation: floaty 5.4s ease-in-out infinite 1s; }
.float-chip.c4 { bottom: 2%; right: -20%; background: linear-gradient(135deg,#FF0050,#00F2EA); animation: floaty 6.6s ease-in-out infinite 0.3s; }
@keyframes floaty { 0%,100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-14px) rotate(2deg); } }

@media (max-width: 760px) {
  .hero-stage { margin: 6vh auto; }
  .hero-bottom { flex-direction: column; align-items: flex-start; gap: 1.4rem; }
  .hero-actions { align-items: flex-start; }
  .float-chip { display: none; }
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats .wrap { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: clamp(28px, 4vw, 52px) 1rem; text-align: center; border-right: 1px solid var(--line); }
.stat:last-child { border-right: none; }
.stat b { display: block; font-weight: 800; font-size: clamp(1.8rem, 4vw, 3.4rem); line-height: 1; letter-spacing: -0.02em; }
.stat span { font-size: clamp(0.7rem, 1vw, 0.9rem); text-transform: uppercase; letter-spacing: 0.16em; color: var(--ink-faint); margin-top: 0.5rem; display: block; }
@media (max-width: 680px) { .stats .wrap { grid-template-columns: repeat(2, 1fr); } .stat:nth-child(2) { border-right: none; } .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); } }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee { padding: clamp(70px, 10vw, 140px) 0 clamp(40px, 5vw, 70px); overflow: clip; }
.marquee-head { text-align: center; margin-bottom: clamp(34px, 5vw, 64px); }
.marquee-head h2 { font-size: clamp(1.6rem, 4vw, 3rem); font-weight: 700; text-transform: uppercase; letter-spacing: -0.01em; }
.marquee-row { display: flex; gap: 14px; will-change: transform; }
.marquee-row + .marquee-row { margin-top: 14px; }
.tile {
  flex: 0 0 auto; width: 340px; height: 220px; border-radius: 22px; overflow: hidden;
  position: relative; border: 1px solid var(--line); background: var(--bg-soft);
  display: flex; flex-direction: column;
}
.tile-media { flex: 1; position: relative; }
.tile-badge { position: absolute; top: 12px; left: 12px; z-index: 2; display: flex; align-items: center; gap: 6px; font-size: 0.66rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: #fff; background: rgba(0,0,0,0.4); backdrop-filter: blur(6px); padding: 5px 10px; border-radius: 999px; }
.tile-badge .ic { width: 13px; height: 13px; display: grid; place-items: center; }
.tile-badge .ic svg { width: 100%; height: 100%; }
.tile-foot { padding: 12px 14px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--line); background: rgba(0,0,0,0.25); }
.tile-foot .cap { font-size: 0.78rem; font-weight: 300; color: var(--ink-dim); }
.tile-foot .eng { font-size: 0.72rem; color: var(--ink-faint); display: flex; gap: 10px; }
.tile-foot .eng b { color: var(--ink); font-weight: 600; }

/* ============================================================
   FEATURES (numbered list, dark)
   ============================================================ */
.features { padding: clamp(80px, 11vw, 170px) 0; }
.section-head { text-align: center; margin-bottom: clamp(48px, 7vw, 110px); }
.section-head h2 { font-size: clamp(3rem, 12vw, 11rem); }
.section-head p { max-width: 540px; margin: 1.2rem auto 0; font-weight: 300; color: var(--ink-dim); font-size: clamp(0.95rem, 1.5vw, 1.25rem); line-height: 1.55; }

.feat-list { max-width: 1080px; margin: 0 auto; }
.feat {
  display: grid; grid-template-columns: minmax(120px, 0.9fr) 2fr auto;
  align-items: center; gap: clamp(1rem, 3vw, 3rem);
  padding: clamp(26px, 3.4vw, 46px) 0;
  border-top: 1px solid var(--line);
  transition: padding-left 0.4s ease;
}
.feat:last-child { border-bottom: 1px solid var(--line); }
.feat:hover { padding-left: clamp(8px, 1.4vw, 22px); }
.feat .num { font-weight: 800; font-size: clamp(2.4rem, 8vw, 6.4rem); line-height: 0.9; letter-spacing: -0.03em; color: transparent; -webkit-text-stroke: 1.4px var(--line-strong); transition: -webkit-text-stroke 0.4s ease, color 0.4s ease; }
.feat:hover .num { -webkit-text-stroke: 0; background: var(--buzz-soft); -webkit-background-clip: text; background-clip: text; color: transparent; }
.feat .body h3 { font-weight: 600; text-transform: uppercase; letter-spacing: 0.01em; font-size: clamp(1.3rem, 2.8vw, 2.4rem); line-height: 1; }
.feat .body p { margin-top: 0.6rem; font-weight: 300; color: var(--ink-dim); font-size: clamp(0.92rem, 1.4vw, 1.18rem); line-height: 1.5; max-width: 46ch; }
.feat .arrow { width: clamp(40px,4vw,56px); height: clamp(40px,4vw,56px); border-radius: 50%; border: 1px solid var(--line-strong); display: grid; place-items: center; color: var(--ink-dim); transition: all 0.35s ease; flex: 0 0 auto; }
.feat:hover .arrow { background: var(--buzz-soft); color: #fff; border-color: transparent; transform: rotate(-45deg); }
.feat .arrow svg { width: 42%; height: 42%; }
@media (max-width: 720px) {
  .feat { grid-template-columns: auto 1fr; }
  .feat .arrow { display: none; }
  .feat .num { font-size: clamp(2rem, 12vw, 3.6rem); }
}

/* ============================================================
   STICKY STACK (how it works)
   ============================================================ */
.how { padding: clamp(60px, 8vw, 120px) 0 clamp(80px, 10vw, 160px); }
.stack { position: relative; }
.card-wrap { position: sticky; top: 90px; height: 78vh; display: flex; align-items: flex-start; justify-content: center; }
.scard {
  width: min(1120px, 92vw);
  border: 1px solid var(--line-strong);
  border-radius: clamp(28px, 3vw, 44px);
  background: linear-gradient(160deg, #161618 0%, #0d0d0f 100%);
  padding: clamp(22px, 2.8vw, 44px);
  display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(20px, 3vw, 48px);
  box-shadow: 0 40px 90px -40px rgba(0,0,0,0.9);
  transform-origin: top center;
}
.scard .left { display: flex; flex-direction: column; }
.scard .num { font-weight: 800; font-size: clamp(2.6rem, 7vw, 5.6rem); line-height: 0.9; letter-spacing: -0.03em; background: var(--buzz-soft); -webkit-background-clip: text; background-clip: text; color: transparent; }
.scard .label { margin-top: 0.5rem; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.28em; color: var(--ink-faint); }
.scard h3 { margin-top: auto; font-weight: 700; text-transform: uppercase; font-size: clamp(1.6rem, 3.6vw, 3.2rem); line-height: 0.96; letter-spacing: -0.01em; }
.scard p { margin-top: 1rem; font-weight: 300; color: var(--ink-dim); font-size: clamp(0.95rem, 1.4vw, 1.2rem); line-height: 1.5; max-width: 40ch; }
.scard .visual { border-radius: clamp(18px,2vw,28px); overflow: hidden; position: relative; min-height: 300px; border: 1px solid var(--line); }
.mono-tag { position: absolute; right: 12px; bottom: 10px; font-family: ui-monospace, monospace; font-size: 0.64rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
@media (max-width: 820px) {
  .scard { grid-template-columns: 1fr; }
  .card-wrap { height: auto; position: relative; top: 0; margin-bottom: 20px; }
  .scard .visual { min-height: 200px; }
  .scard h3 { margin-top: 1.4rem; }
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing { padding: clamp(70px, 9vw, 150px) 0; }
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 26px); max-width: 1120px; margin: 0 auto; }
.plan { border: 1px solid var(--line); border-radius: 26px; padding: clamp(24px, 2.6vw, 40px); background: var(--bg-soft); display: flex; flex-direction: column; transition: transform 0.3s ease, border-color 0.3s ease; }
.plan:hover { transform: translateY(-6px); border-color: var(--line-strong); }
.plan.feat-plan { background: linear-gradient(180deg, rgba(182,0,168,0.14), rgba(118,33,176,0.06)); border-color: var(--magenta); position: relative; }
.plan.feat-plan::before { content: 'Most popular'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--buzz); color: #fff; font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.18em; padding: 6px 14px; border-radius: 999px; outline: 2px solid #fff; outline-offset: -3px; }
.plan .pname { font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-dim); font-size: 0.95rem; }
.plan .price { font-weight: 800; font-size: clamp(2.6rem, 5vw, 3.8rem); line-height: 1; margin: 1rem 0 0.2rem; letter-spacing: -0.02em; }
.plan .price small { font-size: 0.9rem; font-weight: 300; color: var(--ink-faint); letter-spacing: 0; }
.plan .pdesc { color: var(--ink-dim); font-weight: 300; font-size: 0.92rem; margin-bottom: 1.4rem; }
.plan ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 1.8rem; }
.plan li { display: flex; align-items: center; gap: 0.6rem; font-weight: 300; font-size: 0.92rem; color: var(--ink); }
.plan li svg { width: 16px; height: 16px; color: var(--magenta); flex: 0 0 auto; }
.plan .btn-buzz, .plan .btn-ghost { width: 100%; justify-content: center; margin-top: auto; }
@media (max-width: 820px) { .plans { grid-template-columns: 1fr; max-width: 420px; } }

/* ============================================================
   CTA
   ============================================================ */
.cta { padding: clamp(80px, 12vw, 180px) 0; text-align: center; position: relative; overflow: clip; }
.cta-glow { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: min(800px, 90vw); aspect-ratio: 1; background: radial-gradient(circle, rgba(182,0,168,0.22), transparent 65%); filter: blur(10px); pointer-events: none; }
.cta h2 { position: relative; font-size: clamp(2.6rem, 9vw, 8rem); }
.cta p { position: relative; max-width: 480px; margin: 1.2rem auto 2.2rem; font-weight: 300; color: var(--ink-dim); font-size: clamp(0.98rem, 1.5vw, 1.25rem); }
.cta .btn-buzz { position: relative; font-size: clamp(0.85rem, 1.1vw, 1.05rem); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--line); padding: clamp(48px, 6vw, 80px) 0 clamp(28px, 3vw, 44px); }
.footer-grid { display: flex; flex-wrap: wrap; gap: 2.4rem; justify-content: space-between; }
.footer-brand { max-width: 280px; }
.footer-brand .brand { margin-bottom: 1rem; }
.footer-brand p { font-weight: 300; color: var(--ink-dim); font-size: 0.92rem; line-height: 1.5; }
.footer-cols { display: flex; gap: clamp(2.4rem, 6vw, 5rem); flex-wrap: wrap; }
.fcol h4 { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--ink-faint); margin-bottom: 1rem; font-weight: 600; }
.fcol a { display: block; font-weight: 300; color: var(--ink-dim); font-size: 0.92rem; margin-bottom: 0.6rem; transition: color 0.2s; }
.fcol a:hover { color: var(--ink); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; margin-top: clamp(36px, 5vw, 60px); padding-top: 1.6rem; border-top: 1px solid var(--line); color: var(--ink-faint); font-size: 0.82rem; }
.footer-socials { display: flex; gap: 0.7rem; }
.footer-socials a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; color: var(--ink-dim); transition: all 0.25s; }
.footer-socials a:hover { background: var(--buzz-soft); color: #fff; border-color: transparent; }
.footer-socials svg { width: 16px; height: 16px; }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s cubic-bezier(.25,.1,.25,1), transform 0.7s cubic-bezier(.25,.1,.25,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-x="-1"] { transform: translateX(-60px); }
.reveal[data-x="1"] { transform: translateX(60px); }
.reveal[data-x].in { transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}
/* ============================================================
   SUBPAGE NAV FIX (Contact, Auth, etc.)
   ============================================================ */
body:has(.container) .nav {
  background: rgba(12, 12, 12, 0.95) !important;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

body:has(.container) {
  padding-top: 120px !important; 
}