:root {
  color-scheme: light dark;
  --bg: #05070d;
  --panel: #0b1220;
  --panel-light: #0f1a30;
  --accent: #ff3b2f;
  --accent-soft: rgba(255, 59, 47, 0.12);
  --text: #e9edf5;
  --muted: #94a0bd;
  --border: rgba(233, 237, 245, 0.1);
  --positive: #20c99a;
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

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

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at top, #101a32, #03050a 70%);
  color: var(--text);
  line-height: 1.6;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin-top: 0;
  color: #fff;
}

p {
  margin: 0 0 1rem;
}

ul,
ol {
  margin: 0 0 1rem 1.1rem;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 4rem clamp(1.5rem, 4vw, 5rem) 2rem;
}

.hero__content {
  max-width: 640px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.2rem;
  color: var(--muted);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.hero__card {
  background: var(--panel);
  padding: 2rem;
  border-radius: 1.25rem;
  border: 1px solid var(--border);
  box-shadow: 0 25px 100px rgba(3, 5, 10, 0.55);
}

.card__label {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.hero__card ul {
  padding-left: 1.2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.85rem 1.6rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease,
    background 0.2s ease;
}

.btn.primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 45px rgba(255, 59, 47, 0.35);
}

.btn.ghost {
  border-color: var(--border);
  color: #fff;
  background: transparent;
}

.btn:hover {
  transform: translateY(-2px);
}

main {
  padding: 0 clamp(1.5rem, 4vw, 5rem) 4rem;
}

.panel {
  background: var(--panel);
  border-radius: 1.25rem;
  border: 1px solid var(--border);
  padding: clamp(1.5rem, 3vw, 3.5rem);
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: 0 15px 70px rgba(3, 5, 10, 0.4);
}

.panel--grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}

.panel--split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: start;
}

.panel__text {
  max-width: 800px;
}

.panel__highlight {
  background: var(--panel-light);
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
}

.stat__value {
  font-size: clamp(2.5rem, 6vw, 3.8rem);
  font-weight: 700;
  margin: 0;
  color: var(--positive);
}

.stat__label {
  font-weight: 500;
}

.facts {
  display: grid;
  gap: 0.8rem;
  list-style: none;
  padding-left: 0;
}

.facts li {
  background: var(--panel-light);
  padding: 1rem;
  border-radius: 0.8rem;
  border: 1px solid var(--border);
}

form {
  display: grid;
  gap: 1rem;
}

label {
  display: flex;
  flex-direction: column;
  font-weight: 500;
  gap: 0.4rem;
}

input,
textarea {
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: #050811;
  color: var(--text);
  padding: 0.85rem 1rem;
  font: inherit;
}

input:focus,
textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.form__note {
  font-size: 0.85rem;
  color: var(--muted);
}

.form-status {
  min-height: 1.2em;
  font-size: 0.9rem;
  font-weight: 600;
}

.form-status--success {
  color: var(--positive);
}

.form-status--error {
  color: var(--accent);
}

.panel__list {
  background: var(--panel-light);
  border-radius: 1.25rem;
  border: 1px solid var(--border);
  padding: 1.5rem;
  max-height: 100%;
  overflow: hidden;
}

.testimony-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-height: 520px;
  overflow-y: auto;
  padding-right: 0.5rem;
}

.testimony {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1rem 1.25rem;
}

.testimony__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.badge {
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.8rem;
}

.site-footer {
  text-align: center;
  padding: 2.5rem 1rem 4rem;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 640px) {
  .hero {
    padding-top: 3rem;
  }

  .panel__list {
    max-height: none;
  }

  .testimony-list {
    max-height: none;
  }
}

