/* =================================================================
   BUTTONS — exactly 4 variants on the entire site:
     .btn-filled              regular solid
     .btn-filled.compact      small solid
     .btn-ghost               regular clear
     .btn-ghost.compact       small clear

   .btn-filled and .btn-ghost share IDENTICAL geometry; only the
   color/bg/border-color differ. .compact modifier shrinks both
   identically. Do NOT introduce a 5th variant — use chrome classes
   (e.g. .mobile-pill) on top of one of these instead.
   ================================================================= */

/* Shared geometry — regular size */
.btn-filled,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-8);
  padding: var(--spacing-12) var(--spacing-20);
  border: 1px solid transparent;
  border-radius: var(--radius-buttons);
  font-family: var(--font-universalsans);
  font-weight: var(--font-weight-regular);
  font-size: var(--text-body);
  letter-spacing: var(--tracking-body);
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.btn-filled svg,
.btn-ghost svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Shared geometry — small size */
.btn-filled.compact,
.btn-ghost.compact {
  padding: var(--spacing-8) var(--spacing-16);
  font-size: var(--text-body-sm);
}

.btn-filled.compact svg,
.btn-ghost.compact svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Filled (solid) — visual style only */
.btn-filled {
  background: var(--color-frost-white);
  color: #0a0a0a;
  border-color: var(--color-frost-white);
}

.btn-filled:hover {
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.08);
}

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

/* Ghost (clear) — visual style only */
.btn-ghost {
  background: transparent;
  color: var(--color-frost-white);
  border-color: rgba(255, 255, 255, 0.25);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.4);
}

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

/* ===== Navigation Link ===== */
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-8);
  padding: 10px 0;
  background: rgba(0, 0, 0, 0);
  color: var(--color-frost-white);
  border: none;
  font-family: var(--font-universalsans);
  font-weight: var(--font-weight-regular);
  font-size: var(--text-body);
  letter-spacing: var(--tracking-body);
  cursor: pointer;
  transition: color 160ms ease;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--color-muted-ash);
}

.nav-link svg {
  width: 18px;
  height: 18px;
}

/* ===== Interactive Text Input ===== */
.input {
  width: 100%;
  padding: var(--spacing-20) var(--spacing-20);
  background: var(--color-deep-midnight);
  color: var(--color-frost-white);
  border: 1px solid var(--color-faded-steel);
  border-radius: var(--radius-inputs);
  font-family: var(--font-universalsans);
  font-weight: var(--font-weight-regular);
  font-size: var(--text-body);
  letter-spacing: var(--tracking-body);
  line-height: 1;
  outline: none;
  transition: box-shadow 160ms ease, border-color 160ms ease;
}

.input::placeholder {
  color: var(--color-muted-ash);
}

.input:focus {
  border-color: var(--color-electric-blue);
  box-shadow: var(--shadow-input-focus);
}

/* Input + button group, used in hero email-capture */
.input-group {
  position: relative;
  width: 100%;
}

.input-group .input {
  padding-right: 156px;
}

/* Input-embedded submit reuses .btn-filled.compact; positioning only. */
.input-group .btn-filled {
  position: absolute;
  top: 6px;
  right: 6px;
  bottom: 6px;
  padding: 0 var(--spacing-16);
  font-size: var(--text-body-sm);
}

.input-group .btn-filled svg {
  width: 16px;
  height: 16px;
}

/* ===== Callout Card ===== */
.callout-card {
  position: relative;
  background: var(--color-deep-midnight);
  border: 1px solid var(--color-faded-steel);
  border-radius: var(--radius-calloutcards);
  padding: var(--spacing-24);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-16);
  transition: border-color 200ms ease, transform 200ms ease;
}

.callout-card:hover {
  border-color: rgba(255, 255, 255, 0.18);
}

.callout-card .card-eyebrow {
  display: flex;
  align-items: center;
  gap: var(--spacing-8);
  flex-wrap: wrap;
}

.callout-card .card-title {
  font-size: var(--text-heading);
  line-height: var(--leading-heading);
  letter-spacing: var(--tracking-heading);
  color: var(--color-frost-white);
}

.callout-card .card-text {
  color: var(--color-muted-ash);
  font-size: var(--text-body);
  line-height: var(--leading-body);
}

.callout-card .card-actions {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: var(--spacing-12);
  flex-wrap: wrap;
}

.callout-card .card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-frost-white);
}

.callout-card .card-icon svg {
  width: 32px;
  height: 32px;
  color: var(--color-frost-white);
}

/* ===== Badge Neutral ===== */
.badge-neutral {
  display: inline-flex;
  align-items: center;
  background: rgba(0, 0, 0, 0);
  color: var(--color-muted-ash);
  border-radius: 0;
  padding: 0;
  font-family: var(--font-geistmono);
  font-weight: var(--font-weight-regular);
  font-size: var(--text-caption);
  line-height: var(--leading-caption);
  letter-spacing: var(--tracking-caption);
  text-transform: uppercase;
}

.badge-neutral.success {
  color: #22c55e;
}

.badge-neutral.info {
  color: #3b82f6;
}

/* ===== Inline link ===== */
.link-inline {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-8);
  color: var(--color-frost-white);
  border-bottom: 1px solid transparent;
  transition: border-color 160ms ease, color 160ms ease;
  font-size: var(--text-body);
}

.link-inline:hover {
  border-color: rgba(255, 255, 255, 0.4);
}

.link-inline svg {
  width: 16px;
  height: 16px;
}

/* ===== Section eyebrow (small mono label above section titles) ===== */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-8);
  font-family: var(--font-geistmono);
  font-size: var(--text-caption);
  letter-spacing: var(--tracking-caption);
  color: var(--color-muted-ash);
  text-transform: uppercase;
}

.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--color-frost-white);
}
