:root {
  --bg: #0b0d12;
  --bg-elev: #141824;
  --bg-soft: #1a2030;
  --text: #f4f5f7;
  --muted: #a7b0c0;
  --accent: #f6a61a;
  --accent-2: #20c997;
  --accent-3: #ff6a3d;
  --stroke: #2b3246;
  --card: rgba(20, 24, 36, 0.92);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  background: radial-gradient(circle at 20% 20%, #1a2233, transparent 55%),
    radial-gradient(circle at 80% 10%, #141826, transparent 48%), var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.bg-blobs {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(0px);
  opacity: 0.6;
  animation: float 12s ease-in-out infinite;
}

.blob-amber {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(246, 166, 26, 0.5), transparent 60%);
  top: -120px;
  left: -60px;
}

.blob-teal {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(32, 201, 151, 0.45), transparent 60%);
  top: 30%;
  right: -120px;
  animation-delay: -4s;
}

.blob-ember {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 106, 61, 0.4), transparent 60%);
  bottom: -120px;
  left: 30%;
  animation-delay: -7s;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(18px);
  background: rgba(11, 13, 18, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Bebas Neue", "Space Grotesk", sans-serif;
  font-size: 22px;
  letter-spacing: 1px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  color: #111;
  font-weight: 700;
  font-size: 16px;
}

.brand-name {
  font-size: 22px;
}

.nav {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-weight: 500;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-3));
  color: #120f0a;
}

.btn-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text);
}

.hero {
  padding: 80px 0 50px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  color: var(--accent-2);
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 13px;
}

.hero-copy h1 {
  font-family: "Bebas Neue", "Space Grotesk", sans-serif;
  font-size: clamp(40px, 5vw, 68px);
  margin: 12px 0 14px;
  line-height: 1.05;
}

.lead {
  color: var(--muted);
  margin-bottom: 22px;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.trust-card {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 16px;
}

.trust-card h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.hero-art {
  display: grid;
  gap: 18px;
}

.figure-stack {
  display: grid;
  gap: 16px;
}

.figure-card {
  background: var(--bg-elev);
  border-radius: 18px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.figure-card.alt {
  border-color: rgba(32, 201, 151, 0.5);
}

.figure-card.accent {
  border-color: rgba(255, 106, 61, 0.5);
}

.figure-label {
  font-weight: 600;
  margin-bottom: 10px;
}

.figure-card svg {
  width: 100%;
}

.hero-note {
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 70px 0;
}

.section-alt {
  background: rgba(20, 24, 36, 0.6);
  border-block: 1px solid rgba(255, 255, 255, 0.04);
}

.section-head {
  max-width: 640px;
  margin-bottom: 36px;
}

.section-head h2 {
  font-family: "Bebas Neue", "Space Grotesk", sans-serif;
  font-size: clamp(32px, 4vw, 44px);
  margin: 0 0 10px;
}

.section-head p {
  color: var(--muted);
}

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

.product-card {
  background: var(--card);
  border-radius: 20px;
  border: 1px solid var(--stroke);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: linear-gradient(150deg, rgba(246, 166, 26, 0.25), rgba(32, 201, 151, 0.2));
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.4s ease;
}

.product-card:hover .product-media img {
  transform: scale(1.06);
}

.product-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(15, 18, 28, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.product-body {
  padding: 20px;
  display: grid;
  gap: 10px;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--muted);
}

.product-info {
  display: grid;
  gap: 6px;
}

.product-label {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-2);
}

.product-list {
  margin: 6px 0 0 18px;
  padding: 0;
  color: var(--muted);
  font-size: 13px;
}

.price-row {
  display: grid;
  gap: 4px;
}

.price {
  font-size: 20px;
  font-weight: 700;
}

.note {
  font-size: 12px;
  color: var(--muted);
}

.catalog-note {
  margin-top: 18px;
  font-size: 12px;
  color: var(--muted);
}

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

.feature-card {
  background: var(--bg-elev);
  border-radius: 16px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.specs-list {
  color: var(--muted);
  padding-left: 18px;
}

.specs-panel {
  display: grid;
  gap: 16px;
}

.panel-box {
  background: var(--bg-elev);
  border-radius: 16px;
  padding: 18px;
  border: 1px solid var(--stroke);
}

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

.gallery-card {
  border-radius: 18px;
  padding: 24px;
  min-height: 160px;
  display: flex;
  align-items: flex-end;
  font-weight: 600;
}

.gallery-card.ember {
  background: linear-gradient(160deg, rgba(246, 166, 26, 0.45), rgba(255, 106, 61, 0.35));
}

.gallery-card.tide {
  background: linear-gradient(160deg, rgba(32, 201, 151, 0.45), rgba(91, 233, 219, 0.35));
}

.gallery-card.iron {
  background: linear-gradient(160deg, rgba(255, 106, 61, 0.45), rgba(246, 166, 26, 0.35));
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
  gap: 24px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  background: var(--bg-elev);
  border-radius: 14px;
  padding: 14px 16px;
  border: 1px solid var(--stroke);
}

summary {
  cursor: pointer;
  font-weight: 600;
}

.cta-section {
  padding-bottom: 100px;
}

.cta-box {
  background: linear-gradient(140deg, rgba(246, 166, 26, 0.2), rgba(255, 106, 61, 0.2));
  border: 1px solid rgba(246, 166, 26, 0.4);
  border-radius: 22px;
  padding: 30px;
  display: grid;
  gap: 20px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-note {
  font-size: 13px;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 32px 0 48px;
  background: rgba(10, 12, 18, 0.9);
}

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

.footer-grid h4 {
  margin-bottom: 8px;
}

.footer-bottom {
  margin-top: 20px;
  color: var(--muted);
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
}

.reveal.is-visible {
  animation: fadeUp 0.8s ease forwards;
  animation-delay: var(--delay, 0s);
}

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

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
}

@media (max-width: 860px) {
  .nav {
    display: none;
  }

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

@media (max-width: 640px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
  }

  .cta-group,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.is-visible {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .blob {
    animation: none;
  }
}
