/* bagboy — the site. Black, bright green, heavy condensed italics. */
:root {
  --bg: #050606;
  --bg-2: #0b0d0d;
  --card: #111414;
  --line: rgba(255, 255, 255, 0.09);
  --line-2: rgba(255, 255, 255, 0.16);
  --ink: #ffffff;
  --ink-2: rgba(255, 255, 255, 0.82);
  --muted: rgba(255, 255, 255, 0.62);
  --faint: rgba(255, 255, 255, 0.4);
  --green: #3cc86c;
  --green-2: #34b862;
  --green-deep: #036c32;
  --red: #ff5a52;
  --gold: #f2c14e;
  --max: 1240px;
  --pad: clamp(20px, 5vw, 64px);
  --display: "Barlow Condensed", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --display-2: "Barlow Condensed", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --hand: "Permanent Marker", "Marker Felt", "Comic Sans MS", cursive;
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--ink); font-family: var(--body); font-size: 16px; line-height: 1.55; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; border-radius: 6px; }
.skip { position: absolute; left: -9999px; top: 8px; background: var(--green); color: #000; padding: 10px 14px; border-radius: 8px; z-index: 100; font-weight: 700; }
.skip:focus { left: 12px; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }

/* ---------- Header ---------- */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 20; transition: background .25s, border-color .25s; border-bottom: 1px solid transparent; }
.nav.scrolled { background: rgba(5, 6, 6, 0.86); backdrop-filter: saturate(160%) blur(14px); -webkit-backdrop-filter: saturate(160%) blur(14px); border-bottom-color: var(--line); }
.nav .wrap { transition: height .25s; }
.nav.scrolled .wrap { height: 70px; }
.nav.scrolled .logo img { height: 34px; }
.nav.solid { position: sticky; top: 0; background: rgba(5, 6, 6, 0.86); backdrop-filter: saturate(160%) blur(14px); -webkit-backdrop-filter: saturate(160%) blur(14px); border-bottom: 1px solid var(--line); }
.nav .wrap { display: flex; align-items: center; gap: 28px; height: 88px; }
.nav.solid .wrap { height: 70px; }
.nav .logo img { height: 42px; width: auto; }
.nav.solid .logo img { height: 34px; }
.nav ul { list-style: none; display: flex; gap: 38px; margin: 0 auto; padding: 0; }
.nav ul a { font-size: 14.5px; font-weight: 600; color: var(--ink-2); transition: color .15s; }
.nav ul a:hover { color: #fff; }
.btn-outline { display: inline-flex; align-items: center; justify-content: center; height: 46px; padding: 0 26px; border: 1.5px solid rgba(255,255,255,.9); border-radius: 14px; font-weight: 700; font-size: 15px; background: rgba(0,0,0,.35); transition: background .15s, color .15s; white-space: nowrap; }
.btn-outline:hover { background: #fff; color: #000; }
.menu-btn { display: none; margin-left: auto; width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--line-2); background: rgba(0,0,0,.4); color: #fff; }
@media (max-width: 900px) {
  .nav ul, .nav .btn-outline { display: none; }
  .menu-btn { display: inline-grid; place-items: center; }
  .nav.open ul { display: flex; position: absolute; top: 76px; left: 16px; right: 16px; flex-direction: column; gap: 4px; background: #0d1010; border: 1px solid var(--line-2); border-radius: 18px; padding: 10px; }
  .nav.open ul a { display: block; padding: 14px 14px; font-size: 17px; }
}

/* ---------- Hero ---------- */
.hero { position: relative; min-height: clamp(560px, min(59vw, calc(100svh - 190px)), 800px); background: #000; overflow: hidden; isolation: isolate; }
.hero-photo { position: absolute; inset: 0; z-index: -2; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 58% 38%; }
/* The reference: the whole photo, darkened to near-black behind the words, the sunset glowing through on the right. */
.hero::before { content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.8) 26%, rgba(0,0,0,.42) 44%, rgba(0,0,0,.12) 62%, rgba(0,0,0,.05) 100%),
    linear-gradient(180deg, rgba(0,0,0,.5) 0%, rgba(0,0,0,0) 16%, rgba(0,0,0,0) 70%, #000 100%); }
.hero .wrap { position: relative; padding-top: clamp(104px, 14svh, 136px); padding-bottom: 40px; }
.eyebrow { font-size: 13px; font-weight: 800; letter-spacing: .28em; text-transform: uppercase; color: var(--ink-2); margin: 0 0 14px; }
.eyebrow.green { color: var(--green); }
/* Barlow Condensed Black Italic — the reference's headline face. */
.display { font-family: var(--display); font-weight: 900; font-style: italic; text-transform: uppercase; line-height: .87; letter-spacing: -.012em; margin: 0; }
.display .ln { display: block; white-space: nowrap; }
.hero h1 { font-size: clamp(52px, min(7.45vw, 10.2svh), 112px); }
.hero h1 .green, .display .green { color: var(--green); }
.stroke { display: block; width: clamp(150px, 16vw, 210px); height: auto; margin: clamp(14px, 2.4svh, 22px) 0 clamp(16px, 2.8svh, 26px); }
.lede { font-size: clamp(17px, 1.45vw, 19.5px); line-height: 1.45; color: var(--ink-2); max-width: 37ch; margin: 0 0 clamp(22px, 3.6svh, 34px); }
.stores { display: flex; flex-wrap: wrap; gap: 16px; }
.store { display: inline-flex; align-items: center; gap: 10px; height: 54px; padding: 0 20px 0 16px; border-radius: 12px; border: 1.5px solid rgba(255,255,255,.85); background: #000; color: #fff; transition: transform .15s; }
.store:hover { border-color: var(--green); }
.store.light { background: #fff; color: #000; border-color: #fff; }
.store svg { flex: none; }
.store span { display: flex; flex-direction: column; line-height: 1.05; }
.store small { font-size: 11px; font-weight: 500; letter-spacing: .01em; }
.store b { font-size: 22px; font-weight: 600; letter-spacing: -.02em; }
@media (max-width: 760px) {
  .hero-photo { inset: 0; }
  .hero::before { background: linear-gradient(180deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.45) 40%, rgba(0,0,0,.9) 75%, #050606 100%); }
  .hero .wrap { padding-top: 112px; }
}

/* ---------- Full-bleed photo band ---------- */
.band { position: relative; min-height: clamp(420px, 47vw, 720px); display: flex; align-items: flex-start; overflow: hidden; isolation: isolate; }
.band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 60%; z-index: -2; }
.band::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, #000 0%, rgba(0,0,0,.35) 18%, rgba(0,0,0,0) 45%, rgba(0,0,0,.15) 80%, #070909 100%), linear-gradient(90deg, rgba(0,0,0,.55), rgba(0,0,0,0) 55%); }
.band .wrap { width: 100%; padding-top: clamp(60px, 7vw, 110px); }
.band h2 { font-size: clamp(52px, 6.4vw, 100px); }
.band p { font-size: clamp(17px, 1.5vw, 20px); color: #fff; max-width: 30ch; margin: 18px 0 0; text-shadow: 0 2px 20px rgba(0,0,0,.5); }

/* ---------- Feature strip ---------- */
.strip { background: #000; }
.strip ol { list-style: none; margin: 0 auto; padding: 34px var(--pad); max-width: var(--max); display: grid; grid-template-columns: repeat(6, 1fr); }
.strip li { text-align: center; padding: 0 10px; border-left: 1px solid rgba(255,255,255,.14); }
.strip li:first-child { border-left: 0; }
.strip svg { width: 36px; height: 36px; color: #fff; margin: 0 auto 16px; display: block; }
.strip h3 { font-family: var(--display-2); font-weight: 700; font-size: 18px; letter-spacing: .005em; text-transform: uppercase; margin: 0 0 6px; white-space: nowrap; }
.strip p { font-size: 13px; line-height: 1.45; color: var(--muted); margin: 0 auto; max-width: 20ch; }
@media (max-width: 980px) { .strip ol { grid-template-columns: repeat(3, 1fr); row-gap: 30px; } .strip li:nth-child(4) { border-left: 0; } }
@media (max-width: 560px) { .strip ol { grid-template-columns: repeat(2, 1fr); } .strip li { border-left: 0; } }

/* ---------- Photo tiles (real images; scrawl is baked into them) ---------- */
.tiles { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; padding: 12px; background: var(--bg); margin: 0; }
.tile { position: relative; aspect-ratio: 0.57; border-radius: 22px; overflow: hidden; background: #111; margin: 0; }
.tile > img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) { .tiles { grid-template-columns: repeat(5, 72%); overflow-x: auto; scroll-snap-type: x mandatory; } .tile { scroll-snap-align: center; } }

/* An image that hasn't been dropped in yet: a plain labeled slot, never a fake. */
.missing { background: repeating-linear-gradient(135deg, #0c0f0f 0 14px, #0a0c0c 14px 28px) !important; outline: 1.5px dashed rgba(60,200,108,.45); outline-offset: -1.5px; display: grid; place-items: center; }
.missing::after { content: attr(data-need); font: 800 13px/1.3 var(--body); letter-spacing: .14em; color: var(--green); text-align: center; padding: 0 16px; }

/* ---------- Sections ---------- */
section { position: relative; }
.sec { padding: clamp(80px, 10vw, 140px) 0; }
.sec-head h2 { font-size: clamp(56px, 7vw, 104px); }
.sec-head p { color: var(--ink-2); font-size: clamp(17px, 1.5vw, 20px); line-height: 1.45; max-width: 32ch; margin: 22px 0 0; }

/* Built for the boys: copy left, the three-phone image right, five features under it. */
.built { background: #050606; padding: clamp(70px, 8vw, 110px) 0 clamp(60px, 7vw, 90px); overflow: hidden; }
.built-grid { display: grid; grid-template-columns: minmax(300px, .75fr) 1.6fr; gap: 32px; align-items: center; }
.built h2 { font-size: clamp(56px, 7vw, 104px); }
.built .lede { margin: 22px 0 0; max-width: 30ch; }
.built-img { margin: 0 calc(var(--pad) * -1) 0 0; aspect-ratio: 3 / 2; border-radius: 0; overflow: hidden; }
.built-img img { width: 100%; height: 100%; object-fit: cover;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 14%, #000 90%, transparent 100%), linear-gradient(180deg, transparent 0%, #000 10%, #000 86%, transparent 100%);
  -webkit-mask-composite: source-in; mask-image: linear-gradient(90deg, transparent 0%, #000 14%, #000 90%, transparent 100%), linear-gradient(180deg, transparent 0%, #000 10%, #000 86%, transparent 100%); mask-composite: intersect; }
.feat5 { list-style: none; margin: 56px 0 0; padding: 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: 28px; }
.feat5 li { display: grid; grid-template-columns: 44px 1fr; gap: 14px; align-items: start; }
.feat5 svg { width: 40px; height: 40px; color: var(--green); }
.feat5 h3 { font-family: var(--display-2); font-size: 19px; font-weight: 800; text-transform: uppercase; margin: 2px 0 4px; letter-spacing: .01em; }
.feat5 p { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.45; }
@media (max-width: 1000px) { .built-grid { grid-template-columns: 1fr; } .built-img { margin: 0 calc(var(--pad) * -1); } .feat5 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .feat5 { grid-template-columns: 1fr; } }

/* Feature sections — the reference layout: copy on black at left; the image
   (phone + photo + scrawl, one generated picture) fills the right and melts into the black. */
.feature { background: #050606; min-height: max(560px, 44vw); display: flex; align-items: center; overflow: hidden; isolation: isolate; }
.feature-img { position: absolute; top: 50%; right: 0; width: 66%; aspect-ratio: 3 / 2; transform: translateY(-50%); margin: 0; z-index: -1; }
.feature-img img { width: 100%; height: 100%; object-fit: cover; object-position: 100% 50%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 22%), linear-gradient(180deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image: linear-gradient(90deg, transparent 0%, #000 22%), linear-gradient(180deg, transparent 0%, #000 12%, #000 88%, transparent 100%); mask-composite: intersect; }
.feature .wrap { width: 100%; }
.feature-copy { max-width: 440px; padding: clamp(70px, 8vw, 110px) 0; }
.feature h2 { font-size: clamp(56px, 6.6vw, 100px); }
.feature .lede { margin: 22px 0 0; max-width: 34ch; }
.feature .stroke { margin: 26px 0 30px; }
.feature .fine { font-size: 13px; color: var(--faint); margin: 0; line-height: 1.5; max-width: 44ch; }
.feature + .feature { border-top: 1px solid rgba(255,255,255,.05); }
@media (max-width: 900px) {
  .feature { flex-direction: column; align-items: stretch; min-height: 0; }
  .feature-img { position: relative; top: auto; width: 100%; aspect-ratio: 3 / 2; transform: none; order: 2; }
  .feature-img img { -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 18%); mask-image: linear-gradient(180deg, transparent 0%, #000 18%); }
  .feature-copy { max-width: none; padding: 64px 0 24px; }
}

/* Icon row (Skins · Nassau · Wolf · Match Play · Custom) */
.icon-row { list-style: none; display: flex; flex-wrap: wrap; gap: 22px 26px; margin: 0; padding: 0; }
.icon-row li { display: grid; justify-items: center; gap: 10px; font-size: 13.5px; font-weight: 600; color: var(--ink-2); }
.icon-row span { width: 58px; height: 58px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.8); display: grid; place-items: center; }
.icon-row svg { width: 26px; height: 26px; color: #fff; }

/* White pill CTA, like "Find Your Crew >" */
.pill-cta { display: inline-flex; align-items: center; gap: 14px; height: 58px; padding: 0 30px; border-radius: 99px; background: #fff; color: #000; font-weight: 700; font-size: 17px; transition: transform .15s, background .15s; }


.fine { font-size: 13px; color: var(--faint); line-height: 1.5; }

/* Final CTA */
.cta { text-align: center; background: #050606; overflow: hidden; isolation: isolate; min-height: clamp(560px, 62vw, 960px); padding-top: clamp(70px, 7vw, 120px) !important; }
.cta-img { position: absolute; inset: 0; margin: 0; z-index: -1; }
.cta-img img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 70%; }
.cta-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, #050606 0%, rgba(5,6,6,.55) 16%, rgba(5,6,6,.12) 42%, rgba(5,6,6,0) 70%, rgba(5,6,6,.5) 92%, #030404 100%); }
.cta-img.missing::after { position: static; background: none; }
.cta h2 { font-size: clamp(64px, 9vw, 140px); }
.cta .stores { justify-content: center; margin-top: 40px; }
.cta p { color: #fff; font-size: 19px; margin: 22px auto 0; max-width: 34ch; text-shadow: 0 2px 18px rgba(0,0,0,.6); }

/* FAQ */
.faq { max-width: 860px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--line); padding: 22px 0; }
.faq summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 20px; font-weight: 700; font-size: 18px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--green); font-weight: 400; font-size: 28px; line-height: 20px; }
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--ink-2); margin: 14px 0 0; max-width: 70ch; }

/* ---------- Footer ---------- */
footer { border-top: 1px solid var(--line); padding: 56px 0 40px; background: #030404; }
footer .cols { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 32px; }
footer img { height: 34px; width: auto; }
footer h4 { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin: 0 0 14px; }
footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
footer a { color: var(--ink-2); font-size: 14.5px; }
footer a:hover { color: #fff; }
footer .legal { margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: 13px; color: var(--faint); }
@media (max-width: 760px) { footer .cols { grid-template-columns: 1fr 1fr; } footer .cols > :first-child { grid-column: 1 / -1; } }

/* ---------- Document pages (privacy, terms, support) ---------- */
.doc { max-width: 820px; margin: 0 auto; padding: 64px var(--pad) 110px; }
.doc h1 { font-size: clamp(52px, 7vw, 86px); margin-bottom: 10px; }
.doc .updated { color: var(--muted); font-size: 14px; margin: 0 0 40px; }
.doc h2 { font-family: var(--display-2); font-weight: 800; font-style: italic; text-transform: uppercase; font-size: 30px; letter-spacing: .005em; margin: 52px 0 12px; }
.doc h3 { font-size: 18px; margin: 28px 0 8px; }
.doc p, .doc li { color: var(--ink-2); font-size: 16.5px; line-height: 1.7; }
.doc ul { padding-left: 22px; }
.doc a { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }
.doc .callout { border: 1px solid rgba(60,200,108,.35); background: rgba(60,200,108,.06); border-radius: 18px; padding: 20px 22px; margin: 26px 0; }
.doc .callout p { margin: 0; }
.doc table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 15px; }
.doc th, .doc td { text-align: left; padding: 12px 10px; border-bottom: 1px solid var(--line); vertical-align: top; color: var(--ink-2); }
.doc th { color: #fff; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; }
.doc .toc { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 20px; }
.doc .toc a { text-decoration: none; font-size: 13px; font-weight: 600; color: var(--ink-2); border: 1px solid var(--line-2); padding: 6px 12px; border-radius: 99px; }
.doc .steps { counter-reset: s; list-style: none; padding: 0; display: grid; gap: 14px; }
.doc .steps li { counter-increment: s; display: grid; grid-template-columns: 38px 1fr; gap: 12px; align-items: start; }
.doc .steps li::before { content: counter(s); width: 32px; height: 32px; border-radius: 50%; background: var(--green); color: #000; font-weight: 900; display: grid; place-items: center; }
.form { display: grid; gap: 14px; margin-top: 18px; }
.form label { display: grid; gap: 6px; font-size: 14px; font-weight: 600; color: var(--ink-2); }
.form input, .form textarea, .form select { background: #0e1111; border: 1px solid var(--line-2); color: #fff; border-radius: 12px; padding: 14px; font: inherit; }
.form button { height: 52px; border: 0; border-radius: 99px; background: var(--green); color: #000; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; cursor: pointer; }
.form .ok { color: var(--green); font-weight: 700; }

/* Reveal on scroll */
/* Everything is visible on load — nothing waits for a scroll. */
.reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

/* ---------- Mouse: golf-ball cursor, wind trail, reactive page (fine pointers only) ---------- */
.ball-on, .ball-on * { cursor: none !important; }
.ball-on input, .ball-on textarea { cursor: text !important; }
.ball-cursor { position: fixed; left: 0; top: 0; width: 34px; height: 34px; z-index: 10000; pointer-events: none; opacity: 0; transition: opacity .2s; will-change: transform; }
.ball-cursor i { position: absolute; inset: 0; border-radius: 50%; background: url("img/golf-ball.webp") 0 0 / 816px 34px no-repeat;
  filter: drop-shadow(0 6px 8px rgba(0,0,0,.45)); transition: scale .2s ease-out; }
.ball-cursor.show { opacity: 1; }
.ball-cursor.over i { scale: 1.25; }
.ball-cursor.hit i { scale: .82; }
.ball-trail { position: fixed; inset: 0; width: 100vw; height: 100vh; z-index: 9999; pointer-events: none; }

.hero-photo img { transition: none; will-change: transform; }
.tile, .built-img { transition: transform .45s cubic-bezier(.2,.8,.2,1); transform-style: preserve-3d; will-change: transform; }
.tile.tilting, .built-img.tilting { transition: transform .08s linear; }
.glint { position: absolute; inset: 0; pointer-events: none; opacity: 0; transition: opacity .3s; border-radius: inherit;
  background: radial-gradient(420px circle at var(--gx, 50%) var(--gy, 50%), rgba(255,255,255,.16), transparent 45%); mix-blend-mode: soft-light; }
.tilting .glint { opacity: 1; }
.tile.tilting { box-shadow: 0 30px 60px rgba(0,0,0,.55); z-index: 2; }
.feature-img img, .cta-img img { will-change: transform; }
.store, .pill-cta, .btn-outline { transition: background .15s, color .15s, box-shadow .2s, border-color .15s; }
.store:hover, .pill-cta:hover, .btn-outline:hover { transform: none; box-shadow: 0 0 0 3px rgba(60,200,108,.35), 0 10px 28px rgba(60,200,108,.18); }
.pill-cta:hover { background: var(--green); color: #000; }
.glow { background-image: radial-gradient(520px circle at var(--mx, -999px) var(--my, -999px), rgba(60,200,108,.09), transparent 60%) !important; }
.strip li { transition: transform .25s; }
.strip li:hover { transform: translateY(-4px); }
.strip li:hover svg, .feat5 li:hover svg { color: var(--green); }
.feat5 li svg { transition: transform .25s; }
.feat5 li:hover svg { transform: scale(1.12) rotate(-6deg); }
.icon-row li span { transition: background .2s, border-color .2s, transform .25s; }
.icon-row li:hover span { background: var(--green); border-color: var(--green); transform: translateY(-4px); }
.icon-row li:hover svg { color: #000; }
.faq summary:hover { color: var(--green); }
