:root {
  color-scheme: dark;
  font-family: 'Open Sans', sans-serif;
  background: #050505;
  color: #f8f8f8;
  accent-color: #7afcff;
}

* {
  box-sizing: border-box;
}

html, body {
  min-height: 100%;
  margin: 0;
  background:
    linear-gradient(rgba(5, 5, 5, 0.99), rgba(5, 5, 5, 0.5)),
    radial-gradient(circle at top, rgba(255,255,255,0.04), transparent 35%),
    radial-gradient(circle at bottom right, rgba(122,252,255,0.06), transparent 30%),
    url('qph-bg.webp') center/cover fixed;
  background-repeat: no-repeat;
  background-size: cover;
  color: #f8f8f8;
}

body {
  line-height: 1.6;
}

.page-shell {
  width: min(1180px, 92vw);
  margin: 0 auto;
  padding: 48px 0 72px;
}

.hero-section {
  display: grid;
  gap: 32px;
  padding: 72px 0 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.eyebrow {
  font-family: 'Chakra Petch', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 0.82rem;
  margin: 0 0 22px;
  color: #9aa0a8;
}

.hero-copy h1 {
  font-family: 'Chakra Petch', sans-serif;
  font-size: clamp(3rem, 5vw, 6rem);
  line-height: 0.9;
  margin: 0;
  letter-spacing: -0.06em;
}

.hero-description {
  max-width: 720px;
  margin: 28px 0 0;
  font-size: 1.08rem;
  color: #dcdcdc;
}

.hero-details {
  display: grid;
  gap: 16px;
}

.stat-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 26px 28px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  background: rgba(255,255,255,0.02);
}

.stat-card span {
  color: #9aa0a8;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
}

.stat-card strong {
  font-size: 1rem;
  font-weight: 700;
}

.content-block {
  padding: 64px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.content-block.reversed {
  display: grid;
  gap: 30px;
}

.section-head span {
  display: inline-block;
  margin-bottom: 12px;
  color: #7afcff;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-head h2 {
  font-family: 'Chakra Petch', sans-serif;
  font-size: clamp(2rem, 3vw, 3.4rem);
  margin: 0;
}

.content-block p,
.feature-list {
  max-width: 860px;
  color: #d0d0d0;
  background:#00000080;
  padding:6px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.grid article {
  padding: 26px 28px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  background: rgba(0,0,0,0.5);
}

.article-split {
  display: block;
}

.article-media {
  width: 100%;
  min-width: 0;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,0.06);
}

.article-media img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.article-content {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.article-content p{
    margin-top:0px;
}

.grid h3 {
  font-family: 'Chakra Petch', sans-serif;
  font-size: 1.1rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: grid;
  gap: 18px;
}

.feature-list li {
  padding-left: 1.2rem;
  position: relative;
}

.feature-list li::before {
  content: '▹';
  position: absolute;
  left: 0;
  color: #7afcff;
}

.contact-block {
  display: grid;
  gap: 28px;
  padding: 56px 0 0;
  background:#050505;
}

.contact-video {
  max-width: 760px;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

.contact-video iframe {
  width: 100%;
  height: 100%;
  min-height: 270px;
  border: 0;
}

.contact-block h2 {
  margin: 0 0 18px;
  font-family: 'Chakra Petch', sans-serif;
  font-size: 2rem;
}

.contact-block p,
.contact-block a {
  color: #d0d0d0;
  text-decoration: none;
}

.contact-block a:hover {
  color: #ffffff;
}

.contact-note {
  padding: 24px 28px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  background: rgba(255,255,255,0.02);
}

.lead-contact{
    padding:12px;
}

.rights {
  margin-top: 20px;
  color: #7a7a7a;
  font-size: 0.95rem;
}

@media (max-width: 960px) {
  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .article-split {
    grid-template-columns: 1fr;
  }

  .article-media {
    width: 100%;
    min-width: 100%;
    
  }

  .page-shell {
    padding: 28px 18px 48px;
  }
}


.black-50{
    background:#050505;
}

@media (min-width: 860px) {
  .hero-section {
    grid-template-columns: 1.6fr 1fr;
    align-items: center;
  }

  .content-block.reversed {
    grid-template-columns: 1fr 0.9fr;
    align-items: flex-start;
  }

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

@media (max-width: 768px) {
  .page-shell {
    padding: 28px 16px 48px;
  }

  .hero-description,
  .content-block p,
  .feature-list,
  .contact-block p {
    font-size: 1rem;
  }
}
