
:root{
  --bg:#07100a;
  --panel:#ffffff;
  --ink:#0d1730;
  --muted:#53617a;
  --line:rgba(13,23,48,.14);
  --blue:#2145cc;
  --lime:#d9ff72;
  --soft:#f5ffe7;
  --shadow:0 24px 80px rgba(8,24,45,.16);
  --radius:26px;
}
*{box-sizing:border-box}
html{
  min-height:100%;
  overflow-y:auto;
  overflow-x:hidden;
  scroll-behavior:smooth;
}
body{
  margin:0;
  min-height:100vh;
  overflow-y:auto;
  overflow-x:hidden;
  font-family:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color:var(--ink);
  background:
    radial-gradient(circle at 0% 0%, rgba(218,255,108,.48), transparent 24rem),
    radial-gradient(circle at 100% 0%, rgba(58,94,207,.12), transparent 26rem),
    linear-gradient(135deg,#f4ffd9 0%,#f8fff5 48%,#eef6ff 100%);
}
a{color:inherit;text-decoration:none}
.workspace{
  width:min(1260px, calc(100% - 36px));
  margin:0 auto;
  padding:28px 0 56px;
}
.topbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
  margin-bottom:20px;
}
.brand{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:0;
}
.brand-logo{
  width:92px;
  height:72px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:18px;
  background:rgba(255,255,255,.72);
  border:1px solid rgba(255,255,255,.82);
  box-shadow:0 16px 48px rgba(8,24,45,.10);
  overflow:hidden;
}
.brand-logo img{
  width:84px;
  height:64px;
  object-fit:contain;
  display:block;
}
.brand-copy strong{
  display:block;
  font-size:1.25rem;
  letter-spacing:-.04em;
}
.brand-copy small{
  display:block;
  color:#1d2b52;
  font-size:.7rem;
  font-weight:900;
  letter-spacing:.24em;
}
.suite-pill{
  padding:12px 18px;
  border-radius:999px;
  background:rgba(255,255,255,.72);
  border:1px solid var(--line);
  color:#102146;
  font-size:.84rem;
  font-weight:900;
  box-shadow:0 14px 40px rgba(8,24,45,.08);
  white-space:nowrap;
}
.hero{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:24px;
  align-items:center;
  padding:32px 34px;
  background:rgba(255,255,255,.86);
  border:1px solid var(--line);
  border-radius:32px;
  box-shadow:var(--shadow);
}
.kicker{
  display:inline-block;
  color:#2451ff;
  font-size:.74rem;
  font-weight:1000;
  letter-spacing:.28em;
  margin-bottom:12px;
}
.hero h1{
  margin:0;
  font-size:clamp(2.3rem, 6vw, 5rem);
  line-height:.88;
  letter-spacing:-.085em;
}
.hero p{
  max-width:760px;
  margin:16px 0 0;
  color:#273858;
  font-size:1.02rem;
  line-height:1.72;
  font-weight:700;
}
.hero-actions{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.hero-actions a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-width:220px;
  padding:16px 18px;
  border-radius:999px;
  font-weight:1000;
  background:#10182f;
  color:#e8ff72;
  box-shadow:0 18px 50px rgba(16,24,47,.18);
}
.hero-actions a.secondary{
  background:#ffffff;
  color:#102146;
  border:1px solid var(--line);
}
.rules{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:10px;
  margin:16px 0 12px;
}
.rules span{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:38px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.8);
  border:1px solid var(--line);
  color:#0d1730;
  font-size:.68rem;
  font-weight:1000;
  letter-spacing:.15em;
  text-align:center;
}
.grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:14px;
  margin-top:12px;
}
.card{
  position:relative;
  min-height:268px;
  display:flex;
  flex-direction:column;
  padding:18px;
  border-radius:24px;
  background:rgba(255,255,255,.9);
  border:1px solid var(--line);
  box-shadow:0 22px 62px rgba(8,24,45,.10);
  overflow:hidden;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover{
  transform:translateY(-3px);
  border-color:rgba(33,69,204,.28);
  box-shadow:0 28px 76px rgba(8,24,45,.18);
}
.card.featured{
  grid-column:span 2;
  color:#fff;
  background:
    radial-gradient(circle at 90% 80%, rgba(217,255,114,.54), transparent 8rem),
    linear-gradient(135deg,#143996,#1e4ed8);
  border-color:rgba(255,255,255,.24);
}
.card.featured .card-sub,
.card.featured p,
.card.featured small{color:#eef4ff}
.card.featured .action{color:#e8ff72}
.icon{
  position:absolute;
  right:16px;
  top:16px;
  width:78px;
  height:78px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,.72);
  box-shadow:0 18px 44px rgba(8,24,45,.14);
  border:1px solid rgba(255,255,255,.86);
  overflow:hidden;
}
.icon img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.card.featured .icon{
  width:104px;
  height:104px;
}
.status{
  align-self:flex-start;
  padding:7px 10px;
  border-radius:999px;
  background:#e8ff72;
  color:#0d1730;
  font-size:.66rem;
  font-weight:1000;
  letter-spacing:.1em;
}
.number{
  position:absolute;
  right:24px;
  bottom:112px;
  color:rgba(13,23,48,.12);
  font-weight:1000;
  font-size:2rem;
}
.featured .number{color:rgba(255,255,255,.25)}
.card h2{
  max-width:70%;
  margin:64px 0 3px;
  font-size:1.28rem;
  line-height:1.02;
  letter-spacing:-.05em;
}
.card.featured h2{
  margin-top:76px;
  font-size:1.7rem;
}
.card-sub{
  color:#53617a;
  font-size:.84rem;
  font-weight:900;
}
.card p{
  margin:12px 0;
  color:#283a5d;
  line-height:1.45;
  font-size:.86rem;
  font-weight:700;
}
.card small{
  display:block;
  margin-top:auto;
  color:#132241;
  font-size:.77rem;
  font-weight:900;
  line-height:1.45;
}
.action{
  display:inline-flex;
  align-items:center;
  gap:6px;
  margin-top:13px;
  color:#2145cc;
  font-weight:1000;
  font-size:.82rem;
}
.disabled{
  opacity:.68;
  filter:saturate(.65);
}
.footer{
  display:flex;
  justify-content:space-between;
  gap:12px;
  align-items:center;
  margin-top:22px;
  padding:18px 20px;
  border-radius:24px;
  background:rgba(255,255,255,.64);
  border:1px solid var(--line);
  color:#364869;
  font-weight:800;
  font-size:.86rem;
}
.footer a{
  color:#2145cc;
  font-weight:1000;
}
@media (max-width:1000px){
  .hero{grid-template-columns:1fr}
  .hero-actions{flex-direction:row;flex-wrap:wrap}
  .rules{grid-template-columns:repeat(2,minmax(0,1fr))}
  .grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .card.featured{grid-column:span 2}
}
@media (max-width:640px){
  .workspace{width:min(100% - 22px, 1260px);padding:16px 0 42px}
  .topbar{align-items:flex-start;flex-direction:column}
  .brand-logo{width:82px;height:64px}
  .brand-logo img{width:76px;height:58px}
  .suite-pill{white-space:normal}
  .hero{padding:24px 20px;border-radius:24px}
  .hero h1{font-size:2.75rem}
  .hero-actions a{width:100%}
  .rules{grid-template-columns:1fr}
  .grid{grid-template-columns:1fr}
  .card.featured{grid-column:span 1}
  .card h2,
  .card.featured h2{max-width:68%}
  .footer{flex-direction:column;align-items:flex-start}
}

/* ZYRAN V7.0 demo card */
.demo-suite-card{
  background:
    radial-gradient(circle at 92% 12%, rgba(217,255,114,.70), transparent 7rem),
    linear-gradient(135deg,#0b1227,#1e40af);
  color:#fff;
  border-color:rgba(255,255,255,.28);
}
.demo-suite-card .card-sub,
.demo-suite-card p,
.demo-suite-card small{color:#eef4ff}
.demo-suite-card .action{color:#e8ff72}
.demo-suite-card .number{color:rgba(255,255,255,.22)}
.demo-suite-card .status{background:#e8ff72;color:#0f172a}
