:root{
  --bg0:#0e1213;
  --bg1:#121718;
  --text:#e8ecec;
  --muted2:rgba(232,236,236,.52);
  --shadow: 0 24px 60px rgba(0,0,0,.55);
  --radius:28px;
  --btn:#2f5f66;
  --btnHover:#377179;
}
*{box-sizing:border-box}


/*ANIM TEXT*/
/* Hiding class, making content visible only to screen readers but not visually */
/* "sr" meaning "screen-reader" */
/* https://css-tricks.com/inclusively-hidden/ */
.sr-only:not(:focus):not(:active) {
  clip: rect(0 0 0 0); 
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap; 
  width: 1px;
}
.animate-me {
  font-size: 16px;
  box-sizing: border-box;
  width: 80%;
  text-align: left;
  perspective: 500px;
}
.sr-only-big:not(:focus):not(:active) {
  clip: rect(0 0 0 0); 
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap; 
  width: 1px;
}
.animate-me-big {
  font-size:clamp(48px,5.3vw,86px);
  box-sizing: border-box;
  width: 80%;
  text-align: left;
  perspective: 500px;
}

/* Full-screen section paging */
html{scroll-behavior:smooth;}
body{
  height:100vh;
  overflow-y:auto;
  scroll-snap-type:y mandatory;
  scroll-padding-top:0px;
}
html,body{
  height:100%;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 
               'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-weight: 400;
  color: #e6e6e6;
  background-color: #0f1414;
}
body{
  margin:0;
  color:var(--text);
  /*background:
    radial-gradient(1200px 800px at 20% -10%, rgba(255,255,255,.06), transparent 60%),
    radial-gradient(900px 700px at 85% 15%, rgba(47,95,102,.20), transparent 55%),
    linear-gradient(180deg, var(--bg1), var(--bg0));*/
}
.page{max-width:1440px;margin:0 auto;padding:0px 64px 44px;}
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
.logo svg{width:320px;height:auto;display:block}
.hero-title{
  margin:0px 0 0;
  font-weight:400;
  letter-spacing:-0.03em;
  font-size:clamp(48px,5.3vw,86px);
  line-height:.98;
  color:rgba(232,236,236,.92);
}
.hero-sub{
  margin:24px 0 0;
  font-size:16px;
  line-height:1.6;
  color:var(--muted2);
  max-width:560px;
}
.hero-left{position:relative; left: 32px;}
.hero-right {
  position: relative;
  height: 120vh;          /* taller than viewport */
  display: flex;
  align-items: stretch;
}
.stack{
  display:flex;
  flex-direction:column;
  gap:28px;
  width:100%;
  height:120%;
  align-items:stretch;
}
.stack-card{
  flex: 1;
  min-height: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255,255,255,.04);
  position: relative;
}

.media{
  position: relative;
  overflow: hidden;
  background: none;
}
.media::before{
  content:"";
  position: absolute;
  inset: 0;
  background-image: var(--bgimg);
  background-size: cover;
  background-position: center;
  transform: scale(1.0);
  animation: zoomIn 0.7s ease backwards;
  will-change: transform;
  z-index: 0;
}
.media::after{
  content:"";
  position: absolute;
  inset: 0;
  z-index: 1;
}

.media-1{--bgimg:url("assets/hero-1.jpg");}
.media-2{--bgimg:url("assets/hero-2.jpg");}
.media-3{--bgimg:url("assets/hero-3.jpg");}

@keyframes zoomIn{
  from{transform:scale(0.7);opacity:0.2;border-radius: var(--radius);}
  to{transform:scale(1.0);opacity:1;border-radius: var(--radius);}
}

.section{
  min-height:100vh;
  padding:54px 0;
  display:flex;
  flex-direction:column;
  justify-content:center;
  scroll-snap-align:start;
  scroll-snap-stop:always;
}
.section-title{
  margin:0;
  font-weight:400;
  letter-spacing:-0.03em;
  line-height:1.05;
  font-size:clamp(40px,4.2vw,78px);
  color:rgba(232,236,236,.92);
  text-align:center;
}
.section-title.left{text-align:left}
.solutions{padding-top:40px}
.grid6{
  margin-top:100px;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:36px 90px;
}
.feature{text-align:center;padding:8px 10px;}
.iconbox{
  width:75px;height:75px;margin:0 auto 18px;
  border-radius:14px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.06);
  display:grid;place-items:center;
}
.iconbox svg{
  width:50px;height:50px;
  fill:none;
  stroke:rgba(192,220,224,.9);
  stroke-width:1.6;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.feature h3{margin:0;font-weight:500;font-size:20px;color:rgba(232,236,236,.88);}
.feature p{margin:10px 0 0;font-size:14px;line-height:1.55;color:var(--muted2);}

.contact-head{
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:start;
  gap:40px;
}
.contact-note{
  margin:10px 0 0;
  color:var(--muted2);
  font-size:16px;
  line-height:1.55;
  justify-self:end;
}
.contact-grid{
  margin-top:34px;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:34px;
}
.contact-card{
  border-radius:var(--radius);
  overflow:hidden;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.05);
  box-shadow:var(--shadow);
}
.contact-media{
  height:320px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.contact-media::before{
  content:"";
  position: absolute;
  inset: 0;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  animation: zoomIn 1.2s ease forwards;
  will-change: transform;
  z-index: 0;
}
.contact-media::after{
  content:"";
  position: absolute;
  inset: 0;
  z-index: 1;
}
.contact-media-1{background-image:url("assets/contact-1.jpg");}
.contact-media-2{background-image:url("assets/contact-2.jpg");}
.contact-body{padding:22px 26px 26px;}
.contact-body h3{margin:0;font-weight:500;font-size:28px;color:rgba(232,236,236,.9);}
.contact-body p{margin:8px 0 18px;color:var(--muted2);font-size:14px;line-height:1.6;max-width:520px;}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  height:42px;padding:0 22px;border-radius:14px;
  background:var(--btn);color:rgba(255,255,255,.92);text-decoration:none;
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 10px 26px rgba(0,0,0,.35);
  transition:transform .15s ease, background .15s ease, border-color .15s ease;
  font-size:14px;
}
.btn:hover{background:var(--btnHover);transform:translateY(-1px);border-color:rgba(255,255,255,.16);}
.btn:active{transform:translateY(0px);}

.footer{
  padding:40px 0 0;
  scroll-snap-align:start;
  scroll-snap-stop:always;
}
.footer-top{
  display:grid;
  grid-template-columns:1fr 1.5fr;
  gap:40px;
  align-items:start;
}
.footer-logo{
  font-weight:600;letter-spacing:-0.02em;
  display:flex;gap:12px;align-items:flex-end;
}
.footer-logo .ou{font-size:68px;color:rgba(255,255,255,.92);}
.footer-logo .tech{font-size:36px;color:rgba(255,255,255,.92);transform:translateY(-6px);}
.footer-email{margin-top:0px;color:rgba(255,255,255,.45);font-size:18px;}
.footer-email a{color:rgba(255,255,255,.55);text-decoration:none}
.footer-email a:hover{text-decoration:underline}
.footer-title{
  font-size:clamp(46px,4.6vw,86px);
  line-height:1.02;
  letter-spacing:-0.03em;
  font-weight:400;
  color:rgba(232,236,236,.92);
  text-align:right;
  margin-top: 10px;
}
.footer-rule{margin-top:46px;height:1px;background:rgba(255,255,255,.10);}
.footer-bottom{margin-top:30px;padding-bottom:18px;color:rgba(255,255,255,.55);font-size:15px;}

@media (min-width:1024px){
  .stack{margin-top: -180px;}
}
@media (max-width:1100px){
  .page{padding:44px 28px}
  .hero{grid-template-columns:1fr;gap:32px}
  .logo svg{width:280px}
  .stack-card{min-height:200px}
  .grid6{gap:34px 50px}
  .contact-head{grid-template-columns:1fr}
  .contact-note{justify-self:start}
  .footer-top{grid-template-columns:1fr}
  .footer-title{text-align:left}
}
@media (max-width:720px){
  .grid6{grid-template-columns:1fr;gap:26px}
  .contact-grid{grid-template-columns:1fr}
  .contact-media{height:260px}
  .footer-email{font-size:16px}
  .footer-bottom{font-size:16px}
}