@font-face {
  font-family: "Nunito";
  src: url("fonts/Nunito-VariableFont_wght.ttf") format("truetype");
  font-style: normal;
  font-weight: 200 1000;
  font-display: swap;
}

@font-face {
  font-family: "Figtree";
  src: url("fonts/Figtree-Black.ttf") format("truetype");
  font-style: normal;
  font-weight: 900;
  font-display: swap;
}

:root {
  --bg: #0b0d10;
  --surface: #14181d;
  --surface-2: #1b2027;
  --text: #f4f4f0;
  --muted: #a9b0b8;
  --line: #2a313a;
  --accent: #f7931a;
  --accent-2: #ffb04a;
  --success: #7bd88f;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(
      circle at 85% 5%,
      rgba(247, 147, 26, 0.12),
      transparent 28rem
    ),
    linear-gradient(180deg, #0b0d10 0%, #0d1014 100%);
  color: var(--text);
  font-family:
    "Nunito",
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.highlight {
  color: var(--accent-2);
}

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(11, 13, 16, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.nav-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  letter-spacing: 0;
}

.brand img {
  width: 42px;
  height: 42px;
}

.brand-wordmark {
  display: inline-flex;
  align-items: baseline;
  line-height: 1;
  color: var(--text);
  font-size: 1.5rem;
}

.brand-run {
  font-family:
    "Nunito",
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-weight: 800;
}

.brand-number {
  color: var(--accent);
  font-family:
    "Figtree",
    ui-sans-serif,
    sans-serif;
  font-weight: 900;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-left: auto;
}

.nav-menu-wrapper {
  position: relative;
}

.run21-menu-toggle {
  display: inline-flex;
  width: 46px;
  height: 46px;
  padding: 8px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 0.6rem;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.run21-menu-icon {
  display: block;
  overflow: visible;
}

.run21-menu-icon .line {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  transform-box: fill-box;
  transform-origin: center;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.run21-menu-toggle[aria-expanded="true"] .line-1 {
  transform: translateY(6px) rotate(45deg);
}

.run21-menu-toggle[aria-expanded="true"] .line-2 {
  opacity: 0;
}

.run21-menu-toggle[aria-expanded="true"] .line-3 {
  transform: translateY(-6px) rotate(-45deg);
}

.run21-menu-panel {
  position: absolute;
  top: calc(100% + 0.75rem);
  right: 0;
  z-index: 1000;
  display: none;
  min-width: 230px;
  padding: 0.65rem;
  flex-direction: column;
  align-items: stretch;
  gap: 0.15rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.75rem;
  background: #0b0f12;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.42);
}

.run21-menu-panel.is-open {
  display: flex;
}

.run21-menu-panel a {
  display: block;
  padding: 0.8rem 0.95rem;
  border-radius: 0.45rem;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}

.run21-menu-panel a:hover,
.run21-menu-panel a:focus-visible {
  background: rgba(255, 255, 255, 0.1);
}

.button-primary.nav-support {
  flex: 0 0 auto;
  padding: 0px 12px;
  font-size: 90%;
  min-height: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.8rem 1.15rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 750;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
}
.button-primary {
  background: var(--accent);
  color: #16110a;
}
.button-primary:hover {
  background: var(--accent-2);
}
.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.hero {
  padding: 7rem 0 5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 4rem;
  align-items: center;
}

.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

h1,
h2,
h3 {
  line-height: 1.08;
  margin: 0;
}

h1 {
  margin-top: 1rem;
  font-size: clamp(3.2rem, 8vw, 7.3rem);
  letter-spacing: -0.06em;
}

h1 span {
  color: var(--accent);
}

.lead {
  max-width: 760px;
  margin: 1.5rem 0 0;
  color: #d6d9dd;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin-top: 2.25rem;
}

.metric {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
}

.metric strong {
  display: block;
  font-size: 1.65rem;
  color: var(--accent);
}

.metric span {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-mark {
  display: grid;
  place-items: center;
  min-height: 430px;
  border: 1px solid var(--line);
  border-radius: 36px;
  background:
    linear-gradient(145deg, rgba(247, 147, 26, 0.12), transparent 44%),
    var(--surface);
}

.hero-mark img {
  width: min(72%, 330px);
  filter: drop-shadow(0 24px 50px rgba(0, 0, 0, 0.34));
}

.section {
  padding: 5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.section-header {
  max-width: 760px;
  margin-bottom: 2.4rem;
}

.support-box h2,
.section-header h2 {
  margin-top: 0.65rem;
  font-size: clamp(2.5rem, 4vw, 3.6rem);
  letter-spacing: -0.04em;
  font-weight: 200;
}

.support-box h2 {
  font-size: 2vw;
}

.section-header h3 {
  margin-top: 0.65rem;
  font-size: clamp(1.5rem, 2vw, 1.08rem);
  font-weight: 400;
}

.section-header p {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.card {
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
}

.card-number {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 1.4rem;
  border-radius: 50%;
  background: rgba(247, 147, 26, 0.14);
  color: var(--accent);
  font-weight: 900;
}

.card h3 {
  font-size: 1.25rem;
}
.card p {
  color: var(--muted);
  margin-bottom: 0;
}

.statement {
  padding: 2rem;
  border-left: 4px solid var(--accent);
  border-radius: 0 24px 24px 0;
  background: var(--surface);
  font-size: 1.2rem;
  color: var(--muted);
}

.columns2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.box-list {
  display: grid;
  gap: 0.85rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.box-list li {
  color: var(--text);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.box-list li::before {
  content: "";
  width: 14px;
  height: 14px;
  margin-top: 0.35rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(247, 147, 26, 0.12);
}

.muted,
.small,
.box-list small {
  color: var(--muted);
}

.small {
  font-size: 75%;
}

.info {
  padding: 0.35rem 0.5rem;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--muted);
  font-size: 65%;
  margin: 0;
}

.support-box {
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    linear-gradient(
      145deg,
      rgba(247, 147, 26, 0.12),
      rgba(183, 110, 20, 0.12),
      transparent 55%
    ),
    var(--surface);
}

ul li {
  color: var(--muted);
}

.support-box ul {
  padding-left: 1.2rem;
  color: var(--muted);
}

.form {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

label {
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #0e1216;
  color: var(--text);
  font: inherit;
  padding: 0.85rem 0.95rem;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.notice {
  font-weight: 700;
  padding: 12px;
  border-radius: 15px;
  border: 2px solid var(--accent);
  color: var(--muted);
  text-align: center;
  opacity: 1;
  visibility: visible;
  display: block;
  transition:
    opacity 1000ms ease,
    visibility 1000ms ease;
  margin-bottom: -48px;
}
.notice.is-hidden {
  opacity: 0;
  visibility: hidden;
}

footer {
  position: sticky;
  bottom: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(11, 13, 16, 0.7);
  padding: 1.0rem 0;
  color: var(--muted);
  font-size: 90%;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 880px) {
  .nav-links a:not(.button) {
    display: none;
  }
  .hero {
    padding-top: 4rem;
  }
  .hero-grid,
  .route,
  .columns2,
  .cards {
    grid-template-columns: 1fr;
  }
  .hero-mark {
    min-height: 320px;
  }
  .hero-mark {
    display: none;
  }
}

@media (max-width: 620px) {
  .metrics,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .hero-actions {
    flex-direction: column;
  }
  .button:not(.nav-support) {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .brand span {
    display: none;
  }
}

/* FAQ accordion */
.faq-accordion {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
}

.faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 64px;
  padding: 1rem 3.5rem 1rem 1.25rem;
  color: var(--text);
  font-size: 1.08rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.25rem;
  color: var(--accent);
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1;
  transition: transform 180ms ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary:hover,
.faq-item summary:focus-visible {
  background: rgba(255, 255, 255, 0.035);
}

.faq-item summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}

.faq-content {
  padding: 1.25rem;
  color: var(--muted);
}

.faq-content p {
  margin: 0;
}

.faq-content p + p {
  margin-top: 1rem;
}
