:root{
  --bg:#03080d;
  --bg-alt:#071019;
  --surface:#0a1723;
  --surface-2:#0d1d2c;
  --line:rgba(133,188,224,.16);
  --line-strong:rgba(65,194,241,.36);
  --text:#f3f8fb;
  --muted:#91a6b7;
  --blue:#2da7ed;
  --blue-2:#62d0ff;
  --green:#72de70;
  --teal:#49d6bd;
  --danger:#ff7e7e;
  --max:1220px;
  --shadow:0 30px 90px rgba(0,0,0,.38);
  --radius-sm:14px;
  --radius-md:22px;
  --radius-lg:32px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth;scroll-padding-top:92px}
body{
  margin:0;
  min-width:320px;
  color:var(--text);
  background:
    radial-gradient(circle at 15% 15%,rgba(54,186,120,.07),transparent 25%),
    radial-gradient(circle at 85% 6%,rgba(45,167,237,.08),transparent 26%),
    var(--bg);
  font-family:Inter,-apple-system,BlinkMacSystemFont,"Segoe UI","Noto Sans Thai","Noto Sans TC",Arial,sans-serif;
  line-height:1.65;
  text-rendering:optimizeLegibility;
}
body.menu-open{overflow:hidden}
a{color:inherit}
button,input,select{font:inherit}
img{display:block;max-width:100%;height:auto}
::selection{color:#031019;background:var(--blue-2)}

.container{width:min(var(--max),calc(100% - 48px));margin-inline:auto}
.sr-only{
  position:absolute!important;
  width:1px!important;
  height:1px!important;
  padding:0!important;
  margin:-1px!important;
  overflow:hidden!important;
  clip:rect(0,0,0,0)!important;
  white-space:nowrap!important;
  border:0!important;
}
.skip-link{
  position:fixed;
  top:10px;
  left:10px;
  z-index:1000;
  padding:10px 14px;
  border-radius:10px;
  color:#04121d;
  background:var(--blue-2);
  transform:translateY(-160%);
}
.skip-link:focus{transform:translateY(0)}

.site-header{
  position:fixed;
  top:0;
  right:0;
  left:0;
  z-index:100;
  border-bottom:1px solid transparent;
  background:rgba(3,8,13,.7);
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  transition:background .25s ease,border-color .25s ease,box-shadow .25s ease;
}
.site-header.is-scrolled{
  border-color:var(--line);
  background:rgba(3,8,13,.94);
  box-shadow:0 14px 45px rgba(0,0,0,.24);
}
.nav-shell{
  min-height:82px;
  display:flex;
  align-items:center;
  gap:26px;
}
.brand{
  display:inline-flex;
  align-items:center;
  gap:10px;
  flex:0 0 auto;
  text-decoration:none;
}
.brand-logo{
  width:66px;
  height:66px;
  flex:0 0 66px;
  object-fit:contain;
  border-radius:14px;
  filter:drop-shadow(0 8px 18px rgba(31,160,233,.22));
}
.brand-copy{
  font-size:.96rem;
  font-weight:880;
  letter-spacing:.035em;
}
.brand-copy small{
  display:block;
  margin-top:1px;
  color:#7890a2;
  font-size:.55rem;
  font-weight:700;
  letter-spacing:.17em;
}
.primary-nav{
  display:flex;
  align-items:center;
  justify-content:center;
  flex:1 1 auto;
  gap:5px;
}
.primary-nav a{
  position:relative;
  padding:10px 12px;
  border-radius:9px;
  color:#b7c6d2;
  text-decoration:none;
  font-size:.78rem;
  font-weight:760;
  white-space:nowrap;
  transition:color .2s ease,background .2s ease;
}
.primary-nav a:hover,.primary-nav a.is-active{
  color:#f6fbff;
  background:rgba(45,167,237,.08);
}
.primary-nav a.is-active::after{
  content:"";
  position:absolute;
  right:12px;
  bottom:4px;
  left:12px;
  height:2px;
  border-radius:2px;
  background:linear-gradient(90deg,var(--blue),var(--teal));
}
.language-form{
  position:relative;
  height:42px;
  display:flex;
  align-items:center;
  gap:6px;
  flex:0 0 auto;
  padding-left:12px;
  border:1px solid var(--line);
  border-radius:999px;
  color:#80d8ff;
  background:rgba(255,255,255,.03);
}
.language-form select{
  height:100%;
  padding:0 31px 0 2px;
  border:0;
  outline:0;
  color:#e8f4fc;
  background:transparent;
  cursor:pointer;
  appearance:none;
  -webkit-appearance:none;
  font-size:.76rem;
  font-weight:750;
  background-image:
    linear-gradient(45deg,transparent 50%,#78cef3 50%),
    linear-gradient(135deg,#78cef3 50%,transparent 50%);
  background-position:calc(100% - 14px) 18px,calc(100% - 9px) 18px;
  background-size:5px 5px,5px 5px;
  background-repeat:no-repeat;
}
.language-form option{color:#f5f9fc;background:#07131d}
.language-form noscript button{margin-right:5px}
.menu-toggle{
  display:none;
  width:43px;
  height:43px;
  padding:10px;
  border:1px solid var(--line);
  border-radius:11px;
  color:var(--text);
  background:rgba(255,255,255,.03);
  cursor:pointer;
}
.menu-toggle>span:not(.sr-only){display:block;height:2px;margin:4px 0;border-radius:4px;background:#e9f5fb;transition:.22s ease}
.menu-toggle[aria-expanded="true"]>span:nth-child(1){transform:translateY(6px) rotate(45deg)}
.menu-toggle[aria-expanded="true"]>span:nth-child(2){opacity:0}
.menu-toggle[aria-expanded="true"]>span:nth-child(3){transform:translateY(-6px) rotate(-45deg)}

.hero{
  position:relative;
  min-height:100svh;
  padding:148px 0 92px;
  display:flex;
  align-items:center;
  overflow:hidden;
  isolation:isolate;
}
.hero::after{
  content:"";
  position:absolute;
  right:0;
  bottom:0;
  left:0;
  height:170px;
  z-index:-1;
  background:linear-gradient(transparent,var(--bg));
}
.hero-grid-lines{
  position:absolute;
  inset:0;
  z-index:-3;
  opacity:.21;
  background-image:
    linear-gradient(rgba(89,185,222,.1) 1px,transparent 1px),
    linear-gradient(90deg,rgba(89,185,222,.1) 1px,transparent 1px);
  background-size:60px 60px;
  mask-image:linear-gradient(to bottom,#000,transparent 88%);
}
.hero-glow{
  position:absolute;
  z-index:-2;
  border-radius:50%;
  pointer-events:none;
}
.hero-glow-a{
  width:690px;
  height:690px;
  top:7%;
  right:-250px;
  border:1px solid rgba(63,194,241,.15);
  box-shadow:0 0 0 90px rgba(45,167,237,.024),0 0 0 180px rgba(45,167,237,.014);
  animation:orbitPulse 9s ease-in-out infinite;
}
.hero-glow-b{
  width:480px;
  height:480px;
  left:-320px;
  bottom:-130px;
  background:radial-gradient(circle,rgba(91,220,100,.13),transparent 68%);
}
@keyframes orbitPulse{0%,100%{transform:scale(.97);opacity:.72}50%{transform:scale(1.04);opacity:1}}
.hero-layout{
  display:grid;
  grid-template-columns:minmax(0,1.04fr) minmax(430px,.96fr);
  gap:72px;
  align-items:center;
}
.eyebrow{
  width:max-content;
  max-width:100%;
  display:flex;
  align-items:center;
  gap:9px;
  padding:7px 11px;
  border:1px solid rgba(85,204,246,.2);
  border-radius:999px;
  color:#bce8fa;
  background:rgba(45,167,237,.055);
  font-size:.68rem;
  font-weight:800;
  letter-spacing:.09em;
  text-transform:uppercase;
}
.eyebrow span{
  width:7px;
  height:7px;
  border-radius:50%;
  background:var(--green);
  box-shadow:0 0 0 5px rgba(114,222,112,.09),0 0 12px rgba(114,222,112,.6);
}
.hero h1{
  margin:24px 0;
  max-width:820px;
  font-size:clamp(3.4rem,6.6vw,6.9rem);
  line-height:.92;
  letter-spacing:-.064em;
}
.hero h1 span{
  display:block;
  color:transparent;
  background:linear-gradient(103deg,#effbff 4%,#5ecbff 48%,#77dd72 95%);
  -webkit-background-clip:text;
  background-clip:text;
}
.hero-copy>p{
  max-width:720px;
  margin:0;
  color:#a2b4c2;
  font-size:clamp(1rem,1.5vw,1.15rem);
  line-height:1.8;
}
.hero-actions{display:flex;flex-wrap:wrap;gap:11px;margin-top:31px}
.button{
  min-height:50px;
  padding:0 19px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  border:1px solid var(--line);
  border-radius:11px;
  color:#ecf7fc;
  background:rgba(255,255,255,.03);
  text-decoration:none;
  font-size:.82rem;
  font-weight:820;
  cursor:pointer;
  transition:transform .22s ease,border-color .22s ease,box-shadow .22s ease,background .22s ease;
}
.button:hover{transform:translateY(-2px)}
.button-primary{
  border-color:transparent;
  color:#02131c;
  background:linear-gradient(135deg,#4bc3f6,#5fd9a3);
  box-shadow:0 15px 35px rgba(45,167,237,.2);
}
.button-primary:hover{box-shadow:0 18px 42px rgba(45,167,237,.3)}
.button-secondary:hover,.button-ghost:hover{border-color:rgba(88,204,244,.4);background:rgba(45,167,237,.07)}
.button-ghost{border-color:transparent;color:#86d8f7;background:transparent}
.legal-note{
  margin-top:19px;
  padding-left:13px;
  border-left:2px solid rgba(114,222,112,.42);
  color:#718697;
  font-size:.75rem;
}

.hero-console{
  position:relative;
  padding:18px;
  border:1px solid rgba(100,194,229,.2);
  border-radius:var(--radius-lg);
  background:linear-gradient(155deg,rgba(10,27,40,.94),rgba(3,12,20,.97));
  box-shadow:var(--shadow),inset 0 1px 0 rgba(255,255,255,.035);
  overflow:hidden;
}
.hero-console::before{
  content:"";
  position:absolute;
  width:320px;
  height:320px;
  top:-180px;
  right:-100px;
  border-radius:50%;
  background:rgba(42,178,235,.16);
  filter:blur(45px);
}
.logo-stage{
  position:relative;
  min-height:390px;
  display:grid;
  place-items:center;
  border:1px solid rgba(142,196,224,.09);
  border-radius:22px;
  background:#010304;
  overflow:hidden;
}
.logo-stage::before{
  content:"";
  position:absolute;
  inset:0;
  opacity:.18;
  background-image:linear-gradient(rgba(97,197,240,.09) 1px,transparent 1px),linear-gradient(90deg,rgba(97,197,240,.09) 1px,transparent 1px);
  background-size:34px 34px;
  mask-image:radial-gradient(circle,#000,transparent 68%);
}
.logo-stage img{
  position:relative;
  z-index:2;
  width:min(108%,560px);
  animation:logoFloat 5.5s ease-in-out infinite;
  filter:drop-shadow(0 16px 35px rgba(24,150,230,.2));
}
.logo-halo{
  position:absolute;
  z-index:1;
  width:66%;
  aspect-ratio:1;
  border:1px solid rgba(61,189,240,.18);
  border-radius:50%;
  box-shadow:0 0 0 48px rgba(61,189,240,.018),0 0 80px rgba(57,202,129,.1);
}
@keyframes logoFloat{0%,100%{transform:translateY(0) scale(.97)}50%{transform:translateY(-9px) scale(1)}}
.console-bar{
  padding:16px 5px 12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  color:#71889a;
  font-size:.6rem;
  font-weight:830;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.console-bar span{display:flex;align-items:center;gap:7px}
.console-bar i{width:6px;height:6px;border-radius:50%;background:var(--green);box-shadow:0 0 10px rgba(114,222,112,.65)}
.console-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:8px}
.console-grid div{
  min-width:0;
  padding:12px 10px;
  border:1px solid rgba(142,196,224,.09);
  border-radius:11px;
  background:rgba(255,255,255,.022);
}
.console-grid span,.console-grid strong{display:block}
.console-grid span{color:#61798b;font-size:.55rem;font-weight:760;text-transform:uppercase}
.console-grid strong{margin-top:5px;overflow:hidden;color:#dbe9f2;font-size:.66rem;text-overflow:ellipsis;white-space:nowrap}

.trust-strip{border-top:1px solid var(--line);border-bottom:1px solid var(--line);background:rgba(255,255,255,.012)}
.trust-grid{display:grid;grid-template-columns:repeat(4,1fr)}
.trust-item{padding:24px 20px;border-right:1px solid var(--line)}
.trust-item:last-child{border-right:0}
.trust-item strong,.trust-item span{display:block}
.trust-item strong{font-size:.76rem;letter-spacing:.06em}
.trust-item span{margin-top:4px;color:#6f8596;font-size:.72rem}

.section{position:relative;padding:112px 0}
.section-contrast{
  background:
    linear-gradient(180deg,rgba(255,255,255,.014),transparent 20%,transparent 80%,rgba(255,255,255,.01)),
    #050d14;
}
.section-heading{max-width:870px;margin-bottom:47px}
.section-kicker{
  display:flex;
  align-items:center;
  gap:11px;
  color:#75d3f4;
  font-size:.66rem;
  font-weight:850;
  letter-spacing:.13em;
  text-transform:uppercase;
}
.section-kicker span{
  width:34px;
  height:24px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid var(--line-strong);
  border-radius:6px;
  font-size:.58rem;
}
.section-heading h2,.ecosystem-copy h2,.contact-heading h2{
  margin:16px 0;
  font-size:clamp(2.3rem,4.6vw,4.5rem);
  line-height:1.04;
  letter-spacing:-.052em;
}
.section-heading>p,.ecosystem-copy>p,.contact-heading>p{
  max-width:780px;
  margin:0;
  color:var(--muted);
  font-size:1rem;
  line-height:1.8;
}
.section-heading-split{
  max-width:none;
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(320px,.65fr);
  gap:70px;
  align-items:end;
}
.section-heading-split>p{padding-bottom:7px}

.card-grid,.product-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}
.service-card{
  position:relative;
  min-height:340px;
  padding:30px;
  border:1px solid var(--line);
  border-radius:var(--radius-md);
  background:linear-gradient(150deg,rgba(13,31,46,.9),rgba(4,14,23,.94));
  box-shadow:0 18px 50px rgba(0,0,0,.2);
  overflow:hidden;
  transition:transform .28s ease,border-color .28s ease,box-shadow .28s ease;
}
.service-card::after{
  content:"";
  position:absolute;
  right:-85px;
  bottom:-100px;
  width:210px;
  height:210px;
  border:1px solid rgba(72,195,239,.1);
  border-radius:50%;
  transition:transform .4s ease;
}
.service-card:hover{
  transform:translateY(-7px);
  border-color:rgba(76,197,240,.3);
  box-shadow:0 28px 65px rgba(0,0,0,.3);
}
.service-card:hover::after{transform:scale(1.16)}
.card-index{color:#526b7e;font-size:.62rem;font-weight:850;letter-spacing:.12em}
.card-icon{
  width:46px;
  height:46px;
  margin:46px 0 18px;
  display:grid;
  place-items:center;
  border:1px solid rgba(79,197,239,.25);
  border-radius:13px;
  color:#8fdfff;
  background:rgba(45,167,237,.07);
  font-size:1.12rem;
}
.service-card h3{margin:0;font-size:1.25rem}
.service-card p{margin:13px 0 0;color:#8fa4b5;font-size:.87rem;line-height:1.74}

.value-panel{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  background:linear-gradient(145deg,rgba(14,31,46,.78),rgba(4,14,23,.9));
  box-shadow:var(--shadow);
  overflow:hidden;
}
.value-side{padding:43px}
.value-side+ .value-side{border-left:1px solid var(--line);background:linear-gradient(145deg,rgba(29,77,89,.22),rgba(4,14,23,.1))}
.value-role{padding-bottom:22px;border-bottom:1px solid var(--line)}
.value-role span,.value-role strong{display:block}
.value-role span{color:#6e889b;font-size:.58rem;font-weight:850;letter-spacing:.13em}
.value-role strong{margin-top:6px;font-size:1.4rem}
.check-list{margin:24px 0 0;padding:0;list-style:none}
.check-list li{
  position:relative;
  margin:13px 0;
  padding-left:22px;
  color:#b5c4cf;
  font-size:.86rem;
}
.check-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:.62em;
  width:7px;
  height:7px;
  border-radius:50%;
  background:var(--teal);
  box-shadow:0 0 10px rgba(73,214,189,.48);
}

.process-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:13px}
.process-step{
  position:relative;
  min-height:290px;
  padding:27px;
  border-top:2px solid var(--blue);
  border-right:1px solid var(--line);
  border-bottom:1px solid var(--line);
  border-left:1px solid var(--line);
  border-radius:0 0 17px 17px;
  background:linear-gradient(180deg,rgba(45,167,237,.075),rgba(255,255,255,.017));
  transition:transform .25s ease,background .25s ease;
}
.process-step:hover{transform:translateY(-6px);background:linear-gradient(180deg,rgba(45,167,237,.13),rgba(255,255,255,.026))}
.process-step>span{color:#72d3f6;font-size:.66rem;font-weight:850}
.process-step h3{margin:54px 0 12px;font-size:1.15rem}
.process-step p{margin:0;color:#8ba1b2;font-size:.81rem}

.product-card{
  position:relative;
  min-height:430px;
  padding:30px;
  border:1px solid var(--line);
  border-radius:var(--radius-md);
  background:linear-gradient(150deg,rgba(13,31,46,.9),rgba(4,14,23,.96));
  box-shadow:0 18px 50px rgba(0,0,0,.2);
  overflow:hidden;
  transition:transform .28s ease,border-color .28s ease;
}
.product-card:hover{transform:translateY(-7px);border-color:rgba(72,201,178,.3)}
.product-card::before{
  content:"";
  position:absolute;
  width:220px;
  height:220px;
  top:-145px;
  right:-100px;
  border-radius:50%;
  background:rgba(45,167,237,.14);
  filter:blur(24px);
}
.product-top{position:relative;display:flex;align-items:center;justify-content:space-between;gap:14px}
.product-top span{padding:6px 9px;border:1px solid rgba(76,198,240,.24);border-radius:999px;color:#83dbf9;background:rgba(45,167,237,.055);font-size:.57rem;font-weight:850;letter-spacing:.08em}
.product-top b{color:#526b7d;font-size:.62rem}
.product-card h3{margin:68px 0 14px;font-size:1.45rem;letter-spacing:-.025em}
.product-card>p{min-height:110px;margin:0;color:#8fa4b5;font-size:.84rem}
.product-specs{margin-top:25px;padding-top:20px;border-top:1px solid var(--line);color:#b4c5d1;font-size:.74rem;line-height:1.7}
.disclaimer{margin-top:22px;padding:14px 17px;border-left:3px solid var(--teal);color:#8499aa;background:rgba(73,214,189,.045);font-size:.76rem}

.ecosystem-layout{display:grid;grid-template-columns:minmax(0,.95fr) minmax(0,1.05fr);gap:64px;align-items:center}
.ecosystem-map{
  position:relative;
  min-height:520px;
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  background:radial-gradient(circle at 50% 50%,rgba(45,167,237,.13),transparent 38%),rgba(255,255,255,.012);
  box-shadow:var(--shadow);
  overflow:hidden;
}
.ecosystem-map::before{
  content:"";
  position:absolute;
  inset:0;
  opacity:.15;
  background-image:linear-gradient(rgba(93,189,228,.1) 1px,transparent 1px),linear-gradient(90deg,rgba(93,189,228,.1) 1px,transparent 1px);
  background-size:40px 40px;
  mask-image:radial-gradient(circle,#000,transparent 76%);
}
.ecosystem-orbit{position:absolute;inset:15%;border:1px dashed rgba(83,195,238,.16);border-radius:50%;animation:spin 28s linear infinite}
.ecosystem-orbit.two{inset:29%;animation-direction:reverse;animation-duration:20s}
@keyframes spin{to{transform:rotate(360deg)}}
.ecosystem-core{
  position:absolute;
  top:50%;
  left:50%;
  z-index:3;
  width:170px;
  aspect-ratio:1;
  display:grid;
  place-content:center;
  border:1px solid rgba(113,220,255,.38);
  border-radius:50%;
  background:radial-gradient(circle at 36% 30%,#47bef0,#0c6bbd 44%,#071829 76%);
  box-shadow:0 0 0 16px rgba(45,167,237,.025),0 0 75px rgba(45,167,237,.25);
  text-align:center;
  transform:translate(-50%,-50%);
}
.ecosystem-core span,.ecosystem-core strong,.ecosystem-core small{display:block}
.ecosystem-core span{color:#a8ebff;font-size:.63rem;font-weight:900;letter-spacing:.16em}
.ecosystem-core strong{margin:4px 0;font-size:.96rem;letter-spacing:.04em}
.ecosystem-core small{color:rgba(255,255,255,.62);font-size:.5rem;font-weight:800;letter-spacing:.09em}
.ecosystem-pill{
  position:absolute;
  z-index:4;
  padding:9px 12px;
  border:1px solid var(--line);
  border-radius:999px;
  color:#c5d5df;
  background:rgba(5,15,23,.92);
  box-shadow:0 12px 30px rgba(0,0,0,.18);
  font-size:.66rem;
  font-weight:760;
}
.ecosystem-pill-1{top:14%;left:10%}.ecosystem-pill-2{top:12%;right:10%}.ecosystem-pill-3{top:46%;left:5%}.ecosystem-pill-4{top:46%;right:5%}.ecosystem-pill-5{bottom:13%;left:7%}.ecosystem-pill-6{right:8%;bottom:14%}
.ecosystem-copy h2{margin-top:16px}
.ecosystem-copy>p{margin-top:0}

.contact-section{
  background:
    radial-gradient(circle at 50% 100%,rgba(73,214,189,.1),transparent 36%),
    linear-gradient(180deg,#050d14,#03080d);
}
.contact-panel{
  padding:52px;
  border:1px solid rgba(79,197,239,.22);
  border-radius:var(--radius-lg);
  background:linear-gradient(145deg,rgba(15,43,61,.72),rgba(4,16,25,.9));
  box-shadow:var(--shadow);
}
.contact-heading{
  margin-bottom:34px;
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(320px,.62fr);
  gap:60px;
  align-items:end;
}
.contact-heading h2{margin-bottom:0}
.contact-heading>p{padding-bottom:8px}
.contact-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:16px}
.contact-card{padding:28px;border:1px solid var(--line);border-radius:18px;background:rgba(3,11,18,.5)}
.contact-number{color:#5e7b8e;font-size:.62rem;font-weight:850}
.contact-card h3{margin:24px 0 10px;font-size:1.3rem}
.contact-card p{min-height:68px;margin:0 0 22px;color:#8fa4b5;font-size:.83rem}

.site-footer{padding:55px 0 28px;border-top:1px solid var(--line);background:#020609}
.footer-grid{display:grid;grid-template-columns:1.2fr .7fr .7fr;gap:50px}
.footer-brand{margin-bottom:17px}
.footer-brand .brand-logo{width:86px;height:86px;flex-basis:86px}
.footer-grid p{max-width:450px;color:#718697;font-size:.78rem}
.footer-grid h3{margin:0 0 15px;font-size:.78rem;letter-spacing:.04em}
.footer-links{display:grid;gap:8px;color:#7e93a3;font-size:.76rem}
.footer-links a{text-decoration:none}
.footer-links a:hover{color:#9de8ff}
.footer-legal{margin-top:38px;padding-top:23px;border-top:1px solid var(--line);color:#556b7b;font-size:.68rem;line-height:1.75}
.footer-bottom{margin-top:24px;display:flex;align-items:center;justify-content:space-between;gap:20px;color:#526676;font-size:.68rem}
.footer-bottom a{text-decoration:none}

.reveal{opacity:1;transform:none}
html.effects-ready .reveal{
  opacity:0;
  transform:translateY(26px);
  transition:opacity .72s cubic-bezier(.2,.75,.2,1),transform .72s cubic-bezier(.2,.75,.2,1);
  transition-delay:var(--delay,0ms);
}
html.effects-ready .reveal.is-visible{opacity:1;transform:translateY(0)}

@media (max-width:1060px){
  .menu-toggle{display:block;margin-left:auto}
  .language-form{order:3}
  .primary-nav{
    position:fixed;
    top:82px;
    right:18px;
    left:18px;
    padding:14px;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:5px;
    border:1px solid var(--line);
    border-radius:16px;
    background:rgba(3,10,16,.98);
    box-shadow:var(--shadow);
    opacity:0;
    visibility:hidden;
    transform:translateY(-10px);
    transition:.22s ease;
  }
  .primary-nav.is-open{opacity:1;visibility:visible;transform:translateY(0)}
  .primary-nav a{padding:12px;font-size:.8rem}
  .hero-layout{grid-template-columns:1fr;gap:50px}
  .hero-copy{max-width:900px}
  .hero-console{max-width:760px}
  .section-heading-split,.contact-heading{grid-template-columns:1fr;gap:10px}
  .ecosystem-layout{grid-template-columns:1fr}
  .ecosystem-map{max-width:700px;width:100%}
}
@media (max-width:820px){
  .section{padding:88px 0}
  .hero{min-height:auto}
  .trust-grid{grid-template-columns:repeat(2,1fr)}
  .trust-item:nth-child(2){border-right:0}
  .trust-item:nth-child(-n+2){border-bottom:1px solid var(--line)}
  .card-grid,.product-grid{grid-template-columns:1fr}
  .service-card,.product-card{min-height:auto}
  .product-card>p{min-height:auto}
  .value-panel{grid-template-columns:1fr}
  .value-side+.value-side{border-top:1px solid var(--line);border-left:0}
  .process-grid{grid-template-columns:repeat(2,1fr)}
  .contact-panel{padding:34px}
  .footer-grid{grid-template-columns:1fr 1fr}
  .footer-grid>div:first-child{grid-column:1/-1}
}
@media (max-width:620px){
  .container{width:min(var(--max),calc(100% - 30px))}
  .nav-shell{min-height:74px;gap:8px}
  .brand-logo{width:52px;height:52px;flex-basis:52px;border-radius:11px}
  .brand-copy{font-size:.8rem}
  .brand-copy small{font-size:.46rem}
  .language-form{height:38px;padding-left:9px}
  .language-form select{max-width:94px;padding-right:24px;font-size:.67rem;background-position:calc(100% - 11px) 16px,calc(100% - 6px) 16px}
  .menu-toggle{width:39px;height:39px}
  .primary-nav{top:74px;right:12px;left:12px;grid-template-columns:1fr}
  .hero{padding:119px 0 72px}
  .hero h1{font-size:clamp(3rem,15vw,5rem)}
  .eyebrow{font-size:.57rem;letter-spacing:.05em}
  .hero-actions{flex-direction:column;align-items:stretch}
  .hero-actions .button{width:100%}
  .hero-console{padding:12px;border-radius:23px}
  .logo-stage{min-height:290px}
  .console-bar{display:block}
  .console-bar strong{display:block;margin-top:6px}
  .console-grid{grid-template-columns:repeat(2,1fr)}
  .trust-grid{grid-template-columns:1fr}
  .trust-item,.trust-item:nth-child(2){border-right:0;border-bottom:1px solid var(--line)}
  .trust-item:last-child{border-bottom:0}
  .section{padding:72px 0}
  .section-heading{margin-bottom:34px}
  .section-heading h2,.ecosystem-copy h2,.contact-heading h2{font-size:clamp(2.15rem,11vw,3.3rem)}
  .service-card{padding:25px}
  .card-icon{margin-top:32px}
  .value-side{padding:28px 23px}
  .process-grid{grid-template-columns:1fr}
  .process-step{min-height:auto}
  .process-step h3{margin-top:34px}
  .product-card{padding:25px}
  .product-card h3{margin-top:50px}
  .ecosystem-map{min-height:420px}
  .ecosystem-core{width:142px}
  .ecosystem-pill{font-size:.56rem;padding:7px 9px}
  .ecosystem-pill-1{top:12%;left:5%}.ecosystem-pill-2{top:12%;right:5%}.ecosystem-pill-3{top:43%;left:2%}.ecosystem-pill-4{top:43%;right:2%}.ecosystem-pill-5{bottom:12%;left:3%}.ecosystem-pill-6{right:3%;bottom:12%}
  .contact-panel{padding:24px 18px}
  .contact-grid{grid-template-columns:1fr}
  .contact-card p{min-height:auto}
  .contact-card .button{width:100%}
  .footer-grid{grid-template-columns:1fr}
  .footer-grid>div:first-child{grid-column:auto}
  .footer-bottom{align-items:flex-start;flex-direction:column}
}
@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *,*::before,*::after{animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important}
  html.effects-ready .reveal{opacity:1!important;transform:none!important}
}
