:root{
  --black:#050505;
  --black-soft:#0b0b0e;
  --panel:#101014;
  --red:#ec1c24;
  --blue:#2f7cf6;
  --blue-deep:#0c4fc9;
  --white:#f7f6f2;
  --muted:#a8a8af;
  --line:rgba(255,255,255,.11);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--black);
  color:var(--white);
  font-family:Inter,Segoe UI,Arial,sans-serif;
  overflow-x:hidden;
}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}

.site-header{
  position:sticky;
  top:0;
  z-index:100;
  height:76px;
  padding:0 clamp(22px,4.8vw,72px);
  display:flex;
  align-items:center;
  justify-content:space-between;
  background:rgba(5,5,5,.9);
  backdrop-filter:blur(18px);
  border-bottom:1px solid var(--line);
}

.header-brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.header-brand img{
  width:56px;
  height:38px;
  object-fit:contain;
}
.header-brand-text{
  display:flex;
  flex-direction:column;
  line-height:1.05;
}
.header-brand-text strong{
  color:var(--red);
  font-size:1rem;
  letter-spacing:.02em;
}
.header-brand-text span{
  margin-top:5px;
  font-size:.68rem;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:#eee;
}

.desktop-nav{
  display:flex;
  align-items:center;
  gap:30px;
  font-size:.9rem;
}
.desktop-nav a{color:#dedede}
.desktop-nav a:hover{color:#fff}
.nav-cta{
  padding:10px 16px;
  border:1px solid rgba(236,28,36,.68);
  border-radius:999px;
}

.hero{
  min-height:730px;
  padding:86px clamp(24px,5vw,76px) 132px;
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(360px,.92fr);
  gap:46px;
  align-items:center;
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 83% 20%,rgba(47,124,246,.16),transparent 32%),
    radial-gradient(circle at 5% 85%,rgba(236,28,36,.12),transparent 28%),
    #050505;
}
.hero-copy{max-width:760px;position:relative;z-index:2}
.eyebrow{
  margin:0;
  color:var(--red);
  font-size:.74rem;
  font-weight:800;
  letter-spacing:.2em;
  text-transform:uppercase;
}

.hero h1{
  max-width:760px;
  margin:24px 0 24px;
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(48px,4.6vw,78px);
  line-height:1.01;
  letter-spacing:-.026em;
  font-weight:600;
}
.hero h1 span{
  display:block;
  margin-top:5px;
  color:var(--blue);
  font-size:.9em;
}
.hero-intro{
  max-width:630px;
  color:#c4c4c8;
  font-size:1.08rem;
  line-height:1.75;
}
.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:32px;
}
.button{
  padding:14px 22px;
  border-radius:999px;
  font-size:.9rem;
  font-weight:800;
  border:1px solid var(--line);
}
.button.primary{
  background:var(--red);
  border-color:var(--red);
}
.button.secondary:hover{border-color:var(--blue)}
.hero-trust{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  margin-top:24px;
  color:#8e8e95;
  font-size:.84rem;
}
.hero-trust span::before{
  content:"•";
  color:var(--blue);
  margin-right:8px;
}

.hero-logo-wrap{
  min-height:430px;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  z-index:2;
}
.hero-logo-frame{
  width:min(470px,92%);
  padding:34px 22px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:28px;
  background:rgba(255,255,255,.018);
  border:1px solid rgba(255,255,255,.06);
}
.hero-logo-frame img{
  width:420px;
  max-width:100%;
  height:auto;
  object-fit:contain;
  filter:drop-shadow(0 0 28px rgba(47,124,246,.13));
}

.hero-wave{
  position:absolute;
  left:-8%;
  width:116%;
  border-radius:50%;
  pointer-events:none;
}
.red-wave{
  height:20px;
  bottom:51px;
  background:var(--red);
  transform:rotate(-1.5deg);
}
.blue-wave{
  height:70px;
  bottom:-38px;
  background:linear-gradient(90deg,#0c4fc9,#2f7cf6);
  transform:rotate(-1.2deg);
}

.section{
  padding:98px clamp(24px,5vw,76px);
}
.section-heading{
  max-width:830px;
  margin-bottom:46px;
}
.section-heading h2,
.about-left h2,
.contact-intro h2{
  margin:12px 0 16px;
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(38px,4.7vw,68px);
  line-height:1.06;
  letter-spacing:-.025em;
}
.section-heading>p:not(.eyebrow),
.contact-intro>p:not(.eyebrow){
  color:var(--muted);
  line-height:1.75;
}

.services-section{background:#08080a}
.service-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.service-card{
  min-height:310px;
  padding:28px 24px 30px;
  border-right:1px solid var(--line);
  background:transparent;
}
.service-card:last-child{border-right:0}
.service-number{
  color:var(--red);
  font-size:.72rem;
  font-weight:800;
  letter-spacing:.18em;
}
.service-card h3{
  margin:70px 0 14px;
  font-size:1.08rem;
}
.service-card p{
  color:#999aa0;
  font-size:.9rem;
  line-height:1.7;
}

.work-section{background:#050505}
.work-collage{
  min-height:620px;
  display:grid;
  grid-template-columns:1.05fr .75fr .95fr;
  grid-template-rows:280px 260px;
  gap:16px;
  position:relative;
}
.work-photo{
  margin:0;
  overflow:hidden;
  border-radius:26px;
  border:1px solid var(--line);
}
.work-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.photo-a{grid-column:1;grid-row:1/3}
.photo-b{grid-column:2;grid-row:1}
.photo-c{grid-column:3;grid-row:1}
.photo-d{grid-column:2;grid-row:2}
.work-copy-card{
  grid-column:3;
  grid-row:2;
  padding:30px;
  border-radius:26px;
  border:1px solid var(--line);
  background:
    radial-gradient(circle at 100% 0,rgba(236,28,36,.13),transparent 42%),
    radial-gradient(circle at 0 100%,rgba(47,124,246,.13),transparent 42%),
    #0d0d10;
}
.work-copy-card h3{
  font-family:Georgia,"Times New Roman",serif;
  font-size:2rem;
  margin:12px 0;
}
.work-copy-card p:last-child{
  color:#aaa;
  line-height:1.75;
}
.video-shell{
  margin-top:36px;
  display:grid;
  grid-template-columns:.7fr 1.3fr;
  gap:26px;
  padding:26px;
  border:1px solid var(--line);
  border-radius:26px;
  background:#0b0b0e;
}
.video-copy{
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.video-copy h3{
  margin:12px 0;
  font-family:Georgia,"Times New Roman",serif;
  font-size:2rem;
}
.video-copy p:last-child{color:#aaa;line-height:1.65}
.video-copy code{color:var(--blue)}
.video-shell video{
  width:100%;
  min-height:310px;
  border-radius:18px;
  background:#000;
}

.about-section{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  background:linear-gradient(135deg,#0a0a0d,#050505);
}
.about-right{
  color:#b0b0b5;
  line-height:1.85;
  font-size:1.05rem;
}
.about-points{
  margin-top:28px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}
.about-points span{
  padding:14px 16px;
  border:1px solid var(--line);
  border-radius:999px;
  font-size:.86rem;
  color:#ddd;
}

.contact-section{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:70px;
  align-items:start;
  background:#08080a;
}
.contact-panel{
  display:grid;
  gap:12px;
}
.contact-panel a,
.contact-panel>div{
  padding:20px 22px;
  border:1px solid var(--line);
  border-radius:18px;
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:center;
}
.contact-panel span{
  color:#96969d;
  font-size:.8rem;
}
.contact-panel strong{
  font-size:.96rem;
  text-align:right;
}
.contact-panel a:hover{border-color:rgba(236,28,36,.68)}

footer{
  padding:30px clamp(24px,5vw,76px);
  display:flex;
  justify-content:space-between;
  gap:24px;
  align-items:center;
  border-top:1px solid var(--line);
  color:#888;
  font-size:.84rem;
}
footer>div{display:flex;gap:10px}
footer strong{color:var(--red)}

.cursor-glow{
  position:fixed;
  left:0;
  top:0;
  width:18px;
  height:18px;
  border-radius:50%;
  pointer-events:none;
  z-index:9999;
  transform:translate(-50%,-50%);
  background:radial-gradient(circle,#fff 0 12%,var(--blue) 28%,rgba(47,124,246,.15) 60%,transparent 72%);
  box-shadow:0 0 16px rgba(47,124,246,.8);
}
.cursor-star{
  position:fixed;
  pointer-events:none;
  z-index:9998;
  width:7px;
  height:7px;
  background:var(--blue);
  transform:translate(-50%,-50%) rotate(45deg);
  box-shadow:0 0 10px currentColor;
  animation:cursorStar .72s ease-out forwards;
}
.cursor-star.red{background:var(--red)}
@keyframes cursorStar{
  0%{opacity:1;scale:1}
  100%{opacity:0;translate:var(--dx) var(--dy);scale:.1}
}

.clean-burst{
  position:fixed;
  pointer-events:none;
  z-index:9997;
  width:140px;
  height:140px;
  border-radius:50%;
  transform:translate(-50%,-50%);
  background:radial-gradient(circle,rgba(255,255,255,.2),rgba(47,124,246,.08) 44%,transparent 70%);
  animation:cleanBurst .65s ease-out forwards;
}
.clean-burst::before{
  content:"";
  position:absolute;
  left:18%;
  top:52%;
  width:64%;
  height:9px;
  border-radius:9px;
  background:linear-gradient(90deg,var(--blue-deep),#7db2ff);
  box-shadow:0 0 14px rgba(47,124,246,.55);
  animation:squeegee .65s ease-out forwards;
}
.clean-burst::after{
  content:"";
  position:absolute;
  left:49%;
  top:20%;
  width:7px;
  height:45px;
  border-radius:7px;
  background:#dce8ff;
  transform-origin:bottom;
  animation:squeegeeHandle .65s ease-out forwards;
}
@keyframes cleanBurst{
  0%{opacity:1;scale:.55}
  100%{opacity:0;scale:1.25}
}
@keyframes squeegee{
  0%{transform:rotate(-27deg) translateX(-20px)}
  100%{transform:rotate(22deg) translateX(20px)}
}
@keyframes squeegeeHandle{
  0%{transform:rotate(-27deg)}
  100%{transform:rotate(22deg)}
}

@media(max-width:1050px){
  .service-grid{grid-template-columns:repeat(2,1fr)}
  .service-card{border-bottom:1px solid var(--line)}
  .work-collage{
    grid-template-columns:1fr 1fr;
    grid-template-rows:320px 260px 260px;
  }
  .photo-a{grid-column:1;grid-row:1/3}
  .photo-b{grid-column:2;grid-row:1}
  .photo-c{grid-column:2;grid-row:2}
  .photo-d{grid-column:1;grid-row:3}
  .work-copy-card{grid-column:2;grid-row:3}
}
@media(max-width:850px){
  .desktop-nav{display:none}
  .hero{
    grid-template-columns:1fr;
    padding-bottom:150px;
  }
  .hero-logo-wrap{min-height:340px}
  .about-section,.contact-section,.video-shell{grid-template-columns:1fr}
}
@media(max-width:620px){
  .site-header{height:68px;padding:0 18px}
  .header-brand-text span{display:none}
  .hero{padding:70px 20px 130px}
  .hero h1{font-size:50px}
  .hero-logo-frame{padding:20px}
  .section{padding:76px 20px}
  .service-grid{grid-template-columns:1fr}
  .service-card{min-height:auto;border-right:0}
  .service-card h3{margin-top:34px}
  .work-collage{
    display:grid;
    grid-template-columns:1fr;
    grid-template-rows:repeat(5,260px);
  }
  .photo-a,.photo-b,.photo-c,.photo-d,.work-copy-card{
    grid-column:1;
    grid-row:auto;
  }
  .about-points{grid-template-columns:1fr}
  .contact-panel a,.contact-panel>div{
    flex-direction:column;
    align-items:flex-start;
  }
  .contact-panel strong{text-align:left;overflow-wrap:anywhere}
  footer{flex-direction:column;align-items:flex-start}
}
@media(pointer:coarse),(prefers-reduced-motion:reduce){
  .cursor-glow,.cursor-star{display:none!important}
  *{scroll-behavior:auto!important}
}
