/* ===== DaBoyz Trading Floor — Design System ===== */
/* Dark, professional, trading-floor aesthetic */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }

:root {
  --bg: #0a0a0d;
  --surface: #111117;
  --surface2: #18181f;
  --surface3: #1e1e26;
  --accent: #ff5722;
  --accent-dim: rgba(255, 87, 34, 0.12);
  --accent-hover: #ff6a3d;
  --text: #f0ede6;
  --text-muted: #6e6b65;
  --text-dim: #3a3833;
  --border: rgba(240, 237, 230, 0.07);
  --border2: rgba(240, 237, 230, 0.12);
  --success: #2dd4bf;
  --mono: 'DM Mono', 'Courier New', monospace;
  --head: 'Syne', 'Arial Black', sans-serif;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--mono);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: var(--mono); }

/* Scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }

/* Layout */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 5rem 0; }

/* Header */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10, 10, 13, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 56px;
}
.logo {
  font-family: var(--head);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.03em;
  color: var(--text);
}
.logo span { color: var(--accent); }
.header-tag {
  font-family: var(--mono);
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
}
.header-nav {
  display: flex; align-items: center; gap: 2rem;
}
.header-nav a {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.header-nav a:hover { color: var(--text); }
.btn-primary {
  background: var(--accent);
  color: #fff;
  font-family: var(--mono);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.55rem 1.4rem;
  border: none;
  border-radius: 3px;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); }

/* Hero */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding-top: 56px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,87,34,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(255,87,34,0.3);
  padding: 0.35rem 0.9rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
  width: fit-content;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.hero h1 {
  font-family: var(--head);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  max-width: 720px;
  margin-bottom: 1.5rem;
}
.hero h1 .accent { color: var(--accent); }
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero-actions {
  display: flex; align-items: center; gap: 1.5rem;
  flex-wrap: wrap;
}
.btn-large {
  background: var(--accent);
  color: #fff;
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.9rem 2rem;
  border: none;
  border-radius: 3px;
  transition: background 0.2s, transform 0.15s;
  display: inline-flex; align-items: center; gap: 0.6rem;
}
.btn-large:hover { background: var(--accent-hover); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  padding: 0.9rem 1.5rem;
  border: 1px solid var(--border2);
  border-radius: 3px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--text-muted); color: var(--text); }
.hero-meta {
  margin-top: 4rem;
  display: flex; gap: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.hero-stat-value {
  font-family: var(--head);
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}
.hero-stat-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.2rem;
}

/* Pre-market Banner */
.premarket {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}
.premarket .container {
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
}
.premarket-badge {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(255,87,34,0.2);
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
  white-space: nowrap;
}
.premarket-info {
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
}
.premarket-item {
  display: flex; flex-direction: column; gap: 0.1rem;
}
.premarket-label { font-size: 0.65rem; color: var(--text-muted); letter-spacing: 0.1em; text-transform: uppercase; }
.premarket-value { font-size: 0.85rem; color: var(--text); }

/* Section Headers */
.section-tag {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  max-width: 560px;
}
.section-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-top: 0.75rem;
  line-height: 1.7;
}
.section-header { margin-bottom: 3rem; }

/* Desk Pods Grid */
.pods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.pod-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2rem;
  display: flex; flex-direction: column;
  gap: 1rem;
  transition: border-color 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}
.pod-card:hover { border-color: var(--border2); transform: translateY(-3px); }
.pod-card.featured {
  border-color: rgba(255,87,34,0.3);
  background: linear-gradient(135deg, var(--surface) 0%, rgba(255,87,34,0.04) 100%);
}
.pod-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute; top: 1rem; right: 1rem;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
  border: 1px solid rgba(255,87,34,0.2);
}
.pod-icon {
  width: 40px; height: 40px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.pod-name {
  font-family: var(--head);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.pod-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}
.pod-price {
  display: flex; align-items: baseline; gap: 0.4rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.price-amount {
  font-family: var(--head);
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}
.price-period { font-size: 0.75rem; color: var(--text-muted); }
.pod-features {
  list-style: none;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.pod-features li {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex; align-items: center; gap: 0.5rem;
}
.pod-features li::before {
  content: '—';
  color: var(--accent);
  font-size: 0.7rem;
}

/* Livestream Room */
.livestream-section { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.livestream-content {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.livestream-text {}
.livestream-hours {
  display: flex; align-items: center; gap: 0.75rem;
  margin: 1.5rem 0;
}
.livestream-hours-badge {
  background: var(--accent-dim);
  border: 1px solid rgba(255,87,34,0.2);
  color: var(--accent);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
}
.livestream-hours-note { font-size: 0.8rem; color: var(--text-muted); }
.livestream-price {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.5rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 1.5rem;
}
.livestream-price-info {}
.livestream-price-label { font-size: 0.7rem; color: var(--text-muted); letter-spacing: 0.1em; text-transform: uppercase; }
.livestream-price-value { font-family: var(--head); font-size: 2rem; font-weight: 800; letter-spacing: -0.03em; margin-top: 0.25rem; }
.livestream-price-note { font-size: 0.75rem; color: var(--text-muted); }

/* Membership Tiers */
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.tier-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2rem;
  display: flex; flex-direction: column;
  gap: 1rem;
}
.tier-card.best {
  border-color: rgba(255,87,34,0.4);
  background: linear-gradient(160deg, var(--surface) 0%, rgba(255,87,34,0.05) 100%);
  position: relative;
}
.tier-name {
  font-family: var(--head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.tier-price {
  font-family: var(--head);
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}
.tier-period { font-size: 0.75rem; color: var(--text-muted); font-family: var(--mono); }
.tier-desc { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; }
.tier-features { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.tier-features li {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex; align-items: flex-start; gap: 0.6rem;
  line-height: 1.5;
}
.tier-features li::before {
  content: '—';
  color: var(--accent);
  font-size: 0.65rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

/* Waitlist Form */
.waitlist-section { background: var(--surface); border-top: 1px solid var(--border); }
.waitlist-inner {
  max-width: 560px; margin: 0 auto; text-align: center;
}
.waitlist-form {
  display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem;
}
.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.form-field { display: flex; flex-direction: column; gap: 0.4rem; text-align: left; }
.form-label { font-size: 0.7rem; color: var(--text-muted); letter-spacing: 0.1em; text-transform: uppercase; }
.form-input, .form-select {
  background: var(--surface2);
  border: 1px solid var(--border2);
  border-radius: 3px;
  color: var(--text);
  font-family: var(--mono);
  font-size: 0.85rem;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-input:focus, .form-select:focus { border-color: var(--accent); }
.form-input::placeholder { color: var(--text-dim); }
.form-select option { background: var(--surface2); }
.form-full { grid-column: 1 / -1; }
.form-submit {
  background: var(--accent);
  color: #fff;
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 1rem;
  border: none;
  border-radius: 3px;
  transition: background 0.2s, transform 0.15s;
}
.form-submit:hover { background: var(--accent-hover); transform: translateY(-1px); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.form-note {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.5rem;
}
.form-success {
  background: rgba(45, 212, 191, 0.1);
  border: 1px solid rgba(45, 212, 191, 0.3);
  border-radius: 4px;
  padding: 1.5rem;
  color: var(--success);
  font-size: 0.9rem;
  text-align: center;
  display: none;
}

/* Location / Contact */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; flex-direction: column; gap: 0.3rem; }
.contact-label { font-size: 0.65rem; color: var(--text-muted); letter-spacing: 0.12em; text-transform: uppercase; }
.contact-value { font-size: 0.9rem; color: var(--text); }
.map-placeholder {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  height: 300px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  text-align: center;
}
.footer-text {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* Utility */
.accent-text { color: var(--accent); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }

/* Responsive */
@media (max-width: 768px) {
  .container { padding: 0 1.25rem; }
  .hero h1 { font-size: 2.2rem; }
  .livestream-content { grid-template-columns: 1fr; gap: 2rem; }
  .tiers-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-meta { gap: 2rem; }
  .premarket .container { gap: 1rem; }
  .header-nav { display: none; }
}

/* Scroll animations */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }