/* Base tokens (approximate to original bindbops spacing/colors) */
:root {
  --bg: #ffffff;
  --text: #111827; /* gray-900 */
  --muted: #6b7280; /* gray-500 */
  --border: #e5e7eb; /* gray-200 */
  --accent: #111827;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--text); font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 16px; }

/* Nav */
.nav { position: sticky; top: 0; z-index: 50; backdrop-filter: blur(8px); background: rgba(255,255,255,0.85); border-bottom: 1px solid var(--border); }
.nav-inner { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; }
.brand { font-weight: 700; letter-spacing: -0.01em; font-size: 20px; }
.nav-links { display: none; gap: 12px; align-items: center; }
.nav-links a { font-size: 14px; border-radius: 10px; padding: 9px 12px; transition: background .15s ease, color .15s ease; }
.nav-links a:hover { background: #111827; color: #fff; }
.btn { display: inline-block; padding: 10px 14px; border: 1px solid var(--text); border-radius: 10px; font-weight: 600; }
.menu-btn { border: 1px solid var(--border); background: #fff; padding: 8px; border-radius: 10px; }
.menu-icon { width: 24px; height: 2px; background: var(--text); position: relative; display: block; }
.menu-icon::before, .menu-icon::after { content: ""; position: absolute; left: 0; right: 0; height: 2px; background: var(--text); }
.menu-icon::before { top: -7px; }
.menu-icon::after { top: 7px; }
.mobile-panel { display: none; border-top: 1px solid var(--border); }
.mobile-panel a { display: block; padding: 12px 0; border-bottom: 1px solid var(--border); }

/* Sections */
section { border-top: 1px solid var(--border); }
.section { padding: 72px 0; }
.hero { border-top: 0; }
.eyebrow { text-transform: uppercase; letter-spacing: 0.2em; font-size: 12px; color: var(--muted); }
.eyebrow-normal { letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-size: 13px; }
.display { font-weight: 700; font-size: clamp(36px, 5vw, 64px); letter-spacing: -0.02em; line-height: 1.05; margin: 16px 0; }
.lead { font-size: 18px; line-height: 1.7; color: var(--muted); margin: 0 0 12px; }
h2 { font-size: clamp(26px, 3.4vw, 40px); margin: 0 0 12px; letter-spacing: -0.01em; }
h3 { font-size: clamp(20px, 2.4vw, 28px); margin: 0 0 20px; letter-spacing: -0.01em; }
h4 { font-size: 18px; margin: 0 0 8px; letter-spacing: -0.01em; }
p { line-height: 1.75; color: var(--muted); margin: 0 0 14px; }

.grid-2 { display: grid; gap: 28px; grid-template-columns: 1fr; }
.grid-2.align-center { align-items: center; }
.grid-3 { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 768px) {
  .nav-links { display: inline-flex; }
  .menu-btn { display: none; }
  .grid-2 { grid-template-columns: 1fr 1fr; gap: 40px; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

.card { border: 1px solid var(--border); border-radius: 16px; padding: 20px; background: #fff; height: 100%; }
.cta { display: inline-block; padding: 12px 16px; border: 1px solid var(--text); border-radius: 12px; font-weight: 600; transition: transform .08s ease, background .15s ease, color .15s ease; }
.cta.primary { background: var(--text); color: #fff; }
.cta:hover { transform: translateY(-1px); }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; }

.media-frame { position: relative; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; aspect-ratio: 16/9; background: linear-gradient(180deg,#fafafa,#f3f4f6); display: flex; align-items: center; justify-content: center; }
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
.media-fallback { position: absolute; inset: 0; display: none; align-items: center; justify-content: center; color: var(--muted); }

.team { display: grid; gap: 24px; grid-template-columns: 1fr; }
.team-card { border: 1px solid var(--border); border-radius: 16px; padding: 16px; display: flex; gap: 16px; align-items: center; }
.avatar { width: 72px; height: 72px; border-radius: 9999px; overflow: hidden; background: #f3f4f6; flex: 0 0 auto; }
.muted { color: var(--muted); }

.section-muted { background: #f9fafb; }
.split-row { display: flex; gap: 24px; align-items: center; justify-content: space-between; flex-wrap: wrap; }

/* Footer */
footer { border-top: 1px solid var(--border); }
.pad-footer { padding: 48px 16px; }
.footer-row { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; justify-content: space-between; }
.social { display: inline-flex; gap: 12px; align-items: center; }
.made-by { margin-top: 12px; }
