:root {
  --fb-dark-brown: #4E3715;
  --fb-gold: #E9CF82;
  --fb-olive: #655011;
  --fb-blue: #AAB9B4;
  --fb-cream: #FFFBCE;
}

@font-face {
  font-family: 'Furbished Display XBlack';
  src: url('../fonts/FurbishedDisplay-XBlack.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

.fb-band {
  width: 100%;
  padding: 64px 24px;
}

.fb-band-inner {
  max-width: 640px;
  margin: 0 auto;
}

.fb-band-logo {
  background: var(--fb-gold);
  text-align: center;
}

.fb-logo-text {
  font-family: 'Furbished Display XBlack', Arial, sans-serif;
  font-weight: 900;
  font-size: 32px;
  color: var(--fb-dark-brown);
}

.fb-band-hero {
  background: var(--fb-dark-brown);
  padding-top: 72px;
  padding-bottom: 72px;
}

.fb-band-hero .fb-band-inner {
  text-align: left;
}

h1 {
  font-family: 'Furbished Display XBlack', Arial, sans-serif;
  font-weight: 900;
  font-size: 48px;
  line-height: 1.08;
  color: var(--fb-gold);
  margin: 0 0 24px;
}

.fb-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  padding: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--fb-gold);
  cursor: pointer;
}

.fb-cta-text {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.fb-cta-link:hover { opacity: 0.85; }

.fb-cta-arrow {
  display: inline-block;
  text-decoration: none;
  transition: transform 0.2s ease;
  animation: fb-cta-arrow-attract 1.2s ease-in-out 0.8s 3;
}

.fb-cta-link:hover .fb-cta-arrow,
.fb-cta-link:focus-visible .fb-cta-arrow {
  animation-play-state: paused;
  transform: translateX(6px);
}

@keyframes fb-cta-arrow-attract {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(6px); }
}

@media (prefers-reduced-motion: reduce) {
  .fb-cta-arrow { transition: none; animation: none; }
}

.fb-signup-reveal {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.fb-signup-reveal.fb-open {
  max-height: 200px;
  margin-top: 24px;
}

form {
  display: flex;
  gap: 10px;
  margin: 0 0 12px;
}

.fb-hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  margin: 0;
}

@media (max-width: 480px) {
  form { flex-direction: column; }
  h1 { font-size: 38px; }
  .fb-logo-text { font-size: 28px; }
}

input[type="email"] {
  flex: 1;
  min-width: 0;
  padding: 16px 18px;
  border-radius: 999px;
  border: none;
  font-size: 16px;
  background: var(--fb-cream);
  color: var(--fb-dark-brown);
  outline: none;
}

input[type="email"]::placeholder {
  color: #8a7a55;
}

button.fb-submit-btn {
  padding: 16px 30px;
  border-radius: 999px;
  border: none;
  background: var(--fb-gold);
  color: var(--fb-dark-brown);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

button.fb-submit-btn:hover { opacity: 0.9; }
button.fb-submit-btn:disabled { opacity: 0.6; cursor: default; }

.fb-form-msg {
  font-size: 14px;
  min-height: 20px;
  color: var(--fb-blue);
  margin: 0;
}

.fb-form-msg.fb-success { color: var(--fb-gold); font-weight: 700; }
.fb-form-msg.fb-error { color: #e0a0a0; }

.fb-band-status {
  background: var(--fb-blue);
  text-align: center;
}

.fb-status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 84px;
  padding: 0 64px;
  border: 2px solid var(--fb-dark-brown);
  border-radius: 50%;
  font-size: 16px;
  font-weight: 600;
  color: var(--fb-dark-brown);
  white-space: nowrap;
}

@media (max-width: 480px) {
  .fb-status-pill { height: 60px; padding: 0 28px; font-size: 13px; }
}

.fb-band-footer {
  background: var(--fb-cream);
  text-align: center;
}

.fb-band-footer p {
  font-size: 14px;
  color: var(--fb-dark-brown);
  margin: 0;
}

.fb-band-footer a {
  color: var(--fb-dark-brown);
  font-weight: 600;
}
