/* Reset-ish */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: #111827;
  background-color: #f9fafb;
  line-height: 1.5;
}

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

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

main p a:not(.btn) {
  color: #2563eb;
  text-decoration: underline;
  text-underline-offset: 3px;
}

main p a:not(.btn):hover,
main p a:not(.btn):focus-visible {
  color: #1d4ed8;
}

.card h3 a:hover,
.card h3 a:focus-visible {
  color: #2563eb;
}

/* Layout helpers */

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

.section {
  padding: 4rem 0;
}

.section-muted {
  background-color: #f3f4f6;
}

.section-title {
  font-size: 1.9rem;
  text-align: center;
  margin: 0 0 0.5rem;
}

.section-subtitle {
  text-align: center;
  color: #6b7280;
  margin: 0 0 2.5rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.grid {
  display: grid;
  gap: 1.75rem;
}

/* Header / Nav */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background-color: #ffffffcc;
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e5e7eb;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
}

.logo {
  display: block;
  flex-shrink: 0;
  width: 250px;
  height: 65px;
}

.logo-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.nav {
  position: relative;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 0.95rem;
  color: #4b5563;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.nav-links a:hover {
  background-color: #e5e7eb;
  color: #111827;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
}

/* Hero */

/* Hero */

.hero {
  padding: 4.5rem 0 4rem;

  background:
    linear-gradient(
      90deg,
      rgba(4, 5, 25, 0.88) 0%,
      rgba(9, 6, 37, 0.67) 52%,
      rgba(8, 5, 32, 0.38) 100%
    ),
    url("../images/heroes/San_Antonio_Synthwave_Skyline.png");

  background-size: cover;
  background-position: center 62%;
  background-repeat: no-repeat;
}

.hero-inner {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.hero-brand-logo {
  width: 100%;
  max-width: 700px;
  height: auto;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.5));
}

.hero-text h1 {
  font-size: clamp(2.1rem, 4vw, 2.6rem);
  margin: 0 0 0.75rem;
  color: #ffffff;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.65);
}

.hero-text p {
  margin: 0 0 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 540px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.65);
}

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

.hero .btn-outline {
  background-color: rgba(255, 255, 255, 0.94);
  color: #111827;
  border-color: rgba(255, 255, 255, 0.95);
}

.hero .btn-outline:hover {
  background-color: #ffffff;
  border-color: #ffffff;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.85rem;
}

.hero-badges span {
  background-color: rgba(255, 255, 255, 0.92);
  color: #1d4ed8;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.18);
}

/* Hero Card */

.hero-card {
  background-color: #ffffff;
  border-radius: 1.25rem;
  border: 1px solid #e5e7eb;
  padding: 1.5rem 1.75rem;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
  max-width: 340px;
  margin-left: auto;
}

.hero-card-header h2 {
  margin: 0 0 0.25rem;
  font-size: 1.25rem;
}

.hero-card-header p {
  margin: 0;
  color: #6b7280;
  font-size: 0.9rem;
}

.hero-card-price {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin: 1rem 0;
}

.price {
  font-size: 1.9rem;
  font-weight: 700;
  color: #1d4ed8;
}

.price-term {
  color: #6b7280;
  font-size: 0.95rem;
}

.hero-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  font-size: 0.9rem;
  color: #4b5563;
}

.hero-card-list li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.4rem;
}

.hero-card-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #10b981;
}

/* Cards */

.card {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.04);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.card p {
  margin: 0;
  color: #4b5563;
}

.card-highlight {
  border-color: #1d4ed8;
}

/* Services */

.services-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* Pricing */

.pricing-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.pricing-tagline {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 0.75rem;
}

.pricing-amount {
  margin-bottom: 0.75rem;
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  font-size: 0.9rem;
  color: #4b5563;
}

.pricing-list li {
  margin-bottom: 0.35rem;
}

/* Portfolio */

.portfolio-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.portfolio-item h3 {
  margin: 0.75rem 0 0.35rem;
}

.portfolio-item p {
  margin: 0;
  color: #4b5563;
}

.portfolio-thumb {
  border-radius: 0.75rem;
  border: 1px dashed #d1d5db;
  padding: 2.5rem 1rem;
  text-align: center;
  font-size: 0.95rem;
  color: #6b7280;
}

/* Projects coming soon */

.section-kicker {
  margin: 0 0 0.45rem;
  text-align: center;
  color: #1d4ed8;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.featured-project {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2rem;
  align-items: center;
  padding: 1.25rem;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 1.25rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.featured-project-media {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  background-color: #f3f4f6;
}

.featured-project-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.project-status {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  background-color: rgba(17, 24, 39, 0.9);
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

.featured-project-content {
  padding: 0.5rem 0.5rem 0.5rem 0;
}

.project-eyebrow {
  margin: 0 0 0.45rem;
  color: #1d4ed8 !important;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.featured-project-content h3 {
  margin: 0 0 0.8rem;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
}

.featured-project-content > p {
  color: #4b5563;
}

.project-feature-list {
  display: grid;
  gap: 0.55rem;
  margin: 1.25rem 0;
  padding: 0;
  list-style: none;
  color: #374151;
}

.project-feature-list li {
  position: relative;
  padding-left: 1.5rem;
}

.project-feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #1d4ed8;
  font-weight: 700;
}

.project-note {
  margin: 1.25rem 0 0;
  padding: 1rem;
  border-left: 3px solid #2563eb;
  border-radius: 0.5rem;
  background-color: #eff6ff;
  color: #1f2937 !important;
  font-size: 0.92rem;
}

/* Contact */

.contact-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.3fr);
  align-items: flex-start;
}

.contact-form {
  padding: 1.5rem 1.5rem 1.75rem;
}

.form-group {
  margin-bottom: 0.9rem;
}

label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
  color: #111827;
}

input,
textarea {
  width: 100%;
  border-radius: 0.5rem;
  border: 1px solid #d1d5db;
  padding: 0.5rem 0.6rem;
  font: inherit;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

input:focus,
textarea:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 1px #bfdbfe;
}

textarea {
  resize: vertical;
}

.form-status {
  margin-top: 0.6rem;
  font-size: 0.85rem;
  color: #10b981;
}

.form-status.error {
  color: #dc2626;
}

.small {
  font-size: 0.85rem;
  color: #6b7280;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease,
    border-color 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary {
  background-color: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.25);
}

.btn-primary:hover {
  background-color: #1d4ed8;
  border-color: #1d4ed8;
}

.btn-outline {
  background-color: transparent;
  color: #1f2937;
  border-color: #d1d5db;
}

.btn-outline:hover {
  background-color: #e5e7eb;
}

.btn-full {
  width: 100%;
}

/* Footer */

.site-footer {
  padding: 1.75rem 0;
  background-color: #111827;
  color: #9ca3af;
}

.footer-inner {
  text-align: center;
}

.footer-inner p {
  margin: 0.15rem 0;
}

/* Responsive */

@media (min-width: 768px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: inline-block;
  }

  .nav-links {
    position: absolute;
    top: 110%;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    background-color: #ffffff;
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
    padding: 0.75rem;
    min-width: 180px;
    box-shadow: 0 12px 25px rgba(15, 23, 42, 0.12);
    display: none;
  }

  .nav-links.show {
    display: flex;
  }

  .header-inner {
    padding-inline: 1rem;
  }

.hero {
  padding-top: 3.5rem;
  background-position: 58% center;
}

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    margin: 0 auto;
  }

  .featured-project {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 0.9rem;
  }

  .featured-project-content {
    padding: 0.25rem 0.35rem 0.5rem;
  }
}


  /* About section */
.about-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  align-items: center;
  gap: 3rem;
  max-width: 900px;
}

.about-photo-wrapper {
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
}

.about-photo {
  display: block;
  width: 100%;
  height: 350px;
  object-fit: cover;
  object-position: center 30%;
  border: 4px solid #ffffff;
  border-radius: 24px;
  box-shadow: 0 16px 35px rgba(17, 24, 39, 0.18);
}

.about-content p {
  color: #4b5563;
  line-height: 1.7;
}

.about-label {
  color: #2563eb !important;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .about-photo-wrapper {
    max-width: 220px;
  }

  .about-photo {
    height: 275px;
  }
}

/* Consistent responsive navigation */

.header-inner {
  max-width: 1280px;
}

.logo {
  flex-shrink: 0;
}

.nav-links {
  gap: 0.35rem;
}

.nav-links a {
  font-size: 0.88rem;
  white-space: nowrap;
}

@media (max-width: 1050px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
    width: min(260px, calc(100vw - 2rem));
    max-height: calc(100vh - 90px);
    overflow-y: auto;
    padding: 0.75rem;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    box-shadow: 0 12px 25px rgba(15, 23, 42, 0.12);
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links li,
  .nav-links a {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 0.6rem 0.75rem;
  }
}

/* Article authorship, dates, citations, and sources */

.article-meta {
  margin: 1rem 0 1.5rem;
  padding-left: 1rem;
  border-left: 3px solid #60a5fa;
  color: #4b5563;
  font-size: 0.95rem;
}

.article-meta p {
  margin: 0.2rem 0;
}

.article-meta a,
.source-list a {
  color: #1d4ed8;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.citation-link {
  margin-left: 0.15rem;
  color: #1d4ed8;
  font-weight: 700;
  text-decoration: none;
}

.citation-link:hover,
.citation-link:focus {
  text-decoration: underline;
}

.article-sources {
  max-width: 840px;
  margin-top: 2rem;
}

.source-list {
  margin: 1.5rem 0 0;
  padding-left: 1.5rem;
  color: #4b5563;
}

.source-list li {
  margin-bottom: 0.75rem;
  line-height: 1.65;
}
  


/* RoutePulse product page */

.routepulse-page {
  background: #f8fafc;
}

.sf-hero {
  position: relative;
  overflow: hidden;
  padding: 6rem 0 5rem;
  background:
    radial-gradient(circle at 85% 10%, rgba(37, 99, 235, 0.16), transparent 30%),
    radial-gradient(circle at 15% 85%, rgba(59, 130, 246, 0.09), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-bottom: 1px solid #e5e7eb;
}

.sf-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
  gap: 4rem;
  align-items: center;
}

.sf-product-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.1rem;
  padding: 0.42rem 0.8rem;
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  background: #eff6ff;
  color: #1d4ed8;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sf-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.sf-hero-copy h1 {
  margin: 0 0 1.1rem;
  max-width: 720px;
  font-size: clamp(2.75rem, 5vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  color: #0f172a;
}

.sf-hero-lead {
  max-width: 690px;
  margin: 0 0 1.65rem;
  color: #475569;
  font-size: 1.12rem;
  line-height: 1.75;
}

.sf-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.3rem;
}

.sf-proof-row span {
  padding: 0.42rem 0.7rem;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: #475569;
  font-size: 0.82rem;
  font-weight: 600;
}

.sf-dashboard {
  position: relative;
  padding: 1.25rem;
  border: 1px solid #cbd5e1;
  border-radius: 1.35rem;
  background: #0f172a;
  color: #e2e8f0;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.23);
}

.sf-dashboard::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.8), rgba(30, 64, 175, 0.2), rgba(255, 255, 255, 0.1));
}

.sf-dashboard-topbar,
.sf-dashboard-footer,
.sf-window-row,
.sf-summary-grid {
  display: flex;
  align-items: center;
}

.sf-dashboard-topbar {
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.15rem;
}

.sf-dashboard-topbar strong {
  display: block;
  margin-top: 0.12rem;
  color: #f8fafc;
  font-size: 1rem;
}

.sf-mini-label {
  color: #60a5fa;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.sf-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.42rem 0.65rem;
  border: 1px solid rgba(74, 222, 128, 0.25);
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.1);
  color: #86efac;
  font-size: 0.72rem;
  font-weight: 700;
}

.sf-live-pill span {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 999px;
  background: #4ade80;
  box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.1);
}

.sf-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
  margin-bottom: 0.8rem;
}

.sf-stat-card {
  min-width: 0;
  padding: 0.85rem;
  border: 1px solid #334155;
  border-radius: 0.8rem;
  background: #172033;
}

.sf-stat-card span {
  display: block;
  margin-bottom: 0.25rem;
  color: #94a3b8;
  font-size: 0.68rem;
}

.sf-stat-card strong {
  color: #f8fafc;
  font-size: 0.95rem;
}

.sf-stat-alert {
  border-color: rgba(251, 191, 36, 0.32);
  background: rgba(245, 158, 11, 0.08);
}

.sf-stat-alert strong {
  color: #fcd34d;
}

.sf-window-list {
  overflow: hidden;
  border: 1px solid #334155;
  border-radius: 0.9rem;
  background: #111827;
}

.sf-window-row {
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem;
  border-bottom: 1px solid #263244;
}

.sf-window-row:last-child {
  border-bottom: 0;
}

.sf-window-row strong,
.sf-window-row span {
  display: block;
}

.sf-window-row strong {
  color: #f8fafc;
  font-size: 0.9rem;
}

.sf-window-row div > span {
  margin-top: 0.18rem;
  color: #94a3b8;
  font-size: 0.72rem;
}

.sf-assignment {
  flex: 0 0 auto;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  background: #1d4ed8;
  color: #dbeafe;
  font-size: 0.7rem;
  font-weight: 700;
}

.sf-assignment-muted {
  background: #334155;
  color: #cbd5e1;
}

.sf-dashboard-footer {
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.9rem;
  color: #64748b;
  font-size: 0.68rem;
}

.sf-narrow {
  max-width: 980px;
}

.sf-problem-section {
  background: #ffffff;
}

.sf-problem-grid,
.sf-feature-grid,
.sf-audience-grid {
  display: grid;
  gap: 1rem;
}

.sf-problem-grid {
  grid-template-columns: repeat(3, 1fr);
}

.sf-problem-card {
  padding: 1.5rem;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  background: #f8fafc;
}

.sf-card-number {
  color: #2563eb;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.sf-problem-card h3 {
  margin: 0.55rem 0 0.5rem;
  font-size: 1.08rem;
}

.sf-problem-card p,
.sf-feature-card p,
.sf-flow-step p {
  margin: 0;
  color: #64748b;
  line-height: 1.65;
}

.sf-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0.75rem;
  align-items: center;
}

.sf-flow-step {
  min-height: 190px;
  padding: 1.3rem;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  background: #ffffff;
}

.sf-flow-step > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: #dbeafe;
  color: #1d4ed8;
  font-size: 0.8rem;
  font-weight: 800;
}

.sf-flow-step h3 {
  margin: 1rem 0 0.45rem;
  font-size: 1rem;
}

.sf-flow-arrow {
  color: #94a3b8;
  font-size: 1.35rem;
}

.sf-feature-section {
  background: #0f172a;
  color: #f8fafc;
}

.sf-feature-section .section-title,
.sf-feature-section .section-kicker {
  color: #f8fafc;
}

.sf-feature-section .section-kicker {
  color: #60a5fa;
}

.sf-feature-section .section-subtitle {
  color: #94a3b8;
}

.sf-feature-grid {
  grid-template-columns: repeat(4, 1fr);
}

.sf-feature-card {
  padding: 1.35rem;
  border: 1px solid #263244;
  border-radius: 1rem;
  background: #111827;
}

.sf-feature-card h3 {
  margin: 0.8rem 0 0.45rem;
  color: #f8fafc;
  font-size: 1rem;
}

.sf-feature-card p {
  color: #94a3b8;
  font-size: 0.9rem;
}

.sf-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border: 1px solid #334155;
  border-radius: 0.65rem;
  background: #172033;
  color: #60a5fa;
  font-weight: 800;
}

.sf-rider-section {
  overflow: hidden;
  background: #ffffff;
}

.sf-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.8fr);
  gap: 4.5rem;
  align-items: center;
  max-width: 980px;
}

.sf-split-reverse {
  grid-template-columns: minmax(380px, 0.9fr) minmax(0, 1fr);
}

.sf-split h2,
.sf-early-grid h2 {
  margin: 0 0 1rem;
  color: #0f172a;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.sf-split p,
.sf-early-grid > div > p {
  color: #64748b;
  line-height: 1.75;
}

.sf-left-kicker {
  text-align: left;
}

.sf-check-list {
  display: grid;
  gap: 0.65rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
  color: #334155;
}

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

.sf-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: 800;
}

.sf-phone {
  width: min(100%, 340px);
  margin: 0 auto;
  padding: 0.85rem 1.15rem 1.2rem;
  border: 8px solid #0f172a;
  border-radius: 2.2rem;
  background: #f8fafc;
  box-shadow: 0 28px 65px rgba(15, 23, 42, 0.18);
  text-align: center;
}

.sf-phone-notch {
  width: 32%;
  height: 0.38rem;
  margin: 0 auto 1.1rem;
  border-radius: 999px;
  background: #cbd5e1;
}

.sf-phone-brand {
  color: #2563eb;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.sf-rider-status-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5.25rem;
  height: 5.25rem;
  margin: 1.2rem auto;
  border-radius: 999px;
  background: #dcfce7;
}

.sf-rider-status-icon span {
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 10px rgba(34, 197, 94, 0.12);
}

.sf-rider-label {
  margin: 0 0 0.3rem;
  color: #64748b !important;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.sf-phone h3 {
  margin: 0;
  color: #0f172a;
  font-size: 1.55rem;
}

.sf-rider-copy {
  margin: 0.35rem 0 1.2rem;
  color: #64748b !important;
  font-size: 0.88rem;
}

.sf-rider-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
}

.sf-rider-info div {
  padding: 0.75rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.8rem;
  background: #ffffff;
  text-align: left;
}

.sf-rider-info span,
.sf-rider-info strong {
  display: block;
}

.sf-rider-info span {
  color: #94a3b8;
  font-size: 0.65rem;
}

.sf-rider-info strong {
  margin-top: 0.15rem;
  color: #0f172a;
  font-size: 0.85rem;
}

.sf-track-button {
  width: 100%;
  padding: 0.7rem;
  border: 0;
  border-radius: 0.75rem;
  background: #dbeafe;
  color: #1d4ed8;
  font-weight: 700;
  opacity: 1;
}

.sf-concept-note {
  margin: 0.65rem 0 0;
  color: #94a3b8 !important;
  font-size: 0.68rem;
}

.sf-tracking-section {
  overflow: hidden;
}

.sf-map-concept {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  border: 1px solid #cbd5e1;
  border-radius: 1.4rem;
  background:
    linear-gradient(90deg, rgba(226, 232, 240, 0.65) 1px, transparent 1px),
    linear-gradient(rgba(226, 232, 240, 0.65) 1px, transparent 1px),
    #ffffff;
  background-size: 34px 34px;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.08);
}

.sf-map-route {
  position: absolute;
  left: 15%;
  top: 54%;
  width: 70%;
  height: 5px;
  border-radius: 999px;
  background: #93c5fd;
  transform: rotate(-18deg);
  box-shadow: 0 0 0 4px rgba(147, 197, 253, 0.18);
}

.sf-map-stop {
  position: absolute;
  width: 0.8rem;
  height: 0.8rem;
  border: 3px solid #ffffff;
  border-radius: 999px;
  background: #2563eb;
  box-shadow: 0 0 0 3px #93c5fd;
}

.sf-stop-one { left: 16%; top: 64%; }
.sf-stop-two { left: 49%; top: 49%; }
.sf-stop-three { right: 14%; top: 34%; }

.sf-bus-dot {
  position: absolute;
  left: 58%;
  top: 39%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  border: 4px solid #ffffff;
  border-radius: 999px;
  background: #0f172a;
  color: #ffffff;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.2);
}

.sf-map-card {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.1);
}

.sf-map-card span,
.sf-map-card strong,
.sf-map-card small {
  display: block;
}

.sf-map-card span {
  color: #2563eb;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.sf-map-card strong {
  margin: 0.12rem 0;
  color: #0f172a;
}

.sf-map-card small {
  color: #64748b;
}

.sf-tier-note,
.sf-early-note {
  margin-top: 1.25rem;
  padding: 1rem 1.1rem;
  border-left: 3px solid #2563eb;
  border-radius: 0.55rem;
  background: #eff6ff;
  color: #334155;
  line-height: 1.7;
}

.sf-audience-section {
  background: #ffffff;
}

.sf-audience-grid {
  grid-template-columns: repeat(3, 1fr);
}

.sf-audience-grid span {
  padding: 1rem 1.1rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.8rem;
  background: #f8fafc;
  color: #334155;
  text-align: center;
  font-weight: 650;
}

.sf-faq-section {
  background: #f8fafc;
}

.sf-faq-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 2rem;
}

.sf-faq-list details {
  border: 1px solid #e2e8f0;
  border-radius: 0.9rem;
  background: #ffffff;
}

.sf-faq-list summary {
  position: relative;
  cursor: pointer;
  padding: 1rem 3rem 1rem 1.1rem;
  color: #0f172a;
  font-weight: 700;
  list-style: none;
}

.sf-faq-list summary::-webkit-details-marker {
  display: none;
}

.sf-faq-list summary::after {
  content: "+";
  position: absolute;
  right: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #2563eb;
  font-size: 1.25rem;
}

.sf-faq-list details[open] summary::after {
  content: "–";
}

.sf-faq-list details p {
  margin: 0;
  padding: 0 1.1rem 1.1rem;
  color: #64748b;
  line-height: 1.7;
}

.sf-early-access {
  background: #eaf2ff;
}

.sf-early-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 4rem;
  align-items: start;
}

.sf-early-form {
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.09);
}

.sf-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.sf-early-form select {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  padding: 0.58rem 0.6rem;
  background: #ffffff;
  color: #111827;
  font: inherit;
}

.sf-form-disclaimer {
  margin: 0.75rem 0 0;
  text-align: center;
}

/* RoutePulse card on Renatus homepage */

.coming-projects {
  display: grid;
  gap: 1.75rem;
}

.featured-project-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.25rem;
}

.routepulse-preview {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 1.4rem;
  background:
    radial-gradient(circle at 80% 15%, rgba(59, 130, 246, 0.32), transparent 30%),
    linear-gradient(145deg, #0f172a 0%, #172554 100%);
}

.routepulse-preview::after {
  content: "";
  position: absolute;
  inset: auto -20% -45% 20%;
  height: 65%;
  border: 1px solid rgba(96, 165, 250, 0.22);
  border-radius: 50%;
  transform: rotate(-12deg);
}

.routepulse-preview-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 410px);
  padding: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 1rem;
  background: rgba(15, 23, 42, 0.88);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.28);
  color: #e2e8f0;
}

.routepulse-preview-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.routepulse-preview-brand strong {
  color: #ffffff;
  font-size: 1.15rem;
}

.routepulse-preview-brand span {
  padding: 0.3rem 0.5rem;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  color: #86efac;
  font-size: 0.67rem;
  font-weight: 700;
}

.routepulse-preview-stat {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}

.routepulse-preview-stat div,
.routepulse-preview-row {
  padding: 0.75rem;
  border: 1px solid #334155;
  border-radius: 0.7rem;
  background: rgba(30, 41, 59, 0.75);
}

.routepulse-preview-stat span,
.routepulse-preview-stat strong,
.routepulse-preview-row span,
.routepulse-preview-row strong {
  display: block;
}

.routepulse-preview-stat span,
.routepulse-preview-row span {
  color: #94a3b8;
  font-size: 0.68rem;
}

.routepulse-preview-stat strong,
.routepulse-preview-row strong {
  margin-top: 0.15rem;
  color: #f8fafc;
}

.routepulse-preview-row {
  margin-top: 0.55rem;
}

.routepulse-preview-row strong {
  color: #fcd34d;
}

@media (max-width: 980px) {
  .sf-hero-grid,
  .sf-split,
  .sf-split-reverse,
  .sf-early-grid {
    grid-template-columns: 1fr;
  }

  .sf-dashboard {
    max-width: 620px;
  }

  .sf-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sf-flow {
    grid-template-columns: repeat(2, 1fr);
  }

  .sf-flow-arrow {
    display: none;
  }

  .sf-flow-step {
    min-height: 0;
  }

  .sf-split,
  .sf-split-reverse,
  .sf-early-grid {
    gap: 2.5rem;
  }
}

@media (max-width: 720px) {
  .sf-hero {
    padding: 4.2rem 0 3.5rem;
  }

  .sf-hero-grid {
    gap: 2.5rem;
  }

  .sf-hero-copy h1 {
    font-size: clamp(2.5rem, 12vw, 3.6rem);
  }

  .sf-summary-grid,
  .sf-problem-grid,
  .sf-feature-grid,
  .sf-audience-grid,
  .sf-form-row,
  .sf-flow {
    grid-template-columns: 1fr;
  }

  .sf-dashboard-topbar,
  .sf-dashboard-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .sf-window-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .sf-map-concept {
    min-height: 310px;
  }

  .routepulse-preview {
    min-height: 360px;
  }
}


/* Products hub */
.nav-links a[aria-current="page"] {
  background-color: #e5f0ff;
  color: #1d4ed8;
  font-weight: 600;
}

.products-hero {
  padding: 5rem 0 4.25rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.products-hero-inner {
  max-width: 760px;
  text-align: center;
}

.products-hero h1 {
  margin: 0.35rem 0 1rem;
  font-size: clamp(2.35rem, 5vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.products-hero p:not(.about-label) {
  margin: 0 auto;
  max-width: 690px;
  color: #4b5563;
  font-size: 1.05rem;
}

.products-featured {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
  padding: 1.4rem;
  background-color: #ffffff;
  border: 1px solid #dbe4f0;
  border-radius: 1.4rem;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
}

.products-preview {
  padding: 1.2rem;
  border-radius: 1.1rem;
  background: #0f172a;
  color: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.products-preview-top,
.products-preview-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.products-preview-top {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.products-preview-top > div,
.products-preview-row > div {
  display: grid;
  gap: 0.15rem;
}

.products-preview-label,
.products-preview-row span,
.products-preview-stats span {
  color: #94a3b8;
  font-size: 0.76rem;
}

.products-preview-label {
  color: #60a5fa;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.products-live {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  color: #bbf7d0;
  font-size: 0.78rem;
  font-weight: 600;
}

.products-live span {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: #22c55e;
}

.products-preview-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin: 1rem 0;
}

.products-preview-stats > div {
  display: grid;
  gap: 0.25rem;
  padding: 0.8rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.07);
}

.products-preview-stats strong {
  font-size: 0.95rem;
}

.products-preview-row {
  margin-top: 0.55rem;
  padding: 0.75rem 0.8rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
}

.products-preview-row > span {
  color: #bfdbfe;
  font-weight: 600;
}

.products-featured-copy h3 {
  margin: 0.9rem 0 0.75rem;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.15;
}

.products-featured-copy > p {
  margin: 0;
  color: #4b5563;
}

.products-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.25rem;
}

.products-values {
  grid-template-columns: repeat(3, 1fr);
}

.products-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.5rem 0;
}

.products-cta h2 {
  margin: 0.35rem 0 0.4rem;
}

.products-cta p:not(.about-label) {
  margin: 0;
  color: #4b5563;
}

/* The extra Products item makes the desktop nav wider. Collapse it before it crowds. */
@media (max-width: 1120px) {
  .nav-toggle {
    display: inline-block;
  }

  .nav-links {
    position: absolute;
    top: 110%;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    background-color: #ffffff;
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
    padding: 0.75rem;
    min-width: 210px;
    box-shadow: 0 12px 25px rgba(15, 23, 42, 0.12);
    display: none;
  }

  .nav-links.show {
    display: flex;
  }
}

@media (max-width: 768px) {
  .products-hero {
    padding: 3.8rem 0 3.2rem;
  }

  .products-featured,
  .products-values {
    grid-template-columns: 1fr;
  }

  .products-featured {
    gap: 1.4rem;
    padding: 0.9rem;
  }

  .products-preview-stats {
    grid-template-columns: 1fr;
  }

  .products-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .logo {
    width: 190px;
    height: 50px;
  }
}


.products-featured + .products-featured {
  margin-top: 2rem;
}

.products-image-preview {
  overflow: hidden;
  border: 1px solid #dbe4f0;
  border-radius: 1.1rem;
  background-color: #ffffff;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.1);
}

.products-image-preview img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.products-cta .products-actions {
  justify-content: flex-end;
  margin-top: 0;
}


/* =========================================================
   RENATUS — 80s CORPORATE NAVBAR
   Keep this at the bottom of styles.css
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background:
    linear-gradient(
      180deg,
      rgba(24, 24, 38, 0.98) 0%,
      rgba(8, 9, 24, 0.98) 100%
    );
  border-bottom: 0;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 10px 30px rgba(4, 5, 25, 0.3);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* Thin retro corporate accent line */
.site-header::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    #ff6a00 20%,
    #d81b60 55%,
    #38bdf8 82%,
    transparent 100%
  );
  opacity: 0.85;
}

.header-inner {
  max-width: 1440px;
  min-height: 86px;
  padding: 0.7rem 1.5rem;
  gap: 2rem;
}

/* Logo fix */
.logo {
  display: block;
  flex: 0 0 auto;
  width: 310px;
  height: auto;
  overflow: visible;
}

.logo-image {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: left center;
}

/* Desktop links */
.nav-links {
  gap: 0.15rem;
}

.nav-links a {
  display: block;
  padding: 0.55rem 0.62rem;
  color: #d9d9dd;
  background: transparent;
  border-radius: 4px;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  white-space: nowrap;
  transition:
    color 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #ffffff;
  background-color: rgba(230, 188, 122, 0.1);
}

.nav-links a[aria-current="page"] {
  color: #e6bc7a;
  background-color: rgba(255, 106, 0, 0.08);
  box-shadow: inset 0 -2px 0 #ff6a00;
}

/* Final link becomes the primary action */
.nav-links li:last-child a {
  margin-left: 0.35rem;
  padding-inline: 0.9rem;
  color: #ffffff;
  border: 1px solid rgba(230, 188, 122, 0.75);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.02)
    );
}

.nav-links li:last-child a:hover,
.nav-links li:last-child a:focus-visible {
  color: #ffffff;
  border-color: transparent;
  background: linear-gradient(135deg, #ff6a00, #d81b60);
}

/* Hamburger */
.nav-toggle {
  color: #f5f1e8;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(230, 188, 122, 0.45);
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.05);
}

/* Tablet and mobile menu */
@media (max-width: 1280px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 0.8rem);
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
    width: min(310px, calc(100vw - 2rem));
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    padding: 0.8rem;
    background:
      linear-gradient(
        180deg,
        rgba(24, 24, 38, 0.99),
        rgba(8, 9, 24, 0.99)
      );
    border: 1px solid rgba(230, 188, 122, 0.28);
    border-radius: 8px;
    box-shadow: 0 18px 40px rgba(4, 5, 25, 0.45);
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links li,
  .nav-links a {
    width: 100%;
  }

  .nav-links a {
    padding: 0.75rem 0.85rem;
  }

  .nav-links li:last-child a {
    margin: 0.4rem 0 0;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .header-inner {
    min-height: 74px;
    padding: 0.6rem 1rem;
  }

  .logo {
    width: min(230px, calc(100vw - 90px));
  }
}

/* =========================================================
   RENATUS HERO PANEL
   ========================================================= */

.hero-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 100%;
  max-width: 360px;
  margin-left: auto;
  padding: 1.75rem;

  color: #f5f1e8;

  background:
    linear-gradient(
      145deg,
      rgba(28, 27, 48, 0.94),
      rgba(8, 9, 27, 0.88)
    );

  border: 1px solid rgba(230, 188, 122, 0.48);
  border-radius: 10px;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 22px 50px rgba(3, 4, 20, 0.48);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Gradient accent along the top */
.hero-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;

  background: linear-gradient(
    90deg,
    #ff6a00,
    #d81b60 58%,
    #38bdf8
  );
}

.hero-card-header h2 {
  margin: 0 0 0.45rem;
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 750;
  letter-spacing: 0.055em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero-card-header p {
  margin: 0;
  color: #d9d9dd;
  font-size: 0.92rem;
  line-height: 1.55;
}

.hero-card-list {
  margin: 1.2rem 0 1.4rem;
  padding: 0;
  color: #e5e7eb;
  font-size: 0.9rem;
}

.hero-card-list li {
  position: relative;
  margin-bottom: 0.55rem;
  padding-left: 1.25rem;
}

/* Small gold corporate diamonds */
.hero-card-list li::before {
  content: "";
  position: absolute;
  top: 0.52rem;
  left: 0;
  width: 6px;
  height: 6px;
  background: linear-gradient(135deg, #e6bc7a, #ff6a00);
  box-shadow: 0 0 8px rgba(255, 106, 0, 0.4);
  transform: rotate(45deg);
}

/* Card button */
.hero-card .btn-primary {
  min-height: 48px;
  color: #ffffff;
  background: linear-gradient(135deg, #ff6a00, #d81b60);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 5px;
  box-shadow: 0 12px 26px rgba(216, 27, 96, 0.28);

  font-size: 0.84rem;
  font-weight: 750;
  letter-spacing: 0.065em;
  text-transform: uppercase;
}

.hero-card .btn-primary:hover,
.hero-card .btn-primary:focus-visible {
  background: linear-gradient(135deg, #ff812e, #ed2c79);
  box-shadow: 0 15px 32px rgba(216, 27, 96, 0.38);
  transform: translateY(-1px);
}

/* =========================================================
   RENATUS HERO TYPOGRAPHY
   ========================================================= */

.hero-text {
  max-width: 720px;
}

/* Small corporate identification line */
.hero-kicker {
  display: flex;
  align-items: center;
  gap: 0.8rem;

  margin: 0 0 1.25rem !important;

  color: #e6bc7a !important;
  font-size: 0.72rem !important;
  font-weight: 750;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
  text-shadow: none !important;
}

.hero-kicker::before {
  content: "";
  flex: 0 0 38px;
  width: 38px;
  height: 2px;

  background: linear-gradient(
    90deg,
    #ff6a00,
    #d81b60
  );
}

/* Main corporate statement */
.hero-text h1 {
  max-width: 720px;
  margin: 0 0 1.4rem;

  color: #ffffff;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  font-size: clamp(2.8rem, 4.3vw, 4.35rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.98;
  text-transform: uppercase;

  text-shadow: 0 8px 28px rgba(2, 3, 20, 0.55);
}

/* Warm accent without competing with the chrome logo */
.hero-title-accent {
  display: block;
  margin-top: 0.15em;
  color: #e6bc7a;
}

/* Shorter supporting copy */
.hero-text .hero-lead {
  max-width: 650px;
  margin: 0 0 1.6rem;

  color: #d9d9dd;
  font-size: 1.02rem;
  line-height: 1.7;
  text-shadow: 0 3px 16px rgba(2, 3, 20, 0.72);
}

/* More corporate, less app-style */
.hero .hero-actions {
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}

.hero .hero-actions .btn {
  min-height: 48px;
  padding-inline: 1.4rem;

  border-radius: 5px;
  font-size: 0.8rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero .hero-actions .btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #ff6a00, #d81b60);
  border-color: transparent;
  box-shadow: 0 12px 28px rgba(216, 27, 96, 0.28);
}

.hero .hero-actions .btn-primary:hover {
  background: linear-gradient(135deg, #ff812e, #ed2c79);
  transform: translateY(-1px);
}

.hero .hero-actions .btn-outline {
  color: #f5f1e8;
  background: rgba(10, 12, 32, 0.78);
  border-color: rgba(230, 188, 122, 0.55);
}

.hero .hero-actions .btn-outline:hover {
  color: #ffffff;
  background: rgba(35, 30, 58, 0.96);
  border-color: #e6bc7a;
}

/* Replace the white checkmark pills */
.hero-capabilities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.4rem;
  margin-top: 0.25rem;
}

.hero-capabilities span {
  position: relative;
  padding-left: 0.9rem;

  color: #d9d9dd;
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.085em;
  text-transform: uppercase;
}

.hero-capabilities span::before {
  content: "";
  position: absolute;
  top: 0.38rem;
  left: 0;

  width: 6px;
  height: 6px;

  background: linear-gradient(135deg, #e6bc7a, #ff6a00);
  transform: rotate(45deg);
  box-shadow: 0 0 7px rgba(255, 106, 0, 0.35);
}

@media (max-width: 600px) {
  .hero-text h1 {
    font-size: clamp(2.35rem, 12vw, 3.2rem);
  }

  .hero-kicker {
    font-size: 0.65rem !important;
  }

  .hero-capabilities {
    flex-direction: column;
    gap: 0.55rem;
  }
}

/* =========================================================
   RENATUS — SHARED 80s CORPORATE CONTENT SYSTEM
   ========================================================= */

:root {
  --renatus-bg: #070819;
  --renatus-section: #0c0d21;
  --renatus-section-alt: #121329;
  --renatus-panel: #17172d;
  --renatus-panel-deep: #0d0e22;
  --renatus-white: #f7f5f0;
  --renatus-muted: #b9b8c6;
  --renatus-gold: #e6bc7a;
  --renatus-orange: #ff6a00;
  --renatus-pink: #d81b60;
  --renatus-cyan: #38bdf8;
  --renatus-border: rgba(230, 188, 122, 0.28);
}

body {
  color: var(--renatus-white);
  background-color: var(--renatus-bg);
  font-family: "Avenir Next", "Segoe UI", sans-serif;
}

body:not(.routepulse-page) main {
  background-color: var(--renatus-bg);
}

body:not(.routepulse-page) .section {
  position: relative;
  padding: 5.5rem 0;
  color: var(--renatus-white);
  background:
    radial-gradient(circle at 90% 10%, rgba(216, 27, 96, 0.07), transparent 30%),
    var(--renatus-section);
  border-top: 1px solid rgba(230, 188, 122, 0.1);
}

body:not(.routepulse-page) .section-muted {
  background:
    radial-gradient(circle at 10% 20%, rgba(56, 189, 248, 0.06), transparent 30%),
    var(--renatus-section-alt);
}

body:not(.routepulse-page) .section-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 0 0 0.65rem;
  color: var(--renatus-gold);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body:not(.routepulse-page) .section-kicker::before {
  content: "";
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--renatus-orange), var(--renatus-pink));
}

body:not(.routepulse-page) .section-title {
  color: var(--renatus-white);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  text-transform: uppercase;
}

body:not(.routepulse-page) .section-subtitle {
  color: var(--renatus-muted);
  line-height: 1.7;
}

body:not(.routepulse-page) .card {
  position: relative;
  overflow: hidden;
  color: var(--renatus-white);
  background: linear-gradient(145deg, rgba(28, 27, 48, 0.97), rgba(9, 10, 29, 0.97));
  border: 1px solid var(--renatus-border);
  border-radius: 10px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 18px 40px rgba(2, 3, 18, 0.32);
}

body:not(.routepulse-page) .card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--renatus-orange),
    var(--renatus-pink),
    var(--renatus-cyan)
  );
  opacity: 0.8;
}

body:not(.routepulse-page) .card h3 {
  color: var(--renatus-white);
  font-weight: 750;
}

body:not(.routepulse-page) .card h3 a:hover,
body:not(.routepulse-page) .card h3 a:focus-visible {
  color: var(--renatus-gold);
}

body:not(.routepulse-page) .card p,
body:not(.routepulse-page) .pricing-tagline,
body:not(.routepulse-page) .pricing-list,
body:not(.routepulse-page) .price-term,
body:not(.routepulse-page) .small {
  color: var(--renatus-muted);
}

body:not(.routepulse-page) .card-highlight {
  border-color: rgba(230, 188, 122, 0.7);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 20px 45px rgba(216, 27, 96, 0.15);
}

body:not(.routepulse-page) .price {
  color: var(--renatus-gold);
}

body:not(.routepulse-page) .btn {
  min-height: 48px;
  border-radius: 5px;
  font-size: 0.8rem;
  font-weight: 750;
  letter-spacing: 0.065em;
  text-transform: uppercase;
}

body:not(.routepulse-page) .btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--renatus-orange), var(--renatus-pink));
  border-color: transparent;
  box-shadow: 0 12px 28px rgba(216, 27, 96, 0.25);
}

body:not(.routepulse-page) .btn-primary:hover,
body:not(.routepulse-page) .btn-primary:focus-visible {
  background: linear-gradient(135deg, #ff812e, #ed2c79);
  transform: translateY(-1px);
}

body:not(.routepulse-page) .btn-outline {
  color: var(--renatus-white);
  background: rgba(10, 12, 32, 0.72);
  border-color: rgba(230, 188, 122, 0.55);
}

body:not(.routepulse-page) .btn-outline:hover,
body:not(.routepulse-page) .btn-outline:focus-visible {
  color: #ffffff;
  background: rgba(35, 30, 58, 0.96);
  border-color: var(--renatus-gold);
}

body:not(.routepulse-page) main p a:not(.btn),
body:not(.routepulse-page) .text-link {
  color: var(--renatus-gold);
  text-decoration-color: rgba(230, 188, 122, 0.55);
}

/* Portfolio */

body:not(.routepulse-page) .portfolio-item {
  padding: 1rem;
  background: linear-gradient(145deg, var(--renatus-panel), var(--renatus-panel-deep));
  border: 1px solid var(--renatus-border);
  border-radius: 10px;
  box-shadow: 0 18px 40px rgba(2, 3, 18, 0.3);
}

body:not(.routepulse-page) .portfolio-thumb {
  overflow: hidden;
  padding: 0;
  background: #080918;
  border: 1px solid rgba(230, 188, 122, 0.35);
  border-radius: 7px;
}

body:not(.routepulse-page) .portfolio-thumb img {
  width: 100%;
  aspect-ratio: 1200 / 630;
  object-fit: cover;
}

body:not(.routepulse-page) .portfolio-item h3 {
  color: var(--renatus-white);
}

body:not(.routepulse-page) .portfolio-item p {
  color: var(--renatus-muted);
}

/* Featured products */

body:not(.routepulse-page) .featured-project {
  color: var(--renatus-white);
  background: linear-gradient(145deg, rgba(26, 25, 46, 0.98), rgba(8, 9, 27, 0.98));
  border: 1px solid var(--renatus-border);
  border-radius: 10px;
  box-shadow: 0 22px 50px rgba(2, 3, 18, 0.34);
}

body:not(.routepulse-page) .featured-project-media {
  background-color: #090a1c;
  border-radius: 7px;
}

body:not(.routepulse-page) .featured-project-content h3 {
  color: var(--renatus-white);
}

body:not(.routepulse-page) .featured-project-content > p,
body:not(.routepulse-page) .project-feature-list {
  color: var(--renatus-muted);
}

body:not(.routepulse-page) .project-eyebrow {
  color: var(--renatus-gold) !important;
}

body:not(.routepulse-page) .project-feature-list li::before {
  content: "";
  top: 0.55rem;
  width: 7px;
  height: 7px;
  background: linear-gradient(135deg, var(--renatus-gold), var(--renatus-orange));
  transform: rotate(45deg);
}

body:not(.routepulse-page) .project-note {
  color: var(--renatus-muted) !important;
  background: rgba(230, 188, 122, 0.06);
  border-left-color: var(--renatus-gold);
}

/* Contact form */

body:not(.routepulse-page) .contact-grid > div:first-child,
body:not(.routepulse-page) .contact-form {
  padding: 1.5rem;
  background: linear-gradient(145deg, var(--renatus-panel), var(--renatus-panel-deep));
  border: 1px solid var(--renatus-border);
  border-radius: 10px;
  box-shadow: 0 18px 40px rgba(2, 3, 18, 0.25);
}

body:not(.routepulse-page) .contact-grid h3,
body:not(.routepulse-page) label {
  color: var(--renatus-white);
}

body:not(.routepulse-page) input,
body:not(.routepulse-page) textarea,
body:not(.routepulse-page) select {
  width: 100%;
  color: var(--renatus-white);
  background: rgba(6, 7, 24, 0.8);
  border: 1px solid rgba(230, 188, 122, 0.32);
  border-radius: 5px;
  padding: 0.7rem 0.75rem;
  font: inherit;
}

body:not(.routepulse-page) input:focus,
body:not(.routepulse-page) textarea:focus,
body:not(.routepulse-page) select:focus {
  border-color: var(--renatus-gold);
  box-shadow: 0 0 0 3px rgba(230, 188, 122, 0.1);
  outline: none;
}

/* About and basic page intros */

body:not(.routepulse-page) .about-content h1 {
  color: var(--renatus-white);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

body:not(.routepulse-page) .about-content p {
  color: var(--renatus-muted);
}

body:not(.routepulse-page) .about-label {
  color: var(--renatus-gold) !important;
}

body:not(.routepulse-page) .about-photo {
  border-color: rgba(230, 188, 122, 0.65);
  border-radius: 10px;
  box-shadow: 0 20px 45px rgba(2, 3, 18, 0.45);
}

/* Products hub */

.products-page .products-hero {
  color: var(--renatus-white);
  background:
    radial-gradient(circle at 80% 10%, rgba(216, 27, 96, 0.13), transparent 32%),
    linear-gradient(145deg, #111229, #070819);
  border-bottom: 1px solid var(--renatus-border);
}

.products-page .products-hero h1 {
  color: var(--renatus-white);
  text-transform: uppercase;
}

.products-page .products-hero p:not(.about-label),
.products-page .products-featured-copy > p,
.products-page .products-cta p:not(.about-label) {
  color: var(--renatus-muted);
}

.products-page .products-featured,
.products-page .products-image-preview {
  color: var(--renatus-white);
  background: linear-gradient(145deg, var(--renatus-panel), var(--renatus-panel-deep));
  border-color: var(--renatus-border);
  border-radius: 10px;
}

.products-page .products-featured-copy h3,
.products-page .products-cta h2 {
  color: var(--renatus-white);
}

/* Page-level comparison, transparency, and FAQ components */

body:not(.routepulse-page) .comparison-wrap {
  background: linear-gradient(145deg, var(--renatus-panel), var(--renatus-panel-deep));
  border-color: var(--renatus-border);
  border-radius: 10px;
  box-shadow: 0 18px 40px rgba(2, 3, 18, 0.28);
}

body:not(.routepulse-page) .comparison-table th,
body:not(.routepulse-page) .comparison-table td {
  border-bottom-color: rgba(230, 188, 122, 0.14);
}

body:not(.routepulse-page) .comparison-table thead th {
  color: var(--renatus-gold);
  background: rgba(230, 188, 122, 0.08);
}

body:not(.routepulse-page) .comparison-table tbody th {
  color: var(--renatus-white);
}

body:not(.routepulse-page) .comparison-table td {
  color: var(--renatus-muted);
}

body:not(.routepulse-page) .verdict-box,
body:not(.routepulse-page) .transparency-callout {
  color: var(--renatus-white);
  background: linear-gradient(145deg, var(--renatus-panel), var(--renatus-panel-deep));
  border-left-color: var(--renatus-orange);
  box-shadow: 0 18px 40px rgba(2, 3, 18, 0.22);
}

body:not(.routepulse-page) .verdict-box p,
body:not(.routepulse-page) .transparency-callout p,
body:not(.routepulse-page) .check-list {
  color: var(--renatus-muted);
}

body:not(.routepulse-page) .check-list li::before {
  color: var(--renatus-gold);
}

body:not(.routepulse-page) .question-list li {
  color: var(--renatus-muted);
  background: linear-gradient(145deg, var(--renatus-panel), var(--renatus-panel-deep));
  border-color: var(--renatus-border);
  border-radius: 10px;
}

body:not(.routepulse-page) .question-list li::before {
  color: #ffffff;
  background: linear-gradient(135deg, var(--renatus-orange), var(--renatus-pink));
}

body:not(.routepulse-page) .warning-box {
  color: var(--renatus-muted);
  background: rgba(230, 188, 122, 0.07);
  border-color: rgba(230, 188, 122, 0.45);
}

body:not(.routepulse-page) .warning-box strong,
body:not(.routepulse-page) .card-note {
  color: var(--renatus-gold) !important;
}

body:not(.routepulse-page) .card-note {
  border-top-color: rgba(230, 188, 122, 0.2);
}

/* Footer */

.site-footer {
  position: relative;
  color: var(--renatus-muted);
  background: linear-gradient(180deg, #111225, #070819);
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--renatus-orange),
    var(--renatus-pink),
    var(--renatus-cyan),
    transparent
  );
}

.footer-links {
  margin-top: 0.75rem !important;
}

.footer-links a {
  color: var(--renatus-gold);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #ffffff;
}

@media (max-width: 768px) {
  body:not(.routepulse-page) .section {
    padding: 4rem 0;
  }

  body:not(.routepulse-page) .section-title {
    font-size: clamp(1.9rem, 9vw, 2.6rem);
  }
}
