:root{
  --bg:#0B0D0F;
  --text:#F4F2ED;
  --muted:rgba(244,242,237,.78);
  --panel:rgba(255,255,255,.05);
  --border:rgba(244,242,237,.12);
  --accent1:#0E8F93;
  --accent2:#23C4D9;
  --shadow: 0 18px 55px rgba(0,0,0,.45);
  --radius: 18px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background:
    radial-gradient(900px 550px at 20% 10%, rgba(35,196,217,.16), transparent 60%),
    radial-gradient(800px 500px at 70% 15%, rgba(14,143,147,.12), transparent 55%),
    var(--bg);
  color:var(--text);
  line-height:1.55;
}

a{ color:inherit; text-decoration:none; }
a:hover{ opacity:.95; }

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

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

/* HEADER */
.site-header{
  position: sticky;
  top:0;
  z-index: 50;
  background: rgba(11,13,15,.78);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(244,242,237,.08);
}

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

/* Logo: prominent but never destructive */
.brand{
  display:flex;
  align-items:center;
  flex:0 0 auto;
}

.brand-logo{
  height: 56px;      /* corporate presence */
  width: auto;
  max-width: 280px;  /* prevents takeover */
  display:block;
}

/* NAV */
.nav{
  display:flex;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.nav a{
  font-size: 14px;
  color: rgba(244,242,237,.86);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  border-radius: 12px;
  border: 0;
  background: linear-gradient(135deg, var(--accent1), var(--accent2));
  color: #071012;
  font-weight: 800;
  cursor:pointer;
  box-shadow: 0 14px 40px rgba(35,196,217,.12);
}

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

.btn-small{
  padding: 9px 12px;
  border-radius: 12px;
}

.btn-ghost{
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(35,196,217,.45);
  box-shadow: none;
}

/* HERO */
.hero{
  padding: 72px 0 42px;
}

.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 26px;
  align-items: start;
}

.eyebrow{
  display:inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(35,196,217,.35);
  background: rgba(35,196,217,.07);
  color: rgba(244,242,237,.9);
  font-size: 12px;
  letter-spacing: .04em;
}

h1{
  margin: 14px 0 10px;
  font-size: clamp(34px, 4.3vw, 54px);
  line-height: 1.06;
  letter-spacing: -.02em;
}

.lead{
  margin: 0 0 18px;
  font-size: 17px;
  color: rgba(244,242,237,.86);
  max-width: 62ch;
}

.cta-row{
  display:flex;
  gap: 14px;
  align-items:center;
  flex-wrap:wrap;
  margin: 18px 0 16px;
}

.link{
  color: rgba(244,242,237,.9);
  border-bottom: 1px solid rgba(244,242,237,.18);
  padding-bottom: 2px;
}

.trust-row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.trust-pill{
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(244,242,237,.12);
  background: rgba(255,255,255,.03);
  color: rgba(244,242,237,.78);
  font-size: 12px;
}

/* HERO CARD */
.hero-card{
  border: 1px solid rgba(244,242,237,.12);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}

.card-top{
  margin-bottom: 12px;
}

.card-title{
  font-weight: 900;
  letter-spacing: .01em;
}

.card-sub{
  color: var(--muted);
  font-size: 13px;
  margin-top: 3px;
}

.card-list{
  display:flex;
  flex-direction:column;
  gap: 10px;
  margin: 12px 0 14px;
}

.card-item{
  padding-left: 12px;
  border-left: 3px solid rgba(35,196,217,.45);
  color: rgba(244,242,237,.84);
  font-size: 14px;
}

.card-foot .fineprint{
  margin-top: 6px;
}

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

.section-alt{
  background: rgba(255,255,255,.02);
  border-top: 1px solid rgba(244,242,237,.08);
  border-bottom: 1px solid rgba(244,242,237,.08);
}

h2{
  margin: 0 0 10px;
  font-size: clamp(24px, 2.5vw, 34px);
  letter-spacing: -.01em;
}

h3{
  margin: 0 0 10px;
  font-size: 18px;
}

.muted{ color: var(--muted); }

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

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

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

.panel{
  border: 1px solid rgba(244,242,237,.12);
  background: rgba(255,255,255,.03);
  border-radius: var(--radius);
  padding: 18px;
}

.kicker{
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(35,196,217,.9);
  margin-bottom: 8px;
}

ul{
  margin: 0;
  padding-left: 18px;
  color: rgba(244,242,237,.82);
}
li{ margin: 6px 0; }

.tm{ opacity:.9; font-weight:800; }

/* CONTACT */
.contact-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  margin-top: 18px;
}

.form{
  display:flex;
  flex-direction:column;
  gap: 12px;
}

label{
  display:flex;
  flex-direction:column;
  gap: 7px;
  font-size: 14px;
  color: rgba(244,242,237,.86);
}

input, textarea{
  width: 100%;
  padding: 11px 12px;
  border-radius: 12px;
  border: 1px solid rgba(244,242,237,.14);
  background: rgba(11,13,15,.55);
  color: var(--text);
  outline: none;
}

input:focus, textarea:focus{
  border-color: rgba(35,196,217,.55);
}

.inline-link{
  border-bottom: 1px solid rgba(244,242,237,.18);
  padding-bottom: 1px;
}

.callout{
  margin-top: 14px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(244,242,237,.12);
  background: rgba(255,255,255,.03);
  color: rgba(244,242,237,.78);
  font-size: 13px;
}

.mini-cta{
  margin-top: 14px;
}

/* FOOTER */
.site-footer{
  padding: 26px 0;
  border-top: 1px solid rgba(244,242,237,.08);
  background: rgba(11,13,15,.65);
}

.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr .9fr .9fr;
  gap: 18px;
  align-items:center;
}

.footer-left .footer-brand{
  font-weight: 900;
  letter-spacing: .06em;
  font-size: 16px;
}

.footer-links{
  display:flex;
  gap: 14px;
  flex-wrap:wrap;
  justify-content:center;
  color: rgba(244,242,237,.82);
}

.fineprint{
  color: rgba(244,242,237,.62);
  font-size: 12px;
}

.footer-right{
  text-align:right;
}

/* RESPONSIVE */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .grid-4{ grid-template-columns: 1fr 1fr; }
  .grid-3{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; text-align:center; }
  .footer-right{ text-align:center; }
}

@media (max-width: 520px){
  .header-inner{ flex-direction: column; align-items: flex-start; }
  .nav{ justify-content:flex-start; }
  .brand-logo{ height: 44px; max-width: 220px; }
}
/* ===== G.R.O. LOGO FAILSAFE OVERRIDE (paste at bottom) ===== */

/* Prevent any image from acting like an overlay */
img {
  position: static !important;
  inset: auto !important;
  z-index: auto !important;
}

/* Keep header above page, but never let its contents block the page */
.site-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 50 !important;
  overflow: hidden !important; /* critical: stops oversized transparent canvas from blocking */
}

/* Lock the brand area to a safe height */
.brand.logo-brand,
.brand {
  display: flex !important;
  align-items: center !important;
  max-height: 72px !important;
}

/* Hard-cap the logo (even if the PNG canvas is huge) */
.brand-logo,
.brand.logo-brand img,
.brand img {
  display: block !important;
  height: 56px !important;
  width: auto !important;
  max-width: 260px !important;
  object-fit: contain !important;
  pointer-events: none !important; /* prevents “invisible canvas” from stealing clicks */
}

/* Keep the link clickable (image ignores pointer, anchor still works) */
.brand.logo-brand,
.brand {
  pointer-events: auto !important;
}

/* Mobile refinement */
@media (max-width: 520px) {
  .brand-logo,
  .brand.logo-brand img,
  .brand img {
    height: 40px !important;
    max-width: 200px !important;
  }
}
/* ===== END FAILSAFE OVERRIDE ===== */
