:root {
  --ink: #0b1324;
  --deep: #0f1d2e;
  --accent: #f2b53b;
  --accent-2: #f49d1f;
  --surface: #f7f7fb;
  --muted: #6b7280;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body.landing-body {
  margin: 0;
  font-family: "Source Sans 3", sans-serif;
  color: var(--ink);
  background: var(--surface);
  overflow-x: hidden;
}

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

.landing-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(11, 19, 36, 0.9);
  backdrop-filter: blur(12px);
}

.landing-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

.landing-logo img {
  height: 42px;
}

.landing-nav__links {
  display: flex;
  gap: 20px;
  font-weight: 600;
}

.landing-nav__links a {
  color: #e8edf6;
  text-decoration: none;
}

.landing-cta {
  background: var(--accent);
  color: var(--ink);
  padding: 10px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

.landing-nav__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.landing-nav__actions > * {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.landing-nav__actions .btn-solid,
.landing-nav__actions .btn-outline,
.landing-nav__actions .landing-cta {
  padding: 8px 16px;
  font-size: 13px;
  border-radius: 999px;
  min-height: 36px;
  line-height: 1.1;
}

.landing-nav__actions .btn-solid {
  border: 1px solid transparent;
}

.hero {
  background: radial-gradient(circle at top left, #1b2c46, #0b1324 55%);
  color: white;
  padding: 72px 0 60px;
}

.hero--has-bg {
  background-size: cover;
  background-position: center;
}

.hero__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 48px;
  align-items: center;
}

.hero__tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: #f7f7fb;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  margin-bottom: 16px;
}

.hero h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  margin: 0 0 16px;
}

.hero p {
  color: #d6dbe5;
  font-size: 18px;
  margin-bottom: 24px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.btn-solid,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
}

.btn-solid {
  background: var(--accent);
  color: var(--ink);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #f7f7fb;
}

.hero__meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}

.hero__meta strong {
  display: block;
  font-size: 20px;
}

.hero__visual {
  display: flex;
  justify-content: center;
}

.hero__panel {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 24px;
  width: min(380px, 100%);
}

.hero__panel-logo {
  height: 38px;
}

.hero__panel-image {
  width: 100%;
  height: auto;
  border-radius: 14px;
  display: block;
  margin-bottom: 16px;
}

.hero__panel-card {
  background: #f8fafc;
  color: var(--ink);
  padding: 18px;
  border-radius: 12px;
  margin-top: 20px;
}

.hero__panel-stats {
  display: grid;
  gap: 12px;
  margin-top: 10px;
}

.hero__panel-stat {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-size: 14px;
  color: #5b6675;
}

.hero__panel-stat strong {
  font-size: 18px;
  color: var(--ink);
}

.hero__bar {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  margin: 12px 0;
}

.hero__bar span {
  display: block;
  height: 100%;
  width: 64%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 999px;
}

.section {
  padding: 56px 0;
}

.section__header {
  margin-bottom: 32px;
}

.section__header h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(26px, 4vw, 36px);
  margin: 0 0 12px;
}

.section__header p {
  color: var(--muted);
}

.section__note {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.section--stats {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.04), rgba(255, 255, 255, 0.95));
}

.grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

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

.stats-grid--hero {
  margin-top: 22px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.stats-grid--hero .stat-tile {
  background: rgba(255, 255, 255, 0.08);
  color: #f8fafc;
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stats-grid--hero .stat-tile__label {
  color: rgba(248, 250, 252, 0.6);
}

.stats-grid--hero .stat-tile__detail {
  color: rgba(248, 250, 252, 0.6);
}

.stat-tile {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.stat-tile__label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #8b95a7;
  margin: 0 0 8px;
}

.stat-tile h3 {
  margin: 0 0 6px;
  font-size: 28px;
}

.stat-tile__detail {
  font-size: 13px;
  color: #64748b;
}

.project-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(var(--landing-card-width), 1fr));
}

.card {
  background: white;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.card__image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 16px;
}

.card__image--screenshot {
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
}

.project-card {
  border-radius: var(--landing-card-radius);
  overflow: hidden;
  color: #f8fafc;
  box-shadow: var(--landing-card-shadow);
  position: relative;
  min-height: var(--landing-card-height);
  max-width: var(--landing-card-width);
  height: var(--landing-card-height);
}

.project-card__media {
  position: relative;
  aspect-ratio: auto;
  height: 100%;
}

.project-card__media-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.project-card__media-bg--solid {
  background: linear-gradient(135deg, #0b1324, #1f2a44);
}

.project-card__badge {
  display: none;
}

.project-card__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: var(--landing-card-padding);
  background: linear-gradient(180deg, rgba(11, 19, 36, 0), rgba(11, 19, 36, 0.7) 45%, rgba(11, 19, 36, 0.92));
}

.project-card__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  color: #f2b53b;
  margin: 0 0 12px;
}

.project-card h3 {
  font-size: 15px;
  margin: 0 0 6px;
  font-weight: 700;
}

.project-card__location {
  color: #cbd3e1;
  margin: 0 0 16px;
}

.project-card__metrics {
  display: grid;
  gap: 6px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 6px;
}

.project-card__metrics span {
  display: block;
  font-size: 9px;
  color: #f8fafc;
  margin-bottom: 4px;
}

.project-card__metrics strong {
  font-size: 13px;
  color: #f8fafc;
  letter-spacing: 0.02em;
}

.project-card__desc {
  color: #e2e8f0;
  margin: 0 0 16px;
}

.project-card__tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  background: rgba(248, 250, 252, 0.12);
  color: #e2e8f0;
  border-radius: 999px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.reviews-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.review-card {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
}

.review-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.review-card__name {
  font-weight: 700;
  color: #0f172a;
}

.review-card__stars {
  color: #f2b53b;
  letter-spacing: 0.08em;
}

.review-cta {
  margin-top: 20px;
}

.maintenance {
  min-height: 70vh;
  display: grid;
  place-items: center;
  padding: 80px 20px;
  background: linear-gradient(180deg, #0b1324, #1c2742);
}

.maintenance__panel {
  max-width: 520px;
  text-align: center;
  color: #f8fafc;
}

.maintenance__panel img {
  height: 48px;
  margin-bottom: 20px;
}

.maintenance__panel h1 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 12px;
}

.maintenance__panel p {
  color: #cbd3e1;
  margin-bottom: 24px;
}

.section--sponsors {
  background: #f8fafc;
}

.sponsor-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  align-items: center;
}

.sponsor-logo {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
}

.sponsor-logo img {
  max-width: 140px;
  max-height: 80px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(242, 181, 59, 0.15);
  margin-bottom: 16px;
  font-size: 22px;
}

.section--dark {
  background: #0b1324;
  color: white;
}

.section--dark p,
.section--dark li {
  color: #cbd3e1;
}

.lead-toast {
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(34, 197, 94, 0.16);
  color: #bbf7d0;
  border: 1px solid rgba(34, 197, 94, 0.5);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.lead-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.lead-modal.is-open {
  display: flex;
}

.lead-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 12, 24, 0.75);
}

.lead-modal__panel {
  position: relative;
  background: #0b1324;
  border-radius: 20px;
  padding: 26px;
  width: min(520px, 92vw);
  max-height: 90vh;
  overflow: auto;
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: 0 22px 50px rgba(2, 6, 23, 0.35);
}

.lead-modal__close {
  position: absolute;
  top: 14px;
  right: 16px;
  border: none;
  background: transparent;
  color: rgba(248, 250, 252, 0.8);
  font-size: 22px;
  cursor: pointer;
}

.lead-form {
  background: rgba(11, 19, 36, 0.65);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 18px;
  padding: 22px;
  display: grid;
  gap: 12px;
  color: #f8fafc;
}

.lead-form__header h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.lead-form__header p {
  margin: 0 0 4px;
  color: rgba(248, 250, 252, 0.7);
}

.lead-form label {
  display: grid;
  gap: 6px;
  font-size: 12px;
  color: rgba(248, 250, 252, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.lead-form__hp {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.lead-form input,
.lead-form textarea {
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 10px;
  padding: 10px 12px;
  color: #f8fafc;
  font-size: 14px;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: rgba(226, 232, 240, 0.6);
}

.lead-form__row {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.lead-form__success,
.lead-form__error {
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 13px;
  text-transform: none;
  letter-spacing: 0;
}

.lead-form__success {
  background: rgba(34, 197, 94, 0.12);
  color: #bbf7d0;
  border: 1px solid rgba(34, 197, 94, 0.4);
}

.lead-form__error {
  background: rgba(239, 68, 68, 0.12);
  color: #fecaca;
  border: 1px solid rgba(239, 68, 68, 0.4);
}

.section__split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  align-items: center;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  margin-bottom: 10px;
  padding-left: 24px;
  position: relative;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.stat-card {
  background: #14213d;
  padding: 28px;
  border-radius: 20px;
  display: grid;
  gap: 14px;
  color: #f8fafc;
}

.stat-card strong {
  font-size: 28px;
  display: block;
}

.stat-card span {
  color: rgba(248, 250, 252, 0.7);
}

.news-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.news-card {
  background: white;
  padding: 22px;
  border-radius: 16px;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
}

.news-card__header {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 12px;
}

.news-card a {
  text-decoration: none;
  color: var(--ink);
}

.news-detail h1 {
  font-family: "Space Grotesk", sans-serif;
  margin-bottom: 10px;
}

.news-detail__meta {
  color: var(--muted);
  font-size: 14px;
}

.news-detail__body {
  margin-top: 20px;
  line-height: 1.7;
}

.landing-footer {
  background: #0b1324;
  color: #e8edf6;
  padding: 28px 0;
}

.landing-footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.landing-footer__links a {
  color: #e8edf6;
  text-decoration: none;
  margin-right: 12px;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  background: #111827;
  color: #f9fafb;
  border-radius: 14px;
  padding: 16px 20px;
  width: min(820px, 92%);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  display: none;
}

.cookie-banner__content {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cookie-banner__actions button {
  border: none;
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-banner .btn-outline {
  background: transparent;
  border: 1px solid #f9fafb;
  color: #f9fafb;
}

.cookie-banner .btn-solid {
  background: var(--accent);
  color: var(--ink);
}

.legal h1 {
  font-family: "Space Grotesk", sans-serif;
}

@media (max-width: 720px) {
  .landing-nav__links {
    display: none;
  }
  .landing-nav__actions {
    width: 100%;
    justify-content: center;
  }
  .hero__panel {
    width: 100%;
  }
  .hero {
    padding: 56px 0 48px;
  }
  .section {
    padding: 48px 0;
  }
}
