@import url("/assets/fonts.css");

:root {
  --blue: #3573ff;
  --blue-deep: #1f57d6;   /* button hover */
  --blue-tint: #eef3ff;
  --ink: #000000;
  --ink-soft: #12151c;
  --body: #4a4e57;
  --muted: #6b7280;
  --border: #e5e8ef;
  --surface: #ffffff;
  --wash: #f7f9fc;
  --radius: 14px;
  --wrap: 1120px;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--body);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { color: var(--ink); font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; margin: 0 0 .5em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: 1.125rem; font-weight: 700; }
p { margin: 0 0 1.1em; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
strong { color: var(--ink-soft); font-weight: 700; }
img { max-width: 100%; height: auto; display: block; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 760px; }
/* left-aligned measure, for use inside a full .wrap so it lines up with siblings */
.measure { max-width: 720px; }

/* ---------- header ---------- */
.site-head {
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 20;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(8px);
}
.site-head .wrap { display: flex; align-items: center; gap: 24px; height: 72px; }
.brand { display: flex; align-items: center; }
.brand img { height: 30px; width: auto; }
.nav { margin-left: auto; display: flex; align-items: center; gap: 28px; }
.nav a { color: var(--ink); font-weight: 600; font-size: .95rem; }
.nav a:hover { color: var(--blue); text-decoration: underline; }

.btn, .nav a.btn {
  display: inline-block; background: var(--blue); color: #fff;
  font-weight: 700; font-size: .95rem; padding: 11px 22px;
  border-radius: 10px; border: 1px solid var(--blue);
}
.btn:hover, .nav a.btn:hover {
  background: var(--blue-deep); border-color: var(--blue-deep);
  color: #fff; text-decoration: none;
}
.btn-lg { font-size: 1rem; padding: 14px 28px; }

/* ---------- sections ---------- */
section { padding: 76px 0; }
.hero { padding: 96px 0 72px; }
.hero p.lede { font-size: 1.18rem; max-width: 620px; margin-bottom: 1.8em; }
.eyebrow {
  display: inline-block; font-size: .78rem; font-weight: 700;
  letter-spacing: .09em; text-transform: uppercase; color: var(--blue);
  background: var(--blue-tint); padding: 6px 13px; border-radius: 100px; margin-bottom: 22px;
}
.wash { background: var(--wash); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* ---------- platform grid ---------- */
.platform-grid {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 14px; max-width: 780px; margin: 0 auto;
}
.platform-grid a, .platform-grid span {
  display: block; line-height: 0; border-radius: 12px;
  transition: transform .18s ease;
}
.platform-grid img {
  width: 46px; height: 46px; object-fit: contain; border-radius: 12px;
}
.platform-grid a:hover, .platform-grid span:hover { transform: translateY(-3px); }
@media (max-width: 520px) {
  .platform-grid { gap: 11px; }
  .platform-grid img { width: 40px; height: 40px; }
}

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
}
.card .dot {
  width: 44px; height: 44px; border-radius: 12px; background: var(--blue-tint);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
  color: var(--blue);
}
.card .dot svg { width: 22px; height: 22px; display: block; }
.card p:last-child { margin-bottom: 0; }

.shot {
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; background: var(--wash);
}
.shot-placeholder {
  aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: .95rem; text-align: center; padding: 24px;
}

/* ---------- legal / prose pages ---------- */
.page-head { padding: 64px 0 24px; border-bottom: 1px solid var(--border); }
.page-head p { color: var(--muted); margin: 0; font-size: .95rem; }
.prose { padding: 48px 0 80px; }
.prose h2 { font-size: 1.35rem; margin-top: 2.4em; }
.prose h2:first-of-type { margin-top: 0; }
.prose h3 { margin-top: 1.8em; font-size: 1.02rem; }
.prose ul { padding-left: 1.2em; margin: 0 0 1.1em; }
.prose li { margin-bottom: .5em; }
.prose .box {
  background: var(--wash); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px 24px; margin: 0 0 1.6em;
}
.prose .box p:last-child { margin-bottom: 0; }

/* ---------- footer ---------- */
.site-foot { border-top: 1px solid var(--border); background: var(--wash); padding: 56px 0 32px; }
.foot-cols { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; align-items: start; }
.foot-cols img { height: 58px; width: auto; }
.foot-cols h4 {
  font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink); margin: 0 0 14px;
}
.foot-cols ul { list-style: none; margin: 0; padding: 0; }
.foot-cols li { margin-bottom: 9px; }
.foot-cols li a { color: var(--body); font-size: .95rem; }
.foot-cols li a:hover { color: var(--blue); text-decoration: underline; }
.foot-bar {
  margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px 24px;
  font-size: .88rem; color: var(--muted);
}
.foot-bar a { color: var(--muted); }
.foot-bar a:hover { color: var(--blue); text-decoration: underline; }

@media (max-width: 860px) {
  .grid-3 { grid-template-columns: 1fr; }
  .foot-cols { grid-template-columns: 1fr 1fr; }
  .foot-cols > div:first-child { grid-column: 1 / -1; }
  .nav { gap: 18px; }
  .nav a.hide-sm { display: none; }
  section { padding: 56px 0; }
  .hero { padding: 64px 0 48px; }
}
@media (max-width: 520px) {
  .foot-cols { grid-template-columns: 1fr; }
}
