/* ==========================================================================
   ORBE — Home v2 (refined premium dark)
   Paleta: near-black base + rosa #FF2D8E -> roxo #7B2FF7 + neutros
   Fontes: Sora (display) / Inter (texto)
   ========================================================================== */

:root {
  --orbe-bg: #08070d;
  --orbe-bg-soft: #0e0c16;
  --orbe-surface: rgba(255, 255, 255, 0.04);
  --orbe-surface-2: rgba(255, 255, 255, 0.06);
  --orbe-border: rgba(255, 255, 255, 0.08);
  --orbe-border-strong: rgba(255, 255, 255, 0.14);
  --orbe-text: #f5f3f8;
  --orbe-muted: rgba(245, 243, 248, 0.62);
  --orbe-faint: rgba(245, 243, 248, 0.42);
  --orbe-pink: #ff2d8e;
  --orbe-magenta: #d6249f;
  --orbe-purple: #7b2ff7;
  --orbe-blue: #4d8dff;
  --orbe-grad: linear-gradient(100deg, #ff2d8e 0%, #d6249f 48%, #7b2ff7 100%);
  --orbe-radius: 18px;
  --orbe-shadow: 0 30px 60px -28px rgba(0, 0, 0, 0.75);
  --orbe-shadow-glow: 0 24px 80px -30px rgba(214, 36, 159, 0.55);
}

* { box-sizing: border-box; }

html.orbe-home-v0,
body.orbe-home-v0 {
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body.orbe-home-v0 {
  background: var(--orbe-bg);
  color: var(--orbe-text);
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, h4 { font-family: "Sora", "Inter", sans-serif; margin: 0; }
.orbe-defs { position: absolute; }

.orbe-home-root {
  position: relative;
  min-height: 100vh;
  isolation: isolate;
}

.orbe-home-container {
  width: 100%;
  max-width: 80rem;
  padding-inline: 24px;
  margin: 0 auto;
}

.orbe-gradient-text {
  background: var(--orbe-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ---------- Aurora background ---------- */
.orbe-aurora {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background:
    radial-gradient(120% 80% at 80% -10%, rgba(123, 47, 247, 0.16), transparent 60%),
    radial-gradient(90% 60% at 10% 0%, rgba(255, 45, 142, 0.14), transparent 55%),
    var(--orbe-bg);
}

.orbe-aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
}

.orbe-aurora-blob-1 {
  width: 560px;
  height: 560px;
  top: -180px;
  right: -120px;
  background: radial-gradient(circle, rgba(255, 45, 142, 0.55), transparent 70%);
  animation: orbe-float 16s ease-in-out infinite;
}

.orbe-aurora-blob-2 {
  width: 520px;
  height: 520px;
  top: 280px;
  left: -160px;
  background: radial-gradient(circle, rgba(123, 47, 247, 0.5), transparent 70%);
  animation: orbe-float 20s ease-in-out infinite reverse;
}

.orbe-aurora-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(120% 70% at 50% 0%, #000 30%, transparent 75%);
  mask-image: radial-gradient(120% 70% at 50% 0%, #000 30%, transparent 75%);
}

@keyframes orbe-float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-30px, 40px); }
}

/* ---------- Header ---------- */
.orbe-home-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 14px 0;
  backdrop-filter: blur(16px);
  background: rgba(8, 7, 13, 0.72);
  border-bottom: 1px solid var(--orbe-border);
}

.orbe-home-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.orbe-home-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.orbe-home-brand-mark { width: 30px; height: 30px; }

.orbe-home-brand-word {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.06em;
}

.orbe-home-nav {
  display: none;
  align-items: center;
  gap: 30px;
}

.orbe-home-nav a {
  color: var(--orbe-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.orbe-home-nav a:hover { color: var(--orbe-text); }

.orbe-home-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.orbe-home-header-link {
  display: none;
  color: var(--orbe-muted);
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.orbe-home-header-link:hover { color: var(--orbe-text); }

.orbe-home-header-cta {
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  background: var(--orbe-grad);
  box-shadow: 0 10px 30px -12px rgba(214, 36, 159, 0.7);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.orbe-home-header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px -12px rgba(214, 36, 159, 0.85);
}

/* ---------- Hero ---------- */
.orbe-home-hero {
  padding: 64px 0 0;
}

.orbe-home-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.orbe-home-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 15px;
  border-radius: 999px;
  border: 1px solid var(--orbe-border-strong);
  background: var(--orbe-surface);
  color: var(--orbe-text);
  font-size: 0.82rem;
  font-weight: 500;
}

.orbe-home-badge svg { width: 16px; height: 16px; color: var(--orbe-pink); }

.orbe-home-title {
  margin-top: 24px;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.orbe-home-title span { display: inline; }

.orbe-home-subtitle {
  margin-top: 22px;
  max-width: 30rem;
  color: var(--orbe-muted);
  font-size: 1.1rem;
  line-height: 1.6;
}

.orbe-home-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 30px;
}

.orbe-home-main-cta,
.orbe-home-secondary-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 18px;
  border-radius: 16px;
  border: 1px solid var(--orbe-border-strong);
  background: var(--orbe-surface);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.orbe-home-main-cta {
  background: var(--orbe-grad);
  border-color: transparent;
  box-shadow: var(--orbe-shadow-glow);
}

.orbe-home-main-cta:hover,
.orbe-home-secondary-cta:hover { transform: translateY(-2px); }

.orbe-home-secondary-cta:hover {
  border-color: var(--orbe-pink);
  background: var(--orbe-surface-2);
}

.orbe-home-cta-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.16);
}

.orbe-home-secondary-cta .orbe-home-cta-icon {
  background: rgba(255, 45, 142, 0.14);
  color: var(--orbe-pink);
}

.orbe-home-cta-icon svg { width: 20px; height: 20px; }
.orbe-home-cta-text { flex: 1 1 auto; min-width: 0; }

.orbe-home-cta-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.25;
}

.orbe-home-cta-text small {
  display: block;
  margin-top: 2px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
}

.orbe-home-secondary-cta .orbe-home-cta-text small { color: var(--orbe-faint); }

.orbe-home-cta-arrow {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  opacity: 0.85;
  transition: transform 0.2s ease;
}

.orbe-home-main-cta:hover .orbe-home-cta-arrow { transform: translateX(4px); }

.orbe-home-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.orbe-home-trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orbe-muted);
  font-size: 0.88rem;
  font-weight: 500;
}

.orbe-home-trust svg { width: 18px; height: 18px; color: var(--orbe-pink); }

/* ---------- Hero mosaic ---------- */
.orbe-home-mosaic-area { position: relative; }

.orbe-home-mosaic-glow {
  position: absolute;
  inset: -10% -6% -6% -6%;
  background: radial-gradient(60% 60% at 70% 30%, rgba(214, 36, 159, 0.32), transparent 70%);
  filter: blur(30px);
  z-index: -1;
}

.orbe-home-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.orbe-home-event-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--orbe-radius);
  border: 1px solid var(--orbe-border);
  background: var(--orbe-surface);
  min-height: 150px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.orbe-home-event-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.orbe-home-event-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(8, 7, 13, 0.88) 100%);
}

.orbe-home-event-card:hover { transform: translateY(-4px); border-color: var(--orbe-border-strong); }
.orbe-home-event-card:hover img { transform: scale(1.06); }

.orbe-home-event-card-lg { grid-row: span 2; min-height: 314px; }
.orbe-home-event-card-wide { grid-column: span 2; min-height: 150px; }

.orbe-home-event-copy {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 1;
}

.orbe-home-event-copy strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.orbe-home-event-copy small {
  display: block;
  margin-top: 2px;
  color: var(--orbe-muted);
  font-size: 0.78rem;
}

.orbe-home-mosaic-chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  padding: 12px 18px;
  border-radius: 14px;
  border: 1px solid var(--orbe-border);
  background: var(--orbe-surface);
  backdrop-filter: blur(12px);
}

.orbe-home-mosaic-chip-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2bd47a;
  box-shadow: 0 0 0 4px rgba(43, 212, 122, 0.18);
}

.orbe-home-mosaic-chip strong { display: block; font-family: "Sora", sans-serif; font-size: 0.92rem; }
.orbe-home-mosaic-chip small { color: var(--orbe-muted); font-size: 0.78rem; }

/* ---------- Stats ---------- */
.orbe-home-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 64px;
  padding-top: 36px;
  padding-bottom: 8px;
  border-top: 1px solid var(--orbe-border);
}

.orbe-home-stat strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.orbe-home-stat span { color: var(--orbe-muted); font-size: 0.85rem; }

/* ---------- Section heads ---------- */
.orbe-home-section-head { max-width: 36rem; margin: 0 auto; text-align: center; }
.orbe-home-section-kicker {
  display: inline-block;
  margin-bottom: 14px;
  padding: 5px 13px;
  border-radius: 999px;
  border: 1px solid var(--orbe-border-strong);
  background: var(--orbe-surface);
  color: var(--orbe-pink);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.orbe-home-section-head h2 {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.orbe-home-section-head p { margin-top: 14px; color: var(--orbe-muted); }

/* ---------- Start ---------- */
.orbe-home-start { padding: 96px 0; }

.orbe-home-start-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: center;
  margin-top: 48px;
}

.orbe-home-start-card {
  display: block;
  padding: 28px;
  border-radius: 22px;
  border: 1px solid var(--orbe-border);
  background: var(--orbe-surface);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.orbe-home-start-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 45, 142, 0.5);
  background: var(--orbe-surface-2);
}

.orbe-home-start-card-blue:hover { border-color: rgba(77, 141, 255, 0.5); }

.orbe-home-start-card-top { display: flex; align-items: flex-start; gap: 16px; }

.orbe-home-start-icon {
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 14px;
}

.orbe-home-start-icon svg { width: 24px; height: 24px; }
.orbe-home-start-icon-primary { background: rgba(255, 45, 142, 0.16); color: var(--orbe-pink); }
.orbe-home-start-icon-blue { background: rgba(77, 141, 255, 0.16); color: var(--orbe-blue); }

.orbe-home-start-copy { flex: 1 1 auto; }
.orbe-home-start-copy h3 { font-size: 1.2rem; font-weight: 700; }
.orbe-home-start-copy p { margin-top: 6px; color: var(--orbe-muted); font-size: 0.92rem; }

.orbe-home-start-arrow {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  border: 1px solid var(--orbe-border);
  color: var(--orbe-muted);
  transition: transform 0.2s ease, color 0.2s ease;
}

.orbe-home-start-arrow svg { width: 18px; height: 18px; }
.orbe-home-start-card:hover .orbe-home-start-arrow { color: var(--orbe-text); transform: translateX(3px); }

.orbe-home-start-card ul {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.orbe-home-start-card li {
  position: relative;
  padding-left: 26px;
  color: var(--orbe-muted);
  font-size: 0.92rem;
}

.orbe-home-start-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--orbe-grad);
  opacity: 0.9;
}

.orbe-home-start-card li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 8px;
  width: 6px;
  height: 3px;
  border-left: 1.6px solid #fff;
  border-bottom: 1.6px solid #fff;
  transform: rotate(-45deg);
}

.orbe-home-start-divider {
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbe-home-start-divider span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--orbe-border-strong);
  background: var(--orbe-bg-soft);
  color: var(--orbe-muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

/* ---------- Everything / categories ---------- */
.orbe-home-everything { padding: 24px 0 96px; }

.orbe-home-category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 44px;
}

.orbe-home-category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px 12px;
  border-radius: 16px;
  border: 1px solid var(--orbe-border);
  background: var(--orbe-surface);
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.orbe-home-category-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 45, 142, 0.45);
  background: var(--orbe-surface-2);
}

.orbe-home-category-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: rgba(255, 45, 142, 0.12);
  color: var(--orbe-pink);
}

.orbe-home-category-icon svg { width: 24px; height: 24px; }
.orbe-home-category-card-more .orbe-home-category-icon { background: rgba(123, 47, 247, 0.16); color: #b18bff; }

.orbe-home-category-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 28px 0 0;
  color: var(--orbe-muted);
  font-size: 0.9rem;
  text-align: center;
}

.orbe-home-category-note svg { width: 20px; height: 20px; flex: 0 0 auto; color: var(--orbe-pink); }

/* ---------- Dashboard preview ---------- */
.orbe-home-everything-bottom {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
  margin-top: 72px;
}

.orbe-home-preview-card {
  padding: 14px;
  border-radius: 24px;
  border: 1px solid var(--orbe-border);
  background: var(--orbe-surface);
  box-shadow: var(--orbe-shadow);
}

.orbe-home-preview-shell {
  display: grid;
  grid-template-columns: 1fr;
  border-radius: 16px;
  overflow: hidden;
  background: var(--orbe-bg-soft);
}

.orbe-home-preview-sidebar {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 18px 14px;
  border-right: 1px solid var(--orbe-border);
  background: rgba(255, 255, 255, 0.02);
}

.orbe-home-preview-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
}

.orbe-home-preview-brand svg { width: 22px; height: 22px; }

.orbe-home-preview-nav-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 12px;
  border-radius: 10px;
  color: var(--orbe-muted);
  font-size: 0.85rem;
}

.orbe-home-preview-nav-item.is-active {
  background: rgba(255, 45, 142, 0.14);
  color: var(--orbe-text);
}

.orbe-home-preview-nav-item span {
  display: grid;
  place-items: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--orbe-grad);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
}

.orbe-home-preview-content { padding: 22px; }
.orbe-home-preview-label { margin: 0; color: var(--orbe-pink); font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.orbe-home-preview-content h3 { margin: 6px 0 2px; font-size: 1.25rem; }
.orbe-home-preview-date { margin: 0; color: var(--orbe-muted); font-size: 0.85rem; }

.orbe-home-preview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 18px;
}

.orbe-home-preview-panel {
  padding: 16px;
  border-radius: 14px;
  border: 1px solid var(--orbe-border);
  background: var(--orbe-surface);
}

.orbe-home-preview-panel > p { margin: 0 0 10px; color: var(--orbe-muted); font-size: 0.8rem; }
.orbe-home-preview-panel strong { font-size: 0.95rem; }
.orbe-home-preview-panel small { display: block; margin-top: 4px; color: var(--orbe-muted); font-size: 0.8rem; }

.orbe-home-preview-progress { display: flex; align-items: center; gap: 14px; }

.orbe-home-preview-meter {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: conic-gradient(var(--orbe-pink) 0% 68%, rgba(255,255,255,0.1) 68% 100%);
}

.orbe-home-preview-meter span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orbe-bg-soft);
  font-size: 0.8rem;
  font-weight: 700;
}

.orbe-home-preview-button {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 14px;
  border-radius: 10px;
  background: var(--orbe-grad);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
}

.orbe-home-preview-services { margin-top: 12px; }
.orbe-home-preview-services-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.orbe-home-preview-services-head p { margin: 0; color: var(--orbe-muted); font-size: 0.8rem; }
.orbe-home-preview-services-head span { color: var(--orbe-pink); font-size: 0.8rem; font-weight: 600; }
.orbe-home-preview-tags { display: flex; flex-wrap: wrap; gap: 8px; }

.orbe-home-preview-tags span {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--orbe-border);
  font-size: 0.78rem;
  color: var(--orbe-muted);
}

.orbe-home-preview-tags span.is-done {
  background: rgba(43, 212, 122, 0.14);
  border-color: transparent;
  color: #5fe3a0;
}

.orbe-home-everything-side h3 {
  margin-top: 12px;
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.orbe-home-everything-side p { margin-top: 14px; color: var(--orbe-muted); }

.orbe-home-everything-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--orbe-pink);
  font-weight: 600;
  font-size: 0.95rem;
}

.orbe-home-everything-link svg { width: 18px; height: 18px; transition: transform 0.2s ease; }
.orbe-home-everything-link:hover svg { transform: translateX(4px); }

/* ---------- Suppliers ---------- */
.orbe-home-suppliers { padding: 96px 0; }

.orbe-home-suppliers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.orbe-home-suppliers-copy h2 {
  margin-top: 14px;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.orbe-home-suppliers-copy > p { margin-top: 16px; color: var(--orbe-muted); max-width: 30rem; }

.orbe-home-suppliers-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

.orbe-home-suppliers-main-cta,
.orbe-home-suppliers-secondary-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 13px 20px;
  border-radius: 14px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.orbe-home-suppliers-main-cta { background: var(--orbe-grad); color: #fff; box-shadow: var(--orbe-shadow-glow); }
.orbe-home-suppliers-main-cta svg { width: 20px; height: 20px; }
.orbe-home-suppliers-main-cta:hover { transform: translateY(-2px); }

.orbe-home-suppliers-secondary-cta { border: 1px solid var(--orbe-border-strong); background: var(--orbe-surface); }
.orbe-home-suppliers-secondary-cta:hover { transform: translateY(-2px); border-color: var(--orbe-pink); }

.orbe-home-suppliers-main-cta strong,
.orbe-home-suppliers-secondary-cta strong { display: block; font-size: 0.92rem; font-weight: 600; }
.orbe-home-suppliers-main-cta small { display: block; font-size: 0.76rem; color: rgba(255,255,255,0.75); }
.orbe-home-suppliers-secondary-cta small { display: block; font-size: 0.76rem; color: var(--orbe-faint); }

.orbe-home-suppliers-play {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 45, 142, 0.14);
  color: var(--orbe-pink);
}

.orbe-home-suppliers-play svg { width: 18px; height: 18px; }

.orbe-home-suppliers-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 32px;
}

.orbe-home-suppliers-step {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--orbe-border);
  background: var(--orbe-surface);
}

.orbe-home-suppliers-step > span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  border-radius: 10px;
  background: var(--orbe-grad);
  color: #fff;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
}

.orbe-home-suppliers-step strong { font-size: 0.92rem; }
.orbe-home-suppliers-step p { margin: 2px 0 0; color: var(--orbe-muted); font-size: 0.82rem; }

/* showcase */
.orbe-home-suppliers-showcase { position: relative; }

.orbe-home-suppliers-portrait { position: relative; margin-bottom: 18px; }

.orbe-home-suppliers-portrait-glow {
  position: absolute;
  inset: -18%;
  background: radial-gradient(circle at 50% 40%, rgba(214, 36, 159, 0.35), transparent 70%);
  filter: blur(30px);
  z-index: -1;
}

.orbe-home-suppliers-portrait-frame {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--orbe-border-strong);
  box-shadow: var(--orbe-shadow);
}

.orbe-home-suppliers-portrait-frame img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.orbe-home-suppliers-order-stack { display: flex; flex-direction: column; gap: 12px; }

.orbe-home-suppliers-order-card {
  display: flex;
  gap: 14px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid var(--orbe-border);
  background: var(--orbe-surface);
  backdrop-filter: blur(12px);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.orbe-home-suppliers-order-card:hover { transform: translateY(-3px); border-color: var(--orbe-border-strong); }
.orbe-home-suppliers-order-card.is-offset { margin-left: 20px; }

.orbe-home-suppliers-order-card img {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  border-radius: 12px;
  object-fit: cover;
}

.orbe-home-suppliers-order-head { display: flex; align-items: center; gap: 10px; }
.orbe-home-suppliers-order-head strong { font-size: 0.92rem; }

.orbe-home-suppliers-order-head span {
  padding: 2px 9px;
  border-radius: 999px;
  background: rgba(43, 212, 122, 0.16);
  color: #5fe3a0;
  font-size: 0.68rem;
  font-weight: 700;
}

.orbe-home-suppliers-order-card p { margin: 5px 0 2px; color: var(--orbe-text); font-size: 0.83rem; }
.orbe-home-suppliers-order-card small { color: var(--orbe-muted); font-size: 0.76rem; }

.orbe-home-suppliers-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  color: var(--orbe-pink);
  font-size: 0.9rem;
  font-weight: 600;
}

.orbe-home-suppliers-link svg { width: 18px; height: 18px; transition: transform 0.2s ease; }
.orbe-home-suppliers-link:hover svg { transform: translateX(4px); }

/* ---------- Final CTA ---------- */
.orbe-home-final { padding: 24px 0 96px; }

.orbe-home-final-card {
  position: relative;
  overflow: hidden;
  padding: 56px 28px;
  border-radius: 28px;
  border: 1px solid var(--orbe-border-strong);
  background: var(--orbe-surface);
  text-align: center;
}

.orbe-home-final-glow {
  position: absolute;
  inset: auto 0 -60% 0;
  height: 100%;
  background: radial-gradient(60% 100% at 50% 100%, rgba(214, 36, 159, 0.4), transparent 70%);
  filter: blur(20px);
  z-index: 0;
}

.orbe-home-final-card h2,
.orbe-home-final-card p,
.orbe-home-final-actions { position: relative; z-index: 1; }

.orbe-home-final-card h2 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.orbe-home-final-card p { margin: 16px auto 0; max-width: 32rem; color: var(--orbe-muted); }

.orbe-home-final-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}

.orbe-home-final-primary {
  padding: 14px 28px;
  border-radius: 999px;
  background: var(--orbe-grad);
  color: #fff;
  font-weight: 600;
  box-shadow: var(--orbe-shadow-glow);
  transition: transform 0.2s ease;
}

.orbe-home-final-primary:hover { transform: translateY(-2px); }

.orbe-home-final-ghost {
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid var(--orbe-border-strong);
  background: var(--orbe-surface);
  font-weight: 600;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.orbe-home-final-ghost:hover { border-color: var(--orbe-pink); transform: translateY(-2px); }

/* ---------- Footer ---------- */
.orbe-home-footer { border-top: 1px solid var(--orbe-border); padding: 56px 0 28px; background: var(--orbe-bg-soft); }

.orbe-home-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}

.orbe-home-footer-brand p { margin-top: 16px; max-width: 24rem; color: var(--orbe-muted); font-size: 0.9rem; }

.orbe-home-footer-column h4 { margin-bottom: 16px; font-size: 0.95rem; font-weight: 700; }

.orbe-home-footer-column a {
  display: block;
  margin-bottom: 11px;
  color: var(--orbe-muted);
  font-size: 0.88rem;
  transition: color 0.2s ease;
}

.orbe-home-footer-column a:hover { color: var(--orbe-text); }

.orbe-home-footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid var(--orbe-border);
  color: var(--orbe-faint);
  font-size: 0.82rem;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (min-width: 640px) {
  .orbe-home-actions { flex-direction: row; flex-wrap: wrap; }
  .orbe-home-main-cta, .orbe-home-secondary-cta { flex: 1 1 240px; }
  .orbe-home-stats { grid-template-columns: repeat(4, 1fr); }
  .orbe-home-category-grid { grid-template-columns: repeat(3, 1fr); }
  .orbe-home-preview-grid { grid-template-columns: 1fr 1fr; }
  .orbe-home-suppliers-steps { grid-template-columns: 1fr 1fr; }
  .orbe-home-footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .orbe-home-footer-bottom { flex-direction: row; justify-content: space-between; }
  .orbe-home-final-card { padding: 64px 48px; }
}

@media (min-width: 768px) {
  .orbe-home-title { font-size: 3rem; }
  .orbe-home-section-head h2,
  .orbe-home-suppliers-copy h2,
  .orbe-home-final-card h2 { font-size: 2.4rem; }
  .orbe-home-preview-shell { grid-template-columns: 200px 1fr; }
  .orbe-home-preview-sidebar { display: flex; }
}

@media (min-width: 1024px) {
  .orbe-home-nav { display: flex; }
  .orbe-home-header-link { display: inline; }
  .orbe-home-hero { padding: 88px 0 0; }
  .orbe-home-hero-grid { grid-template-columns: 1fr 1fr; gap: 64px; }
  .orbe-home-title { font-size: 3.4rem; }
  .orbe-home-start-grid { grid-template-columns: 1fr auto 1fr; }
  .orbe-home-everything-bottom { grid-template-columns: 1.4fr 1fr; gap: 56px; }
  .orbe-home-suppliers-grid { grid-template-columns: 1.05fr 1fr; }
  .orbe-home-suppliers-portrait-frame img { height: 320px; }
}

@media (prefers-reduced-motion: reduce) {
  .orbe-aurora-blob { animation: none; }
  html { scroll-behavior: auto; }
}
