/* wistrade-modern-v2.css — cleaner, modern additive layer
   - Subtle backgrounds (no loud page-wide gradients)
   - Card-based sections with gentle shadows
   - Responsive container and iframe
   - Keeps your palette: tan bg, gray header, orange/yellow accents
*/

:root{
  --bg: #d8ccb8;             /* tan */
  --panel: #ffffff;          /* cards */
  --panel-2: #f6f2ea;        /* soft tan tint */
  --text: #0f141b;
  --muted:#485768;
  --header:#989898;          /* gray header */
  --accent:#ff8040;
  --accent-2:#ffcc00;
  --border: rgba(0,0,0,.08);
  --shadow: 0 10px 24px rgba(0,0,0,.12);
}

html,body{height:100%}
*{box-sizing:border-box}
body{
  margin:0;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.65 system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial;
}

/* ====== Layout ====== */
.container{max-width:1120px; margin:0 auto; padding:20px}
.section{padding:24px 0}
.section h2{font-size: clamp(22px,3vw,28px); margin: 0 0 10px}
.note{color:var(--muted); font-size:14px}

/* ====== Header ====== */
.site-header, header.site{
  background: var(--header);
  color:#fff;
  position: sticky; top:0; z-index:10;
  border-bottom:1px solid var(--border);
}
.topbar{display:flex; align-items:center; justify-content:space-between; gap:16px; padding:12px 20px}
.brand{display:flex; align-items:center; gap:12px; text-decoration:none; color:#fff}
.brand img{height:38px}
.tagline{margin:0; font-size:14px; opacity:.95}

/* ====== Nav ====== */
nav.primary{display:flex; align-items:center}
.nav-list{display:flex; gap:8px; list-style:none; margin:0; padding:0}
.nav-list a{
  display:inline-flex; padding:8px 12px; border-radius:10px;
  color:#fff; text-decoration:none; font-weight:700;
}
.nav-list a:hover{background: rgba(255,255,255,.12)}

/* ====== Hero ====== */
.hero{padding:28px 20px}
.hero-inner{display:grid; grid-template-columns:1.1fr .9fr; gap:18px; align-items:center}
.hero h1{font-size:clamp(26px,4vw,40px); margin:.35rem 0}
.lead{color:var(--muted)}
.tag{
  display:inline-flex; gap:8px; align-items:center; font-size:13px; color:var(--muted);
  padding:6px 10px; border-radius:999px; background:var(--panel); border:1px solid var(--border)
}

/* Small, subtle banner instead of full-page gradient */
.arch{
  background: var(--panel);
  border:1px solid var(--border);
  border-radius:14px;
  box-shadow: var(--shadow);
  padding:12px;
}

/* ====== Responsive video ====== */
.embed{position:relative; width:100%; aspect-ratio:16/9; background:#000; border-radius:12px; overflow:hidden; border:1px solid var(--border)}
.embed iframe{position:absolute; inset:0; width:100%; height:100%; border:0}

/* ====== Cards ====== */
.grid{display:grid; gap:16px; grid-template-columns:repeat(auto-fit, minmax(260px,1fr))}
.card{
  background:var(--panel);
  border:1px solid var(--border);
  border-radius:14px;
  box-shadow: var(--shadow);
  overflow:hidden;
  display:flex; flex-direction:column;
}
.card .body{padding:14px}
.card h3{margin:.2rem 0 .5rem}
.card p{margin:0; color:var(--muted)}
.card .links{padding:0 14px 14px}
.card .links a{
  display:inline-flex; padding:8px 12px; border-radius:10px;
  border:1px solid var(--border); background:var(--panel-2);
  color:inherit; text-decoration:none; font-weight:700;
}
.card .links a:hover{background:#fff}

/* ====== Footer ====== */
.site-footer, footer.site{color:var(--muted); padding:24px 0 40px; border-top:1px solid var(--border)}

/* ====== Small screens ====== */
@media (max-width: 920px){
  .hero-inner{grid-template-columns:1fr}
  .topbar{flex-wrap:wrap}
}
