:root{
  --bg:#070a12;
  --bg-2:#0a0e18;
  --surface:rgba(17,23,38,.72);
  --surface-strong:#101727;
  --surface-soft:#0c111d;
  --border:rgba(255,255,255,.10);
  --border-strong:rgba(112,162,255,.28);
  --text:#f5f7fb;
  --muted:#9ba7bb;
  --blue:#5aa7ff;
  --cyan:#5de0d0;
  --purple:#9b87f5;
  --success:#62e0a1;
  --shadow:0 25px 80px rgba(0,0,0,.35);
  --radius:24px;
  --container:1180px;
}
*{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;
  line-height:1.6;
  overflow-x:hidden;
}
a{color:inherit;text-decoration:none}
button,input,textarea{font:inherit}
img{max-width:100%;display:block}
.container{width:min(calc(100% - 40px),var(--container));margin-inline:auto}
.section{position:relative;padding:118px 0}
.section-soft{
  background:linear-gradient(180deg,rgba(255,255,255,.018),rgba(255,255,255,.006));
  border-top:1px solid rgba(255,255,255,.05);
  border-bottom:1px solid rgba(255,255,255,.05)
}
.skip-link{
  position:fixed;left:18px;top:-80px;z-index:1000;
  background:#fff;color:#000;padding:10px 14px;border-radius:10px
}
.skip-link:focus{top:18px}
.site-bg{position:fixed;inset:0;pointer-events:none;z-index:-1;overflow:hidden}
.grid-mask{
  position:absolute;inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px);
  background-size:56px 56px;
  mask-image:linear-gradient(to bottom,black,transparent 78%);
}
.glow{position:absolute;border-radius:999px;filter:blur(80px);opacity:.26}
.glow-a{width:520px;height:520px;background:#195fc7;top:-180px;left:-150px}
.glow-b{width:420px;height:420px;background:#5730b6;top:240px;right:-180px}
.site-header{
  position:sticky;top:0;z-index:100;
  backdrop-filter:blur(18px);
  background:rgba(7,10,18,.68);
  border-bottom:1px solid rgba(255,255,255,.065)
}
.nav-shell{height:78px;display:flex;align-items:center;justify-content:space-between;gap:24px}
.brand{display:flex;align-items:center;gap:12px;font-weight:800;letter-spacing:-.03em}
.brand-icon{
  width:38px;height:38px;display:grid;place-items:center;border-radius:12px;
  background:linear-gradient(135deg,var(--blue),var(--purple));
  box-shadow:0 12px 30px rgba(90,167,255,.25)
}
.brand-name{font-size:19px}.brand-name span{color:var(--blue)}
.nav{display:flex;align-items:center;gap:30px}
.nav a{color:#b9c2d2;font-size:14px;font-weight:650;transition:.2s ease}
.nav a:hover{color:#fff}
.nav-button{
  padding:11px 17px;border:1px solid var(--border);border-radius:12px;
  background:rgba(255,255,255,.04)
}
.menu-toggle{display:none;border:0;background:transparent;padding:8px;cursor:pointer}
.menu-toggle span{display:block;width:24px;height:2px;background:#fff;margin:5px 0;border-radius:2px}
.hero{padding-top:105px;min-height:760px;display:flex;align-items:center}
.hero-layout{display:grid;grid-template-columns:1.08fr .92fr;gap:82px;align-items:center}
.availability{
  display:inline-flex;align-items:center;gap:9px;padding:8px 12px;
  border:1px solid rgba(98,224,161,.2);border-radius:999px;
  color:#bdeed4;background:rgba(98,224,161,.055);font-size:13px;font-weight:700
}
.availability-dot{
  width:8px;height:8px;border-radius:50%;background:var(--success);
  box-shadow:0 0 0 6px rgba(98,224,161,.09)
}
.hero-kicker{margin:28px 0 12px;color:#7fa8e7;font-size:12px;font-weight:800;letter-spacing:.16em}
.hero h1{margin:0;max-width:780px;font-size:clamp(48px,6vw,78px);line-height:1.03;letter-spacing:-.058em}
.hero h1 span{
  display:block;background:linear-gradient(90deg,#79b7ff,#68e1d3 48%,#a597ff);
  -webkit-background-clip:text;background-clip:text;color:transparent
}
.hero-text{max-width:680px;margin:26px 0 0;color:var(--muted);font-size:18px}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:34px}
.button{
  min-height:50px;display:inline-flex;align-items:center;justify-content:center;gap:12px;
  border-radius:14px;padding:0 20px;font-weight:750;border:1px solid transparent;
  cursor:pointer;transition:transform .2s ease,border-color .2s ease,background .2s ease
}
.button:hover{transform:translateY(-2px)}
.button.primary{
  background:linear-gradient(135deg,#4d9cff,#7668ef);color:#fff;
  box-shadow:0 16px 36px rgba(72,126,242,.23)
}
.button.ghost{border-color:var(--border);background:rgba(255,255,255,.035);color:#d7deea}
.hero-metrics{
  margin-top:48px;display:grid;grid-template-columns:repeat(3,1fr);
  border-top:1px solid var(--border);padding-top:24px;gap:16px
}
.hero-metrics div{display:flex;flex-direction:column}
.hero-metrics strong{font-size:20px}.hero-metrics span{font-size:12px;color:var(--muted)}
.hero-panel{
  position:relative;border:1px solid var(--border-strong);border-radius:28px;
  background:linear-gradient(160deg,rgba(20,29,48,.90),rgba(9,13,23,.94));
  box-shadow:var(--shadow);overflow:visible;transform:perspective(1000px) rotateY(-4deg) rotateX(2deg)
}
.panel-top{
  height:52px;padding:0 18px;display:flex;align-items:center;gap:7px;
  border-bottom:1px solid var(--border);background:rgba(255,255,255,.025);
  border-radius:28px 28px 0 0
}
.panel-dot{width:9px;height:9px;border-radius:50%;background:#334159}
.panel-top small{margin-left:auto;color:#65738a}
.panel-content{padding:28px}
.status-line{display:flex;justify-content:space-between;gap:20px;padding:10px 0;border-bottom:1px solid rgba(255,255,255,.055)}
.status-label{font-size:11px;letter-spacing:.12em;color:#6f7d94}
.status-value{font-size:13px;font-weight:700;color:#d8dfeb}.status-value.success{color:var(--success)}
.code-window{
  margin-top:26px;padding:21px 18px;border:1px solid rgba(255,255,255,.08);
  border-radius:17px;background:#080c15;font-family:ui-monospace,SFMono-Regular,Menlo,monospace;
  font-size:13px;box-shadow:inset 0 1px 0 rgba(255,255,255,.025)
}
.code-window p{margin:6px 0;color:#b9c4d7}.code-window i{display:inline-block;width:28px;color:#44516a;font-style:normal}
.code-purple{color:#c39afa}.code-green{color:#79e5b2}.code-blue{color:#70b9ff}
.floating-tag{
  position:absolute;padding:10px 13px;border-radius:12px;border:1px solid var(--border);
  background:rgba(11,16,28,.92);color:#c8d1df;font-size:12px;font-weight:800;
  box-shadow:0 15px 35px rgba(0,0,0,.35)
}
.tag-a{right:-35px;top:110px}.tag-b{left:-36px;bottom:58px}
.logo-strip{border-top:1px solid var(--border);border-bottom:1px solid var(--border);background:rgba(255,255,255,.018)}
.logo-strip-inner{
  min-height:86px;display:flex;align-items:center;justify-content:space-between;gap:28px;flex-wrap:wrap
}
.logo-strip span{font-size:11px;letter-spacing:.16em;color:#718099;font-weight:800}
.section-heading{max-width:760px;margin-bottom:48px}
.section-heading.centered{text-align:center;margin-inline:auto}
.section-heading h2{margin:10px 0 0;font-size:clamp(35px,4.5vw,54px);line-height:1.08;letter-spacing:-.045em}
.section-heading p{color:var(--muted);font-size:17px;max-width:680px;margin:18px auto 0}
.eyebrow{color:#6fa9f3;font-size:12px;font-weight:850;letter-spacing:.17em}
.about-layout{display:grid;grid-template-columns:.9fr 1.1fr;gap:88px;align-items:start}
.about-card{
  padding:36px;border:1px solid var(--border);border-radius:var(--radius);
  background:linear-gradient(145deg,rgba(255,255,255,.05),rgba(255,255,255,.018))
}
.about-card p{margin:0 0 18px;color:#b6c0d0;font-size:17px}
.about-card strong{color:#fff}
.skill-cloud{display:flex;gap:10px;flex-wrap:wrap;margin-top:27px}
.skill-cloud span,.project-tech span{
  padding:8px 11px;border:1px solid rgba(255,255,255,.085);border-radius:999px;
  color:#aeb8ca;background:rgba(255,255,255,.025);font-size:12px;font-weight:700
}
.services-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.service-card{
  min-height:245px;padding:28px;border:1px solid var(--border);border-radius:20px;
  background:linear-gradient(145deg,rgba(255,255,255,.035),rgba(255,255,255,.012));
  transition:transform .25s ease,border-color .25s ease,background .25s ease
}
.service-card:hover{transform:translateY(-5px);border-color:rgba(90,167,255,.33);background:rgba(90,167,255,.045)}
.card-number{display:inline-block;color:#6388ba;font-size:12px;font-weight:800;letter-spacing:.12em}
.service-card h3{margin:42px 0 10px;font-size:21px}.service-card p{margin:0;color:var(--muted);font-size:14px}
.projects-list{display:flex;flex-direction:column;gap:34px}
.project-card{
  display:grid;grid-template-columns:1.03fr .97fr;min-height:480px;
  border:1px solid var(--border);border-radius:28px;overflow:hidden;
  background:linear-gradient(145deg,rgba(255,255,255,.04),rgba(255,255,255,.015))
}
.project-card.reverse .project-preview{order:2}.project-card.reverse .project-info{order:1}
.project-preview{position:relative;display:grid;place-items:center;min-height:440px;overflow:hidden}
.hotel-preview{
  background:
    radial-gradient(circle at 35% 35%,rgba(202,162,92,.18),transparent 28%),
    linear-gradient(145deg,#18130d,#090c12)
}
.bcs-preview{
  background:
    radial-gradient(circle at 60% 45%,rgba(66,130,255,.23),transparent 34%),
    linear-gradient(145deg,#09111f,#080b11)
}
.project-browser{
  width:75%;aspect-ratio:1.45;border:1px solid rgba(255,255,255,.15);border-radius:16px;
  background:linear-gradient(rgba(0,0,0,.18),rgba(0,0,0,.25)),linear-gradient(135deg,#3b2b18,#121212);
  box-shadow:0 35px 70px rgba(0,0,0,.45);overflow:hidden;transform:rotate(-3deg)
}
.browser-bar{height:32px;background:rgba(0,0,0,.34);display:flex;align-items:center;gap:6px;padding:0 12px}
.browser-bar i{width:7px;height:7px;border-radius:50%;background:#72624f}
.hotel-brand{height:calc(100% - 32px);display:flex;flex-direction:column;align-items:center;justify-content:center;letter-spacing:.28em}
.hotel-brand small{font-size:11px;color:#c8a66c}.hotel-brand strong{font-family:Georgia,serif;font-size:45px;letter-spacing:.08em;color:#f6ead6}
.hotel-brand span{font-size:10px;color:#a68e6c}
.project-year{
  position:absolute;left:22px;bottom:20px;padding:8px 11px;border-radius:999px;
  border:1px solid rgba(255,255,255,.12);font-size:11px;font-weight:800;color:#cdd6e4;background:rgba(0,0,0,.35)
}
.project-info{padding:50px;display:flex;flex-direction:column;justify-content:center}
.project-labels{display:flex;gap:9px;flex-wrap:wrap}
.project-labels span{color:#79aef1;font-size:11px;font-weight:850;letter-spacing:.1em;text-transform:uppercase}
.project-info h3{margin:18px 0 14px;font-size:35px;line-height:1.12;letter-spacing:-.035em}
.project-info p{margin:0;color:var(--muted);font-size:16px}
.project-tech{display:flex;flex-wrap:wrap;gap:8px;margin-top:24px}
.project-info>a{margin-top:31px;font-weight:800;color:#dce8fb}.project-info>a span{color:var(--blue)}
.bcs-network{position:relative;width:280px;height:280px;display:grid;place-items:center}
.bcs-network::before,.bcs-network::after{content:"";position:absolute;border:1px solid rgba(90,167,255,.2);border-radius:50%}
.bcs-network::before{inset:28px}.bcs-network::after{inset:70px}
.bcs-core{
  width:92px;height:92px;border-radius:28px;display:grid;place-items:center;z-index:2;
  font-size:25px;font-weight:900;background:linear-gradient(135deg,#4d9cff,#725ee9);
  box-shadow:0 0 50px rgba(77,156,255,.35)
}
.node{
  position:absolute;padding:8px 10px;border-radius:10px;border:1px solid rgba(255,255,255,.1);
  background:#10182a;color:#a9bad1;font-size:11px;font-weight:750
}
.node-a{top:15px;left:105px}.node-b{top:76px;right:-12px}.node-c{bottom:58px;right:4px}.node-d{bottom:5px;left:103px}.node-e{top:110px;left:-12px}
.process-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.process-card{padding:26px;border-top:1px solid var(--border);background:rgba(255,255,255,.015);min-height:210px}
.process-card>span{color:#6389be;font-size:12px;font-weight:850;letter-spacing:.13em}
.process-card h3{margin:40px 0 10px;font-size:21px}.process-card p{margin:0;color:var(--muted);font-size:14px}
.contact-shell{
  display:grid;grid-template-columns:.92fr 1.08fr;gap:70px;padding:58px;
  border:1px solid var(--border-strong);border-radius:30px;
  background:
    radial-gradient(circle at 10% 0%,rgba(72,132,244,.13),transparent 34%),
    linear-gradient(145deg,rgba(20,28,47,.92),rgba(9,13,23,.94));
  box-shadow:var(--shadow)
}
.contact-copy h2{margin:10px 0 18px;font-size:46px;line-height:1.08;letter-spacing:-.045em}
.contact-copy p{color:var(--muted);font-size:16px}
.contact-email{display:inline-flex;gap:10px;margin-top:24px;font-size:19px;font-weight:850;color:#fff}
.contact-email span{color:var(--blue)}
.contact-form{display:flex;flex-direction:column;gap:16px}
.contact-form label{display:flex;flex-direction:column;gap:7px}
.contact-form label>span{color:#9eacc1;font-size:12px;font-weight:750}
.contact-form input,.contact-form textarea{
  width:100%;border:1px solid rgba(255,255,255,.1);border-radius:13px;
  background:rgba(4,7,13,.55);color:#fff;padding:14px 15px;outline:none;resize:vertical
}
.contact-form input:focus,.contact-form textarea:focus{border-color:rgba(90,167,255,.55);box-shadow:0 0 0 4px rgba(90,167,255,.08)}
.contact-form small{color:#718097}
.footer{border-top:1px solid var(--border);padding:28px 0}
.footer-inner{display:flex;align-items:center;justify-content:space-between;gap:25px}
.footer p,.footer>a{color:#7f8ca0;font-size:13px}
.reveal{opacity:0;transform:translateY(24px);transition:opacity .7s ease,transform .7s ease}
.reveal.visible{opacity:1;transform:none}
.delay-1{transition-delay:.09s}.delay-2{transition-delay:.18s}.delay-3{transition-delay:.27s}
@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}.reveal{opacity:1;transform:none;transition:none}
  .button,.service-card{transition:none}
}
@media (max-width:980px){
  .hero-layout,.about-layout,.contact-shell{grid-template-columns:1fr}
  .hero-panel{max-width:680px;transform:none}
  .services-grid{grid-template-columns:repeat(2,1fr)}
  .project-card{grid-template-columns:1fr}.project-card.reverse .project-preview,.project-card.reverse .project-info{order:initial}
  .process-grid{grid-template-columns:repeat(2,1fr)}
  .tag-a{right:12px}.tag-b{left:12px}
}
@media (max-width:760px){
  .section{padding:86px 0}
  .container{width:min(calc(100% - 28px),var(--container))}
  .menu-toggle{display:block}
  .nav{
    position:absolute;left:14px;right:14px;top:70px;display:none;flex-direction:column;align-items:stretch;gap:4px;
    padding:12px;border:1px solid var(--border);border-radius:16px;background:rgba(8,12,21,.98);box-shadow:var(--shadow)
  }
  .nav.open{display:flex}.nav a{padding:12px 13px}.nav-button{text-align:center}
  .hero{padding-top:70px;min-height:auto}.hero-layout{gap:55px}.hero h1{font-size:47px}
  .hero-text{font-size:16px}.hero-metrics{grid-template-columns:1fr;gap:18px}
  .logo-strip-inner{justify-content:center;padding:20px 0}.logo-strip span{font-size:10px}
  .services-grid,.process-grid{grid-template-columns:1fr}
  .service-card{min-height:210px}
  .project-info{padding:34px 25px}.project-info h3{font-size:29px}
  .project-preview{min-height:340px}.project-browser{width:84%}
  .hotel-brand strong{font-size:35px}
  .contact-shell{padding:31px 22px;gap:42px}.contact-copy h2{font-size:37px}
  .footer-inner{flex-direction:column;text-align:center}
}
