/* ==========================================================================
   CAPCon — CAPitalize Your Finances conference, Tacoma WA
   Single-page marketing site.

   The accent is one lever: change --accent (and --accent-deep, its
   darkened partner used on light backgrounds) and the wordmark, rules,
   buttons, marquee, Meet & Greet card and closing CTA all follow.
   ========================================================================== */

:root {
  --ink:        #0B0A09;
  --ink-raised: #17140F;
  --ink-card:   #201C17;
  --paper:      #F5F1E9;
  --paper-warm: #E9E3D7;
  --white:      #FFFFFF;

  --accent:      #EFA23C;
  --accent-deep: #8B5E23;                    /* accent on light backgrounds */
  --accent-soft: rgba(239, 162, 60, 0.45);
  --accent-line: rgba(239, 162, 60, 0.42);

  --on-ink:        #F5F1E9;
  --on-ink-mid:    #A39C92;
  --on-ink-dim:    #8A837A;
  --on-ink-list:   #D8D2C8;
  --on-paper:      #0B0A09;
  --on-paper-mid:  #3A342E;
  --on-paper-dim:  #6B6259;

  --rule-ink:   rgba(245, 241, 233, 0.16);
  --rule-ink-f: rgba(245, 241, 233, 0.13);
  --rule-paper: rgba(11, 10, 9, 0.16);

  --display: 'Anton', 'Arial Narrow', Impact, sans-serif;
  --body: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --gutter: 72px;
  --max: 1440px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--on-ink);
  font-family: var(--body);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; }

a { color: var(--accent); text-decoration: none; }
a:hover { color: #F7C176; }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: -9999px;
}
.skip:focus {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  left: 16px;
  top: 16px;
  z-index: 50;
  padding: 12px 20px;
  background: var(--accent);
  color: var(--ink);
  font-weight: 800;
}

h1, h2, h3, p { margin: 0; }
dl, dd { margin: 0; }

.dsp {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -0.005em;
}

.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

/* --- section chrome ------------------------------------------------------ */

.section { padding-block: 104px 112px; }
.section--ink   { background: var(--ink); color: var(--on-ink); }
.section--paper { background: var(--paper); color: var(--on-paper); }
.section--warm  { background: var(--paper-warm); color: var(--on-paper); padding-block: 76px 82px; }

.tag {
  display: flex;
  align-items: center;
  gap: 12px;
}
.tag__num { font-size: 22px; color: var(--accent-deep); }
.section--ink .tag__num { color: var(--accent); }
.tag__rule { width: 40px; height: 2px; background: rgba(11, 10, 9, 0.25); }
.section--ink .tag__rule { background: rgba(245, 241, 233, 0.25); }
.tag__label { font-size: 12px; color: var(--on-paper-dim); }
.section--ink .tag__label { color: var(--on-ink-mid); }

.section__head {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 720px;
}
.section__title {
  font-size: 68px;
  line-height: 0.94;
  letter-spacing: -0.01em;
}

/* --- buttons ------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 26px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: transform 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--solid  { background: var(--accent); color: var(--ink); }
.btn--solid:hover { background: #F7B45E; color: var(--ink); }
.btn--invert { background: var(--ink); color: var(--accent); }
.btn--invert:hover { color: #F7C176; }
.btn--ghost  { border: 2px solid var(--on-paper); color: var(--on-paper); }
.btn--ghost:hover { background: var(--on-paper); color: var(--paper); }
.btn--lg { min-height: 62px; padding: 0 40px; font-size: 16px; }
.btn--block { width: 100%; min-height: 54px; }

/* --- nav ----------------------------------------------------------------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(11, 10, 9, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(245, 241, 233, 0.12);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-block: 20px;
}
.mark { font-size: 30px; line-height: 1; color: var(--on-ink); }
a.mark { display: inline-flex; align-items: center; min-height: 44px; }
.mark span { color: var(--accent); }
.nav__links { display: flex; align-items: center; gap: 36px; }
.nav__links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--on-ink-mid);
}
.nav__links a:hover { color: var(--on-ink); }

/* --- hero ---------------------------------------------------------------- */

.hero {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 48px;
  padding-block: 84px 88px;
}
.hero__copy { display: flex; flex-direction: column; gap: 34px; }
.hero__kicker { display: flex; align-items: center; gap: 12px; color: var(--accent); }
.hero__kicker i { width: 26px; height: 3px; background: var(--accent); }
.hero__lockup {
  font-size: clamp(88px, 12vw, 172px);
  line-height: 0.84;
  color: var(--on-ink);
}
.hero__lockup span { color: var(--accent); }
.hero__lede {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.02em;
  max-width: 660px;
  text-wrap: balance;
}
.hero__sub {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--on-ink-mid);
  max-width: 560px;
  text-wrap: pretty;
}
.hero__stack { display: flex; flex-direction: column; gap: 18px; }

.facts {
  display: flex;
  border-block: 1px solid var(--rule-ink);
}
.facts__item {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 22px 34px;
  border-right: 1px solid var(--rule-ink);
}
.facts__item:first-child { padding-left: 0; }
.facts__item:last-child { padding-right: 0; border-right: 0; }
.facts__key { font-size: 11px; color: var(--on-ink-dim); }
.facts__val { font-size: 27px; color: var(--on-ink); }
.facts__val--sm { font-size: 19px; line-height: 1.15; }

.hero__cta { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.textlink {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  font-size: 15px;
  font-weight: 700;
  color: var(--on-ink);
}
.textlink span { border-bottom: 2px solid var(--accent-line); padding-bottom: 3px; }
.textlink:hover { color: var(--accent); }

.hero__figure {
  height: 560px;
  background: var(--ink-raised);
  border: 1px solid rgba(245, 241, 233, 0.14);
  overflow: hidden;
}
.hero__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 14%;
  display: block;
}

/* --- marquee band -------------------------------------------------------- */

.band {
  display: flex;
  align-items: center;
  gap: 30px;
  padding-block: 20px;
  background: var(--accent);
  color: var(--ink);
  overflow: hidden;
  white-space: nowrap;
}
.band span { font-size: 30px; }
.band i { font-size: 30px; opacity: 0.45; font-style: normal; }

/* --- about --------------------------------------------------------------- */

.about { display: flex; flex-direction: column; gap: 60px; }
.about__top {
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: 48px;
  align-items: start;
}
.about__title {
  font-size: 62px;
  line-height: 0.94;
  letter-spacing: -0.01em;
}
.about__body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  padding-top: 12px;
}
.about__body p {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.66;
  color: var(--on-paper-mid);
  text-wrap: pretty;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.pillar {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 36px 32px 40px;
  background: var(--white);
  border-top: 4px solid var(--accent);
}
.pillar__num { font-size: 44px; line-height: 1; color: rgba(11, 10, 9, 0.26); }
.pillar__name { font-size: 26px; line-height: 1.06; }
.pillar p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--on-paper-dim);
  text-wrap: pretty;
}

/* --- speakers ------------------------------------------------------------ */

.speakers { display: flex; flex-direction: column; gap: 56px; }
.speakers__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
.card-person {
  display: flex;
  background: var(--ink-raised);
  border: 1px solid var(--rule-ink-f);
}
.card-person__figure {
  width: 260px;
  flex-shrink: 0;
  background: var(--ink-card);
  overflow: hidden;
}
.card-person__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  display: block;
}
.card-person__body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 32px 30px;
  flex-grow: 1;
}
.card-person__role { font-size: 11px; color: var(--accent); }
.card-person__name { font-size: 34px; line-height: 1; }
.card-person__creds { font-size: 14px; font-weight: 700; color: var(--on-ink-mid); }
.card-person p {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--on-ink-dim);
  text-wrap: pretty;
}

.card-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 342px;
  padding: 40px;
  text-align: center;
  background: rgba(245, 241, 233, 0.03);
  border: 1px dashed rgba(245, 241, 233, 0.22);
}
.card-soon__title { font-size: 30px; line-height: 1.06; }
.card-soon p {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
  color: var(--on-ink-dim);
  max-width: 320px;
  text-wrap: pretty;
}

/* --- sponsors ------------------------------------------------------------ */

.sponsors { display: flex; flex-direction: column; gap: 44px; }
.sponsors__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
}
.sponsors__title {
  font-size: 34px;
  line-height: 1;
  max-width: 560px;
  text-align: right;
}
.sponsors__logos { display: flex; align-items: center; justify-content: center; }
.sponsors__logos img {
  width: 430px;
  max-width: 100%;
  height: auto;
  padding-block: 20px;
  display: block;
}
.sponsors__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-top: 28px;
  border-top: var(--rule-paper) 1px solid;
}
.sponsors__foot p { font-size: 16px; font-weight: 600; color: var(--on-paper-dim); }

/* --- location ------------------------------------------------------------ */

.location {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 56px;
}
.location__copy { display: flex; flex-direction: column; gap: 28px; }
.location__title {
  font-size: 76px;
  line-height: 0.9;
  letter-spacing: -0.015em;
}
.location__copy > p {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.66;
  color: var(--on-ink-mid);
  max-width: 520px;
  text-wrap: pretty;
}

.rail { border-top: 1px solid var(--rule-ink); }
.rail__row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding-block: 22px;
  border-bottom: 1px solid var(--rule-ink);
}
.rail__row:last-child { border-bottom: 0; }
.rail__key {
  width: 108px;
  flex-shrink: 0;
  padding-top: 4px;
  font-size: 11px;
  color: var(--accent);
}
.rail__val { display: flex; flex-direction: column; gap: 5px; }
.rail__lead { font-size: 22px; line-height: 1.12; }
.rail__strong { font-size: 16px; font-weight: 700; line-height: 1.4; }
.rail__note { font-size: 14px; font-weight: 500; line-height: 1.55; color: var(--on-ink-dim); }

.steps {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}
.steps li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--on-ink-list);
  counter-increment: step;
}
.steps li::before {
  content: counter(step);
  flex-shrink: 0;
  width: 16px;
  font-family: var(--display);
  font-size: 15px;
  color: var(--accent);
}

.location__figure { display: flex; flex-direction: column; gap: 14px; }
.location__figure > div {
  flex: 1 1 auto;
  min-height: 460px;
  border: 1px solid rgba(245, 241, 233, 0.14);
  overflow: hidden;
}
.location__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 38% center;
  display: block;
}
.location__caption {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--on-ink-dim);
}
.location__caption i { width: 8px; height: 8px; background: var(--accent); }

/* --- tickets ------------------------------------------------------------- */

.tickets { display: flex; flex-direction: column; gap: 52px; }
.tiers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
  width: 860px;
  max-width: 100%;
  align-self: center;
}
.tier {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 40px 34px;
  background: var(--white);
  border: 1px solid var(--rule-paper);
}
.tier--feature {
  position: relative;
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: 14px 14px 0 var(--accent-soft);
}
.tier__flag {
  position: absolute;
  top: -14px;
  left: 34px;
  padding: 6px 14px;
  background: var(--accent);
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.tier__head { display: flex; flex-direction: column; gap: 10px; }
.tier__kind { font-size: 11px; color: var(--on-paper-dim); }
.tier--feature .tier__kind { color: var(--accent); }
.tier__name { font-size: 30px; line-height: 1; }
.tier--feature .tier__name { color: var(--on-ink); }
.tier__price { display: flex; align-items: baseline; gap: 8px; }
.tier__amount { font-size: 62px; line-height: 1; }
.tier--feature .tier__amount { color: var(--accent); }
.tier__per { font-size: 14px; font-weight: 700; color: var(--on-paper-dim); }
.tier--feature .tier__per { color: var(--on-ink-mid); }
.tier__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.tier__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--on-paper-mid);
}
.tier--feature .tier__list li { color: var(--on-ink-list); }
.tier__list svg { flex-shrink: 0; margin-top: 2px; }

/* --- closing CTA --------------------------------------------------------- */

.closing {
  padding-block: 108px 116px;
  background: var(--accent);
  color: var(--ink);
  text-align: center;
}
.closing__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 34px;
}
.closing__kicker { display: flex; align-items: center; gap: 12px; }
.closing__kicker i { width: 26px; height: 3px; background: var(--ink); }
.closing__title {
  font-size: clamp(48px, 7.8vw, 112px);
  line-height: 0.88;
  letter-spacing: -0.015em;
  max-width: 1060px;
  text-wrap: balance;
}
.closing p {
  font-size: 19px;
  font-weight: 600;
  line-height: 1.6;
  color: rgba(11, 10, 9, 0.72);
  max-width: 620px;
  text-wrap: pretty;
}

/* --- footer -------------------------------------------------------------- */

.footer { padding-block: 62px 56px; background: var(--ink); }
.footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
}
.footer__brand { display: flex; flex-direction: column; gap: 12px; max-width: 320px; }
.footer__brand p {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--on-ink-dim);
}
.footer__cols { display: flex; gap: 72px; }
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__col h2 { font-size: 11px; color: var(--on-ink-dim); font-weight: 700; }
.footer__col a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  font-size: 15px;
  font-weight: 600;
  color: var(--on-ink-mid);
}
.footer__col a:hover { color: var(--on-ink); }
.footer__legal {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding-top: 26px;
  margin-top: 36px;
  border-top: 1px solid rgba(245, 241, 233, 0.12);
}
.footer__legal p {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--on-ink-dim);
  max-width: 820px;
}
.footer__legal small {
  font-size: 12px;
  font-weight: 500;
  color: var(--on-ink-dim);
  white-space: nowrap;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1180px) {
  :root { --gutter: 48px; }
  .hero { grid-template-columns: 1fr; }
  .hero__figure { height: 520px; }
  .hero__lockup { font-size: clamp(88px, 15vw, 150px); }
  .about__top { grid-template-columns: 1fr; }
  .location { grid-template-columns: 1fr; gap: 40px; }
  .location__figure > div { flex: none; height: 420px; }
  .section__title, .about__title { font-size: 54px; }
  .location__title { font-size: 62px; }
}

@media (max-width: 860px) {
  .nav__links { display: none; }
  .pillars { grid-template-columns: 1fr; }
  .speakers__grid { grid-template-columns: 1fr; }
  .card-person { flex-direction: column; }
  .card-person__figure { width: 100%; height: 340px; }
  .card-soon { min-height: 0; padding: 40px 28px; }
  .sponsors__top { flex-direction: column; align-items: flex-start; gap: 20px; }
  .sponsors__title { text-align: left; font-size: 30px; }
  .sponsors__foot { flex-direction: column; align-items: stretch; gap: 20px; }
  .tiers { grid-template-columns: 1fr; width: 100%; }
  .tier--feature { box-shadow: 10px 10px 0 var(--accent-soft); }
  .footer__top { flex-direction: column; gap: 32px; }
  .footer__legal { flex-direction: column; gap: 12px; }
}

@media (max-width: 640px) {
  :root { --gutter: 24px; }
  .section { padding-block: 56px 60px; }
  .section--warm { padding-block: 48px 52px; }
  .hero { padding-block: 40px 46px; gap: 26px; }
  .hero__copy { gap: 26px; }
  .hero__lockup { font-size: 78px; }
  .hero__lede { font-size: 27px; line-height: 1.16; }
  .hero__sub { font-size: 16px; }
  .hero__figure { height: 380px; }
  .hero__cta { flex-direction: column; align-items: stretch; gap: 16px; }
  .hero__cta .btn { width: 100%; }
  .textlink { justify-content: center; }

  .facts { flex-direction: column; }
  .facts__item {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 15px 0;
    border-right: 0;
    border-bottom: 1px solid var(--rule-ink);
  }
  .facts__item:last-child { border-bottom: 0; }
  .facts__val { font-size: 21px; text-align: right; }
  .facts__val--sm { font-size: 17px; }

  .band { gap: 18px; padding-block: 14px; }
  .band span, .band i { font-size: 20px; }

  .section__title, .about__title { font-size: 40px; line-height: 0.96; }
  .location__title { font-size: 46px; }
  .about, .speakers, .tickets, .sponsors { gap: 30px; }
  .about__body { grid-template-columns: 1fr; gap: 16px; }
  .about__body p, .location__copy > p { font-size: 16px; }
  .pillar { padding: 26px 24px 28px; }
  .pillar__name { font-size: 22px; }

  .card-person__figure { height: 300px; }
  .card-person__body { padding: 24px 22px 26px; gap: 10px; }
  .card-person__name { font-size: 27px; }
  .card-person__creds { font-size: 13px; }
  .card-soon__title { font-size: 26px; }

  .location__figure > div { flex: none; height: 240px; }
  .rail__row { flex-direction: column; gap: 6px; padding-block: 18px; }
  .rail__key { width: auto; padding-top: 0; font-size: 10px; }
  .rail__lead { font-size: 20px; }
  .rail__strong { font-size: 15px; }
  .steps li { font-size: 14px; }

  .tier { padding: 30px 24px 32px; gap: 20px; }
  .tier__name { font-size: 26px; }
  .tier__amount { font-size: 48px; }
  .tier__list li { font-size: 14px; }

  .closing { padding-block: 60px 66px; }
  .closing__inner { gap: 24px; }
  .closing p { font-size: 16px; }
  .closing .btn { width: 100%; }

  .footer { padding-block: 44px 40px; }
  .footer__cols { flex-wrap: wrap; gap: 28px 48px; }
  .footer__col a { min-height: 44px; }
}
