:root {
  color-scheme: dark;
  font-family: Inter, "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
  background: #10191b;
  color: #f8f4e8;
}

* { box-sizing: border-box; }
html, body { min-height: 100%; }
body { margin: 0; background: #10191b; }
button { font: inherit; }

.campaign {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(360px, .92fr) 1.08fr;
  grid-template-rows: auto 1fr auto;
  padding: clamp(30px, 4.5vw, 78px);
}

.campaign-art, .shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.campaign-art { z-index: -3; object-fit: cover; object-position: center; }
.shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(7, 18, 31, .55) 0%, rgba(7, 18, 31, .18) 36%, transparent 55%),
    linear-gradient(0deg, rgba(5, 15, 26, .94) 0%, rgba(5, 15, 26, .42) 16%, transparent 34%),
    linear-gradient(180deg, rgba(5, 14, 25, .38) 0%, transparent 25%);
}

.work { grid-column: 1; align-self: start; max-width: 560px; }
.community-line {
  max-width: 38ch;
  margin: 0 0 clamp(18px, 2vw, 30px);
  color: rgba(248, 244, 232, .9);
  font-size: clamp(.95rem, 1.15vw, 1.2rem);
  font-weight: 720;
  line-height: 1.35;
  text-shadow: 0 2px 16px #000;
}
.work-totals { display: flex; gap: clamp(28px, 3.4vw, 66px); }
.work-totals span { display: grid; gap: 1px; }
.work-totals strong {
  font-size: clamp(2.25rem, 4vw, 5rem);
  font-weight: 900;
  letter-spacing: -.07em;
  line-height: .95;
  text-shadow: 0 2px 20px #000;
}
.work-totals small {
  color: rgba(248, 244, 232, .74);
  font-size: clamp(.72rem, .88vw, .95rem);
  font-weight: 760;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.work-totals small span { display: block; white-space: nowrap; }

.pitch {
  grid-column: 1;
  align-self: center;
  max-width: min(760px, 49vw);
  padding: clamp(36px, 8vh, 90px) 0;
}
.title-button {
  display: block;
  margin: 0;
  max-width: 9ch;
  border: 0;
  padding: 0;
  background: transparent;
  color: #f8f4e8;
  cursor: pointer;
  font-family: "Arial Black", "Segoe UI Variable Display", "Segoe UI", sans-serif;
  font-size: clamp(5.2rem, 10.6vw, 12.8rem);
  font-style: italic;
  font-weight: 950;
  letter-spacing: -.085em;
  line-height: .74;
  text-align: left;
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow: 0 .05em .3em rgba(0, 0, 0, .68);
  transform: skewY(-2deg);
}
.title-button span {
  display: block;
  color: #e5b352;
  font-size: .42em;
  letter-spacing: .02em;
  line-height: 1.25;
}
.title-button:hover:not(:disabled) {
  text-shadow: 0 .05em .34em rgba(0, 0, 0, .78), 0 0 .12em rgba(229, 179, 82, .22);
}
.title-button:focus-visible {
  outline: 3px solid #edc16a;
  outline-offset: 8px;
}
.title-button:disabled { cursor: default; }
.menu { grid-column: 1 / -1; align-self: end; }
.support-options {
  display: grid;
  grid-template-columns: repeat(4, minmax(124px, .68fr)) minmax(310px, 1.65fr);
  gap: clamp(8px, .9vw, 15px);
  max-width: 1400px;
}
.option {
  position: relative;
  min-height: 88px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 4px;
  padding: 16px 18px;
  background: rgba(14, 25, 28, .82);
  color: #f8f4e8;
  cursor: pointer;
  display: grid;
  gap: 2px;
  align-content: center;
  text-align: left;
  backdrop-filter: blur(12px);
  transition: transform 140ms ease, border-color 140ms ease, background 140ms ease;
}
.option:hover:not(:disabled), .option:focus-visible {
  z-index: 2;
  border-color: #edc16a;
  background: rgba(26, 41, 43, .96);
  outline: none;
  transform: translateY(-3px);
}
.option:disabled { cursor: not-allowed; opacity: .55; }
.option-name {
  color: rgba(248, 244, 232, .72);
  font-size: clamp(.82rem, .98vw, 1.02rem);
  font-weight: 750;
  letter-spacing: .045em;
  line-height: 1.1;
  text-transform: uppercase;
}
.option strong { font-size: clamp(1.45rem, 1.75vw, 1.9rem); font-weight: 900; letter-spacing: -.035em; }
.option.recommended {
  min-height: 104px;
  border-color: #f0c66f;
  background: #e2ac49;
  color: #11191a;
  box-shadow: 0 12px 34px rgba(0, 0, 0, .34);
}
.option.recommended .option-name { color: #11191a; font-size: clamp(1rem, 1.25vw, 1.28rem); }
.option.recommended strong { font-size: clamp(1.9rem, 2.5vw, 2.7rem); }
.option-note {
  position: absolute;
  right: 18px;
  bottom: 17px;
  color: rgba(17, 25, 26, .68);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.status {
  min-height: 1.2em;
  margin: 8px 0 -20px;
  color: rgba(248, 244, 232, .78);
  font-size: .78rem;
}

@media (max-width: 760px) {
  .campaign {
    display: flex;
    min-height: 100svh;
    flex-direction: column;
    justify-content: space-between;
    padding: 22px 18px 18px;
  }
  .campaign-art { object-position: 62% center; }
  .shade {
    background:
      linear-gradient(180deg, rgba(7, 14, 17, .92) 0%, rgba(7, 14, 17, .28) 28%, rgba(7, 14, 17, .08) 48%, rgba(7, 14, 17, .98) 76%),
      linear-gradient(90deg, rgba(7, 14, 17, .45), transparent 80%);
  }
  .community-line { margin-bottom: 14px; font-size: .85rem; }
  .work-totals { gap: clamp(10px, 3.8vw, 18px); }
  .work-totals strong { font-size: clamp(1.5rem, 8vw, 2.5rem); }
  .work-totals small { font-size: clamp(.62rem, 2.5vw, .72rem); }
  .pitch { width: 100%; max-width: none; padding: 5vh 0 20vh; }
  .title-button { max-width: none; font-size: clamp(3rem, 13vw, 5.8rem); }
  .menu { width: 100%; align-self: stretch; }
  .support-options { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .option { min-height: 68px; padding: 11px 13px; }
  .option.recommended { grid-column: 1 / -1; min-height: 82px; }
}

@media (prefers-reduced-motion: reduce) { .option { transition: none; } }
