/* ============================================================
   Ganesh Ariyur | Executive Brand Site
   Theme: Dark + Cyan (#00ffee) | Elite Executive Premium
   ============================================================ */

:root {
  --cyan: #00ffee;
  --cyan-soft: #5cfff4;
  --cyan-dim: rgba(0, 255, 238, 0.14);
  --cyan-glow: rgba(0, 255, 238, 0.35);

  --bg: #05080c;
  --bg-2: #080d13;
  --surface: rgba(255, 255, 255, 0.035);
  --surface-2: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.09);
  --border-bright: rgba(0, 255, 238, 0.32);

  --text: #eef3f6;
  --text-soft: #c9d3db;
  --text-dim: #97a4ae;

  --maxw: 1180px;
  --radius: 16px;
  --radius-lg: 24px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --font-head: "Space Grotesk", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 17px; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  letter-spacing: 0;
  word-spacing: normal;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Ambient background: subtle grid + cyan glow */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(900px 600px at 78% -8%, rgba(0, 255, 238, 0.10), transparent 60%),
    radial-gradient(700px 500px at -5% 18%, rgba(0, 255, 238, 0.05), transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 0%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(circle at 50% 0%, #000 0%, transparent 75%);
  opacity: 0.6;
}

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
section { position: relative; }
.section-pad { padding: 96px 0; }
.section-pad-sm { padding: 64px 0; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.2; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3 { font-size: 1.3rem; }
p { color: var(--text-soft); }
a { color: var(--cyan); text-decoration: none; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "";
  width: 30px; height: 1px;
  background: linear-gradient(90deg, var(--cyan), transparent);
}

.gradient-text {
  background: linear-gradient(120deg, #fff 0%, var(--cyan) 60%, var(--cyan-soft) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lead { font-size: 1.22rem; color: var(--text-soft); max-width: 60ch; }
.muted { color: var(--text-dim); }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(5, 8, 12, 0.72);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.nav.scrolled { border-bottom-color: var(--border); background: rgba(5, 8, 12, 0.9); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; color: var(--text); letter-spacing: -0.01em; }
.brand .mark {
  width: 38px; height: 38px; border-radius: 10px;
  display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; font-size: 0.95rem;
  color: var(--bg);
  background: linear-gradient(135deg, var(--cyan), var(--cyan-soft));
  box-shadow: 0 0 22px var(--cyan-glow);
}
.brand small { display: block; font-family: var(--font-body); font-weight: 400; font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-dim); }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
  display: inline-block; padding: 8px 12px; border-radius: 9px;
  color: var(--text-soft); font-size: 0.9rem; font-weight: 500;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.nav-links a:hover { color: var(--text); background: var(--surface); }
.nav-links a.active { color: var(--cyan); }
.nav-cta { margin-left: 10px; }

.nav-toggle { display: none; background: none; border: 1px solid var(--border); border-radius: 9px; width: 44px; height: 40px; cursor: pointer; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--text); transition: 0.3s var(--ease); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-head); font-weight: 500; font-size: 0.95rem;
  padding: 13px 24px; border-radius: 11px; cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
  border: 1px solid transparent;
}
.btn-primary { background: linear-gradient(135deg, var(--cyan), var(--cyan-soft)); color: #03100f; box-shadow: 0 0 0 rgba(0,255,238,0); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 34px var(--cyan-glow); }
.btn-ghost { background: var(--surface); color: var(--text); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--border-bright); color: var(--cyan); transform: translateY(-2px); }
.btn .arrow { transition: transform 0.2s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Hero ---------- */
.hero { padding: 96px 0 80px; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; }
.hero h1 { margin-bottom: 24px; }
.hero .tagline { font-family: var(--font-head); font-size: clamp(1.1rem, 2vw, 1.45rem); color: var(--cyan); margin-bottom: 20px; letter-spacing: -0.01em; }
.hero .lead { margin-bottom: 34px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Portrait placeholder */
.portrait {
  position: relative; aspect-ratio: 4/5; border-radius: var(--radius-lg);
  border: none; overflow: hidden;
  background:
    radial-gradient(120% 80% at 70% 10%, rgba(0,255,238,0.18), transparent 55%),
    linear-gradient(160deg, #0b131a, #060a0e);
  display: grid; place-items: center; text-align: center;
}
.portrait::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,255,238,0.06));
}
.portrait .ph-label { position: relative; z-index: 1; color: var(--text-dim); font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 0 24px; }
.portrait .ph-icon { font-size: 2.4rem; color: var(--cyan); opacity: 0.5; margin-bottom: 12px; }

.img-ph {
  border: 1px dashed var(--border-bright); border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(0,255,238,0.04), transparent);
  display: grid; place-items: center; text-align: center;
  color: var(--text-dim); font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
  min-height: 200px; padding: 24px;
}

/* ---------- Proof strip ---------- */
.proof-strip { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--surface); }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); }
.proof-grid .stat { background: var(--bg); padding: 32px 24px; text-align: center; }
.stat .num { font-family: var(--font-head); font-weight: 700; font-size: clamp(1.8rem, 3vw, 2.5rem); color: var(--cyan); letter-spacing: -0.01em; }
.stat .lbl { font-size: 0.98rem; color: var(--text-soft); margin-top: 8px; letter-spacing: 0.01em; }

/* ---------- Section heads ---------- */
.sec-head { max-width: 720px; margin-bottom: 52px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head p { margin-top: 16px; }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

.card {
  position: relative; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 28px;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
  overflow: hidden;
}
.card::before {
  content: ""; position: absolute; left: 0; top: 0; height: 100%; width: 3px;
  background: linear-gradient(180deg, var(--cyan), transparent);
  opacity: 0; transition: opacity 0.3s var(--ease);
}
.card:hover { transform: translateY(-4px); border-color: var(--border-bright); background: var(--surface-2); }
.card:hover::before { opacity: 1; }
.card .k { font-family: var(--font-head); font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--cyan); margin-bottom: 14px; display: block; }
.card h3 { margin-bottom: 12px; color: var(--text); }
.card p { font-size: 1.02rem; }
.card .num-badge {
  width: 44px; height: 44px; border-radius: 11px; display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; color: var(--cyan);
  background: var(--cyan-dim); border: 1px solid var(--border-bright); margin-bottom: 18px;
}

/* Flow chips (frameworks) */
.flow { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.flow .chip {
  font-family: var(--font-head); font-size: 0.78rem; font-weight: 500;
  padding: 6px 12px; border-radius: 999px; color: var(--cyan-soft);
  background: var(--cyan-dim); border: 1px solid var(--border-bright);
}
.flow .sep { color: var(--text-dim); align-self: center; }

.reusable {
  margin-top: 18px; padding: 14px 16px; border-radius: 12px;
  background: rgba(0,255,238,0.04); border-left: 2px solid var(--cyan);
  font-size: 0.95rem; color: var(--text-soft); font-style: italic;
}

/* ---------- POV / quote ---------- */
.quote-band { text-align: center; }
.quote-band blockquote {
  font-family: var(--font-head); font-weight: 500; letter-spacing: -0.01em;
  font-size: clamp(1.5rem, 3.4vw, 2.4rem); line-height: 1.3; max-width: 16ch;
  margin: 0 auto; color: var(--text);
}
.quote-band blockquote .hl { color: var(--cyan); }
.quote-band cite { display: block; margin-top: 26px; font-style: normal; color: var(--text-dim); font-size: 0.9rem; letter-spacing: 0.12em; text-transform: uppercase; }

/* ---------- Lists ---------- */
.tick-list { list-style: none; display: grid; gap: 14px; }
.tick-list li { position: relative; padding-left: 34px; color: var(--text-soft); }
.tick-list li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 16px; height: 16px; border-radius: 5px;
  background: var(--cyan-dim); border: 1px solid var(--border-bright);
}
.tick-list li::after {
  content: ""; position: absolute; left: 5px; top: 12px;
  width: 5px; height: 9px; border: solid var(--cyan); border-width: 0 2px 2px 0; transform: rotate(45deg);
}

.bullet-pov { list-style: none; display: grid; gap: 16px; }
.bullet-pov li { padding: 18px 22px; border: 1px solid var(--border); border-radius: 12px; background: var(--surface); color: var(--text); font-family: var(--font-head); font-weight: 500; transition: border-color 0.3s var(--ease); }
.bullet-pov li:hover { border-color: var(--border-bright); }

/* ---------- CTA band ---------- */
.cta-band {
  border: 1px solid var(--border-bright); border-radius: var(--radius-lg);
  background:
    radial-gradient(120% 140% at 50% -20%, rgba(0,255,238,0.16), transparent 60%),
    var(--surface);
  padding: 64px 40px; text-align: center;
}
.cta-band h2 { margin-bottom: 16px; }
.cta-band p { max-width: 52ch; margin: 0 auto 30px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-methods { display: grid; gap: 16px; }
.method {
  display: flex; gap: 16px; align-items: flex-start; padding: 22px;
  border: 1px solid var(--border); border-radius: 14px; background: var(--surface);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.method:hover { border-color: var(--border-bright); transform: translateY(-2px); }
.method .ic { width: 46px; height: 46px; flex: none; border-radius: 11px; display: grid; place-items: center; background: var(--cyan-dim); border: 1px solid var(--border-bright); color: var(--cyan); font-size: 1.2rem; }
.method .mt { display: block; font-family: var(--font-head); color: var(--text); font-weight: 600; font-size: 1.02rem; }
.method .md { display: block; font-size: 0.98rem; color: var(--text-soft); }
.method a { word-break: break-word; }

form .field { margin-bottom: 18px; }
form label { display: block; font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 8px; }
form input, form textarea {
  width: 100%; padding: 13px 15px; border-radius: 11px;
  background: var(--bg-2); border: 1px solid var(--border); color: var(--text);
  font-family: var(--font-body); font-size: 0.95rem; transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
form input:focus, form textarea:focus { outline: none; border-color: var(--cyan); box-shadow: 0 0 0 3px var(--cyan-dim); }
form textarea { resize: vertical; min-height: 130px; }

/* ---------- Newsletter inline ---------- */
.news-inline { display: flex; gap: 12px; max-width: 480px; margin-top: 24px; flex-wrap: wrap; }
.news-inline input { flex: 1; min-width: 220px; padding: 13px 15px; border-radius: 11px; background: var(--bg-2); border: 1px solid var(--border); color: var(--text); }
.news-inline input:focus { outline: none; border-color: var(--cyan); }

/* ---------- Page header ---------- */
.page-head { padding: 80px 0 40px; }
.page-head h1 { margin-bottom: 18px; }
.page-head .lead { max-width: 64ch; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--border); padding: 56px 0 36px; margin-top: 40px; }
.footer-top { display: flex; justify-content: space-between; gap: 32px; flex-wrap: wrap; margin-bottom: 36px; }
.footer .brand { margin-bottom: 16px; }
.footer .tag { color: var(--text-dim); max-width: 36ch; font-size: 0.92rem; }
.footer-links { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-col h4 { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 16px; }
.footer-col a { display: block; color: var(--text-soft); font-size: 0.92rem; margin-bottom: 10px; }
.footer-col a:hover { color: var(--cyan); }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 26px; border-top: 1px solid var(--border); color: var(--text-dim); font-size: 0.84rem; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .portrait { max-width: 360px; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 940px) {
  .nav-links {
    position: fixed; inset: 74px 0 auto 0; flex-direction: column; align-items: stretch;
    gap: 0; background: rgba(5,8,12,0.97); border-bottom: 1px solid var(--border);
    padding: 12px 20px 22px; transform: translateY(-130%); transition: transform 0.35s var(--ease);
  }
  .nav-links.open { transform: none; }
  .nav-links a { padding: 14px 12px; border-radius: 9px; }
  .nav-cta { margin: 8px 0 0; }
  .nav-toggle { display: flex; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .section-pad { padding: 64px 0; }
  .cta-band { padding: 44px 24px; }
}

/* ============================================================
   Spotlight & Recommendations
   ============================================================ */

/* Featured pull-quote testimonial */
.feature-quote {
  position: relative; border: 1px solid var(--border-bright); border-radius: var(--radius-lg);
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(0,255,238,0.10), transparent 55%),
    var(--surface);
  padding: 44px 44px 38px; overflow: hidden;
}
.feature-quote .mark-q {
  font-family: var(--font-head); font-size: 5rem; line-height: 0.6; color: var(--cyan);
  opacity: 0.28; display: block; margin-bottom: 4px;
}
.feature-quote blockquote {
  font-family: var(--font-head); font-weight: 500; letter-spacing: -0.01em;
  font-size: clamp(1.15rem, 2.1vw, 1.6rem); line-height: 1.4; color: var(--text); margin-bottom: 22px;
}
.feature-quote blockquote .hl { color: var(--cyan); }
.attrib { display: flex; align-items: center; gap: 14px; }
.attrib .av {
  width: 48px; height: 48px; flex: none; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; color: var(--bg);
  background: linear-gradient(135deg, var(--cyan), var(--cyan-soft));
}
.attrib .nm { display: block; font-family: var(--font-head); font-weight: 600; color: var(--text); font-size: 1.05rem; }
.attrib .rl { display: block; font-size: 0.92rem; color: var(--text-dim); margin-top: 2px; }

/* Recommendation card */
.rec {
  display: flex; flex-direction: column; gap: 16px; height: 100%;
}
.rec .body { color: var(--text-soft); font-size: 1.05rem; line-height: 1.6; }
.rec .body .hl { color: var(--cyan-soft); font-style: normal; }
.rec .who { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 6px; }
.rec .who .av {
  width: 40px; height: 40px; flex: none; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; font-size: 0.85rem; color: var(--bg);
  background: linear-gradient(135deg, var(--cyan), var(--cyan-soft));
}
.rec .who .nm { display: block; font-family: var(--font-head); font-weight: 600; color: var(--text); font-size: 1.02rem; line-height: 1.25; }
.rec .who .rl { display: block; font-size: 0.88rem; color: var(--text-dim); margin-top: 2px; }

/* Feature / award card */
.feature-card .badge {
  display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head);
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--cyan);
  background: var(--cyan-dim); border: 1px solid var(--border-bright);
  padding: 6px 12px; border-radius: 999px; margin-bottom: 16px;
}
.feature-card .src { font-size: 0.82rem; color: var(--text-dim); margin-top: 14px; }
.verify { color: var(--cyan-soft); font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; }

/* Press / link hub */
.platform-head { display: flex; align-items: center; gap: 14px; margin: 0 0 22px; }
.platform-head .pic {
  width: 44px; height: 44px; border-radius: 11px; flex: none; display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; color: var(--cyan);
  background: var(--cyan-dim); border: 1px solid var(--border-bright); font-size: 0.95rem;
}
.platform-head h3 { color: var(--text); }
.platform-head .sub { display: block; font-size: 0.95rem; color: var(--text-dim); }

.link-card {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 22px; border: 1px solid var(--border); border-radius: 13px; background: var(--surface);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), background 0.25s var(--ease);
}
.link-card:hover { border-color: var(--border-bright); transform: translateX(4px); background: var(--surface-2); }
.link-card .lc-main { min-width: 0; }
.link-card .lc-title { display: block; font-family: var(--font-head); font-weight: 600; color: var(--text); font-size: 1.08rem; margin-bottom: 4px; }
.link-card .lc-desc { display: block; font-size: 0.96rem; color: var(--text-soft); line-height: 1.5; }
.link-card .lc-go { flex: none; color: var(--cyan); font-family: var(--font-head); font-size: 0.95rem; font-weight: 500; letter-spacing: 0.04em; }
.link-card .lc-tag { flex: none; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim); }

.note-banner {
  border: 1px dashed var(--border-bright); border-radius: 12px; background: rgba(0,255,238,0.04);
  padding: 16px 20px; color: var(--text-soft); font-size: 0.9rem; margin-bottom: 32px;
}
.note-banner strong { color: var(--cyan); }


/* ---------- Mobile legibility ---------- */
@media (max-width: 640px) {
  .link-card { flex-direction: column; align-items: flex-start; gap: 6px; }
  .link-card .lc-go { align-self: flex-end; }
  .lead { font-size: 1.12rem; }
  .rec .body { font-size: 1.05rem; }
  .link-card .lc-desc, .method .md, .card p { font-size: 1rem; }
  .platform-head .sub { font-size: 0.95rem; }
}

/* ---------- Portrait photo slots (drop-in) ---------- */
.portrait img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 20%; z-index: 2;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 16%, #000 84%, transparent 100%), linear-gradient(to bottom, transparent 0%, #000 14%, #000 86%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image: linear-gradient(to right, transparent 0%, #000 16%, #000 84%, transparent 100%), linear-gradient(to bottom, transparent 0%, #000 14%, #000 86%, transparent 100%);
  mask-composite: intersect;
}
.portrait .ph-fallback { position: relative; z-index: 1; }

/* ---------- Experience / logo strip ---------- */
.logo-strip-label { text-align: center; font-family: var(--font-head); font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 28px; }
.logo-strip { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 26px 44px; }
.logo-item { display: inline-flex; align-items: center; height: 34px; }
.logo-item img { max-height: 34px; width: auto; opacity: 0.9; filter: brightness(0) invert(1); }
.logo-item .logo-fallback { font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; color: var(--text-soft); letter-spacing: 0.01em; }
.logo-item img ~ .logo-fallback { display: none; }
@media (max-width: 640px) { .logo-strip { gap: 18px 28px; } .logo-item .logo-fallback { font-size: 0.95rem; } }

/* ---------- Trusted-by marquee ---------- */
.marquee { overflow: hidden; width: 100%; -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.marquee-track { display: flex; align-items: center; gap: 56px; width: max-content; animation: marquee 45s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; flex-wrap: wrap; justify-content: center; } }

/* ---------- Nav CTA contrast fix (button text was inheriting muted nav color) ---------- */
.nav-links .nav-cta a.btn-primary,
.nav-links .nav-cta a.btn-primary:hover { color: #03100f; font-weight: 600; background: linear-gradient(135deg, var(--cyan), var(--cyan-soft)); }
