:root {
  --bg-main: #161e26;
  --bg-footer: #05131d;
  --text-main: #ffffff;
  --text-soft: #eaeaea;
  --text-muted: #a7a7a8;
  --accent-blue: #447ef8;
  --field-border: #364b5e;
  --header-divider: #686868;
  --footer-divider: #95a1a9;
  --error: #e85d5d;
  --success: #3db88a;
  --radius: 4px;
  --transition: 0.3s ease;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg-main);
  color: var(--text-main);
  font-family: "Poppins", -apple-system, system-ui, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 24px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  padding: 0.5rem 1rem;
  background: var(--accent-blue);
  color: #fff;
  border-radius: var(--radius);
  text-decoration: none;
  z-index: 20;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  border-bottom: 1px solid var(--header-divider);
}

.header-inner {
  width: min(1140px, calc(100% - 20px));
  min-height: 110px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo img {
  display: block;
  max-width: 180px;
  width: 100%;
  height: auto;
}

.btn {
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
}

.btn-outline {
  background-color: transparent;
  color: var(--accent-blue);
  border: 1px solid var(--accent-blue);
  padding: 14px 18px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}

.btn-outline:hover {
  background-color: #fff;
  color: var(--bg-main);
  border-color: #fff;
}

.main-content {
  padding: 0;
}

.container {
  width: min(1140px, 100%);
  margin: 0 auto;
}

.report-intro h1 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 30px;
  color: #fff;
}

.intro-text {
  margin: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 300;
}

.report-form {
  margin-top: 0;
  padding: 48px 10px;
}

.report-intro {
  padding: 24px 10px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  margin: 0 0 10px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 500;
}

.required {
  color: #ff4d4f;
}

.row {
  display: flex;
  margin-left: -5px;
  margin-right: -5px;
}

.field {
  padding-left: 5px;
  padding-right: 5px;
  margin-bottom: 0;
}

.row-2col .field {
  width: 50%;
}

.row-phone .field-code {
  width: 25%;
}

.row-phone .field-number {
  width: 75%;
}

.field input,
.field textarea {
  width: 100%;
  color: #fff;
  background-color: transparent;
  border: 1px solid var(--field-border);
  border-radius: var(--radius);
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  padding: 12px 16px;
  transition: all var(--transition);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(234, 234, 234, 0.75);
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 2px rgba(68, 126, 248, 0.2);
}

.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--error);
}

.field-error {
  display: block;
  min-height: 1.2em;
  color: var(--error);
  font-size: 12px;
  margin-top: 4px;
}

.help-text {
  margin: 8px 5px 0;
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.3rem;
}

.form-disclaimer {
  margin-top: 28px;
  border-top: 1px solid #202c38;
  padding-top: 18px;
}

.form-disclaimer p {
  margin: 0;
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.3rem;
}

.form-actions {
  margin-top: 20px;
}

.btn-submit {
  width: 100%;
  background-color: transparent;
  color: var(--accent-blue);
  border: 2px solid var(--accent-blue);
  border-radius: var(--radius);
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  padding: 15px 30px;
}

.btn-submit:hover {
  background-color: #fff;
  color: var(--bg-main);
  border-color: #fff;
}

.site-footer {
  background: var(--bg-footer);
}

.footer-container {
  width: min(1140px, calc(100% - 20px));
  margin: 0 auto;
  padding: 36px 10px;
}

.backed-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.backed-label {
  width: 8.304%;
  margin: 0 0 -12px;
  color: var(--text-muted);
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
}

.partner-swiper {
  width: 100%;
  flex: 1;
}

.partner-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.partner-swiper img {
  display: block;
  max-width: 80px;
  height: auto;
}

.footer-divider {
  border: 0;
  border-top: 1px solid var(--footer-divider);
  margin: 36px 0 0;
}

.community-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-top: 36px;
}

.twitter-link {
  color: #fff;
  display: inline-flex;
  text-decoration: none;
  transition: color var(--transition);
}

.twitter-link:hover {
  color: var(--accent-blue);
}

.community-text {
  color: #fff;
  margin: 0;
}

.form-message {
  margin-bottom: 20px;
  padding: 10px 12px;
  border-radius: var(--radius);
  font-size: 13px;
}

.form-message.success {
  background: rgba(61, 184, 138, 0.15);
  border: 1px solid var(--success);
  color: var(--success);
}

.form-message.error {
  background: rgba(232, 93, 93, 0.12);
  border: 1px solid var(--error);
  color: var(--error);
}

@media (max-width: 1024px) {
  .header-inner {
    padding: 10px;
  }

  .backed-label {
    width: 95.203px;
    max-width: 95.203px;
    margin-bottom: -12px;
  }

  .backed-section {
    align-items: center;
  }
}

@media (max-width: 767px) {
  .header-inner {
    min-height: 80px;
    padding: 10px;
  }

  .logo img {
    max-width: 140px;
  }

  .btn-outline {
    font-size: 12px;
    padding: 12px;
  }

  .row {
    flex-wrap: wrap;
  }

  .row-2col .field,
  .row-phone .field-code,
  .row-phone .field-number {
    width: 100%;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
