/* Design tokens — colors, type, spacing. Palette matches the Interaxa brand deck. */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700;800&family=Inter:wght@400;500;600;700&family=Space+Mono:wght@400;700&display=swap');

:root{
  --black: #0a0a0b;
  --black-soft: #131316;
  --black-card: #1a1a1f;
  --hairline: rgba(255,255,255,0.09);
  --white: #ffffff;
  --off-white: #f5f5f7;
  --paper: #eeeef2;
  --ink: #0c0c0e;
  --gray: #9a9aa4;
  --gray-dim: #6b6b74;
  --blue: #0074d9;
  --blue-bright: #2f9bff;
  --blue-deep: #0057a8;
  --lavender: #ccccff;
  --violet: #b98cf2;

  --display: 'Sora', system-ui, sans-serif;
  --body: 'Inter', system-ui, sans-serif;
  --mono: 'Space Mono', monospace;

  --container: 1200px;
  --edge: clamp(24px, 5vw, 72px);
  --radius-s: 10px;
  --radius-m: 18px;
  --radius-l: 28px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--black);
  color:var(--white);
  font-family:var(--body);
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
h1,h2,h3,h4{ font-family:var(--display); margin:0; line-height:1.08; letter-spacing:-0.01em; }
p{ margin:0; }
button{ font-family:inherit; cursor:pointer; }

.container{
  max-width:var(--container);
  margin-inline:auto;
  padding-inline:var(--edge);
}

.eyebrow{
  font-family:var(--mono);
  font-size:12.5px;
  letter-spacing:0.12em;
  text-transform:uppercase;
  color:var(--blue-bright);
  display:flex;
  align-items:center;
  gap:10px;
}
.eyebrow::before{
  content:"";
  width:7px;height:7px;border-radius:50%;
  background:var(--blue-bright);
  box-shadow:0 0 0 4px rgba(47,155,255,0.18);
  flex:none;
}
.light .eyebrow{ color:var(--blue-deep); }
.light .eyebrow::before{ background:var(--blue-deep); box-shadow:0 0 0 4px rgba(0,116,217,0.12); }

/* Buttons */
.btn{
  display:inline-flex; align-items:center; gap:10px;
  padding:14px 26px;
  border-radius:100px;
  font-family:var(--body);
  font-weight:600;
  font-size:15px;
  border:1px solid transparent;
  transition:transform .25s ease, background .25s ease, border-color .25s ease, color .25s ease;
  white-space:nowrap;
}
.btn:hover{ transform:translateY(-2px); }
.btn-primary{ background:var(--blue-bright); color:var(--black); }
.btn-primary:hover{ background:var(--white); }
.btn-ghost{ border-color:rgba(255,255,255,0.22); color:var(--white); }
.btn-ghost:hover{ border-color:var(--white); }
.light .btn-ghost{ border-color:rgba(12,12,14,0.2); color:var(--ink); }
.light .btn-ghost:hover{ border-color:var(--ink); }
.btn-arrow{ transition:transform .25s ease; }
.btn:hover .btn-arrow{ transform:translateX(3px); }

/* Nav */
.nav{
  position:fixed; top:0; left:0; right:0; z-index:100;
  padding:18px var(--edge);
  display:flex; align-items:center; justify-content:space-between;
  background:rgba(10,10,11,0.7);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(255,255,255,0.06);
  transition:background .3s ease;
}
.nav__logo img{ height:22px; width:auto; }
.nav__links{ display:flex; align-items:center; gap:36px; }
.nav__links a{
  font-size:14.5px; font-weight:500; color:var(--gray);
  position:relative; padding:4px 0;
  transition:color .2s ease;
}
.nav__links a:hover, .nav__links a.active{ color:var(--white); }
.nav__links a.active::after{
  content:""; position:absolute; left:0; right:0; bottom:-4px; height:1px; background:var(--blue-bright);
}
.nav__cta{ display:flex; align-items:center; gap:18px; }
.lang-switch{
  display:flex; align-items:center; gap:2px;
  border:1px solid rgba(255,255,255,0.14); border-radius:100px; padding:3px;
}
.lang-switch button{
  background:none; border:none; color:var(--gray);
  font-family:var(--mono); font-size:11.5px; letter-spacing:.03em;
  padding:6px 11px; border-radius:100px; transition:background .2s ease, color .2s ease;
}
.lang-switch button.active{ background:var(--white); color:var(--black); }
.lang-switch button:hover:not(.active){ color:var(--white); }
.light .lang-switch{ border-color:rgba(12,12,14,0.16); }
.light .lang-switch button{ color:var(--gray-dim); }
.light .lang-switch button.active{ background:var(--ink); color:var(--white); }
.mobile-panel .lang-switch{ margin-top:8px; align-self:flex-start; }
.mobile-panel .lang-switch button{ font-size:13px; padding:8px 16px; }

.nav__toggle{ display:none; background:none; border:none; padding:6px; }
.nav__toggle span{ display:block; width:22px; height:2px; background:var(--white); margin:5px 0; transition:transform .25s ease, opacity .25s ease; }

.mobile-panel{
  position:fixed; inset:0; z-index:99;
  background:var(--black);
  display:flex; flex-direction:column;
  padding:100px var(--edge) 40px;
  gap:28px;
  transform:translateY(-100%);
  transition:transform .4s cubic-bezier(.6,0,.2,1);
}
.mobile-panel.open{ transform:translateY(0); }
.mobile-panel a{ font-family:var(--display); font-size:28px; font-weight:700; color:var(--white); }

@media (max-width: 880px){
  .nav__links{ display:none; }
  .nav__cta .btn-ghost{ display:none; }
  .nav__toggle{ display:block; }
}

/* Sections */
section{ position:relative; }
.section{ padding:120px 0; }
.section-tight{ padding:80px 0; }
.light{ background:var(--off-white); color:var(--ink); }
.soft{ background:var(--black-soft); }

.section-head{
  display:flex; justify-content:space-between; align-items:flex-end; gap:40px;
  margin-bottom:56px; flex-wrap:wrap;
}
.section-head h2{ font-size:clamp(30px,3.6vw,44px); max-width:640px; }
.section-head p{ max-width:420px; color:var(--gray); font-size:15.5px; }
.light .section-head p{ color:var(--gray-dim); }
@media (max-width:700px){
  .section-head p{ max-width:100%; }
}

.kicker-line{ display:flex; align-items:center; gap:16px; margin-bottom:22px; }
.kicker-line h2{ font-size:clamp(30px,3.6vw,44px); }

/* Hero */
.hero{
  min-height:100svh;
  display:flex; align-items:center;
  padding-top:140px; padding-bottom:80px;
  position:relative;
  background:
    radial-gradient(ellipse 60% 50% at 82% 18%, rgba(0,116,217,0.28), transparent 60%),
    radial-gradient(ellipse 50% 40% at 100% 90%, rgba(185,140,242,0.12), transparent 60%),
    var(--black);
  overflow:hidden;
}
.hero__grid{
  display:grid; grid-template-columns:1.05fr 0.95fr; gap:40px; align-items:start;
}
.hero h1{ font-size:clamp(38px, 5.6vw, 74px); font-weight:700; }
.hero h1 em{ font-style:normal; color:var(--blue-bright); }
.hero__lede{ margin-top:26px; max-width:480px; color:var(--gray); font-size:17px; }
.hero__actions{ display:flex; gap:16px; margin-top:40px; flex-wrap:wrap; }
.hero__proof{ margin-top:64px; display:flex; gap:44px; flex-wrap:wrap; }
.hero__proof div strong{ display:block; font-family:var(--display); font-size:26px; }
.hero__proof div span{ font-size:12.5px; color:var(--gray-dim); font-family:var(--mono); letter-spacing:.04em; }

@media (max-width: 980px){
  .hero__grid{ grid-template-columns:1fr; }
  .hero__art{ order:-1; height:260px; }
}

/* Network diagram (signature element) */
.net{ position:relative; height:460px; }
.net svg{ width:100%; height:100%; overflow:visible; }
.net-node{ transform-box:fill-box; }
.net-float{ transform-box:fill-box; }
.net-node .dot{ fill:var(--black-card); stroke:rgba(255,255,255,0.16); stroke-width:1.5; }
.net-node .ring{ fill:none; stroke:rgba(255,255,255,0.08); stroke-width:1; }
.net-node .icon{ stroke:var(--white); stroke-width:1.7; fill:none; stroke-linecap:round; stroke-linejoin:round; }
.net-node.whatsapp .dot{ stroke:rgba(70,214,132,0.45); }
.net-node.whatsapp .icon{ stroke:#4ade80; }
.net-node.voice .icon{ stroke:#7dd3fc; }
.net-node.chat .icon{ stroke:#facc15; }
.net-node.email .icon{ stroke:#c4b5fd; }
.net-node.social .icon{ stroke:#f9a8d4; }
.net-node.ivr .icon{ stroke:#67e8f9; }
.net-node text{ font-family:var(--mono); font-size:11px; fill:var(--gray); letter-spacing:.03em; }
.net-node.center circle.dot{ fill:var(--white); stroke:none; }
.net-line{ stroke:rgba(255,255,255,0.14); stroke-width:1.3; fill:none; }
.net-flow{
  stroke:var(--blue-bright); stroke-width:1.6; fill:none;
  stroke-dasharray:6 220; stroke-dashoffset:0;
  animation:flow-move 3.6s linear infinite;
  opacity:0.9;
}
.net-line:nth-of-type(2n) .net-flow, .net-flow.d2{ animation-delay:0.6s; }
.net-flow.d3{ animation-delay:1.2s; }
.net-flow.d4{ animation-delay:1.8s; }
.net-flow.d5{ animation-delay:2.4s; }
.net-flow.d6{ animation-delay:3s; }
@keyframes flow-move{
  from{ stroke-dashoffset:220; }
  to{ stroke-dashoffset:-220; }
}
.net-float{ animation:node-float 6s ease-in-out infinite; }
.net-float.f1{ animation-duration:5.5s; }
.net-float.f2{ animation-duration:6.5s; animation-delay:.4s; }
.net-float.f3{ animation-duration:5s; animation-delay:.8s; }
.net-float.f4{ animation-duration:6s; animation-delay:1.1s; }
.net-float.f5{ animation-duration:5.8s; animation-delay:.2s; }
.net-float.f6{ animation-duration:6.2s; animation-delay:.9s; }
@keyframes node-float{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-7px); }
}
@media (prefers-reduced-motion: reduce){
  .net-flow{ animation:none; opacity:0; }
  .net-float{ animation:none; }
}

/* Stat strip */
.stats{ padding:56px 0; }
.stats__row{
  display:grid; grid-template-columns:repeat(4, 1fr);
  column-gap:32px; row-gap:36px;
}
.stats__row strong{ display:block; font-family:var(--display); font-size:26px; }
.stats__row span{ font-size:12.5px; color:var(--gray-dim); font-family:var(--mono); letter-spacing:.04em; }
@media (max-width: 980px){
  .stats__row{ grid-template-columns:repeat(2, 1fr); }
}
@media (max-width: 520px){
  .stats__row{ grid-template-columns:1fr; }
}

/* Cards */
.grid-3{ display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
.grid-2{ display:grid; grid-template-columns:repeat(2,1fr); gap:26px; }
@media (max-width: 900px){ .grid-3, .grid-2{ grid-template-columns:1fr; } }

.card{
  background:var(--black-card);
  border:1px solid var(--hairline);
  border-radius:var(--radius-m);
  padding:34px;
}
.light .card{ background:var(--white); border-color:rgba(12,12,14,0.08); box-shadow:0 1px 2px rgba(12,12,14,0.03); }
.card h3{ font-size:20px; margin-bottom:12px; }
.card p{ color:var(--gray); font-size:14.5px; }
.light .card p{ color:var(--gray-dim); }

.icon-badge{
  width:46px; height:46px; border-radius:12px;
  display:flex; align-items:center; justify-content:center;
  background:rgba(47,155,255,0.12);
  color:var(--blue-bright);
  margin-bottom:20px;
}
.icon-badge svg{ width:22px; height:22px; }

/* Logo strip (partners) */
.logo-strip{
  display:grid; grid-template-columns:repeat(5, 1fr); gap:14px;
}
.logo-strip .client-pill{ width:100%; min-width:0; }
.logo-strip .client-pill img{ max-width:100%; }
@media (max-width: 980px){
  .logo-strip{ grid-template-columns:repeat(3, 1fr); }
}
@media (max-width: 620px){
  .logo-strip{ grid-template-columns:repeat(2, 1fr); }
}
.logo-pill{
  font-family:var(--display); font-weight:700; font-size:15px;
  padding:12px 22px; border-radius:100px;
  border:1px solid var(--hairline);
  color:var(--gray);
  transition:color .2s ease, border-color .2s ease;
}
.logo-pill:hover{ color:var(--white); border-color:rgba(255,255,255,0.3); }
.light .logo-pill{ color:var(--gray-dim); border-color:rgba(12,12,14,0.12); }
.light .logo-pill:hover{ color:var(--ink); border-color:rgba(12,12,14,0.3); }

/* Map / coverage */
.coverage-list{ display:grid; grid-template-columns:repeat(2,1fr); gap:0; }
.coverage-item{
  display:flex; justify-content:space-between; align-items:baseline;
  padding:18px 0; border-bottom:1px solid var(--hairline);
}
.coverage-item span:first-child{ font-family:var(--display); font-weight:600; font-size:16px; }
.coverage-item span:last-child{ font-family:var(--mono); font-size:12.5px; color:var(--blue-bright); }
@media (max-width:700px){ .coverage-list{ grid-template-columns:1fr; } }

/* Verticals tabs */
.verticals{ display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
@media (max-width:900px){ .verticals{ grid-template-columns:1fr; } }

/* CTA band */
.cta-band{
  border-radius:var(--radius-l);
  padding:64px var(--edge);
  background:linear-gradient(135deg, rgba(0,116,217,0.16), rgba(185,140,242,0.08));
  border:1px solid rgba(255,255,255,0.08);
  display:flex; align-items:center; justify-content:space-between; gap:40px; flex-wrap:wrap;
}
.cta-band h3{ font-size:clamp(24px,3vw,34px); max-width:520px; }

/* Footer */
footer{
  border-top:1px solid var(--hairline);
  padding:64px 0 32px;
  background:var(--black);
}
.footer-grid{
  display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:40px;
  padding-bottom:48px;
}
.footer-grid img{ height:20px; margin-bottom:18px; }
.footer-grid p{ color:var(--gray-dim); font-size:13.5px; max-width:260px; }
.footer-social{ display:flex; gap:10px; margin-top:20px; }
.footer-social a{
  width:38px; height:38px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  border:1px solid var(--hairline); color:var(--gray);
  transition:color .2s ease, border-color .2s ease, transform .2s ease;
}
.footer-social a:hover{ color:var(--white); border-color:rgba(255,255,255,0.3); transform:translateY(-2px); }
.footer-social svg{ width:17px; height:17px; }

/* Floating social widget (right side) */
.social-rail{
  position:fixed; right:22px; top:50%; transform:translateY(-50%);
  z-index:60;
  display:flex; flex-direction:column; align-items:center; gap:10px;
}
.social-rail::before{
  content:""; width:1px; height:34px;
  background:linear-gradient(to bottom, transparent, var(--hairline));
  margin-bottom:2px;
}
.social-rail::after{
  content:""; width:1px; height:34px;
  background:linear-gradient(to top, transparent, var(--hairline));
  margin-top:2px;
}
.social-rail a{
  width:42px; height:42px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background:var(--white);
  border:1px solid rgba(255,255,255,0.9); color:var(--ink);
  box-shadow:0 4px 14px rgba(0,0,0,0.35);
  transition:color .2s ease, border-color .2s ease, transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.social-rail a:hover{
  color:var(--white); background:var(--blue-bright); border-color:var(--blue-bright);
  transform:translateX(-3px);
  box-shadow:0 6px 18px rgba(47,155,255,0.35);
}
.social-rail svg{ width:19px; height:19px; }
@media (max-width: 700px){
  .social-rail{ right:12px; gap:8px; }
  .social-rail a{ width:34px; height:34px; }
  .social-rail svg{ width:15px; height:15px; }
  .social-rail::before, .social-rail::after{ height:20px; }
}
.footer-col h4{ font-family:var(--body); font-size:13px; color:var(--gray); text-transform:uppercase; letter-spacing:.06em; margin-bottom:16px; font-weight:600; }
.footer-col a{ display:block; font-size:14.5px; color:var(--gray); padding:6px 0; transition:color .2s ease; }
.footer-col a:hover{ color:var(--white); }
.footer-bottom{
  display:flex; justify-content:space-between; align-items:center;
  padding-top:28px; border-top:1px solid var(--hairline);
  font-size:12.5px; color:var(--gray-dim); font-family:var(--mono);
}
@media (max-width:900px){
  .footer-grid{ grid-template-columns:1fr 1fr; }
}

/* Page hero (interior pages) */
.page-hero{
  padding:170px 0 90px;
  background:
    radial-gradient(ellipse 55% 60% at 90% 0%, rgba(0,116,217,0.22), transparent 60%),
    var(--black);
}
.page-hero h1{ font-size:clamp(34px,5vw,58px); max-width:760px; }
.page-hero__lede{ margin-top:22px; max-width:600px; color:var(--gray); font-size:16.5px; }

/* Timeline (Nosotros) */
.timeline{ position:relative; padding-left:26px; border-left:1px solid var(--hairline); }
.timeline-item{ position:relative; padding-bottom:38px; }
.timeline-item:last-child{ padding-bottom:0; }
.timeline-item::before{
  content:""; position:absolute; left:-31px; top:4px;
  width:9px; height:9px; border-radius:50%;
  background:var(--blue-bright);
  box-shadow:0 0 0 4px rgba(47,155,255,0.15);
}
.timeline-item strong{ font-family:var(--mono); color:var(--blue-bright); font-size:13px; }
.timeline-item h4{ font-size:18px; margin:6px 0 6px; }
.timeline-item p{ color:var(--gray); font-size:14.5px; max-width:520px; }

/* Ecosystem (Nosotros - Grupo CLASH) */
.eco-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
@media (max-width:900px){ .eco-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:600px){ .eco-grid{ grid-template-columns:1fr; } }
.eco-card{
  border:1px solid var(--hairline); border-radius:var(--radius-m); padding:26px;
  background:var(--black-card);
}
.eco-card h4{ font-size:16.5px; margin-bottom:8px; font-family:var(--display); }
.eco-card p{ font-size:13.5px; color:var(--gray); }

/* Case studies */
.case-card{
  border:1px solid var(--hairline); border-radius:var(--radius-l);
  overflow:hidden; background:var(--black-card);
}
.case-card__head{
  padding:40px var(--edge);
  display:flex; justify-content:space-between; align-items:flex-start; gap:24px; flex-wrap:wrap;
  background:linear-gradient(135deg, rgba(0,116,217,0.14), transparent 60%);
}
.case-card__head h3{ font-size:clamp(22px,2.6vw,30px); max-width:560px; }
.case-tag{
  font-family:var(--mono); font-size:12px; letter-spacing:.06em; text-transform:uppercase;
  color:var(--blue-bright); border:1px solid rgba(47,155,255,0.35);
  padding:7px 14px; border-radius:100px; white-space:nowrap;
}
.case-card__body{ padding:0 var(--edge) 44px; display:grid; grid-template-columns:1fr 1fr 1fr; gap:34px; }
@media (max-width:900px){ .case-card__body{ grid-template-columns:1fr; } }
.case-col h5{ font-family:var(--mono); font-size:12px; letter-spacing:.06em; text-transform:uppercase; color:var(--gray-dim); margin-bottom:14px; }
.case-col ul li{ font-size:14.5px; color:var(--gray); padding:8px 0; border-top:1px solid var(--hairline); }
.case-col ul li:first-child{ border-top:none; padding-top:0; }
.case-result{ display:flex; gap:14px; align-items:baseline; margin-bottom:16px; }
.case-result strong{ font-family:var(--display); font-size:24px; color:var(--white); white-space:nowrap; }
.case-result span{ font-size:13.5px; color:var(--gray); }

/* Contact */
.contact-grid{ display:grid; grid-template-columns:1fr 1fr; gap:60px; }
@media (max-width:900px){ .contact-grid{ grid-template-columns:1fr; } }
.field{ margin-bottom:20px; }
.field label{ display:block; font-size:13px; color:var(--gray); margin-bottom:8px; font-family:var(--mono); letter-spacing:.03em; }
.field input, .field textarea, .field select{
  width:100%; padding:14px 16px; border-radius:10px;
  background:var(--black-card); border:1px solid var(--hairline); color:var(--white);
  font-family:var(--body); font-size:14.5px;
}
.field textarea{ resize:vertical; min-height:120px; }
.field input:focus, .field textarea:focus, .field select:focus{ outline:none; border-color:var(--blue-bright); }
.contact-info-item{ display:flex; gap:18px; padding:22px 0; border-bottom:1px solid var(--hairline); }
.contact-info-item:first-child{ padding-top:0; }
.contact-info-item .icon-badge{ margin-bottom:0; flex:none; }
.contact-info-item h4{ font-size:15.5px; margin-bottom:4px; }
.contact-info-item p, .contact-info-item a{ font-size:14px; color:var(--gray); }
.form-note{ font-size:12.5px; color:var(--gray-dim); margin-top:6px; }

.form-status{
  margin-top:18px; padding:14px 18px; border-radius:10px;
  background:rgba(47,155,255,0.12); border:1px solid rgba(47,155,255,0.3);
  font-size:14px; display:none;
}
.form-status.show{ display:block; }

/* Clients marquee */
.clients-band{
  padding:64px 0;
  border-top:1px solid var(--hairline);
  border-bottom:1px solid var(--hairline);
  overflow:hidden;
}
.clients-band__head{
  display:flex; justify-content:space-between; align-items:flex-end; gap:24px; flex-wrap:wrap;
  margin-bottom:36px;
}
.clients-band__head h2{ font-size:clamp(24px,2.8vw,32px); }
.clients-note{
  display:inline-flex; align-items:center; gap:8px;
  font-family:var(--mono); font-size:12.5px; color:var(--gray-dim);
  letter-spacing:.02em;
}
.clients-note svg{ width:14px; height:14px; flex:none; color:var(--blue-bright); }

.marquee{
  position:relative;
  width:100%;
  mask-image:linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  -webkit-mask-image:linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.marquee__track{
  display:flex; align-items:center; gap:14px;
  width:max-content;
  animation:marquee-scroll 42s linear infinite;
}
.marquee:hover .marquee__track{ animation-play-state:paused; }
.client-pill{
  display:inline-flex; align-items:center; justify-content:center;
  height:76px; padding:0 30px;
  border-radius:var(--radius-m);
  border:1px solid var(--hairline);
  white-space:nowrap;
  background:var(--black-card);
  transition:border-color .2s ease, transform .2s ease;
}
.client-pill:hover{ border-color:rgba(255,255,255,0.28); transform:translateY(-2px); }
.client-pill img{
  height:26px; width:auto; max-width:150px;
  object-fit:contain;
  display:block;
}
.light .client-pill{ background:var(--white); border-color:rgba(12,12,14,0.1); }
.light .client-pill:hover{ border-color:rgba(12,12,14,0.3); }

@keyframes marquee-scroll{
  from{ transform:translateX(0); }
  to{ transform:translateX(-50%); }
}
@media (prefers-reduced-motion: reduce){
  .marquee__track{ animation:none; flex-wrap:wrap; width:100%; }
}
[data-reveal]{ opacity:0; transform:translateY(18px); transition:opacity .7s ease, transform .7s ease; }
[data-reveal].in{ opacity:1; transform:translateY(0); }

/* Misc */
.pill-tag{
  display:inline-block; font-family:var(--mono); font-size:11.5px; letter-spacing:.05em;
  text-transform:uppercase; color:var(--blue-bright); border:1px solid rgba(47,155,255,.3);
  padding:5px 12px; border-radius:100px; margin-bottom:14px;
}
.two-col{ display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:start; }
@media (max-width:900px){ .two-col{ grid-template-columns:1fr; gap:36px; } }

.text-gray{ color:var(--gray); }
.light .text-gray{ color:var(--gray-dim); }
.mt-8{ margin-top:8px;} .mt-16{ margin-top:16px;} .mt-24{ margin-top:24px;} .mt-40{ margin-top:40px;}

/* Video modal */
.logo-strip .client-pill.has-video{
  cursor:pointer; position:relative;
  font:inherit; appearance:none; -webkit-appearance:none;
}
.logo-strip .client-pill.has-video::after{
  content:"";
  position:absolute; top:8px; right:8px;
  width:20px; height:20px; border-radius:50%;
  background:var(--blue-bright);
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230a0a0b'><path d='M8 5v14l11-7z'/></svg>");
  background-size:11px; background-repeat:no-repeat; background-position:center;
  opacity:0; transform:scale(.6);
  transition:opacity .2s ease, transform .2s ease;
}
.logo-strip .client-pill.has-video:hover{ border-color:rgba(47,155,255,0.5); }
.logo-strip .client-pill.has-video:hover::after{ opacity:1; transform:scale(1); }

.video-modal{
  position:fixed; inset:0; z-index:200;
  display:none; align-items:center; justify-content:center;
  padding:24px;
  background:rgba(6,6,7,0.88);
  backdrop-filter:blur(6px); -webkit-backdrop-filter:blur(6px);
}
.video-modal.open{ display:flex; }
.video-modal__box{
  position:relative; width:100%; max-width:860px;
}
.video-modal__frame{
  position:relative; width:100%; padding-top:56.25%; /* 16:9 */
  background:#000; border-radius:var(--radius-m); overflow:hidden;
  border:1px solid var(--hairline);
}
.video-modal__frame iframe, .video-modal__frame video{
  position:absolute; inset:0; width:100%; height:100%; border:0; background:#000;
}
.video-modal__placeholder{
  position:absolute; inset:0; display:flex; align-items:center; justify-content:center;
  flex-direction:column; gap:10px; text-align:center; padding:24px;
  color:var(--gray); font-size:14px;
}
.video-modal__close{
  position:absolute; top:-46px; right:0;
  width:36px; height:36px; border-radius:50%;
  background:rgba(255,255,255,0.08); border:1px solid var(--hairline);
  color:var(--white); display:flex; align-items:center; justify-content:center;
  cursor:pointer;
}
.video-modal__close:hover{ background:rgba(255,255,255,0.16); }
.video-modal__title{ color:var(--white); font-family:var(--display); font-size:15px; margin-top:14px; text-align:center; }
.video-modal__playlist{
  display:flex; flex-wrap:wrap; justify-content:center; gap:8px;
  margin-top:16px;
}
.video-modal__playlist button{
  font:inherit; appearance:none; -webkit-appearance:none;
  font-family:var(--mono); font-size:12px; letter-spacing:.02em;
  padding:9px 16px; border-radius:100px;
  background:var(--black-card); color:var(--gray);
  border:1px solid var(--hairline);
  cursor:pointer; transition:color .2s ease, border-color .2s ease, background .2s ease;
}
.video-modal__playlist button:hover{ color:var(--white); border-color:rgba(255,255,255,0.3); }
.video-modal__playlist button.active{ background:var(--blue-bright); color:var(--black); border-color:var(--blue-bright); }
