@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=Inter:wght@400;500;600;700&display=swap");

:root {
  --bg: #080909;
  --soft: #111313;
  --card: #151818;
  --line: rgba(255, 255, 255, 0.1);
  --text: #f6f6f6;
  --muted: #aaaead;
  --orange: #ff6b00;
  --orange-light: #ff913c;
  --max: 1180px;
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
  line-height: 1.65;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 8% 5%, rgba(255, 107, 0, 0.16), transparent 32%),
    radial-gradient(circle at 92% 20%, rgba(255, 107, 0, 0.09), transparent 28%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  background: var(--orange);
  color: #000;
  padding: 10px 14px;
  font-weight: 800;
  z-index: 99;
}

.skip-link:focus {
  left: 8px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(8, 9, 9, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.navbar {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.brand,
h1,
h2,
h3,
.social-name,
.footer-title {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
}

.brand {
  font-size: 2rem;
  letter-spacing: 0.04em;
}

.brand span,
h1 span,
.title-accent {
  color: var(--orange);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.82rem;
  font-weight: 700;
}

.nav-links a {
  color: #d6d6d6;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--orange-light);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  color: #fff;
  background: transparent;
  border-radius: 10px;
  padding: 9px 11px;
  font-size: 1.15rem;
  cursor: pointer;
}

.hero {
  min-height: 660px;
  display: grid;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 55px;
  align-items: center;
  padding: 72px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--orange-light);
  text-transform: uppercase;
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--orange);
}

h1,
h2,
h3 {
  line-height: 0.98;
  margin: 0;
}

h1 {
  font-size: clamp(3.8rem, 9vw, 7.4rem);
  margin: 16px 0 22px;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2.45rem, 5vw, 4.1rem);
  margin-bottom: 15px;
}

h3 {
  font-size: 1.7rem;
  margin-bottom: 8px;
}

.hero-text p,
.page-hero p,
.section-heading p,
.lead {
  max-width: 730px;
  color: #c7cbca;
  font-size: 1.04rem;
  margin: 0 0 28px;
}

.hero-photo-wrap {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: end;
  justify-content: center;
}

.hero-photo-wrap::before {
  content: "";
  position: absolute;
  width: 390px;
  height: 390px;
  background: var(--orange);
  border-radius: 50%;
  opacity: 0.82;
  right: 8%;
  top: 2%;
}

.hero-photo {
  position: relative;
  width: min(100%, 410px);
  aspect-ratio: 3 / 4.25;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(255, 107, 0, 0.45);
  border-radius: 24px;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.38);
}

.hero-badge {
  position: absolute;
  bottom: 26px;
  left: 0;
  width: 200px;
  background: #0d0e0e;
  border: 1px solid var(--line);
  border-left: 4px solid var(--orange);
  border-radius: 10px;
  padding: 13px 15px;
}

.hero-badge strong {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--orange-light);
}

.hero-badge span {
  color: var(--muted);
  font-size: 0.76rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid var(--orange);
  border-radius: 9px;
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: 0.2s;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--orange);
  color: #111;
}

.button-outline {
  color: var(--orange-light);
}

.button-outline:hover {
  background: rgba(255, 107, 0, 0.1);
}

.section {
  padding: 96px 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0));
  border-block: 1px solid var(--line);
}

.section-heading {
  max-width: 735px;
  margin-bottom: 38px;
}

.grid-2,
.grid-3 {
  display: grid;
  gap: 20px;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: rgba(255, 107, 0, 0.12);
  border: 1px solid rgba(255, 107, 0, 0.33);
  border-radius: 12px;
  color: var(--orange-light);
  font-weight: 800;
  margin-bottom: 18px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.stat {
  padding: 28px;
  background: #0d0f0f;
  text-align: center;
}

.stat strong {
  display: block;
  color: var(--orange);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 3.35rem;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 7px;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--muted);
  letter-spacing: 0.08em;
}

.project-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 35px;
  align-items: center;
  background: #101212;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(25px, 5vw, 54px);
}

.team-logo {
  width: min(100%, 290px);
  margin: auto;
  border-radius: 14px;
}

.project-panel p,
.partner-card p {
  color: var(--muted);
}

.page-hero {
  padding: 92px 0 62px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(110deg, rgba(255, 107, 0, 0.13), transparent 58%), #0b0c0c;
}

.page-hero h1 {
  font-size: clamp(3.2rem, 7vw, 5.8rem);
  margin: 13px 0 15px;
}

.timeline {
  position: relative;
  margin-top: 30px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 11px;
  width: 2px;
  background: rgba(255, 107, 0, 0.38);
}

.timeline-item {
  position: relative;
  padding-left: 43px;
  margin-bottom: 28px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 24px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--orange);
  border: 3px solid var(--bg);
}

.timeline-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
}

.timeline-tag {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--orange-light);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.timeline-card h3 {
  font-size: 1.55rem;
}

.timeline-card p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.91rem;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.filter-button {
  border: 1px solid var(--line);
  background: transparent;
  color: #ddd;
  border-radius: 999px;
  padding: 9px 15px;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
  text-transform: uppercase;
}

.filter-button.active,
.filter-button:hover {
  color: #101010;
  background: var(--orange);
  border-color: var(--orange);
}

.lan-entry.hidden {
  display: none;
}

.config-group {
  background: #101212;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}

.config-group h2 {
  font-size: 2.45rem;
}

.config-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.config-list li {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 15px;
  color: var(--muted);
}

.config-list li:last-child {
  border-bottom: 0;
}

.config-list strong {
  color: var(--text);
}

.social-card {
  display: flex;
  flex-direction: column;
  min-height: 210px;
  transition: 0.2s;
}

.social-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 107, 0, 0.55);
}

.social-name {
  font-size: 1.8rem;
}

.social-card p {
  margin-top: 5px;
}

.arrow-link {
  color: var(--orange-light);
  margin-top: auto;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.partner-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 30px;
  align-items: center;
}

.partner-mark {
  min-height: 110px;
  border: 1px dashed rgba(255, 107, 0, 0.48);
  border-radius: 13px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 12px;
  color: var(--orange-light);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.65rem;
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  background: #111313;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 20px;
}

.faq-list summary {
  font-weight: 800;
  cursor: pointer;
}

.faq-list p {
  color: var(--muted);
  margin: 13px 0 0;
}

.contact-box {
  max-width: 780px;
  padding: clamp(25px, 5vw, 52px);
  text-align: center;
  margin: auto;
  background: radial-gradient(circle at top, rgba(255, 107, 0, 0.22), transparent 45%), #111313;
  border: 1px solid var(--line);
  border-radius: 22px;
}

.contact-box p {
  color: var(--muted);
}

.site-footer {
  padding: 58px 0 22px;
  border-top: 1px solid var(--line);
  background: #070808;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 35px;
}

.footer-logo {
  width: 105px;
  border-radius: 10px;
  margin-bottom: 14px;
}

.footer-title {
  font-size: 1.35rem;
  margin: 0 0 12px;
}

.footer-copy,
.footer-links a {
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-links {
  display: grid;
  gap: 7px;
}

.footer-links a:hover {
  color: var(--orange-light);
}

.footer-bottom {
  margin-top: 42px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: #777;
  font-size: 0.76rem;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 72px;
    padding: 22px 20px;
    background: #0c0d0d;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links.open {
    display: flex;
  }

  .hero-grid,
  .project-panel {
    grid-template-columns: 1fr;
  }

  .hero-photo-wrap {
    min-height: 400px;
    max-width: 420px;
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .section {
    padding: 65px 0;
  }

  .hero-grid {
    padding: 55px 0;
    gap: 25px;
  }

  .hero {
    min-height: auto;
  }

  .hero-photo-wrap {
    min-height: 360px;
  }

  .hero-photo-wrap::before {
    width: 295px;
    height: 295px;
  }

  .hero-badge {
    left: 0;
    bottom: 8px;
  }

  .grid-2,
  .grid-3,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .stat {
    padding: 20px;
  }

  .partner-card {
    grid-template-columns: 1fr;
  }

  .config-list li {
    flex-direction: column;
    gap: 2px;
  }

  .page-hero {
    padding: 68px 0 48px;
  }
}