:root {
  --bg: #0b0f14;
  --bg-card: #131a22;
  --bg-card-hover: #18212c;
  --blue: #3fb6ff;
  --blue-dim: rgba(63, 182, 255, 0.15);
  --orange: #ffb42a;
  --text: #e8edf2;
  --muted: #8b98a5;
  --max: 1120px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}
a { color: var(--blue); }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* Header */
header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(11, 15, 20, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; max-width: var(--max); margin: 0 auto; }
.brand { display: flex; align-items: center; gap: 10px; color: #fff; text-decoration: none; font-weight: 800; font-size: 1.1rem; letter-spacing: .02em; }
.logo-img { height: 30px; width: auto; display: block; }
.chip-row { margin-top: 16px; display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  padding: 5px 14px; border-radius: 999px; font-size: .78rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; color: var(--muted);
  border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.03);
}
nav.links a { color: var(--muted); text-decoration: none; margin-left: 24px; font-size: .92rem; font-weight: 600; }
nav.links a:hover { color: var(--blue); }
nav.links a.pick-link { color: var(--orange); }

/* Hero */
.hero { padding: 90px 0 70px; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); line-height: 1.1; font-weight: 800; }
.hero h1 span { color: var(--blue); text-shadow: 0 0 24px rgba(63,182,255,.45); }
.tagline { margin-top: 14px; font-size: 1.25rem; color: var(--orange); font-weight: 700; letter-spacing: .12em; }
.hero p.lede { margin-top: 18px; color: var(--muted); font-size: 1.08rem; max-width: 480px; }
.cta-row { margin-top: 30px; display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-block; padding: 13px 26px; border-radius: 10px; text-decoration: none;
  font-weight: 700; font-size: .95rem; transition: transform .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-blue { background: var(--blue); color: #06121c; box-shadow: 0 0 24px rgba(63,182,255,.35); }
.btn-ghost { border: 1.5px solid rgba(255,255,255,.2); color: var(--text); }
.btn-orange { background: var(--orange); color: #1c1200; box-shadow: 0 0 24px rgba(255,180,42,.3); }
.hero-photo img { width: 100%; border-radius: 16px; box-shadow: 0 20px 60px rgba(0,0,0,.5); }

/* Sections */
section { padding: 70px 0; }
.label { color: var(--blue); font-size: .8rem; font-weight: 800; text-transform: uppercase; letter-spacing: .2em; margin-bottom: 8px; }
h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 8px; }
.sub { color: var(--muted); margin-bottom: 32px; }

/* Video grids */
.vid-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 22px; }
.vid-card {
  background: var(--bg-card); border-radius: 14px; overflow: hidden; text-decoration: none;
  color: var(--text); transition: transform .15s ease, background .15s ease;
  border: 1px solid rgba(255,255,255,.05);
}
.vid-card:hover { transform: translateY(-4px); background: var(--bg-card-hover); }
.vid-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.vid-card .t { padding: 14px 16px 16px; font-weight: 600; font-size: .95rem; line-height: 1.4; }
.vid-fallback { color: var(--muted); }

/* Picks teaser */
.picks-banner {
  background: linear-gradient(120deg, rgba(255,180,42,.22), rgba(63,182,255,.10));
  border: 2px solid rgba(255,180,42,.55); border-radius: 20px; padding: 48px 44px;
  display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap;
  box-shadow: 0 0 44px rgba(255,180,42,.14);
}
.picks-banner h3 { font-size: 1.9rem; margin-bottom: 8px; }
.picks-banner p { color: var(--text); font-size: 1.05rem; max-width: 560px; }
.btn-big { font-size: 1.05rem; padding: 16px 32px; }

/* Work with me */
.work-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; }
.work-grid ul { list-style: none; margin-top: 18px; }
.work-grid li { padding-left: 26px; position: relative; margin-bottom: 12px; color: var(--muted); }
.work-grid li::before { content: "▸"; color: var(--orange); position: absolute; left: 0; }
form label { display: block; font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin: 16px 0 6px; }
form input, form textarea {
  width: 100%; padding: 12px 14px; border-radius: 10px; border: 1px solid rgba(255,255,255,.12);
  background: var(--bg-card); color: var(--text); font-family: inherit; font-size: 1rem;
}
form input:focus, form textarea:focus { outline: 2px solid var(--blue); border-color: transparent; }
form button { margin-top: 22px; cursor: pointer; border: none; }

/* Newsletter */
.newsletter { text-align: center; background: var(--bg-card); border-radius: 20px; padding: 56px 32px; border: 1px solid rgba(63,182,255,.15); }
.newsletter h2 span { color: var(--blue); }
.newsletter p { color: var(--muted); max-width: 520px; margin: 0 auto 26px; }
.kit-embed { max-width: 480px; margin: 0 auto; }
.kit-embed .formkit-form { background: transparent !important; border: none !important; }

/* Footer */
footer { border-top: 1px solid rgba(255,255,255,.06); padding: 40px 24px; text-align: center; color: var(--muted); font-size: .88rem; }
.socials { display: flex; justify-content: center; gap: 22px; margin-bottom: 18px; flex-wrap: wrap; }
.socials a { color: var(--text); text-decoration: none; font-weight: 600; }
.socials a:hover { color: var(--blue); }
.disclosure { max-width: 640px; margin: 14px auto 0; font-size: .78rem; color: #5c6873; }

/* Picks article pages */
.article { max-width: 780px; margin: 0 auto; padding: 60px 24px; }
.article h1 { font-size: 2.2rem; line-height: 1.15; margin-bottom: 10px; }
.article .meta { color: var(--muted); margin-bottom: 8px; }
.fun-disclosure {
  background: rgba(255,180,42,.1); border: 1px solid rgba(255,180,42,.35);
  border-radius: 12px; padding: 14px 18px; margin: 22px 0 34px; font-size: .95rem;
}
.product {
  background: var(--bg-card); border-radius: 16px; padding: 24px; margin-bottom: 22px;
  border: 1px solid rgba(255,255,255,.05); display: grid; grid-template-columns: 48px 132px 1fr; gap: 20px; align-items: center;
}
.product .p-img {
  width: 132px; height: 132px; object-fit: contain; border-radius: 12px; background: #fff; padding: 8px;
}
.product .num {
  font-size: 2rem; font-weight: 900; color: var(--blue); text-align: center;
  text-shadow: 0 0 18px rgba(63,182,255,.5);
}
.product h3 { font-size: 1.15rem; margin-bottom: 6px; }
.product p { color: var(--muted); font-size: .95rem; margin-bottom: 14px; }
.product .btn { font-size: .85rem; padding: 10px 20px; }
.pick-list-card {
  background: var(--bg-card); border-radius: 16px; padding: 28px; margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,.05); display: block; text-decoration: none; color: var(--text);
  transition: transform .15s ease;
}
.pick-list-card:hover { transform: translateY(-3px); border-color: rgba(255,180,42,.4); }
.pick-list-card .date { color: var(--muted); font-size: .85rem; }
.pick-list-card h3 { font-size: 1.3rem; margin: 6px 0; }
.pick-list-card p { color: var(--muted); }

@media (max-width: 800px) {
  .hero-grid, .work-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero { padding: 56px 0 40px; }
  section { padding: 50px 0; }
  .nav { flex-direction: column; gap: 12px; padding: 14px 16px; }
  nav.links { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 18px; }
  nav.links a { margin-left: 0; font-size: .82rem; white-space: nowrap; }
  .product { grid-template-columns: 40px 1fr; gap: 14px; }
  .product .p-img { grid-column: 1 / -1; width: 100%; height: 160px; }
  .logo-img { height: 24px; }
}
