:root{
  --bg:#050608; --bg2:#0b0d10; --text:#f5f7f8; --muted:#a5abb2; --line:rgba(255,255,255,.10);
  --lime:#d8ff3e; --cyan:#2df3e0; --blue:#1f57ff; --magenta:#e82bd7; --violet:#7f35e8;
  --max:1280px;
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  overflow-x:hidden;
}

a{
  color:inherit;
  text-decoration:none;
}

button{
  font:inherit;
}

.noise{
  position:fixed;
  inset:0;
  pointer-events:none;
  opacity:.035;
  z-index:50;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

.section-pad{
  max-width:var(--max);
  margin:auto;
  padding:120px 40px;
}

.site-header{
  height:86px;
  max-width:var(--max);
  margin:auto;
  padding:0 40px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  position:relative;
  z-index:20;
}

.brand img{
  width:142px;
  display:block;
}

.nav{
  display:flex;
  gap:34px;
  font-size:14px;
  color:#c3c7cb;
}

.nav a{
  transition:.2s;
}

.nav a:hover{
  color:#fff;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  padding:15px 23px;
  background:#fff;
  color:#060708;
  font-weight:700;
  font-size:14px;
  transition:.25s;
  border:1px solid #fff;
}

.btn:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 35px rgba(255,255,255,.10);
}

.btn-small{
  padding:11px 18px;
  font-size:13px;
}

.hero{
  min-height:770px;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  align-items:center;
  gap:50px;
  padding-top:70px;
}

.eyebrow,
.kicker{
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:#b8bec5;
  font-weight:700;
}

.eyebrow{
  display:flex;
  align-items:center;
  gap:10px;
}

.eyebrow span{
  width:28px;
  height:1px;
  background:var(--cyan);
}

h1,
h2,
h3,
p{
  margin-top:0;
}

.hero h1{
  font-size:clamp(58px,6vw,92px);
  line-height:.92;
  letter-spacing:-.055em;
  margin:22px 0 28px;
  max-width:780px;
}

.hero h1 em,
.section-heading h2 span,
.contact h2 span{
  font-style:normal;
  background:linear-gradient(90deg,var(--cyan),var(--lime) 45%,#fff 75%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

.hero-lead{
  font-size:18px;
  line-height:1.7;
  color:#b9bec5;
  max-width:650px;
}

.hero-lead strong{
  color:#fff;
  font-weight:600;
}

.hero-actions{
  display:flex;
  align-items:center;
  gap:30px;
  margin-top:36px;
}

.text-link{
  font-size:14px;
  color:#d4d8dc;
}

.text-link span{
  display:inline-block;
  margin-left:5px;
}

.hero-meta{
  display:flex;
  gap:38px;
  border-top:1px solid var(--line);
  margin-top:70px;
  padding-top:26px;
}

.hero-meta div{
  display:flex;
  flex-direction:column;
}

.hero-meta b{
  font-size:18px;
}

.hero-meta span{
  font-size:12px;
  color:#838a92;
  margin-top:4px;
}

.hero-art{
  position:relative;
  height:610px;
}

.hero-panel{
  position:absolute;
  inset:52px 10px 40px 55px;
  border:1px solid var(--line);
  border-radius:30px;
  background:linear-gradient(180deg,rgba(255,255,255,.055),rgba(255,255,255,.012));
  backdrop-filter:blur(15px);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.hero-panel:after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 70% 20%,rgba(45,243,224,.17),transparent 32%),
    radial-gradient(circle at 40% 75%,rgba(127,53,232,.18),transparent 38%);
}

.hero-panel img{
  width:72%;
  height:auto;
  object-fit:contain;
  filter:drop-shadow(0 26px 35px rgba(0,0,0,.42));
  position:relative;
  z-index:2;
}

.panel-label{
  position:absolute;
  left:24px;
  bottom:20px;
  font-size:10px;
  letter-spacing:.22em;
  color:#6d747c;
  z-index:3;
}

.orb{
  position:absolute;
  border-radius:999px;
  filter:blur(55px);
  opacity:.42;
}

.orb-a{
  width:190px;
  height:190px;
  background:var(--cyan);
  right:-30px;
  top:25px;
}

.orb-b{
  width:220px;
  height:220px;
  background:var(--violet);
  left:0;
  bottom:0;
}

.float-card{
  position:absolute;
  padding:12px 15px;
  border-radius:12px;
  border:1px solid var(--line);
  background:rgba(12,14,18,.72);
  backdrop-filter:blur(10px);
  font-size:10px;
  letter-spacing:.15em;
  color:#d5d9dc;
  box-shadow:0 20px 50px rgba(0,0,0,.25);
}

.float-card span{
  color:var(--cyan);
  margin-right:8px;
}

.card-a{
  top:90px;
  left:15px;
}

.card-b{
  right:-8px;
  top:265px;
}

.card-c{
  left:25px;
  bottom:85px;
}

/* TICKER */
.ticker{
  overflow:hidden;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  padding:18px 0;
}

.ticker-track{
  display:flex;
  width:max-content;
  gap:32px;
  align-items:center;
  animation:ticker 36s linear infinite;
  color:#a5abb2;
  font-size:12px;
  letter-spacing:.17em;
  white-space:nowrap;
  will-change:transform;
}

.ticker-track span,
.ticker-track i{
  flex-shrink:0;
}

.ticker-track i{
  color:var(--cyan);
  font-style:normal;
}

@keyframes ticker{
  from{
    transform:translateX(0);
  }

  to{
    transform:translateX(-50%);
  }
}

.section-heading{
  max-width:700px;
  margin-bottom:55px;
}

.section-heading h2{
  font-size:clamp(44px,5vw,72px);
  line-height:.98;
  letter-spacing:-.045em;
  margin:14px 0 20px;
}

.section-heading p{
  color:var(--muted);
  line-height:1.7;
}

.section-heading.horizontal{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  max-width:none;
  gap:60px;
}

.section-heading.horizontal p{
  max-width:430px;
  margin-bottom:8px;
}

.service-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  border-top:1px solid var(--line);
  border-left:1px solid var(--line);
}

.service-card{
  min-height:310px;
  padding:28px;
  border-right:1px solid var(--line);
  border-bottom:1px solid var(--line);
  position:relative;
  transition:.3s;
  background:linear-gradient(180deg,rgba(255,255,255,.015),transparent);
}

.service-card:hover{
  background:linear-gradient(180deg,rgba(45,243,224,.07),rgba(255,255,255,.015));
  transform:translateY(-4px);
}

.service-no{
  font-size:12px;
  color:#68717a;
}

.service-card h3{
  font-size:24px;
  margin:70px 0 14px;
  letter-spacing:-.02em;
}

.service-card p{
  font-size:14px;
  line-height:1.6;
  color:#9299a1;
}

.service-card .arrow{
  position:absolute;
  right:24px;
  bottom:20px;
  color:var(--cyan);
  font-size:22px;
}

.work{
  padding-top:80px;
}

.work-grid{
  display:grid;
  grid-template-columns:1.25fr .75fr;
  grid-template-rows:310px 310px;
  gap:18px;
}

.project{
  position:relative;
  overflow:hidden;
  border-radius:24px;
  border:1px solid var(--line);
  min-height:300px;
}

.project-main{
  grid-row:1/3;
}

.project-bg{
  position:absolute;
  inset:0;
  transition:.55s;
}

.project:hover .project-bg{
  transform:scale(1.035);
}

.gradient-one{
  background:
    radial-gradient(circle at 25% 25%,rgba(216,255,62,.88),transparent 22%),
    radial-gradient(circle at 75% 65%,rgba(45,243,224,.55),transparent 32%),
    linear-gradient(145deg,#112117,#071713 50%,#050608);
}

.gradient-two{
  background:
    radial-gradient(circle at 75% 20%,rgba(232,43,215,.72),transparent 28%),
    linear-gradient(145deg,#1d0b1e,#0a0714 60%,#050608);
}

.gradient-three{
  background:
    radial-gradient(circle at 30% 30%,rgba(31,87,255,.72),transparent 26%),
    radial-gradient(circle at 70% 80%,rgba(127,53,232,.65),transparent 28%),
    linear-gradient(145deg,#09101f,#06070c);
}

.project-bg:after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,transparent 25%,rgba(0,0,0,.70) 100%);
}

.project-badge{
  position:absolute;
  top:20px;
  left:20px;
  padding:9px 11px;
  border:1px solid rgba(255,255,255,.20);
  border-radius:999px;
  font-size:9px;
  letter-spacing:.14em;
  background:rgba(0,0,0,.2);
  backdrop-filter:blur(7px);
}

.project-copy{
  position:absolute;
  left:24px;
  right:24px;
  bottom:22px;
  z-index:2;
}

.project-copy small{
  font-size:10px;
  letter-spacing:.15em;
  color:#d4d7da;
}

.project-copy h3{
  font-size:28px;
  line-height:1.08;
  max-width:470px;
  margin:8px 0 12px;
}

.project-main .project-copy h3{
  font-size:43px;
}

.project-copy span{
  font-size:12px;
  color:#c3c8cc;
}

.demo-note{
  font-size:12px;
  color:#656d75;
  margin-top:16px;
}

.showreel{
  padding-top:20px;
}

.reel-frame{
  height:520px;
  border-radius:30px;
  border:1px solid var(--line);
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 55% 50%,rgba(45,243,224,.20),transparent 27%),
    radial-gradient(circle at 42% 48%,rgba(127,53,232,.23),transparent 38%),
    linear-gradient(135deg,#0c1116,#060708 60%);
}

.reel-frame:before{
  content:"";
  position:absolute;
  inset:0;
  background:
    repeating-linear-gradient(90deg,transparent 0 79px,rgba(255,255,255,.018) 80px),
    repeating-linear-gradient(0deg,transparent 0 79px,rgba(255,255,255,.018) 80px);
}

.reel-glow{
  position:absolute;
  width:360px;
  height:360px;
  border-radius:50%;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  background:conic-gradient(from 20deg,var(--cyan),var(--blue),var(--magenta),var(--lime),var(--cyan));
  filter:blur(42px);
  opacity:.27;
}

.reel-top,
.reel-bottom{
  position:absolute;
  left:28px;
  right:28px;
  display:flex;
  justify-content:space-between;
  font-size:10px;
  letter-spacing:.16em;
  color:#889099;
}

.reel-top{
  top:24px;
}

.reel-bottom{
  bottom:24px;
}

.play{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  width:104px;
  height:104px;
  border-radius:50%;
  background:#fff;
  border:none;
  cursor:pointer;
  box-shadow:0 20px 60px rgba(0,0,0,.35);
  transition:.25s;
}

.play:hover{
  transform:translate(-50%,-50%) scale(1.06);
}

.play span{
  color:#0a0b0d;
  font-size:24px;
  margin-left:5px;
}

.logo-wall{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  border-top:1px solid var(--line);
  border-left:1px solid var(--line);
}

.client-logo{
  height:150px;
  border-right:1px solid var(--line);
  border-bottom:1px solid var(--line);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  letter-spacing:.05em;
  color:#d7dade;
  filter:grayscale(1);
  transition:.25s;
}

.client-logo:hover{
  background:rgba(255,255,255,.025);
  color:#fff;
}

.client-logo.muted{
  color:#505860;
}

.process-list{
  border-top:1px solid var(--line);
}

.process-row{
  display:grid;
  grid-template-columns:80px 1fr 1fr;
  gap:30px;
  align-items:center;
  border-bottom:1px solid var(--line);
  padding:28px 0;
}

.process-row span{
  font-size:12px;
  color:var(--cyan);
}

.process-row h3{
  font-size:28px;
  margin:0;
}

.process-row p{
  margin:0;
  color:#8f969d;
}

.contact-box{
  min-height:380px;
  padding:46px 58px;
  border-radius:34px;
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:60px;
  align-items:center;
  background:linear-gradient(135deg,rgba(45,243,224,.95),rgba(31,87,255,.92) 48%,rgba(232,43,215,.90));
  color:#fff;
  position:relative;
  overflow:hidden;
}

.contact-box:before{
  content:"";
  position:absolute;
  width:500px;
  height:500px;
  border:1px solid rgba(255,255,255,.17);
  border-radius:50%;
  right:-180px;
  top:-240px;
}

.contact .kicker{
  color:rgba(255,255,255,.75);
}

.contact h2{
  font-size:clamp(48px,5vw,72px);
  line-height:.98;
  letter-spacing:-.05em;
  margin:14px 0 0;
}

.contact h2 span{
  background:linear-gradient(90deg,#fff,#dbffb8);
  -webkit-background-clip:text;
  background-clip:text;
}

.contact-side{
  position:relative;
  z-index:2;
}

.contact-side p{
  line-height:1.6;
  max-width:430px;
}

.btn-light{
  margin-top:10px;
}

.contact-links{
  display:flex;
  gap:22px;
  font-size:12px;
  margin-top:24px;
}

.contact-links a{
  opacity:.85;
}

footer{
  max-width:var(--max);
  margin:auto;
  padding:10px 40px 40px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  color:#6e757d;
  font-size:11px;
}

footer img{
  width:120px;
  opacity:.72;
}

.modal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.78);
  backdrop-filter:blur(10px);
  z-index:100;
  display:none;
  align-items:center;
  justify-content:center;
  padding:30px;
}

.modal.open{
  display:flex;
}

.modal-card{
  width:min(900px,100%);
  min-height:500px;
  background:#0b0d10;
  border:1px solid var(--line);
  border-radius:24px;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
}

.modal-close{
  position:absolute;
  right:15px;
  top:12px;
  width:38px;
  height:38px;
  border-radius:50%;
  background:#171a1e;
  color:#fff;
  border:1px solid var(--line);
  font-size:24px;
  cursor:pointer;
}

.modal-placeholder{
  text-align:center;
  color:#aab0b6;
  padding:40px;
}

.modal-placeholder img{
  width:180px;
  max-height:180px;
  object-fit:contain;
}

.modal-placeholder h3{
  font-size:32px;
  color:#fff;
  margin:18px 0 10px;
}

.reveal{
  opacity:0;
  transform:translateY(22px);
  transition:opacity .75s ease,transform .75s ease;
}

.reveal.visible{
  opacity:1;
  transform:none;
}

.delay-1{
  transition-delay:.08s;
}

.delay-2{
  transition-delay:.16s;
}

.delay-3{
  transition-delay:.24s;
}


/* --- V2 neon services section --- */

.services{
  padding-top:105px;
  padding-bottom:105px;
  position:relative;
}

.services:before{
  content:"";
  position:absolute;
  inset:10% -6% auto auto;
  width:260px;
  height:260px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(232,43,215,.18),transparent 62%);
  filter:blur(12px);
  pointer-events:none;
}

.services:after{
  content:"";
  position:absolute;
  left:-80px;
  top:110px;
  width:300px;
  height:220px;
  background:radial-gradient(circle at 35% 50%,rgba(45,243,224,.15),transparent 58%);
  filter:blur(18px);
  pointer-events:none;
}

.services-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:40px;
  margin-bottom:28px;
  position:relative;
  z-index:1;
}

.services-head .kicker{
  display:block;
  margin-bottom:12px;
}

.services-head h2{
  font-size:clamp(40px,4.7vw,62px);
  line-height:1.02;
  letter-spacing:-.04em;
  margin:0;
}

.services-side-tag{
  display:flex;
  align-items:flex-start;
  gap:14px;
  padding-top:6px;
  flex-shrink:0;
}

.services-side-tag span{
  display:block;
  width:2px;
  height:58px;
  border-radius:99px;
  background:linear-gradient(180deg,var(--magenta),var(--cyan));
}

.services-side-tag p{
  margin:0;
  font-size:11px;
  line-height:1.95;
  letter-spacing:.28em;
  color:#c8d0d8;
  text-align:left;
}

.neon-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;
  border:0;
  position:relative;
  z-index:1;
}

.neon-card{
  min-height:196px;
  padding:28px 26px 24px;
  border:1px solid rgba(150,223,255,.2);
  border-radius:20px;
  background:
    linear-gradient(180deg,rgba(255,255,255,.03),rgba(255,255,255,.01)),
    radial-gradient(circle at 15% 18%,rgba(45,243,224,.09),transparent 38%),
    radial-gradient(circle at 72% 0%,rgba(232,43,215,.10),transparent 34%),
    linear-gradient(180deg,rgba(5,6,8,.88),rgba(8,10,14,.95));
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.03),
    0 18px 40px rgba(0,0,0,.22);
  backdrop-filter:blur(10px);
  transition:
    transform .25s ease,
    border-color .25s ease,
    box-shadow .25s ease,
    background .25s ease;
}

.neon-card:hover{
  transform:translateY(-4px);
  border-color:rgba(45,243,224,.38);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.05),
    0 24px 50px rgba(0,0,0,.35),
    0 0 30px rgba(45,243,224,.08);
}

.neon-card h3{
  font-size:18px;
  line-height:1.15;
  letter-spacing:-.02em;
  margin:20px 0 10px;
}

.neon-card p{
  font-size:14px;
  line-height:1.45;
  color:#b2b9c1;
  max-width:240px;
  margin:0;
  padding-right:22px;
}

.service-icon{
  width:34px;
  height:34px;
  position:relative;
  color:var(--cyan);
  filter:drop-shadow(0 0 12px rgba(45,243,224,.18));
}

.pen-icon:before,
.pen-icon:after,
.video-icon:before,
.video-icon:after,
.web-icon:before,
.web-icon:after,
.chart-icon:before,
.chart-icon:after{
  content:"";
  position:absolute;
}

.pen-icon:before{
  width:21px;
  height:6px;
  border:3px solid var(--cyan);
  border-radius:4px;
  transform:rotate(-45deg);
  left:5px;
  top:12px;
  border-right-width:2px;
}

.pen-icon:after{
  width:0;
  height:0;
  border-left:5px solid var(--cyan);
  border-top:4px solid transparent;
  border-bottom:4px solid transparent;
  transform:rotate(-45deg);
  right:3px;
  top:6px;
}

.video-icon:before{
  left:0;
  top:6px;
  width:18px;
  height:14px;
  border:3px solid var(--magenta);
  border-radius:4px;
}

.video-icon:after{
  right:2px;
  top:9px;
  width:0;
  height:0;
  border-left:10px solid var(--magenta);
  border-top:6px solid transparent;
  border-bottom:6px solid transparent;
}

.web-icon:before{
  left:4px;
  top:4px;
  width:24px;
  height:16px;
  border:3px solid #21d8ff;
  border-radius:3px;
}

.web-icon:after{
  left:11px;
  top:24px;
  width:10px;
  height:3px;
  background:#21d8ff;
  box-shadow:0 5px 0 0 #21d8ff;
}

.chart-icon:before{
  left:3px;
  bottom:3px;
  width:6px;
  height:12px;
  background:linear-gradient(180deg,#6dfff1,var(--cyan));
  box-shadow:
    10px -6px 0 0 rgba(80,255,230,.92),
    20px -12px 0 0 rgba(80,255,230,.86);
  border-radius:2px;
}

.chart-icon:after{
  display:none;
}

.service-arrow{
  position:absolute;
  right:18px;
  bottom:18px;
  width:38px;
  height:38px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.16);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  color:#ebf0f4;
  background:rgba(255,255,255,.02);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.025);
}

.neon-card:hover .service-arrow{
  border-color:rgba(45,243,224,.45);
  color:#fff;
}


/* --- Client logo wall updated with images --- */

.logo-wall{
  display:grid;
  grid-template-columns:repeat(7,1fr);
  gap:0;
  border-top:1px solid var(--line);
  border-left:1px solid var(--line);
  background:linear-gradient(180deg,rgba(255,255,255,.014),rgba(255,255,255,.004));
}

.client-logo{
  height:128px;
  padding:20px;
  border-right:1px solid var(--line);
  border-bottom:1px solid var(--line);
  display:flex;
  align-items:center;
  justify-content:center;
  transition:.25s;
  background:transparent;
  filter:none;
}

.client-logo img{
  max-width:100%;
  max-height:74px;
  object-fit:contain;
  opacity:.86;
  filter:grayscale(1) brightness(1.25);
  transition:
    transform .25s ease,
    opacity .25s ease,
    filter .25s ease;
}

.client-logo:hover{
  background:rgba(255,255,255,.02);
}

.client-logo:hover img{
  opacity:1;
  transform:translateY(-2px);
  filter:grayscale(0) brightness(1.02);
}


@media(max-width:1180px){

  .neon-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .logo-wall{
    grid-template-columns:repeat(4,1fr);
  }

}


@media(max-width:980px){

  .nav{
    display:none;
  }

  .hero{
    grid-template-columns:1fr;
    padding-top:45px;
  }

  .hero-art{
    height:520px;
  }

  .service-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .section-heading.horizontal{
    display:block;
  }

  .section-heading.horizontal p{
    margin-top:25px;
  }

  .work-grid{
    grid-template-columns:1fr;
    grid-template-rows:auto;
  }

  .project,
  .project-main{
    grid-row:auto;
    min-height:380px;
  }

  .logo-wall{
    grid-template-columns:repeat(2,1fr);
  }

  .contact-box{
    grid-template-columns:1fr;
  }

  .hero-meta{
    flex-wrap:wrap;
  }

  .services-head{
    display:block;
  }

  .services-side-tag{
    margin-top:18px;
  }

}


@media(max-width:640px){

  .section-pad{
    padding:82px 20px;
  }

  .site-header{
    padding:0 20px;
    height:74px;
  }

  .brand img{
    width:120px;
  }

  .hero{
    padding-top:45px;
  }

  .hero h1{
    font-size:54px;
  }

  .hero-lead{
    font-size:16px;
  }

  .hero-actions{
    align-items:flex-start;
    flex-direction:column;
    gap:18px;
  }

  .hero-meta{
    gap:20px;
  }

  .hero-art{
    height:390px;
  }

  .hero-panel{
    inset:35px 0 20px 25px;
    border-radius:22px;
  }

  .hero-panel img{
    width:82%;
  }

  .float-card{
    font-size:8px;
  }

  .service-grid{
    grid-template-columns:1fr;
  }

  .work-grid{
    display:block;
  }

  .project{
    display:block;
    min-height:360px;
    margin-bottom:16px;
  }

  .project-main .project-copy h3,
  .project-copy h3{
    font-size:31px;
  }

  .reel-frame{
    height:380px;
  }

  .logo-wall{
    grid-template-columns:1fr 1fr;
  }

  .client-logo{
    height:110px;
    font-size:12px;
  }

  .process-row{
    grid-template-columns:42px 1fr;
  }

  .process-row p{
    grid-column:2;
  }

  .contact-box{
    padding:34px 25px;
    min-height:540px;
  }

  .contact h2{
    font-size:48px;
  }

  footer{
    padding:10px 20px 30px;
    gap:18px;
    flex-wrap:wrap;
  }

  footer p{
    order:3;
    width:100%;
  }

  .services{
    padding-top:82px;
    padding-bottom:82px;
  }

  .services-head h2{
    font-size:42px;
  }

  .neon-grid{
    grid-template-columns:1fr;
    gap:14px;
  }

  .neon-card{
    min-height:172px;
    padding:24px 22px 22px;
  }

  .client-logo{
    height:110px;
    padding:16px;
  }

  .client-logo img{
    max-height:58px;
  }

}

/* =========================================================
   MOBILE OPTIMIZATION
   ========================================================= */

@media (max-width:640px){

  body{
    overflow-x:hidden;
  }

  .section-pad{
    padding:64px 20px;
  }


  /* HEADER */

  .site-header{
    height:78px;
    padding:0 20px;
  }

  .brand img{
    width:126px;
  }

  .btn-small{
    padding:11px 18px;
    font-size:13px;
  }


  /* HERO */

  .hero{
    display:block;
    min-height:auto;
    padding-top:48px;
    padding-bottom:40px;
  }

  .eyebrow{
    font-size:10px;
    letter-spacing:.16em;
  }

  .hero h1{
    font-size:47px;
    line-height:.98;
    letter-spacing:-.045em;
    margin:22px 0 28px;
  }

  .hero-lead{
    font-size:16px;
    line-height:1.65;
  }

  .hero-actions{
    flex-direction:column;
    align-items:flex-start;
    gap:22px;
    margin-top:34px;
  }

  .hero-actions .btn{
    padding:16px 25px;
  }

  .hero-meta{
    margin-top:52px;
    padding-top:24px;
    gap:16px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
  }

  .hero-meta b{
    font-size:17px;
  }

  .hero-meta span{
    font-size:10px;
    line-height:1.3;
  }


  /* HERO ART */

  .hero-art{
    height:355px;
    margin-top:48px;
  }

  .hero-panel{
    inset:20px 0 15px 40px;
    border-radius:24px;
  }

  .hero-panel img{
    width:76%;
  }

  .panel-label{
    left:20px;
    bottom:18px;
    font-size:8px;
  }

  .float-card{
    font-size:8px;
    padding:10px 12px;
  }

  .card-a{
    top:65px;
    left:18px;
  }

  .card-b{
    right:-4px;
    top:215px;
  }

  .card-c{
    left:20px;
    bottom:55px;
  }


  /* TICKER */

  .ticker{
    padding:15px 0;
  }

  .ticker-track{
    gap:25px;
    font-size:10px;
    letter-spacing:.16em;
    animation-duration:32s;
  }


  /* SERVICES */

  .services{
    padding-top:70px;
    padding-bottom:70px;
  }

  .services-head{
    margin-bottom:32px;
  }

  .services-head .kicker{
    font-size:10px;
  }

  .services-head h2{
    font-size:42px;
    line-height:1.04;
  }

  .services-side-tag{
    margin-top:28px;
  }

  .services-side-tag p{
    font-size:10px;
    line-height:1.8;
  }

  .services-side-tag span{
    height:70px;
  }

  .neon-grid{
    grid-template-columns:1fr;
    gap:14px;
  }

  .neon-card{
    min-height:210px;
    padding:26px 24px;
    border-radius:22px;
  }

  .neon-card h3{
    font-size:22px;
    margin-top:22px;
    margin-bottom:10px;
  }

  .neon-card p{
    font-size:15px;
    line-height:1.5;
    max-width:82%;
  }

  .service-arrow{
    width:38px;
    height:38px;
    right:22px;
    bottom:22px;
  }


  /* GENERIC TITLES */

  .section-heading{
    margin-bottom:42px;
  }

  .section-heading h2{
    font-size:43px;
    line-height:1.02;
  }

  .section-heading.horizontal{
    display:block;
  }

  .section-heading.horizontal p{
    margin-top:22px;
    font-size:16px;
    line-height:1.65;
  }


  /* PROJECTS */

  .work{
    padding-top:60px;
  }

  .work-grid{
    display:block;
  }

  .project,
  .project-main{
    display:block;
    min-height:420px;
    margin-bottom:18px;
    border-radius:26px;
  }

  .project-copy{
    left:24px;
    right:24px;
    bottom:28px;
  }

  .project-copy h3,
  .project-main .project-copy h3{
    font-size:34px;
    line-height:1.08;
  }

  .project-badge{
    top:20px;
    left:20px;
  }

  .demo-note{
    margin-top:20px;
    line-height:1.5;
  }


  /* SHOWREEL */

  .showreel{
    padding-top:40px;
    padding-bottom:60px;
  }

  .reel-frame{
    height:360px;
    border-radius:26px;
  }

  .play{
    width:88px;
    height:88px;
  }

  .play span{
    font-size:21px;
  }

  .reel-top,
  .reel-bottom{
    left:22px;
    right:22px;
  }


  /* CLIENTS */

  .clients{
    padding-top:68px;
    padding-bottom:68px;
  }

  .logo-wall{
    grid-template-columns:repeat(2,1fr);
  }

  .client-logo{
    height:102px;
    padding:15px;
  }

  .client-logo img{
    max-height:54px;
    max-width:88%;
  }


  /* PROCESS */

  .process{
    padding-top:68px;
    padding-bottom:68px;
  }

  .process-row{
    grid-template-columns:48px 1fr;
    gap:14px;
    padding:28px 0;
  }

  .process-row span{
    align-self:start;
    margin-top:5px;
  }

  .process-row h3{
    font-size:27px;
  }

  .process-row p{
    grid-column:2;
    font-size:15px;
    line-height:1.5;
    margin-top:4px;
  }


  /* CONTACT */

  .contact{
    padding-top:68px;
    padding-bottom:48px;
  }

  .contact-box{
    min-height:auto;
    display:block;
    padding:38px 28px;
    border-radius:28px;
  }

  .contact h2{
    font-size:42px;
    line-height:1.02;
  }

  .contact-side{
    margin-top:60px;
  }

  .contact-side p{
    font-size:16px;
    line-height:1.65;
  }

  .contact-side .btn{
    margin-top:18px;
    padding:15px 28px;
  }

  .contact-links{
    display:flex;
    justify-content:space-between;
    gap:12px;
    margin-top:30px;
    font-size:11px;
  }


  /* FOOTER */

  footer{
    padding:30px 20px 36px;
    display:grid;
    grid-template-columns:1fr auto;
    gap:26px 20px;
    align-items:center;
  }

  footer img{
    width:130px;
  }

  footer p{
    grid-column:1 / -1;
    order:3;
    width:100%;
    margin:0;
    font-size:10px;
  }

  footer > a{
    font-size:10px;
  }

}


/* TELÉFONOS MÁS PEQUEÑOS */
@media (max-width:430px){

  .hero h1{
    font-size:43px;
  }

  .section-heading h2,
  .services-head h2{
    font-size:39px;
  }

  .contact h2{
    font-size:39px;
  }

  .project-copy h3,
  .project-main .project-copy h3{
    font-size:31px;
  }

  .neon-card{
    min-height:195px;
  }

  .client-logo{
    height:94px;
  }

}

/* =========================================================
   MOBILE V2 — COMPOSICIÓN CENTRADA
   ========================================================= */

@media (max-width:640px){

  /* CONTENEDOR GENERAL */
  .section-pad{
    padding-left:24px;
    padding-right:24px;

  .contact-links{
  justify-content:center;
  gap:16px;
  margin-top:26px;
}

.social-icon{
  width:48px;
  height:48px;
}

.social-icon svg{
  width:21px;
  height:21px;
}
  }


  /* HEADER */
  .site-header{
    padding-left:24px;
    padding-right:24px;
  }


  /* HERO */
  .hero{
    text-align:center;
  }

  .hero-copy{
    max-width:520px;
    margin-left:auto;
    margin-right:auto;
  }

  .eyebrow{
    justify-content:center;
  }

  .hero h1{
    max-width:500px;
    margin-left:auto;
    margin-right:auto;
  }

  .hero-lead{
    max-width:500px;
    margin-left:auto;
    margin-right:auto;
  }

  .hero-actions{
    align-items:center;
    justify-content:center;
  }

  .text-link{
    text-align:center;
  }

  .hero-meta{
    max-width:500px;
    margin-left:auto;
    margin-right:auto;
    text-align:center;
  }

  .hero-meta div{
    align-items:center;
  }


  /* IMAGEN / LOGO HERO */
  .hero-art{
    max-width:520px;
    margin-left:auto;
    margin-right:auto;
  }

  .hero-panel{
    left:20px;
    right:20px;
  }


  /* TICKER */
  .ticker{
    width:100%;
  }


  /* SERVICIOS */
  .services-head{
    text-align:center;
  }

  .services-head > div:first-child{
    max-width:500px;
    margin-left:auto;
    margin-right:auto;
  }

  .services-side-tag{
    justify-content:center;
    align-items:center;
    margin-left:auto;
    margin-right:auto;
  }

  .services-side-tag p{
    text-align:left;
  }

  .neon-grid{
    max-width:520px;
    margin-left:auto;
    margin-right:auto;
  }

  .neon-card{
    text-align:center;
    display:flex;
    flex-direction:column;
    align-items:center;
  }

  .service-icon{
    margin-left:auto;
    margin-right:auto;
  }

  .neon-card p{
    max-width:300px;
    padding-right:0;
  }

  .service-arrow{
    position:relative;
    right:auto;
    bottom:auto;
    margin-top:22px;
  }


  /* ENCABEZADOS GENERALES */
  .section-heading,
  .section-heading.horizontal{
    text-align:center;
    max-width:520px;
    margin-left:auto;
    margin-right:auto;
  }

  .section-heading.horizontal > div{
    width:100%;
  }

  .section-heading.horizontal p{
    max-width:460px;
    margin-left:auto;
    margin-right:auto;
  }


  /* PROYECTOS */
  .work-grid{
    max-width:520px;
    margin-left:auto;
    margin-right:auto;
  }

  .project-copy{
    text-align:center;
    left:24px;
    right:24px;
  }

  .project-copy h3{
    margin-left:auto;
    margin-right:auto;
  }

  .project-badge{
    left:50%;
    transform:translateX(-50%);
    white-space:nowrap;
  }

  .demo-note{
    text-align:center;
    max-width:460px;
    margin-left:auto;
    margin-right:auto;
  }


  /* SHOWREEL */
  .showreel{
    text-align:center;
  }

  .reel-frame{
    max-width:520px;
    margin-left:auto;
    margin-right:auto;
  }


  /* CLIENTES */
  .clients{
    text-align:center;
  }

  .logo-wall{
    max-width:520px;
    margin-left:auto;
    margin-right:auto;
  }


  /* PROCESO */
  .process{
    text-align:center;
  }

  .process-list{
    max-width:520px;
    margin-left:auto;
    margin-right:auto;
  }

  .process-row{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    gap:8px;
    padding:30px 16px;
  }

  .process-row span{
    margin:0;
  }

  .process-row h3{
    margin:4px 0 6px;
  }

  .process-row p{
    margin:0;
    max-width:360px;
  }


  /* CONTACTO */
  .contact{
    text-align:center;
  }

  .contact-box{
    max-width:520px;
    margin-left:auto;
    margin-right:auto;
    text-align:center;
  }

  .contact-side{
    margin-top:42px;
  }

  .contact-side p{
    max-width:420px;
    margin-left:auto;
    margin-right:auto;
  }

  .contact-links{
  display:flex;
  align-items:center;
  gap:14px;
  margin-top:24px;
}

.social-icon{
  width:46px;
  height:46px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(255,255,255,.22);
  background:rgba(255,255,255,.06);
  transition:transform .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease;
}

.social-icon:hover{
  transform:translateY(-2px);
  border-color:rgba(255,255,255,.5);
  background:rgba(255,255,255,.12);
  box-shadow:0 10px 30px rgba(0,0,0,.15);
}

.social-icon svg{
  width:20px;
  height:20px;
  stroke:#fff;
  fill:none;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
  opacity:.95;
}

.social-icon .fill-dot{
  fill:#fff;
  stroke:none;
}

.social-icon .inner-stroke{
  stroke:#fff;
  fill:none;
}


  /* FOOTER */
  footer{
    text-align:center;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:18px;
  }

  footer img{
    margin:auto;
  }

  footer p{
    text-align:center;
    order:initial;
  }

  footer > a{
    text-align:center;
  }

}

/* SOCIAL ICONS — DESKTOP + GENERAL */

.contact-links{
  display:flex;
  align-items:center;
  gap:14px;
  margin-top:24px;
}

.social-icon{
  width:46px;
  height:46px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(255,255,255,.28);
  background:rgba(255,255,255,.07);
  transition:
    transform .25s ease,
    border-color .25s ease,
    background .25s ease,
    box-shadow .25s ease;
}

.social-icon:hover{
  transform:translateY(-3px);
  border-color:rgba(255,255,255,.55);
  background:rgba(255,255,255,.14);
  box-shadow:0 12px 30px rgba(0,0,0,.18);
}

.social-icon svg{
  width:20px;
  height:20px;
  stroke:#fff;
  fill:none;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
  opacity:.96;
}

.social-icon .fill-dot{
  fill:#fff;
  stroke:none;
}

.social-icon .inner-stroke{
  stroke:#fff;
  fill:none;
}
