:root{
  --bg:#020814;
  --line:rgba(90,180,255,.22);
  --cyan:#33ddff;
  --blue:#0b84ff;
  --text:#f6fbff;
  --muted:#9fb4ca;
  --panel:rgba(5,14,29,.88);
  --header:76px;
}

*{box-sizing:border-box}
html,body,body *{caret-color:transparent!important}
html{scroll-behavior:auto}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:Pretendard,"Noto Sans KR",system-ui,-apple-system,Segoe UI,sans-serif;
  overflow-x:hidden;
}
a{text-decoration:none;color:inherit}
button{font:inherit;color:inherit}
a:focus,button:focus,[tabindex]:focus{outline:none}
body:before,body:after{content:none!important;display:none!important}

/* =========================================================
   HEADER / NAVIGATION
========================================================= */
.site-header{
  position:fixed;
  z-index:1000;
  top:0;
  left:0;
  right:0;
  height:var(--header);
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 54px;
  background:rgba(2,8,17,.88);
  border-bottom:1px solid rgba(120,190,255,.13);
  color:#fff;
  backdrop-filter:blur(18px);
  transition:background-color .28s ease,border-color .28s ease,box-shadow .28s ease,color .28s ease;
}

.brand{
  position:relative;
  z-index:3;
  display:flex;
  align-items:center;
  width:133px;
  height:40px;
  flex:0 0 133px;
}
.brand img{
  position:absolute;
  left:0;
  top:50%;
  width:133px;
  height:auto;
  max-width:none;
  object-fit:contain;
  transform:translateY(-50%);
  transition:opacity .28s ease,filter .28s ease;
  filter:none!important;
}
.brand .logo-white{opacity:1}
.brand .logo-color{opacity:0}
.site-header.is-scrolled .brand .logo-white{opacity:0}
.site-header.is-scrolled .brand .logo-color{opacity:1}
.brand::after,.brand:after,.site-header .brand::after,.site-header .brand:after{content:none!important;display:none!important}

.main-nav{
  position:absolute;
  left:50%;
  top:0;
  z-index:2;
  width:max-content;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:42px;
  transform:translateX(-50%);
}
.nav-link{
  position:relative;
  display:flex;
  align-items:center;
  height:100%;
  border:0;
  background:transparent;
  color:#fff;
  font-weight:800;
  font-size:16px;
  letter-spacing:-.03em;
  white-space:nowrap;
  cursor:pointer;
  transition:color .28s ease;
}
.nav-link:after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:18px;
  height:2px;
  background:linear-gradient(90deg,var(--cyan),var(--blue));
  transform:scaleX(0);
  transform-origin:center;
  transition:.25s;
}
.nav-link:hover,.nav-link.active{color:var(--cyan)}
.nav-link:hover:after,.nav-link.active:after{transform:scaleX(1)}

.lang{
  position:relative;
  z-index:3;
  margin-left:auto;
}
.lang-toggle{
  min-width:32px;
  padding:10px 0;
  border:0;
  background:transparent;
  color:var(--cyan);
  font-weight:900;
  cursor:pointer;
  text-align:right;
  letter-spacing:.02em;
}
.lang-toggle span{display:none!important}
.lang-menu{
  display:none;
  position:absolute;
  right:0;
  top:36px;
  min-width:72px;
  padding:6px 0;
  background:rgba(3,11,23,.96);
  border:0;
  box-shadow:0 18px 40px rgba(0,0,0,.35);
}
.lang.open .lang-menu{display:block}
.lang-menu a{
  display:block;
  padding:9px 14px;
  font-weight:800;
  text-align:right;
  letter-spacing:.03em;
}
.lang-menu a:hover,.lang-menu .active{color:var(--cyan)}

.desktop-menu-toggle{
  position:relative;
  z-index:3;
  display:none;
  width:42px;
  height:38px;
  padding:0;
  border:0;
  background:transparent;
  align-content:center;
  gap:5px;
  cursor:pointer;
  margin-left:24px;
}
.desktop-menu-toggle span{
  display:block;
  height:3px;
  border-radius:3px;
  background:#f5fbff;
  box-shadow:0 0 10px rgba(51,221,255,.18);
  transition:background-color .28s ease,box-shadow .28s ease;
}

.compact-drawer{
  display:none;
  position:fixed;
  z-index:998;
  top:var(--header);
  left:0;
  right:0;
  padding:18px clamp(24px,5vw,58px);
  background:rgba(3,12,27,.98);
  border-bottom:1px solid rgba(64,164,255,.25);
  box-shadow:0 24px 80px rgba(0,0,0,.45);
  backdrop-filter:blur(18px);
}
.compact-drawer.open{
  display:grid;
  grid-template-columns:repeat(6,max-content);
  justify-content:center;
  gap:34px;
}
.compact-drawer a{font-weight:900;color:#fff;white-space:nowrap}
.compact-drawer a:hover{color:var(--cyan)}

.site-header.is-scrolled{
  background:rgba(246,251,255,.94);
  border-bottom-color:rgba(11,34,58,.16);
  box-shadow:0 12px 34px rgba(0,0,0,.16);
  color:#061323;
}
.site-header.is-scrolled .nav-link{color:#061323!important}
.site-header.is-scrolled .nav-link:hover,
.site-header.is-scrolled .nav-link.active,
.site-header.is-scrolled .lang-toggle{color:#007fd8!important}
.site-header.is-scrolled .desktop-menu-toggle span{background:#061323;box-shadow:none}
.site-header.is-scrolled .lang-menu{
  background:rgba(246,251,255,.98);
  border:1px solid rgba(11,34,58,.12);
  box-shadow:0 18px 42px rgba(0,0,0,.18);
}
.site-header.is-scrolled .lang-menu a{color:#061323}
.site-header.is-scrolled .lang-menu a:hover,
.site-header.is-scrolled .lang-menu .active{color:#007fd8}
.site-header.is-scrolled ~ .compact-drawer{
  background:rgba(246,251,255,.97)!important;
  border-bottom-color:rgba(11,34,58,.14)!important;
  box-shadow:0 24px 70px rgba(0,0,0,.18)!important;
  color:#061323!important;
}
.site-header.is-scrolled ~ .compact-drawer a{color:#061323!important}
.site-header.is-scrolled ~ .compact-drawer a:hover{color:#007fd8!important}

/* =========================================================
   MEGA MENU
========================================================= */
.mega-menu{
  position:fixed;
  z-index:999;
  top:var(--header);
  left:50%;
  width:min(1080px,calc(100vw - 220px));
  transform:translateX(-50%) translateY(-8px);
  opacity:0;
  pointer-events:none;
  transition:.22s ease;
}
.mega-menu.open{opacity:1;pointer-events:auto;transform:translateX(-50%) translateY(0)}
.mega-inner{
  display:grid;
  grid-template-columns:250px 1fr;
  gap:38px;
  padding:42px 56px;
  background:rgba(3,12,27,.96);
  border:1px solid rgba(64,164,255,.28);
  box-shadow:0 24px 80px rgba(0,0,0,.45),inset 0 1px 0 rgba(83,190,255,.22);
  backdrop-filter:blur(20px);
}
.mega-title{
  display:flex;
  align-items:center;
  gap:22px;
  border-right:1px solid rgba(110,190,255,.25);
  font-size:32px;
  font-weight:900;
  letter-spacing:-.06em;
}
.mega-title span{color:var(--cyan)}
.mega-content{display:grid;grid-auto-flow:column;grid-auto-columns:minmax(120px,1fr);gap:42px}
.mega-col h4{margin:0 0 18px;color:#3baeff;font-size:15px}
.mega-col a{
  position:relative;
  display:block;
  width:max-content;
  max-width:100%;
  margin:0 0 15px;
  padding-bottom:4px;
  font-weight:800;
  font-size:17px;
  transition:color .22s ease,transform .22s ease;
}
.mega-col a::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:2px;
  background:linear-gradient(90deg,var(--cyan),rgba(11,132,255,.25));
  transform:scaleX(0);
  transform-origin:left center;
  transition:transform .24s ease;
}
.mega-col a:hover{color:var(--cyan);transform:translateX(4px)}
.mega-col a:hover::after{transform:scaleX(1)}
.mega-menu,.mega-menu *,.site-header.is-scrolled ~ .mega-menu,.site-header.is-scrolled ~ .mega-menu *{text-shadow:none!important;filter:none!important}
.mega-menu .mega-col a,.mega-menu .mega-col a:hover,.mega-menu .mega-col a:focus,.mega-menu .mega-col a.active,
.site-header.is-scrolled ~ .mega-menu .mega-col a,.site-header.is-scrolled ~ .mega-menu .mega-col a:hover,.site-header.is-scrolled ~ .mega-menu .mega-col a:focus,.site-header.is-scrolled ~ .mega-menu .mega-col a.active{box-shadow:none!important}
.site-header.is-scrolled ~ .mega-menu .mega-inner{
  background:rgba(246,251,255,.96)!important;
  border-color:rgba(11,34,58,.14)!important;
  box-shadow:0 24px 70px rgba(0,0,0,.18),inset 0 1px 0 rgba(255,255,255,.58)!important;
  color:#061323!important;
}
.site-header.is-scrolled ~ .mega-menu .mega-title{border-right-color:rgba(11,34,58,.14)!important;color:#061323!important}
.site-header.is-scrolled ~ .mega-menu .mega-title span,
.site-header.is-scrolled ~ .mega-menu .mega-col h4{color:#007fd8!important}
.site-header.is-scrolled ~ .mega-menu .mega-col a{color:#061323!important}
.site-header.is-scrolled ~ .mega-menu .mega-col a::after{background:linear-gradient(90deg,#007fd8,rgba(0,127,216,.24))!important}
.site-header.is-scrolled ~ .mega-menu .mega-col a:hover{color:#007fd8!important}

/* =========================================================
   HERO / MAIN VIDEO FLOW
========================================================= */
.main-video-flow{
  position:relative;
  overflow:hidden;
  background:var(--bg);
}
.flow-video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:.86;
  z-index:0;
  filter:brightness(1.16) contrast(1.26) saturate(1.32);
  transform:scale(1.03);
  transform-origin:center top;
  pointer-events:none;
}
.flow-dim{
  position:absolute;
  inset:0;
  z-index:1;
  pointer-events:none;
  background:
    linear-gradient(180deg,rgba(2,8,18,.02) 0%,rgba(2,8,18,.12) 34%,rgba(2,8,18,.42) 72%,rgba(2,8,18,.82) 100%),
    linear-gradient(90deg,rgba(2,8,17,.62),rgba(2,8,17,.14) 48%,rgba(2,8,17,.50)),
    radial-gradient(circle at 52% 48%,rgba(55,165,255,.34),transparent 38%);
}
.hero{
  position:relative;
  z-index:2;
  height:100svh;
  min-height:720px;
  overflow:hidden;
  background:transparent!important;
  padding-top:var(--header);
}
.hero:before,.hero:after{content:none!important;display:none!important}
.hero-video,.hero-dim{display:none!important}
.hero-shell{
  position:relative;
  z-index:3;
  isolation:isolate;
  height:calc(100svh - var(--header));
  min-height:calc(720px - var(--header));
  display:grid;
  grid-template-columns:minmax(0,43%) minmax(0,57%);
  column-gap:clamp(18px,2vw,42px);
  align-items:center;
  max-width:1800px;  
  margin:0 auto;
  padding:0 clamp(54px,5vw,92px) 120px;
  gap:20px;  
}
.hero-copy{
  position:relative;
  z-index:200 !important;
  isolation:isolate;
  transform:translateZ(0);
  align-self:start;
  max-width:78% !important;
  overflow:visible !important;
  padding-top:clamp(72px,10vh,122px);
}
.hero-copy *,.hero-actions *{position:relative;z-index:201 !important;}
.eyebrow,.hero-copy .eyebrow{
  margin:0 0 18px;
  color:var(--cyan);
  font-weight:900;
  letter-spacing:.18em;
  font-size:clamp(10px,.66vw,12px);
  text-shadow:0 0 16px rgba(51,221,255,.55);
  white-space:nowrap !important;
  min-width:max-content;
}
h1,.hero-copy h1{
  margin:0;
  color:#fff;
  font-size:clamp(52px,3.2vw,62px);
  line-height:1.06;
  letter-spacing:-.073em;
  font-weight:950;
  width:max-content;
  overflow:visible!important;
}
.hero-copy h1 span{
	display:block;
	overflow:visible !important;
  white-space:nowrap !important;
}
.hero-copy h1 span:last-child{
  background:linear-gradient(180deg,#38b9ff,#126dff 70%,#83a8ff);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.lead,.hero-copy .lead{
  font-size:clamp(13px,.84vw,16px);
  min-width:540px;
  max-width:540px;
  line-height:1.7;
  font-weight:800;
  letter-spacing:-.035em;
  margin:20px 0 26px;
}
.hero-actions{
  position:relative;
  z-index:61;
  display:flex;
  gap:14px;
}
.btn,.hero-actions .btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  min-width:105px;
  height:41px;
  border-radius:7px;
  font-size:12px;
  font-weight:900;
}
.btn-ghost{border:1px solid rgba(157,213,255,.38);background:rgba(0,0,0,.2)}
.btn-primary{background:linear-gradient(100deg,#1678ff,#28cfff);box-shadow:0 0 30px rgba(0,151,255,.35)}

.hero-side-group{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:clamp(20px,2vw,42px);

  width:100%;
  max-width:100%;

  padding-right:54px;
  box-sizing:border-box;

  overflow:visible;
}

.product-stage{
  position:relative;
  z-index:1;
  isolation:isolate;
  overflow:visible;

  display:grid;
  place-items:center;

  flex:0 0 520px;
  width:520px;
  min-width:520px;

  height:540px;
  min-height:540px;

  transform:none !important;
  pointer-events:none;
}

.rayon-product{
  position:absolute;
  left:50%;
  top:50%;
  z-index:3;

  width:364px;
  min-width:364px;
  max-width:364px;
  height:auto;

  transform:translate(-50%,-50%);

  filter:
    drop-shadow(0 26px 42px rgba(0,0,0,.58))
    drop-shadow(0 0 38px rgba(42,205,255,.42));

  animation:
    floatProduct 4.8s ease-in-out infinite,
    productGlow 2.8s ease-in-out infinite;
}

.product-stage::before,
.product-stage::after,
.radar-rings{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  pointer-events:none;
}

.product-stage::before{
  content:"";
  z-index:0;

  width:520px;
  height:520px;

  border-radius:50%;
  background:
    conic-gradient(
      from 0deg,
      transparent 0 18%,
      rgba(51,221,255,.34) 22%,
      transparent 30% 58%,
      rgba(11,132,255,.28) 64%,
      transparent 72%
    );

  filter:blur(.2px) drop-shadow(0 0 28px rgba(51,221,255,.22));
  animation:productOrbit 7.2s linear infinite;
}

.product-stage::after{
  content:"";
  z-index:0;

  width:430px;
  height:430px;

  border-radius:50%;
  background:
    radial-gradient(circle at 24% 20%,rgba(126,239,255,.9) 0 3px,transparent 4px),
    radial-gradient(circle at 78% 32%,rgba(51,221,255,.7) 0 2px,transparent 3px),
    radial-gradient(circle at 64% 82%,rgba(11,132,255,.82) 0 3px,transparent 4px),
    radial-gradient(circle,rgba(51,221,255,.11),transparent 60%);

  animation:productSpark 5.6s ease-in-out infinite;
}

.radar-rings{
  z-index:1;

  width:520px;
  height:520px;

  display:grid;
  place-items:center;

  filter:drop-shadow(0 0 22px rgba(51,221,255,.2));
}

.radar-rings i{
  position:absolute;

  width:auto;
  height:auto;
  aspect-ratio:1;

  border:1px solid rgba(71,178,255,.25);
  border-radius:50%;
  box-shadow:0 0 40px rgba(0,117,255,.15);

  animation:ringBreath 4.2s ease-in-out infinite;
}

.radar-rings i:nth-child(1){
  width:364px;
}

.radar-rings i:nth-child(2){
  width:460px;
  opacity:.65;
  animation-delay:.7s;
}

.radar-rings i:nth-child(3){
  width:290px;
  opacity:.8;
  animation:
    pulseRing 3s linear infinite,
    ringBreath 4.2s ease-in-out infinite 1.4s;
}

.spec-panel{
  position:relative;
  z-index:2;

  flex:0 0 260px;
  width:260px;
  min-width:260px;
  max-width:260px;

  margin-right:0;
  overflow:visible;
}
.spec-panel p{margin:0 0 10px;color:var(--cyan);font-size:17px;font-weight:900}
.spec-panel h2{margin:0 0 30px;font-size:46px;line-height:1;font-weight:950}
.spec-panel ul{list-style:none;margin:0;padding:0;display:grid;gap:26px}
.spec-panel li{position:relative;padding-left:58px}
.spec-panel b{display:block;color:#59e6ff;font-size:20px;margin-bottom:8px;white-space:nowrap}
.spec-panel small{display:block;font-size:15px;font-weight:800;color:#f6fbff;white-space:nowrap}
.spec-dot,.spec-panel .spec-dot,.spec-panel .firmware-dot,.spec-panel .stable-dot{
  position:absolute;
  left:0;
  top:1px;
  width:34px;
  height:34px;
  border-radius:50%!important;
  clip-path:none!important;
  border:1px solid rgba(70,216,255,.58);
  box-shadow:0 0 20px rgba(41,211,255,.32);
  background:radial-gradient(circle,rgba(41,211,255,.62) 0 18%,rgba(41,211,255,.12) 20% 60%,transparent 62%)!important;
}

.capability-strip{display:none!important}

.scroll-cue{
  position:absolute!important;
  z-index:20!important;
  left:50%!important;
  bottom:18px!important;
  transform:translateX(-50%)!important;
  display:flex!important;
  flex-direction:column!important;
  align-items:center!important;
  gap:2px!important;
  color:var(--cyan)!important;
  font-size:11px!important;
  font-weight:900!important;
  letter-spacing:.16em!important;
  line-height:1!important;
  text-align:center!important;
  pointer-events:none!important;
}
.scroll-cue::before,.scroll-cue::after{content:none!important;display:none!important}
.scroll-cue span{
  position:relative!important;
  display:block!important;
  width:30px!important;
  height:45px!important;
  margin:0!important;
  border:0!important;
  border-radius:0!important;
  background:transparent!important;
  box-shadow:none!important;
  animation:scrollCueFloat 1.55s ease-in-out infinite!important;
}
.scroll-cue span::before,.scroll-cue span::after{
  content:""!important;
  position:absolute!important;
  left:50%!important;
  display:block!important;
  width:18px!important;
  height:18px!important;
  border:0!important;
  border-right:3px solid var(--cyan)!important;
  border-bottom:3px solid var(--cyan)!important;
  background:transparent!important;
  transform:translateX(-50%) rotate(45deg)!important;
  filter:drop-shadow(0 0 8px rgba(51,221,255,.45));
}
.scroll-cue span::before{top:0!important;opacity:.50!important}
.scroll-cue span::after{top:10px!important;opacity:1!important}

/* =========================================================
   PRODUCT LINEUP
========================================================= */
.product-ecosystem,.main-video-flow .product-ecosystem,.lineup-section{
  position:relative;
  z-index:2;
  overflow:hidden;
  padding:118px 6vw 126px!important;
  text-align:center;
  background:linear-gradient(180deg,rgba(2,8,20,.04) 0%,rgba(2,8,20,.30) 30%,rgba(2,8,20,.72) 68%,rgba(2,8,20,.95) 100%)!important;
}
.section-title-panel,.product-ecosystem .section-title-panel,.solution-ecosystem .section-title-panel,.solution-title-panel{
  display:block!important;
  width:auto!important;
  max-width:none!important;
  margin:0 auto 44px!important;
  padding:0!important;
  background:transparent!important;
  border:0!important;
  box-shadow:none!important;
  backdrop-filter:none!important;
  filter:none!important;
}
.section-title-panel::before,.section-title-panel::after,.product-ecosystem .section-title-panel::before,.product-ecosystem .section-title-panel::after,.solution-ecosystem .section-title-panel::before,.solution-ecosystem .section-title-panel::after{content:none!important;display:none!important}
.section-title-panel .section-kicker,.product-ecosystem .section-kicker,.solution-ecosystem .section-kicker,.section-kicker{
  color:var(--cyan)!important;
  font-weight:900!important;
  letter-spacing:.35em!important;
  text-shadow:none!important;
  filter:none!important;
  margin:0 0 12px!important;
}
.section-title-panel h2,.product-ecosystem h2,.solution-ecosystem h2{
  color:#fff!important;
  font-size:44px;
  text-shadow:none!important;
  filter:none!important;
  background:none!important;
  -webkit-text-fill-color:#fff!important;
  margin:0 0 42px!important;
}
.lineup-tabs{position:relative;z-index:4;display:flex;align-items:center;justify-content:center;gap:12px;margin:0 0 34px}
.lineup-tabs button{
  min-width:96px;
  height:46px;
  padding:0 24px;
  border-radius:999px;
  border:1px solid rgba(140,205,255,.42);
  background:rgba(244,250,255,.92);
  color:#08213d;
  font-weight:950;
  font-size:14px;
  letter-spacing:.02em;
  cursor:pointer;
  transition:.22s ease;
}
.lineup-tabs button.active,.lineup-tabs button:hover{color:#fff;border-color:transparent;background:linear-gradient(120deg,#1477ff,#40dcff);box-shadow:0 0 28px rgba(46,191,255,.34)}
.lineup-card-grid{
	cursor:grab;
  user-select:none;
  position:relative;
  z-index:4;

  display:grid;
  grid-auto-flow:column;
  grid-auto-columns:calc((100% - 88px) / 5);
  grid-template-columns:none;

  gap:22px;

  width:100%;
  max-width:1280px;
  margin:0 auto;

  overflow-x:auto;
  overflow-y:hidden;

  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;

  padding:18px 4px 32px;

  -webkit-overflow-scrolling:touch;
}

.lineup-card-grid,
.solution-card-grid{
  cursor:grab;
  user-select:none;
}

.lineup-card-grid.is-dragging,
.solution-card-grid.is-dragging{
  cursor:grabbing;
}

.lineup-card-grid.is-dragging a,
.solution-card-grid.is-dragging a{
  pointer-events:none;
}

.lineup-card-grid::-webkit-scrollbar{
  height:7px;
}

.lineup-card-grid::-webkit-scrollbar-track{
  background:rgba(255,255,255,.08);
  border-radius:999px;
}

.lineup-card-grid::-webkit-scrollbar-thumb{
  background:linear-gradient(90deg,#1477ff,#40dcff);
  border-radius:999px;
}

.lineup-card{
  position:relative;

  min-height:330px;
  padding:24px 24px 28px;

  border-radius:18px;
  border:1px solid rgba(125,175,220,.18);

  background:
    linear-gradient(
      180deg,
      rgba(82,105,132,.78) 0%,
      rgba(63,82,105,.72) 48%,
      rgba(42,58,78,.78) 100%
    );

  box-shadow:
    0 22px 46px rgba(0,0,0,.22),
    inset 0 1px 0 rgba(255,255,255,.12);

  color:#eaf4ff;
  text-align:left;

  overflow:hidden;
  backdrop-filter:blur(12px);

  transition:
    transform .28s ease,
    background .28s ease,
    border-color .28s ease,
    box-shadow .28s ease;
}

.lineup-card:hover{
  transform:
    translateY(-10px)
    scale(1.015);

  border-color:
    rgba(130,210,255,.56);

  background:
    linear-gradient(
      180deg,
      rgba(178,197,216,.98) 0%,
      rgba(150,172,196,.97) 52%,
      rgba(124,148,176,.96) 100%
    );

  box-shadow:
    0 24px 56px rgba(0,0,0,.24),
    0 0 0 1px rgba(170,225,255,.22),
    0 0 34px rgba(80,190,255,.28),
    0 0 72px rgba(80,190,255,.16),
    inset 0 1px 0 rgba(255,255,255,.36),
    inset 0 0 52px rgba(255,255,255,.10);
}

.lineup-card[hidden]{
  display:none!important;
}

.lineup-image{
  height:185px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 0 34px;
  overflow:visible;
}

.lineup-image img{
  display:block;
  width:auto;
  max-width:90%;
  height:auto;
  max-height:165px;
  object-fit:contain;
  object-position:center;

  filter:
    drop-shadow(0 18px 24px rgba(0,0,0,.22));

  transition:
    transform .28s ease,
    filter .28s ease;
}

.lineup-card:hover .lineup-image img{
  transform:scale(1.035);
  filter:
    drop-shadow(0 22px 30px rgba(0,0,0,.28))
    drop-shadow(0 0 14px rgba(90,180,255,.16));
}

.lineup-image.software-card img{
  border-radius:12px;
  max-width:92%;
}

.lineup-card span{
  display:block;

  color:#63cfff;

  font-weight:800;
  font-size:11px;

  letter-spacing:.18em;

  margin:0 0 14px;

  text-align:left;
  text-shadow:none;
}

.lineup-card h3{
  margin:0;

  color:#f4f8ff;

  font-size:24px;
  font-weight:750;

  letter-spacing:-.045em;
  line-height:1.15;

  text-align:left;

  text-shadow:
    0 1px 8px rgba(0,0,0,.24);
}

.lineup-card:hover h3{
  color:#ffffff;
  text-shadow:
    0 0 24px rgba(44,190,255,.24),
    0 2px 12px rgba(0,0,0,.36);
}

.view-all-btn{
  position:relative;
  z-index:4;

  display:inline-flex;
  align-items:center;
  justify-content:center;

  min-width:180px;
  height:56px;

  margin-top:46px;

  border-radius:999px;

  border:1px solid rgba(120,210,255,.26);

  background:
    linear-gradient(
      180deg,
      rgba(70,96,128,.72) 0%,
      rgba(44,62,88,.82) 100%
    );

  color:#f4fbff;

  font-size:16px;
  font-weight:800;
  letter-spacing:-.02em;

  backdrop-filter:blur(12px);

  box-shadow:
    0 14px 34px rgba(0,0,0,.22),
    inset 0 1px 0 rgba(255,255,255,.12);

  overflow:hidden;

  transition:
    transform .28s ease,
    background .28s ease,
    border-color .28s ease,
    box-shadow .28s ease;
}

.view-all-btn::before{
  content:"";

  position:absolute;
  inset:0;

  border-radius:inherit;

  background:
    radial-gradient(
      circle at top,
      rgba(120,210,255,.26),
      transparent 58%
    );

  opacity:.65;

  pointer-events:none;

  transition:opacity .28s ease;
}

.view-all-btn:hover{
  transform:
    translateY(-4px)
    scale(1.02);

  border-color:
    rgba(170,230,255,.52);

  background:
    linear-gradient(
      180deg,
      rgba(74,140,255,.96) 0%,
      rgba(44,118,255,.94) 52%,
      rgba(28,94,228,.94) 100%
    );

  box-shadow:
    0 24px 58px rgba(0,0,0,.28),
    0 0 0 1px rgba(170,230,255,.18),
    0 0 34px rgba(47,205,255,.34),
    0 0 78px rgba(47,205,255,.18),
    inset 0 1px 0 rgba(255,255,255,.24);
}

.view-all-btn:hover::before{
  opacity:1;
}

/* =========================================================
   SOLUTIONS
========================================================= */
.solution-ecosystem{
  position:relative;
  overflow:hidden;
  padding:112px 6vw 126px!important;
  text-align:center;
  background:radial-gradient(circle at 72% 18%,rgba(29,119,255,.24),transparent 30%),radial-gradient(circle at 28% 62%,rgba(51,221,255,.10),transparent 28%),linear-gradient(180deg,#020814 0%,#06172e 46%,#020814 100%)!important;
}
.solution-title-panel{max-width:900px!important}
.solution-title-panel p:last-child{margin:18px auto 0!important;max-width:760px!important;color:#cfe5ff!important;font-weight:700!important;line-height:1.75!important;font-size:17px!important;text-shadow:none!important;filter:none!important}
.solution-card-grid{
  position:relative;
  z-index:2;

  display:grid;
  grid-auto-flow:column;
  grid-auto-columns:calc((100% - 84px) / 4);
  grid-template-columns:none;

  gap:28px;

  width:100%;
  max-width:1280px;
  margin:0 auto;

  overflow-x:auto;
  overflow-y:hidden;

  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;

  padding:10px 4px 28px;

  -webkit-overflow-scrolling:touch;
  cursor:grab;
}

.solution-card-grid.is-center{
  grid-auto-flow:unset;
  grid-auto-columns:unset;
  grid-template-columns:repeat(auto-fit,minmax(280px,300px));

  justify-content:center;

  overflow-x:visible;
  scroll-snap-type:none;

  cursor:default;
}

.solution-card-grid:active,
.solution-card-grid.is-dragging{
  cursor:grabbing;
}

.solution-card-grid.is-center:active,
.solution-card-grid.is-center.is-dragging{
  cursor:default;
}

.solution-card-grid::-webkit-scrollbar{
  height:7px;
}

.solution-card-grid::-webkit-scrollbar-track{
  background:rgba(255,255,255,.08);
  border-radius:999px;
}

.solution-card-grid::-webkit-scrollbar-thumb{
  background:linear-gradient(90deg,#1477ff,#40dcff);
  border-radius:999px;
}

.solution-card{
  scroll-snap-align:start;
  
  min-height:310px;
  position:relative;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:28px;
  border-radius:22px;
  overflow:hidden;
  text-align:left;
  color:#fff;
  border:1px solid rgba(103,190,255,.25);
  background:linear-gradient(180deg,rgba(12,42,78,.42),rgba(2,10,22,.92));
  box-shadow:0 26px 58px rgba(0,0,0,.30),inset 0 1px 0 rgba(120,220,255,.16);
  transition:.25s ease;
}
.solution-card::before{content:"";position:absolute;inset:0;background:var(--solution-bg);opacity:.72;transition:.25s ease}
.solution-card::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(0,0,0,.04),rgba(0,0,0,.72))}
.solution-card:hover{transform:translateY(-9px);border-color:rgba(80,220,255,.52);box-shadow:0 34px 78px rgba(0,0,0,.42),0 0 34px rgba(44,190,255,.24)}
.solution-card:hover::before{opacity:.92;transform:scale(1.04)}
.solution-card-ai{--solution-bg:radial-gradient(circle at 34% 24%,rgba(54,217,255,.42),transparent 28%),linear-gradient(135deg,rgba(10,86,160,.88),rgba(2,10,22,.4))}
.solution-card-speed{--solution-bg:radial-gradient(circle at 28% 24%,rgba(73,145,255,.42),transparent 30%),linear-gradient(135deg,rgba(17,100,182,.88),rgba(2,10,22,.4))}
.solution-card-flow{--solution-bg:radial-gradient(circle at 42% 22%,rgba(255,141,67,.30),transparent 28%),linear-gradient(135deg,rgba(18,77,122,.86),rgba(2,10,22,.44))}
.solution-card-city{--solution-bg:radial-gradient(circle at 38% 24%,rgba(51,221,255,.38),transparent 28%),linear-gradient(135deg,rgba(10,74,140,.86),rgba(2,10,22,.44))}
.solution-icon,.solution-card h3,.solution-card p{position:relative;z-index:2}
.solution-icon{display:inline-grid;place-items:center;width:54px;height:54px;margin-bottom:auto;border-radius:14px;border:1px solid rgba(85,217,255,.42);color:#59e9ff;font-weight:950;background:rgba(2,12,27,.55);box-shadow:0 0 20px rgba(51,221,255,.18)}
.solution-card h3{margin:86px 0 12px;font-size:24px;letter-spacing:-.05em}
.solution-card p{margin:0;color:#d5eaff;font-weight:700;line-height:1.65;font-size:15px}

.future-info{position:relative;overflow:hidden;padding:118px 6vw 120px;text-align:center;background:radial-gradient(circle at 50% 42%,rgba(31,131,255,.28),transparent 34%),linear-gradient(180deg,#020814 0%,#071a34 48%,#020814 100%)}
.future-info-head{position:relative;z-index:2;max-width:920px;margin:0 auto 54px}
.future-info-head h2{
  margin:0 0 42px!important;
  color:#fff!important;
  font-size:44px!important;
  line-height:1.1;
  font-weight:950;
  letter-spacing:-.06em;
}
.future-info-head h2 span{display:block}
.future-info-head h2 span:last-child{background:linear-gradient(180deg,#58caff,#1d7cff 72%,#9fc4ff);-webkit-background-clip:text;background-clip:text;color:transparent}
.future-info-head p:last-child{max-width:760px;margin:24px auto 0;color:#d6eaff;font-size:18px;font-weight:700;line-height:1.75}

.future-orbit{
  position:relative;
  z-index:2;

  display:flex;
  align-items:center;
  justify-content:center;

  gap:0;

  max-width:1320px;
  height:360px;
  margin:0 auto;

  perspective:1400px;
}

.future-card{
  position:absolute;
  left:50%;
  top:50%;

  width:280px;
  min-height:300px;

  padding:28px;

  border-radius:18px;
  border:1px solid rgba(100,190,255,.24);

  background:
    linear-gradient(
      180deg,
      rgba(8,32,62,.72),
      rgba(2,10,22,.86)
    );

  box-shadow:
    0 26px 70px rgba(0,0,0,.32),
    inset 0 1px 0 rgba(255,255,255,.12);

  text-align:left;
  opacity:.42;

  transform:
    translate(-50%,-50%)
    translateX(var(--x))
    scale(var(--scale))
    rotateY(var(--rotate));

  z-index:var(--z);

  transition:
    transform .65s cubic-bezier(.22,.8,.22,1),
    opacity .65s ease,
    filter .65s ease,
    border-color .65s ease,
    box-shadow .65s ease;

  filter:brightness(.72) saturate(.9);
}

.future-card.is-active{
  width:360px;
  min-height:330px;

  opacity:1;

  border-color:rgba(90,210,255,.56);

  background:
    linear-gradient(
      180deg,
      rgba(15,72,132,.90),
      rgba(4,18,38,.94)
    );

  box-shadow:
    0 0 46px rgba(50,180,255,.28),
    0 34px 90px rgba(0,0,0,.42),
    inset 0 1px 0 rgba(255,255,255,.18);

  filter:brightness(1) saturate(1.1);
}

.future-card span{
  display:block;
  margin-bottom:16px;
  color:#67d9ff;
  font-size:12px;
  font-weight:900;
  letter-spacing:.08em;
}

.future-card h3{
  margin:0 0 14px;
  color:#fff;
  font-size:24px;
  letter-spacing:-.05em;
}

.future-card p{
  margin:0;
  color:#cfe5ff;
  font-weight:700;
  line-height:1.65;
  font-size:15px;
}

.future-card.is-active h3{
  font-size:28px;
}

.future-carousel-control{
  position:relative;
  z-index:3;

  display:flex;
  align-items:center;
  justify-content:center;

  gap:22px;

  margin-top:26px;
}

.future-prev,
.future-next{
  width:42px;
  height:42px;

  border-radius:50%;
  border:1px solid rgba(120,210,255,.34);

  background:rgba(255,255,255,.06);
  color:#eaf8ff;

  font-size:30px;
  line-height:1;

  cursor:pointer;

  transition:.24s ease;
}

.future-prev:hover,
.future-next:hover{
  background:rgba(31,145,255,.72);
  box-shadow:0 0 28px rgba(47,205,255,.28);
}

.future-dots{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:9px;
}

.future-dots button{
  width:9px;
  height:9px;

  padding:0;
  border:0;
  border-radius:50%;

  background:rgba(220,238,255,.32);

  cursor:pointer;

  transition:.24s ease;
}

.future-dots button.active{
  width:28px;
  border-radius:999px;
  background:#24bfff;
  box-shadow:0 0 18px rgba(36,191,255,.42);
}

.future-values{position:relative;z-index:2;display:grid;grid-template-columns:repeat(4,1fr);gap:1px;max-width:1180px;margin:58px auto 0;border-top:1px solid rgba(110,190,255,.16)}
.future-values div{padding:24px 18px;color:#dceeff}
.future-values b{display:block;color:#5fdcff;font-size:14px;letter-spacing:.08em;margin-bottom:8px}
.future-values span{font-weight:800}

.site-footer{
  position:relative;
  overflow:hidden;

  padding:82px 6vw 48px;

  background:
    radial-gradient(circle at 20% 0%,rgba(51,221,255,.08),transparent 24%),
    radial-gradient(circle at 80% 20%,rgba(11,132,255,.10),transparent 28%),
    linear-gradient(180deg,#020814 0%,#01050c 100%);

  border-top:1px solid rgba(100,190,255,.12);
}

.footer-sitemap{
  display:grid;
  grid-template-columns:repeat(4,1fr);

  gap:42px;

  max-width:1280px;
  margin:0 auto;
  padding-bottom:52px;

  border-bottom:1px solid rgba(255,255,255,.08);
}

.footer-col h4{
  margin:0 0 24px;

  color:#5fdcff;

  font-size:18px;
  font-weight:900;

  letter-spacing:-.03em;
}

.footer-col a{
  display:block;

  margin-bottom:16px;

  color:#dcecff;

  font-size:15px;
  font-weight:700;

  transition:.22s ease;
}

.footer-col a:hover{
  color:#5fdcff;
  transform:translateX(4px);
}

.footer-policy{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:14px;

  max-width:1280px;
  margin:0 auto;

  padding:24px 0;

  border-bottom:1px solid rgba(255,255,255,.08);
}

.footer-policy a{
  color:#d8e7f5;
  font-size:14px;
  font-weight:700;
}

.footer-policy span{
  color:rgba(255,255,255,.22);
}

.footer-policy .accent{
  color:#58caff;
}

.footer-bottom{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;

  gap:42px;

  max-width:1280px;
  margin:0 auto;

  padding-top:36px;
}

.footer-logo img{
  width:180px;
  opacity:.92;
}

.footer-company{
  text-align:right;
}

.footer-company p{
  margin:0 0 8px;

  color:#d7e6f4;

  font-size:15px;
  font-weight:700;

  line-height:1.7;
}

.footer-company p:last-child{
  margin-bottom:0;
}

@media(max-width:768px){

  .site-footer{
    padding:58px 22px 42px;
  }

  .footer-sitemap{
    grid-template-columns:1fr 1fr;
    gap:34px 22px;

    padding-bottom:38px;
  }

  .footer-col h4{
    margin-bottom:18px;
    font-size:17px;
  }

  .footer-col a{
    margin-bottom:12px;
    font-size:14px;
  }

  .footer-policy{
    gap:10px;
    padding:18px 0;
  }

  .footer-policy a{
    font-size:12px;
  }

  .footer-bottom{
    display:block;
    padding-top:30px;
  }

  .footer-logo img{
    width:150px;
  }

  .footer-company{
    margin-top:24px;
    text-align:left;
  }

  .footer-company p{
    font-size:13px;
    line-height:1.65;
  }
}

/* =========================================================
   TOP BUTTON
========================================================= */
.top-move-button{
  position:fixed;
  right:clamp(18px,2.2vw,34px);
  bottom:clamp(22px,3vw,42px);
  z-index:1200;
  width:58px;
  height:58px;
  border-radius:50%;
  border:1px solid rgba(51,221,255,.42);
  background:rgba(3,12,27,.78);
  color:#eaf9ff;
  font-weight:900;
  font-size:13px;
  letter-spacing:.04em;
  cursor:pointer;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transform:translateY(16px) scale(.94);
  box-shadow:0 18px 44px rgba(0,0,0,.34),0 0 26px rgba(51,221,255,.16);
  backdrop-filter:blur(16px);
  transition:.24s ease;
}
.top-move-button::before{content:"";display:block;width:10px;height:10px;border-left:2px solid currentColor;border-top:2px solid currentColor;transform:rotate(45deg);margin:2px auto 1px}
.top-move-button.is-visible{opacity:1;visibility:visible;pointer-events:auto;transform:translateY(0) scale(1)}
.top-move-button:hover{background:rgba(246,251,255,.94);border-color:rgba(0,127,216,.38);color:#007fd8;box-shadow:0 18px 44px rgba(0,0,0,.18),0 0 24px rgba(0,127,216,.16)}

/* =========================================================
   ANIMATIONS
========================================================= */
@keyframes floatProduct{
  0%,100%{
    transform:translate(-50%,-50%) translateY(0);
  }

  50%{
    transform:translate(-50%,-50%) translateY(-12px);
  }
}
@keyframes pulseRing{to{transform:scale(1.22);opacity:0}}
@keyframes productOrbit{to{transform:translate(-50%,-50%) rotate(360deg)}}
@keyframes productSpark{0%,100%{opacity:.58;transform:translate(-50%,-50%) scale(.96) rotate(0deg)}50%{opacity:1;transform:translate(-50%,-50%) scale(1.04) rotate(16deg)}}
@keyframes productGlow{0%,100%{filter:drop-shadow(0 26px 42px rgba(0,0,0,.58)) drop-shadow(0 0 28px rgba(42,205,255,.32))}50%{filter:drop-shadow(0 30px 46px rgba(0,0,0,.62)) drop-shadow(0 0 54px rgba(42,205,255,.64))}}
@keyframes ringBreath{0%,100%{opacity:.48}50%{opacity:.95}}
@keyframes scrollCueFloat{0%,100%{transform:translateY(-3px)}50%{transform:translateY(5px)}}

/* =========================================================
   RESPONSIVE: DESKTOP TO OFFCANVAS
========================================================= */
@media (max-width:1180px){
  .main-nav{display:none!important}
  .desktop-menu-toggle{display:grid!important}
  .mega-menu{display:none!important}
  .lang{margin-left:auto!important}
  .spec-panel{display:none!important}
  .compact-drawer.open{grid-template-columns:1fr;gap:0}
  .compact-drawer a{padding:13px 0;border-bottom:1px solid rgba(255,255,255,.08)}  
  .future-orbit{grid-template-columns:repeat(3,280px);justify-content:center;overflow-x:auto;padding-bottom:24px}
  .future-card,.future-card:nth-child(n){transform:none;opacity:1}  
}

/* =========================================================
   RESPONSIVE: MOBILE USING SAME INDEX
========================================================= */
@media (max-width:768px){
	.site-header{height:72px;padding:0 18px!important}
  .brand{width:110px;height:34px;flex:0 0 110px!important}
  .brand img{width:110px}
  .hero{position:relative;min-height:100svh;padding-top:72px;overflow:hidden}
  .hero-shell{position:relative;display:block;padding:88px 22px 110px;min-height:100svh;z-index:2}
  .hero-copy{position:relative;z-index:5;width:100%;max-width:62%;padding-top:22px}
  .hero-copy .eyebrow{font-size:10px;letter-spacing:.16em}
  .hero-copy h1{font-size:clamp(42px,11vw,58px);line-height:1.02;letter-spacing:-.08em}
  .hero-copy .lead{margin-top:20px;font-size:14px;line-height:1.7;max-width:95%}
  .hero-actions{margin-top:28px;display:flex;gap:12px}
  .hero-actions .btn{width:148px;min-width:148px;height:52px;font-size:14px}
	.hero-side-group{padding-right:0!important;justify-content:flex-end!important}
	.product-stage{margin-right:-180px!important;bottom:clamp(160px,calc(300px - (100vh - 600px) * .18),300px)!important}
  .spec-panel{display:none!important}
  .scroll-cue{bottom:18px!important}
  .flow-video{top:-5%!important;height:50%!important;object-position:center center!important;transform:none!important}
  .flow-dim{
    background:linear-gradient(180deg,rgba(2,8,18,.04) 0%,rgba(2,8,18,.16) 34%,rgba(2,8,18,.48) 72%,rgba(2,8,18,.86) 100%),linear-gradient(90deg,rgba(2,8,17,.66),rgba(2,8,17,.16) 50%,rgba(2,8,17,.54)),radial-gradient(circle at 50% 60%,rgba(55,165,255,.36),transparent 40%)!important;
  }
  
  .main-video-flow .product-ecosystem,.solution-ecosystem{padding:86px 22px 92px!important}
  .section-title-panel h2,.product-ecosystem h2,.solution-ecosystem h2{font-size:34px!important}
  .top-move-button{width:52px;height:52px;font-size:12px;right:18px;bottom:20px}
  
	.lineup-tabs{justify-content:center!important;flex-wrap:wrap!important;gap:8px!important;overflow:visible!important;padding:0 0 14px!important}
	.lineup-tabs button{flex:0 0 auto;min-width:max-content!important;height:40px!important;padding:0 16px!important;font-size:12px!important;white-space:nowrap!important}
	.lineup-card-grid{grid-auto-columns:42vw;gap:12px;padding:6px 0 24px}
	.lineup-card{min-height:250px!important;padding:18px 16px 22px!important}

	.solution-card-grid{display:grid!important;grid-auto-flow:column!important;grid-auto-columns:72vw!important;grid-template-columns:none!important;gap:16px!important;overflow-x:auto!important;overflow-y:hidden!important;scroll-snap-type:x mandatory!important;scroll-behavior:smooth!important;padding:8px 0 26px!important;-webkit-overflow-scrolling:touch!important;cursor:grab!important}
	.solution-card-grid.is-center{display:grid!important;grid-auto-flow:column!important;grid-auto-columns:72vw!important;grid-template-columns:none!important;justify-content:start!important;overflow-x:auto!important;scroll-snap-type:x mandatory!important;cursor:grab!important}
	.solution-card{scroll-snap-align:start!important;min-height:260px!important;padding:22px!important}
	.solution-card-grid::-webkit-scrollbar{height:7px}
	.solution-card-grid::-webkit-scrollbar-track{background:rgba(255,255,255,.08);border-radius:999px}
	.solution-card-grid::-webkit-scrollbar-thumb{background:linear-gradient(90deg,#1477ff,#40dcff);border-radius:999px}

	.future-info{padding:86px 22px 92px}
	.future-info-head h2{font-size:34px!important}
	.future-info-head p:last-child{font-size:14px!important;line-height:1.7!important}
	.future-orbit{position:relative!important;height:320px!important;display:flex!important;align-items:center!important;justify-content:center!important;overflow:hidden!important}
	.future-card{top:50%!important;left:50%!important;transform:translate(-50%,-50%) translateX(var(--x)) scale(var(--scale)) rotateY(var(--rotate))!important}
	.future-card{width:64vw!important;min-height:220px!important}
	.future-card.is-active{width:70vw!important;min-height:250px!important}
	.future-card h3{font-size:20px}
	.future-card p{font-size:13px;line-height:1.6}
	.future-carousel-control{margin-top:18px}
	.future-prev,.future-next{width:38px;height:38px;font-size:26px}
	
	.future-values{grid-template-columns:1fr 1fr;gap:0;margin-top:38px}
	.future-values div{padding:18px 12px}
	.future-values b{font-size:12px}
	.future-values span{font-size:13px}
}

/* =========================================================
   SUB PAGE 공용
========================================================= */
.sub-page{background:#020814;color:#fff;overflow-x:hidden}
.sub-hero{position:relative;min-height:520px;padding:calc(var(--header,72px) + 96px) 6vw 118px;display:flex;align-items:center;overflow:hidden;background:radial-gradient(circle at 72% 18%,rgba(29,119,255,.24),transparent 32%),radial-gradient(circle at 20% 60%,rgba(51,221,255,.12),transparent 30%),linear-gradient(135deg,#020814 0%,#0a1b34 46%,#123e70 100%)}
.sub-hero::before{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(2,8,20,.92),rgba(2,8,20,.52) 52%,rgba(2,8,20,.28)),radial-gradient(circle at 64% 48%,rgba(69,180,255,.18),transparent 30%);pointer-events:none}
.sub-hero::after{content:"";position:absolute;inset:auto -10% -35% -10%;height:58%;background:radial-gradient(ellipse at center,rgba(45,177,255,.20),transparent 58%);filter:blur(18px);pointer-events:none}
.sub-hero-inner{position:relative;z-index:2;width:100%;max-width:1280px;margin:0 auto}
.sub-hero .section-kicker{margin:0 0 26px}
.sub-hero h1{margin:0;color:#fff;font-size:clamp(58px,7vw,104px);font-weight:950;line-height:.96;letter-spacing:-.075em;text-shadow:0 16px 48px rgba(0,0,0,.38)}
.sub-hero p:last-child{margin:34px 0 0;max-width:820px;color:#d8ebff;font-size:clamp(17px,1.5vw,22px);font-weight:750;line-height:1.75}
@media(max-width:768px){.company-hero{min-height:430px;padding:calc(var(--header,72px) + 72px) 22px 82px}.company-hero h1{font-size:56px}.company-hero p:last-child{font-size:15px;line-height:1.75;margin-top:26px}}

/* =========================================================
   COMPANY PAGE
========================================================= */
.company-overview{position:relative;padding:118px 6vw 126px;background:linear-gradient(180deg,#020814 0%,#06172e 48%,#020814 100%)}
.company-overview::before{content:"";position:absolute;inset:0;background:radial-gradient(circle at 76% 10%,rgba(51,221,255,.12),transparent 28%),radial-gradient(circle at 24% 70%,rgba(29,119,255,.18),transparent 30%);pointer-events:none}
.company-overview-inner{position:relative;z-index:2;max-width:1280px;margin:0 auto;display:grid;grid-template-columns:.85fr 1.15fr;gap:72px;align-items:start}
.company-title-panel .section-kicker{margin:0 0 22px}
.company-title-panel h2{margin:0;color:#fff;font-size:clamp(42px,4.6vw,72px);font-weight:950;line-height:1.12;letter-spacing:-.075em}
.company-text-panel{padding:38px 42px;border:1px solid rgba(103,190,255,.18);border-radius:24px;background:linear-gradient(180deg,rgba(13,44,80,.56),rgba(3,13,30,.78));box-shadow:0 30px 80px rgba(0,0,0,.28),inset 0 1px 0 rgba(255,255,255,.10);backdrop-filter:blur(14px)}
.company-text-panel p{margin:0;color:#d6eaff;font-size:18px;font-weight:700;line-height:1.9;letter-spacing:-.025em}
.company-text-panel p+p{margin-top:24px}
.company-keywords{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;max-width:1280px;margin:64px auto 0;position:relative;z-index:2}
.company-keyword{padding:24px 22px;border-radius:18px;border:1px solid rgba(103,190,255,.18);background:rgba(255,255,255,.04);box-shadow:inset 0 1px 0 rgba(255,255,255,.08)}
.company-keyword b{display:block;color:#5fdcff;font-size:13px;font-weight:950;letter-spacing:.14em;margin-bottom:9px}
.company-keyword span{display:block;color:#eef8ff;font-size:16px;font-weight:850;line-height:1.45}
@media(max-width:1180px){.company-overview-inner{grid-template-columns:1fr;gap:34px}.company-keywords{grid-template-columns:repeat(2,1fr)}}
@media(max-width:768px){.company-overview{padding:78px 22px 88px}.company-title-panel h2{font-size:40px}.company-text-panel{padding:28px 22px;border-radius:20px}.company-text-panel p{font-size:15px;line-height:1.8}.company-keywords{grid-template-columns:1fr;gap:12px;margin-top:34px}.company-keyword{padding:20px}}

/* =========================================================
   IR PAGE
========================================================= */
.ir-overview{position:relative;padding:118px 6vw 126px;background:linear-gradient(180deg,#020814 0%,#06172e 48%,#020814 100%)}
.ir-overview::before{content:"";position:absolute;inset:0;background:radial-gradient(circle at 76% 10%,rgba(51,221,255,.12),transparent 28%),radial-gradient(circle at 24% 70%,rgba(29,119,255,.18),transparent 30%);pointer-events:none}
.ir-overview-inner{position:relative;z-index:2;max-width:1280px;margin:0 auto;display:grid;grid-template-columns:.85fr 1.15fr;gap:72px;align-items:start}
.ir-title-panel .section-kicker{margin:0 0 22px}
.ir-title-panel h2{margin:0;color:#fff;font-size:clamp(42px,4.6vw,72px);font-weight:950;line-height:1.12;letter-spacing:-.075em}
.ir-text-panel{padding:38px 42px;border:1px solid rgba(103,190,255,.18);border-radius:24px;background:linear-gradient(180deg,rgba(13,44,80,.56),rgba(3,13,30,.78));box-shadow:0 30px 80px rgba(0,0,0,.28),inset 0 1px 0 rgba(255,255,255,.10);backdrop-filter:blur(14px)}
.ir-text-panel p{margin:0;color:#d6eaff;font-size:18px;font-weight:700;line-height:1.9;letter-spacing:-.025em}
.ir-text-panel p+p{margin-top:24px}
.ir-download-btn{display:inline-flex;align-items:center;justify-content:center;min-width:210px;height:56px;margin-top:34px;border-radius:999px;background:linear-gradient(120deg,#1477ff,#40dcff);color:#fff;font-size:16px;font-weight:900;letter-spacing:-.02em;box-shadow:0 14px 34px rgba(0,0,0,.22),0 0 34px rgba(47,205,255,.24);transition:.25s ease}
.ir-download-btn:hover{transform:translateY(-4px);box-shadow:0 24px 58px rgba(0,0,0,.28),0 0 42px rgba(47,205,255,.38)}
@media(max-width:1180px){.ir-overview-inner{grid-template-columns:1fr;gap:34px}}
@media(max-width:768px){.ir-overview{padding:78px 22px 88px}.ir-title-panel h2{font-size:40px}.ir-text-panel{padding:28px 22px;border-radius:20px}.ir-text-panel p{font-size:15px;line-height:1.8}.ir-download-btn{width:100%;min-width:auto;height:52px;font-size:15px}}

/* =========================================================
   PRODUCTS PAGE
========================================================= */
.products-section{position:relative;padding:100px 6vw 120px;background:#fff}
.products-section-inner{max-width:1280px;margin:0 auto}
.products-filter{display:flex;align-items:center;justify-content:flex-start;gap:12px;margin:0 0 34px;padding:0}
.products-filter button{display:inline-flex;align-items:center;justify-content:center;height:44px;min-width:82px;padding:0 22px;border-radius:999px;border:1px solid rgba(14,68,118,.22);background:#fff;color:#071c38;font-size:13px;font-weight:950;letter-spacing:.02em;line-height:1;cursor:pointer;box-shadow:0 8px 24px rgba(8,38,76,.04);transition:.22s ease}
.products-filter button.active,.products-filter button:hover{color:#fff;border-color:transparent;background:linear-gradient(120deg,#1477ff,#40dcff);box-shadow:0 10px 28px rgba(46,191,255,.28)}
.products-grid{display:grid!important;grid-template-columns:repeat(3,minmax(0,1fr))!important;gap:26px!important;align-items:stretch!important;width:100%!important;max-width:1280px!important;margin:0 auto!important;overflow:visible!important}
.products-card{position:relative!important;display:flex!important;flex-direction:column!important;width:100%!important;min-width:0!important;min-height:456px!important;border-radius:16px!important;border:1px solid rgba(8,78,145,.16)!important;background:#fff!important;color:#071c38!important;overflow:hidden!important;box-shadow:0 18px 46px rgba(9,39,78,.08)!important;transition:transform .24s ease,border-color .24s ease,box-shadow .24s ease!important}
.products-card:hover{transform:translateY(-7px)!important;border-color:rgba(23,143,255,.32)!important;box-shadow:0 28px 64px rgba(9,39,78,.14),0 0 34px rgba(47,205,255,.16)!important}
.products-card[hidden]{display:none!important}
.products-thumb{height:220px!important;min-height:220px!important;display:flex!important;align-items:center!important;justify-content:center!important;padding:22px!important;background:linear-gradient(180deg,#f8fbff 0%,#eef6fc 100%)!important;overflow:hidden!important}
.products-thumb img{display:block!important;width:auto!important;max-width:92%!important;height:auto!important;max-height:170px!important;object-fit:contain!important;object-position:center!important;filter:drop-shadow(0 18px 24px rgba(0,0,0,.14))!important;transition:transform .24s ease,filter .24s ease!important}
.products-card:hover .products-thumb img{transform:scale(1.035)!important;filter:drop-shadow(0 22px 28px rgba(0,0,0,.18))!important}
.products-body{display:flex!important;flex-direction:column!important;flex:1!important;padding:30px 28px 32px!important;text-align:left!important}
.products-category{display:block!important;margin:0 0 12px!important;color:#006fd1!important;font-size:11px!important;font-weight:950!important;letter-spacing:.12em!important;line-height:1!important;text-align:left!important}
.products-body h3{margin:0 0 18px!important;color:#061b34!important;font-size:27px!important;font-weight:900!important;letter-spacing:-.045em!important;line-height:1.1!important;text-align:left!important}
.products-body p{margin:0!important;color:#607792!important;font-size:15px!important;font-weight:650!important;line-height:1.75!important;letter-spacing:-.025em!important;text-align:left!important}
.products-link{display:inline-flex!important;width:max-content!important;margin-top:auto!important;padding-top:24px!important;color:#004eaa!important;font-size:15px!important;font-weight:900!important;transition:.22s ease!important}
.products-link:hover{color:#008fd8!important;transform:translateX(4px)!important}
.products-cta{position:relative;margin:86px auto 0;max-width:1280px;padding:42px 48px;border-radius:18px;background:linear-gradient(135deg,#1477ff 0%,#26cfff 100%);color:#fff;display:flex;align-items:center;justify-content:space-between;gap:32px;overflow:hidden;box-shadow:0 26px 70px rgba(18,114,255,.22)}
.products-cta::before{content:"";position:absolute;inset:0;background:radial-gradient(circle at 88% 18%,rgba(255,255,255,.28),transparent 30%);pointer-events:none}
.products-cta-text{position:relative;z-index:2}
.products-cta-text b{display:block;margin-bottom:10px;font-size:13px;font-weight:950;letter-spacing:.16em;color:#dffaff}
.products-cta-text p{margin:0;font-size:22px;font-weight:850;line-height:1.55;letter-spacing:-.04em}
.products-cta a{position:relative;z-index:2;display:inline-flex;align-items:center;justify-content:center;min-width:138px;height:48px;border-radius:8px;background:#03152c;color:#fff;font-size:15px;font-weight:900;transition:.22s ease}
.products-cta a:hover{transform:translateY(-3px);box-shadow:0 16px 34px rgba(0,0,0,.22)}
@media(max-width:1180px){.products-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important}.products-cta{align-items:flex-start;flex-direction:column}}
@media(max-width:768px){.products-section{padding:72px 22px 88px}.products-filter{justify-content:center;flex-wrap:wrap;gap:8px;margin-bottom:28px}.products-filter button{height:40px;min-width:max-content;padding:0 16px;font-size:12px}.products-grid{grid-template-columns:1fr!important;gap:18px!important}.products-card{min-height:420px!important;border-radius:15px!important}.products-thumb{height:210px!important;min-height:210px!important;padding:20px!important}.products-thumb img{max-height:175px!important}.products-body{padding:26px 24px 28px!important}.products-body h3{font-size:24px!important}.products-body p{font-size:14px!important;line-height:1.7!important}.products-cta{margin-top:54px;padding:32px 24px;border-radius:16px}.products-cta-text p{font-size:18px}.products-cta a{width:100%}}

/* =========================================================
   FINAL OVERRIDES FROM CURRENT PROJECT
========================================================= */

/* =========================================================
   PRODUCTS PAGE
========================================================= */
.products-overview{position:relative;padding:78px 6vw 105px;background:linear-gradient(180deg,#020814 0%,#06172e 48%,#020814 100%);overflow:hidden}.products-overview-inner{max-width:1280px;margin:0 auto}.products-tabs{position:relative;z-index:3;display:flex;align-items:center;justify-content:center;gap:12px;margin:0 0 34px;padding:0}.products-tabs button{min-width:96px;height:46px;padding:0 24px;border-radius:999px;border:1px solid rgba(140,205,255,.42);background:rgba(244,250,255,.92);color:#08213d;font-weight:950;font-size:14px;letter-spacing:.02em;cursor:pointer;transition:.22s ease}.products-tabs button.active,.products-tabs button:hover{color:#fff;border-color:transparent;background:linear-gradient(120deg,#1477ff,#40dcff);box-shadow:0 0 28px rgba(46,191,255,.34)}.products-grid{position:relative;z-index:3;display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:22px}.products-card{position:relative;min-height:360px;padding:24px 24px 26px;border-radius:18px;border:1px solid rgba(125,175,220,.18);background:linear-gradient(180deg,rgba(82,105,132,.78) 0%,rgba(63,82,105,.72) 48%,rgba(42,58,78,.78) 100%);box-shadow:0 22px 46px rgba(0,0,0,.22),inset 0 1px 0 rgba(255,255,255,.12);color:#eaf4ff;text-align:left;overflow:hidden;backdrop-filter:blur(12px);transition:transform .28s ease,background .28s ease,border-color .28s ease,box-shadow .28s ease}.products-card:hover{transform:translateY(-10px) scale(1.015);border-color:rgba(130,210,255,.56);background:linear-gradient(180deg,rgba(178,197,216,.98) 0%,rgba(150,172,196,.97) 52%,rgba(124,148,176,.96) 100%);box-shadow:0 24px 56px rgba(0,0,0,.24),0 0 0 1px rgba(170,225,255,.22),0 0 34px rgba(80,190,255,.28),0 0 72px rgba(80,190,255,.16),inset 0 1px 0 rgba(255,255,255,.36),inset 0 0 52px rgba(255,255,255,.10)}.products-card[hidden]{display:none!important}.products-card-image{height:165px;display:flex;align-items:center;justify-content:center;margin:0 0 24px;overflow:visible}.products-card-image img{display:block;width:auto;max-width:88%;height:auto;max-height:138px;object-fit:contain;object-position:center;filter:drop-shadow(0 18px 24px rgba(0,0,0,.22));transition:transform .28s ease,filter .28s ease}.products-card:hover .products-card-image img{transform:scale(1.035);filter:drop-shadow(0 22px 30px rgba(0,0,0,.28)) drop-shadow(0 0 14px rgba(90,180,255,.16))}.products-card-body{padding:0}.products-card-body span{display:block;color:#63cfff;font-weight:800;font-size:11px;letter-spacing:.18em;margin:0 0 12px;text-align:left;text-shadow:none}.products-card-body h3{margin:0 0 12px;color:#f4f8ff;font-size:23px;font-weight:750;letter-spacing:-.045em;line-height:1.15;text-align:left;text-shadow:0 1px 8px rgba(0,0,0,.24)}.products-card:hover .products-card-body h3{color:#fff;text-shadow:0 0 24px rgba(44,190,255,.24),0 2px 12px rgba(0,0,0,.36)}.products-card-body p{margin:0;color:#dcecff;font-size:14px;font-weight:700;line-height:1.62;letter-spacing:-.035em}.products-card-body b{display:inline-flex;margin-top:16px;color:#64dcff;font-size:13px;font-weight:900}

/* =========================================================
   PRODUCT DETAIL PAGE
========================================================= */
.product-detail-hero{min-height:720px}.product-detail-inner{display:grid;grid-template-columns:minmax(0,48%) minmax(0,52%);align-items:center;gap:42px;max-width:1280px;margin:0 auto;text-align:left}.product-detail-copy{position:relative;z-index:2;max-width:560px}.product-detail-actions{display:flex;align-items:center;gap:12px;margin-top:32px}.product-detail-actions a{display:inline-flex;align-items:center;justify-content:center;height:48px;min-width:128px;padding:0 24px;border-radius:999px;border:1px solid rgba(130,210,255,.34);background:rgba(255,255,255,.06);color:#f4fbff;font-size:14px;font-weight:900;transition:.24s ease}.product-detail-actions a:first-child,.product-detail-actions a:hover{border-color:transparent;background:linear-gradient(120deg,#1477ff,#40dcff);box-shadow:0 0 30px rgba(46,191,255,.32)}.product-detail-visual{position:relative;display:flex;align-items:center;justify-content:center;min-height:420px}.product-detail-visual img{position:relative;z-index:3;display:block;width:min(380px,76%);height:auto;filter:drop-shadow(0 30px 48px rgba(0,0,0,.52)) drop-shadow(0 0 28px rgba(42,205,255,.24))}.product-detail-rings{position:absolute;left:50%;top:50%;z-index:1;width:420px;height:420px;transform:translate(-50%,-50%);pointer-events:none}.product-detail-rings i{position:absolute;left:50%;top:50%;border:1px solid rgba(72,190,255,.22);border-radius:50%;transform:translate(-50%,-50%);box-shadow:0 0 30px rgba(0,140,255,.12);animation:ringBreath 4.2s ease-in-out infinite}.product-detail-rings i:nth-child(1){width:220px;height:220px}.product-detail-rings i:nth-child(2){width:310px;height:310px;animation-delay:.8s}.product-detail-rings i:nth-child(3){width:420px;height:420px;animation-delay:1.6s}.product-detail-info{padding:90px 6vw;background:#f5f9ff;color:#061323}.product-detail-info-inner{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:22px;max-width:1280px;margin:0 auto}.product-detail-info-inner.is-two{grid-template-columns:repeat(2,minmax(0,1fr));max-width:860px}.product-detail-info article{min-height:250px;padding:34px;border-radius:22px;background:#fff;border:1px solid rgba(14,68,118,.12);box-shadow:0 18px 42px rgba(8,38,76,.08)}.product-detail-info article span{display:block;margin:0 0 18px;color:#0b84ff;font-size:12px;font-weight:950;letter-spacing:.16em}.product-detail-info article h2{margin:0 0 16px;color:#061323;font-size:26px;font-weight:950;letter-spacing:-.055em}.product-detail-info article p{margin:0 0 8px;color:#52657c;font-size:15px;font-weight:700;line-height:1.7;letter-spacing:-.035em}.product-detail-info article p:last-child{margin-bottom:0}.product-detail-gallery{padding:100px 6vw 120px;background:linear-gradient(180deg,#020814 0%,#06172e 48%,#020814 100%)}.product-detail-gallery-head{text-align:center;margin:0 auto 46px}.product-detail-gallery-head h2{margin:0;color:#fff;font-size:44px;font-weight:950;letter-spacing:-.06em}.product-detail-gallery-grid{display:grid;grid-template-columns:repeat(6,minmax(0,1fr));gap:16px;max-width:1280px;margin:0 auto}.product-detail-gallery-grid div{display:grid;place-items:center;height:190px;padding:16px;border-radius:18px;border:1px solid rgba(125,175,220,.18);background:linear-gradient(180deg,rgba(82,105,132,.78) 0%,rgba(42,58,78,.78) 100%);box-shadow:0 18px 40px rgba(0,0,0,.22),inset 0 1px 0 rgba(255,255,255,.12);overflow:hidden}.product-detail-gallery-grid img{display:block;width:100%;height:100%;max-width:100%;max-height:100%;object-fit:contain;filter:drop-shadow(0 18px 24px rgba(0,0,0,.28))}

/* =========================================================
   SOLUTIONS / SELECTION / TECHNOLOGY
========================================================= */
.solution-detail-grid,.selection-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:22px;padding:90px 0}.solution-detail,.selection-card{min-height:260px;padding:34px;border-radius:22px;background:#fff;border:1px solid rgba(14,68,118,.12);box-shadow:0 18px 42px rgba(8,38,76,.08);transition:.24s ease}.selection-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.solution-detail:hover,.selection-card:hover{transform:translateY(-8px);box-shadow:0 24px 52px rgba(8,38,76,.12)}.solution-detail h2,.selection-card h2{margin:0 0 16px;color:#061323;font-size:30px;font-weight:950;letter-spacing:-.06em}.selection-card span{display:block;margin:0 0 18px;color:#0b84ff;font-size:13px;font-weight:950;letter-spacing:.18em}.solution-detail p,.selection-card p{margin:0 0 20px;color:#52657c;font-size:15px;font-weight:700;line-height:1.7}.text-link{display:inline-flex;color:#0b84ff;font-size:14px;font-weight:950}.tech-layout{display:grid;grid-template-columns:1.2fr .8fr .8fr .8fr;gap:20px;padding:90px 0}.tech-main,.tech-card{padding:34px;border-radius:22px;background:#fff;border:1px solid rgba(14,68,118,.12);box-shadow:0 18px 42px rgba(8,38,76,.08)}.tech-main h2{margin:0 0 16px;color:#061323;font-size:36px;font-weight:950}.tech-card h3{margin:0 0 14px;color:#061323;font-size:22px;font-weight:950}.tech-main p,.tech-card p{margin:0;color:#52657c;font-size:15px;font-weight:700;line-height:1.7}.company-overview,.ir-overview{padding:90px 6vw;background:#f5f9ff;color:#061323}.company-overview-inner,.ir-overview-inner{display:grid;grid-template-columns:minmax(0,42%) minmax(0,58%);gap:42px;max-width:1280px;margin:0 auto}.company-title-panel h2,.ir-title-panel h2{margin:0;color:#061323;font-size:44px;font-weight:950;letter-spacing:-.065em;line-height:1.16}.company-text-panel p,.ir-text-panel p{margin:0 0 18px;color:#52657c;font-size:16px;font-weight:750;line-height:1.8}.company-keywords{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:16px;max-width:1280px;margin:42px auto 0}.company-keyword{padding:24px;border-radius:18px;background:#fff;border:1px solid rgba(14,68,118,.12);box-shadow:0 14px 34px rgba(8,38,76,.06)}.company-keyword b{display:block;color:#0b84ff;font-size:13px;font-weight:950;letter-spacing:.12em}.company-keyword span{display:block;margin-top:8px;color:#061323;font-size:15px;font-weight:900}.ir-download-btn{display:inline-flex;align-items:center;justify-content:center;height:48px;margin-top:10px;padding:0 24px;border-radius:999px;background:linear-gradient(120deg,#1477ff,#40dcff);color:#fff;font-size:14px;font-weight:950}

/* =========================================================
   CERTIFICATION / PATENT
========================================================= */
.cert-overview-section{padding:90px 6vw 110px}.section-head{margin:0 auto 28px}.section-head h2{margin:0 0 12px;color:#061323;font-size:42px;font-weight:950;letter-spacing:-.06em}.section-brief{margin:0;color:#52657c;font-size:16px;font-weight:750;line-height:1.7}.product-category-tabs,.cert-category-tabs{display:flex;gap:10px;margin:0 auto 28px}.product-category-tabs button,.cert-category-tabs button{height:42px;min-width:84px;padding:0 18px;border:1px solid rgba(14,68,118,.18);border-radius:999px;background:#fff;color:#061323;font-size:13px;font-weight:950;cursor:pointer}.product-category-tabs button.active,.cert-category-tabs button.active,.product-category-tabs button:hover,.cert-category-tabs button:hover{border-color:transparent;background:linear-gradient(120deg,#1477ff,#40dcff);color:#fff}.cert-overview-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:22px}.doc-card{padding:24px;border-radius:22px;background:#fff;border:1px solid rgba(14,68,118,.12);box-shadow:0 18px 42px rgba(8,38,76,.08)}.doc-thumb{height:220px;display:grid;place-items:center;padding:16px;border-radius:16px;background:#f2f7ff;overflow:hidden}.doc-thumb img{max-width:100%;max-height:100%;object-fit:contain}.doc-meta{display:flex;align-items:center;justify-content:space-between;margin:18px 0 12px}.doc-meta span{color:#0b84ff;font-size:12px;font-weight:950}.doc-meta strong{color:#061323;font-size:12px;font-weight:950}.doc-card h3{margin:0 0 12px;color:#061323;font-size:22px;font-weight:950}.doc-card p{margin:0 0 16px;color:#52657c;font-size:14px;font-weight:700;line-height:1.7}.patent-modern-card{display:grid;grid-template-columns:minmax(0,44%) minmax(0,56%);gap:36px;align-items:center;padding:90px 0}.doc-frame{padding:22px;border-radius:22px;background:#fff;border:1px solid rgba(14,68,118,.12);box-shadow:0 18px 42px rgba(8,38,76,.08)}.doc-frame img{width:100%;height:auto}.patent-info span{display:block;margin:0 0 14px;color:#0b84ff;font-size:13px;font-weight:950;letter-spacing:.16em}.patent-info h2{margin:0 0 16px;color:#061323;font-size:38px;font-weight:950;letter-spacing:-.06em}.patent-info p{margin:0;color:#52657c;font-size:16px;font-weight:750;line-height:1.8}

/* =========================================================
   CONTACT PAGE
========================================================= */
.contact-overview{padding:90px 6vw 110px;background:#f5f9ff;color:#061323}.contact-overview-inner{display:grid;grid-template-columns:minmax(0,68%) minmax(300px,32%);gap:28px;max-width:1280px;margin:0 auto}.contact-form{padding:36px;border-radius:24px;background:#fff;border:1px solid rgba(14,68,118,.12);box-shadow:0 18px 42px rgba(8,38,76,.08)}.contact-form-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px}.contact-form label{display:flex;flex-direction:column;gap:9px;color:#061323;font-size:14px;font-weight:900;letter-spacing:-.03em}.contact-form input,.contact-form select,.contact-form textarea{width:100%;min-height:48px;padding:0 14px;border:1px solid rgba(14,68,118,.18);border-radius:12px;background:#f8fbff;color:#061323;font-size:14px;font-weight:700;outline:none}.contact-form textarea{min-height:180px;padding:14px;resize:vertical}.contact-form .full{margin-top:18px}.contact-form .agree{flex-direction:row;align-items:center;margin-top:18px;font-size:13px;color:#52657c}.contact-form .agree input{width:18px;min-height:18px}.contact-submit{display:inline-flex;align-items:center;justify-content:center;height:48px;min-width:128px;margin-top:20px;padding:0 24px;border:0;border-radius:999px;background:linear-gradient(120deg,#1477ff,#40dcff);color:#fff;font-size:14px;font-weight:950;cursor:pointer;box-shadow:0 10px 28px rgba(46,191,255,.28)}.form-note{margin:18px 0 0;color:#6d7d91;font-size:13px;font-weight:700;line-height:1.6}.contact-side{padding:36px;border-radius:24px;background:linear-gradient(180deg,#071d38,#03101f);color:#fff;border:1px solid rgba(125,175,220,.18);box-shadow:0 18px 42px rgba(8,38,76,.12)}.contact-side h2{margin:0 0 22px;font-size:34px;font-weight:950;letter-spacing:-.05em}.contact-side p{margin:0 0 16px;color:#d8ecff;font-size:15px;font-weight:800;line-height:1.65}.contact-side strong{color:#64dcff;margin-right:8px}

/* =========================================================
   POLICY PAGE
========================================================= */
.policy-page{padding:90px 0;max-width:980px}.policy-page h2{margin:0 0 16px;color:#061323;font-size:28px;font-weight:950;letter-spacing:-.055em}.policy-page p{margin:0 0 34px;color:#52657c;font-size:16px;font-weight:750;line-height:1.85}


/* =========================================================
   FINAL RESPONSIVE OVERRIDES
========================================================= */
@media(max-width:1180px){.products-grid{grid-template-columns:repeat(3,minmax(0,1fr))}.product-detail-inner{grid-template-columns:1fr;gap:34px;text-align:center}.product-detail-copy{max-width:720px;margin:0 auto}.product-detail-actions{justify-content:center}.product-detail-visual{min-height:340px}.product-detail-visual img{width:min(320px,68%)}.product-detail-info-inner{grid-template-columns:repeat(3,minmax(0,1fr))}.product-detail-info-inner.is-two{grid-template-columns:repeat(2,minmax(0,1fr))}.product-detail-gallery-grid{grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}.solution-detail-grid,.tech-layout{grid-template-columns:repeat(2,minmax(0,1fr))}.selection-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.company-overview-inner,.ir-overview-inner{grid-template-columns:1fr}.company-keywords{grid-template-columns:repeat(2,minmax(0,1fr))}.contact-overview-inner{grid-template-columns:1fr}.contact-side{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px}.contact-side .section-kicker,.contact-side h2{grid-column:1/-1}}
@media(max-width:768px){.products-overview{padding:54px 20px 76px}.products-tabs{justify-content:flex-start;gap:8px;margin:0 0 22px;overflow-x:auto}.products-tabs button{min-width:82px;height:40px;padding:0 18px;font-size:12px}.products-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}.products-card{min-height:310px;padding:18px;border-radius:16px}.products-card-image{height:120px;margin:0 0 18px}.products-card-image img{max-height:92px}.products-card-body h3{font-size:20px}.products-card-body p{font-size:13px;line-height:1.55}.product-detail-hero{min-height:auto}.product-detail-inner{gap:22px}.product-detail-actions{gap:10px;margin-top:26px}.product-detail-actions a{height:42px;min-width:108px;padding:0 18px;font-size:13px}.product-detail-visual{min-height:260px}.product-detail-visual img{width:min(240px,72%)}.product-detail-rings{width:280px;height:280px}.product-detail-rings i:nth-child(1){width:140px;height:140px}.product-detail-rings i:nth-child(2){width:210px;height:210px}.product-detail-rings i:nth-child(3){width:280px;height:280px}.product-detail-info{padding:60px 20px}.product-detail-info-inner,.product-detail-info-inner.is-two{grid-template-columns:1fr;gap:14px;max-width:100%}.product-detail-info article{min-height:auto;padding:24px}.product-detail-info article h2{font-size:22px}.product-detail-gallery{padding:70px 20px 86px}.product-detail-gallery-head{margin:0 0 32px}.product-detail-gallery-head h2{font-size:34px}.product-detail-gallery-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}.product-detail-gallery-grid div{height:150px;padding:12px}.product-detail-gallery-grid img{max-height:110px}.solution-detail-grid,.selection-grid,.tech-layout,.cert-overview-grid{grid-template-columns:1fr;padding:60px 0;gap:14px}.solution-detail,.selection-card,.tech-main,.tech-card{min-height:auto;padding:24px}.company-overview,.ir-overview,.cert-overview-section{padding:60px 20px}.company-title-panel h2,.ir-title-panel h2,.section-head h2{font-size:32px}.company-keywords{grid-template-columns:1fr}.patent-modern-card{grid-template-columns:1fr;padding:60px 0}.patent-info h2{font-size:30px}.contact-overview{padding:60px 20px 80px}.contact-form{padding:24px;border-radius:18px}.contact-form-grid{grid-template-columns:1fr;gap:14px}.contact-form input,.contact-form select{min-height:44px}.contact-form textarea{min-height:150px}.contact-side{display:block;padding:24px;border-radius:18px}.contact-side h2{font-size:28px}.policy-page{padding:60px 20px}}

/* =========================================================
   PRODUCTS PAGE CARD STYLE SYNC
========================================================= */
.products-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:22px;max-width:1280px;margin:0 auto}
.products-card{position:relative;min-height:360px;padding:24px 24px 26px;border-radius:18px;border:1px solid rgba(125,175,220,.18)!important;background:linear-gradient(180deg,rgba(82,105,132,.78) 0%,rgba(63,82,105,.72) 48%,rgba(42,58,78,.78) 100%)!important;box-shadow:0 22px 46px rgba(0,0,0,.22),inset 0 1px 0 rgba(255,255,255,.12)!important;color:#eaf4ff!important;text-align:left;overflow:hidden;backdrop-filter:blur(12px);transition:transform .28s ease,background .28s ease,border-color .28s ease,box-shadow .28s ease}
.products-card:hover{transform:translateY(-10px) scale(1.015);border-color:rgba(130,210,255,.56)!important;background:linear-gradient(180deg,rgba(178,197,216,.98) 0%,rgba(150,172,196,.97) 52%,rgba(124,148,176,.96) 100%)!important;box-shadow:0 24px 56px rgba(0,0,0,.24),0 0 0 1px rgba(170,225,255,.22),0 0 34px rgba(80,190,255,.28),0 0 72px rgba(80,190,255,.16),inset 0 1px 0 rgba(255,255,255,.36),inset 0 0 52px rgba(255,255,255,.10)!important}
.products-card-image{height:165px;display:flex;align-items:center;justify-content:center;margin:0 0 24px;overflow:visible;background:transparent!important}
.products-card-image img{display:block;width:auto;max-width:88%;height:auto;max-height:138px;object-fit:contain;object-position:center;filter:drop-shadow(0 18px 24px rgba(0,0,0,.22));transition:transform .28s ease,filter .28s ease}
.products-card:hover .products-card-image img{transform:scale(1.035);filter:drop-shadow(0 22px 30px rgba(0,0,0,.28)) drop-shadow(0 0 14px rgba(90,180,255,.16))}
.products-card-body{padding:0;background:transparent!important}
.products-card-body span{display:block;color:#63cfff!important;font-weight:800;font-size:11px;letter-spacing:.18em;margin:0 0 12px;text-align:left;text-shadow:none}
.products-card-body h3{margin:0 0 12px;color:#f4f8ff!important;font-size:23px;font-weight:850;letter-spacing:-.045em;line-height:1.15;text-align:left;text-shadow:0 1px 8px rgba(0,0,0,.24)}
.products-card:hover .products-card-body h3{color:#fff!important;text-shadow:0 0 24px rgba(44,190,255,.24),0 2px 12px rgba(0,0,0,.36)}
.products-card-body p{margin:0;color:#dcecff!important;font-size:14px;font-weight:700;line-height:1.62;letter-spacing:-.035em}
.products-card-body b{display:inline-flex;margin-top:16px;color:#64dcff!important;font-size:13px;font-weight:900}
@media(max-width:1180px){.products-grid{grid-template-columns:repeat(3,minmax(0,1fr))}}
@media(max-width:768px){.products-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}.products-card{min-height:310px;padding:18px;border-radius:16px}.products-card-image{height:120px;margin:0 0 18px}.products-card-image img{max-height:92px}.products-card-body h3{font-size:20px}.products-card-body p{font-size:13px;line-height:1.55}}

/* =========================================================
   SUB PAGE CARD STYLE SYNC
========================================================= */
.company-text-panel,.ir-text-panel,.tech-main,.tech-card,.company-keyword,.solution-detail,.selection-card{border:1px solid rgba(125,175,220,.18)!important;background:linear-gradient(180deg,rgba(82,105,132,.78) 0%,rgba(63,82,105,.72) 48%,rgba(42,58,78,.78) 100%)!important;box-shadow:0 22px 46px rgba(0,0,0,.22),inset 0 1px 0 rgba(255,255,255,.12)!important;color:#eaf4ff!important;backdrop-filter:blur(12px)}
.company-text-panel,.ir-text-panel{padding:34px;border-radius:22px}
.tech-main,.tech-card,.company-keyword,.solution-detail,.selection-card{border-radius:22px}
.company-text-panel p,.ir-text-panel p,.tech-main p,.tech-card p,.solution-detail p,.selection-card p{color:#dcecff!important}
.company-title-panel h2,.ir-title-panel h2{color:#061323}
.tech-main h2,.tech-card h3,.solution-detail h2,.selection-card h2{color:#f4f8ff!important;text-shadow:0 1px 8px rgba(0,0,0,.24)}
.company-keyword b,.selection-card span{color:#63cfff!important}
.company-keyword span{color:#f4f8ff!important}
.tech-layout{grid-template-columns:repeat(3,minmax(0,1fr));gap:22px;padding:90px 0}
.tech-main{grid-column:auto}
.tech-main,.tech-card{min-height:280px;padding:34px}
.tech-main h2{margin:0 0 16px;font-size:25px;font-weight:950;letter-spacing:-.055em}
.tech-card h3{margin:0 0 16px;font-size:25px;font-weight:950;letter-spacing:-.055em}
.tech-main .section-kicker,.tech-main .eyebrow,.tech-card .section-kicker,.tech-card .eyebrow{color:#63cfff!important}
.company-overview,.ir-overview{background:#f5f9ff}
.ir-download-btn{box-shadow:0 10px 28px rgba(46,191,255,.28)}
@media(max-width:1180px){.tech-layout{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:768px){.company-text-panel,.ir-text-panel,.tech-main,.tech-card,.company-keyword,.solution-detail,.selection-card{padding:24px;border-radius:18px}.tech-layout{grid-template-columns:1fr;gap:14px;padding:60px 0}.tech-main,.tech-card{min-height:auto}.tech-main h2,.tech-card h3{font-size:22px}}

/* WAVYTEC FOOTER V2.1 */
.site-footer-v21{padding:52px 4vw 24px;background:radial-gradient(circle at 15% 0%,rgba(36,191,255,.07),transparent 28%),linear-gradient(180deg,#020a15,#01050c);border-top:1px solid rgba(95,220,255,.13)}
.footer-v21-main{max-width:1440px;margin:0 auto;display:grid;grid-template-columns:minmax(230px,290px) 1fr;gap:42px;align-items:stretch}
.footer-v21-brand{padding:12px 36px 8px 0;border-right:1px solid rgba(255,255,255,.14)}
.footer-v21-brand img{width:190px;height:auto;display:block}.footer-v21-brand p{margin:24px 0 22px;color:#e7f0fa;font-size:15px;font-weight:700;line-height:1.65}
.footer-v21-social{display:flex;gap:12px}.footer-social-link{width:44px;height:44px;border:1px solid rgba(107,203,255,.55);border-radius:50%;display:grid;place-items:center;color:#fff;transition:.22s ease}.footer-social-link svg{width:21px;height:21px;fill:currentColor}.footer-social-link:hover{color:#5fdcff;border-color:#5fdcff;transform:translateY(-2px);box-shadow:0 0 18px rgba(36,191,255,.2)}.footer-youtube-placeholder{border-color:rgba(255,255,255,.35)}
.footer-v21-cards{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}.footer-v21-card{position:relative;min-height:218px;padding:24px 20px 20px;border:1px solid rgba(255,255,255,.13);border-radius:10px;background:linear-gradient(145deg,rgba(255,255,255,.035),rgba(255,255,255,.012));display:flex;flex-direction:column;align-items:flex-start;color:#fff;transition:.22s ease}.footer-v21-card:hover{border-color:rgba(36,191,255,.6);box-shadow:0 10px 26px rgba(0,0,0,.22)}
.footer-v21-icon{width:48px;height:48px;border:1px solid #24bfff;border-radius:50%;display:grid;place-items:center;color:#66b9ff;margin-bottom:18px}.footer-v21-icon svg{width:25px;height:25px;fill:currentColor}.footer-v21-label{color:#fff;font-size:18px;font-weight:900;margin-bottom:14px}.footer-v21-card strong,.footer-v21-primary{color:#66adff;font-size:23px;font-weight:900;line-height:1.25;word-break:break-word}.footer-v21-secondary{margin-top:8px;color:#eef6ff;font-size:16px;font-weight:700;word-break:break-all}.footer-v21-card p{margin:0;color:#e2edf8;font-size:15px;font-weight:700;line-height:1.65}.footer-v21-action{margin-top:auto;width:100%;min-height:42px;padding:9px 12px;border:1px solid rgba(255,255,255,.24);border-radius:6px;color:#eef7ff;display:flex;align-items:center;justify-content:center;gap:8px;font-size:14px;font-weight:800}.footer-v21-action svg{width:16px;height:16px;fill:currentColor}.footer-v21-action:hover{color:#5fdcff;border-color:#24bfff}.footer-v21-bottom{max-width:1440px;margin:28px auto 0;padding-top:20px;border-top:1px solid rgba(255,255,255,.12);display:flex;align-items:center;justify-content:space-between;gap:24px}.footer-v21-bottom p{margin:0;color:#dfeaf5;font-size:14px;font-weight:700}.footer-v21-bottom nav{display:flex;align-items:center;flex-wrap:wrap;gap:14px}.footer-v21-bottom a{color:#dfeaf5;font-size:14px;font-weight:700}.footer-v21-bottom a:hover{color:#5fdcff}.footer-v21-bottom span{color:rgba(255,255,255,.28)}
@media(max-width:1100px){.footer-v21-main{grid-template-columns:220px 1fr;gap:28px}.footer-v21-cards{grid-template-columns:repeat(2,1fr)}.footer-v21-card{min-height:200px}}
@media(max-width:768px){.site-footer-v21{padding:38px 22px 24px}.footer-v21-main{display:block}.footer-v21-brand{padding:0 0 24px;border-right:0;border-bottom:1px solid rgba(255,255,255,.13)}.footer-v21-brand img{width:165px}.footer-v21-brand p{margin:16px 0}.footer-social-link{width:40px;height:40px}.footer-v21-cards{display:block}.footer-v21-card{min-height:0;padding:15px 0;border:0;border-bottom:1px solid rgba(255,255,255,.12);border-radius:0;background:none;display:grid;grid-template-columns:42px 105px minmax(0,1fr);grid-template-rows:auto auto;column-gap:12px;align-items:center}.footer-v21-card:hover{box-shadow:none;border-color:rgba(255,255,255,.12)}.footer-v21-icon{grid-row:1/3;width:38px;height:38px;margin:0}.footer-v21-icon svg{width:20px;height:20px}.footer-v21-label{grid-column:2;margin:0;font-size:15px}.footer-v21-card strong,.footer-v21-primary{grid-column:3;font-size:19px}.footer-v21-secondary{grid-column:3;margin:3px 0 0;font-size:14px}.footer-v21-card p{grid-column:3;font-size:14px}.footer-v21-action{grid-column:3;margin-top:8px;width:auto;justify-self:start}.footer-v21-bottom{display:block;margin-top:22px}.footer-v21-bottom p{margin-bottom:14px}.footer-v21-bottom nav{gap:9px}.footer-v21-bottom a{font-size:12px}}
@media(max-width:420px){.footer-v21-card{grid-template-columns:38px 86px minmax(0,1fr);column-gap:9px}.footer-v21-card strong,.footer-v21-primary{font-size:17px}.footer-v21-action{font-size:12px;padding:7px 9px}.footer-v21-bottom nav span{display:none}.footer-v21-bottom nav{display:grid;grid-template-columns:1fr 1fr;gap:8px 14px}}

/* WAVYTEC FOOTER V2.2 */
.footer-v22-cards{grid-template-columns:repeat(3,minmax(0,1fr));gap:16px}
.footer-v22-main-contact,.footer-v22-sales,.footer-v22-address{min-width:0}
.footer-v22-contact-line{display:block;max-width:100%;white-space:nowrap;word-break:normal;overflow-wrap:normal}
.footer-v22-email{margin-top:10px;color:#eef6ff;font-size:18px;font-weight:800;line-height:1.3}
.footer-v22-nowrap{white-space:nowrap;word-break:normal;overflow-wrap:normal}
.footer-v22-address p{max-width:100%}
.footer-v22-map{margin-top:auto}
@media (min-width:1101px){
  .footer-v21-main{grid-template-columns:minmax(220px,270px) minmax(0,1fr);gap:30px}
  .footer-v21-brand{padding-right:28px}
  .footer-v21-card{padding-left:18px;padding-right:18px}
  .footer-v21-card strong,.footer-v21-primary{font-size:clamp(19px,1.45vw,23px);white-space:nowrap;word-break:normal}
  .footer-v22-email{font-size:clamp(16px,1.2vw,19px)}
  .footer-v21-secondary{font-size:clamp(14px,1vw,16px)}
}
@media (max-width:1100px) and (min-width:769px){
  .footer-v21-main{grid-template-columns:190px minmax(0,1fr);gap:22px}
  .footer-v22-cards{grid-template-columns:repeat(3,minmax(0,1fr));gap:10px}
  .footer-v21-card{min-height:210px;padding:20px 14px}
  .footer-v21-card strong,.footer-v21-primary{font-size:18px;white-space:nowrap;word-break:normal}
  .footer-v22-email,.footer-v21-secondary{font-size:13px;white-space:nowrap;word-break:normal}
  .footer-v21-label{font-size:16px}
}
@media(max-width:768px){
  .footer-v22-cards{display:block}
  .footer-v22-main-contact{grid-template-rows:auto auto auto}
  .footer-v22-main-contact .footer-v21-icon{grid-row:1/4}
  .footer-v22-contact-line{grid-column:3;white-space:nowrap}
  .footer-v22-email{margin-top:3px;font-size:14px}
  .footer-v22-map{grid-column:3;margin-top:8px;width:auto;justify-self:start}
}
@media(max-width:420px){
  .footer-v22-contact-line,.footer-v22-nowrap{white-space:normal;overflow-wrap:anywhere}
}


/* v2.3 footer inquiry updates */
.footer-v22-main-contact .footer-v23-contact-button{margin-top:14px}
@media(max-width:768px){
  .footer-v22-main-contact{grid-template-rows:auto auto auto auto}
  .footer-v22-main-contact .footer-v21-icon{grid-row:1/5}
  .footer-v22-main-contact .footer-v23-contact-button{grid-column:3;margin-top:8px}
}



/* =========================================================
   CONTACT FORM PLACEHOLDER (2026-07 Final)
   ========================================================= */

/* 문의내용 입력창 커서 표시 */
.contact-form textarea[name="message"]{
    caret-color:#ffffff !important;
}

/* 입력 중에는 안내 문구 숨김 */
.contact-form textarea[name="message"]:focus::placeholder{
    color:transparent !important;
    opacity:0 !important;
}

/* 포커스 해제 후 내용이 비어 있으면 placeholder 자동 표시
   (브라우저 기본 동작) */



/* =========================================================
   CONTACT FORM TEXT CARET (2026-07 Final v2)
   ========================================================= */

/* 고객문의 폼의 텍스트 입력 커서를 표시 */
.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form input[type="email"],
.contact-form textarea{
    caret-color:#ffffff !important;
}

/* 문의내용 입력 중에는 안내 문구 숨김 */
.contact-form textarea[name="message"]:focus::placeholder{
    color:transparent !important;
    opacity:0 !important;
}