
:root{
  --bg:#070b14;
  --bg-2:#0f172a;
  --bg-3:#111827;
  --panel:rgba(255,255,255,.05);
  --line:rgba(255,255,255,.1);
  --text:#ffffff;
  --muted:rgba(255,255,255,.7);
  --muted-2:rgba(255,255,255,.5);
  --light:#ffffff;
  --light-bg:#f8fafc;
  --light-line:#e5e7eb;
  --ink:#0f172a;
  --ink-muted:#475569;
  --shadow:0 24px 60px rgba(0,0,0,.28);
  --radius:30px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
  background:var(--bg);
  color:var(--text);
}
img{max-width:100%;display:block}
button,a{font:inherit}
a{text-decoration:none;color:inherit}
button{
  border:0;
  background:none;
  color:inherit;
  cursor:pointer;
}
.page{
  min-height:100vh;
}
.page-dark{
  background:
    radial-gradient(circle at top left, rgba(96,165,250,.16), transparent 32%),
    radial-gradient(circle at bottom right, rgba(244,114,182,.10), transparent 24%),
    linear-gradient(180deg,#020617 0%,#0f172a 54%,#111827 100%);
}
.page-light{
  background:#fff;
  color:var(--ink);
}
.container{
  width:min(1220px, calc(100% - 40px));
  margin:0 auto;
}
.hidden{display:none !important}

.topbar{
  position:sticky;
  top:0;
  z-index:40;
  border-bottom:1px solid rgba(255,255,255,.09);
  background:rgba(7,11,20,.82);
  backdrop-filter:blur(18px);
}
.page-light .topbar{
  background:rgba(255,255,255,.88);
  border-bottom:1px solid var(--light-line);
}
.nav-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:16px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:14px;
}
.brand img{
  height:44px;
  width:auto;
  object-fit:contain;
}
.brand-meta small{
  display:block;
  text-transform:uppercase;
  letter-spacing:.26em;
  font-size:11px;
  color:var(--muted-2);
}
.page-light .brand-meta small{color:#94a3b8}
.brand-meta strong{
  font-size:14px;
  color:var(--muted);
}
.page-light .brand-meta strong{color:#475569}
.nav{
  display:flex;
  align-items:center;
  gap:26px;
}
.nav a,.nav button{
  font-size:14px;
  color:var(--muted);
}
.page-light .nav a,.page-light .nav button{color:#475569}
.nav a:hover,.nav button:hover{color:var(--text)}
.page-light .nav a:hover,.page-light .nav button:hover{color:#0f172a}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 24px;
  border-radius:18px;
  font-weight:800;
  transition:transform .18s ease, opacity .18s ease, background .18s ease;
}
.btn:hover{transform:translateY(-1px)}
.btn-primary{
  background:#fff;
  color:#0b1220;
  box-shadow:var(--shadow);
}
.btn-secondary{
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
  color:#fff;
}
.btn-dark{
  background:#0f172a;
  color:#fff;
  box-shadow:0 18px 40px rgba(15,23,42,.18);
}
.btn-outline-dark{
  border:1px solid var(--light-line);
  color:#0f172a;
  background:#fff;
}

.entry{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:100vh;
  padding:50px 0;
}
.entry-inner{
  width:min(1120px, calc(100% - 40px));
}
.entry-head{
  max-width:880px;
  margin:0 auto;
  text-align:center;
}
.entry-logo{
  height:132px;
  width:auto;
  margin:0 auto;
}
.eyebrow{
  display:inline-flex;
  margin-top:22px;
  text-transform:uppercase;
  letter-spacing:.34em;
  font-size:12px;
  font-weight:700;
  color:var(--muted-2);
}
.page-light .eyebrow{color:#64748b}
.entry h1,.hero h1,.section-title{
  margin:18px 0 0;
  font-size:clamp(38px, 5vw, 70px);
  line-height:1.02;
  font-weight:900;
}
.entry p,.hero p,.lead{
  margin:22px auto 0;
  max-width:860px;
  font-size:18px;
  line-height:1.8;
  color:var(--muted);
}
.page-light .lead, .page-light p{color:#475569}
.portal-grid{
  margin-top:50px;
  display:grid;
  gap:24px;
  grid-template-columns:repeat(2,minmax(0,1fr));
}
.portal-card{
  border:1px solid var(--line);
  background:rgba(255,255,255,.05);
  border-radius:34px;
  overflow:hidden;
  text-align:left;
  box-shadow:var(--shadow);
  transition:transform .2s ease, background .2s ease;
}
.portal-card:hover{transform:translateY(-3px); background:rgba(255,255,255,.08)}
.portal-card-top{
  padding:34px;
  border-bottom:1px solid var(--line);
}
.portal-card-bottom{
  padding:20px 34px 28px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  color:var(--muted);
  font-weight:700;
}
.portal-card h2{
  font-size:36px;
  margin:16px 0 0;
  line-height:1.05;
}
.portal-card p{
  margin:16px 0 0;
  font-size:17px;
  line-height:1.8;
  color:var(--muted);
  max-width:560px;
}
.portal-label{
  text-transform:uppercase;
  letter-spacing:.28em;
  font-size:12px;
  font-weight:800;
  color:var(--muted-2);
}

.hero{
  position:relative;
  overflow:hidden;
}
.hero-grid{
  display:grid;
  gap:34px;
  grid-template-columns:1fr 1fr;
  padding:70px 0 40px;
}
.hero-copy{
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.hero-copy h1{
  font-size:clamp(42px, 5vw, 76px);
  margin-top:18px;
}
.hero-copy p{
  margin:22px 0 0;
  max-width:700px;
}
.hero-actions{
  margin-top:28px;
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}
.hero-visual-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
}
.hero-card, .image-card{
  overflow:hidden;
  border-radius:30px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  box-shadow:var(--shadow);
}
.hero-card img, .image-card img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.hero-card.large{grid-column:1 / -1; min-height:360px}
.hero-card.small{min-height:220px}
.feature-row{
  display:grid;
  gap:18px;
  grid-template-columns:repeat(3,minmax(0,1fr));
  padding:22px 0 0;
}
.feature-box{
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  border-radius:28px;
  padding:28px;
  box-shadow:var(--shadow);
}
.feature-box .num{
  font-size:13px;
  font-weight:900;
  letter-spacing:.3em;
  color:var(--muted-2);
}
.feature-box h3{
  margin:16px 0 0;
  font-size:25px;
  line-height:1.15;
}
.feature-box p{
  margin:12px 0 0;
  font-size:16px;
  line-height:1.8;
  color:var(--muted);
}

.section{
  padding:90px 0;
}
.section-light{
  background:#fff;
  color:#0f172a;
}
.section-heading{
  max-width:840px;
  margin-bottom:36px;
}
.section-title{
  font-size:clamp(34px, 4vw, 58px);
}
.section-heading p{
  margin:16px 0 0;
  font-size:18px;
  line-height:1.8;
  color:#475569;
}
.grid-2{
  display:grid;
  gap:24px;
  grid-template-columns:repeat(2,minmax(0,1fr));
}
.line-card{
  overflow:hidden;
  border-radius:32px;
  border:1px solid var(--light-line);
  background:#fff;
  box-shadow:0 20px 50px rgba(15,23,42,.10);
  text-align:left;
}
.line-card-media{
  aspect-ratio:16/10;
  overflow:hidden;
  background:#f1f5f9;
}
.line-card-media img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.line-card-copy{
  padding:32px;
}
.line-card .tag{
  text-transform:uppercase;
  letter-spacing:.28em;
  font-size:12px;
  font-weight:800;
  color:#64748b;
}
.line-card h3{
  margin:14px 0 0;
  font-size:34px;
  line-height:1.08;
}
.line-card p{
  margin:16px 0 0;
  font-size:17px;
  line-height:1.8;
  color:#475569;
}

.products-grid{
  display:grid;
  gap:24px;
  grid-template-columns:repeat(3,minmax(0,1fr));
}
.product-card{
  overflow:hidden;
  border-radius:32px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.05);
  box-shadow:var(--shadow);
}
.section-light .product-card{
  background:#fff;
  border-color:var(--light-line);
  box-shadow:0 20px 50px rgba(15,23,42,.1);
}
.product-media{
  position:relative;
  aspect-ratio:4/5;
  overflow:hidden;
  background:rgba(255,255,255,.04);
}
.section-light .product-media{background:#f8fafc}
.product-media img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.badge{
  position:absolute;
  left:16px;
  top:16px;
  border-radius:999px;
  padding:8px 12px;
  font-size:11px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.18em;
  background:rgba(255,255,255,.92);
  color:#0f172a;
}
.section-light .badge{
  background:rgba(15,23,42,.88);
  color:#fff;
}
.product-copy{
  padding:22px;
}
.product-code{
  font-size:12px;
  font-weight:800;
  letter-spacing:.28em;
  text-transform:uppercase;
  color:var(--muted-2);
}
.section-light .product-code{color:#64748b}
.product-copy h3{
  margin:12px 0 0;
  font-size:24px;
  line-height:1.12;
}
.specs{
  margin-top:18px;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:10px;
}
.spec{
  border-radius:16px;
  padding:14px 10px;
  text-align:center;
  font-size:12px;
  font-weight:800;
  line-height:1.45;
  background:rgba(255,255,255,.06);
  color:var(--muted);
}
.section-light .spec{
  background:#f1f5f9;
  color:#475569;
}

.company-grid{
  display:grid;
  gap:30px;
  grid-template-columns:.95fr 1.05fr;
}
.text-card{
  border:1px solid var(--light-line);
  background:#fff;
  border-radius:32px;
  padding:34px;
  box-shadow:0 20px 50px rgba(15,23,42,.1);
}
.text-card h3{
  margin:0;
  font-size:30px;
  line-height:1.1;
}
.text-card p{
  margin:16px 0 0;
  font-size:17px;
  line-height:1.8;
  color:#475569;
}
.contact-panel{
  overflow:hidden;
  border:1px solid var(--light-line);
  border-radius:36px;
  background:linear-gradient(135deg,#ffffff 0%,#f3f4f6 100%);
  box-shadow:0 24px 60px rgba(15,23,42,.12);
  padding:36px;
}
.contact-grid{
  display:grid;
  gap:16px;
}
.info-block{
  border:1px solid var(--light-line);
  background:#fff;
  border-radius:24px;
  padding:22px;
}
.info-label{
  text-transform:uppercase;
  letter-spacing:.25em;
  font-size:11px;
  font-weight:900;
  color:#64748b;
}
.info-block p{
  margin:10px 0 0;
  font-size:16px;
  line-height:1.8;
  color:#475569;
}
.contact-cta{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:24px;
}

.footer{
  border-top:1px solid rgba(255,255,255,.09);
  padding:26px 0;
  background:#070b14;
}
.page-light .footer{
  border-top:1px solid var(--light-line);
  background:#fff;
}
.footer-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.footer-brand{
  display:flex;
  align-items:center;
  gap:12px;
  color:var(--muted-2);
  font-size:14px;
}
.page-light .footer-brand{color:#64748b}
.footer-brand img{
  height:32px;
  width:auto;
}
.footer-copy{
  color:var(--muted-2);
  font-size:14px;
}
.page-light .footer-copy{color:#64748b}

.placeholder{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:40px 0;
}
.placeholder-inner{
  width:min(860px, calc(100% - 40px));
  text-align:center;
}
.placeholder-logo{
  height:110px;
  width:auto;
  margin:0 auto;
}

@media (max-width: 1080px){
  .nav{display:none}
  .hero-grid, .company-grid{grid-template-columns:1fr}
  .products-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width: 760px){
  .container{width:min(1220px, calc(100% - 28px))}
  .portal-grid, .grid-2, .feature-row, .products-grid{grid-template-columns:1fr}
  .hero-visual-grid{grid-template-columns:1fr}
  .hero-card.large, .hero-card.small{min-height:220px}
  .entry-logo{height:96px}
  .portal-card h2{font-size:30px}
  .line-card h3{font-size:28px}
  .footer-wrap{flex-direction:column; align-items:flex-start}
  .specs{grid-template-columns:1fr}
}
