:root {
  --font-heading: "Outfit", system-ui, sans-serif;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
  --primary: #f97316; /* orange (60%) */
  --primary-soft: #fff7ed;
  --primary-deep: #ea580c;
  --accent: #16a34a; /* green */
  --accent-soft: #dcfce7;
  --bg: #f9fafb;
  --card-bg: #ffffff;
  --text: #111827;
  --muted: #4b5563;
  --border: #e5e7eb;
  --radius-lg: 18px;
  --shadow-strong: 0 24px 60px rgba(15, 23, 42, 0.16);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background:
    radial-gradient(circle at top left, #fff7ed, transparent 55%),
    radial-gradient(circle at bottom right, #dcfce7, transparent 55%),
    #f9fafb;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 10000;
  padding: 12px 18px;
  background: #16a34a;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  left: 0;
  top: 0;
  width: auto;
  height: auto;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid #16a34a;
  outline-offset: 2px;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Hero (shared site nav: partials.marketing_site_header) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0.5rem 1.3rem;
  transition: all 0.18s ease;
  white-space: nowrap;
}
.btn-outline {
  border-color: rgba(148, 163, 184, 0.4);
  background: #ffffff;
  color: #111827;
}
.btn-outline:hover {
  border-color: rgba(248, 150, 30, 0.9);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.16);
  transform: translateY(-1px);
}
.btn-primary {
  background: linear-gradient(135deg, #f97316, #facc15);
  color: #111827;
  box-shadow: 0 18px 40px rgba(248, 150, 30, 0.75);
}
.btn-primary:hover {
  box-shadow: 0 22px 52px rgba(248, 150, 30, 0.95);
  transform: translateY(-1px);
}
/* Hero â€“ entrance and dynamic */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroCardIn {
  from {
    opacity: 0;
    transform: translateX(32px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes heroDotPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 4px rgba(248, 171, 60, 0.4); }
  50% { opacity: 0.9; box-shadow: 0 0 0 6px rgba(248, 171, 60, 0.25); }
}

@keyframes heroHighlightShine {
  0% { background-position: 120% 50%; }
  100% { background-position: -20% 50%; }
}

.hero {
  padding: 3.5rem 0 3.2rem;
  overflow: hidden;
  position: relative;
}

body.ub-home-v2 .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 55% at 0% 0%, rgba(249, 115, 22, 0.12), transparent 60%),
    radial-gradient(ellipse 50% 40% at 100% 20%, rgba(22, 163, 74, 0.08), transparent 55%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 2.8rem;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: rgba(248, 113, 22, 0.2);
  border: 1px solid rgba(248, 171, 60, 0.8);
  color: #c2410c;
  font-size: 0.75rem;
  font-weight: 600;
  animation: heroFadeUp 0.6s ease both;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #facc15, #f97316);
  box-shadow: 0 0 0 4px rgba(248, 171, 60, 0.4);
  animation: heroDotPulse 2.2s ease-in-out infinite;
}

.hero-title {
  margin-top: 1.1rem;
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3vw + 1.7rem, 3.1rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: #111827;
  animation: heroFadeUp 0.65s ease 0.08s both;
}

.hero-title span.highlight {
  background: linear-gradient(120deg, #f97316 0%, #16a34a 50%, #f97316 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  margin-top: 1rem;
  font-size: 0.98rem;
  max-width: 35rem;
  color: var(--muted);
  animation: heroFadeUp 0.6s ease 0.16s both;
}

.hero-subtitle strong {
  color: #111827;
}

.hero-actions {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
  animation: heroFadeUp 0.6s ease 0.24s both;
}

.hero-actions .btn-primary {
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.hero-actions .btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 20px 48px rgba(248, 150, 30, 0.5);
}

.hero-note {
  margin-top: 0.9rem;
  font-size: 0.8rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.45rem;
  animation: heroFadeUp 0.5s ease 0.32s both;
}

.hero-note-pill {
  padding: 0.12rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(209, 213, 219, 0.9);
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.hero-note-pill:hover {
  border-color: rgba(249, 115, 22, 0.5);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

.hero-meta-row {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.9rem;
  font-size: 0.8rem;
  color: #4b5563;
  animation: heroFadeUp 0.55s ease 0.4s both;
}

.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  transition: transform 0.2s ease;
}

.hero-meta-item:hover {
  transform: translateY(-2px);
}

.hero-meta-number {
  font-size: 1.05rem;
  font-weight: 700;
  color: #f97316;
  transition: color 0.2s ease;
}

.hero-meta-item:hover .hero-meta-number {
  color: #ea580c;
}

/* Hero card */
.hero-card {
  position: relative;
  border-radius: 26px;
  padding: 1.4rem 1.3rem 1.35rem;
  background:
    radial-gradient(circle at top left, #fff7ed, transparent 70%),
    radial-gradient(circle at bottom right, #dcfce7, transparent 70%),
    #ffffff;
  box-shadow: var(--shadow-strong);
  border: 1px solid rgba(226, 232, 240, 0.9);
  overflow: hidden;
  animation: heroCardIn 0.75s ease 0.15s both;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.hero-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 64px rgba(15, 23, 42, 0.14);
  border-color: rgba(249, 115, 22, 0.2);
}

.hero-visual {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.14);
}

.hero-visual img {
