/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --bg: #000000;
  /* Void Black */
  --bg-2: #0d0d0d;
  /* Deep Charcoal */
  --bg-card: #0d0d0d;
  /* Surface */
  --surface: rgba(255, 255, 255, 0.04);
  --border: rgba(255, 255, 255, 0.09);
  --accent: #FF2D00;
  /* Signal Red */
  --accent-2: #cc2400;
  /* Signal Red dark */
  --accent-glow: rgba(255, 45, 0, 0.22);
  --chrome: #E8E8E8;
  /* Specular chrome highlight */
  --white: #ffffff;
  --off-white: #aaaaaa;
  --dim: rgba(255, 255, 255, 0.45);
  --font-display: 'Sora', sans-serif;
  --font-body: 'Sora', sans-serif;
  --nav-h: 68px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font-family: var(--font-display);
  outline: none;
  border: none;
  background: none;
}

/* ============================================================
   NOISE GRAIN OVERLAY (full page)
   ============================================================ */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.5rem, 4vw, 3.5rem);
  border-bottom: 1px solid var(--border);
  background: rgba(8, 8, 8, 0.6);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: background 0.4s;
}

.nav__brand {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav__dot {
  color: var(--accent);
  font-size: 0.65rem;
  line-height: 1;
}

.nav__links {
  display: flex;
  gap: clamp(1.5rem, 3vw, 3rem);
  list-style: none;
}

.nav__links a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--dim);
  transition: color 0.25s;
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s;
}

.nav__links a:hover {
  color: var(--white);
}

.nav__links a:hover::after {
  width: 100%;
}

.nav__cta {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  padding: 0.55rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: 2rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: background 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.nav__cta:hover {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 24px var(--accent-glow);
}

.nav__cta-arrow {
  font-size: 1rem;
  line-height: 1;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}

/* Giant background text */
.hero__bg-text {
  position: absolute;
  bottom: -0.12em;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(14rem, 32vw, 34rem);
  letter-spacing: -0.02em;
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.06);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* -------------------------------------------------------
   SPLINE MOUNT POINT — hero (full background)
   ------------------------------------------------------- */
.hero__spline {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  /* Hero text sits at z-index: 2 so it always overlays the scene */
}

#spline-canvas {
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0;
  transition: opacity 1s ease;
}

#spline-canvas.is-loaded {
  opacity: 1;
}

/* -------------------------------------------------------
   SPLINE LOADER
   Branded loading state shown while the scene downloads.
   ------------------------------------------------------- */
.spline-loader {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  background: var(--bg);
  z-index: 2;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.spline-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.spline-loader__ring {
  width: 40px;
  height: 40px;
  border: 2px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: splineSpinRing 0.9s linear infinite;
}

@keyframes splineSpinRing {
  to {
    transform: rotate(360deg);
  }
}

.spline-loader__label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--dim);
}

/* Hero text */
.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 clamp(1.5rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  width: 100%;
  pointer-events: none;
  /* Allows mouse to pass through text to the 3D model */
}

.hero__headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: lineIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero__line--1 {
  animation-delay: 0.1s;
}

.hero__line--2 {
  animation-delay: 0.22s;
}

.hero__line--3 {
  animation-delay: 0.34s;
}

.hero__line--4 {
  animation-delay: 0.46s;
}

@keyframes lineIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Glowing accent on last word */
.hero__line--4 {
  background: linear-gradient(90deg, var(--white) 60%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__tagline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(0.75rem, 1.2vw, 1rem);
  letter-spacing: 0.15em;
  color: var(--accent);
  line-height: 1.6;
}

.hero__description {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(0.7rem, 1vw, 0.85rem);
  letter-spacing: 0.12em;
  color: var(--dim);
  line-height: 1.8;
  opacity: 0;
  animation: fadeUp 1s 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  max-width: 600px;
}

@keyframes fadeUp {
  to {
    opacity: 1;
  }
}

/* ============================================================
   TRUSTED BY STRIP
   ============================================================ */
.trusted {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.8rem clamp(1.5rem, 5vw, 5rem);
  display: flex;
  align-items: center;
  gap: 3rem;
  overflow: hidden;
}

.trusted__label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(0.7rem, 1.1vw, 0.9rem);
  letter-spacing: 0.2em;
  color: var(--dim);
  white-space: nowrap;
  flex-shrink: 0;
}

.trusted__divider {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--border), transparent);
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: clamp(5rem, 10vh, 10rem) clamp(1.5rem, 5vw, 5rem);
}

.services__header {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: clamp(3rem, 6vh, 6rem);
}

.services__label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--accent);
}

.services__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3.5rem, 8vw, 9rem);
  letter-spacing: -0.02em;
  line-height: 0.9;
  text-transform: uppercase;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  will-change: transform;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(255, 45, 0, 0.12), transparent);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.service-card:hover {
  background: #141414;
  border-color: rgba(255, 45, 0, 0.3);
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.service-card:hover::before {
  opacity: 1;
}

/* -------------------------------------------------------
   SPLINE MOUNT POINT — per service card
   -------------------------------------------------------
   Replace the .service__icon with a Spline viewer.
   Suggested size: 140px × 140px or fill the div.
   ------------------------------------------------------- */
.service__spline {
  width: 100%;
  height: 140px;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s;
}

.service-card:hover .service__spline {
  border-color: rgba(255, 45, 0, 0.3);
}

.service__icon {
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.4s ease;
}

.service-card:hover .service__icon {
  color: var(--accent);
}

.service__body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service__number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--accent);
}

.service__name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.service__desc {
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--off-white);
  font-weight: 300;
}

.service__link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--dim);
  margin-top: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.25s, gap 0.25s;
}

.service-card:hover .service__link {
  color: var(--accent);
  gap: 0.8rem;
}

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.2rem 0;
  background: var(--bg-2);
}

.marquee {
  display: flex;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
}

.marquee span {
  display: inline-block;
  padding-right: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.12);
  text-transform: uppercase;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ============================================================
   ABOUT / STATEMENT
   ============================================================ */
.about {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: clamp(5rem, 12vh, 12rem) clamp(1.5rem, 5vw, 5rem);
  overflow: hidden;
}

/* -------------------------------------------------------
   SPLINE MOUNT POINT — about section background
   -------------------------------------------------------
   This full-bleed div sits behind the text content.
   Add a Spline scene for an ambient background effect.
   Set pointer-events: none so it doesn't block scrolling.
   ------------------------------------------------------- */
.about__spline {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  /* If using Spline here, add: */
  /* display: flex; align-items: center; justify-content: center; */
}

/* Subtle gradient backdrop (remove if adding Spline bg) */
.about::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 80% 50%, rgba(255, 45, 0, 0.08), transparent),
    radial-gradient(ellipse 60% 70% at 20% 50%, rgba(255, 45, 0, 0.04), transparent);
  pointer-events: none;
  z-index: 0;
}

.about__content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.about__label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--accent);
}

.about__statement {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3.5rem, 9vw, 10rem);
  letter-spacing: -0.03em;
  line-height: 0.9;
  text-transform: uppercase;
}

.about__statement em {
  font-style: italic;
  background: linear-gradient(90deg, var(--white) 40%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about__body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--off-white);
  max-width: 500px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.2rem;
  border-radius: 2rem;
  cursor: pointer;
  transition: all 0.3s;
}

.btn--primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 0 32px var(--accent-glow);
}

.btn--primary:hover {
  background: var(--white);
  color: var(--bg);
  box-shadow: 0 0 48px rgba(255, 255, 255, 0.15);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: clamp(5rem, 10vh, 10rem) clamp(1.5rem, 5vw, 5rem);
  border-top: 1px solid var(--border);
}

.contact__label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--accent);
  display: block;
  margin-bottom: 1.5rem;
}

.contact__headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 6vw, 7rem);
  letter-spacing: -0.03em;
  line-height: 0.9;
  text-transform: uppercase;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-field label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--dim);
}

.form-field input,
.form-field select,
.form-field textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 0.85rem 1rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  border-radius: 4px;
  transition: border-color 0.25s, background 0.25s;
}

.form-field option {
  background: #111;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--accent);
  background: rgba(255, 45, 0, 0.05);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.btn--submit {
  margin-top: 0.5rem;
  background: var(--white);
  color: var(--bg);
  align-self: flex-start;
}

.btn--submit:hover {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 0 28px rgba(255, 45, 0, 0.3);
}

.contact__thanks {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.contact__thanks h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2rem;
  letter-spacing: 0.05em;
  color: var(--accent);
}

.contact__thanks p {
  color: var(--off-white);
  font-size: 0.9rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem clamp(1.5rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__brand {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.12em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer__links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer__links a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--dim);
  transition: color 0.25s;
}

.footer__links a:hover {
  color: var(--white);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.25);
}

/* ============================================================
   SCROLL-REVEAL (JS-driven class)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero__spline {
    width: 100%;
    top: auto;
    bottom: 0;
    height: 45vh;
    opacity: 0.35;
  }

  .hero__content {
    position: relative;
    z-index: 3;
  }

  .contact {
    grid-template-columns: 1fr;
  }

  .nav__links {
    display: none;
  }
}

@media (max-width: 640px) {
  .trusted {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .trusted__divider {
    display: none;
  }

  .footer__top {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============================================================
   CURSOR GLOW (optional premium feel)
   ============================================================ */
.cursor-glow {
  position: fixed;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 45, 0, 0.06), transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9998;
  transition: opacity 0.3s;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: clamp(5rem, 10vh, 10rem) clamp(1.5rem, 5vw, 5rem);
  border-top: 1px solid var(--border);
}

.testimonials__header {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: clamp(3rem, 6vh, 6rem);
}

.testimonials__label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--accent);
}

.testimonials__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3.5rem, 8vw, 9rem);
  letter-spacing: -0.02em;
  line-height: 0.9;
  text-transform: uppercase;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.tcard {
  background: var(--bg-card);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.tcard::before {
  content: '\201C';
  position: absolute;
  top: -0.2em;
  right: 0.3em;
  font-family: var(--font-display);
  font-size: 9rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.tcard:hover {
  background: #0f0f0f;
}

.tcard__quote {
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  line-height: 1.8;
  color: var(--off-white);
  font-style: italic;
  font-family: var(--font-body);
}

.tcard__footer {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.tcard__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid rgba(255, 45, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--accent);
  flex-shrink: 0;
}

.tcard__info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.tcard__name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--white);
}

.tcard__role {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--dim);
}

/* ============================================================
   FOOTER LOGOS
   ============================================================ */
.footer__logos {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer__logos-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.25);
  text-transform: uppercase;
}

.footer__logo-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.logo-pill {
  display: inline-flex;
  align-items: baseline;
  gap: 0.2em;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.18);
  padding: 0.6rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 4px;
  transition: color 0.3s, border-color 0.3s;
  cursor: default;
}

.logo-pill span {
  font-weight: 400;
  font-size: 0.6em;
  letter-spacing: 0.1em;
  opacity: 0.7;
}

.logo-pill:hover {
  color: rgba(255, 255, 255, 0.55);
  border-color: rgba(255, 45, 0, 0.25);
}