/* Base layout and typography */
:root {
  --bg: #050608;
  --bg-alt: #0b0d10;
  --card: #11141b;
  --border-subtle: #1c1f26;
  --accent: #ff4b36;
  --accent-soft: rgba(255, 75, 54, 0.16);
  --accent-strong: #ff6a4f;
  --text: #f4f5f7;
  --muted: #9ba0b3;
  --pill-bg: #181c24;
  --shadow-soft: 0 16px 40px rgba(0, 0, 0, 0.65);
  --radius-lg: 16px;
  --radius-xl: 22px;
  --radius-full: 999px;
}

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

html,
body {
  margin: 0;
  padding: 0;
  background: radial-gradient(circle at top, #111420 0%, #050608 55%, #020308 100%);
  color: var(--text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
}

/* Layout helpers */
.shell {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

main {
  padding-bottom: 3rem;
}

/* Top nav */
.top-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(5, 6, 8, 0.96), rgba(5, 6, 8, 0.9), rgba(5, 6, 8, 0.8));
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.top-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 1.25rem;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
}

.brand-link {
  text-decoration: none;
  color: inherit;
}

.brand-name {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.brand-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.12rem;
  padding: 0.12rem 0.55rem;
  border-radius: 999px;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: linear-gradient(to right, rgba(255, 75, 54, 0.18), rgba(255, 75, 54, 0.03));
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 0.9rem;
  align-items: center;
  font-size: 0.9rem;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  transition: color 0.15s ease, background-color 0.15s ease;
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

.nav-links .nav-active {
  color: #fff;
  background: rgba(255, 75, 54, 0.18);
}

.nav-cta {
  display: flex;
  gap: 0.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  padding: 0.55rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.08s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #fff;
  border-color: rgba(0, 0, 0, 0.65);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.75);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.9);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted);
  border-color: rgba(255, 255, 255, 0.06);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.btn-small {
  padding: 0.45rem 0.9rem;
  font-size: 0.8rem;
}

/* Hero */
#hero {
  padding: 2.4rem 0 2rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.1fr);
  gap: 2.2rem;
  align-items: stretch;
}

.eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.hero-title {
  font-size: 2.4rem;
  line-height: 1.1;
  letter-spacing: 0.03em;
  margin: 0 0 0.5rem;
}

.hero-sub {
  margin: 0 0 1.35rem;
  max-width: 36rem;
  color: var(--muted);
  font-size: 0.98rem;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 0.9rem;
}

.hero-support {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  font-size: 0.74rem;
  color: var(--muted);
}

/* Hero side card */
.hero-side-card {
  align-self: stretch;
}

.hero-side-inner {
  height: 100%;
  padding: 1.2rem 1.2rem 1.3rem;
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at top left, rgba(255, 75, 54, 0.26) 0%, rgba(10, 12, 18, 0.98) 40%, #050608 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.hero-side-title {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.hero-side-main {
  font-weight: 600;
  font-size: 1.05rem;
}

.hero-side-sub {
  font-size: 0.85rem;
  color: rgba(230, 232, 240, 0.9);
}

.hero-specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.hero-spec-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.5);
}

.hero-spec-value {
  font-size: 0.85rem;
}

/* Sections */
section {
  padding: 1.8rem 0;
}

.section-header {
  margin-bottom: 1.2rem;
}

.section-title {
  font-size: 1.4rem;
  margin: 0 0 0.35rem;
}

.section-sub {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Why grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.why-item {
  padding: 0.95rem 0.9rem;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top, #131622, #090b10);
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.68);
  font-size: 0.9rem;
}

.why-item h3 {
  margin: 0 0 0.4rem;
  font-size: 0.98rem;
}

/* Cards grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.card {
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.02), rgba(11, 13, 16, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  padding: 0.9rem;
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.55rem;
}

.card-title {
  font-size: 1rem;
  margin: 0;
}

.card-body {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.card-body ul {
  padding-left: 1.1rem;
  margin: 0.25rem 0 0.35rem;
}

.card-body li {
  margin-bottom: 0.12rem;
}

.card-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.6rem;
}

.card-meta {
  font-size: 0.8rem;
  color: var(--muted);
}

.card-actions {
  display: flex;
  gap: 0.4rem;
}

/* Pills */
.pill {
  border-radius: 999px;
  padding: 0.1rem 0.55rem;
  font-size: 0.72rem;
  background: var(--pill-bg);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.step {
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top, #141723, #080a0f);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 0.95rem 0.9rem;
  font-size: 0.9rem;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.8);
}

.step-num {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.step-title {
  margin: 0 0 0.4rem;
  font-size: 0.98rem;
}

/* Tech text blocks */
.text-block {
  margin-top: 0.8rem;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top left, rgba(255, 75, 54, 0.18), rgba(8, 10, 14, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1rem 1rem 1.1rem;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.85);
  font-size: 0.9rem;
}

.text-block h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
  font-size: 1rem;
}

.text-block ul {
  margin: 0.25rem 0 0.5rem;
  padding-left: 1.1rem;
}

.text-block li {
  margin-bottom: 0.12rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-card {
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top, #141723, #080a0f);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 1rem;
  box-shadow: var(--shadow-soft);
  font-size: 0.9rem;
}

.contact-card h2 {
  margin-top: 0;
  margin-bottom: 0.45rem;
  font-size: 1rem;
}

/* Footer */
footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: radial-gradient(circle at top, #121522, #050608);
  padding: 1.8rem 0 1.4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  font-size: 0.85rem;
}

.footer-col-title {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 0.3rem;
}

.footer-links a {
  display: block;
  text-decoration: none;
  color: var(--muted);
  margin-bottom: 0.16rem;
  font-size: 0.83rem;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 0.7rem;
  align-items: center;
  margin-top: 1.2rem;
  font-size: 0.78rem;
  color: var(--muted);
}

.footer-note {
  opacity: 0.85;
}

/* Products page sections */
#products-hero {
  padding-top: 2.2rem;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-side-inner {
    margin-top: 0.6rem;
  }
  .why-grid,
  .cards-grid,
  .steps-grid,
  .footer-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .top-nav-inner {
    flex-wrap: wrap;
  }
  .nav-cta {
    margin-left: auto;
  }
}

@media (max-width: 640px) {
  .hero-title {
    font-size: 1.95rem;
  }
  .hero-specs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}



/* ---------------------------
   Simple home topbar + menu
---------------------------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(5, 6, 8, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.logo {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
}

.logo-name {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.logo-sub {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.9rem;
}

.nav-desktop a {
  color: var(--muted);
  text-decoration: none;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  transition: color 0.15s ease, background-color 0.15s ease;
}

.nav-desktop a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

.nav-desktop .nav-active {
  color: #fff;
  background: rgba(255, 75, 54, 0.18);
}

.menu-btn {
  display: none;
  width: 44px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  cursor: pointer;
}

.menu-btn:hover {
  background: rgba(255, 255, 255, 0.04);
}

.menu-icon {
  display: inline-block;
  width: 18px;
  height: 2px;
  background: currentColor;
  position: relative;
}

.menu-icon::before,
.menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.menu-icon::before { top: -6px; }
.menu-icon::after { top: 6px; }

.nav-mobile {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.6rem 1.25rem 1rem;
  background: rgba(5, 6, 8, 0.96);
}

.nav-mobile a {
  display: block;
  text-decoration: none;
  color: var(--muted);
  padding: 0.55rem 0.7rem;
  border-radius: 12px;
  margin-top: 0.35rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

.nav-mobile a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.nav-mobile .nav-active {
  color: #fff;
  background: rgba(255, 75, 54, 0.18);
  border-color: rgba(255, 75, 54, 0.22);
}

.nav-mobile .nav-cta {
  margin-top: 0.6rem;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  border-color: rgba(0, 0, 0, 0.65);
}

.nav-mobile.open {
  display: block;
}

/* ---------------------------
   Simple home sections
---------------------------- */
.simple-hero {
  padding: 2.4rem 0 1.6rem;
}

.kicker {
  margin: 0 0 0.8rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.simple-title {
  margin: 0 0 0.6rem;
  font-size: 2.1rem;
  line-height: 1.12;
  letter-spacing: 0.02em;
}

.simple-sub {
  margin: 0 0 1.2rem;
  color: var(--muted);
  max-width: 44rem;
}

.simple-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.simple-strip {
  padding: 1.2rem 0 1.6rem;
}

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

.strip-item {
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1rem;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.75);
}

.strip-title {
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.strip-text {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0.7rem;
}

.strip-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.9rem;
}

.strip-link:hover {
  text-decoration: underline;
}

.simple-note {
  padding: 1.4rem 0 2.2rem;
}

.note-inner {
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at top left, rgba(255, 75, 54, 0.18), rgba(8, 10, 14, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.78);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.note-title {
  margin: 0 0 0.35rem;
  font-size: 1.2rem;
}

.note-text {
  margin: 0;
  color: var(--muted);
  max-width: 44rem;
}

.note-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.simple-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(5, 6, 8, 0.9);
  padding: 1.2rem 0;
}

.simple-footer .footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.simple-footer .footer-links a {
  color: var(--muted);
  text-decoration: none;
  margin-left: 0.75rem;
}

.simple-footer .footer-links a:hover {
  color: var(--text);
}

/* Make product-page images behave */
img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}

/* Responsive tweaks for the new topbar */
@media (max-width: 900px) {
  .nav-desktop { display: none; }
  .menu-btn { display: inline-flex; align-items:center; justify-content:center; }
  .strip-grid { grid-template-columns: minmax(0, 1fr); }
  .note-inner { flex-direction: column; align-items: flex-start; }
  .simple-title { font-size: 1.8rem; }
}


/* ===========================
   NFP Coherent Theme (Brushed Dark)
   - neutral brushed black/gray base
   - one accent system site-wide
   - RWB tiles ONLY for the 3 home feature cards
=========================== */
:root{
  --bg0:#020308;
  --bg1:#05060a;
  --bg2:#0a0c12;
  --panel:#0f1118;
  --panel2:#0c0e14;
  --text:rgba(255,255,255,0.92);
  --muted:rgba(205,210,220,0.74);

  /* Primary accent (brand) */
  --accent:#ff4b36;
  --accent-strong:#ff7a55;

  /* Borders/shadows */
  --stroke:rgba(255,255,255,0.12);
  --stroke2:rgba(255,255,255,0.18);
  --shadow:rgba(0,0,0,0.85);
}

/* Brushed black/gray background */
html,body{
  background:
    linear-gradient(120deg,
      rgba(255,255,255,0.03) 0%,
      rgba(255,255,255,0.00) 40%,
      rgba(0,0,0,0.35) 60%,
      rgba(255,255,255,0.02) 100%
    ),
    repeating-linear-gradient(-35deg,
      rgba(255,255,255,0.022) 0px,
      rgba(255,255,255,0.022) 2px,
      rgba(0,0,0,0.18) 3px,
      rgba(0,0,0,0.18) 6px
    ),
    radial-gradient(circle at 30% 20%, #1a1b1f, #07080b 55%, var(--bg0) 100%);
  color: var(--text);
}

/* Global readability */
p,li{ color: var(--text); }
.section-sub,.simple-sub,.strip-text,.note-text,.card-meta{ color: var(--muted); }

/* Panels: unify everywhere */
.card,
.step,
.why-item,
.contact-card,
.text-block,
.hero-side-card,
.strip-item{
  background:
    linear-gradient(135deg, rgba(255,255,255,0.03), rgba(0,0,0,0.20)),
    radial-gradient(circle at top left, rgba(255,255,255,0.06), rgba(12,14,18,0.96));
  border: 1px solid var(--stroke);
  box-shadow: 0 18px 40px var(--shadow);
}

/* Buttons: unify everywhere */
.btn-primary{
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #fff;
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.7),
    0 14px 34px rgba(0,0,0,0.9);
}
.btn-ghost{
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--stroke);
  color: rgba(255,255,255,0.90);
}
.btn-ghost:hover{ background: rgba(255,255,255,0.05); }

/* Links */
a{ color: rgba(255,255,255,0.90); }
a:hover{ color: #fff; }

/* Top bars */
.topbar,.top-nav{
  background: rgba(5,6,10,0.92);
  border-bottom: 1px solid var(--stroke);
}

/* Footer */
footer,.simple-footer{
  background: rgba(5,6,10,0.92);
  border-top: 1px solid var(--stroke);
}

/* Reduce extra grain overlay so brush texture reads */
body::after{ opacity: 0.08; }

/* ===========================
   Homepage ONLY: RWB feature tiles
   Use: .strip-item.tile-red / tile-white / tile-blue
=========================== */
.strip-item.tile-red,
.strip-item.tile-white,
.strip-item.tile-blue{
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow:
    0 2px 0 rgba(0,0,0,0.9),
    0 18px 40px rgba(0,0,0,0.85);
  position: relative;
  overflow: hidden;
}
.strip-item.tile-red::before,
.strip-item.tile-white::before,
.strip-item.tile-blue::before{
  content:"";
  position:absolute;
  inset:-40% -30%;
  transform: rotate(12deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  opacity:0.55;
  pointer-events:none;
}
.strip-item.tile-red{
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.14), transparent 45%),
    linear-gradient(135deg, rgba(255,64,64,0.95), rgba(140,12,18,0.95));
  border-color: rgba(255,120,120,0.35);
}
.strip-item.tile-red .strip-title,
.strip-item.tile-red .strip-text,
.strip-item.tile-red .strip-link{ color: rgba(255,255,255,0.96); }

.strip-item.tile-white{
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.92), rgba(245,245,245,0.92)),
    linear-gradient(135deg, rgba(250,250,250,0.92), rgba(210,210,210,0.92));
  border-color: rgba(255,255,255,0.24);
}
.strip-item.tile-white .strip-title,
.strip-item.tile-white .strip-text,
.strip-item.tile-white .strip-link{ color: rgba(20,22,28,0.92); }

.strip-item.tile-blue{
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.12), transparent 45%),
    linear-gradient(135deg, rgba(64,110,255,0.92), rgba(6,26,92,0.94));
  border-color: rgba(140,170,255,0.35);
}
.strip-item.tile-blue .strip-title,
.strip-item.tile-blue .strip-text,
.strip-item.tile-blue .strip-link{ color: rgba(255,255,255,0.96); }

.strip-item.tile-red:hover,
.strip-item.tile-white:hover,
.strip-item.tile-blue:hover{
  transform: translateY(-2px);
  transition: transform 0.15s ease, filter 0.15s ease;
  filter: brightness(1.03);
}



/* ===========================
   Sitewide Color Accents (RWB)
   Subtle: adds life to all pages
=========================== */
:root{
  --rwb-red: #ff3d3d;
  --rwb-white: #f4f6fb;
  --rwb-blue: #3f7bff;

  /* subtle glows */
  --glow-red: rgba(255, 61, 61, 0.14);
  --glow-blue: rgba(63, 123, 255, 0.14);
}

/* Add a faint color wash so pages don't feel monochrome */
main::before{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events:none;
  z-index: -1;
  background:
    radial-gradient(circle at 10% 18%, var(--glow-red), transparent 42%),
    radial-gradient(circle at 88% 72%, var(--glow-blue), transparent 45%);
  opacity: 0.75;
}

/* Section headings get an RWB underline */
h2, .section-title{
  position: relative;
}
h2::after, .section-title::after{
  content:"";
  display:block;
  height: 3px;
  width: 84px;
  margin-top: 0.45rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--rwb-red), var(--rwb-white), var(--rwb-blue));
  opacity: 0.9;
}

/* Cards/panels get a subtle colored top edge */
.card::before,
.step::before,
.why-item::before,
.contact-card::before,
.text-block::before,
.strip-item::before{
  content:"";
  position:absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(255,61,61,0.65), rgba(244,246,251,0.38), rgba(63,123,255,0.65));
  opacity: 0.55;
}
.card,
.step,
.why-item,
.contact-card,
.text-block,
.strip-item{
  position: relative; /* ensure ::before anchors correctly */
}

/* Nav active/hover gets a little color */
.nav-desktop a:hover,
.nav-mobile a:hover{
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.10), 0 0 18px rgba(63,123,255,0.10);
}
.nav-desktop .nav-active,
.nav-mobile .nav-active{
  background: rgba(255,255,255,0.04);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.12),
    0 0 20px rgba(255,61,61,0.10);
}

/* Links get a small color hint (still mostly white) */
a{
  text-decoration-color: rgba(63,123,255,0.35);
}
a:hover{
  text-decoration-color: rgba(255,61,61,0.45);
}

/* Buttons keep brand accent; add faint blue rim for depth */
.btn-primary{
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.7),
    0 14px 34px rgba(0,0,0,0.9),
    0 0 22px rgba(63,123,255,0.16);
}

/* Product-spec lists / callouts (if present) feel less flat */
ul li::marker{
  color: rgba(255,61,61,0.75);
}



/* ===========================
   Global Red CTAs
   Browse / Contact / View Details
=========================== */

/* Force all primary action buttons to brand red */
.btn-primary,
a.btn-primary,
button.btn-primary {
  background: linear-gradient(135deg, #ff3b30, #ff6a55) !important;
  color: #ffffff !important;
  border: none !important;
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.7),
    0 14px 34px rgba(0,0,0,0.9),
    0 0 24px rgba(255, 59, 48, 0.35) !important;
}

/* Any pill-style CTA buttons */
.nav-cta a,
.strip-link.btn,
.card-actions .btn {
  background: linear-gradient(135deg, #ff3b30, #ff6a55);
  color: #ffffff;
}

/* Explicit labels used across pages */
a[href*="products"],
a[href*="contact"],
a[href*="Details"],
a:has(span:contains("View")) {
  --cta-red: true;
}

/* View Details buttons specifically */
a[href*="View"],
a[href*="Details"],
.card a.btn,
.card a.btn-small {
  background: linear-gradient(135deg, #ff3b30, #ff6a55);
  color: #ffffff;
  border-radius: 999px;
}

/* Hover state */
.btn-primary:hover,
.card a.btn:hover,
.card a.btn-small:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

/* Ghost buttons remain secondary */
.btn-ghost {
  background: rgba(255,255,255,0.04) !important;
  color: rgba(255,255,255,0.85) !important;
  box-shadow: none !important;
}



/* ===========================
   Dark Red CTA Correction
   Less orange, more blood red
=========================== */

:root {
  --cta-red-dark: #b11217;
  --cta-red-mid:  #d0181f;
  --cta-red-glow: rgba(208, 24, 31, 0.35);
}

/* Override ALL primary CTAs */
.btn-primary,
a.btn-primary,
button.btn-primary,
.card a.btn,
.card a.btn-small,
.nav-cta a {
  background: linear-gradient(135deg, var(--cta-red-dark), var(--cta-red-mid)) !important;
  color: #ffffff !important;
  text-shadow: 0 1px 0 rgba(0,0,0,0.55);
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.75),
    0 14px 32px rgba(0,0,0,0.85),
    0 0 18px var(--cta-red-glow) !important;
}

/* Hover state: slightly brighter, not orange */
.btn-primary:hover,
.card a.btn:hover,
.card a.btn-small:hover,
.nav-cta a:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

/* Active press */
.btn-primary:active,
.card a.btn:active,
.card a.btn-small:active {
  filter: brightness(0.95);
  transform: translateY(0);
}



/* ===========================
   Tech Corner: Ask a Question = Blue
   (only that button)
=========================== */

/* Top-right Ask a Question button */
.top-nav .btn-ask,
.top-nav a.ask-question,
.top-nav a[href*="ask"] {
  background: linear-gradient(135deg, #1e4ed8, #2563eb) !important;
  color: #ffffff !important;
  text-shadow: 0 1px 0 rgba(0,0,0,0.55);
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.75),
    0 14px 32px rgba(0,0,0,0.85),
    0 0 18px rgba(37,99,235,0.35) !important;
}

/* Hover */
.top-nav .btn-ask:hover,
.top-nav a.ask-question:hover {
  filter: brightness(1.06);
}
