:root {
  --bg-1: #1f252f;
  --bg-2: #11161d;
  --ink: #1f2937;
  --muted: #4b5563;
  --brand: #1f86ff;
  --brand-dark: #0a58b5;
  --card: rgba(249, 252, 255, 0.9);
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 16% 18%, rgba(45, 68, 93, 0.85) 0 22%, transparent 40%),
    radial-gradient(circle at 83% 12%, rgba(25, 111, 216, 0.55) 0 18%, transparent 34%),
    radial-gradient(circle at 75% 78%, rgba(32, 83, 149, 0.35) 0 20%, transparent 38%),
    linear-gradient(140deg, var(--bg-1), var(--bg-2));
  display: grid;
  place-items: center;
  padding: 24px;
}

.card {
  width: min(760px, 100%);
  background: var(--card);
  backdrop-filter: blur(3px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: clamp(22px, 4vw, 40px);
  animation: fadeUp 650ms ease-out both;
}

.logo-wrap {
  margin-bottom: 16px;
}

.logo {
  display: block;
  width: min(220px, 60%);
  height: auto;
}

h1 {
  margin: 0 0 18px;
  font-size: clamp(1.8rem, 3.8vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-wrap: balance;
}

p {
  margin: 0 0 14px;
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  line-height: 1.65;
  color: var(--muted);
}

.cta {
  margin-top: 20px;
  display: inline-block;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 20px rgba(10, 88, 181, 0.35);
  transition: transform 140ms ease, box-shadow 140ms ease;
}

.cta:hover,
.cta:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(10, 88, 181, 0.45);
}

.products {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(31, 41, 55, 0.12);
}

.products h2 {
  margin: 0 0 14px;
  font-size: clamp(1.2rem, 2.8vw, 1.5rem);
  color: var(--ink);
}

.products-status {
  margin: 0 0 14px;
  color: var(--muted);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}

.product-card {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  padding: 10px;
}

.product-card img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: contain;
  border-radius: 10px;
  background: rgba(18, 25, 34, 0.07);
  cursor: zoom-in;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(7, 10, 15, 0.88);
  padding: 20px;
  z-index: 1000;
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  background: #fff;
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  border: 0;
  border-radius: 999px;
  width: 42px;
  height: 42px;
  font-size: 28px;
  line-height: 1;
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus-visible {
  background: rgba(255, 255, 255, 0.34);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
