/* Serious Tubes — site-specific styles layered on the Light Able landing theme */

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

/* Brand logo (wide wordmark SVG) */
.brand-logo {
  height: 15px;
  width: auto;
}
[data-pc-theme='dark'] .brand-logo {
  filter: invert(1);
}

/* Hero: same navy identity as the console's sign-in panel */
.hero-tubes {
  background:
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.025) 0 2px, transparent 2px 90px),
    radial-gradient(1200px 800px at 15% -10%, #21335c 0%, #0b1120 60%) !important;
}
.hero-tubes .hero-fact {
  font-size: 14px;
  margin: 0 14px;
}

/* Five pricing cards per row on very wide screens */
@media (min-width: 1400px) {
  .col-xxl-2-4 {
    flex: 0 0 auto;
    width: 20%;
  }
}
.price-card .price small {
  font-size: 16px;
}

/* Dedicated section */
.dedicated-card {
  border: 1px solid var(--bs-border-color);
}
.dedicated-icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
}
.dedicated-list li {
  position: relative;
}

/* Contact form card sits on a dark section */
.contact-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Honeypot field: visually gone, still in the DOM for bots */
.cf-website-wrap {
  position: absolute;
  left: -9999px;
  top: -9999px;
  height: 0;
  overflow: hidden;
}
