/* ============== TOKENS ============== */
:root {
  --bg: oklch(0.98 0.005 80);
  --bg-2: oklch(0.96 0.008 75);
  --bg-3: oklch(0.93 0.012 75);
  --ink: oklch(0.16 0.01 60);
  --ink-2: oklch(0.32 0.012 60);
  --ink-3: oklch(0.55 0.012 60);
  --line: oklch(0.88 0.012 70);
  --line-2: oklch(0.82 0.015 65);

  --amber: oklch(0.74 0.185 55);
  --amber-deep: oklch(0.62 0.19 45);
  --amber-soft: oklch(0.92 0.08 75);
  --amber-glow: oklch(0.85 0.16 65);

  --dark: oklch(0.16 0.01 60);
  --dark-2: oklch(0.22 0.012 60);
  --dark-3: oklch(0.30 0.014 60);

  --success: oklch(0.65 0.15 145);

  --font-display: "Space Grotesk", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  --pad: clamp(1.25rem, 3vw, 3rem);
  --gutter: clamp(1rem, 2vw, 2rem);
  --radius: 4px;
  --radius-lg: 14px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv11";
}
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.wrap { max-width: 1440px; margin: 0 auto; padding: 0 var(--pad); }
.section { padding: clamp(4rem, 9vw, 9rem) 0; }
.grid { display: grid; gap: var(--gutter); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-3);
  display: inline-block;
}
.mono { font-family: var(--font-mono); font-size: 0.82rem; letter-spacing: 0.02em; }

.h-mega {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3rem, 9vw, 9rem);
  letter-spacing: -0.05em;
  line-height: 0.92;
}
.h-1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.25rem, 5.5vw, 4.5rem);
  letter-spacing: -0.04em;
  line-height: 1.02;
}
.h-2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.h-3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: var(--ink-2);
  line-height: 1.55;
  max-width: 60ch;
}

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: -0.005em;
  transition: all 0.2s var(--ease);
  white-space: nowrap;
  cursor: pointer;
  border: 0;
}
.btn--lg { padding: 1.15rem 1.7rem; font-size: 1rem; }
.btn--amber { background: var(--amber); color: var(--dark); }
.btn--amber:hover { background: var(--amber-deep); color: var(--bg); transform: translateY(-1px); }
.btn--dark { background: var(--dark); color: var(--bg); }
.btn--dark:hover { background: var(--dark-2); transform: translateY(-1px); }
.btn--ghost { border: 1px solid var(--ink); color: var(--ink); background: transparent; }
.btn--ghost:hover { background: var(--ink); color: var(--bg); }
.btn--ghost-light { border: 1px solid color-mix(in oklch, var(--bg) 40%, transparent); color: var(--bg); background: transparent; }
.btn--ghost-light:hover { background: var(--bg); color: var(--dark); }
.arr { display: inline-block; transition: transform 0.2s var(--ease); }
.btn:hover .arr { transform: translateX(3px); }

/* ============== TAGS ============== */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: var(--bg-3);
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid var(--line);
}
.tag--amber { background: var(--amber-soft); color: var(--amber-deep); border-color: transparent; }
.tag--dark { background: var(--dark); color: var(--bg); border-color: transparent; }

/* ============== LOGO ============== */
.brand-logo { height: 38px; width: auto; display: block; flex-shrink: 0; }
.brand-logo--lg { height: 44px; }
.brand-logo--invert { filter: invert(1) hue-rotate(180deg) brightness(1.6) saturate(1.3); }

/* ============== HEADER ============== */
.header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in oklch, var(--bg) 88%, transparent);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: 1440px; margin: 0 auto;
  padding: 0.9rem var(--pad);
  display: flex; align-items: center; gap: 2rem;
}
.brand { display: flex; align-items: center; gap: 0.85rem; font-family: var(--font-display); }
.brand-tag {
  display: flex; flex-direction: column; line-height: 1.1;
  border-left: 1px solid var(--line); padding-left: 0.85rem;
}
.brand-tag b { font-weight: 600; font-size: 0.78rem; color: var(--ink); }
.brand-tag small {
  font-family: var(--font-mono); font-size: 0.62rem;
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-3);
}
@media (max-width: 700px) { .brand-tag { display: none; } }
.nav { margin-left: auto; display: flex; gap: 0.4rem; flex-wrap: wrap; }
.nav a {
  padding: 0.5rem 0.9rem; border-radius: 999px;
  font-size: 0.92rem; color: var(--ink-2);
  transition: all 0.15s var(--ease);
}
.nav a:hover { background: var(--bg-3); color: var(--ink); }
.nav a.is-active { background: var(--ink); color: var(--bg); }
.nav-cta {
  background: var(--dark); color: var(--bg);
  padding: 0.55rem 1rem; border-radius: 999px;
  font-size: 0.9rem; font-weight: 500;
  transition: all 0.2s var(--ease);
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.nav-cta::before {
  content: ""; width: 8px; height: 8px;
  background: var(--success); border-radius: 50%;
  animation: pulse 2s infinite;
}
.nav-cta:hover { background: var(--amber); color: var(--dark); }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
@media (max-width: 1100px) { .nav { display: none; } }

/* ============== HERO ============== */
.hero { position: relative; padding: clamp(3rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 5rem); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; right: -10%; top: -20%;
  width: 60%; height: 90%;
  background: radial-gradient(circle, var(--amber) 0%, transparent 60%);
  opacity: 0.22; filter: blur(60px); pointer-events: none;
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.6fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: end; }
@media (max-width: 1000px) { .hero-grid { grid-template-columns: 1fr; } }
.hero-eyebrow { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1.5rem; }
.hero-eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--amber); }
.hero-headline { color: var(--ink); }
.hero-sub { margin-top: 2rem; display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.hero-aside {
  border-left: 1px solid var(--line);
  padding-left: clamp(1rem, 2vw, 2rem);
  display: flex; flex-direction: column; gap: 1.2rem;
}
@media (max-width: 1000px) { .hero-aside { border-left: 0; padding-left: 0; border-top: 1px solid var(--line); padding-top: 2rem; } }
.hero-aside .num {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.5rem, 4vw, 3.5rem); letter-spacing: -0.04em;
  line-height: 1;
}
.hero-aside .num span { color: var(--amber-deep); }
.hero-aside .label { color: var(--ink-2); font-size: 0.95rem; }
.hero-aside hr { border: 0; border-top: 1px dashed var(--line); margin: 0.4rem 0; }

/* ============== HERO IMAGE (per pagine interne) ============== */
.hero-img {
  margin-top: 2.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  position: relative;
  aspect-ratio: 16/9;
}
.hero-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.25) 100%);
}

/* ============== MARQUEE ============== */
.marquee {
  position: relative; border-block: 1px solid var(--line);
  padding: 1.4rem 0; background: var(--bg-2); overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex; gap: 3rem; width: max-content;
  animation: scroll 40s linear infinite;
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.25rem, 2.5vw, 2rem); letter-spacing: -0.02em; color: var(--ink);
}
.marquee-track span { display: inline-flex; align-items: center; gap: 3rem; }
.marquee-track span::after { content: "·"; color: var(--amber); font-size: 1.5em; line-height: 0.5; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============== INTRO BLOCK ============== */
.intro {
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(3rem, 6vw, 6rem) 0;
  align-items: center; border-bottom: 1px solid var(--line);
}
@media (max-width: 900px) { .intro { grid-template-columns: 1fr; } }
.intro-meta { display: flex; flex-direction: column; gap: 1rem; }
.intro-meta .num {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(4rem, 7vw, 6rem); letter-spacing: -0.05em;
  line-height: 0.85; color: var(--amber-deep);
}

/* ============== CARDS ============== */
.card {
  background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(1.5rem, 2vw, 2rem);
  display: flex; flex-direction: column; gap: 0.8rem;
  transition: all 0.25s var(--ease);
}
.card:hover {
  border-color: var(--ink-3); transform: translateY(-3px);
  box-shadow: 0 18px 36px -18px rgba(0,0,0,0.18);
}
.card--dark { background: var(--dark-2); border-color: var(--dark-3); color: var(--bg); }
.card--dark:hover { border-color: var(--amber); }
.card--img { padding: 0; overflow: hidden; }
.card--img .card-thumb { aspect-ratio: 4/3; overflow: hidden; }
.card--img .card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.card--img:hover .card-thumb img { transform: scale(1.04); }
.card--img .card-body { padding: 1.4rem 1.6rem 1.6rem; display: flex; flex-direction: column; gap: 0.7rem; }
.card-num {
  font-family: var(--font-mono); font-size: 0.72rem;
  letter-spacing: 0.12em; color: var(--amber-deep);
  text-transform: uppercase;
}
.card .card-link {
  margin-top: auto;
  font-family: var(--font-mono); font-size: 0.78rem;
  letter-spacing: 0.08em; color: var(--amber-deep);
  display: inline-flex; gap: 0.4rem; align-items: center;
}
.card .card-link:hover .arr { transform: translateX(4px); }

/* ============== SERVICES SECTION ============== */
.services-head {
  display: flex; align-items: end; justify-content: space-between;
  gap: 2rem; margin-bottom: 3rem;
  border-bottom: 1px solid var(--line); padding-bottom: 2rem;
}
@media (max-width: 700px) { .services-head { flex-direction: column; align-items: flex-start; } }
.services-head .num { font-family: var(--font-mono); font-size: 0.78rem; color: var(--ink-3); letter-spacing: 0.08em; }

/* ============== DARK SECTION ============== */
.section--dark { background: var(--dark); color: var(--bg); }
.section--dark .lead { color: color-mix(in oklch, var(--bg) 75%, transparent); }
.section--dark .eyebrow { color: color-mix(in oklch, var(--bg) 50%, transparent); }
.section--dark .h-1, .section--dark .h-2, .section--dark .h-3 { color: var(--bg); }
.section--dark .card { background: var(--dark-2); border-color: var(--dark-3); color: var(--bg); }
.section--dark .card:hover { border-color: var(--amber); }
.section--dark .card .card-link { color: var(--amber-glow); }

.dark-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
@media (max-width: 900px) { .dark-grid { grid-template-columns: 1fr; } }

/* ============== AMBER CTA ============== */
.cta-amber {
  background: var(--amber); color: var(--dark);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 5vw, 5rem);
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 4vw, 4rem); align-items: center;
  margin: clamp(3rem, 6vw, 6rem) 0;
  position: relative; overflow: hidden;
}
.cta-amber::before {
  content: ""; position: absolute; right: -5%; bottom: -30%;
  width: 50%; height: 120%;
  background: radial-gradient(circle, var(--amber-glow) 0%, transparent 60%);
  opacity: 0.6; pointer-events: none;
}
@media (max-width: 900px) { .cta-amber { grid-template-columns: 1fr; } }
.cta-amber .eyebrow { color: var(--amber-deep); }
.cta-amber .h-1 { color: var(--dark); }
.cta-amber .lead { color: var(--dark); opacity: 0.85; }
.cta-amber .actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.cta-amber .meta { z-index: 1; position: relative; }
.cta-amber .meta-list { display: grid; gap: 0.9rem; font-family: var(--font-mono); font-size: 0.85rem; z-index: 1; position: relative; }
.cta-amber .meta-list li { display: flex; gap: 0.7rem; align-items: baseline; }
.cta-amber .meta-list b { font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; color: var(--dark); letter-spacing: -0.03em; }

/* ============== MAGAZINE ============== */
.mag-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 2rem; margin-bottom: 3rem;
  border-bottom: 1px solid var(--line); padding-bottom: 2rem;
}
@media (max-width: 700px) { .mag-head { flex-direction: column; align-items: flex-start; } }
.mag-card {
  background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column;
  transition: all 0.25s var(--ease);
}
.mag-card:hover { border-color: var(--ink-3); transform: translateY(-3px); }
.mag-card .mag-thumb { aspect-ratio: 4/3; overflow: hidden; }
.mag-card .mag-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.mag-card:hover .mag-thumb img { transform: scale(1.04); }
.mag-card .mag-body { padding: 1.4rem 1.6rem 1.6rem; display: flex; flex-direction: column; gap: 0.7rem; flex: 1; }
.mag-card .ey { color: var(--ink-3); }
.mag-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; letter-spacing: -0.02em; line-height: 1.25; }
.mag-card .read {
  margin-top: auto; font-family: var(--font-mono); font-size: 0.78rem;
  color: var(--amber-deep); letter-spacing: 0.08em;
  display: inline-flex; gap: 0.4rem; align-items: center;
}

/* ============== ARTICLE BODY (single post) ============== */
.article-body { max-width: 72ch; margin: 0 auto; }
.article-body p { margin-bottom: 1.4rem; line-height: 1.7; }
.article-body h2 { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.5rem, 2.5vw, 2rem); letter-spacing: -0.02em; margin: 3rem 0 1rem; }
.article-body h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; margin: 2rem 0 0.8rem; }
.article-body ul { list-style: disc; padding-left: 1.4rem; margin-bottom: 1.4rem; }
.article-body li { margin-bottom: 0.4rem; }

/* ============== BREADCRUMB ============== */
.breadcrumb {
  font-family: var(--font-mono); font-size: 0.75rem;
  letter-spacing: 0.06em; color: var(--ink-3);
  padding: 1.5rem 0; display: flex; gap: 0.6rem; flex-wrap: wrap;
  border-bottom: 1px solid var(--line);
}
.breadcrumb a { color: var(--ink-3); }
.breadcrumb a:hover { color: var(--amber-deep); }
.breadcrumb .sep { opacity: 0.5; }
.breadcrumb .current { color: var(--ink); }

/* ============== FOOTER ============== */
.footer { background: var(--dark); color: var(--bg); padding: clamp(3rem, 6vw, 5rem) 0 2rem; }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1.1fr;
  gap: clamp(2rem, 4vw, 4rem); padding-bottom: 3rem;
  border-bottom: 1px solid var(--dark-3);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }
.footer h4 {
  font-family: var(--font-mono); font-size: 0.7rem;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: color-mix(in oklch, var(--bg) 50%, transparent);
  margin-bottom: 1.2rem;
}
.footer ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer a { font-size: 0.95rem; color: color-mix(in oklch, var(--bg) 75%, transparent); transition: color 0.15s var(--ease); }
.footer a:hover { color: var(--amber); }
.footer .brand-tag b { color: var(--bg); }
.footer .brand-tag small { color: color-mix(in oklch, var(--bg) 50%, transparent); }
.footer .colofon {
  display: flex; justify-content: space-between; flex-wrap: wrap;
  gap: 1rem; padding-top: 1.5rem;
  font-family: var(--font-mono); font-size: 0.72rem;
  color: color-mix(in oklch, var(--bg) 45%, transparent);
  letter-spacing: 0.06em;
}

/* ============== BRAND BAR ============== */
.brands {
  display: flex; flex-wrap: wrap; gap: clamp(2rem, 4vw, 4rem);
  align-items: center; justify-content: center;
  padding: 2rem 0; opacity: 0.7;
}
.brands img { height: 28px; width: auto; filter: grayscale(1); transition: filter 0.2s var(--ease); }
.brands img:hover { filter: grayscale(0); }

/* ============== REVEAL ============== */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }

/* ============== FLOATING WHATSAPP / PHONE ============== */
.float-cta {
  position: fixed;
  right: clamp(1rem, 2.5vw, 2rem);
  bottom: clamp(1rem, 2.5vw, 2rem);
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.float-cta a {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 14px 30px -8px rgba(0,0,0,0.28);
  transition: all 0.25s var(--ease);
  position: relative;
}
.float-cta a:hover { transform: translateY(-3px) scale(1.04); }
.float-cta .wa { background: #25d366; }
.float-cta .wa svg { width: 30px; height: 30px; fill: #fff; }
.float-cta .ph { background: var(--dark); }
.float-cta .ph svg { width: 24px; height: 24px; fill: var(--amber); }
.float-cta a::after {
  content: ""; position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid currentColor; opacity: 0;
  animation: ring 2.4s ease-out infinite;
}
.float-cta .wa { color: #25d366; }
.float-cta .ph { color: var(--amber); }
@keyframes ring { 0% { opacity: 0.6; transform: scale(0.95); } 100% { opacity: 0; transform: scale(1.4); } }
@media (max-width: 600px) { .float-cta a { width: 50px; height: 50px; } }
.float-cta .label {
  position: absolute;
  right: 70px; top: 50%; transform: translateY(-50%);
  background: var(--dark); color: var(--bg);
  padding: 0.5rem 0.9rem; border-radius: 999px;
  font-family: var(--font-mono); font-size: 0.7rem;
  white-space: nowrap; opacity: 0; pointer-events: none;
  transition: opacity 0.2s var(--ease);
}
.float-cta a:hover .label { opacity: 1; }

/* ============== FAQ ACCORDION ============== */
.faq-list { display: flex; flex-direction: column; gap: 0.8rem; }
.faq-item {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.25s var(--ease);
}
.faq-item[open] { border-color: var(--amber); box-shadow: 0 18px 36px -18px rgba(0,0,0,0.12); }
.faq-item summary {
  cursor: pointer;
  padding: 1.2rem 1.6rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-family: var(--font-mono);
  color: var(--amber-deep); font-size: 1.5rem; font-weight: 400;
  transition: transform 0.25s var(--ease);
}
.faq-item[open] summary::after { content: "−"; transform: rotate(180deg); }
.faq-item .faq-body {
  padding: 0 1.6rem 1.4rem;
  color: var(--ink-2);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ============== TRUST BAR ============== */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 1.5rem 0;
  border-block: 1px solid var(--line);
  background: var(--bg-2);
}
.trust-bar > div {
  text-align: center;
  padding: 0.5rem 1rem;
  border-right: 1px solid var(--line);
}
.trust-bar > div:last-child { border-right: 0; }
.trust-bar .v {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.2vw, 2.2rem);
  letter-spacing: -0.03em;
  color: var(--amber-deep);
  line-height: 1;
}
.trust-bar .l {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-3);
  margin-top: 0.4rem;
}
@media (max-width: 700px) {
  .trust-bar { grid-template-columns: repeat(2, 1fr); }
  .trust-bar > div:nth-child(2) { border-right: 0; }
  .trust-bar > div:nth-child(1), .trust-bar > div:nth-child(2) { border-bottom: 1px solid var(--line); }
}
