/* NW Rot Repair — billboard-friendly single page */

:root{
  --bg: #0b0f14;
  --panel: rgba(255,255,255,.06);
  --panel-2: rgba(255,255,255,.09);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.70);
  --muted2: rgba(255,255,255,.58);
  --line: rgba(255,255,255,.12);
  --shadow: 0 10px 30px rgba(0,0,0,.35);
  --radius: 18px;
  --radius2: 24px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }


body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.45;
  position: relative;
}

/* body::before{
  content:"";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;

  background:
    radial-gradient(900px 600px at 15% 0%, rgba(255,255,255,.08), transparent 60%),
    radial-gradient(900px 600px at 90% 30%, rgba(255,255,255,.06), transparent 60%);
} */


/* Dedicated fixed background layer (mobile-safe) */
.bg-layer{
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;

  background:
    radial-gradient(900px 600px at 15% 0%, rgba(255,255,255,.08), transparent 60%),
    radial-gradient(900px 600px at 90% 30%, rgba(255,255,255,.06), transparent 60%);

  /* Helps mobile browsers keep this stable */
  transform: translateZ(0);
  will-change: transform;
}

/* Ensure all the actual page UI renders above the background */
.site-header,
main,
.site-footer,
.sticky-bar{
  position: relative;
  z-index: 1;
}

a{ color: inherit; text-decoration: none; }
img{ max-width:100%; display:block; }

.container{
  width:min(1120px, calc(100% - 48px));
  margin:0 auto;
}

.skip{
  position:absolute;
  left:-999px;
  top: 8px;
  padding:10px 12px;
  background: #fff;
  color:#000;
  border-radius: 10px;
  z-index: 9999;
}
.skip:focus{ left: 12px; }

/* HEADER */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(11,15,20,.72);
  border-bottom: 1px solid var(--line);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 0;
  gap: 16px;
}

.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  min-width: 220px;
}

/* Mark kept here in case you uncomment it later */
/*
.mark{
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.16), rgba(255,255,255,.06));
  border: 1px solid var(--line);
  box-shadow: 0 8px 20px rgba(0,0,0,.20);
}
*/

.brand-name{
  font-weight: 700;
  letter-spacing: .2px;
  /* Optional bump if you want it more present on desktop:
     font-size: 1.125rem;
  */
}

.brand-tag{
  font-size: 13px;
  color: var(--muted2);
  margin-top: 2px;
}

.header-cta{
  display:flex;
  align-items:center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content:flex-end;
}

/* BUTTONS */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius: 999px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: var(--text);
  font-weight: 600;
  letter-spacing: .1px;
  transition: transform .08s ease, background .15s ease, border-color .15s ease;
  user-select:none;
  white-space: nowrap;
}

.btn:hover{
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.18);
}

.btn:active{ transform: translateY(1px); }

.btn-primary{
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.22);
}
.btn-primary:hover{
  background: rgba(255,255,255,.18);
}

.btn-secondary{
  background: rgba(255,255,255,.07);
}

.btn-ghost{
  background: transparent;
}

.btn-lg{
  padding: 12px 16px;
  font-size: 15px;
}

/* kicker */
.hero{
  padding: 34px 0 10px;
}

.hero-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  grid-template-rows: auto auto;
  gap: 26px;
  align-items: start;
}

/* Full-width title above both columns */
.hero-title{
  grid-column: 1 / 3;      /* explicit: start at line 1, end at line 3 */
  grid-row: 1;
  justify-self: stretch;    /* ensure it stretches */
  align-self: start;
  width: 100%;
  margin: 0;
  margin-bottom: 0.2em;
  text-align: center;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -.8px;
}

/* Keep copy left and media right on row 2 */
.hero-copy{
  grid-column: 1;
  grid-row: 2;
}

.hero-media{
  grid-column: 2;
  grid-row: 2;
}


.hero .section-head{
  max-width: none;
}

.hero .kicker{
  margin:0 0 10px;
  font-size: 28px;
  letter-spacing: -.3px;
  color: var(--text);
  font-weight: 600;
  line-height: 1.25;
}

/* General “lede” text */
.lede{
  margin: 14px 0 18px;
  font-size: 18px;
  color: var(--muted);
  max-width: 58ch;
}

.cta-row{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 2.5em 0;
}

.trust-strip{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.pill{
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

/*.fineprint{
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted2);
} */

.media-card{
  margin: 0;
  border-radius: var(--radius2);
  overflow:hidden;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  box-shadow: var(--shadow);
}

.media-card img{
  width:100%;
  height:auto;
}

.media-card figcaption{
  padding: 10px 12px 12px;
  color: var(--muted2);
  font-size: 13px;
  border-top: 1px solid var(--line);
}

/* SECTIONS */
.section{
  padding: 54px 0;
}

.section.alt{
  /* background: rgba(255,255,255,.02); */
  background: transparent;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head{
  max-width: 72ch;
}

/* .section-head h2{
  margin:0 0 10px;
  font-size: 28px;
  letter-spacing: -.3px;
} */

.section-head p{
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.card{
  border-radius: var(--radius);
  padding: 16px 16px 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  box-shadow: 0 8px 22px rgba(0,0,0,.18);
}

.card h3{
  margin: 0 0 8px;
  font-size: 16px;
  letter-spacing: -.1px;
}

.card p{
  margin:0;
  color: var(--muted);
  font-size: 15px;
}

.two-col{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 16px;
}

.checklist{
  margin:0;
  padding-left: 18px;
  color: var(--muted);
}

.checklist li{
  margin: 10px 0;
}

.note{
  margin-top: 18px;
  padding: 14px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: var(--muted);
  text-align: center;
}

/* PROCESS STEPS */
.steps{
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display:grid;
  gap: 12px;
  max-width: 920px;
}

.step{
  display:grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  border-radius: var(--radius);
  padding: 14px 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
}

.step-num{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 700;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}

.step-body h3{
  margin: 2px 0 6px;
  font-size: 16px;
}

.step-body p{
  margin:0;
  color: var(--muted);
}

/* CTA BAND */
.cta-band{
  margin-top: 22px;
  border-radius: var(--radius2);
  border: 1px solid var(--line);
  background:
    /* radial-gradient(700px 260px at 10% 30%, rgba(255,255,255,.09), transparent 60%), */
    rgba(255,255,255,.03);
  padding: 16px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 14px;
}

.cta-band h3{
  margin:0 0 4px;
  font-size: 18px;
}

.cta-band p{
  margin:0;
  color: var(--muted);
}

.cta-band-actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content:flex-end;
}

/* FOOTER */
.site-footer{
  padding: 26px 0 80px;
}

.footer-inner{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.footer-title{
  font-weight: 700;
}

.footer-sub{
  color: var(--muted2);
  font-size: 13px;
  margin-top: 2px;
}

.vcard-link{
  display:inline-block;
  margin-top: 10px;
  color: var(--muted2);
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.vcard-link:hover{
  color: var(--text);
}


.footer-meta{
  color: var(--muted2);
  font-size: 13px;
  text-align:right;
  display:grid;
  gap: 4px;
}

/* STICKY CONTACT BAR */
.sticky-bar{
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 14px;
  width: min(520px, calc(100% - 24px));
  display:flex;
  gap: 10px;
  padding: 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(11,15,20,.75);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  z-index: 60;
}

.sticky-btn{
  flex: 1;
  text-align:center;
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  font-weight: 700;
  letter-spacing: .2px;
}

.sticky-btn:hover{
  background: rgba(255,255,255,.14);
}

/* RESPONSIVE */
@media (max-width: 900px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-copy{ grid-column: 1; grid-row: auto; }
  .hero-media{ grid-column: 1; grid-row: auto; }

  .cards{ grid-template-columns: 1fr; }
  .two-col{ grid-template-columns: 1fr; }
  .cta-band{ flex-direction: column; align-items: flex-start; }
  .footer-inner{ flex-direction: column; }
  .footer-meta{ text-align:left; }
  .header-cta .btn-ghost{ display:none; }
}

@media (prefers-reduced-motion: reduce){
  *{ scroll-behavior: auto !important; transition: none !important; }
}
