:root {
  --bg: #0a0a0a;
  --accent: #ff0000;
  --accent-soft: rgba(255, 0, 0, 0.18);
  --glass: rgba(255, 255, 255, 0.10);
  --glass-strong: rgba(255, 255, 255, 0.16);
  --border: rgba(255, 255, 255, 0.18);
  --text: #f5f5f5;
  --muted: rgba(255, 255, 255, 0.72);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  --radius: 24px;
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; font-family: Inter, Arial, Helvetica, sans-serif; color: var(--text); background: var(--bg); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

body { position: relative; overflow-x: hidden; }
.animated-bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 0, 0, 0.22), transparent 22%),
    radial-gradient(circle at 85% 15%, rgba(255, 60, 60, 0.20), transparent 20%),
    radial-gradient(circle at 50% 80%, rgba(130, 0, 0, 0.22), transparent 26%),
    linear-gradient(135deg, #070707 0%, #120202 45%, #050505 100%);
  background-size: 140% 140%;
  animation: drift 16s ease-in-out infinite alternate;
  z-index: -2;
}
.animated-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

@keyframes drift {
  from { transform: scale(1) translate3d(0, 0, 0); }
  to { transform: scale(1.08) translate3d(-1.5%, 1%, 0); }
}

.top-banner {
  padding: 0.75rem 1rem;
  text-align: center;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  background: rgba(255, 0, 0, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav, .footer, .glass, .glass-inner {
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.glass {
  background: var(--glass);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}
.glass-inner {
  background: var(--glass-strong);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: calc(var(--radius) - 8px);
}

.nav {
  width: min(1160px, calc(100% - 2rem));
  margin: 1.25rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}
.brand img { width: 42px; height: 42px; }
.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.nav-links a {
  padding: 0.7rem 1rem;
  color: var(--muted);
  border-radius: 999px;
  transition: 0.25s ease;
}
.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  background: rgba(255,255,255,0.08);
}

.page-wrap {
  width: min(1160px, calc(100% - 2rem));
  margin: 1.5rem auto 2rem;
}
.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.4rem;
  padding: clamp(1.25rem, 2vw, 2rem);
}
.hero-copy, .hero-panel, .card, .profile-layout, .contact-grid, .maintenance-card { padding: 1rem; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #ff8f8f;
  font-size: 0.78rem;
  margin-bottom: 0.75rem;
}
h1 {
  font-size: clamp(2.4rem, 5vw, 4.3rem);
  line-height: 1.05;
  margin: 0 0 1rem;
}
h2, h3 { margin-top: 0; }
.lead {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 56ch;
}
.hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin: 1.5rem 0 1.75rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.3rem;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, #ff1a1a, #b40000);
  box-shadow: 0 0 24px rgba(255, 0, 0, 0.3);
}
.btn-secondary {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}
.stat {
  padding: 1rem;
}
.stat strong {
  display: block;
  font-size: 1.35rem;
  margin-bottom: 0.25rem;
}
.stat span { color: var(--muted); font-size: 0.95rem; }
.hero-panel p,
.card p,
.profile-copy p,
.contact-grid p,
.maintenance-card p {
  color: var(--muted);
  line-height: 1.7;
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: grid;
  gap: 0.8rem;
}
.feature-list li {
  display: grid;
  gap: 0.25rem;
  padding: 0.9rem 1rem;
  background: rgba(255,255,255,0.05);
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.07);
}
.feature-list span {
  color: #ff9e9e;
  text-transform: uppercase;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
}
.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 1.2rem;
}
.card { padding: 1.35rem; }
.single-page { min-height: calc(100vh - 180px); display: grid; align-items: center; }
.profile-layout {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 1.5rem;
  padding: clamp(1.2rem, 2vw, 2rem);
}
.profile-slot {
  padding: 1rem;
  text-align: center;
}
.profile-slot img {
  width: 100%;
  aspect-ratio: 9 / 11;
  object-fit: cover;
  object-position: center top;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 16px 40px rgba(0,0,0,0.28);
}
.profile-slot p { color: var(--muted); margin-top: 0.85rem; }

.glass-red-title {
  display: inline-block;
  padding: 0.9rem 1.15rem;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.16), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 80, 80, 0.26);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 10px 30px rgba(255,0,0,0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: #ffd0d0;
  text-shadow: 0 0 18px rgba(255, 65, 65, 0.18);
  margin-bottom: 1rem;
}
.bio-note { padding: 1rem 1.1rem; margin-top: 1.2rem; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  padding: clamp(1.2rem, 2vw, 2rem);
}
.contact-details {
  padding: 1rem 1.1rem;
  margin-top: 1.2rem;
}
.contact-form {
  padding: 1.2rem;
  display: grid;
  gap: 0.75rem;
}
label { font-weight: 600; }
input, textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.06);
  color: #fff;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  outline: none;
}
input::placeholder, textarea::placeholder { color: rgba(255,255,255,0.45); }
input:focus, textarea:focus { border-color: rgba(255, 0, 0, 0.45); box-shadow: 0 0 0 3px rgba(255,0,0,0.12); }
.muted { color: rgba(255,255,255,0.55); font-size: 0.92rem; }
.footer {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto 1.5rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  color: var(--muted);
}
.maintenance-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 1.5rem;
}
.maintenance-card {
  width: min(760px, 100%);
  text-align: center;
  padding: clamp(1.5rem, 3vw, 2.25rem);
}
.notice {
  display: grid;
  gap: 0.4rem;
  padding: 1rem;
  margin: 1.5rem 0;
}
.maintenance-card footer {
  margin-top: 1.25rem;
  color: var(--muted);
}

@media (max-width: 900px) {
  .hero,
  .profile-layout,
  .contact-grid,
  .two-col {
    grid-template-columns: 1fr;
  }
  .stats-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav, .footer {
    width: calc(100% - 1rem);
    padding: 1rem;
  }
  .nav { flex-direction: column; align-items: flex-start; }
  .footer { flex-direction: column; }
  .page-wrap { width: calc(100% - 1rem); }
  h1 { font-size: 2.2rem; }
}


.products-page {
  display: grid;
  gap: 1.25rem;
}
.products-hero,
.category-card {
  padding: clamp(1.2rem, 2vw, 2rem);
}
.products-hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.25rem;
  align-items: start;
}
.products-summary {
  padding: 1.15rem;
}
.products-summary p {
  margin: 0 0 0.9rem;
}
.products-summary p:last-child {
  margin-bottom: 0;
}
.category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}
.category-badge-wrap {
  padding: 0.8rem 1rem;
}
.category-badge,
.product-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 0, 0, 0.14);
  border: 1px solid rgba(255, 90, 90, 0.22);
  color: #ffc1c1;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.category-copy {
  max-width: 76ch;
  margin-bottom: 1rem;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.product-card {
  padding: 1.2rem;
  display: grid;
  gap: 0.9rem;
  min-height: 100%;
}
.product-card h3 {
  margin: 0;
  font-size: 1.3rem;
}
.product-card p {
  margin: 0;
}
.product-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.65rem;
}
.product-features li {
  padding: 0.8rem 0.9rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  color: var(--muted);
  line-height: 1.55;
}
@media (max-width: 900px) {
  .products-hero,
  .product-grid {
    grid-template-columns: 1fr;
  }
  .category-header {
    flex-direction: column;
    align-items: flex-start;
  }
}


.lh-products-page {
  display: grid;
  gap: 1.3rem;
}
.lh-products-hero,
.lh-category-shell {
  padding: clamp(1.2rem, 2vw, 2rem);
}
.lh-products-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 1.2rem;
  align-items: stretch;
}
.lh-hero-copy {
  display: grid;
  align-content: center;
}
.lh-infra-card {
  padding: 1.15rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.09));
}
.lh-infra-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.7rem;
}
.lh-infra-list li {
  display: grid;
  gap: 0.25rem;
  padding: 0.85rem 0.95rem;
  background: rgba(255,255,255,0.05);
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
}
.lh-infra-list strong {
  font-size: 0.92rem;
  color: #fff;
}
.lh-infra-list span,
.lh-section-head p,
.lh-subcategory-head p,
.lh-plan-top p,
.lh-disabled-btn {
  color: var(--muted);
}
.lh-chip,
.product-tag {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 0, 0, 0.14);
  border: 1px solid rgba(255, 90, 90, 0.24);
  color: #ffc1c1;
  font-size: 0.79rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.lh-category-shell {
  display: grid;
  gap: 1rem;
}
.lh-section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
}
.lh-section-head h2 {
  margin-bottom: 0.1rem;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}
.lh-section-head p {
  max-width: 54ch;
  margin: 0;
  line-height: 1.65;
}
.lh-subcategory-shell {
  padding: 1.05rem;
  display: grid;
  gap: 1rem;
}
.lh-subcategory-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
}
.lh-subcategory-head h3 {
  margin: 0.45rem 0 0;
  font-size: 1.42rem;
}
.lh-subcategory-head p {
  margin: 0;
  max-width: 50ch;
  line-height: 1.65;
}
.lh-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.lh-plan-card {
  position: relative;
  overflow: hidden;
  padding: 1.15rem;
  display: grid;
  gap: 1rem;
  min-height: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,0.13), rgba(255,255,255,0.08));
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}
.lh-plan-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.10), transparent 35%, transparent 70%, rgba(255,255,255,0.04));
  pointer-events: none;
}
.lh-plan-card > * {
  position: relative;
  z-index: 1;
}
.lh-plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.34);
  border-color: rgba(255, 86, 86, 0.24);
}
.lh-featured-plan {
  border-color: rgba(255, 86, 86, 0.30);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 18px 44px rgba(90,0,0,0.22);
}
.lh-plan-top {
  display: grid;
  gap: 0.7rem;
}
.lh-plan-top h4 {
  margin: 0;
  font-size: 1.34rem;
}
.lh-plan-top p {
  margin: 0;
  line-height: 1.65;
}
.lh-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}
.lh-spec-pill {
  padding: 0.85rem 0.9rem;
  border-radius: 18px;
  background: rgba(0,0,0,0.14);
  border: 1px solid rgba(255,255,255,0.08);
  display: grid;
  gap: 0.28rem;
}
.lh-spec-pill span {
  color: #ffafaf;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
}
.lh-spec-pill strong {
  color: #fff;
  font-size: 1rem;
}
.lh-disabled-btn {
  width: 100%;
  cursor: not-allowed;
  opacity: 0.95;
}
.lh-disabled-btn:hover {
  transform: none;
}
@media (max-width: 980px) {
  .lh-products-hero,
  .lh-plan-grid {
    grid-template-columns: 1fr 1fr;
  }
  .lh-products-hero {
    grid-template-columns: 1fr;
  }
  .lh-section-head,
  .lh-subcategory-head {
    display: grid;
    align-items: start;
  }
}
@media (max-width: 720px) {
  .lh-plan-grid,
  .lh-spec-grid {
    grid-template-columns: 1fr;
  }
  .lh-products-hero,
  .lh-category-shell,
  .lh-subcategory-shell {
    padding: 1rem;
  }
  .lh-plan-card {
    padding: 1rem;
  }
}
