/* ==========================
   BEETFRUIT — COMPONENTS
   Buttons, cards, nav, forms
   ========================== */

/* ----- Brand + Logo ----- */

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.logo {
  width: 180px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  overflow: visible;
}

.logo img {
  width: 100%;
  height: auto;
  display: block;
}

.brand span {
  font-size: 18px;
}

/* ----- Navigation ----- */

.nav {
  display: flex;
  gap: 16px;
  align-items: center;
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
}

.nav a {
  padding: 10px 10px;
  border-radius: 12px;
}

.nav a:hover {
  background: #F2F4F7;
  text-decoration: none;
}

/* ----- Buttons ----- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.05s ease, background 0.15s ease;
  white-space: nowrap;
}

.btn:hover {
  background: #F9FAFB;
  text-decoration: none;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: transparent;
}

.btn-primary:hover {
  background: var(--accent-hover);
}

/* ----- Kicker Badge ----- */

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 750;
  color: #7A0F43;
  background: var(--accent-soft);
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid #FFD0E1;
  font-size: 13px;
}

/* ----- Cards ----- */

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

.card h3 {
  margin: 0 0 10px;
  font-size: 16px;
}

.card p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
}

/* ----- Inputs + Waitlist ----- */

.waitlist {
  display: grid;
  gap: 10px;
}

.input {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid #D0D5DD;
  font-size: 15px;
  outline: none;
  background: #fff;
}

.input:focus {
  border-color: rgba(194, 24, 91, 0.55);
  box-shadow: 0 0 0 4px rgba(194, 24, 91, 0.12);
}

/* ----- Feature Cards ----- */

.feature {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  background: #efefef;
}

.feature .icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: #F2F4F7;
  display: grid;
  place-items: center;
  margin-bottom: 10px;
  font-weight: 900;
  color: #344054;
}

.feature h3 {
  margin: 0 0 6px;
  font-size: 16px;
}

.feature p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

/* ----- Callout Block ----- */

.callout {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(135deg, #FFFFFF, #FFF4F8);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.callout h3 {
  margin: 0;
  font-size: 18px;
}

.callout p {
  margin: 0;
  color: var(--muted);
}

/* ----- Divider ----- */

.divider {
  height: 1px;
  background: var(--border);
  margin: 14px 0 0;
}
