/* DocumentOps for Word - minimal, fast, no-tracking static site */
:root{
  --bg:#0b0f17;
  --panel:#111827;
  --panel2:#0f172a;
  --text:#e5e7eb;
  --muted:#9ca3af;
  --line:rgba(229,231,235,.14);
  --accent:#60a5fa;
  --accent2:#a78bfa;
  --shadow: 0 12px 30px rgba(0,0,0,.35);
  --radius: 16px;
  --max: 1120px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:var(--font);
  background: radial-gradient(1100px 800px at 10% 0%, rgba(96,165,250,.18), transparent 55%),
              radial-gradient(1100px 800px at 95% 10%, rgba(167,139,250,.16), transparent 55%),
              var(--bg);
  color:var(--text);
  line-height:1.5;
}

a{color:inherit}
a:hover{color:var(--accent)}
small{color:var(--muted)}
code{background:rgba(229,231,235,.08); padding:.1rem .35rem; border-radius:8px}

.container{max-width:var(--max); margin:0 auto; padding:24px}
.header{
  position:sticky; top:0; z-index:20;
  backdrop-filter: blur(10px);
  background: rgba(11,15,23,.7);
  border-bottom: 1px solid var(--line);
}
.nav{
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  padding:14px 0;
}
.brand{display:flex; align-items:center; gap:10px; text-decoration:none}
.logo{
  width:34px; height:34px; border-radius:10px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: var(--shadow);
}
.brand span{font-weight:700; letter-spacing:.2px}
.links{display:flex; gap:14px; flex-wrap:wrap; align-items:center}
.links a{
  text-decoration:none;
  color:var(--muted);
  padding:8px 10px;
  border-radius:10px;
}
.links a[aria-current="page"]{color:var(--text); background:rgba(229,231,235,.06); border:1px solid var(--line)}
.links a:hover{color:var(--text); background:rgba(229,231,235,.06)}

.hero{padding:34px 0 22px 0}
.kicker{
  display:inline-flex; gap:8px; align-items:center;
  padding:6px 10px;
  border:1px solid var(--line);
  border-radius:999px;
  background:rgba(229,231,235,.04);
  color:var(--muted);
  font-size:13px;
}
.h1{
  margin:14px 0 10px 0;
  font-size:44px;
  letter-spacing:-.9px;
  line-height:1.08;
}
.subhead{max-width:72ch; color:var(--muted); font-size:18px}
.ctaRow{display:flex; gap:12px; flex-wrap:wrap; margin-top:18px}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(229,231,235,.06);
  text-decoration:none;
  color:var(--text);
  font-weight:650;
}
.btn.primary{
  border-color:rgba(96,165,250,.55);
  background: linear-gradient(180deg, rgba(96,165,250,.22), rgba(96,165,250,.10));
}
.btn:hover{transform: translateY(-1px)}
.btn:active{transform: translateY(0px)}
.grid{display:grid; grid-template-columns: repeat(12, 1fr); gap:16px; margin-top:18px}
.card{
  border:1px solid var(--line);
  background: linear-gradient(180deg, rgba(229,231,235,.06), rgba(229,231,235,.02));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:16px;
}
.card h3{margin:0 0 6px 0; font-size:16px}
.card p{margin:0; color:var(--muted)}
.section{padding:20px 0}
.section h2{margin:0 0 10px 0; font-size:24px}
.section p{margin:0 0 10px 0; color:var(--muted); max-width:86ch}
.list{margin:10px 0 0 0; padding-left:18px; color:var(--muted)}
.list li{margin:8px 0}
.hr{height:1px; background:var(--line); margin:18px 0}
.table{
  width:100%; border-collapse:separate; border-spacing:0;
  overflow:hidden; border-radius:16px;
  border:1px solid var(--line);
}
.table th, .table td{padding:12px 12px; border-bottom:1px solid var(--line); vertical-align:top}
.table th{font-size:12px; text-transform:uppercase; letter-spacing:.14em; color:var(--muted); background:rgba(229,231,235,.03)}
.table tr:last-child td{border-bottom:none}
.footer{border-top:1px solid var(--line); margin-top:26px; padding:18px 0 6px 0; color:var(--muted)}
.footer a{color:var(--muted); text-decoration:none}
.footer a:hover{color:var(--text)}
.footerRow{display:flex; justify-content:space-between; align-items:center; gap:12px; flex-wrap:wrap}
.twoCol{display:grid; grid-template-columns: 1fr 1fr; gap:16px}
@media (max-width: 900px){
  .h1{font-size:36px}
  .twoCol{grid-template-columns:1fr}
}
.embedPlaceholder{
  display:flex; align-items:center; justify-content:center;
  min-height:240px;
  border-radius:16px;
  border:1px dashed rgba(229,231,235,.25);
  background:rgba(229,231,235,.03);
  color:var(--muted);
  text-align:center;
  padding:16px;
}
.notice{
  border:1px solid rgba(96,165,250,.35);
  background:rgba(96,165,250,.08);
  border-radius:16px;
  padding:12px 14px;
  color:var(--text);
}
.form{display:grid; gap:10px}
.input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(229,231,235,.03);
  color:var(--text);
  font:inherit;
}
textarea{min-height:130px; resize:vertical}
