/* ============= ELLOIN TOALHAS — B2B ============= */
:root {
  --bg: #FAF7F2;
  --bg-alt: #F2EDE5;
  --ink: #14171F;
  --ink-soft: #4A4F5C;
  --ink-mute: #8A8F9C;
  --line: #E5DFD4;
  --line-strong: #C9C2B4;
  --brand: #1B3A8A;        /* azul Elloin */
  --brand-deep: #0F2660;
  --accent: #D62828;       /* vermelho Elloin */
  --gold: #B8935A;
  --white: #FFFFFF;
  --whatsapp: #25D366;

  --serif: 'Playfair Display', 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1280px;
  --radius: 4px;

  --ease: cubic-bezier(.22,1,.36,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
@media (max-width: 720px) { .container { padding: 0 20px; } }

/* ===== Type ===== */
h1, h2, h3 { font-family: var(--serif); font-weight: 500; letter-spacing: -0.01em; line-height: 1.05; text-wrap: balance; }
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ============== NAV ============== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0;
  transition: all .35s var(--ease);
  background: transparent;
}
.nav.scrolled {
  background: rgba(250, 247, 242, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 44px; width: auto; transition: all .35s var(--ease); }
.nav.scrolled .nav-logo img { height: 38px; }
.nav-logo-name { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-name strong { font-family: var(--serif); font-size: 19px; color: var(--ink); }
.nav-logo-name span { font-size: 10px; letter-spacing: .2em; color: var(--ink-mute); text-transform: uppercase; margin-top: 2px; }
.nav.hero-mode .nav-logo-name strong,
.nav.hero-mode .nav-links a { color: var(--white); }
.nav.hero-mode .nav-logo-name span { color: rgba(255,255,255,.7); }

.nav-links { display: flex; gap: 36px; }
.nav-links a {
  font-size: 14px; font-weight: 500;
  position: relative; transition: color .25s;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -4px;
  width: 0; height: 1px; background: currentColor;
  transition: width .35s var(--ease);
}
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 20px;
  background: var(--ink); color: var(--white);
  border-radius: 999px;
  font-size: 13px; font-weight: 600;
  transition: all .3s var(--ease);
  position: relative; overflow: hidden;
}
.nav-cta:hover { background: var(--brand); transform: translateY(-1px); }
.nav.hero-mode .nav-cta { background: var(--white); color: var(--ink); }
.nav.hero-mode .nav-cta:hover { background: var(--accent); color: var(--white); }

.nav-mobile-toggle { display: none; }
@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-cta span.hide-mobile { display: none; }
}

/* ============== HERO ============== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  color: var(--white);
  overflow: hidden;
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,38,96,.55) 0%, rgba(15,38,96,.65) 50%, rgba(20,23,31,.85) 100%);
  z-index: 1;
}
.hero-grain {
  position: absolute; inset: 0; z-index: 1;
  opacity: .08; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='.9'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
.hero-content { position: relative; z-index: 2; padding: 140px 0 80px; width: 100%; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 999px;
  font-size: 11px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.95);
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }

.hero h1 {
  font-size: clamp(44px, 7vw, 92px);
  letter-spacing: -0.025em;
  margin-bottom: 28px;
  max-width: 14ch;
}
.hero h1 .accent { font-style: italic; color: #FFE4A8; }
.hero-sub {
  font-size: clamp(16px, 1.5vw, 19px);
  max-width: 52ch;
  color: rgba(255,255,255,.85);
  margin-bottom: 44px;
  font-weight: 300;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 14px; font-weight: 600;
  letter-spacing: .01em;
  transition: all .35s var(--ease);
  position: relative; overflow: hidden;
  white-space: nowrap;
}
.btn-primary { background: var(--white); color: var(--ink); }
.btn-primary:hover { background: var(--accent); color: var(--white); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(214,40,40,.3); }
.btn-primary .arrow { transition: transform .35s var(--ease); }
.btn-primary:hover .arrow { transform: translateX(4px); }

.btn-ghost {
  border: 1px solid rgba(255,255,255,.4);
  color: var(--white);
}
.btn-ghost:hover { background: var(--white); color: var(--ink); border-color: var(--white); transform: translateY(-2px); }

.btn-whatsapp {
  background: var(--whatsapp); color: var(--white);
}
.btn-whatsapp:hover { background: #1EBE5A; transform: translateY(-2px); box-shadow: 0 12px 32px rgba(37,211,102,.4); }

.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  margin-top: 80px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.18);
}
.hero-stat .num { font-family: var(--serif); font-size: clamp(28px, 3vw, 40px); color: var(--white); display: block; line-height: 1; }
.hero-stat .lbl { font-size: 12px; color: rgba(255,255,255,.7); margin-top: 8px; letter-spacing: .04em; }
@media (max-width: 720px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 50px; }
}

/* Scroll indicator */
.scroll-cue {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 10px; letter-spacing: .25em; text-transform: uppercase;
  color: rgba(255,255,255,.7);
}
.scroll-cue .line { width: 1px; height: 38px; background: rgba(255,255,255,.4); position: relative; overflow: hidden; }
.scroll-cue .line::after {
  content: ''; position: absolute; top: -100%; left: 0; width: 100%; height: 100%;
  background: var(--white);
  animation: scroll-pulse 2.2s infinite;
}
@keyframes scroll-pulse { 0% { top: -100%; } 100% { top: 100%; } }

/* ============== SECTION GENERIC ============== */
section { padding: 120px 0; position: relative; }
@media (max-width: 720px) { section { padding: 80px 0; } }

.section-head { display: flex; align-items: end; justify-content: space-between; gap: 60px; margin-bottom: 64px; flex-wrap: wrap; }
.section-head h2 { font-size: clamp(36px, 4.5vw, 60px); max-width: 18ch; }
.section-head .lead { max-width: 44ch; color: var(--ink-soft); font-size: 17px; }
.section-head .eyebrow { display: block; margin-bottom: 18px; }

/* ============== DIFERENCIAIS ============== */
.diferenciais { background: var(--white); }
.dif-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--line); }
.dif-item {
  padding: 48px 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .4s var(--ease);
  position: relative;
}
.dif-item:last-child { border-right: none; }
.dif-item:hover { background: var(--bg-alt); }
.dif-num { font-family: var(--serif); font-style: italic; font-size: 14px; color: var(--accent); display: block; margin-bottom: 32px; }
.dif-item h3 { font-size: 22px; margin-bottom: 12px; }
.dif-item p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.6; }
@media (max-width: 980px) { .dif-grid { grid-template-columns: repeat(2,1fr); } .dif-item:nth-child(2n) { border-right: none; } .dif-item:nth-child(odd) { border-right: 1px solid var(--line); } }
@media (max-width: 560px) { .dif-grid { grid-template-columns: 1fr; } .dif-item { border-right: none !important; } }

/* ============== CATÁLOGO ============== */
.catalog { background: var(--bg); }
.cat-tabs {
  display: flex; gap: 8px; margin-bottom: 48px;
  background: var(--white);
  padding: 6px;
  border-radius: 999px;
  width: fit-content;
  border: 1px solid var(--line);
}
.cat-tab {
  padding: 10px 22px; border-radius: 999px;
  font-size: 13px; font-weight: 600;
  color: var(--ink-soft);
  transition: all .3s var(--ease);
}
.cat-tab.active { background: var(--ink); color: var(--white); }
.cat-tab:not(.active):hover { color: var(--ink); background: var(--bg-alt); }

.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 980px) { .cat-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .cat-grid { grid-template-columns: 1fr; } }

.product-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: all .45s var(--ease);
  display: flex; flex-direction: column;
  position: relative;
  cursor: pointer;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 22px 50px -20px rgba(15,38,96,.18); border-color: var(--line-strong); }
.product-img-wrap {
  aspect-ratio: 1/1; overflow: hidden; background: var(--bg-alt);
  position: relative;
}
.product-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease);
}
.product-card:hover .product-img-wrap img { transform: scale(1.05); }
.product-tag {
  position: absolute; top: 14px; left: 14px;
  padding: 6px 12px;
  background: var(--white);
  font-size: 10px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  border-radius: 999px;
  color: var(--ink);
}
.product-tag.hot { background: var(--accent); color: var(--white); }
.product-body { padding: 24px; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.product-meta { display: flex; justify-content: space-between; align-items: center; font-size: 11px; color: var(--ink-mute); letter-spacing: .12em; text-transform: uppercase; }
.product-name { font-family: var(--serif); font-size: 22px; line-height: 1.15; }
.product-desc { font-size: 14px; color: var(--ink-soft); flex: 1; }
.product-specs {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-top: 4px;
}
.spec-pill {
  padding: 5px 10px;
  background: var(--bg-alt);
  font-size: 11px; font-weight: 500;
  border-radius: 4px;
  color: var(--ink-soft);
}
.product-colors { display: flex; gap: 6px; align-items: center; }
.color-dot { width: 14px; height: 14px; border-radius: 50%; border: 1px solid rgba(0,0,0,.08); }
.product-action {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  margin-top: 8px;
}
.product-action .label { font-size: 12px; color: var(--ink-mute); letter-spacing: .08em; text-transform: uppercase; }
.product-action .quote { font-family: var(--serif); font-size: 16px; color: var(--ink); display: flex; align-items: center; gap: 8px; transition: gap .3s var(--ease); }
.product-card:hover .product-action .quote { gap: 14px; color: var(--accent); }

/* ============== HISTÓRIA ============== */
.story { background: var(--white); position: relative; overflow: hidden; }
.story-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center; }
@media (max-width: 880px) { .story-grid { grid-template-columns: 1fr; gap: 48px; } }
.story-img-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.story-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.story-img-badge {
  position: absolute; bottom: 24px; left: 24px;
  background: var(--white);
  padding: 18px 22px;
  border-radius: 6px;
  display: flex; align-items: center; gap: 14px;
}
.story-img-badge img { height: 36px; width: auto; }
.story-img-badge .txt { font-size: 11px; line-height: 1.4; color: var(--ink-soft); }
.story-img-badge .txt strong { color: var(--ink); display: block; font-size: 13px; margin-bottom: 2px; }

.story h2 { font-size: clamp(32px, 4vw, 52px); margin-bottom: 24px; }
.story p { font-size: 16px; color: var(--ink-soft); margin-bottom: 18px; line-height: 1.7; }
.story p:first-of-type::first-letter {
  font-family: var(--serif); font-size: 64px; float: left; line-height: 0.9; padding: 8px 12px 0 0; color: var(--brand); font-style: italic;
}
.story-marks { display: flex; gap: 32px; margin-top: 32px; padding-top: 32px; border-top: 1px solid var(--line); }
.story-mark .num { font-family: var(--serif); font-size: 36px; color: var(--brand); display: block; }
.story-mark .lbl { font-size: 12px; color: var(--ink-mute); letter-spacing: .06em; }

/* ============== EQUIPE ============== */
.team { background: var(--bg-alt); }
.team-image-wrap {
  border-radius: 8px; overflow: hidden;
  aspect-ratio: 21/9;
  margin-top: 40px;
  position: relative;
}
.team-image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.5s var(--ease); }
.team-image-wrap:hover img { transform: scale(1.03); }
.team-image-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(20,23,31,.45) 0%, rgba(20,23,31,0) 50%);
  pointer-events: none;
}
.team-cap {
  position: absolute; bottom: 28px; left: 32px; right: 32px;
  display: flex; justify-content: space-between; align-items: end; gap: 24px;
  color: var(--white);
  z-index: 2;
}
.team-cap .quote-mark { font-family: var(--serif); font-size: 80px; line-height: 0.4; color: var(--accent); }
.team-cap p { font-family: var(--serif); font-size: clamp(18px, 2vw, 26px); font-style: italic; max-width: 32ch; }
.team-cap .who { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; opacity: .8; text-align: right; min-width: 100px; }

/* ============== PROCESSO B2B ============== */
.process { background: var(--ink); color: var(--white); }
.process .eyebrow { color: rgba(255,255,255,.6); }
.process h2 { color: var(--white); }
.process .lead { color: rgba(255,255,255,.7); }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-top: 64px; }
@media (max-width: 880px) { .process-steps { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .process-steps { grid-template-columns: 1fr; } }
.process-step { padding: 28px 0; border-top: 1px solid rgba(255,255,255,.18); }
.process-step .step-num { font-family: var(--serif); font-style: italic; color: var(--accent); font-size: 14px; }
.process-step h3 { font-size: 22px; margin: 16px 0 10px; color: var(--white); }
.process-step p { font-size: 14px; color: rgba(255,255,255,.65); line-height: 1.6; }

/* ============== DEPOIMENTOS ============== */
.testimonials { background: var(--white); }
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 880px) { .test-grid { grid-template-columns: 1fr; } }
.test-card {
  padding: 36px 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex; flex-direction: column; gap: 20px;
  background: var(--bg);
  transition: all .4s var(--ease);
}
.test-card:hover { background: var(--white); border-color: var(--line-strong); transform: translateY(-4px); box-shadow: 0 18px 40px -20px rgba(0,0,0,.1); }
.test-stars { color: var(--gold); letter-spacing: 2px; font-size: 14px; }
.test-card blockquote { font-family: var(--serif); font-size: 19px; line-height: 1.45; color: var(--ink); flex: 1; }
.test-author { display: flex; align-items: center; gap: 14px; padding-top: 16px; border-top: 1px solid var(--line); }
.test-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--brand);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 18px;
}
.test-author .name { font-size: 14px; font-weight: 600; }
.test-author .role { font-size: 12px; color: var(--ink-mute); }

/* ============== FAQ ============== */
.faq { background: var(--bg); }
.faq-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
@media (max-width: 880px) { .faq-grid { grid-template-columns: 1fr; gap: 40px; } }
.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-top: 1px solid var(--line);
  padding: 24px 0;
  cursor: pointer;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q { display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.faq-q h3 { font-family: var(--sans); font-size: 17px; font-weight: 600; line-height: 1.35; }
.faq-toggle {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all .35s var(--ease);
  font-size: 18px; color: var(--ink);
}
.faq-item.open .faq-toggle { background: var(--ink); color: var(--white); border-color: var(--ink); transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .5s var(--ease), padding .5s var(--ease);
  font-size: 15px; color: var(--ink-soft); line-height: 1.6;
}
.faq-item.open .faq-a { max-height: 240px; padding-top: 16px; }

/* ============== CTA FINAL ============== */
.cta-final {
  background: var(--brand);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(214,40,40,.3) 0%, transparent 60%);
  pointer-events: none;
}
.cta-final-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 80px; align-items: center;
}
@media (max-width: 880px) { .cta-final-inner { grid-template-columns: 1fr; gap: 40px; } }
.cta-final h2 { font-size: clamp(36px, 5vw, 64px); color: var(--white); margin-bottom: 20px; max-width: 16ch; }
.cta-final p { font-size: 17px; color: rgba(255,255,255,.85); margin-bottom: 36px; max-width: 50ch; }
.cta-final .btn-primary { background: var(--white); color: var(--brand-deep); }
.cta-final .btn-primary:hover { background: var(--accent); color: var(--white); }
.cta-final .btn-ghost { color: var(--white); border-color: rgba(255,255,255,.5); }
.cta-card {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 10px;
  padding: 32px;
}
.cta-card .label { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; opacity: .7; margin-bottom: 8px; }
.cta-card .number { font-family: var(--serif); font-size: 28px; margin-bottom: 4px; }
.cta-card .helper { font-size: 13px; opacity: .7; margin-bottom: 24px; }
.cta-card hr { border: none; border-top: 1px solid rgba(255,255,255,.18); margin: 20px 0; }
.cta-card-row { display: flex; justify-content: space-between; align-items: center; font-size: 13px; padding: 6px 0; }
.cta-card-row span:first-child { opacity: .65; }

/* ============== FLOATING WHATSAPP ============== */
.float-wa {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--whatsapp);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  box-shadow: 0 12px 32px rgba(37,211,102,.4);
  transition: all .3s var(--ease);
}
.float-wa:hover { transform: scale(1.08); }
.float-wa::before {
  content: ''; position: absolute; inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--whatsapp);
  opacity: .5;
  animation: wa-ring 2.4s infinite;
}
@keyframes wa-ring {
  0% { transform: scale(.95); opacity: .6; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ============== FOOTER ============== */
footer {
  background: var(--ink); color: var(--white);
  padding: 80px 0 32px;
}
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 48px; margin-bottom: 60px; }
@media (max-width: 880px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 540px) { .foot-grid { grid-template-columns: 1fr; } }
.foot-brand img { height: 48px; margin-bottom: 20px; filter: brightness(1.05); }
.foot-brand p { font-size: 14px; color: rgba(255,255,255,.65); max-width: 32ch; line-height: 1.6; }
.foot-col h4 { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 20px; font-weight: 600; }
.foot-col a, .foot-col li { display: block; padding: 6px 0; font-size: 14px; color: rgba(255,255,255,.85); transition: color .25s; list-style: none; }
.foot-col a:hover { color: var(--accent); }
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(255,255,255,.5);
  flex-wrap: wrap; gap: 16px;
}

/* utility */
.no-wrap { white-space: nowrap; }
