/* ============================================
   CommunityBucks — Landing Page Styles
   ============================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --amber: #F5A623;
  --amber-light: #FFD27F;
  --amber-dark: #C07D0A;
  --dark: #0D0F14;
  --dark-2: #151820;
  --dark-3: #1E2230;
  --border: rgba(255,255,255,0.08);
  --text: #E8EAF0;
  --text-muted: #8A8FA8;
  --white: #FFFFFF;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(13, 15, 20, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--amber), var(--amber-dark));
  border-radius: 8px;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: #000;
  letter-spacing: -0.5px;
}

.logo-mark.small {
  width: 28px;
  height: 28px;
  font-size: 11px;
}

.logo-text {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--white);
  letter-spacing: -0.3px;
}

.nav-cta {
  font-size: 14px;
  font-weight: 500;
  color: var(--amber);
  text-decoration: none;
  border: 1px solid rgba(245, 166, 35, 0.35);
  padding: 7px 18px;
  border-radius: 6px;
  transition: all 0.2s;
}

.nav-cta:hover {
  background: rgba(245, 166, 35, 0.1);
  border-color: var(--amber);
}

/* ---- HERO ---- */
.hero {
  position: relative;
  padding: 160px 0 100px;
  overflow: hidden;
  text-align: center;
}

.hero-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(245, 166, 35, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.pilot-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 166, 35, 0.1);
  border: 1px solid rgba(245, 166, 35, 0.3);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--amber-light);
  margin-bottom: 32px;
  letter-spacing: 0.2px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 0 rgba(245, 166, 35, 0.6);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(245, 166, 35, 0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(245, 166, 35, 0); }
  100% { box-shadow: 0 0 0 0 rgba(245, 166, 35, 0); }
}

.hero-headline {
  font-family: 'Sora', sans-serif;
  font-size: clamp(36px, 6vw, 62px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--white);
  margin-bottom: 24px;
}

.gradient-text {
  background: linear-gradient(90deg, var(--amber) 0%, var(--amber-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  max-width: 620px;
  margin: 0 auto 40px;
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-dark) 100%);
  color: #000;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
  letter-spacing: 0.1px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245, 166, 35, 0.35);
}

.btn-primary.btn-large {
  font-size: 17px;
  padding: 17px 36px;
}

.btn-ghost {
  display: inline-block;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 15px;
  padding: 14px 28px;
  border: 1px solid var(--border);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-ghost:hover {
  color: var(--text);
  border-color: rgba(255,255,255,0.2);
}

/* ---- TRUST BAR ---- */
.trust-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--dark-2);
  padding: 36px 24px;
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.trust-number {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--amber);
}

.trust-label {
  font-size: 13px;
  color: var(--text-muted);
}

.divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ---- SECTIONS ---- */
.section {
  padding: 100px 0;
}

.section-dark {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}

.section-label.light {
  color: var(--amber-light);
}

.section-headline {
  font-family: 'Sora', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--white);
  margin-bottom: 60px;
}

.section-headline.light {
  color: var(--white);
}

/* ---- STEPS ---- */
.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 220px;
  max-width: 300px;
  text-align: center;
  padding: 32px 24px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.step-arrow {
  font-size: 24px;
  color: var(--amber);
  padding: 0 16px;
  align-self: center;
  opacity: 0.5;
}

.step-icon {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: var(--amber);
  opacity: 0.6;
  margin-bottom: 16px;
}

.step h3 {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---- FEATURES GRID ---- */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.feature {
  padding: 28px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.2s;
}

.feature:hover {
  border-color: rgba(245, 166, 35, 0.3);
}

.feature-icon {
  font-size: 28px;
  margin-bottom: 14px;
}

.feature h3 {
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.feature p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---- CTA SECTION ---- */
.cta-section {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  top: -150px;
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-sub {
  max-width: 560px;
  margin: 0 auto 40px;
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
}

.cta-email {
  margin-top: 20px;
  font-size: 14px;
  color: var(--text-muted);
}

.cta-email a {
  color: var(--amber);
  text-decoration: none;
}

.cta-email a:hover {
  text-decoration: underline;
}

/* ---- FOOTER ---- */
.footer {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  background: var(--dark-2);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 700px) {
  .step-arrow { display: none; }
  .steps { gap: 16px; }
  .step { max-width: 100%; }
  .trust-inner { gap: 28px; }
  .divider { display: none; }
  .footer-inner { justify-content: center; text-align: center; }
}
