/*
  Vanbase site styles
  Load order:
  1. bootstrap.min.css
  2. Vanbase-bootstrap-overrides.css
  3. site.css
*/

:root {
  --vb-orange: #f7931d;
  --vb-orange-dark: #d97800;
  --vb-orange-soft: #ffb14a;
  --vb-navy: #0f2d4f;
  --vb-navy-strong: #0a213a;
  --vb-slate: #4d5c6c;
  --vb-charcoal: #1e252d;
  --vb-ink: #23303c;
  --vb-steel: #d9e0e7;
  --vb-fog: #e9eef3;
  --vb-ice: #f4f7fa;
  --vb-white: #ffffff;

  --vb-shadow-sm: 0 10px 24px rgba(15, 45, 79, 0.08);
  --vb-shadow-md: 0 20px 50px rgba(15, 45, 79, 0.12);
  --vb-shadow-lg: 0 28px 80px rgba(10, 33, 58, 0.18);
  --vb-radius-sm: 0.75rem;
  --vb-radius-md: 1.125rem;
  --vb-radius-lg: 1.75rem;
  --vb-radius-xl: 2.5rem;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--vb-ink);
  background:
    radial-gradient(
      circle at top left,
      rgba(247, 147, 29, 0.12),
      transparent 32%
    ),
    radial-gradient(
      circle at top right,
      rgba(15, 45, 79, 0.08),
      transparent 28%
    ),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  transition:
    color 0.2s ease,
    opacity 0.2s ease;
}

section {
  position: relative;
}

.site-shell {
  overflow: hidden;
}

.site-navbar {
  border-bottom: 1px solid rgba(15, 45, 79, 0.08);
}

.site-navbar .navbar-brand {
  color: var(--vb-navy-strong);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.site-navbar .nav-link {
  color: var(--vb-slate);
  font-weight: 600;
}

.site-navbar .nav-link:hover,
.site-navbar .nav-link:focus,
.site-navbar .nav-link.active {
  color: var(--vb-navy);
}

.hero-section {
  padding: 7rem 0 5rem;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 12% 20%,
      rgba(247, 147, 29, 0.18),
      transparent 20%
    ),
    radial-gradient(circle at 82% 18%, rgba(15, 45, 79, 0.1), transparent 24%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(247, 147, 29, 0.2);
  border-radius: 999px;
  background: rgba(255, 242, 223, 0.9);
  color: var(--vb-orange-dark);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero-title {
  max-width: 11ch;
  margin: 1.2rem 0 1rem;
  color: var(--vb-navy-strong);
  font-size: clamp(2.75rem, 5vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.hero-lead {
  max-width: 38rem;
  margin-bottom: 1.75rem;
  color: var(--vb-slate);
  font-size: 1.125rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  color: var(--vb-slate);
  font-size: 0.95rem;
  font-weight: 600;
}

.hero-meta span::before {
  content: "";
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  margin-right: 0.5rem;
  border-radius: 50%;
  background: var(--vb-orange);
  box-shadow: 0 0 0 4px rgba(247, 147, 29, 0.15);
}

.hero-visual-wrap {
  position: relative;
  z-index: 1;
}

.hero-card {
  position: relative;
  padding: 1.25rem;
  border: 1px solid rgba(15, 45, 79, 0.08);
  border-radius: var(--vb-radius-xl);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.96),
    rgba(244, 247, 250, 0.95)
  );
  box-shadow: var(--vb-shadow-lg);
}

.hero-card::after {
  content: "";
  position: absolute;
  right: -2rem;
  bottom: -2rem;
  width: 11rem;
  height: 11rem;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(247, 147, 29, 0.22),
    transparent 68%
  );
  z-index: -1;
}

.mock-screen {
  border-radius: calc(var(--vb-radius-xl) - 0.5rem);
  overflow: hidden;
  border: 1px solid rgba(15, 45, 79, 0.08);
  background: var(--vb-white);
}

.mock-toolbar {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.9rem 1rem;
  background: linear-gradient(180deg, #fafbfd 0%, #edf2f6 100%);
  border-bottom: 1px solid rgba(15, 45, 79, 0.08);
}

.mock-toolbar span {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: #c9d4de;
}

.mock-toolbar span:first-child {
  background: #ffb14a;
}

.mock-toolbar span:nth-child(2) {
  background: #f7931d;
}

.mock-toolbar span:nth-child(3) {
  background: #0f2d4f;
}

.mock-body {
  padding: 1.25rem;
  background: linear-gradient(
    180deg,
    rgba(244, 247, 250, 0.55) 0%,
    rgba(255, 255, 255, 1) 100%
  );
}

.dashboard-hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.dashboard-panel,
.dashboard-tile {
  border: 1px solid rgba(15, 45, 79, 0.08);
  border-radius: var(--vb-radius-md);
  background: var(--vb-white);
  box-shadow: var(--vb-shadow-sm);
}

.dashboard-panel {
  padding: 1.25rem;
  background: linear-gradient(
    135deg,
    rgba(15, 45, 79, 0.98),
    rgba(22, 54, 92, 0.96)
  );
  color: var(--vb-white);
}

.dashboard-panel .metric-label {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.dashboard-panel .metric-value {
  margin: 0.5rem 0 0.75rem;
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.dashboard-panel .metric-note {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 0;
}

.dashboard-stack {
  display: grid;
  gap: 1rem;
}

.dashboard-tile {
  padding: 1rem;
}

.dashboard-tile h3 {
  margin-bottom: 0.45rem;
  font-size: 1rem;
}

.dashboard-tile p {
  margin-bottom: 0;
  color: var(--vb-slate);
  font-size: 0.95rem;
}

.dashboard-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
}

.dashboard-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(15, 45, 79, 0.08);
  border-radius: var(--vb-radius-md);
  background: rgba(255, 255, 255, 0.94);
}

.dashboard-list-item strong {
  display: block;
  color: var(--vb-navy-strong);
}

.dashboard-list-item small {
  color: var(--vb-slate);
}

.job-status {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(247, 147, 29, 0.14);
  color: var(--vb-orange-dark);
  font-size: 0.82rem;
  font-weight: 700;
}

.section-pad {
  padding: 5.5rem 0;
}

.section-heading {
  max-width: 42rem;
  margin-bottom: 3rem;
}

.section-heading .section-kicker {
  margin-bottom: 0.75rem;
  color: var(--vb-orange-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.section-heading p {
  margin-bottom: 0;
  color: var(--vb-slate);
  font-size: 1.05rem;
  line-height: 1.75;
}

.trust-strip {
  padding: 1.15rem 0;
  border-top: 1px solid rgba(15, 45, 79, 0.08);
  border-bottom: 1px solid rgba(15, 45, 79, 0.08);
  background: rgba(255, 255, 255, 0.7);
}

.trust-strip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-strip-list li {
  color: var(--vb-navy);
  font-weight: 700;
}

.feature-card {
  height: 100%;
  padding: 1.5rem;
  border: 1px solid rgba(15, 45, 79, 0.08);
  border-radius: var(--vb-radius-lg);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--vb-shadow-sm);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(247, 147, 29, 0.28);
  box-shadow: var(--vb-shadow-md);
}

.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 3.2rem;
  height: 3.2rem;
  margin-bottom: 1rem;
  border-radius: 1rem;
  background: linear-gradient(
    145deg,
    rgba(255, 177, 74, 0.25),
    rgba(247, 147, 29, 0.14)
  );
  color: var(--vb-orange-dark);
  font-size: 1.2rem;
  box-shadow: inset 0 0 0 1px rgba(247, 147, 29, 0.12);
}

.feature-card h3 {
  margin-bottom: 0.7rem;
  font-size: 1.22rem;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--vb-slate);
  line-height: 1.7;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.info-panel {
  padding: 2rem;
  border-radius: var(--vb-radius-xl);
  background: linear-gradient(
    160deg,
    rgba(10, 33, 58, 1) 0%,
    rgba(15, 45, 79, 0.96) 58%,
    rgba(34, 73, 117, 0.92) 100%
  );
  color: var(--vb-white);
  box-shadow: var(--vb-shadow-lg);
}

.info-panel h3,
.info-panel h4 {
  color: var(--vb-white);
}

.info-panel p,
.info-panel li {
  color: rgba(255, 255, 255, 0.82);
}

.check-list {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 2rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.42rem;
  left: 0;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  background: var(--vb-orange);
  box-shadow: 0 0 0 5px rgba(247, 147, 29, 0.15);
}

.metric-band {
  padding: 2rem;
  border: 1px solid rgba(15, 45, 79, 0.08);
  border-radius: var(--vb-radius-xl);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(244, 247, 250, 1) 100%
  );
  box-shadow: var(--vb-shadow-sm);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.metric-box {
  padding: 1.25rem;
  border-radius: var(--vb-radius-md);
  background: rgba(15, 45, 79, 0.04);
}

.metric-box strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--vb-navy-strong);
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.metric-box span {
  color: var(--vb-slate);
  font-weight: 600;
}

.testimonial-card {
  padding: 1.75rem;
  border: 1px solid rgba(15, 45, 79, 0.08);
  border-radius: var(--vb-radius-lg);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--vb-shadow-sm);
}

.testimonial-card blockquote {
  margin-bottom: 1rem;
  color: var(--vb-navy);
  font-size: 1.08rem;
  line-height: 1.8;
}

.testimonial-card cite {
  color: var(--vb-slate);
  font-style: normal;
  font-weight: 700;
}

.cta-section {
  padding: 5rem 0;
}

.cta-panel {
  position: relative;
  padding: 2.5rem;
  border-radius: var(--vb-radius-xl);
  background: linear-gradient(
    135deg,
    rgba(10, 33, 58, 1) 0%,
    rgba(15, 45, 79, 0.98) 50%,
    rgba(247, 147, 29, 0.92) 170%
  );
  color: var(--vb-white);
  box-shadow: var(--vb-shadow-lg);
  overflow: hidden;
}

.cta-panel::before,
.cta-panel::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.cta-panel::before {
  top: -4rem;
  right: -2rem;
  width: 14rem;
  height: 14rem;
  background: radial-gradient(
    circle,
    rgba(255, 177, 74, 0.35),
    transparent 65%
  );
}

.cta-panel::after {
  left: -3rem;
  bottom: -5rem;
  width: 16rem;
  height: 16rem;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.12),
    transparent 65%
  );
}

.cta-panel h2,
.cta-panel p,
.cta-panel .section-kicker {
  position: relative;
  z-index: 1;
}

.cta-panel h2 {
  color: var(--vb-white);
}

.cta-panel p {
  max-width: 40rem;
  color: rgba(255, 255, 255, 0.84);
}

.cta-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.cta-panel .btn-outline-light {
  border-width: 2px;
}

.demo-form-card {
  padding: 1.75rem;
  border: 1px solid rgba(15, 45, 79, 0.08);
  border-radius: var(--vb-radius-lg);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--vb-shadow-md);
}

.demo-form-card .form-label {
  margin-bottom: 0.45rem;
  color: var(--vb-navy);
  font-weight: 700;
}

.demo-form-card .form-text {
  color: var(--vb-slate);
}

.form-status {
  min-height: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.form-status.is-pending {
  color: var(--vb-navy);
}

.form-status.is-success {
  color: #1f7a45;
}

.form-status.is-error {
  color: #b42318;
}

.demo-success-panel {
  padding: 0.25rem 0;
}

.demo-success-badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(31, 122, 69, 0.12);
  color: #1f7a45;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.demo-success-panel h4 {
  margin-bottom: 0.75rem;
  color: var(--vb-navy);
}

.demo-success-panel p {
  margin-bottom: 1rem;
  color: var(--vb-slate);
}

.demo-success-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.demo-success-summary span {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(10, 33, 58, 0.06);
  color: var(--vb-navy);
  font-weight: 600;
}

.section-soft {
  background: linear-gradient(
    180deg,
    rgba(244, 247, 250, 0.7) 0%,
    rgba(255, 255, 255, 0) 100%
  );
}

.section-dark {
  background: linear-gradient(
    180deg,
    rgba(10, 33, 58, 1) 0%,
    rgba(15, 45, 79, 0.98) 100%
  );
  color: var(--vb-white);
}

.section-dark .section-heading h2,
.section-dark .section-heading p,
.section-dark .section-kicker {
  color: var(--vb-white);
}

.section-dark .feature-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.section-dark .feature-card h3 {
  color: var(--vb-white);
}

.section-dark .feature-card p {
  color: rgba(255, 255, 255, 0.72);
}

.section-dark .feature-icon {
  background: rgba(247, 147, 29, 0.16);
  color: #ffcd87;
  box-shadow: inset 0 0 0 1px rgba(255, 177, 74, 0.14);
}

.footer-brand {
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(15, 45, 79, 0.08);
}

.footer-brand p,
.footer-brand a,
.footer-brand li {
  color: var(--vb-slate);
}

.footer-brand .navbar-brand,
.footer-brand h5 {
  color: var(--vb-navy-strong);
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li + li {
  margin-top: 0.65rem;
}

.btn {
  border-radius: 999px;
  padding: 0.85rem 1.3rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.btn-lg {
  padding: 1rem 1.55rem;
}

.btn-primary {
  box-shadow: 0 14px 30px rgba(247, 147, 29, 0.24);
}

.btn-primary:hover,
.btn-primary:focus {
  box-shadow: 0 18px 36px rgba(247, 147, 29, 0.3);
}

.rounded-panel {
  border-radius: var(--vb-radius-xl);
}

.border-soft {
  border: 1px solid rgba(15, 45, 79, 0.08);
}

.shadow-soft {
  box-shadow: var(--vb-shadow-sm);
}

.shadow-medium {
  box-shadow: var(--vb-shadow-md);
}

.text-balance {
  text-wrap: balance;
}

@media (max-width: 991.98px) {
  .hero-section {
    padding: 6rem 0 4rem;
  }

  .split-section,
  .dashboard-hero,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .section-pad,
  .cta-section {
    padding: 4.5rem 0;
  }

  .hero-title {
    max-width: 12ch;
  }

  .hero-visual-wrap {
    margin-top: 2rem;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    padding: 5.5rem 0 3.5rem;
  }

  .section-pad,
  .cta-section {
    padding: 3.75rem 0;
  }

  .hero-title {
    font-size: clamp(2.3rem, 11vw, 3.5rem);
  }

  .hero-lead,
  .section-heading p {
    font-size: 1rem;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .btn-lg {
    width: 100%;
  }

  .hero-card,
  .info-panel,
  .cta-panel,
  .demo-form-card {
    padding: 1.35rem;
    border-radius: 1.4rem;
  }

  .mock-body,
  .dashboard-panel,
  .dashboard-tile,
  .metric-band,
  .feature-card,
  .testimonial-card {
    padding: 1rem;
  }

  .trust-strip-list {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
