:root {
  --bg: #05070b;
  --panel: rgba(8, 12, 17, 0.42);
  --panel-strong: rgba(10, 14, 20, 0.58);
  --line: rgba(255, 255, 255, 0.17);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.66);
  --soft: rgba(255, 255, 255, 0.48);
  --accent: #ff7a1a;
}

* { box-sizing: border-box; }

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

body {
  min-height: 100vh;
  background: #05070b url("assets/background.png") center center / cover no-repeat fixed;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(3, 6, 10, 0.70) 0%, rgba(3, 6, 10, 0.45) 42%, rgba(3, 6, 10, 0.10) 100%),
    radial-gradient(circle at 18% 45%, rgba(255, 122, 26, 0.08), transparent 25%),
    radial-gradient(circle at 80% 58%, rgba(255, 122, 26, 0.09), transparent 22%);
}

.page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: clamp(20px, 3vw, 46px) clamp(22px, 6vw, 120px) clamp(18px, 3vw, 42px);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
}

.brand {
  display: inline-flex;
  align-items: center;
  opacity: 0.96;
}

.brand img {
  width: clamp(120px, 13vw, 210px);
  height: auto;
  display: block;
}

.nav {
  display: flex;
  gap: clamp(24px, 4vw, 58px);
  align-items: center;
}

.nav a {
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.23em;
  font-size: clamp(9px, 0.65vw, 12px);
  font-weight: 800;
}

.nav a:last-child {
  color: var(--accent);
}

.hero {
  flex: 1;
  display: flex;
  align-items: center;
  min-height: 0;
}

.hero-content {
  width: min(42vw, 760px);
  min-width: 520px;
  padding-top: clamp(16px, 2.5vh, 54px);
}

.eyebrow,
.section-title span,
.connect h2 {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-weight: 900;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: clamp(10px, 0.72vw, 13px);
}

h1 {
  margin: 0;
  font-weight: 300;
  letter-spacing: 0.035em;
  line-height: 0.98;
  font-size: clamp(42px, 4.3vw, 78px);
  text-shadow: 0 4px 34px rgba(0, 0, 0, 0.52);
}

.lead {
  margin: clamp(14px, 1.2vw, 22px) 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(16px, 1.25vw, 24px);
  line-height: 1.46;
  letter-spacing: 0.015em;
}

.explore {
  width: fit-content;
  display: grid;
  gap: 10px;
  margin: clamp(24px, 2.4vw, 42px) 0 clamp(28px, 3vw, 56px);
  color: rgba(255, 255, 255, 0.91);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: clamp(9px, 0.64vw, 12px);
  font-weight: 900;
  text-decoration: none;
}

.explore .arrow {
  color: rgba(255, 255, 255, 0.72);
  font-size: 28px;
  line-height: 1;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 16px;
}

.section-title span {
  font-size: clamp(9px, 0.66vw, 12px);
  color: rgba(255, 255, 255, 0.9);
}

.section-title i {
  display: block;
  width: 58px;
  height: 1px;
  background: rgba(255, 255, 255, 0.22);
}

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

.product-card {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 128px;
  padding: 20px;
  color: inherit;
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
  backdrop-filter: blur(8px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.20);
}

.product-card img {
  width: 78px;
  height: 78px;
  object-fit: cover;
  border-radius: 15px;
}

.product-card h2 {
  margin: 0 0 8px;
  font-size: clamp(17px, 1.15vw, 21px);
  line-height: 1.1;
  font-weight: 500;
}

.product-card p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: clamp(12px, 0.78vw, 15px);
  line-height: 1.45;
}

.product-card strong {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
}

.connect {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 18px;
  align-items: center;
  margin-top: 14px;
  padding: 18px 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel-strong);
  backdrop-filter: blur(8px);
}

.connect h2 {
  margin: 0 0 8px;
  font-size: 11px;
}

.connect p,
.connect span {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.connect a {
  color: var(--text);
  text-decoration: none;
  font-size: 16px;
  justify-self: center;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
}

.footer img {
  width: 110px;
  height: auto;
  display: block;
  opacity: 0.92;
}

@media (max-height: 790px) and (min-width: 901px) {
  .page { padding-top: 18px; padding-bottom: 14px; }
  .topbar { min-height: 44px; }
  .brand img { width: 140px; }
  h1 { font-size: clamp(40px, 3.6vw, 62px); }
  .lead { font-size: clamp(14px, 1vw, 18px); }
  .explore { margin: 18px 0 24px; }
  .product-card { min-height: 108px; padding: 15px; grid-template-columns: 72px minmax(0, 1fr); }
  .product-card img { width: 64px; height: 64px; }
  .product-card p { font-size: 12px; margin-bottom: 8px; }
  .connect { padding: 14px 18px; }
  .footer { padding-top: 10px; }
}

@media (max-width: 900px) {
  body { background-attachment: scroll; }
  .page { padding: 20px; }
  .topbar { align-items: flex-start; gap: 18px; }
  .nav { display: none; }
  .hero { align-items: flex-start; padding-top: 58px; }
  .hero-content { width: 100%; min-width: 0; }
  .product-grid { grid-template-columns: 1fr; }
  .connect { grid-template-columns: 1fr; }
  .connect a { justify-self: start; }
  .footer { flex-direction: column; align-items: flex-start; }
}
