:root{
  /* ultra-light, editorial */
  --page-bg: #fcfbf7;

  /* light lilac tint like the mockup */
  --tint: rgba(126, 87, 194, 0.06);
  --tint-2: rgba(126, 87, 194, 0.10);

  --text: #1f2937;     /* slate-800 */
  --muted: #6b7280;    /* slate-500 */
  --line: rgba(17,24,39,0.10);

  --card-bg: rgba(255,255,255,0.52);
  --card-bg-2: rgba(255,255,255,0.62);

  --radius: 18px;
  --radius-sm: 14px;

  --max: 980px;

  /* Zimbabwe dots */
  --g: #1f7a3a;
  --y: #ffd400;
  --r: #d62828;
}

* { box-sizing: border-box; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color: var(--text);
  background: var(--page-bg);
  line-height: 1.35;
}

/* Soft page wash like the screenshot */
.stage{
  min-height: 100vh;
  background:
    radial-gradient(1200px 700px at 30% 30%, var(--tint), transparent 60%),
    radial-gradient(900px 600px at 80% 70%, var(--tint), transparent 60%);
  padding: 18px 14px 44px;
}

.wrap{
  max-width: var(--max);
  margin: 0 auto;
}

/* Header bar */
.topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  margin: 2px 0 14px;
}
.brand{
  display:flex;
  align-items:center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 18px;
}
.lights{
  display:flex;
  align-items:center;
  gap: 6px;
}
.lights i{
  width: 10px; height: 10px;
  border-radius: 999px;
  display:inline-block;
}
.lights i:nth-child(1){ background: rgba(31,122,58,.75); }
.lights i:nth-child(2){ background: rgba(255,212,0,.75); }
.lights i:nth-child(3){ background: rgba(214,40,40,.75); }

.pill{
  font-size: 12px;
  color: #374151;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(0,0,0,0.08);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  white-space: nowrap;
}

/* Page */
.page{
  border-radius: 22px;
  overflow:hidden;
  border: 1px solid rgba(0,0,0,0.06);
  background: rgba(255,255,255,0.40);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* HERO */
.hero{
  position: relative;
  padding: 28px 22px 18px;
  min-height: 350px;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  overflow:hidden;
  background: #fff;
}

/* Stadium photo on the right side like the mockup */
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    /* soft tint wash */
    linear-gradient(90deg,
      rgba(255,255,255,0.92) 0%,
      rgba(255,255,255,0.80) 35%,
      rgba(255,255,255,0.35) 62%,
      rgba(255,255,255,0.18) 100%),
    /* replace hero-stadium.jpg with your stadium image */
    url("hero-stadium.png");
  background-size: cover;
  background-position: right center;
  filter: saturate(1.02);
  transform: scale(1.01);
}

.hero > *{ position: relative; z-index: 1; }

.hero h1{
  margin: 0 0 14px;
  font-size: clamp(30px, 4vw, 44px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  max-width: 520px;
}

.hero p{
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 15px;
  max-width: 520px;
}

.cta-chip{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(31,122,58,0.75);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 10px 22px rgba(0,0,0,0.10);
}
.cta-chip .dots{
  display:flex; gap:6px; align-items:center;
}
.cta-chip .dots i{
  width: 7px; height: 7px;
  border-radius: 999px;
  display:inline-block;
  background: rgba(255,255,255,0.90);
}
.cta-chip .dots i:nth-child(2){ opacity:.8; }
.cta-chip .dots i:nth-child(3){ opacity:.6; }

/* Section titles */
.section{
  padding: 18px 20px 0;
}
.section h2{
  margin: 0 0 12px;
  font-size: 22px;
  letter-spacing: -0.02em;
}

/* Card grid: 2 rows x 3 cols */
.grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-bottom: 16px;
}

.tile{
  border-radius: var(--radius-sm);
  background: var(--card-bg);
  border: 1px solid var(--line);
  padding: 14px 14px 12px;
  min-height: 110px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
}

.tile .num{
  font-weight: 800;
  font-size: 13px;
  margin-right: 8px;
  color: #111827;
}
.tile .num.orange{ color: #d97706; }
.tile .num.green{ color: #1f7a3a; }

.tile h3{
  margin: 0 0 6px;
  font-size: 16px;
  letter-spacing: -0.01em;
}
.tile p{
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 13px;
}
.tile a{
  color: #374151;
  font-weight: 700;
  text-decoration: none;
  font-size: 13px;
}
.tile a:hover{ text-decoration: underline; }

/* Start here area */
.start{
  padding: 12px 20px 18px;
}

.start-head{
  display:flex;
  align-items:center;
  gap: 10px;
  margin: 6px 0 12px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.start-head .lights{ transform: translateY(1px); }

.start-grid{
  display:grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 12px;
  align-items: start;
}

.steps{
  display:grid;
  gap: 12px;
}

.step{
  border-radius: var(--radius-sm);
  background: var(--card-bg-2);
  border: 1px solid var(--line);
  padding: 14px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
}
.step h4{
  margin: 0 0 6px;
  font-size: 16px;
  letter-spacing: -0.01em;
}
.step p{
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

/* Right safety box */
.safety{
  border-radius: var(--radius-sm);
  background: rgba(31,122,58,0.10);
  border: 1px solid rgba(31,122,58,0.18);
  padding: 14px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
}
.safety .title{
  display:flex;
  align-items:center;
  gap: 10px;
  margin-bottom: 10px;
  font-weight: 900;
  letter-spacing: -0.01em;
  font-size: 16px;
}
.safety ul{
  margin: 0;
  padding-left: 18px;
  color: #4b5563;
  font-size: 13px;
}
.safety li{ margin: 9px 0; }

/* Footer disclaimer */
.footer{
  display:flex;
  align-items:flex-start;
  gap: 10px;
  padding: 12px 20px 14px;
  border-top: 1px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.55);
  color: #4b5563;
  font-size: 12.5px;
}

.flag{
  width: 28px; height: 18px;
  border-radius: 4px;
  overflow:hidden;
  border: 1px solid rgba(0,0,0,0.12);
  flex: 0 0 auto;
  background:#fff;
}
.flag svg{ width: 28px; height: 18px; display:block; }

/* Responsive */
@media (max-width: 940px){
  .grid{ grid-template-columns: 1fr; }
  .start-grid{ grid-template-columns: 1fr; }
  .hero{ min-height: 320px; }
  .hero h1, .hero p{ max-width: 100%; }
  .hero::before{
    background-position: center;
    background:
      linear-gradient(180deg, rgba(255,255,255,0.94) 0%, rgba(255,255,255,0.70) 45%, rgba(255,255,255,0.40) 100%),
      url("hero-stadium.jpg");
    background-size: cover;
  }
}
/* ================================
   ARTICLE / BASICS PAGE STYLES
   ================================ */

/* Breadcrumbs */
.crumbs{
  display:flex;
  gap: 8px;
  align-items:center;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 12px;
}
.crumbs a{
  color: inherit;
  text-decoration:none;
  font-weight: 700;
}
.crumbs a:hover{ text-decoration: underline; }

/* Article layout */
.content{
  display:grid;
  grid-template-columns: 1fr 320px;
  gap: 14px;
  padding: 16px 18px 18px;
}

/* Generic article card */
.card{
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
}
.card h2{
  margin: 0 0 10px;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.card p{
  margin: 0 0 10px;
  color: #374151;
  font-size: 14px;
}
.card p.muted{ color: var(--muted); }

/* Table of contents */
.toc a{
  display:flex;
  justify-content: space-between;
  gap: 10px;
  padding: 10px;
  border-radius: 12px;
  text-decoration:none;
  color: #111827;
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.55);
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 13px;
}
.toc a:hover{ text-decoration: underline; }
.toc small{
  color: var(--muted);
  font-weight: 600;
}

/* Two-column grids inside articles */
.grid-2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* Term blocks */
.term{
  background: rgba(255,255,255,0.60);
  border: 1px solid rgba(0,0,0,0.09);
  border-radius: 12px;
  padding: 12px;
}
.term b{ display:block; margin-bottom: 4px; }
.term span{ color: var(--muted); font-size: 13px; }

/* Examples */
.example{
  border-left: 4px solid rgba(31,122,58,.35);
  padding: 12px;
  background: rgba(31,122,58,.06);
  border-radius: 12px;
  border: 1px solid rgba(31,122,58,.14);
  margin-top: 10px;
}
.example code{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 13px;
  background: rgba(255,255,255,.6);
  padding: 2px 6px;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,.08);
}

/* Callouts */
.callout{
  background: rgba(255,255,255,0.60);
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 12px;
  padding: 12px;
  margin-top: 10px;
}
.callout ul{
  margin: 0;
  padding-left: 18px;
  color: #4b5563;
  font-size: 13px;
}
.callout li{ margin: 8px 0; }

/* Tables */
table{
  width:100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(255,255,255,0.60);
  margin-top: 10px;
  overflow:hidden;
}
th, td{
  text-align:left;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  font-size: 13.5px;
  color:#374151;
}
th{
  font-size: 12.5px;
  background: rgba(255,255,255,0.65);
}
tr:last-child td{ border-bottom: none; }

/* Sidebar notes */
.mini-note{
  margin-top: 12px;
  padding: 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(0,0,0,0.10);
  color: #4b5563;
  font-size: 12.5px;
}

/* Responsive */
@media (max-width: 980px){
  .content{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
}

/* ================================
   GLOBAL FOOTER
   ================================ */

.site-footer{
  margin-top: 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.55);
  color: #4b5563;
  font-size: 12.5px;
}

.footer-inner{
  padding: 14px 18px 16px;
}

.footer-top{
  display:flex;
  gap: 14px;
  align-items:flex-start;
  justify-content:space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.footer-brand{
  display:flex;
  gap: 10px;
  align-items:flex-start;
}

.footer-title{
  font-weight: 900;
  color: #111827;
  letter-spacing: -0.01em;
}

.footer-sub{
  color: #6b7280;
  font-size: 12px;
  margin-top: 2px;
}

.footer-nav{
  display:flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  justify-content:flex-end;
  max-width: 520px;
}

.footer-nav a{
  color: #374151;
  text-decoration: none;
  font-weight: 700;
  font-size: 12.5px;
  padding: 6px 8px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.06);
  background: rgba(255,255,255,0.45);
}

.footer-nav a:hover{
  text-decoration: underline;
}

.footer-bottom{
  padding-top: 12px;
}

.footer-disclaimer{
  margin: 0 0 10px;
  line-height: 1.4;
}

.footer-meta{
  display:flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items:center;
  color: #6b7280;
  font-size: 12px;
}

.footer-dot{
  opacity: 0.8;
}

@media (max-width: 880px){
  .footer-top{
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-nav{
    justify-content:flex-start;
    max-width: none;
  }
}
.form-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.field{ display:flex; flex-direction:column; gap: 6px; }
.label{ font-weight: 800; font-size: 13px; color:#111827; }
.hint{ font-size: 12px; color: var(--muted); margin-top: 2px; }
.input, .textarea, .select{
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(255,255,255,0.60);
  padding: 10px 12px;
  font-size: 14px;
  color: #111827;
  outline: none;
}
.textarea{ min-height: 120px; resize: vertical; }
.input:focus, .textarea:focus, .select:focus{
  border-color: rgba(31,122,58,0.35);
  box-shadow: 0 0 0 4px rgba(31,122,58,0.08);
}
.btn-row{ display:flex; gap: 10px; align-items:center; justify-content:flex-start; margin-top: 10px; }
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(31,122,58,0.78);
  color: #fff;
  font-weight: 900;
  font-size: 13px;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(0,0,0,0.10);
}
.btn.secondary{
  background: rgba(255,255,255,0.60);
  color: #111827;
  box-shadow: none;
}
.note{
  font-size: 12.5px;
  color: #4b5563;
  margin-top: 8px;
  line-height: 1.45;
}
.kpi{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 10px;
}
.kpi .term{ height: 100%; }
@media (max-width: 980px){
  .form-grid{ grid-template-columns: 1fr; }
  .kpi{ grid-template-columns: 1fr; }
}
