:root {
  /* Primary Foundation */
  --bg-dark: #111111;        /* Deep Charcoal */
  --bg-section: #1A1A1A;     /* Soft Charcoal */
  --card-bg: #1A1A1A;        /* Cards use soft charcoal */
  --border-soft: #2A2A2A;    /* Subtle border contrast */

  /* Accent */
  --accent-blue: #00AEEF;    /* Electric Blue */
  --accent-blue-hover: #0095CC;

  /* Text */
  --text-main: #FFFFFF;      /* Text on dark */
  --text-primary: #111111;   /* Text on white */
  --text-secondary: #555555; /* Secondary text */
  --text-muted: #555555;

  /* Utility */
  --light-gray: #F5F5F5;
  --max-width: 1100px;
}

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

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", "Helvetica Neue", sans-serif;
  background: var(--bg-dark);
  color: var(--text-main);
}

a {
  color: var(--accent-blue);
  text-decoration: none;
}

a:hover {
  opacity: 0.8;
}

/* =======================================
   HOLOGRAM BOX LOGO
   Used in header fallback: .hbd-logo
   ======================================= */


.hbd-logo {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  max-width: 250px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.95rem;
  color: var(--text-main);
  white-space: nowrap;
}

.hbd-line {
  display: block;
  text-align: left;
  
}

.hbd-letter {
  display: inline-block;
  position: relative;
}

/* Special glowing "O" in BOX */
.hbd-o-glow {
  position: relative;
  display: inline-block;
}

.hbd-o-glow span {
  position: relative;
  z-index: 1;
  color: var(--accent-blue);
}

.hbd-o-glow::before {
  content: "";
  position: absolute;
  inset: -0.25em;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 174, 239, 0.7), transparent 60%);
  opacity: 0.85;
  filter: blur(3px);
}

/* Banner Logo */
.hbd-banner {
  width: 100%;
  text-align: center;
  background-color: var(--bg-section);
  padding: 10px 0;
}

.hbd-banner img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

/* =======================================
   Layout
   ======================================= */

.site-header {
  background: var(--bg-dark);
  border-bottom: 1px solid var(--border-soft);
  position: sticky;
  top: 0;
  z-index: 20;
}

.site-header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-branding a {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
}

.site-nav a {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.site-nav a:hover,
.site-nav .current-menu-item > a {
  color: var(--accent-blue);
}

.site-footer {
  border-top: 1px solid var(--border-soft);
  background: var(--bg-dark);
  padding: 40px 20px;
  margin-top: 60px;
}

.site-footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-resources-accordion {
  width: 100%;
  max-width: 320px;
  font-family: inherit;
}

/* Container styling */
.footer-resources-accordion details {
  background: transparent;
}

/* Header */
.footer-resources-accordion summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: 5px 30px 10px 0;
  font-size: 0.7rem;
  font-weight: 400;
  color: #00AEEF;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  user-select: none;
  transition: color 0.2s ease;
}

.footer-resources-accordion summary::-webkit-details-marker {
  display: none;
}

/* Blue accent on hover */
.footer-resources-accordion summary:hover {
  color: #00AEEF;
}


.footer-resources-accordion details[open] summary::after {
  content: "–";
}

/* List */
.footer-resources-list {
  margin: 0;
  padding: 0 0 5px 0;
  list-style: none;
}

/* Items */
.footer-resources-list li {
  margin: 0;
}

/* Links */
.footer-resources-list a {
  display: block;
  padding: 5px 0;
  color: #00AEEF;
  text-decoration: none;
  font-size: 0.5rem;
  letter-spacing: 0.3px;
  transition: all 0.25s ease;
  border-left: 2px solid transparent;
}

/* Hover = glow + slide */
.footer-resources-list a:hover {
  color: #00AEEF;
  padding-left: 2px;
  border-left: 2px solid #00AEEF;
}

/* Focus accessibility */
.footer-resources-accordion summary:focus,
.footer-resources-list a:focus {
  
}

.site-main {
  min-height: 60vh;
}

/* Generic sections */

section {
  padding: 0px 20px;
  max-width: var(--max-width);
  margin: 0 auto;
  line-height: 1.7;
}

.section-title {
  font-size: 6pt;
  margin-bottom: 8px;
  color: var(--bg-dark);
}

.section-intro {
  color: var(--text-muted);
  max-width: 720px;
  margin-bottom: 32px;
}

/* Retail Page */

.hbd-use-cases {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 15px;
}

.hbd-use-cases h2 {
  text-align: center;
  margin-bottom: 30px;
}

.hbd-use-case {
  margin-bottom: 25px;
}

.hbd-use-case h3 {
  margin-bottom: 8px;
}

/* =======================================
   Hero
   ======================================= */

.hero {
  padding: 140px 20px 100px;
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(50px);
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-main);
}

.hero-subtitle {
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 24px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.15em;
  color: var(--accent-blue);
  margin-bottom: 12px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
  margin-bottom: 18px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-meta span {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
}

.hero-visual {
  position: relative;
}

.glow-orbit {
  position: absolute;
  inset: 10%;
  border-radius: 999px;
  background: radial-gradient(circle at 20% 0, rgba(0, 174, 239,0.35), transparent 55%);
  filter: blur(6px);
}

.hero-card {
  position: relative;
  background: var(--card-bg);
  border-radius: 18px;
  padding: 14px;
  border: 1px solid var(--border-soft);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.55);
}

.hero-card img {
  display: block;
  width: 100%;
  border-radius: 12px;
}

.hero-tag {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

/* =======================================
   Buttons
   ======================================= */

.btn-primary,
.btn.btn-primary {
  display: inline-block;
  border: 1px solid var(--border-soft);
  padding: 12px 26px;
  border-radius: 6px;
  font-weight: 500;
  background: var(--accent-blue);
  color: #111111;
}

.btn-primary:hover,
.btn.btn-primary:hover {
  background: var(--accent-blue-hover);
  transform: translateY(-1px);
}

.btn-ghost,
.btn.btn-ghost {
  display: inline-block;
  border: 1px solid var(--border-soft);
  color: var(--text-muted);
  padding: 12px 26px;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease, transform 0.15s ease;
}

.btn-ghost:hover,
.btn.btn-ghost:hover {
  background: rgba(255,255,255,0.04);
  color: var(--accent-blue);
  transform: translateY(-1px);
}

/* =======================================
   Cards & grids
   ======================================= */

.card {
  background: var(--card-bg);
  border-radius: 16px;
  border: 1px solid var(--border-soft);
  padding: 20px 20px 22px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent-blue);
}

/* Packages */

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

.package {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.package-title {
  font-size: 1.3rem;
}

.package-tagline {
  color: var(--text-muted);
  font-size: 0.98rem;
  margin-bottom: 12px;
}

/* special star bullet */
.special-star ul {
  list-style: none;
  margin: 0 0 0.9rem;
  padding-left: 0;
}

.special-star li {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
  position: relative;
  padding-left: 1.3rem;
}

.special-star li::before {
  content: "\2727";
  position: absolute;
  left: 0;
  top: 0.15rem;
  color: var(--accent-yellow);
  font-size: 0.9rem;
}

/* star bullets */
.packages-grid ul {
  list-style: none;
  margin: 0 0 0.9rem;
  padding-left: 0;
}

.packages-grid li {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
  position: relative;
  padding-left: 1.3rem;
}

.packages-grid li::before {
  content: "\2727";
  position: absolute;
  left: 0;
  top: 0.15rem;
  color: var(--accent-blue);
  font-size: 0.9rem;
}

.package-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.package.highlight {
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 1px rgba(0, 174, 239,0.3);
}

/* Gallery */

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

.gallery-item {
  background: var(--card-bg);
  border-radius: 16px;
  border: 1px solid var(--border-soft);
  overflow: hidden;
}

.gallery-item img {
  display: block;
  width: 100%;
}

.gallery-caption {
  padding: 12px 14px 14px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* FAQ */

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

/* Contact */

.contact-card {
  background: var(--card-bg);
  border-radius: 20px;
  border: 1px solid var(--border-soft);
  padding: 26px 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 24px;
}

.contact-meta {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: grid;
  gap: 8px;
}

.contact-meta span {
  font-weight: 600;
}

/* Inner landing footer */

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 22px 20px 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
}

/* Page templates */

.page-template-page-special .hero-special {
  background: radial-gradient(circle at top, rgba(0, 174, 239, 0.18), transparent 55%);
}

.page-template-page-retail .hero-retail {
  background: radial-gradient(circle at top, rgba(0, 174, 239, 0.16), transparent 55%);
}

.page-template-page-retail .hero-retail ul {
  list-style: none;
  padding: 0;
  margin: 18px auto 26px;
  max-width: 640px;
}

.page-template-page-retail .hero-retail li {
  font-size: 1.05rem;
}

/* Widgets */

.widget-area {
  padding: 40px 20px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.widget {
  margin-bottom: 30px;
}

.widget-title {
  font-weight: 600;
  margin-bottom: 8px;
}

/* =======================================
   Responsive
   ======================================= */

@media (max-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-visual {
    order: -1;
  }

  .contact-card {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  section {
    padding: 0px 20px;
  }
}

/* =======================================
   Gutenberg alignment support
   ======================================= */

.entry-content > * {
  margin-left: auto;
  margin-right: auto;
  max-width: 1100px;
}

.entry-content > *.alignwide {
  max-width: 1400px;
}

.entry-content > *.alignfull {
  max-width: none;
  width: 100%;
}

.entry-content .wp-block-image img,
.entry-content .wp-block-cover,
.entry-content .wp-block-group,
.entry-content .wp-block-columns {
  box-sizing: border-box;
}

/* =======================================
   Card blue glow (scoped)
   ======================================= */

.hb-card{
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 174, 239, 0.10);
  box-shadow:
    0 10px 28px rgba(0,0,0,0.65),
    0 0 0 1px rgba(255,255,255,0.02) inset,
    0 0 24px rgba(0,174,239,0.10);
}

.hb-card::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background: radial-gradient(
    1200px 400px at 20% 0%,
    rgba(0,174,239,0.12),
    rgba(0,174,239,0.00) 60%
  );
}

.hb-card:hover{
  border-color: rgba(0, 174, 239, 0.22);
  box-shadow:
    0 16px 40px rgba(0,0,0,0.75),
    0 0 0 1px rgba(255,255,255,0.02) inset,
    0 0 34px rgba(0,174,239,0.14);
  transform: translateY(-4px);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

/* =========================================================
   HEADER + MOBILE NAV + CONVERSION CTA
   Clean desktop layout + mobile-safe stacking
   Matches header.php:
   - logo/branding first
   - hamburger button aria-controls="hb-primary-menu"
   - nav id="hb-primary-menu" class="site-nav"
   - CTA link class="hbd-header-cta"
   ========================================================= */

.site-header {
  background: rgba(17, 17, 17, 0.94);
  border-bottom: 1px solid rgba(42, 42, 42, 0.95);
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.site-header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 22px;
}

.site-branding {
  flex: 0 0 auto;
  min-width: 0;
}

.site-branding a {
  display: inline-flex;
  align-items: center;
}

.site-branding img,
.custom-logo {
  display: block;
  width: auto;
  max-width: 250px;
  max-height: 58px;
}

.site-nav {
  margin-left: auto;
  flex: 0 1 auto;
}

.site-nav ul,
.primary-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 2vw, 24px);
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.2;
  transition: color 0.22s ease, opacity 0.22s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  background: var(--accent-blue);
  transform: scaleX(0);
  transform-origin: center;
  opacity: 0;
  box-shadow: 0 0 10px rgba(0, 174, 239, 0.7);
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.site-nav a:hover,
.site-nav a:focus,
.site-nav .current-menu-item > a {
  color: #FFFFFF;
  opacity: 1;
}

.site-nav a:hover::after,
.site-nav a:focus::after,
.site-nav .current-menu-item > a::after {
  transform: scaleX(1);
  opacity: 1;
}

.hbd-header-cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 11px 20px;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-blue-hover));
  color: #FFFFFF !important;
  text-decoration: none;
  border: 1px solid rgba(0, 174, 239, 0.9);
  border-radius: 16px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
  opacity: 1;
  box-shadow:
    0 0 10px rgba(0, 174, 239, 0.58),
    0 0 26px rgba(0, 174, 239, 0.28),
    inset 0 0 10px rgba(255, 255, 255, 0.18);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.hbd-header-cta:hover,
.hbd-header-cta:focus {
  color: #FFFFFF !important;
  opacity: 1;
  background: linear-gradient(135deg, #16c8ff, var(--accent-blue));
  border-color: rgba(22, 200, 255, 1);
  transform: translateY(-1px);
  box-shadow:
    0 0 14px rgba(0, 174, 239, 0.9),
    0 0 36px rgba(0, 174, 239, 0.5),
    0 0 64px rgba(0, 174, 239, 0.22),
    inset 0 0 12px rgba(255, 255, 255, 0.26);
}

.hbd-header-cta:active {
  transform: translateY(0);
}

.hb-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.035);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  line-height: 1;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.hb-nav-toggle:hover,
.hb-nav-toggle:focus {
  background: rgba(0, 174, 239, 0.08);
  border-color: rgba(0, 174, 239, 0.48);
  box-shadow: 0 0 18px rgba(0, 174, 239, 0.18);
}

.hb-nav-toggle__icon,
.hb-nav-toggle__icon::before,
.hb-nav-toggle__icon::after {
  display: block;
  width: 18px;
  height: 2px;
  background: #FFFFFF;
  border-radius: 999px;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.hb-nav-toggle__icon {
  position: relative;
}

.hb-nav-toggle__icon::before,
.hb-nav-toggle__icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.hb-nav-toggle__icon::before {
  top: -6px;
}

.hb-nav-toggle__icon::after {
  top: 6px;
}

.hb-nav-toggle[aria-expanded="true"] .hb-nav-toggle__icon {
  background: transparent;
}

.hb-nav-toggle[aria-expanded="true"] .hb-nav-toggle__icon::before {
  transform: translateY(6px) rotate(45deg);
}

.hb-nav-toggle[aria-expanded="true"] .hb-nav-toggle__icon::after {
  transform: translateY(-6px) rotate(-45deg);
}

.hb-nav-toggle__label {
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.02em;
}

@media (max-width: 980px) {
  .site-header-inner {
    gap: 14px;
  }

  .site-nav ul,
  .primary-menu {
    gap: 14px;
  }

  .site-nav a {
    font-size: 0.84rem;
  }

  .hbd-header-cta {
    padding: 10px 16px;
    font-size: 0.84rem;
  }
}

@media (max-width: 900px) {
  .site-header-inner {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px 12px;
    padding: 12px 18px;
  }

  .site-branding {
    order: 1;
    max-width: calc(100% - 68px);
  }

  .site-branding img,
  .custom-logo {
    max-width: 220px;
    max-height: 52px;
  }

  .hbd-logo {
    max-width: 220px;
    font-size: 0.82rem;
    letter-spacing: 0.2em;
  }

  .hb-nav-toggle {
    display: inline-flex !important;
    order: 2;
    margin-left: auto;
  }

  .hbd-header-cta {
    order: 3;
    width: 100%;
    min-height: 44px;
    margin: 2px 0 0;
    padding: 12px 18px;
    font-size: 0.9rem;
  }

  #hb-primary-menu {
    order: 4;
    width: 100%;
    flex: 0 0 100%;
    margin: 4px 0 0;
    padding: 12px 0 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: none;
  }

  #hb-primary-menu.is-open {
    display: block;
  }

  #hb-primary-menu ul,
  #hb-primary-menu .primary-menu {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
  }

  #hb-primary-menu li {
    width: 100%;
  }

  #hb-primary-menu a {
    width: 100%;
    padding: 12px 2px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95rem;
  }

  #hb-primary-menu a::after {
    display: none;
  }
}

@media (max-width: 480px) {
  .site-header-inner {
    padding: 12px 14px;
  }

  .site-branding img,
  .custom-logo {
    max-width: 190px;
    max-height: 48px;
  }

  .hbd-logo {
    max-width: 190px;
    font-size: 0.72rem;
    letter-spacing: 0.17em;
  }

  .hb-nav-toggle {
    min-height: 40px;
    padding: 9px 11px;
  }

  .hb-nav-toggle__label {
    display: none;
  }

  .hbd-header-cta {
    min-height: 42px;
    padding: 11px 14px;
    font-size: 0.82rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-nav a,
  .site-nav a::after,
  .hbd-header-cta,
  .hb-nav-toggle,
  .hb-nav-toggle__icon,
  .hb-nav-toggle__icon::before,
  .hb-nav-toggle__icon::after {
    transition: none;
  }
}

