:root {
  color-scheme: dark;
}

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

body {
  margin: 0;
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, rgba(223, 231, 108, 0.24), transparent 45%), linear-gradient(145deg, #050505, #020202 70%);
  color: #f7f8f5;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.shell {
  width: min(100% - 2.5rem, 1200px);
  margin-inline: auto;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 5% auto auto 55%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(223, 231, 108, 0.23), transparent);
  filter: blur(20px);
  pointer-events: none;
  z-index: 0;
}

.nav {
  padding-block: clamp(3rem, 8vw, 6.5rem);
  padding-block: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  position: sticky;
  top: 0;
  z-index: 20;
  background: linear-gradient(135deg, rgba(5, 5, 5, 0.78), rgba(2, 2, 2, 0.55));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.25rem;
  -webkit-backdrop-filter: blur(16px);
          backdrop-filter: blur(16px);
  box-shadow: 0 18px 40px rgba(5, 5, 5, 0.55), 0 0 30px rgba(223, 231, 108, 0.15);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #f7f8f5;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.brand:hover {
  text-decoration: none;
  color: #dfe76c;
  transform: translateY(-1px);
}

.brand__mark {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  padding: 0.45rem;
}

.nav__links {
  list-style: none;
  display: flex;
  gap: 1.4rem;
  padding: 0;
  margin: 0;
}

.nav__links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: #acaca3;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav__links a:hover {
  color: #f7f8f5;
}

.nav__socials {
  list-style: none;
  display: flex;
  gap: 0.9rem;
  padding: 0;
  margin: 0;
}

.social-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  color: #f7f8f5;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.social-circle:hover {
  background: rgba(223, 231, 108, 0.12);
  border-color: rgba(223, 231, 108, 0.5);
  transform: translateY(-2px);
}

.social-circle svg {
  width: 20px;
  height: 20px;
}

.nav__toggle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: #f7f8f5;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
  position: relative;
  z-index: 40;
}

.nav__toggle span[aria-hidden] {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav--open .nav__toggle span:nth-of-type(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav--open .nav__toggle span:nth-of-type(2) {
  opacity: 0;
}

.nav--open .nav__toggle span:nth-of-type(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.95rem 1.75rem;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.btn--primary {
  background: linear-gradient(120deg, #dfe76c, #f2f89a);
  color: #050505;
  box-shadow: 0 15px 35px rgba(223, 231, 108, 0.35);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(223, 231, 108, 0.5);
}

.btn--secondary {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #f7f8f5;
  background: transparent;
}

.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #f7f8f5;
  padding: 0.65rem 1.4rem;
}

.btn--ghost:hover {
  color: #050505;
  background: #f7f8f5;
}

.hero__content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 6vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 1;
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.hero__text h1 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero__text p {
  color: #acaca3;
  font-size: 1.05rem;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-block: 2rem;
}

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

.stat {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  padding: 1.25rem;
}

.stat__label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #acaca3;
}

.stat__value {
  display: block;
  font-size: 2rem;
  font-weight: 600;
  margin-block: 0.25rem;
}

.stat__meta {
  font-size: 0.85rem;
  color: #acaca3;
}

.hero__frame {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.hero__frame img {
  height: 100%;
  object-fit: cover;
}

.hero__badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: rgba(5, 5, 5, 0.8);
  padding: 0.9rem 1.25rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero__badge p {
  margin: 0;
  font-size: 0.9rem;
  color: #f7f8f5;
  font-weight: 600;
}

.hero__badge-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.25rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #dfe76c;
  text-decoration: none;
}
.hero__badge-link svg {
  width: 14px;
  height: 14px;
}
.hero__badge-link:hover {
  color: #f7f8f5;
  transition: color 0.2s ease;
}

.ticker {
  margin-top: 2rem;
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.12);
}

.ticker__track {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 1rem 0;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.55);
  animation: ticker 24s linear infinite;
}

.ticker__logo {
  height: 48px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-filter: grayscale(1) brightness(1.35);
          filter: grayscale(1) brightness(1.35);
  opacity: 0.85;
  mix-blend-mode: lighten;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.section {
  padding-block: clamp(3rem, 8vw, 6.5rem);
}

.section__head {
  max-width: 700px;
  margin-bottom: 2.5rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  color: #dfe76c;
  margin-bottom: 0.8rem;
}

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

.card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card h3 {
  margin: 0;
}

.card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.card li::before {
  content: "\2022";
  color: #dfe76c;
  margin-right: 0.5rem;
}

.cases__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.case {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  padding: 2.25rem 1.75rem 1.75rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.case__meta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0.35rem;
  margin-top: -0.35rem;
}

.case__logo {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: transparent;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.case__logo img {
  width: 78%;
  height: 78%;
  -o-object-fit: contain;
     object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.35));
}

.case__date {
  position: absolute;
  top: -0.6rem;
  right: -0.15rem;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #dfe76c;
  white-space: nowrap;
}

.case h3 {
  margin: 0;
  font-size: 1.2rem;
}

.case__summary {
  margin: 0;
  color: #d8d8d0;
}

.case__stats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: #acaca3;
}

.case__stats li {
  position: relative;
  padding-left: 1.15rem;
}

.case__stats li::before {
  content: "";
  position: absolute;
  top: 0.55rem;
  left: 0;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: #dfe76c;
}

.section--highlight {
  background: rgba(255, 255, 255, 0.02);
  border-block: 1px solid rgba(255, 255, 255, 0.05);
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2.5rem;
}

.about__story {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(247, 248, 245, 0.8);
}

.about__story p + p {
  margin-top: 1.2rem;
}

.about__details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about__card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.about__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: #acaca3;
}

.about__list li {
  position: relative;
  padding-left: 1.25rem;
}

.about__list li::before {
  content: "";
  position: absolute;
  top: 0.6rem;
  left: 0;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: #dfe76c;
}

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.contact__details {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact__details span {
  display: block;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: #acaca3;
}

.contact__form {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  display: grid;
  gap: 1rem;
  padding: 1.75rem;
}

.contact__links .btn {
  width: 100%;
  justify-content: center;
}

.contact__form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.9rem;
  color: #acaca3;
}

.contact__form input,
.contact__form textarea {
  border-radius: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(5, 5, 5, 0.7);
  color: #f7f8f5;
  font-size: 1rem;
  padding: 0.9rem 1rem;
  font-family: inherit;
}

.contact__form textarea {
  resize: vertical;
}

.footer {
  padding-block: clamp(3rem, 8vw, 6.5rem);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.9rem;
  color: #acaca3;
}

.footer__links {
  display: flex;
  gap: 1.25rem;
}

.footer__links a {
  text-decoration: none;
  color: #f7f8f5;
  font-weight: 500;
}

@media (max-width: 1200px) {
  .nav {
    flex-wrap: wrap;
  }

  .nav__links {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 900px) {
  .nav {
    flex-wrap: wrap;
    width: 100%;
    margin-inline: 0;
    border-radius: 0;
    border: none;
    background: #020202;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.55);
  }

  .brand {
    margin-inline: auto;
  }

  .nav__toggle {
    display: inline-flex;
  }

  .nav__menu {
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    gap: 2rem;
    padding: calc(4rem + 60px) 2rem 3rem;
    border-top: none;
    display: none;
    position: fixed;
    inset: 0;
    min-height: 100vh;
    background: rgba(2, 2, 2, 0.98);
    z-index: 30;
    overflow-y: auto;
  }

  .nav--open .nav__menu {
    display: flex;
  }

  .nav__links {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    font-size: 1.15rem;
  }

  .nav__socials {
    width: 100%;
    justify-content: center;
  }

  .btn--ghost {
    width: min(260px, 100%);
    justify-content: center;
  }

  .nav__menu > * {
    width: min(420px, 100%);
  }

  .hero__content {
    grid-template-columns: 1fr;
  }

  .contact {
    grid-template-columns: 1fr;
  }

  .about__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .nav {
    width: 100%;
    margin-inline: 0;
    border-radius: 0;
    border: none;
    background: #020202;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  }

  .hero__cta {
    flex-direction: column;
  }

  .footer {
    flex-direction: column;
  }

  .ticker__logo {
    height: 36px;
  }
}
