/* GeeksTap 2026 refresh — an overlay on site.css, not a replacement.
   site.css keeps the brand tokens, the buttons and every hard-won mobile nav
   fix. This file raises the register for the membership model: more graphite,
   more air, the gold slant motif from the event deck, and the components the
   old free-event site never needed (proof strip, ratio block, price block,
   step rail, FAQ, doors).
   Load order: site.css, then this. */

:root {
  --ink-2: #171a20;        /* one step up from graphite, for banded sections */
  --ink-3: #21252c;        /* card fill on dark */
  --dim: #c9cbd1;          /* body text on dark */
  --dim-2: #8b8e95;        /* muted text on dark */
  --hair: #2b2f37;         /* hairline on dark */
  --gap: clamp(64px, 8vw, 112px);
}

/* ---------- rhythm ---------- */
section { padding: var(--gap) 0; }
.narrow { max-width: 34em; }
.mid { max-width: 54em; }
h2 { max-width: 20em; }
.section-lead { font-size: 1.1875rem; max-width: 34em; color: var(--ink-soft); }

/* ---------- dark sections ---------- */
.dark { background: var(--ink); color: var(--dim); }
.dark h2, .dark h3 { color: var(--cream); }
.dark .eyebrow { color: var(--gold); }
.dark .section-lead { color: var(--dim); }
/* :not(.btn) matters. Without it this rule beats .btn-gold's own colour
   (two classes vs one) and every gold button on a dark band renders gold
   text on a gold pill, i.e. blank. */
.dark a:not(.btn) { color: var(--gold); }
.dark--2 { background: var(--ink-2); }
/* site.css gives .btn-ghost ink text and .btn-primary an ink fill, both of
   which vanish on a graphite band. site.css only ever corrected this inside
   .hero; every dark section needs the same treatment. */
.dark .btn-ghost { color: var(--cream); border-color: rgba(245,245,243,.55); }
.dark .btn-ghost:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.dark .btn-primary { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.dark .btn-primary:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }

/* ---------- the slant: the event-deck banner motif ---------- */
/* Hard edges, not a gradient glow. A soft one reads as a smudge behind the
   copy; the deck's motif is a solid slanted banner, so this is one too. */
.slant { position: relative; overflow: hidden; }
.slant::after {
  content: ""; position: absolute; pointer-events: none;
  left: -8%; right: -8%; bottom: 24px; height: 62px;
  background: rgba(198,169,107,.13);
  transform: rotate(-3deg);
}
.slant > * { position: relative; z-index: 1; }

/* ---------- the ratio badge in a hero ---------- */
/* Lifted out of the old BackerDeck inline <style> so every page can use it. */
.magic {
  display: grid; grid-template-columns: auto 1fr; gap: 4px 22px; align-items: center;
  background: rgba(198,169,107,.12); border: 1.5px solid var(--gold);
  border-radius: var(--radius); padding: 20px 26px; margin: 32px 0 8px; max-width: 620px;
}
.magic-num {
  grid-row: span 2; font-family: "Poppins", sans-serif; font-weight: 700;
  font-size: clamp(2.6rem, 6vw, 4rem); color: var(--gold); line-height: 1;
}
.magic-label {
  font-family: "DM Sans", sans-serif; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; font-size: .82rem; color: var(--gold);
}
.magic-sub { color: #e3e4e7; font-size: .96rem; line-height: 1.55; }
.magic-sub b { color: var(--gold); }
@media (max-width: 520px) {
  .magic { grid-template-columns: 1fr; text-align: center; }
  .magic-num { grid-row: auto; }
}

/* ---------- hero ---------- */
.hero-r { background: var(--ink); color: var(--cream); position: relative; overflow: hidden; }
.hero-r::before {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(102deg, rgba(15,17,21,.97) 0%, rgba(15,17,21,.86) 46%, rgba(15,17,21,.55) 100%),
    url("../assets/hero-bg.webp") center/cover no-repeat;
}
.hero-r .wrap { position: relative; z-index: 1; padding: clamp(72px, 10vw, 128px) 22px clamp(56px, 7vw, 92px); }
.hero-r h1 { color: var(--cream); max-width: 15em; font-size: clamp(2.1rem, 5.4vw, 4rem); }
.hero-r h1 .accent { color: var(--gold); }
.hero-r .lead { font-size: clamp(1.08rem, 1.6vw, 1.28rem); color: #e3e4e7; max-width: 34em; }
.hero-r .cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-r .btn-ghost { color: var(--cream); border-color: rgba(245,245,243,.55); }
.hero-r .btn-ghost:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.hero-r .meta {
  margin: 30px 0 0; font-family: "DM Sans", sans-serif; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--gold); font-size: .8rem;
}

/* ---------- proof strip ---------- */
.proof { background: var(--ink-2); border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair); padding: 40px 0; }
.proof .wrap { display: grid; grid-template-columns: minmax(0,.85fr) minmax(0,1.15fr); gap: clamp(28px, 5vw, 64px); align-items: center; }
.proof .stat { font-family: "Poppins", sans-serif; font-weight: 700; color: var(--cream); font-size: clamp(1.3rem, 2.4vw, 1.9rem); line-height: 1.2; margin: 0; }
.proof .stat span { color: var(--gold); }
.proof .stat-sub { color: var(--dim-2); font-size: 1rem; margin: .5em 0 0; }

/* ---------- the ratio block ---------- */
.ratio { text-align: center; }
.ratio-copy { margin: 34px auto 0; max-width: 34em; font-size: 1.1rem; color: var(--dim); }
.ratio-copy b { color: var(--cream); font-weight: 600; }

/* ---------- definition cards (Backer / Builder) ---------- */
.defs { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 38px; }
.def {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--cream); padding: 30px 32px;
}
.def.is-lead { border-color: var(--gold); border-width: 2px; box-shadow: var(--shadow); }
.def h3 { font-size: 1.35rem; margin-bottom: .35em; }
.def h3 span { color: var(--gold-deep); }
.def p { margin: 0 0 .8em; }
.def p:last-child { margin-bottom: 0; }
.def .bar {
  margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line);
  font-size: 1.0625rem; color: var(--ink-soft);
}
.def .bar b { color: var(--ink); font-family: "Poppins", sans-serif; font-weight: 600; }
.dark .def { background: var(--ink-3); border-color: var(--hair); color: var(--dim); }
.dark .def .bar { border-top-color: var(--hair); color: var(--dim-2); }
.dark .def .bar b { color: var(--cream); }
.aside { color: var(--ink-soft); font-style: italic; }
.dark .aside { color: var(--dim-2); }

/* ---------- numbered rail ---------- */
.rail { list-style: none; margin: 38px 0 0; padding: 0; display: grid; gap: 2px; }
.rail li {
  display: grid; grid-template-columns: 62px 1fr; gap: 24px;
  padding: 26px 0; border-top: 1px solid var(--line); align-items: start;
}
.rail li:last-child { border-bottom: 1px solid var(--line); }
.rail .n {
  font-family: "Poppins", sans-serif; font-weight: 700; font-size: 1.5rem;
  color: var(--gold-deep); line-height: 1;
}
.rail h3 { font-size: 1.18rem; margin-bottom: .3em; }
.rail p { margin: 0; }
.dark .rail li { border-color: var(--hair); }
.dark .rail .n { color: var(--gold); }

/* ---------- value cards ---------- */
.vals { list-style: none; margin: 38px 0 0; padding: 0; display: grid; gap: 18px; }
.vals li {
  background: var(--cream); border: 1px solid var(--line); border-left: 5px solid var(--gold-deep);
  border-radius: var(--radius); padding: 24px 28px;
}
.vals h3 { font-size: 1.14rem; margin-bottom: .3em; }
.vals p { margin: 0; font-size: 1.0625rem; }
.vals .tagline { display: block; margin-top: .6em; font-size: 1rem; color: var(--ink-soft); }
.dark .vals li { background: var(--ink-3); border-color: var(--hair); border-left-color: var(--gold); }
.dark .vals .tagline { color: var(--dim-2); }
@media (min-width: 860px) { .vals.two-up { grid-template-columns: 1fr 1fr; } }

/* ---------- pull quote ---------- */

/* ---------- price block ---------- */
.price-wrap { display: grid; gap: 22px; margin-top: 38px; }
@media (min-width: 780px) { .price-wrap { grid-template-columns: 1fr 1.12fr; align-items: stretch; } }
.price-card {
  background: var(--ink); color: var(--dim); border-radius: var(--radius);
  padding: 34px 34px 30px; border: 1px solid var(--hair);
}
.price-card.charter { border: 2px solid var(--gold); background: var(--ink-2); }
.price-kicker {
  font-family: "DM Sans", sans-serif; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; font-size: .82rem; color: var(--dim-2); margin: 0 0 16px;
}
.price-card.charter .price-kicker { color: var(--gold); }
.price-num {
  font-family: "Poppins", sans-serif; font-weight: 700; color: var(--cream);
  font-size: clamp(2.6rem, 6vw, 3.4rem); line-height: 1; margin: 0;
}
.price-num .per { font-size: 1.4rem; }
.price-card.charter .price-num { color: var(--gold); }
.price-alt { color: var(--dim-2); font-size: 1.125rem; margin: .55em 0 0; }
.price-card.charter .price-alt { color: var(--dim); }
.price-note { margin: 18px 0 0; font-size: 1.0625rem; }
.price-lock {
  margin: 18px 0 0; padding-top: 16px; border-top: 1px solid var(--hair);
  font-family: "Poppins", sans-serif; font-weight: 600; color: var(--cream); font-size: 1.05rem;
}
.price-card.charter .price-lock { border-top-color: rgba(198,169,107,.35); }

/* ---------- guarantee seal ---------- */
.seal {
  border: 2px solid var(--gold); border-radius: var(--radius);
  background: rgba(198,169,107,.08); padding: 30px 34px; margin-top: 30px;
}
.seal h3 { color: var(--gold-deep); font-size: 1.25rem; margin-bottom: .4em; }
.seal p { margin: 0 0 .8em; max-width: 62ch; }
.seal p:last-child { margin-bottom: 0; }
.dark .seal { background: rgba(198,169,107,.1); }
.dark .seal h3 { color: var(--gold); }
.dark .seal p { color: var(--dim); }

/* ---------- included list ---------- */
.incl { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 12px; }
.incl li { position: relative; padding-left: 28px; font-size: 1.0625rem; line-height: 1.6; }
.incl li::before {
  content: ""; position: absolute; left: 4px; top: .58em;
  width: 7px; height: 7px; border-radius: 50%; background: var(--gold);
}
.incl b { font-family: "Poppins", sans-serif; font-weight: 600; }
.dark .incl b { color: var(--cream); }
@media (min-width: 860px) { .incl.two-up { grid-template-columns: 1fr 1fr; gap: 12px 34px; } }

/* ---------- FAQ ---------- */
.faq { margin-top: 34px; max-width: 46em; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none; padding: 24px 44px 24px 0; position: relative;
  font-family: "Poppins", sans-serif; font-weight: 600; font-size: 1.1875rem; line-height: 1.4;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  font-family: "Poppins", sans-serif; font-weight: 400; font-size: 1.6rem; color: var(--gold-deep); line-height: 1;
}
.faq details[open] summary::after { content: "\2212"; }
.faq summary:hover { color: var(--gold-deep); }
.faq .answer { padding: 0 40px 24px 0; max-width: 42em; }
.faq .answer p { margin: 0 0 .9em; }
.faq .answer p:last-child { margin-bottom: 0; }
.dark .faq, .dark .faq details { border-color: var(--hair); }
.dark .faq summary { color: var(--cream); }
.dark .faq summary::after { color: var(--gold); }

/* ---------- the doors ---------- */
@media (min-width: 780px) { .doors { grid-template-columns: 1.15fr 1fr; } }
.door {
  border-radius: var(--radius); padding: 34px 34px 32px;
  border: 1px solid var(--hair); background: var(--ink-3); display: flex; flex-direction: column;
}
.door.is-lead { border: 2px solid var(--gold); background: var(--ink-2); }
.door h3 { font-size: 1.5rem; color: var(--cream); margin-bottom: .35em; }
.door p { color: var(--dim); margin: 0 0 .9em; }
.door .btn { margin-top: auto; align-self: flex-start; }

/* ---------- closing band ---------- */
.closer { text-align: center; }
.closer h2 { margin-left: auto; margin-right: auto; }
.closer .lead { max-width: 36em; margin-left: auto; margin-right: auto; }
.closer .cta-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

/* ---------- deadline bar ---------- */
.deadline {
  background: var(--gold); color: var(--ink); text-align: center;
  font-family: "DM Sans", sans-serif; font-weight: 700; font-size: 1rem;
  letter-spacing: .02em; padding: 11px 22px; line-height: 1.4;
}
.deadline a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- comparison table ---------- */
.cmp-scroll { overflow-x: auto; margin-top: 36px; -webkit-overflow-scrolling: touch; }
.cmp { border-collapse: collapse; width: 100%; min-width: 680px; font-size: 1.0625rem; }
.cmp th, .cmp td { text-align: left; padding: 14px 18px; border-bottom: 1px solid var(--line); vertical-align: top; }
.cmp thead th { font-family: "Poppins", sans-serif; font-weight: 600; font-size: 1.02rem; border-bottom: 2px solid var(--ink); }
.cmp tbody th { font-weight: 400; color: var(--ink-soft); }
.cmp .col-shelf { background: rgba(198,169,107,.12); }
.cmp thead .col-shelf { color: var(--gold-deep); }

/* ---------- forms ---------- */
.form-card {
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(26px, 4vw, 38px); margin-top: 34px; max-width: 640px; box-shadow: var(--shadow);
}
.form-card label.fl {
  display: block; font-family: "DM Sans", sans-serif; font-weight: 700;
  font-size: 1rem; letter-spacing: .01em; margin: 20px 0 7px; color: var(--ink);
}
.form-card label.fl:first-of-type { margin-top: 0; }
.form-card input, .form-card textarea {
  width: 100%; box-sizing: border-box; font-family: "Inter", sans-serif; font-size: 1rem;
  padding: .75em .95em; border: 1.5px solid var(--line); border-radius: 10px;
  background: #fff; color: var(--ink);
}
.form-card input:focus, .form-card textarea:focus { outline: none; border-color: var(--gold-deep); box-shadow: 0 0 0 3px rgba(198,169,107,.25); }
.form-card textarea { min-height: 76px; resize: vertical; }
.form-card .btn { margin-top: 24px; border: none; width: 100%; justify-content: center; }
.form-note { font-size: 1rem; color: var(--ink-soft); margin: 16px 0 0; }
.form-msg { margin-top: 18px; padding: 18px 20px; border-radius: 10px; font-size: 1.0625rem; display: none; }
.form-msg.ok { display: block; background: rgba(198,169,107,.16); border: 1.5px solid var(--gold); }
.form-msg.bad { display: block; background: #fdecec; border: 1.5px solid #d98a8a; }
.checkrow.gold {
  border: 1.5px solid var(--gold); border-radius: 10px; background: rgba(198,169,107,.1);
  padding: 14px 16px; margin-top: 20px;
}

/* ---------- fine print ---------- */
.fine { font-size: 1rem; line-height: 1.65; color: var(--ink-soft); margin-top: 30px; max-width: 34em; }
.dark .fine { color: var(--dim-2); }

/* ---------- nav additions ---------- */
.nav-link.is-current { color: var(--gold-deep); }

/* ---------- responsive ---------- */
@media (max-width: 820px) {
  .proof .wrap { grid-template-columns: 1fr; gap: 26px; }
  .defs { grid-template-columns: 1fr; }
  .rail li { grid-template-columns: 44px 1fr; gap: 16px; padding: 22px 0; }
  .rail .n { font-size: 1.25rem; }
  .slant::after { height: 130px; bottom: -50px; }
}

/* ---------- label scale ----------
   Eyebrows and kickers are the top layer of the layer cake: readers hit them
   before the heading. site.css sized them as decoration (12.5px); at that size
   they are skimmed past. Everything a reader is meant to read now clears 14px,
   with tracking pulled back so the wider glyphs stay on one line. */
.eyebrow { font-size: .92rem; letter-spacing: .14em; }
.kills .kick { font-size: .875rem; }
.queue-row .cap { font-size: .95rem; }
.price-kicker { font-size: .875rem; }
.magic-label { font-size: .875rem; letter-spacing: .13em; }
.hero-r .meta { font-size: .9rem; letter-spacing: .09em; }
.tap .badge { font-size: .8rem; }

/* ---------- site nav ----------
   The mobile rule in site.css hides .nav-link (written when the nav had five),
   which would leave a phone showing just the Members button. Show them again,
   except Weekly Taps: it is the third item and there is no room for it. The
   two-item row already only clears 390px by about 9px (see the mobile header
   note below), so a third would push the gold CTA off screen and scroll the
   page sideways. The footer carries Weekly Taps on every page, and that is the
   phone path to it. */
@media (max-width: 820px) {
  /* Vertical padding, not a height: a bare inline-flex link is only as tall as
     its 26px line box, which is a miss on a thumb. The padding grows the tap
     target to 44px without changing the link's WIDTH, so the two-item row
     still clears 390px exactly as measured below. */
  .nav .nav-link {
    display: inline-flex; align-items: center;
    min-height: 44px; padding-top: 9px; padding-bottom: 9px;
  }
  .nav .nav-taps { display: none; }
}

/* ---------- mobile header ----------
   site.css wraps the header onto two rows under 560px and sets the nav to
   space-between. That was correct when the nav held five items and genuinely
   could not fit. With two it produced a 116px-tall header: the logo alone on
   one row with 168px of dead space beside it, then Builders and Members thrown
   to opposite edges with 189px of gap between them.
   Measured at 390px: logo 178 + Builders 62 + gap + Members 95 needs ~355px
   against 346px of content width, so it missed a single row by about 9px.
   Shrinking the logo to 32px closes that and the header behaves like every
   other width. */
/* Adding Backers made that single row a THREE-item nav, and three no longer
   fits: measured at 390px the row needs ~367px against 346px of content width,
   so Backers slid underneath the wordmark. Shrinking further only moves the
   collision to 320px. Both segment links have to stay reachable on a phone —
   they are the whole point of the nav — so give the nav its own row after all.
   The old objection to wrapping was a 116px header with the logo stranded
   beside dead space; a 32px logo and a tight second row keep it near 104px and
   the three controls spread evenly, which reads as deliberate rather than
   leftover. */
@media (max-width: 560px) {
  .site-header .wrap {
    height: auto; flex-wrap: wrap;
    padding-top: 10px; padding-bottom: 10px; gap: 8px;
  }
  .logo { flex: 0 0 auto; min-width: auto; }
  .site-header .nav { width: 100%; justify-content: space-between; gap: 10px; }
  .logo img { height: 32px; }
}
@media (max-width: 370px) {
  .logo img { height: 28px; }
  .nav .btn { padding: 11px 13px; }
  .site-header .nav { gap: 8px; }
}
