:root {
  color-scheme: dark;
  --ink: #f8f2e6;
  --muted: #b6aea0;
  --panel: rgba(13, 17, 17, 0.72);
  --panel-strong: rgba(9, 12, 12, 0.94);
  --gold: #d8a641;
  --amber: #c36f2a;
  --emerald: #0b4d3d;
  --racing: #ff7b1a;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.55);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 15%, rgba(216, 166, 65, .18), transparent 24rem),
    radial-gradient(circle at 88% 12%, rgba(255, 123, 26, .16), transparent 22rem),
    radial-gradient(circle at 50% 80%, rgba(11, 77, 61, .42), transparent 35rem),
    #050606;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .24;
  background-image:
    linear-gradient(115deg, transparent 0 48%, rgba(255,255,255,.08) 49%, transparent 50% 100%),
    linear-gradient(45deg, rgba(255,255,255,.04) 25%, transparent 25% 50%, rgba(255,255,255,.04) 50% 75%, transparent 75%);
  background-size: 26px 26px, 18px 18px;
  mask-image: linear-gradient(to bottom, #000, transparent 80%);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.cursor-glow {
  position: fixed;
  width: 26rem;
  height: 26rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(216,166,65,.18), transparent 68%);
  transform: translate(-50%, -50%);
  left: 50%; top: 35%;
  pointer-events: none;
  filter: blur(4px);
  z-index: 0;
}

.cursor-sprite {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  pointer-events: none;
  user-select: none;
  font-size: clamp(1.2rem, 2.3vw, 2.15rem);
  line-height: 1;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.5));
  transform: translate(-50%, -50%) scale(var(--scale, 1));
  animation: fly-out 980ms cubic-bezier(.18,.8,.22,1) forwards;
  will-change: transform, opacity;
}

@keyframes fly-out {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(.45) rotate(0deg);
  }
  12% { opacity: 1; }
  100% {
    opacity: 0;
    transform:
      translate(calc(-50% + var(--drift-x, 90px)), calc(-50% + var(--drift-y, -90px)))
      scale(var(--scale, 1))
      rotate(var(--rotation, 240deg));
  }
}

@media (prefers-reduced-motion: reduce) {
  .cursor-sprite { display: none; }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem clamp(1rem, 4vw, 4rem);
  backdrop-filter: blur(22px);
  background: rgba(5, 6, 6, .62);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: .75rem; font-weight: 800; letter-spacing: -.03em; }
.brand-mark {
  display: grid; place-items: center;
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  font-family: "Playfair Display", serif;
  color: #09100d;
  background: linear-gradient(135deg, var(--ink), var(--gold));
  box-shadow: 0 0 0 4px rgba(216,166,65,.12);
}
nav { display: flex; align-items: center; gap: .65rem; }
nav a { color: var(--muted); font-weight: 700; font-size: .94rem; padding: .72rem .9rem; border-radius: 999px; }
nav a:hover, .nav-cta { color: var(--ink); background: rgba(255,255,255,.08); }

.section-shell { width: min(1180px, calc(100% - 2rem)); margin: 0 auto; position: relative; z-index: 1; }
.hero { min-height: 88vh; display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; padding: 5rem 0; }
.eyebrow, .section-kicker { color: var(--gold); text-transform: uppercase; letter-spacing: .18em; font-size: .76rem; font-weight: 900; }
.eyebrow { display: flex; align-items: center; gap: .75rem; }
.eyebrow span { width: 3.4rem; height: 2px; background: linear-gradient(90deg, var(--racing), var(--gold)); }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(3.6rem, 8vw, 7.6rem); line-height: .86; letter-spacing: -.08em; margin-bottom: 1.4rem; }
h1::first-line { font-family: "Playfair Display", serif; letter-spacing: -.04em; }
.hero-lede, .split p, .contact p { color: var(--muted); font-size: clamp(1rem, 2vw, 1.18rem); line-height: 1.75; max-width: 65ch; }
.hero-actions { display: flex; gap: .9rem; flex-wrap: wrap; margin: 2rem 0; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 3rem; border-radius: 999px; padding: .85rem 1.2rem; font-weight: 900; border: 1px solid var(--line); transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.primary { color: #120c04; background: linear-gradient(135deg, var(--gold), #ffe7a3 48%, var(--racing)); box-shadow: 0 16px 40px rgba(216,166,65,.24); }
.ghost { background: rgba(255,255,255,.06); color: var(--ink); }
.large { padding: 1rem 1.4rem; }

.stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .8rem; max-width: 36rem; }
.stats div { padding: 1.05rem; border: 1px solid var(--line); background: rgba(255,255,255,.045); border-radius: 1.2rem; }
.stats strong { display: block; font-size: 1.5rem; }
.stats span { color: var(--muted); font-size: .86rem; }

.hero-card { perspective: 1100px; }
.phone-frame {
  position: relative;
  padding: 1.15rem;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 2.1rem;
  background: linear-gradient(145deg, rgba(255,255,255,.16), rgba(255,255,255,.04)), var(--panel-strong);
  box-shadow: var(--shadow);
  transform: rotateY(-8deg) rotateX(4deg);
  overflow: hidden;
}
.phone-frame::before { content:""; position: absolute; inset: -40% -15% auto; height: 65%; background: radial-gradient(circle, rgba(216,166,65,.22), transparent 62%); }
.profile-top { display: grid; grid-template-columns: 8.5rem 1fr; gap: 1rem; align-items: center; position: relative; }
.avatar-ring { width: 8.5rem; height: 8.5rem; padding: .35rem; border-radius: 50%; background: conic-gradient(from 20deg, var(--gold), var(--emerald), var(--racing), var(--gold)); box-shadow: 0 0 50px rgba(216,166,65,.2); }
.avatar-ring img { width: 100%; height: 100%; object-fit: cover; object-position: 24% 17%; border-radius: 50%; border: .32rem solid #101313; }
.handle { color: var(--muted); font-weight: 800; margin-bottom: .25rem; }
.handle span { color: #ff305d; }
.profile-top h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); letter-spacing: -.06em; margin-bottom: .25rem; }
.profile-top p:last-child { color: var(--muted); line-height: 1.45; }
.mini-bio { display: grid; gap: .65rem; margin: 1.5rem 0; }
.mini-bio span, .dashboard-card { padding: .85rem 1rem; border: 1px solid var(--line); border-radius: 1rem; background: rgba(255,255,255,.055); }
.dashboard-card { display: grid; gap: .2rem; background: linear-gradient(135deg, rgba(11,77,61,.45), rgba(216,166,65,.16)); }
.dashboard-card span { color: var(--muted); }
.story-bubbles { display: flex; gap: .6rem; flex-wrap: wrap; margin-top: 1rem; }
.story-bubbles span { display: grid; place-items: center; width: 4.8rem; height: 4.8rem; border-radius: 50%; border: 2px solid rgba(255,255,255,.2); background: rgba(255,255,255,.06); font-size: .72rem; font-weight: 900; color: var(--ink); }

.story, .pursuits, .playbook, .contact { padding: 5rem 0; }
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 2rem; align-items: start; }
.split h2, .playbook h2, .contact h2 { font-size: clamp(2.2rem, 5vw, 4.5rem); line-height: .98; letter-spacing: -.06em; margin-bottom: 1rem; }
.pursuits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.pursuit, .step {
  min-height: 19rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 1.6rem;
  background: linear-gradient(160deg, rgba(255,255,255,.09), rgba(255,255,255,.035));
  box-shadow: 0 18px 45px rgba(0,0,0,.22);
}
.pursuit { position: relative; overflow: hidden; }
.pursuit::after { content:""; position: absolute; inset: auto -30% -30%; height: 55%; background: radial-gradient(circle, rgba(216,166,65,.22), transparent 65%); }
.pursuit.car::after { background: radial-gradient(circle, rgba(255,123,26,.24), transparent 65%); }
.pursuit.stout::after { background: radial-gradient(circle, rgba(11,77,61,.38), transparent 65%); }
.pursuit.whiskey::after { background: radial-gradient(circle, rgba(195,111,42,.30), transparent 65%); }
.pursuit.football::after { background: radial-gradient(circle, rgba(255,255,255,.16), transparent 65%); }
.icon { font-size: 2rem; margin-bottom: 3rem; }
.pursuit h3, .step h3 { font-size: 1.35rem; letter-spacing: -.04em; }
.pursuit p, .step p { color: var(--muted); line-height: 1.65; position: relative; z-index: 1; }

.timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }
.step span { display: inline-grid; place-items: center; width: 3rem; height: 3rem; border-radius: 50%; background: rgba(216,166,65,.14); color: var(--gold); font-weight: 900; margin-bottom: 3.5rem; }
.quote-band { margin: 2rem auto; width: min(1180px, calc(100% - 2rem)); border-radius: 2rem; padding: clamp(2rem, 5vw, 4rem); background: radial-gradient(circle at 18% 20%, rgba(255,255,255,.28), transparent 18rem), linear-gradient(135deg, rgba(216,166,65,.92), rgba(255,123,26,.85)); box-shadow: var(--shadow); }
.quote-band p { font-family: "Playfair Display", serif; font-size: clamp(2rem, 5vw, 4.8rem); line-height: 1; margin: 0; }
.contact { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
footer { color: var(--muted); text-align: center; padding: 2rem; border-top: 1px solid var(--line); }
.reveal { opacity: 1; transform: translateY(0); transition: opacity .7s ease, transform .7s ease; }
.reveal:not(.is-visible) { transform: translateY(10px); }

@media (max-width: 920px) {
  nav { display: none; }
  .hero, .split, .contact { grid-template-columns: 1fr; display: grid; }
  .pursuits { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: 1fr; }
  .phone-frame { transform: none; }
}
@media (max-width: 560px) {
  h1 { font-size: 3.45rem; }
  .stats, .pursuits { grid-template-columns: 1fr; }
  .profile-top { grid-template-columns: 1fr; }
  .avatar-ring { width: 7.2rem; height: 7.2rem; }
  .site-header { align-items: flex-start; }
}
