/* ============================================
   CULL DESIGN SYSTEM
   Premium dark fintech/sporttech aesthetic
   ============================================ */

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-page: #0F0F0F;
  --bg-card: #1E1E1E;
  --bg-nav: #1A1A1A;
  --border-default: #2A2A2A;
  --border-hover: #3A3A3A;
  --green-primary: #15ED80;
  --green-secondary: #10C468;
  --text-primary: #FFFFFF;
  --text-secondary: #9CA3AF;
  --text-hint: #6B7280;
  --text-muted: #4A4A4A;
  --error-red: #FF6B6B;
  --warning-orange: #FF9F43;
  --gold: #FBBF24;
  --green-faint: rgba(21, 237, 128, 0.05);
  --green-subtle: rgba(21, 237, 128, 0.12);
  --green-light: rgba(21, 237, 128, 0.15);
  --green-border: rgba(21, 237, 128, 0.25);
  --radius-standard: 14px;
  --radius-large: 16px;
  --radius-badge: 6px;
  --radius-capsule: 20px;
  --radius-button: 12px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', sans-serif;
  background: var(--bg-page);
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

/* ============================================
   LAYOUT
   ============================================ */

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

.section {
  padding: 60px 0;
}

.section + .section {
  padding-top: 24px;
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-nav);
  border-bottom: 1px solid var(--border-default);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

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

.nav-brand {
  display: flex;
  align-items: center;
}

.nav-logo {
  height: 38px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

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

.nav-links a.active {
  color: var(--green-primary);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-secondary);
  margin: 5px 0;
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile nav */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bg-nav);
    border-bottom: 1px solid var(--border-default);
    flex-direction: column;
    padding: 16px;
    gap: 16px;
  }

  .nav-links.open {
    display: flex;
  }
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--bg-nav);
  border-top: 1px solid var(--border-default);
  padding: 40px 0;
  margin-top: 80px;
}

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

.footer-brand {
  display: flex;
  align-items: center;
}

.footer-logo {
  height: 32px;
  width: auto;
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  color: var(--text-hint);
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--text-secondary);
}

.footer-legal {
  width: 100%;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-default);
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1 {
  font-size: 56px;
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: -0.5px;
  line-height: 1.1;
}

h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.3px;
  line-height: 1.2;
}

h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

.section-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-hint);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.text-green {
  color: var(--green-primary);
}

.text-gold {
  color: var(--gold);
  text-shadow: 0 0 12px rgba(251, 191, 36, 0.25);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn-primary {
  display: inline-block;
  background: var(--green-primary);
  color: var(--bg-page);
  font-weight: 800;
  font-size: 15px;
  border: none;
  border-radius: var(--radius-button);
  padding: 14px 28px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-primary:hover {
  box-shadow: 0 0 20px rgba(21, 237, 128, 0.3);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-block;
  border: 1.5px solid var(--border-hover);
  background: transparent;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius-button);
  padding: 12px 24px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-secondary:hover {
  border-color: var(--text-secondary);
  color: var(--text-primary);
}

/* ============================================
   CARDS
   ============================================ */

.card {
  background: var(--bg-card);
  border-radius: var(--radius-standard);
  padding: 16px;
  border: 1px solid var(--border-default);
  transition: border-color 0.2s;
}

.card:hover {
  border-color: var(--border-hover);
}

.card-live {
  background: linear-gradient(135deg, #1A2E1F 0%, var(--bg-card) 50%);
  border: 1.5px solid var(--green-border);
}

/* ============================================
   BADGES
   ============================================ */

.badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  padding: 3px 10px;
  border-radius: var(--radius-badge);
}

.badge-green {
  background: var(--green-subtle);
  color: var(--green-primary);
}

.badge-red {
  background: var(--error-red);
  color: #fff;
  box-shadow: 0 0 12px rgba(255, 59, 48, 0.4);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  padding: 100px 0 80px;
  text-align: center;
}

.hero-logo {
  width: 280px;
  height: auto;
  margin: 0 auto 32px;
}

@media (max-width: 768px) {
  .hero-logo {
    width: 200px;
  }
}

.hero-launch-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-faint);
  border: 1px solid var(--green-border);
  border-radius: var(--radius-capsule);
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green-primary);
  margin-bottom: 20px;
}

.launch-dot {
  width: 7px;
  height: 7px;
  background: var(--green-primary);
  border-radius: 50%;
  animation: pulse-green 2s ease-in-out infinite;
  flex-shrink: 0;
}

.hero h1 {
  margin-bottom: 24px;
}

.hero-tagline {
  color: var(--green-primary);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.hero-description {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 40px;
}

.feature-card {
  padding: 28px 24px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--green-faint);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 22px;
}

.feature-card h3 {
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   STATS BAR
   ============================================ */

@keyframes pulse-green {
  0%, 100% { text-shadow: 0 0 16px rgba(21, 237, 128, 0.4), 0 0 40px rgba(21, 237, 128, 0.15); }
  50%       { text-shadow: 0 0 32px rgba(21, 237, 128, 0.8), 0 0 80px rgba(21, 237, 128, 0.35); }
}

@keyframes pulse-gold {
  0%, 100% { text-shadow: 0 0 16px rgba(251, 191, 36, 0.4), 0 0 40px rgba(251, 191, 36, 0.15); }
  50%       { text-shadow: 0 0 32px rgba(251, 191, 36, 0.9), 0 0 80px rgba(251, 191, 36, 0.4); }
}

.stats-section {
  width: 100%;
  background: linear-gradient(180deg, #111 0%, #0F0F0F 100%);
  border-top: 1px solid var(--border-default);
  border-bottom: 1px solid var(--border-default);
}

.stats-bar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  padding: 48px 40px;
  flex-wrap: wrap;
  gap: 0;
}

.stat {
  text-align: center;
  flex: 1;
  min-width: 160px;
}

.stat-divider {
  width: 1px;
  height: 64px;
  background: var(--border-default);
  flex-shrink: 0;
}

.stat-value {
  font-size: 64px;
  font-weight: 900;
  color: var(--green-primary);
  line-height: 1;
  letter-spacing: -2px;
  animation: pulse-green 2.5s ease-in-out infinite;
}

.stat-value.gold {
  color: var(--gold);
  animation: pulse-gold 2.5s ease-in-out infinite;
}

.stat-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-hint);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .stats-bar {
    gap: 32px;
    padding: 40px 24px;
  }

  .stat-divider {
    display: none;
  }

  .stat-value {
    font-size: 44px;
  }
}

/* ============================================
   WAITLIST SECTION
   ============================================ */

.waitlist {
  text-align: center;
  padding: 80px 0;
}

.waitlist-box {
  max-width: 520px;
  margin: 0 auto;
  padding: 40px 32px;
}

.waitlist-box h2 {
  margin-bottom: 12px;
}

.waitlist-box p {
  margin-bottom: 32px;
}

/* ============================================
   WAITLIST FORM
   ============================================ */

.waitlist-gift-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(251, 191, 36, 0.1);
  border: 1px solid rgba(251, 191, 36, 0.3);
  border-radius: var(--radius-capsule);
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 16px;
}

.waitlist-gift-icon {
  font-size: 14px;
}

.fishcaddy-incentive {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0a1628 0%, #0d1f3c 60%, #111d35 100%);
  border: 1px solid rgba(96, 165, 250, 0.3);
  border-radius: var(--radius-large);
  padding: 22px 20px 18px;
  margin: 20px 0 24px;
  box-shadow: 0 0 32px rgba(96, 165, 250, 0.08);
}

.fishcaddy-incentive-glow {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.fishcaddy-incentive-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.fishcaddy-logo {
  height: 32px;
  width: auto;
}

.fishcaddy-incentive-badge {
  background: var(--gold);
  color: #0F0F0F;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  border-radius: 6px;
}

.fishcaddy-incentive-body {
  margin-bottom: 14px;
}

.fishcaddy-incentive-title {
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
  line-height: 1.3;
}

.fishcaddy-incentive-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

.fishcaddy-incentive-bottom {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(96, 165, 250, 0.15);
}

.fishcaddy-incentive-was {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

.fishcaddy-incentive-free {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
}

.waitlist-form {
  width: 100%;
  margin-top: 8px;
}

.waitlist-form-row {
  display: flex;
  gap: 12px;
}

.waitlist-form-row input[type="email"] {
  flex: 1;
  background: var(--bg-page);
  border: 1.5px solid var(--border-hover);
  border-radius: var(--radius-button);
  color: var(--text-primary);
  font-size: 15px;
  padding: 14px 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: inherit;
}

.waitlist-form-row input[type="email"]::placeholder {
  color: var(--text-hint);
}

.waitlist-form-row input[type="email"]:focus {
  outline: none;
  border-color: var(--green-primary);
  box-shadow: 0 0 0 3px rgba(21, 237, 128, 0.15);
}

.waitlist-form-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 10px;
  margin-bottom: 0;
}

.waitlist-success {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--green-faint);
  border: 1px solid var(--green-border);
  border-radius: var(--radius-standard);
  padding: 14px 18px;
  margin-top: 16px;
  color: var(--green-primary);
  font-weight: 600;
  font-size: 15px;
}

.waitlist-success-icon {
  font-size: 18px;
  font-weight: 900;
}

.waitlist-error {
  margin-top: 12px;
  color: var(--error-red);
  font-size: 14px;
}

@media (max-width: 540px) {
  .waitlist-form-row {
    flex-direction: column;
  }

  .waitlist-form-row .btn-primary {
    width: 100%;
    text-align: center;
  }
}

/* ============================================
   LEGAL PAGES
   ============================================ */

.legal {
  padding: 60px 0;
}

.legal h1 {
  font-size: 40px;
  margin-bottom: 8px;
}

.legal .last-updated {
  font-size: 13px;
  color: var(--text-hint);
  margin-bottom: 48px;
}

.legal h2 {
  font-size: 22px;
  margin-top: 48px;
  margin-bottom: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border-default);
}

.legal h2:first-of-type {
  border-top: none;
  padding-top: 0;
}

.legal h3 {
  font-size: 17px;
  margin-top: 24px;
  margin-bottom: 10px;
}

.legal p {
  margin-bottom: 14px;
}

.legal ul, .legal ol {
  margin-bottom: 14px;
  padding-left: 24px;
}

.legal li {
  margin-bottom: 6px;
}

.legal a {
  color: var(--green-primary);
  text-decoration: underline;
  text-decoration-color: rgba(21, 237, 128, 0.3);
  text-underline-offset: 2px;
}

.legal a:hover {
  text-decoration-color: var(--green-primary);
}

.legal strong {
  color: var(--text-primary);
  font-weight: 600;
}

.legal-contact {
  background: var(--bg-card);
  border-radius: var(--radius-standard);
  padding: 24px;
  border: 1px solid var(--border-default);
  margin-top: 32px;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 28px;
  }

  .hero {
    padding: 60px 0 48px;
  }

  .hero-description {
    font-size: 16px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .legal h1 {
    font-size: 30px;
  }
}
