/* =========================
   BASE / RESET
========================= */

*,
*::before,
*::after { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
}

:root{
  --bg0: #0b0f14;
  --bg1: #06080c;
  --card: rgba(18, 24, 33, 0.85);
  --card2: rgba(15, 20, 28, 0.85);
  --border: rgba(255,255,255,0.07);
  --border2: rgba(255,255,255,0.12);
  --text: #ffffff;
  --muted: rgba(255,255,255,0.72);
  --muted2: rgba(255,255,255,0.60);
  --accentA: #2563eb;
  --accentB: #1e40af;
}

body{
  font-family: "Roboto", system-ui, -apple-system, sans-serif;
  background-color: var(--bg0);
  color: var(--text);
  line-height: 1.4;
  overflow-x: hidden;
}

/* =========================
   BUTTON-LIKE LINK RESET
========================= */

a.btnItem,
a.aboutBlurbBtn,
a.stickyBtn,
a.stickyLink{
  text-decoration: none;
  color: inherit;
}

a.btnItem:visited,
a.aboutBlurbBtn:visited,
a.stickyBtn:visited,
a.stickyLink:visited{
  color: inherit;
}

a.btnItem:focus,
a.btnItem:focus-visible,
a.aboutBlurbBtn:focus,
a.aboutBlurbBtn:focus-visible,
a.stickyBtn:focus,
a.stickyBtn:focus-visible,
a.stickyLink:focus,
a.stickyLink:focus-visible{
  outline: none;
}

/* Subtle texture + vignette */
body::before{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top, rgba(26,35,48,0.95), rgba(6,8,12,0.92)),
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,0.035) 0px,
      rgba(255,255,255,0.035) 1px,
      rgba(255,255,255,0.0) 1px,
      rgba(255,255,255,0.0) 14px
    );
  opacity: 0.35;
  mix-blend-mode: overlay;
}

/* =========================
   HERO
========================= */

.hero{
  min-height: 22vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem 1.25rem;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.55), rgba(0,0,0,0.9)),
    radial-gradient(circle at top, #1a2330, #06080c);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

.heroInner{
  width: 100%;
  max-width: 640px;
  text-align: center;
}

.kicker{
  margin: 0 0 0.35rem;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.78;
}

.bizName{
  font-family: "Bruno Ace SC", sans-serif;
  font-size: clamp(2rem, 8vw, 2.75rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
}

.tagline{
  margin: 0.7rem auto 0;
  max-width: 36ch;
  font-size: 1rem;
  color: var(--muted);
}

.statusStrip{
  margin: 2rem auto 0rem auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.6rem;
  align-items: center;
  justify-content: center;
}

.statusPill{
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  background: rgba(0,0,0,0.25);
  color: rgba(255,255,255,0.85);
}

.statusDot{
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,0.35);
}

/* =========================
   PAGE LAYOUT
========================= */

.page{
  position: relative;
  z-index: 1;
  padding: 1.25rem 1rem 6.5rem; /* leave room for sticky bar */
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

/* =========================
   CARDS
========================= */

.card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.cardHead{
  padding: 1.05rem 1.1rem 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.0));
}

.cardTitle{
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.cardHint{
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted2);
}

/* =========================
   LIST-ITEM BUTTONS (LINKS)
========================= */

.list{
  display: flex;
  flex-direction: column;
}

.btnItem{
  display: grid;
  grid-template-columns: 44px 1fr 22px;
  align-items: center;
  gap: 0.85rem;
  padding: 0.95rem 1.05rem;
  text-decoration: none;
  color: var(--text);

  border-top: none;
  background: linear-gradient(180deg, rgba(30,39,53,0.45), rgba(18,24,33,0.25));

  transition: transform 0.15s ease, background 0.15s ease;
}

.btnItem:focus-visible {
  outline: 2px solid rgba(37,99,235,0.35);
  outline-offset: 2px;
}



.btnItem:active{
  transform: scale(0.99);
  background: linear-gradient(180deg, rgba(30,39,53,0.6), rgba(18,24,33,0.38));
}

.btnText{
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  min-width: 0;
}

.btnTitle{
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.95rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.btnDesc{
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.25;
}

/* Icon + chevron styling */
.icon, .chev{
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.22);
}

.icon img{
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
}


.icon svg, .chev svg{
  width: 22px;
  height: 22px;
  stroke: rgba(255,255,255,0.85);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.chev svg{
  width: 18px;
  height: 18px;
  stroke: rgba(255,255,255,0.55);
}

/* Secondary list items (slightly flatter) */
.btnItem.isSecondary{
  background: linear-gradient(180deg, rgba(18,24,33,0.35), rgba(15,20,28,0.22));
}

/* =========================
   FOOTER
========================= */

.footer{
  padding: 0.5rem 0 0;
}

.footerLine{
  margin: 0.5rem 0 0;
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* =========================
   STICKY CTA BAR
========================= */

.stickyBar{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;

  padding: 0.75rem 0.9rem calc(0.75rem + env(safe-area-inset-bottom));
  background: rgba(8, 10, 14, 0.75);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,0.10);

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.stickyBtn{
  text-decoration: none;
  color: var(--text);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.18);
  background: linear-gradient(180deg, var(--accentA), var(--accentB));
  min-height: 56px;

  padding: 0.65rem 0.8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.1rem;

  box-shadow: 0 10px 24px rgba(0,0,0,0.35);
  transition: transform 0.15s ease;
}

.stickyBtn:active{
  transform: scale(0.98);
}

.stickyBtn.isAlt{
  background: linear-gradient(180deg, rgba(30,39,53,0.9), rgba(18,24,33,0.9));
  border-color: rgba(255,255,255,0.15);
}

.stickyTitle{
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.92rem;
}

.stickyMeta{
  font-size: 0.78rem;
  color: rgba(255,255,255,0.80);
}

/* =========================
   MOTION (TASTEful)
========================= */

.reveal{
  animation: riseIn 320ms ease both;
}

.reveal:nth-of-type(1){ animation-delay: 60ms; }
.reveal:nth-of-type(2){ animation-delay: 120ms; }

@keyframes riseIn{
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce){
  .reveal{ animation: none; }
  .btnItem, .stickyBtn{ transition: none; }
}

/* =========================
   TABLET+
========================= */

@media (min-width: 768px){
  .hero{ min-height: 36vh; padding: 2.25rem 1rem 1.75rem; }
  .page{ padding-bottom: 7rem; }
}

.hero--hex{
  position: relative;
  overflow: hidden;

  /* Your Illustrator SVG */
  background-image: url("img/hero-bg.svg");
  background-repeat: no-repeat;   /* tile it */
  background-size: cover;      /* controls scale */
  background-position: center;
}

.hero--hex .heroInner{
  position: relative;
  z-index: 2;
}

/* =========================
   ABOUT BLURB (TOP SECTION)
========================= */

#about-blurb{
  position: relative;
  z-index: 1; /* stays above body::before texture */
  max-width: 760px;
  margin: 1rem auto 0;
  padding: 0 1rem;
}

.aboutBlurbInner{
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;

  padding: 1.05rem 1.1rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(30,39,53,0.35), rgba(18,24,33,0.22));
  box-shadow: 0 8px 24px rgba(0,0,0,0.20);
}

.aboutBlurbTitle{
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.aboutBlurbText{
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.35;
  max-width: 60ch;
}

.aboutBlurbCta{
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
}

.aboutBlurbBtn{
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;
  color: var(--text);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;

  padding: 0.75rem 0.9rem;

  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.22);

  background: rgba(255,255,255,0.04);

  transition: transform 0.15s ease,
              background 0.15s ease,
              border-color 0.15s ease;
  
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

.aboutBlurbBtn:hover{
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.32);
}

.aboutBlurbBtn:active{
  transform: scale(0.98);
}

@media (min-width: 768px){
  #about-blurb{ margin-top: 1.25rem; }

  .aboutBlurbInner{
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 1.25rem;
  }
}

/* =====================================================
   GLOBAL SPACING SYSTEM
===================================================== */

:root{
  --space-xs: 0.5rem;
  --space-sm: 0.9rem;
  --space-md: 1.4rem;
  --space-lg: 2.2rem;
  --space-xl: 3rem;
}


/* =====================================================
   SECTION SPACING
===================================================== */

main > section{
  margin-top: var(--space-lg);
}

main > section:first-of-type{
  margin-top: var(--space-md);
}


/* =====================================================
   HERO SPACING
===================================================== */

.hero{
  margin-bottom: var(--space-lg);
}


/* =====================================================
   ABOUT BLURB SPACING
===================================================== */

#about-blurb{
  margin-top: var(--space-md);
  margin-bottom: var(--space-lg);
}


/* =====================================================
   LIST / CARD STACK SPACING
===================================================== */

.list{
  margin-top: var(--space-md);
}

.btnItem{
  margin-bottom: var(--space-sm);
}

.btnItem:last-child{
  margin-bottom: 0;
}


/* =====================================================
   MOBILE BREATHING ROOM
===================================================== */

main{
  padding-left: 1rem;
  padding-right: 1rem;
}


/* =====================================================
   OPTIONAL SECTION DIVIDERS
===================================================== */

main > section:not(:first-of-type){
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: var(--space-lg);
}


/* =====================================================
   HERO POLISH
===================================================== */

.hero{
  position: relative;
  overflow: hidden;
  
  border: 1px solid rgba(255,255,255,0.10);
  background: radial-gradient(900px 380px at 12% 10%, rgba(37,99,235,0.22), rgba(0,0,0,0) 60%),
              linear-gradient(180deg, rgba(30,39,53,0.40), rgba(18,24,33,0.20));
  box-shadow: 0 18px 48px rgba(0,0,0,0.30);
}

/* subtle glow */

.hero::before{
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(600px 240px at 20% 25%, rgba(37,99,235,0.18), rgba(0,0,0,0) 60%);
  pointer-events: none;
}

.hero > *{
  position: relative;
  z-index: 1;
}


/* HERO CONTENT */

.hero .heroContent{
  max-width: 820px;
  margin: 0 auto;
  padding: 2.2rem 1.25rem;
}


/* HERO TITLE */

.hero h1{
  font-size: clamp(1.6rem, 3.2vw, 2.35rem);
  line-height: 1.05;
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}


/* HERO SUBTEXT */

.hero p{
  font-size: clamp(0.98rem, 1.4vw, 1.08rem);
  line-height: 1.45;
  color: var(--muted);
  max-width: 60ch;
  margin-bottom: 1.15rem;
}


/* HERO CTA ROW */

.hero .heroCtas{
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}


/* HERO BUTTON POLISH */

.hero .heroCtas a,
.hero .heroCtas button{
  border-radius: 12px;
  padding: 0.8rem 1.05rem;
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 14px 28px rgba(0,0,0,0.30);
  transition: transform 0.15s ease, filter 0.15s ease;
}

.hero .heroCtas a:active,
.hero .heroCtas button:active{
  transform: scale(0.985);
}


/* DESKTOP HERO BREATHING ROOM */

@media (min-width: 768px){
  .hero .heroContent{
    padding: 2.65rem 1.8rem;
  }
}

/* Sticky CTA on inner pages (matches your index vibe) */
  .stickyBarInner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 6;
  
    padding: 0.75rem 0.9rem calc(0.75rem + env(safe-area-inset-bottom));
    background: rgba(8, 10, 14, 0.75);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,255,255,0.10);
  
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
  
  .stickyLink {
    text-decoration: none;
    color: #fff;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.18);
    min-height: 56px;
  
    padding: 0.65rem 0.8rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.1rem;
  
    box-shadow: 0 10px 24px rgba(0,0,0,0.35);
  }
  
  .stickyLinkPrimary {
    background: linear-gradient(180deg, #2563eb, #1e40af);
  }
  
  .stickyLinkAlt {
    background: linear-gradient(180deg, rgba(30,39,53,0.9), rgba(18,24,33,0.9));
    border-color: rgba(255,255,255,0.15);
  }
  
  .stickyTop {
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 0.92rem;
  }
  
  .stickyBottom {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.80);
  }