:root{
  --bg: #fbfcff;
  --paper: #ffffff;
  --ink: #111827;
  --muted: #4b5563;
  --line: #e5e7eb;

  --blue: #0b5ed7;
  --blueDeep: #0a2e73;
  --gold: #f6c445;

  --radius: 18px;
  --shadow: 0 18px 50px rgba(17,24,39,.08);
  --max: 1040px;
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }

body{
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
}

.container{
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
}

/* FULL-WIDTH BANDS */
.band{
  width: 100%;
}

/* Strip */
.band-strip{
  background: linear-gradient(90deg, rgba(11,94,215,.10), rgba(246,196,69,.14));
  border-bottom: 1px solid var(--line);
}
.stripInner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  flex-wrap: wrap;
}
.stripLeft{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.stripLabel{
  font-weight: 900;
  color: var(--blueDeep);
  margin-right: 6px;
}
.stripLink{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(11,94,215,.12);
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
}
.stripLink:hover{
  border-color: rgba(11,94,215,.28);
  transform: translateY(-1px);
}
.stripCTA{
  font-weight: 900;
  text-decoration: none;
  color: var(--blueDeep);
}

/* Nav */
.band-nav{
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
}
.navRow{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}
.brand{
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  min-width: 240px;
}
.brandLogo{
  width: 100px;
  height: 100px;
  object-fit: contain;
}
.brandText{
  display: grid;
  gap: 2px;
}
.brandName{ font-weight: 900; font-size: 18px; letter-spacing: -.2px; }
.brandTag{ font-weight: 600; font-size: 14px; color: var(--muted); }

.nav{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.nav a{
  text-decoration: none;
  color: var(--muted);
  font-weight: 900;
  font-size: 14px;
}
.nav a:hover{ color: var(--ink); }

/* Hero band */
.band-hero{
  background: #fbfcff;
}
.hero{
  display: grid;
  grid-template-columns: 1.35fr .85fr;
  gap: 22px;
  padding: 28px 0 18px;
  align-items: start;
}
.title{
  font-family: "Source Serif 4", ui-serif, Georgia, serif;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.05;
  margin: 0 0 12px;
  letter-spacing: -.6px;
}
.accent{
  background: linear-gradient(90deg, var(--blue), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lede{
  margin: 0 0 16px;
  color: var(--muted);
  max-width: 80ch;
  font-size: 16px;
}
.heroButtons{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border-radius: 999px;
  border: 0px solid var(--line);
  text-decoration: none;
  font-weight: 900;
  font-size: 14px;
  transition: transform .15s ease;
}
.btn.primary{
  background: linear-gradient(135deg, rgba(114,158,223,.95), rgba(246,196,69,.70));
  color: #061224;
  border-color: rgba(11,94,215,.18);
  box-shadow: var(--shadow);
}
.btn.ghost{
  background: rgba(255,255,255,.85);
  color: var(--ink);
}
.btn:hover{ transform: translateY(-2px); }
.btn:active{ transform: translateY(0); }

.fine{
  margin: 0;
  color: #6b7280;
  font-size: 13px;
  font-weight: 600;
}

/* Host card */
.hostCard{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hostPhoto{
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}
.hostMeta{ padding: 14px 14px 16px; }
.hostHello{ font-size: 13px; color: var(--muted); font-weight: 900; }
.hostName{ font-weight: 900; font-size: 22px; margin-top: 1px; }
.hostLine{ color: var(--muted); font-weight: 600; font-size: 15px; margin-top: 1px; }

/* Content bands */
.band-about{
  background: rgba(255,255,255,.92);
  border-top: 1px solid var(--line);
}
.band-live{
  background: rgba(255,255,255,.92);
  border-top: 1px solid var(--line);
}
.band-links{
  background: linear-gradient(90deg, rgba(11,94,215,.10), rgba(246,196,69,.14));
  border-top: 1px solid var(--line);
}
.band-contact{
  background: #fbfcff;
  border-top: 1px solid var(--line);
}
.band-footer{
  background: rgba(255,255,255,.92);
  border-top: 1px solid var(--line);
}

/* Shared content block spacing inside bands */
.contentBlock{
  padding: 22px 0;
  text-align: center;
}
.contentBlock h2{
  margin: 0 0 10px;
  font-size: 25px;
  letter-spacing: -.2px;
}
.contentBlock p{
  margin: 0 0 12px;
  text-align: center;
}
.muted{ color: var(--muted); }
.small{ font-size: 13px; }

/* Callouts */
.callouts{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}
.callout{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: 0 10px 26px rgba(17,24,39,.06);
}
.calloutTitle{
  font-weight: 900;
  margin-bottom: 6px;
  color: var(--blueDeep);
}

/* Links */
.linkGrid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}
.linkCard{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--ink);
  box-shadow: 0 10px 28px rgba(17,24,39,.06);
  transition: transform .15s ease, border-color .15s ease;
}
.linkCard:hover{
  transform: translateY(-1px);
  border-color: rgba(11,94,215,.25);
}
.linkLeft{
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.linkIcon{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(11,94,215,.12), rgba(246,196,69,.20));
  border: 1px solid rgba(11,94,215,.14);
  font-size: 18px;
}
.linkName{ font-weight: 900; }
.linkSub{
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 170px;
}
.linkAction{
  font-weight: 900;
  font-size: 13px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(249,250,251,.9);
  color: var(--blueDeep);
}

/* Copy row */
.copyRow{
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 14px;
}
.copyBtn{
  border: 1px solid var(--line);
  background: rgba(255,255,255,.85);
  color: var(--ink);
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
}
.copyBtn:hover{
  transform: translateY(-2px);
  border-color: rgba(11,94,215,.25);
}
.copyStatus{
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
}

/* Contact */
.contactBox{
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 10px;
}

/* Footer */
.footer{
  padding: 18px 0 34px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

/* Responsive */
@media (max-width: 980px){
  .hero{ grid-template-columns: 1fr; }
  .callouts{ grid-template-columns: 1fr; }
  .linkGrid{ grid-template-columns: 1fr; }
  .nav{ display: none; }
}

/*Embed videos*/
.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
