/* assets/css/style.css  — light-only, minimalist */

/* ---------- Tokens ---------- */
:root{
  --bg:#ffffff;
  --surface:#ffffff;
  --surface-2:#f7f7f8;
  --text:#0b1220;   /* darker */
--muted:#334155;  /* darker muted */

  --border:rgba(17,24,39,.10);
  --shadow:0 10px 25px rgba(17,24,39,.06);

  --primary:#111827;
  --primary-text:#ffffff;

  --radius:16px;
  --radius-sm:12px;
  --container:1100px;
  --focus: rgba(17,24,39,.18);
}

/* ---------- Base ---------- */
*{ box-sizing:border-box; }
html,body{ height:100%; }

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}
body{
  background:
    linear-gradient(rgba(255,255,255,.28), rgba(255,255,255,.28)),
    url("../../media/bg.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
}

a{ color:inherit; text-decoration:none; }
a:hover{ opacity:.9; }

.wrap{
  max-width: var(--container);
  margin:0 auto;
  padding:0 20px;
}


.muted{ color: var(--muted); }
.sr-only{ position:absolute; left:-9999px; }
/* ---------- Header / Nav ---------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding: 14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  min-width: 220px;
}

.brand-mark{
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--surface-2);
  color: var(--text);
  display:grid;
  place-items:center;
  font-weight: 800;
  letter-spacing: .2px;
  border: 1px solid var(--border);
}

.brand-name{
  font-weight: 800;
  letter-spacing: .2px;
  font-size: 15px;
}

.brand-sub{
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

.nav-toggle{
  display:none;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  border-radius: 12px;
  padding: 10px 12px;
  cursor:pointer;
}

.nav{
  display:flex;
  align-items:center;
  gap:14px;
}

.nav a{
  padding: 10px 10px;
  border-radius: 12px;
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
}

.nav a.is-active{
  background: var(--surface-2);
  color: var(--text);
}

.nav-cta{
  display:flex;
  align-items:center;
  gap:10px;
  margin-left: 6px;
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius: 999px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-weight: 700;
  font-size: 14px;
  white-space:nowrap;
}

.btn:focus{
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

.btn-primary{
  background: var(--primary);
  color: var(--primary-text);
  border-color: transparent;
}
/* Force header CTA to stay white */
.site-header .btn-primary{
  color:#fff;
}

.btn-ghost{
  background: var(--surface);
}

/* ---------- Layout / Cards ---------- */
.site-main{ min-height: 60vh; }

.section{ padding: 56px 0; }
.hero{ padding: 52px 0 18px; }

.hero-grid{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 18px;
  align-items: stretch;
}

.card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}

.hero h1{
  margin: 10px 0 10px;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.hero p{
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  max-width: 60ch;
}

.badge{
  display:inline-flex;
  align-items:center;
  border: 1px solid var(--border);
  background: var(--surface-2);
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.h3{
  font-size: 16px;
  margin: 0 0 6px;
  font-weight: 800;
  letter-spacing: .2px;
}

.list{
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.kpi{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.kpi .k{
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px;
}

.k .num{ font-weight: 900; font-size: 15px; }
.k .lab{ color: var(--muted); font-size: 12px; margin-top: 4px; }

/* ---------- Footer ---------- */
.site-footer{
  border-top: 1px solid var(--border);
  background: var(--surface);
  padding: 32px 0;
}

.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 18px;
}

.footer-title{
  font-weight: 800;
  margin-bottom: 8px;
}

.footer-bottom{
  display:flex;
  justify-content: space-between;
  gap: 10px;
  padding-top: 14px;
  margin-top: 14px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  flex-wrap: wrap;
}

/* ---------- Mobile ---------- */
@media (max-width: 920px){
  .hero-grid{ grid-template-columns: 1fr; }
  .grid3{ grid-template-columns: 1fr; }
  .kpi{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }

  .nav-toggle{ display:inline-flex; }

  .nav{
    position: absolute;
    top: 68px;
    right: 20px;
    left: 20px;

    display:none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;

    padding: 12px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }
  .nav.is-open{ display:flex; }
  .nav-cta{ margin-left: 0; flex-direction: column; align-items: stretch; }
  .nav a{ padding: 12px 12px; }
}
.video-card{ padding: 20px; }

.video-wrap{
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #000;
  box-shadow: 0 10px 25px rgba(17,24,39,.06);
}

/* Vertical video that fills the box */
.intro-video{
  width: 100%;
  height: 420px;          /* tweak if you want taller/shorter */
  display: block;
  object-fit: cover;      /* crops edges, keeps it looking “full” */
  object-position: center;
}

@media (max-width: 920px){
  .intro-video{ height: 520px; } /* taller on mobile works well for vertical vids */
}
