/* ============================================================
   FT HARDWARE PRODUCT PAGES - Bass Pro green/gold theme
   ============================================================ */

:root {
  --hw-bg: #060809;
  --hw-bg-raised: #0f1c12;
  --hw-bg-elev: #17301a;
  --hw-green: #008456;
  --hw-green-bright: #00a86b;
  --hw-green-deep: #0a3d28;
  --hw-gold: #E9C637;
  --hw-gold-bright: #FED41C;
  --hw-text: #FFFEFA;
  --hw-text-muted: rgba(255,254,250,0.72);
  --hw-text-dim: rgba(255,254,250,0.45);
  --hw-card: rgba(255,254,250,0.04);
  --hw-border: rgba(233,198,55,0.25);
  --hw-glass: rgba(15,28,18,0.7);
  --hw-red: #BC282D;
}

* { box-sizing: border-box; }

body.hw-page {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background:
    radial-gradient(ellipse at top, #0a3020 0%, var(--hw-bg) 60%, #000 100%);
  color: var(--hw-text);
  min-height: 100vh;
  line-height: 1.55;
  overflow-x: hidden;
}

.hw-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  background: rgba(6,8,9,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(233,198,55,0.2);
}
.hw-nav .brand {
  font-weight: 900;
  letter-spacing: 1px;
  color: var(--hw-gold);
  text-decoration: none;
  font-size: 1.2rem;
}
.hw-nav .brand span { color: var(--hw-green-bright); }
.hw-nav a.nav-link {
  color: var(--hw-text-muted);
  text-decoration: none;
  margin-left: 24px;
  font-size: 0.95rem;
  transition: color .2s;
}
.hw-nav a.nav-link:hover { color: var(--hw-gold); }

.hw-hero {
  position: relative;
  text-align: center;
  padding: 80px 24px 120px;
  background:
    radial-gradient(ellipse at center, rgba(0,132,86,0.18) 0%, transparent 60%),
    linear-gradient(180deg, transparent 0%, rgba(233,198,55,0.04) 100%);
}
.hw-hero .ship-badge {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid var(--hw-gold);
  border-radius: 999px;
  background: rgba(233,198,55,0.1);
  color: var(--hw-gold-bright);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
  text-transform: uppercase;
  animation: hw-pulse 2.5s ease-in-out infinite;
}
@keyframes hw-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(233,198,55,0.35); }
  50%      { box-shadow: 0 0 0 12px rgba(233,198,55,0); }
}
.hw-hero h1 {
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 800;
  margin: 0 0 16px;
  background: linear-gradient(135deg, #fff 0%, var(--hw-gold) 55%, var(--hw-green-bright) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -1px;
  line-height: 1.05;
}
.hw-hero .tagline {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--hw-text-muted);
  max-width: 720px;
  margin: 0 auto 40px;
}
.hw-hero .mockup {
  max-width: 640px;
  margin: 40px auto 0;
  filter: drop-shadow(0 30px 60px rgba(0,132,86,0.45));
  animation: hw-float 6s ease-in-out infinite;
}
@keyframes hw-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}
.hw-price-block {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 32px;
  margin: 32px 0;
  align-items: baseline;
}
.hw-price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--hw-gold);
  text-shadow: 0 0 24px rgba(233,198,55,0.4);
}
.hw-price-label {
  color: var(--hw-text-muted);
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.hw-early-bird {
  padding: 6px 14px;
  background: rgba(0,132,86,0.15);
  border: 1px solid var(--hw-green-bright);
  color: var(--hw-green-bright);
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 700;
}

.hw-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
}
.hw-section h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  margin: 0 0 48px;
  text-align: center;
  letter-spacing: -0.5px;
}
.hw-section h2 .accent { color: var(--hw-gold); }

.hw-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.hw-feature {
  background: var(--hw-card);
  border: 1px solid var(--hw-border);
  border-radius: 18px;
  padding: 32px 24px;
  backdrop-filter: blur(12px);
  transition: transform .25s, border-color .25s, background .25s;
}
.hw-feature:hover {
  transform: translateY(-4px);
  border-color: var(--hw-gold);
  background: rgba(0,132,86,0.08);
}
.hw-feature .ficon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0,132,86,0.25) 0%, rgba(233,198,55,0.15) 100%);
  margin-bottom: 20px;
  font-size: 28px;
}
.hw-feature h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
  color: var(--hw-gold);
}
.hw-feature p {
  margin: 0;
  color: var(--hw-text-muted);
  font-size: 0.95rem;
}

.hw-specs {
  background: linear-gradient(180deg, var(--hw-bg-raised) 0%, var(--hw-bg) 100%);
  border-top: 1px solid var(--hw-border);
  border-bottom: 1px solid var(--hw-border);
}
.hw-specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2px;
  background: var(--hw-border);
  border-radius: 12px;
  overflow: hidden;
}
.hw-spec {
  background: var(--hw-bg-raised);
  padding: 24px 20px;
}
.hw-spec .label {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--hw-text-dim);
  margin-bottom: 6px;
}
.hw-spec .value {
  font-size: 1.15rem;
  color: var(--hw-text);
  font-weight: 600;
}

.hw-usecases {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.hw-usecase {
  padding: 32px 24px;
  border-left: 3px solid var(--hw-gold);
  background: linear-gradient(90deg, rgba(233,198,55,0.08) 0%, transparent 100%);
  border-radius: 0 12px 12px 0;
}
.hw-usecase h4 {
  margin: 0 0 10px;
  color: var(--hw-gold);
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.hw-usecase p { margin: 0; color: var(--hw-text-muted); font-size: 0.95rem; }

.hw-waitlist {
  background:
    radial-gradient(ellipse at top, rgba(0,132,86,0.2) 0%, transparent 60%),
    var(--hw-bg);
  padding: 100px 24px;
  text-align: center;
}
.hw-waitlist .inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 48px 32px;
  background: rgba(255,254,250,0.03);
  border: 1px solid var(--hw-border);
  border-radius: 24px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.hw-waitlist h2 { margin: 0 0 12px; }
.hw-waitlist p.sub { color: var(--hw-text-muted); margin: 0 0 28px; }

.hw-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.hw-form input[type="email"] {
  flex: 1 1 260px;
  max-width: 360px;
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(0,0,0,0.5);
  border: 1px solid var(--hw-border);
  color: var(--hw-text);
  font-size: 1rem;
  transition: border-color .2s, box-shadow .2s;
}
.hw-form input[type="email"]:focus {
  outline: none;
  border-color: var(--hw-gold);
  box-shadow: 0 0 0 3px rgba(233,198,55,0.25);
}
.hw-form button {
  padding: 14px 28px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(135deg, var(--hw-gold) 0%, var(--hw-gold-bright) 100%);
  color: #060809;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s;
}
.hw-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(233,198,55,0.4);
}
.hw-form button:active { transform: translateY(0); }
.hw-waitlist .count {
  margin-top: 20px;
  font-size: 0.9rem;
  color: var(--hw-green-bright);
  letter-spacing: 1px;
}
.hw-waitlist .msg {
  margin-top: 16px;
  min-height: 24px;
  color: var(--hw-green-bright);
  font-weight: 600;
}

.hw-footer {
  padding: 32px 24px;
  border-top: 1px solid rgba(255,254,250,0.08);
  text-align: center;
  color: var(--hw-text-dim);
  font-size: 0.85rem;
}
.hw-footer a { color: var(--hw-gold); text-decoration: none; }

.product-svg {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Hardware hub grid */
.hw-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.hw-card {
  display: block;
  background: var(--hw-card);
  border: 1px solid var(--hw-border);
  border-radius: 20px;
  padding: 28px 24px;
  text-decoration: none;
  color: var(--hw-text);
  transition: transform .25s, border-color .25s, box-shadow .25s;
  backdrop-filter: blur(14px);
}
.hw-card:hover {
  transform: translateY(-6px);
  border-color: var(--hw-gold);
  box-shadow: 0 18px 40px rgba(0,132,86,0.3);
}
.hw-card .thumb {
  height: 150px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse at center, rgba(0,132,86,0.2) 0%, transparent 70%);
  border-radius: 14px;
}
.hw-card h3 {
  margin: 0 0 6px;
  color: var(--hw-gold);
  font-size: 1.15rem;
}
.hw-card .sub {
  color: var(--hw-text-muted);
  font-size: 0.9rem;
  margin-bottom: 14px;
  min-height: 42px;
}
.hw-card .foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}
.hw-card .price-tag {
  color: var(--hw-gold);
  font-weight: 800;
}
.hw-card .cta {
  color: var(--hw-green-bright);
  font-weight: 700;
}

.hub-filter {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hub-filter button {
  padding: 10px 22px;
  border-radius: 999px;
  background: transparent;
  color: var(--hw-text-muted);
  border: 1px solid var(--hw-border);
  cursor: pointer;
  font-weight: 600;
  transition: all .2s;
}
.hub-filter button.active,
.hub-filter button:hover {
  background: var(--hw-gold);
  color: #060809;
  border-color: var(--hw-gold);
}

@media (max-width: 600px) {
  .hw-nav { padding: 12px 16px; }
  .hw-nav a.nav-link { margin-left: 12px; font-size: 0.85rem; }
  .hw-hero { padding: 48px 16px 80px; }
  .hw-section { padding: 56px 16px; }
  .hw-price { font-size: 2.2rem; }
}
