/* ============================================================
   Webild-style onboarding design system
   Dark: #09090b background, #0597ff accent, glassmorphism cards
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* ---- Reset & base ---------------------------------------- */
.ob-root {
  min-height: 100vh;
  background: #09090b;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #fafafa;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

/* ---- Background glow effect ------------------------------ */
.ob-root::before {
  content: '';
  position: fixed;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(5,151,255,0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ---- Top navigation bar ---------------------------------- */
.ob-nav {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.ob-nav-logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fafafa;
  text-decoration: none;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ob-nav-logo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0597ff;
  box-shadow: 0 0 12px rgba(5,151,255,0.8);
}

.ob-nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ob-nav-link {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
}
.ob-nav-link:hover { color: #fafafa; background: rgba(255,255,255,0.06); }

.ob-nav-btn {
  background: #0597ff;
  color: #fff;
  border: none;
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, box-shadow 0.15s;
}
.ob-nav-btn:hover {
  background: #0080e0;
  box-shadow: 0 0 20px rgba(5,151,255,0.4);
}

/* ---- Page wrapper ---------------------------------------- */
.ob-page {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}

/* ---- Auth card (sign in / sign up) ----------------------- */
.ob-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 20px;
  padding: 48px 40px;
  width: 100%;
  max-width: 440px;
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}

.ob-card-wide {
  max-width: 680px;
}

.ob-card-xl {
  max-width: 900px;
}

/* ---- Card header ----------------------------------------- */
.ob-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(5,151,255,0.12);
  border: 1px solid rgba(5,151,255,0.25);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #0597ff;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ob-card-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0597ff;
  box-shadow: 0 0 8px rgba(5,151,255,0.8);
}

.ob-card h1, .ob-card h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #fafafa;
  margin: 0 0 8px 0;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.ob-card-sub {
  color: rgba(255,255,255,0.5);
  font-size: 0.9375rem;
  margin: 0 0 32px 0;
  line-height: 1.5;
}

/* ---- Form elements --------------------------------------- */
.ob-form-group {
  margin-bottom: 20px;
}

.ob-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.ob-input {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 12px 16px;
  color: #fafafa;
  font-size: 0.9375rem;
  font-family: inherit;
  transition: border-color 0.15s, box-shadow 0.15s;
  box-sizing: border-box;
  outline: none;
}
.ob-input::placeholder { color: rgba(255,255,255,0.3); }
.ob-input:focus {
  border-color: rgba(5,151,255,0.6);
  box-shadow: 0 0 0 3px rgba(5,151,255,0.12);
}

.ob-textarea {
  min-height: 180px;
  resize: vertical;
  line-height: 1.6;
}

/* ---- Primary button -------------------------------------- */
.ob-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 24px;
  background: #0597ff;
  border: none;
  border-radius: 12px;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s, box-shadow 0.15s, transform 0.1s;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 4px 20px rgba(5,151,255,0.35);
  margin-top: 8px;
}
.ob-btn:hover {
  background: #0080e0;
  box-shadow: 0 4px 28px rgba(5,151,255,0.55);
  transform: translateY(-1px);
}
.ob-btn:active { transform: translateY(0); }
.ob-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* ---- Ghost button ---------------------------------------- */
.ob-btn-ghost {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: none;
  color: #fafafa;
}
.ob-btn-ghost:hover {
  background: rgba(255,255,255,0.10);
  box-shadow: none;
  transform: translateY(-1px);
}

/* ---- Divider --------------------------------------------- */
.ob-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 24px 0;
  color: rgba(255,255,255,0.25);
  font-size: 0.8125rem;
}
.ob-divider::before, .ob-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.10);
}

/* ---- Footer link ----------------------------------------- */
.ob-card-footer {
  text-align: center;
  margin-top: 24px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
}
.ob-card-footer a {
  color: #0597ff;
  text-decoration: none;
  font-weight: 500;
}
.ob-card-footer a:hover { text-decoration: underline; }

/* ---- Alerts ---------------------------------------------- */
.ob-alert {
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.875rem;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.ob-alert-error {
  background: rgba(239,68,68,0.12);
  border: 1px solid rgba(239,68,68,0.25);
  color: #fca5a5;
}
.ob-alert-success {
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.25);
  color: #86efac;
}

/* ---- Step progress (onboarding) -------------------------- */
.ob-steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 40px;
  justify-content: center;
}

.ob-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.ob-step-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.04);
  transition: all 0.3s;
}

.ob-step-circle.active {
  border-color: #0597ff;
  background: rgba(5,151,255,0.15);
  color: #0597ff;
  box-shadow: 0 0 16px rgba(5,151,255,0.4);
}

.ob-step-circle.done {
  border-color: #22c55e;
  background: rgba(34,197,94,0.15);
  color: #22c55e;
}

.ob-step-label {
  font-size: 0.6875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.35);
  white-space: nowrap;
}
.ob-step.is-active .ob-step-label { color: #0597ff; }
.ob-step.is-done .ob-step-label { color: #22c55e; }

.ob-step-connector {
  width: 48px;
  height: 2px;
  background: rgba(255,255,255,0.10);
  margin: 0 4px;
  margin-bottom: 22px;
  flex-shrink: 0;
}
.ob-step-connector.done { background: #22c55e; }

/* ---- Domain search --------------------------------------- */
.ob-search-row {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
}
.ob-search-row .ob-input {
  flex: 1;
}
.ob-search-btn {
  width: auto;
  padding: 12px 24px;
  white-space: nowrap;
  flex-shrink: 0;
}

.ob-domain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.ob-domain-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px;
  padding: 16px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ob-domain-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(5,151,255,0.35);
}
.ob-domain-card.selected {
  border-color: #0597ff;
  background: rgba(5,151,255,0.10);
  box-shadow: 0 0 0 1px rgba(5,151,255,0.35), 0 4px 16px rgba(5,151,255,0.15);
}
.ob-domain-card.unavailable {
  opacity: 0.4;
  cursor: not-allowed;
}
.ob-domain-name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fafafa;
}
.ob-domain-price {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
}
.ob-domain-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.ob-domain-badge.available {
  background: rgba(34,197,94,0.15);
  color: #86efac;
  border: 1px solid rgba(34,197,94,0.25);
}
.ob-domain-badge.unavailable {
  background: rgba(239,68,68,0.12);
  color: #fca5a5;
  border: 1px solid rgba(239,68,68,0.2);
}

/* ---- Payment card ---------------------------------------- */
.ob-price-display {
  text-align: center;
  margin: 28px 0;
}
.ob-price-amount {
  font-size: 3.5rem;
  font-weight: 800;
  color: #fafafa;
  letter-spacing: -0.04em;
  line-height: 1;
}
.ob-price-period {
  font-size: 1rem;
  color: rgba(255,255,255,0.4);
  font-weight: 400;
}
.ob-price-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
  margin-top: 6px;
}

.ob-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ob-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.75);
}
.ob-feature-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(34,197,94,0.15);
  border: 1px solid rgba(34,197,94,0.3);
  color: #86efac;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6875rem;
  flex-shrink: 0;
}

/* ---- Brief / requirements page --------------------------- */
.ob-brief-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

@media (max-width: 640px) {
  .ob-brief-grid { grid-template-columns: 1fr; }
  .ob-card { padding: 32px 24px; }
  .ob-nav { padding: 16px 20px; }
  .ob-domain-grid { grid-template-columns: 1fr 1fr; }
}

/* ---- Success state --------------------------------------- */
.ob-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(34,197,94,0.15);
  border: 2px solid rgba(34,197,94,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 24px;
  box-shadow: 0 0 32px rgba(34,197,94,0.25);
}

.ob-empty {
  text-align: center;
  padding: 40px 20px;
  color: rgba(255,255,255,0.3);
  font-size: 0.9375rem;
}

/* ---- Spinner --------------------------------------------- */
.ob-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: ob-spin 0.7s linear infinite;
}
@keyframes ob-spin { to { transform: rotate(360deg); } }

/* ---- Submissions list ------------------------------------ */
.ob-submissions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 32px;
}
.ob-submission-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.875rem;
}
.ob-submission-title {
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ob-submission-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-left: 12px;
}
.ob-badge {
  padding: 2px 10px;
  border-radius: 100px;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.ob-badge-submitted {
  background: rgba(5,151,255,0.15);
  color: #60bdff;
  border: 1px solid rgba(5,151,255,0.25);
}
.ob-badge-processing {
  background: rgba(245,158,11,0.15);
  color: #fcd34d;
  border: 1px solid rgba(245,158,11,0.25);
}
.ob-badge-completed {
  background: rgba(34,197,94,0.15);
  color: #86efac;
  border: 1px solid rgba(34,197,94,0.25);
}

/* ============================================================
   Webild public landing page  (wb2-* namespace)
   ============================================================ */

/* Reset for landing sections */
.wb2-nav, .wb2-hero, .wb2-how, .wb2-domain-section {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  box-sizing: border-box;
}
.wb2-nav *, .wb2-hero *, .wb2-how *, .wb2-domain-section * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ---- Nav -------------------------------------------------- */
.wb2-nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  max-width: 1400px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 12px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.wb2-logo {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.5px;
  color: #111827;
}

.wb2-nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.wb2-social-icons {
  display: flex;
  gap: 8px;
}

.wb2-social-icon {
  width: 32px;
  height: 32px;
  background: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 13px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.07);
  cursor: pointer;
  color: #111827;
}

.wb2-btn-blue {
  background-color: #4d93ff;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 500;
  cursor: pointer;
  font-size: 14px;
  display: inline-block;
  text-decoration: none;
  transition: background 0.2s;
}
.wb2-btn-blue:hover { background-color: #3b7ce6; }

/* ---- Hero ------------------------------------------------- */
.wb2-hero {
  min-height: 100vh;
  background: linear-gradient(180deg, #eef3f9 0%, #ffffff 50%, #dcead9 75%, #a4c49f 100%);
  padding-top: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.wb2-hero-badge {
  background-color: #1f2937;
  color: #d1d5db;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 24px;
}

.wb2-hero-title {
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 20px;
  color: #111827;
  line-height: 1;
}

/* ---- Prompt container ------------------------------------ */
.wb2-prompt-container {
  margin-top: 40px;
  background: rgba(255,255,255,0.6);
  padding: 24px;
  border-radius: 24px;
  width: 100%;
  max-width: 800px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.wb2-prompt-box {
  background: white;
  border-radius: 16px;
  padding: 20px 24px;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.wb2-prompt-input {
  width: 100%;
  font-size: 18px;
  color: #111827;
  margin-bottom: 30px;
  line-height: 1.4;
}

.wb2-prompt-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wb2-prompt-tools {
  display: flex;
  gap: 10px;
}

.wb2-tool-btn {
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  color: #111827;
  transition: background 0.15s;
}
.wb2-tool-btn:hover { background: #e5e7eb; }

.wb2-submit-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wb2-btn-plus {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #e5e7eb;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #6b7280;
  font-size: 18px;
}

.wb2-btn-send {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #4d93ff;
  color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(77,147,255,0.4);
}

/* ---- Thumbnails ------------------------------------------ */
.wb2-thumbnails {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  justify-content: center;
}

.wb2-thumbnail {
  width: 180px;
  height: 120px;
  border-radius: 12px;
  background: white;
  padding: 6px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  border: 1px solid rgba(255,255,255,0.8);
  flex-shrink: 0;
}

.wb2-thumb-inner {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.wb2-t1 { background: #1a1a1a; }
.wb2-t2 { background: #e5e7eb; }
.wb2-t3 { background: #d1fae5; }
.wb2-t4 { background: #dbeafe; }

/* ---- How It Works ---------------------------------------- */
.wb2-how {
  padding: 100px 5%;
  background: #ffffff;
}

.wb2-how-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.wb2-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.wb2-section-title h3 {
  color: #4d93ff;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 8px;
}

.wb2-section-title h2 {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -1px;
  color: #111827;
}

.wb2-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.wb2-feature-card {
  background: white;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.wb2-feature-img-wrap {
  background: #f4f7fc;
  border-radius: 20px;
  height: 280px;
  position: relative;
  overflow: hidden;
  border: 1px solid #edf2f7;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wb2-mockup-box {
  background: white;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  width: 80%;
}

.wb2-mini-tag {
  background: #f3f4f6;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 500;
  color: #374151;
}

.wb2-feature-text {
  font-size: 15px;
  line-height: 1.5;
  color: #374151;
}

.wb2-feature-text strong {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
}

/* ---- Domain Section -------------------------------------- */
.wb2-domain-section {
  background-color: #030712;
  color: white;
  padding: 120px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.wb2-glow-arc {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 400px;
  background: radial-gradient(ellipse at bottom, rgba(77,147,255,0.8) 0%, rgba(77,147,255,0) 70%);
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.wb2-domain-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 800px;
}

.wb2-domain-content h3 {
  color: #4d93ff;
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 12px;
}

.wb2-domain-content h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 40px;
  letter-spacing: -1px;
  color: white;
}

.wb2-domain-search-wrapper {
  position: relative;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}

.wb2-domain-search-wrapper::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: #4d93ff;
  filter: blur(20px);
  opacity: 0.5;
  border-radius: 16px;
  z-index: 0;
}

.wb2-domain-search {
  position: relative;
  z-index: 1;
  background: white;
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.wb2-domain-search input {
  border: none;
  outline: none;
  font-size: 16px;
  width: 100%;
  color: #111827;
  font-family: 'Inter', sans-serif;
}

.wb2-transfer-domain {
  margin-top: 24px;
  font-size: 14px;
  color: #9ca3af;
}

/* ---- Responsive ------------------------------------------ */
@media (max-width: 900px) {
  .wb2-features-grid { grid-template-columns: 1fr; }
  .wb2-section-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .wb2-hero-title { font-size: 48px; }
  .wb2-thumbnails { flex-wrap: wrap; }
}
