@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Manrope:wght@400;500;600;700&display=swap");

:root {
  --bg: #05060d;
  --panel: #0b1020;
  --panel-2: rgba(22, 26, 48, 0.8);
  --card: rgba(255, 255, 255, 0.04);
  --text: #eef1ff;
  --muted: #95a1c3;
  --accent: #f6c90e;
  --accent-2: #6ee7ff;
  --border: rgba(255, 255, 255, 0.09);
  --radius: 18px;
  --max-width: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", "Space Grotesk", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
}

.site-body {
  position: relative;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.05), transparent 30%),
    radial-gradient(circle at 80% 0%, rgba(255, 255, 255, 0.06), transparent 26%),
    linear-gradient(135deg, rgba(246, 201, 14, 0.08), rgba(110, 231, 255, 0.05));
}

.site-body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 120px 120px;
  mix-blend-mode: soft-light;
}

.halo {
  position: absolute;
  filter: blur(100px);
  opacity: 0.5;
  z-index: 0;
}

.halo-one {
  width: 380px;
  height: 380px;
  background: #f6c90e;
  top: -120px;
  right: 10%;
}

.halo-two {
  width: 320px;
  height: 320px;
  background: #6ee7ff;
  bottom: -120px;
  left: 12%;
}

.page {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 28px 24px 80px;
}

.topbar {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 18px;
  padding: 12px 0 24px;
  position: sticky;
  top: 0;
  z-index: 3;
  backdrop-filter: blur(12px);
  background: linear-gradient(180deg, rgba(5, 6, 13, 0.9) 40%, rgba(5, 6, 13, 0));
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), #ff7f50);
  color: #0a0b14;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.logo-type span {
  font-size: 16px;
}

.logo-type small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.2px;
}

.logo.small .logo-mark {
  width: 32px;
  height: 32px;
  font-size: 14px;
}

.nav {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--text);
}

.nav-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.btn {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  cursor: pointer;
  background: transparent;
  color: var(--text);
  font-family: inherit;
  transition: transform 0.15s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  background: linear-gradient(120deg, var(--accent), #ff7f50);
  color: #0b0c16;
  box-shadow: 0 10px 35px rgba(246, 201, 14, 0.3);
}

.btn.outline {
  border-color: var(--border);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.btn.ghost {
  border-color: var(--border);
  color: var(--text);
  background: transparent;
}

.btn.text {
  border: none;
  padding: 8px 10px;
  color: var(--muted);
}

.btn.block {
  width: 100%;
}

.btn.added {
  background: rgba(110, 231, 255, 0.15);
  border-color: rgba(110, 231, 255, 0.4);
  color: var(--text);
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 30px;
  padding: 24px 0 32px;
  align-items: center;
}

.hero-copy h1 {
  font-size: 42px;
  line-height: 1.15;
  margin: 8px 0 14px;
  letter-spacing: -0.7px;
}

.accent {
  color: var(--accent);
}

.lead {
  color: var(--muted);
  font-size: 16px;
  max-width: 620px;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.eyebrow {
  letter-spacing: 0.3px;
  font-size: 13px;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  font-weight: 600;
}

.pill.glow {
  background: rgba(110, 231, 255, 0.12);
  border-color: rgba(110, 231, 255, 0.5);
  color: #cffafe;
}

.pill.ghost {
  background: rgba(255, 255, 255, 0.04);
}

.hero-panel {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(12, 17, 34, 0.9));
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.panel-header h3 {
  margin: 6px 0 6px;
}

.panel-copy {
  color: var(--muted);
  margin: 0 0 14px;
}

.panel-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.meta-block {
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 14px;
  border: 1px solid var(--border);
}

.meta-label {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px 0 8px;
}

.price {
  font-size: 22px;
  font-weight: 800;
}

.price-row .price {
  font-size: 30px;
}

.price-row .muted {
  margin: 0;
}

.panel-footer {
  margin-top: 12px;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

.secure-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}

.dot {
  width: 10px;
  height: 10px;
  background: #52ffa8;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(82, 255, 168, 0.16);
}

.mini-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.mini-card {
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  border: 1px solid var(--border);
  font-size: 13px;
  color: var(--text);
}

.trust {
  margin: 8px 0 24px;
}

.trust-row {
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
  margin-top: 10px;
}

.product-section {
  margin: 32px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  flex-wrap: wrap;
}

.section-head h2 {
  margin: 6px 0 4px;
  font-size: 30px;
  letter-spacing: -0.4px;
}

.section-head .muted {
  max-width: 720px;
}

.section-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.section-actions .btn.active {
  background: rgba(110, 231, 255, 0.16);
  border-color: rgba(110, 231, 255, 0.6);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.product-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.04), rgba(9, 11, 22, 0.9));
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(246, 201, 14, 0.35);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.35);
}

.product-media {
  height: 160px;
  background-size: cover;
  background-position: center;
}

.product-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.product-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-card h3 {
  margin: 0;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.product-actions .btn.text {
  padding-left: 0;
}

.muted {
  color: var(--muted);
}

.small {
  font-size: 13px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin: 26px 0;
}

.value-card {
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  position: relative;
  overflow: hidden;
}

.value-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(246, 201, 14, 0.07), transparent 60%);
  pointer-events: none;
}

.value-icon {
  width: 40px;
  height: 40px;
  background: rgba(110, 231, 255, 0.16);
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 10px;
}

.checkout-section {
  margin: 40px 0 20px;
}

.checkout-card {
  border: 1px solid var(--border);
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(10, 12, 24, 0.9));
  padding: 20px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.35);
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  margin-top: 10px;
}

.checkout-list {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.03);
}

.list-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.cart-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.cart-line:last-child {
  border-bottom: none;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  font-size: 18px;
}

.checkout-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.meta-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.03);
}

.steps {
  margin: 8px 0 0 16px;
  color: var(--muted);
  line-height: 1.5;
}

.footer {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 22px 24px 32px;
  border-top: 1px solid var(--border);
  color: var(--muted);
}

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

.footer a {
  color: var(--text);
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  font-size: 13px;
  color: var(--muted);
}

code {
  background: rgba(255, 255, 255, 0.05);
  padding: 2px 6px;
  border-radius: 6px;
  border: 1px solid var(--border);
}

@media (max-width: 1024px) {
  .topbar {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .nav-actions {
    justify-content: center;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    font-size: 34px;
  }
}

@media (max-width: 640px) {
  .page {
    padding: 18px 16px 60px;
  }

  .topbar {
    position: sticky;
    top: 0;
  }

  .hero-copy h1 {
    font-size: 30px;
  }

  .product-actions {
    flex-direction: column;
  }

  .nav {
    justify-content: center;
  }

  .hero-stats,
  .cta-row {
    flex-direction: column;
    align-items: flex-start;
  }
}
