/* =====================================================
   HOT BUTTER — Waitlist Landing Page
   Brand: #FFCC00  #FF5500  #1A1A1A  #FFFFFF
   ===================================================== */

:root {
  --yellow:  #FFCC00;
  --orange:  #FF5500;
  --black:   #111111;
  --card:    #1A1A1A;
  --border:  rgba(255,255,255,0.08);
  --border-h:rgba(255,204,0,0.28);
  --text:    #FFFFFF;
  --text-2:  #999999;
  --text-3:  #555555;

  --font-h: 'Arial Black', 'Helvetica Neue', Arial, sans-serif;
  --font-b: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --r-lg: 20px;
}

/* ── Reset ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-b);
  background: var(--black);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a   { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── Gradient text ───────────────────────────────── */
.text-gradient {
  background: linear-gradient(135deg, var(--yellow) 0%, var(--orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ─────────────────────────────────────── */
.btn-nav {
  display: inline-flex; align-items: center;
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--yellow) 0%, var(--orange) 100%);
  color: #111; font-family: var(--font-h); font-weight: 900; font-size: .8rem;
  border-radius: 50px; transition: all .2s; white-space: nowrap;
}
.btn-nav:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(255,85,0,.35); }

.btn-cta {
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: #111; font-family: var(--font-h); font-weight: 900; font-size: .88rem;
  border-radius: 50px; border: none; cursor: pointer; white-space: nowrap;
  transition: all .2s;
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,85,0,.35); }

/* ── Nav ─────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 24px 0; transition: all .3s ease;
}
.nav-scrolled {
  background: rgba(17,17,17,.96);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.nav-container {
  max-width: 1440px; margin: 0 auto; padding: 0 60px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo img { height: 30px; width: auto; }

/* ── Hero ────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
}
.hero-container {
  width: 100%; max-width: 1440px; margin: 0 auto;
  padding: 160px 60px 100px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.hero-content { display: flex; flex-direction: column; gap: 28px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px;
  background: rgba(255,204,0,.08); border: 1px solid rgba(255,204,0,.22);
  border-radius: 50px; font-size: .78rem; font-weight: 600; color: var(--yellow);
  width: fit-content;
}
.badge-dot {
  width: 6px; height: 6px; background: var(--orange); border-radius: 50%;
  animation: bdot 2s ease-in-out infinite;
}
@keyframes bdot { 0%,100% { opacity:1; } 50% { opacity:.3; } }

.hero-title {
  font-family: var(--font-h); font-weight: 900;
  font-size: clamp(3.2rem, 5.5vw, 6rem);
  line-height: 1.02; letter-spacing: -.025em;
}
.hero-subtitle {
  font-size: 1.05rem; color: var(--text-2); line-height: 1.8; max-width: 460px;
}

/* ── Form ────────────────────────────────────────── */
.hero-form,
.waitlist-form {
  display: flex; gap: 10px; width: 100%; max-width: 480px;
}
.form-input {
  flex: 1; padding: 15px 22px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 50px; color: var(--text); font-size: .9rem;
  outline: none; transition: border-color .25s; font-family: var(--font-b);
}
.form-input:focus { border-color: rgba(255,204,0,.4); }
.form-input::placeholder { color: var(--text-3); }
.form-input.input-error {
  border-color: rgba(255,85,0,.6);
  animation: shake .3s ease;
}
@keyframes shake {
  0%,100% { transform: translateX(0); }
  25%      { transform: translateX(-6px); }
  75%      { transform: translateX(6px); }
}
.form-note { font-size: .76rem; color: var(--text-3); }
.form-success {
  padding: 16px 26px;
  background: rgba(74,222,128,.08); border: 1px solid rgba(74,222,128,.2);
  border-radius: 50px; color: #4ADE80;
  font-family: var(--font-h); font-weight: 700; font-size: .85rem;
}

/* Platform tags */
.platform-tags { display: flex; gap: 10px; flex-wrap: wrap; }
.platform-tag {
  display: inline-flex; align-items: center;
  padding: 6px 14px; border-radius: 8px;
  font-size: .78rem; font-weight: 600; border: 1px solid;
}
.platform-tag.amazon { color: #FF9900; border-color: rgba(255,153,0,.3); background: rgba(255,153,0,.08); }
.platform-tag.tiktok { color: #69C9D0; border-color: rgba(105,201,208,.3); background: rgba(105,201,208,.08); }

/* Hero visual */
.hero-visual { display: flex; align-items: center; justify-content: center; }
.hero-img {
  width: 100%;
  border-radius: var(--r-lg);
  box-shadow: 0 32px 100px rgba(255,85,0,.25);
}

/* ── Shared section ──────────────────────────────── */
.section-container { max-width: 1440px; margin: 0 auto; padding: 0 60px; }
.section-title {
  font-family: var(--font-h); font-weight: 900;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem); line-height: 1.1; letter-spacing: -.02em;
}

/* ── Waitlist ─────────────────────────────────────── */
.waitlist {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}
.waitlist-content {
  text-align: center; display: flex; flex-direction: column;
  align-items: center; gap: 22px; max-width: 580px; margin: 0 auto;
}
.wordmark { height: 48px; object-fit: contain; }
.launch-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 16px;
  background: rgba(255,85,0,.1); border: 1px solid rgba(255,85,0,.25);
  border-radius: 50px; font-size: .72rem; font-weight: 700;
  color: var(--orange); text-transform: uppercase; letter-spacing: .08em;
}
.waitlist-sub { font-size: .95rem; color: var(--text-2); line-height: 1.8; }

/* ── Footer ──────────────────────────────────────── */
.footer {
  padding: 28px 0;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1440px; margin: 0 auto; padding: 0 60px;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-wordmark { height: 22px; object-fit: contain; opacity: .6; }
.footer-copy { font-size: .75rem; color: var(--text-3); }

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 900px) {
  .hero-container  { grid-template-columns: 1fr; text-align: center; gap: 48px; padding: 140px 32px 80px; }
  .hero-content    { align-items: center; }
  .hero-subtitle   { max-width: 100%; }
  .hero-visual     { display: none; }
  .hero-form       { max-width: 100%; }
  .section-container { padding: 0 32px; }
  .nav-container   { padding: 0 32px; }
  .footer-inner    { padding: 0 32px; }
}

@media (max-width: 480px) {
  .hero-title      { font-size: 3rem; }
  .hero-form,
  .waitlist-form   { flex-direction: column; }
  .platform-tags   { justify-content: center; }
  .footer-inner    { flex-direction: column; gap: 8px; text-align: center; }
}
