/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  font-size: 24px;
  line-height: 1;
  white-space: nowrap;
}

.logo__badge {
  background: var(--color-bg-brand);
  color: var(--color-text-on-brand);
  padding: 4px 8px;
  border-radius: var(--radius-brand-sm);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  background: var(--color-bg-brand);
  color: var(--color-text-on-brand);
  font-size: 16px;
  line-height: 0.92;
  transition: background 0.2s ease, transform 0.15s ease;
  text-align: center;
}

.btn:hover {
  background: var(--color-bg-brand-hover);
}

.btn--sm {
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-brand-sm);
}

.btn--md {
  padding: var(--space-4) var(--space-7);
  border-radius: var(--radius-brand-md);
}

.btn--block {
  width: 100%;
}

/* Glass surfaces */
.glass {
  background: var(--color-bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.glass-card {
  background: var(--color-bg-glass);
  border-radius: var(--radius-brand-sm);
  padding: 20px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 12px 20px;
  border-radius: var(--radius-full);
  background: var(--color-bg-glass);
  white-space: nowrap;
  color: inherit;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

a.pill:hover {
  background: rgba(255, 157, 0, 0.16);
  color: var(--color-bg-brand);
}

/* Icon badge 48 */
.icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #121212;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.icon-badge img {
  width: 24px;
  height: 24px;
}

/* Section titles */
.section-title {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  line-height: var(--lh-tight);
}

.section-lead {
  margin-top: var(--space-4);
  color: var(--color-text-muted);
  font-size: 16px;
  max-width: 640px;
}

.section-lead a,
.caption a,
.faq-item a,
.link {
  color: var(--color-bg-brand);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color 0.15s ease;
}

.section-lead__link {
  display: inline-block;
  margin-top: 8px;
}

@media (min-width: 801px) {
  .section-lead__link {
    display: block;
  }
}

.section-lead a:hover,
.caption a:hover,
.faq-item a:hover,
.link:hover {
  color: #fff;
}

.eyebrow {
  font-size: 14px;
  line-height: var(--lh-body);
  color: var(--color-text-muted);
}

.caption {
  font-size: 14px;
  line-height: var(--lh-body);
  color: var(--color-text-muted);
}

/* Form */
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field label {
  font-size: 14px;
  color: var(--color-text-muted);
}

.field input,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--color-border-subtle);
  border-radius: var(--radius-brand-sm);
  background: #1f1f1f;
  color: var(--color-text-primary);
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.4;
}

.checkbox input {
  margin-top: 3px;
  accent-color: var(--color-bg-brand);
}

.checkbox a {
  text-decoration: underline;
  text-underline-offset: 2px;
}
