:root{
  /* Clean light theme (blog-like), tuned to your logo */
  --bg: #fbfcff;
  --paper: #ffffff;
  --ink: #111827;
  --muted: #4b5563;
  --line: #e5e7eb;

  /* Logo-ish accents */
  --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:
    radial-gradient(1000px 500px at 15% 0%, rgba(11,94,215,.10), transparent 55%),
    radial-gradient(900px 500px at 85% 0%, rgba(246,196,69,.14), transparent 55%),
    var(--bg);
  line-height: 1.65;
}

.container{
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
}

/* TOP SOCIAL STRIP */
.socialStrip{
  background: linear-gradient(90deg, rgba(11,94,215,.08), rgba(246,196,69,.12));
  border-bottom: 1px solid var(--line);
}

.stripInner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  flex-wrap: wrap;
}

.stripLabel{
  font-weight: 800;
  color: var(--blueDeep);
  margin-right: 8px;
}

.stripLeft{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.stripLink{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(11,94,215,.12);
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
}
.stripLink:hover{
  border-color: rgba(11,94,215,.28);
  transform: translateY(-1px);
}

.ico{ font-size: 14px; }

.stripCTA{
  font-weight: 900;
  text-decoration: none;
  color: var(--blueDeep);
}

/* HEADER + NAV */
.siteHeader{
  background: rgba(255,255,255,.75);
  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: 800;
  font-size: 14px;
}
.nav a:hover{ color: var(--ink); }

/* HERO */
.hero{
  display: grid;
  grid-template-columns: 1.35fr .85fr;
  gap: 22px;
  padding: 26px 0 14px;
  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(11,94,215,.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,.80);
  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: 12px;
  letter-spacing: .2px;
  color: var(--muted);
  font-weight: 800;
}
.hostName{
  font-weight: 900;
  font-size: 20px;
  margin-top: 1px;
}
.hostLine{
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
  margin-top: 1px;
}

/* CONTENT BLOCKS */
.contentBlock{
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.contentBlock h2{
  margin: 0 0 10px;
  font-size: 25px;
  letter-spacing: -.2px;
}

.contentBlock p{
  margin: 0 0 12px;
  max-width: 88ch;
}

.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 GRID */
.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;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 10px;
}

/* FOOTER */
.footer{
  border-top: 1px solid var(--line);
  padding: 18px 0 34px;
  color: var(--muted);
  font-size: 13px;
}

/* RESPONSIVE */
@media (max-width: 980px){
  .hero{ grid-template-columns: 1fr; }
  .callouts{ grid-template-columns: 1fr; }
  .linkGrid{ grid-template-columns: 1fr; }
  .nav{ display: none; } /* keeps it simple on mobile */
}