/* WolfsOfMarketing — Coming Soon Landing */

:root {
  --bg: #050608;
  --bg-2: #0a0c10;
  --ink: #f5f7fa;
  --ink-mute: #9aa3b2;
  --ink-faint: #5a6273;
  --line: rgba(255, 255, 255, 0.08);
  --gold: #d4af37;
  --gold-bright: #f5d76e;
  --gold-deep: #8c6f24;
  --red: #ef4444;
  --green: #22c55e;
  --accent: #d4af37;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ BACKGROUND ============ */
.bg-grid {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(212, 175, 55, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.bg-glow {
  position: fixed;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08), transparent 60%);
  z-index: 0;
  pointer-events: none;
}

/* ============ NAV ============ */
.nav {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}

.nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-mark {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--ink);
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 6px 12px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 100px;
  background: rgba(212, 175, 55, 0.05);
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 10px var(--gold-bright);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  z-index: 1;
  padding: 100px 0 80px;
  text-align: center;
}

.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.eyebrow.center {
  text-align: center;
}

.headline {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--ink);
}

.headline .gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sub {
  font-size: clamp(16px, 1.5vw, 20px);
  color: var(--ink-mute);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.5;
}

/* ============ FORM ============ */
.waitlist {
  display: flex;
  gap: 8px;
  max-width: 520px;
  margin: 0 auto;
  padding: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 100px;
  backdrop-filter: blur(10px);
}

.waitlist input[type="email"] {
  flex: 1;
  padding: 14px 20px;
  background: transparent;
  border: none;
  color: var(--ink);
  font-family: inherit;
  font-size: 15px;
  outline: none;
}

.waitlist input[type="email"]::placeholder {
  color: var(--ink-faint);
}

.waitlist input.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
}

.waitlist button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
  color: var(--bg);
  border: none;
  border-radius: 100px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}

.waitlist button:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.waitlist button:disabled {
  opacity: 0.6;
  cursor: wait;
}

.btn-arrow {
  font-weight: 400;
  transition: transform 0.15s ease;
}

.waitlist button:hover .btn-arrow {
  transform: translateX(3px);
}

.form-status {
  margin-top: 16px;
  font-size: 14px;
  min-height: 20px;
  font-family: 'JetBrains Mono', monospace;
}

.form-status.success {
  color: var(--green);
}

.form-status.error {
  color: var(--red);
}

.trust {
  margin-top: 32px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* ============ FEATURES ============ */
.features {
  position: relative;
  z-index: 1;
  padding: 100px 0;
  border-top: 1px solid var(--line);
}

.section-title {
  text-align: center;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.1;
}

.section-sub {
  text-align: center;
  font-size: 17px;
  color: var(--ink-mute);
  max-width: 600px;
  margin: 0 auto 60px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 60px;
}

.feature {
  padding: 32px 28px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.feature:hover {
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-2px);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 10px;
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 20px;
}

.feature h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature p {
  color: var(--ink-mute);
  font-size: 14.5px;
  line-height: 1.55;
}

/* ============ ECOSYSTEM ============ */
.ecosystem {
  position: relative;
  z-index: 1;
  padding: 100px 0;
  border-top: 1px solid var(--line);
}

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

.product {
  position: relative;
  display: block;
  padding: 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.product:hover {
  border-color: rgba(212, 175, 55, 0.3);
  background: rgba(212, 175, 55, 0.03);
  transform: translateY(-2px);
}

.product.here {
  border-color: rgba(212, 175, 55, 0.5);
  background: rgba(212, 175, 55, 0.05);
}

.product-status {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.product.live .product-status {
  background: rgba(34, 197, 94, 0.15);
  color: var(--green);
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.product.soon .product-status {
  background: rgba(154, 163, 178, 0.1);
  color: var(--ink-mute);
  border: 1px solid var(--line);
}

.product.here .product-status {
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold);
  border: 1px solid rgba(212, 175, 55, 0.4);
}

.product-name {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ink);
  margin-bottom: 6px;
}

.product-desc {
  font-size: 13.5px;
  color: var(--ink-mute);
  line-height: 1.45;
}

/* ============ CTA ============ */
.cta {
  position: relative;
  z-index: 1;
  padding: 100px 0;
  border-top: 1px solid var(--line);
  text-align: center;
}

.cta h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.cta p {
  color: var(--ink-mute);
  font-size: 16px;
  margin-bottom: 32px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 100px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: background 0.15s ease, box-shadow 0.15s ease;
}

.btn-secondary:hover {
  background: rgba(212, 175, 55, 0.08);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
}

/* ============ FOOTER ============ */
footer {
  position: relative;
  z-index: 1;
  padding: 40px 0;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-tag {
  margin-top: 8px;
  font-size: 13px;
  color: var(--ink-faint);
}

.footer-meta {
  text-align: right;
}

.footer-line {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--ink-faint);
  line-height: 1.8;
}

@media (max-width: 600px) {
  .nav .container {
    flex-direction: column;
    gap: 16px;
  }
  .waitlist {
    flex-direction: column;
    border-radius: 16px;
  }
  .waitlist button {
    width: 100%;
    justify-content: center;
  }
  .footer-grid {
    flex-direction: column;
    text-align: center;
  }
  .footer-meta {
    text-align: center;
  }
}
