/* Cody Opal placeholder site
   Palette:
   - Background: #0B0D10
   - Accent:     #FFCC00
   - Text:       #E6E8EB
   based on details from will, alteration may be needed will see when email back tomoz. -cb
*/

:root{
  --bg:#0B0D10;
  --bg2:#0F1217;
  --text:#E6E8EB;
  --muted:rgba(230,232,235,.72);
  --accent:#FFCC00;
  --card:rgba(255,255,255,.04);
  --border:rgba(255,255,255,.10);
  --shadow:0 20px 60px rgba(0,0,0,.55);
  --radius:18px;
  --max:1120px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: radial-gradient(1200px 600px at 20% -10%, rgba(255,204,0,.10), transparent 60%),
              radial-gradient(1000px 600px at 80% 10%, rgba(255,204,0,.06), transparent 60%),
              var(--bg);
  color:var(--text);
  line-height:1.5;
}

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

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

.sr-only{
  position:absolute!important;
  height:1px; width:1px;
  overflow:hidden;
  clip:rect(1px,1px,1px,1px);
  white-space:nowrap;
}

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

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(11,13,16,.70);
  border-bottom:1px solid var(--border);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:16px;
}
.brand{ display:flex; align-items:center; gap:12px; }
.brand-logo{
  width:190px;
  height:auto;
  filter: drop-shadow(0 12px 26px rgba(0,0,0,.55));
}

.site-nav{ display:flex; gap:18px; }
.nav-link{
  color:var(--muted);
  font-weight:600;
  font-size:14px;
  letter-spacing:.02em;
  padding:8px 10px;
  border-radius:12px;
}
.nav-link:hover{
  color:var(--text);
  background:rgba(255,255,255,.04);
  text-decoration:none;
}

.hero{
  padding:72px 0 32px;
}
.hero-inner{
  display:grid;
  grid-template-columns: 1.3fr .7fr;
  gap:30px;
  align-items:stretch;
}
.kicker{
  color:var(--accent);
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
  margin:0 0 10px;
  font-size:12px;
}
.hero-title{
  font-size: clamp(28px, 4vw, 46px);
  line-height:1.1;
  margin:0 0 12px;
}
.hero-subtitle{
  color:var(--muted);
  font-size: clamp(16px, 2vw, 18px);
  margin:0 0 18px;
  max-width: 58ch;
}

.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius: 14px;
  border:1px solid var(--border);
  font-weight:700;
  letter-spacing:.01em;
  text-decoration:none !important;
  box-shadow: 0 14px 30px rgba(0,0,0,.30);
}
.btn-accent{
  background:var(--accent);
  border-color: transparent;
  color:#0B0D10;
}
.btn-accent:hover{ filter:brightness(.98); }
.btn-ghost{
  background:rgba(255,255,255,.03);
  color:var(--text);
}
.btn-ghost:hover{ background:rgba(255,255,255,.06); }

.hero-panel{
  position:relative;
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  box-shadow: var(--shadow);
  min-height: 220px;
}
.hero-panel .glow{
  position:absolute;
  inset:-140px -140px auto auto;
  width:320px;
  height:320px;
  border-radius:999px;
  background: radial-gradient(circle at 30% 30%, rgba(255,204,0,.30), transparent 60%);
  filter: blur(2px);
}
.hero-panel .panel{
  position:absolute;
  inset:0;
  padding:22px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:10px;
}
.panel-label{
  color:var(--muted);
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:11px;
}
.panel-value{
  font-size:34px;
  font-weight:900;
  line-height:1.1;
}
.panel-value-small{
  font-size:20px;
  font-weight:800;
}
.panel-divider{
  height:1px;
  background:var(--border);
  margin:6px 0;
}

.section{
  padding:56px 0;
}
.section-alt{
  background: linear-gradient(180deg, rgba(255,255,255,.03), transparent);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.section-head{
  margin-bottom:18px;
}
.section-kicker{
  margin:0 0 8px;
  color:var(--accent);
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
  font-size:12px;
}
.section-title{
  margin:0 0 10px;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height:1.2;
}
.section-subtitle{
  margin:0;
  color:var(--muted);
  max-width:70ch;
}

.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  margin-top: 18px;
}
.card{
  border-radius: var(--radius);
  border:1px solid var(--border);
  background: var(--card);
  padding:18px;
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
}
.card-title{
  margin:0 0 6px;
  font-size:16px;
}
.card-text{
  margin:0;
  color:var(--muted);
}

.logos{
  margin-top: 26px;
  display:flex;
  gap:18px;
  align-items:center;
  justify-content:flex-start;
  flex-wrap:wrap;
}
.logos img{
  height:74px;
  width:auto;
  border-radius: 14px;
  border:1px solid var(--border);
  background:rgba(0,0,0,.35);
  padding:10px;
}

.split{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.split-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.site-footer{
  padding:44px 0 18px;
}
.footer-inner{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:24px;
}
.footer-title{
  font-weight:900;
  letter-spacing:.02em;
  font-size:16px;
}
.footer-muted{
  color:var(--muted);
  margin:10px 0 0;
  font-size:14px;
}
.footer-cta{
  margin-top: 16px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.footer-cols{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.footer-col{
  border:1px solid var(--border);
  background:rgba(255,255,255,.03);
  border-radius: var(--radius);
  padding:14px;
}
.footer-col-title{
  font-weight:800;
  margin-bottom:8px;
}
.footer-bottom{
  margin-top:22px;
  padding-top:14px;
  border-top:1px solid var(--border);
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
.footer-link{ color:var(--muted); }
.footer-link:hover{ color:var(--text); }

@media (max-width: 920px){
  .hero-inner{ grid-template-columns: 1fr; }
  .hero-panel{ min-height: 200px; }
  .cards{ grid-template-columns: 1fr; }
  .footer-inner{ grid-template-columns: 1fr; }
  .footer-cols{ grid-template-columns: 1fr; }
  .split{ flex-direction:column; align-items:flex-start; }
  .split-actions{ justify-content:flex-start; }
  .brand-logo{ width:170px; }
}
