:root {
  --navy: #051d45;
  --blue: #0b6ed0;
  --gold: #ffc847;
  --white: #ffffff;
  --glass: rgba(3, 20, 46, 0.76);
  --glass-light: rgba(255, 255, 255, 0.13);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--white);
  background: linear-gradient(rgba(0, 18, 45, 0.18), rgba(0, 18, 45, 0.55)), url("assets/background.png") center/cover fixed no-repeat;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.35) 100%);
  pointer-events: none;
  z-index: -1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 5vw;
  background: rgba(3, 17, 41, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.logo {
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

nav a, footer a, .product-card a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 700;
}

nav a:hover, footer a:hover, .product-card a:hover { text-decoration: underline; }

main, .site-footer {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.panel, .product-card {
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
}

.hero {
  margin-top: 76px;
  padding: clamp(34px, 6vw, 72px);
  max-width: 780px;
}

.eyebrow {
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(42px, 7vw, 78px);
  line-height: 0.95;
  margin: 12px 0 20px;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.5);
}

h2 { font-size: clamp(28px, 4vw, 42px); margin-top: 0; }
h3 { font-size: 26px; margin-bottom: 10px; }
.lead { font-size: 20px; line-height: 1.6; }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.button {
  display: inline-block;
  padding: 14px 20px;
  border-radius: 999px;
  border: 2px solid var(--gold);
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
}
.button.primary { background: var(--gold); color: var(--navy); }

.owner-card, .order-panel, .site-footer { margin-top: 28px; padding: 32px; }
.site-url { color: var(--gold); font-weight: 800; font-size: 20px; }

.inventory-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 28px;
}

.product-card { padding: 22px; }
.product-image {
  min-height: 190px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border: 2px dashed rgba(255, 255, 255, 0.35);
  background: var(--glass-light);
  color: rgba(255, 255, 255, 0.85);
  font-weight: 800;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.steps div {
  background: rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  padding: 20px;
}
.steps span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-weight: 900;
}

.site-footer { margin-bottom: 48px; }
.fine-print { opacity: 0.78; font-size: 14px; margin-top: 26px; }

@media (max-width: 820px) {
  .site-header { align-items: flex-start; flex-direction: column; }
  .inventory-grid, .steps { grid-template-columns: 1fr; }
  .hero { margin-top: 36px; }
  body { background-attachment: scroll; }
}
