:root {
  --ink: #0b1218;
  --ink-2: #121b24;
  --ink-3: #1a2530;
  --paper: #e8eef3;
  --paper-soft: #c5d0da;
  --muted: #8a9aab;
  --teal: #2ec4b6;
  --teal-dark: #1fa89c;
  --teal-glow: rgba(46, 196, 182, 0.18);
  --line: #243040;
  --focus: #2ec4b6;
  --white: #f4f8fb;
  --max: 40rem;
  --wide: 52rem;
}

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

html {
  color-scheme: dark;
  scroll-behavior: smooth;
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.15rem;
  line-height: 1.65;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--teal);
  text-underline-offset: 0.18em;
}

a:hover {
  color: #7fe8dd;
}

:focus {
  outline: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: 0.75rem;
  top: -5rem;
  z-index: 100;
  background: var(--teal);
  color: var(--ink);
  padding: 0.65rem 1rem;
  min-height: 44px;
  min-width: 44px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-weight: 700;
}

.skip:focus {
  top: 0.75rem;
  color: var(--ink);
  outline: 3px solid var(--white);
  outline-offset: 3px;
}

.stage-bar {
  margin: 0;
  background: var(--ink-3);
  color: var(--paper-soft);
  text-align: center;
  padding: 0.55rem 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--line);
}

.mast {
  background: var(--ink-2);
  border-bottom: 1px solid var(--line);
}

.mast-inner {
  max-width: var(--wide);
  margin: 0 auto;
  padding: 0.75rem 1.15rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
}

.wordmark {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.25;
}

.wordmark a {
  color: var(--white);
  text-decoration: none;
  display: inline-flex;
  flex-direction: column;
  min-height: 44px;
  justify-content: center;
}

.wordmark a:hover {
  color: var(--teal);
}

.wordmark span {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-toggle {
  margin-left: auto;
  min-height: 44px;
  min-width: 44px;
  padding: 0.5rem 0.9rem;
  background: transparent;
  color: var(--paper);
  border: 2px solid var(--line);
  font: inherit;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}

.nav-toggle:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.nav {
  display: none;
  width: 100%;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.25rem 0 0.4rem;
}

.nav.is-open {
  display: flex;
}

.nav-lite {
  display: flex;
  flex-direction: row;
  width: auto;
  margin-left: auto;
  gap: 0.15rem;
  padding: 0;
}

.nav a {
  color: var(--paper-soft);
  text-decoration: none;
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 0.55rem 0.2rem;
  font-weight: 600;
}

.nav-lite a {
  padding: 0.45rem 0.7rem;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--teal);
}

.nav a[aria-current="page"] {
  box-shadow: inset 4px 0 0 var(--teal);
  padding-left: 0.7rem;
}

.nav-lite a[aria-current="page"] {
  box-shadow: inset 0 -3px 0 var(--teal);
  padding-left: 0.7rem;
}

@media (min-width: 800px) {
  .nav-toggle {
    display: none;
  }

  .nav,
  .nav.is-open {
    display: flex;
    flex-direction: row;
    width: auto;
    margin-left: auto;
    gap: 0.2rem;
    padding: 0;
  }

  .nav a {
    padding: 0.45rem 0.75rem;
  }

  .nav a[aria-current="page"] {
    box-shadow: inset 0 -3px 0 var(--teal);
    padding-left: 0.75rem;
  }
}

.hero-soft {
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, var(--teal-glow), transparent 55%),
    linear-gradient(180deg, var(--ink-2) 0%, var(--ink) 100%);
  border-bottom: 1px solid var(--line);
}

.hero-soft-inner {
  max-width: var(--wide);
  margin: 0 auto;
  padding: 2.75rem 1.15rem 2.4rem;
}

.kicker {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
}

h1,
h2,
h3 {
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
}

h1 {
  font-size: clamp(2.15rem, 7.5vw, 3.35rem);
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

h1 .stand-by {
  color: var(--paper-soft);
  font-weight: 600;
}

h2 {
  font-size: clamp(1.45rem, 4vw, 1.85rem);
  margin: 0 0 0.75rem;
}

h3 {
  font-size: 1.2rem;
  margin: 0 0 0.4rem;
}

.candidate {
  margin: 0 0 0.85rem;
  font-size: clamp(1.15rem, 3vw, 1.4rem);
  font-weight: 700;
  color: var(--teal);
}

.slogan {
  font-size: clamp(1.25rem, 3.5vw, 1.55rem);
  font-weight: 600;
  line-height: 1.35;
  margin: 0 0 1.4rem;
  color: var(--white);
  padding-bottom: 0.85rem;
  border-bottom: 3px solid var(--teal);
  display: inline-block;
  max-width: 100%;
}

.lede {
  margin: 0 0 1rem;
  font-size: 1.2rem;
}

.wrap,
.foot-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.85rem 1.15rem;
}

.wrap.wide {
  max-width: var(--wide);
}

.wrap p,
.hero-soft p {
  margin: 0 0 1rem;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.2rem 0 0.2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: 44px;
  padding: 0.7rem 1.25rem;
  background: var(--teal);
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  border: 2px solid var(--teal);
  border-radius: 2px;
}

.btn:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  color: var(--ink);
}

.btn:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 3px;
}

.btn-ghost {
  background: transparent;
  color: var(--paper);
  border-color: var(--paper-soft);
}

.btn-ghost:hover {
  background: var(--ink-3);
  color: var(--white);
  border-color: var(--teal);
}

.band {
  background: var(--ink-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.band .wrap {
  padding-top: 2.1rem;
  padding-bottom: 2.1rem;
}

.platform-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.9rem;
}

.platform-list li {
  position: relative;
  margin: 0;
  padding: 1rem 1.05rem 1rem 1.35rem;
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-left: 4px solid var(--teal);
  color: var(--paper);
}

.tampa-rising {
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
}

.tr-title {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.45rem;
}

.tampa-rising p {
  color: var(--paper-soft);
  font-size: 1.05rem;
  margin-bottom: 0;
}

.donate p {
  max-width: 36rem;
}

.more-links {
  margin-top: 1.25rem !important;
}

.dates {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.dates li {
  margin: 0 0 0.85rem;
  padding: 0.85rem 1rem;
  background: var(--ink-2);
  border: 1px solid var(--line);
}

.dates strong {
  display: block;
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.cards {
  display: grid;
  gap: 0.9rem;
  margin: 1.1rem 0 0;
}

.card {
  background: var(--ink-3);
  border: 1px solid var(--line);
  padding: 1.1rem 1.05rem;
}

.card p:last-child {
  margin-bottom: 0;
}

.card a {
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.research {
  display: grid;
  gap: 0.8rem;
  margin: 1.2rem 0;
}

.research details {
  background: var(--ink-3);
  border: 1px solid var(--line);
  padding: 0.15rem 1rem 0.7rem;
}

.research summary {
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 700;
  min-height: 44px;
  display: flex;
  align-items: center;
  list-style-position: outside;
  padding: 0.55rem 0;
  color: var(--white);
}

.research summary::-webkit-details-marker {
  color: var(--teal);
}

.cite {
  font-size: 1rem;
  color: var(--muted);
}

.cite a {
  color: var(--teal);
}

.form {
  display: grid;
  gap: 0.95rem;
  margin: 1.2rem 0;
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field label {
  font-weight: 700;
}

.req {
  color: var(--teal);
  font-weight: 700;
}

input,
textarea,
select {
  width: 100%;
  min-height: 44px;
  padding: 0.55rem 0.7rem;
  border: 2px solid var(--line);
  background: var(--ink-2);
  color: var(--paper);
  font: inherit;
  border-radius: 2px;
}

input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  border-color: var(--teal);
}

textarea {
  min-height: 8rem;
  resize: vertical;
}

.form button {
  min-height: 44px;
  min-width: 44px;
  justify-self: start;
  padding: 0.7rem 1.25rem;
  background: var(--teal);
  color: var(--ink);
  border: 2px solid var(--teal);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  border-radius: 2px;
}

.form button:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

.form button:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 3px;
}

.form-note,
.form-status {
  margin: 0.4rem 0 0;
}

.form-status[data-state="ok"] {
  color: var(--teal);
  font-weight: 600;
}

.form-status[data-state="err"] {
  color: #ff8a7a;
  font-weight: 700;
}

.note {
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-left: 4px solid var(--teal);
  padding: 1rem 1.05rem;
  margin: 1rem 0;
}

.note p:last-child {
  margin-bottom: 0;
}

.foot {
  border-top: 1px solid var(--line);
  background: var(--ink-2);
  margin-top: 1.25rem;
}

.foot-inner {
  padding-top: 1.5rem;
  padding-bottom: 2.1rem;
}

.paid {
  font-weight: 700;
  margin: 0 0 0.6rem;
  color: var(--white);
}

.foot nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.4rem;
  margin: 0.8rem 0 1rem;
}

.foot nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.45rem 0.3rem 0;
  color: var(--paper-soft);
  font-weight: 600;
  text-decoration: none;
}

.foot nav a:hover {
  color: var(--teal);
  text-decoration: underline;
}

.tiny {
  color: var(--muted);
  font-size: 0.98rem;
  margin: 0;
}

.hero-photo {
  background: var(--ink-3);
}

.hero-photo img {
  width: 100%;
  max-height: 18rem;
  object-fit: cover;
  object-position: center 70%;
  opacity: 0.85;
}

@media (min-width: 800px) {
  .hero-photo img {
    max-height: 22rem;
    object-position: center 78%;
  }
}

.hero-copy {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.1rem 1.15rem 1.2rem;
}
