
:root{
  --black:#050507;
  --black2:#0d0d12;
  --purple:#7a29c8;
  --purple2:#a34df0;
  --purple3:#f4ecff;
  --green:#26c946;
  --green2:#128b30;
  --text:#f6f4ff;
  --muted:#c9c4d2;
  --card:#ffffff;
  --cardText:#17151c;
  --cardMuted:#4f4b58;
  --line:#ded9e8;
  --paper:#fbfafc;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Inter", "Segoe UI", Arial, Helvetica, sans-serif;
  background:var(--paper);
  color:var(--cardText);
}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}
.container{width:min(1380px, calc(100% - 48px)); margin:0 auto}

/* Header */
.site-header{
  background:#fff;
  color:#111;
  border-bottom:1px solid #e7e2ef;
  box-shadow:0 1px 16px rgba(25,16,40,.08);
  position:relative;
  z-index:5;
}
.header-inner{
  min-height:88px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
}
.brand{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:300px;
}
.brand img{
  width:118px;
  height:82px;
  object-fit:contain;
}
.brand-wordmark{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:4px;
  line-height:1;
}
.wordmark-title{
  display:inline-flex;
  align-items:center;
  min-height:38px;
  padding:5px 13px 4px;
  border:2px solid #ede6f4;
  border-radius:4px;
  background:#09070d;
  color:#fff;
  font-weight:900;
  font-size:1.55rem;
  letter-spacing:.035em;
  text-shadow:0 2px 0 rgba(0,0,0,.45);
  box-shadow:inset 0 -3px 0 rgba(122,41,200,.55), 0 2px 0 rgba(0,0,0,.16);
}
.wordmark-subtitle{
  align-self:center;
  padding:3px 11px 4px;
  border-radius:0 0 11px 11px;
  background:#0b080f;
  color:#fff;
  font-size:.48rem;
  font-weight:900;
  letter-spacing:.18em;
}
.wordmark-tagline{
  align-self:center;
  color:var(--green2);
  font-size:.66rem;
  font-weight:900;
  letter-spacing:.11em;
}
.nav{
  display:flex;
  align-items:center;
  gap:20px;
  flex-wrap:wrap;
  font-weight:800;
  letter-spacing:.025em;
  font-size:.93rem;
}
.nav a{
  color:#19151f;
  padding:12px 0;
  position:relative;
}
.nav a.active{
  color:var(--purple2);
}
.nav a.active:after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:0;
  height:3px;
  background:var(--purple2);
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:6px;
  padding:14px 22px;
  font-weight:800;
  letter-spacing:.015em;
  border:0;
  line-height:1.1;
  white-space:nowrap;
}
.nav .btn{
  min-width:140px;
  padding:14px 24px;
}
.btn.primary{
  background:linear-gradient(135deg, var(--purple), var(--purple2));
  color:#fff;
  box-shadow:0 8px 18px rgba(122,41,200,.22);
}
.btn.secondary{
  border:1px solid #d0cad8;
  background:#fff;
  color:#17151c;
}

/* Hero banner */
.catalog-hero{
  position:relative;
  overflow:hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.88) 34%, rgba(255,255,255,.54) 62%, rgba(255,255,255,.30) 100%),
    url("home-industrial-hero-bg.png");
  background-size:cover;
  background-position:center right;
  background-repeat:no-repeat;
  min-height:168px;
  border-top:3px solid #111017;
  border-bottom:3px solid #111017;
}
.catalog-hero:before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.70) 48%, rgba(255,255,255,.20) 100%),
    repeating-linear-gradient(90deg, transparent 0 56px, rgba(122,41,200,.09) 57px 59px, transparent 60px 96px),
    linear-gradient(140deg, transparent 0 58%, rgba(31,19,45,.10) 58.4% 59.2%, transparent 59.6%),
    linear-gradient(100deg, transparent 0 68%, rgba(31,19,45,.12) 68.4% 69.1%, transparent 69.5%),
    linear-gradient(180deg, transparent 0 46%, rgba(31,19,45,.10) 46.5% 48%, transparent 48.5%);
  opacity:.75;
}
.catalog-hero:after{
  content:"";
  position:absolute;
  right:-30px;
  bottom:-10px;
  width:min(52vw, 760px);
  height:124px;
  background:
    linear-gradient(90deg, transparent 0 4%, rgba(22,17,31,.20) 4.5% 5.5%, transparent 6% 13%, rgba(22,17,31,.18) 13.4% 14.4%, transparent 15%),
    linear-gradient(0deg, rgba(22,17,31,.16), rgba(22,17,31,.16)) bottom / 100% 18px no-repeat;
  clip-path:polygon(0 70%, 8% 65%, 8% 28%, 12% 28%, 12% 62%, 20% 58%, 20% 18%, 24% 18%, 24% 56%, 36% 52%, 36% 34%, 41% 34%, 41% 48%, 58% 43%, 58% 12%, 62% 12%, 62% 42%, 76% 36%, 76% 22%, 80% 22%, 80% 35%, 100% 30%, 100% 100%, 0 100%);
  opacity:.45;
}
.home-catalog-hero{
  background-position:center right;
}
.catalog-hero:before,
.catalog-hero:after{
  display:none;
}
.catalog-hero-inner{
  position:relative;
  z-index:1;
  min-height:168px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.hero-copy h1{
  margin:20px 0 0;
  color:#141019;
  font-size:2.8rem;
  letter-spacing:.01em;
  text-transform:uppercase;
  line-height:1.02;
}
.hero-copy h1:after{
  content:"";
  display:inline-block;
  width:140px;
  height:3px;
  background:var(--purple2);
  margin-left:24px;
  vertical-align:middle;
}
.hero-copy p{
  color:#332b3f;
  margin:13px 0 0;
  font-size:1.12rem;
  line-height:1.6;
  max-width:760px;
}
.hero-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:var(--purple);
  font-size:.82rem;
  font-weight:900;
  letter-spacing:.14em;
  text-transform:uppercase;
  margin-bottom:10px;
}
.hero-eyebrow:before{
  content:"";
  width:34px;
  height:3px;
  background:linear-gradient(90deg, var(--green2), var(--purple2));
}
.hero-mini-list{
  display:flex;
  flex-wrap:wrap;
  gap:9px;
  margin-top:16px;
}
.intro-mini-list{
  margin-top:20px;
}
.hero-mini-list span{
  border:1px solid rgba(122,41,200,.58);
  border-radius:999px;
  background:rgba(255,255,255,.72);
  color:#21192b;
  padding:7px 11px;
  font-size:.84rem;
  font-weight:700;
}
.hero-cta-row{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:18px;
  margin-top:22px;
}
.hero-text-link{
  color:var(--purple);
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.05em;
  border-bottom:2px solid rgba(122,41,200,.28);
  padding-bottom:4px;
}
.eco-badge{
  width:238px;
  min-height:82px;
  border-radius:999px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.30), transparent 38%),
    linear-gradient(135deg, #34d65a 0%, #11812d 100%);
  border:3px solid #fff;
  color:#fff;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:flex-start;
  gap:3px;
  padding:13px 24px 12px 62px;
  position:relative;
  flex:0 0 auto;
  text-transform:uppercase;
  box-shadow:0 12px 28px rgba(22,94,38,.24), inset 0 0 0 1px rgba(255,255,255,.36);
  text-shadow:0 1px 2px rgba(0,0,0,.36);
}
.eco-badge:before{
  content:"";
  position:absolute;
  left:19px;
  top:50%;
  width:25px;
  height:34px;
  border-radius:26px 0 26px 0;
  background:#fff;
  transform:translateY(-50%) rotate(38deg);
  box-shadow:inset -6px -7px 0 rgba(38,201,70,.18);
}
.eco-badge:after{
  content:"";
  position:absolute;
  left:31px;
  top:50%;
  width:2px;
  height:24px;
  border-radius:999px;
  background:#168b31;
  transform:translateY(-50%) rotate(38deg);
  opacity:.55;
}
.eco-badge span{
  display:block;
  font-size:.76rem;
  font-weight:900;
  letter-spacing:.10em;
  line-height:1;
}
.eco-badge strong{
  display:block;
  font-size:.88rem;
  font-weight:900;
  letter-spacing:.025em;
  line-height:1;
  white-space:nowrap;
}
/* Catalog */
.catalog-section{
  background:
    linear-gradient(180deg, #fff 0%, #fbfafc 100%);
  color:var(--cardText);
  padding:24px 0 44px;
}
.catalog-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}
.product-card{
  background:#fff;
  border:1px solid #d9d3e2;
  border-radius:5px;
  overflow:hidden;
  min-height:100%;
  position:relative;
  box-shadow:0 2px 14px rgba(17,13,28,.05);
  transition:.16s ease;
}
.product-card:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 25px rgba(17,13,28,.14);
}
.product-image{
  height:232px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:28px 26px 12px;
  background:linear-gradient(180deg, #fff, #fbfbfc);
  position:relative;
}
.product-image img{
  width:190px;
  height:168px;
  object-fit:contain;
}
.ribbon{
  position:absolute;
  top:23px;
  right:-50px;
  transform:rotate(45deg);
  width:190px;
  padding:9px 0;
  color:#fff;
  font-size:.78rem;
  font-weight:900;
  text-align:center;
  letter-spacing:.08em;
  box-shadow:0 4px 12px rgba(0,0,0,.18);
}
.ribbon.coming{background:linear-gradient(90deg, #7a29c8, #a34df0)}
.ribbon.available{background:linear-gradient(90deg, #148d28, #35c64d)}
.product-body{
  padding:0 24px 18px;
  text-align:center;
}
.product-body h3{
  margin:0 0 10px;
  font-size:1.15rem;
  line-height:1.05;
  text-transform:uppercase;
  color:#111;
  letter-spacing:.02em;
}
.product-body p{
  min-height:54px;
  margin:0;
  color:#2d2933;
  line-height:1.4;
  font-size:.95rem;
}
.product-footer{
  border-top:1px solid #e3e0e7;
  padding:13px 18px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  color:var(--purple);
  font-weight:900;
  text-transform:uppercase;
  font-size:.88rem;
}
.product-footer span:last-child{
  font-size:1.45rem;
  line-height:0;
}

/* Product details */
.detail-hero{
  background:
    linear-gradient(135deg, #fff 0%, #fbf7ff 100%);
  color:var(--cardText);
  padding:34px 0 46px;
  border-bottom:1px solid #e5deee;
}
.detail-layout{
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:30px;
  align-items:center;
}
.detail-visual{
  background:#fff;
  border:1px solid #d8d5dd;
  border-radius:7px;
  min-height:420px;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  overflow:hidden;
}
.detail-visual img{
  width:320px;
  max-height:320px;
  object-fit:contain;
}
.detail-copy h1{
  margin:0 0 12px;
  font-size:3rem;
  line-height:1;
  text-transform:uppercase;
}
.kicker{
  display:inline-block;
  color:var(--purple);
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.08em;
  margin-bottom:12px;
}
.lead{
  color:#34303b;
  font-size:1.08rem;
  line-height:1.65;
  max-width:850px;
}

/* Home page */
.home-intro{
  background:#fff;
  color:var(--cardText);
  padding:48px 0 54px;
}
.home-intro-grid{
  display:grid;
  grid-template-columns:1.35fr .65fr;
  gap:34px;
  align-items:center;
}
.home-copy h2,
.feature-panel h2,
.section-heading h2,
.product-line-cta h2{
  margin:0;
  color:#141019;
  font-size:2.45rem;
  line-height:1.05;
  text-transform:uppercase;
}
.home-copy .lead{
  margin:18px 0 0;
  max-width:760px;
}
.home-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:24px;
}
.home-feature-image{
  justify-self:end;
  width:min(100%, 410px);
  aspect-ratio:3 / 4;
  border:1px solid #ded9e8;
  border-radius:7px;
  overflow:hidden;
  background:#f5f1f9;
  box-shadow:0 18px 34px rgba(29,17,45,.10);
}
.home-feature-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}
.proof-band{
  background:#111017;
  color:#fff;
  padding:24px 0;
}
.proof-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}
.proof-item{
  border-left:3px solid var(--purple2);
  padding-left:16px;
}
.proof-item strong{
  display:block;
  color:#fff;
  font-size:1rem;
  text-transform:uppercase;
  letter-spacing:.08em;
}
.proof-item span{
  display:block;
  color:#d9d4e1;
  line-height:1.45;
  margin-top:7px;
  font-size:.94rem;
}
.home-section{
  background:#fff;
  color:var(--cardText);
  padding:54px 0;
}
.home-section-soft{
  background:
    linear-gradient(180deg, #fbfafc 0%, #f5f0fb 100%);
}
.split-feature{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:34px;
  align-items:stretch;
}
.feature-panel{
  border:1px solid #ded9e8;
  border-radius:7px;
  padding:32px;
  background:#fff;
}
.feature-panel p{
  color:#34303b;
  line-height:1.7;
  margin:18px 0 0;
}
.check-list{
  margin:22px 0 0;
  padding:0;
  list-style:none;
}
.check-list li{
  position:relative;
  padding-left:28px;
  margin:11px 0;
  line-height:1.5;
  color:#27232e;
}
.check-list li:before{
  content:"";
  position:absolute;
  left:0;
  top:.36em;
  width:12px;
  height:12px;
  border-radius:50%;
  background:linear-gradient(135deg, var(--green2), var(--green));
  box-shadow:0 0 0 4px #e9f8eb;
}
.product-sheet-preview,
.support-panel{
  border:1px solid #ded9e8;
  border-radius:7px;
  overflow:hidden;
  background:
    linear-gradient(135deg, rgba(122,41,200,.10), rgba(38,201,70,.08)),
    #fff;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:430px;
  padding:24px;
}
.product-sheet-preview img{
  width:100%;
  max-height:390px;
  object-fit:contain;
  border-radius:4px;
  box-shadow:0 18px 36px rgba(18,12,27,.18);
}
.support-panel{
  flex-direction:column;
  gap:18px;
  align-items:stretch;
}
.featured-logo-card,
.featured-doc-card{
  border:1px solid rgba(122,41,200,.18);
  border-radius:7px;
  background:rgba(255,255,255,.86);
  padding:24px;
}
.featured-logo-card{
  min-height:250px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
}
.featured-logo-card img{
  width:min(100%, 230px);
  height:170px;
  object-fit:contain;
}
.featured-logo-card span{
  margin-top:14px;
  color:var(--purple);
  font-weight:900;
  letter-spacing:.10em;
  text-transform:uppercase;
  font-size:.82rem;
}
.featured-doc-card strong{
  display:block;
  color:#141019;
  text-transform:uppercase;
  font-size:1.2rem;
}
.featured-doc-card p{
  margin:10px 0 6px;
  color:#4f4b58;
  line-height:1.6;
}
.section-heading{
  max-width:850px;
  margin-bottom:26px;
}
.value-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.value-card{
  border:1px solid #ded9e8;
  border-radius:7px;
  background:#fff;
  padding:24px;
  min-height:100%;
}
.value-card h3{
  margin:0 0 12px;
  color:#141019;
  text-transform:uppercase;
}
.value-card p{
  margin:0;
  color:#4f4b58;
  line-height:1.65;
}
.product-line-cta{
  border:1px solid #ded9e8;
  border-radius:7px;
  background:
    linear-gradient(90deg, #fff 0%, #f8f1ff 100%);
  padding:30px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
}
.product-line-cta p{
  margin:14px 0 0;
  max-width:760px;
  color:#4f4b58;
  line-height:1.65;
}
.spec-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
  margin:22px 0;
}
.spec{
  background:#fff;
  border:1px solid #ded9e8;
  padding:14px;
  border-radius:5px;
}
.spec strong{
  display:block;
  text-transform:uppercase;
  color:#111;
  font-size:.78rem;
}
.spec span{
  display:block;
  color:#4f4b58;
  margin-top:4px;
}
.detail-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}
.detail-actions .btn.secondary{
  color:#111;
  border-color:#d0cad8;
  background:#fff;
}
.info-section{
  background:#fff;
  color:#17151c;
  padding:40px 0 54px;
}
.info-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:24px;
}
.panel{
  border:1px solid #ddd8e7;
  border-radius:7px;
  padding:26px;
  background:#fff;
}
.panel h2,.panel h3{
  margin-top:0;
  text-transform:uppercase;
}
.panel li{
  margin:8px 0;
  line-height:1.5;
}
.download-card{
  border:1px solid #ddd8e7;
  padding:16px;
  border-radius:6px;
  margin-top:12px;
}
.download-card a,.doc-link{
  display:inline-flex;
  padding:11px 14px;
  border-radius:5px;
  background:linear-gradient(135deg, var(--purple), var(--purple2));
  color:#fff;
  font-weight:900;
  margin-top:10px;
}
.doc-link.disabled{
  background:#e8e4ee;
  color:#6c6475;
}

/* General pages */
.simple-page{
  background:#f7f7f9;
  color:#17151c;
  padding:54px 0;
}
.simple-card{
  background:#fff;
  border:1px solid #ddd8e7;
  border-radius:7px;
  padding:28px;
}

/* Footer */
.footer{
  background:#08080c;
  color:#fff;
}
.footer-main{
  padding:24px 0;
  display:grid;
  grid-template-columns:1.1fr .8fr .8fr;
  gap:28px;
  align-items:start;
}
.footer h3{
  color:var(--purple2);
  margin:0 0 12px;
  text-transform:uppercase;
  letter-spacing:.05em;
}
.footer p{
  margin:7px 0;
  color:#eee;
}
.footer-bottom{
  background:linear-gradient(90deg, #6021a6, #8928d8);
  padding:12px 0;
  font-size:.9rem;
}
.footer-bottom .container{
  display:flex;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}
.powered-by a{
  color:#fff;
  font-weight:700;
}
@media(max-width:1100px){
  .catalog-grid{grid-template-columns:repeat(2,1fr)}
  .wordmark-title{font-size:1.25rem}
  .nav{gap:14px}
  .proof-grid,.value-grid{grid-template-columns:repeat(2,1fr)}
  .home-intro-grid,.split-feature{grid-template-columns:1fr}
}
@media(max-width:760px){
  .container{width:min(100% - 28px, 1380px)}
  .header-inner,.catalog-hero-inner,.footer-main{grid-template-columns:1fr; flex-direction:column; align-items:flex-start}
  .brand img{width:120px;height:90px}
  .catalog-grid,.detail-layout,.info-grid,.spec-grid{grid-template-columns:1fr}
  .hero-copy h1{font-size:2rem}
  .hero-copy h1:after{display:none}
  .eco-badge{width:224px; min-height:76px}
  .home-copy h2,.feature-panel h2,.section-heading h2,.product-line-cta h2{font-size:1.9rem}
  .proof-grid,.value-grid{grid-template-columns:1fr}
  .product-line-cta{align-items:flex-start; flex-direction:column}
  .home-feature-image{justify-self:start; width:min(100%, 340px)}
}
