:root {
  color-scheme: dark;
  --bg: #070707;
  --panel: #111111;
  --panel-strong: #171717;
  --text: #f7f7f2;
  --muted: #b9b9aa;
  --line: #2d2d28;
  --yellow: #ffc21a;
  --yellow-deep: #e6a900;
  --black: #000;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 80% 0%, rgba(255, 194, 26, 0.16), transparent 32%),
    linear-gradient(180deg, #070707 0%, #10100e 52%, #070707 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header,
.site-footer,
main {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.brand strong,
.label,
.topic-grid article::before {
  color: var(--yellow);
}

.nav,
.site-footer nav,
.social-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.nav a,
.site-footer a {
  color: var(--muted);
  font-size: 14px;
}

.nav a:hover,
.site-footer a:hover,
.contact-mail a,
.contact-cta a {
  color: var(--yellow);
}

.hero-public {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.8fr);
  align-items: center;
  gap: 32px;
  min-height: 560px;
  padding: 42px 0 30px;
}

.label {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
p {
  letter-spacing: 0;
}

h1,
h2 {
  margin: 0;
  line-height: 1.02;
}

h1 {
  max-width: 800px;
  font-size: clamp(52px, 12vw, 132px);
  font-weight: 950;
}

h2 {
  font-size: clamp(30px, 5vw, 58px);
  font-weight: 920;
}

.subtitle {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--text);
  font-size: clamp(20px, 3vw, 34px);
  font-weight: 760;
  line-height: 1.25;
}

.actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.button-primary,
.button-secondary,
.social-links a,
.social-links span {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 194, 26, 0.52);
  background: var(--yellow);
  color: var(--black);
  padding: 0 18px;
  font-weight: 900;
}

.button-secondary {
  width: fit-content;
  background: transparent;
  color: var(--text);
}

.button-secondary:hover {
  background: var(--yellow);
  color: var(--black);
}

.actions span {
  color: var(--muted);
  font-weight: 800;
}

.hero-mark {
  display: grid;
  place-items: center;
  min-height: 300px;
}

.hero-mark img {
  width: min(100%, 360px);
  filter: drop-shadow(0 22px 48px rgba(0, 0, 0, 0.42));
}

.content-band,
.follow-strip,
.contact-cta,
.page-panel {
  border-top: 1px solid var(--line);
  padding: 58px 0;
}

.section-heading {
  display: grid;
  gap: 4px;
  margin-bottom: 20px;
}

.measure,
.page-panel p,
.contact-cta p {
  max-width: 840px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.65;
}

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

.topic-grid article {
  min-height: 116px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--panel-strong), var(--panel));
  padding: 18px;
  color: var(--text);
  font-size: 22px;
  font-weight: 900;
}

.topic-grid article::before {
  content: "";
  display: block;
  width: 36px;
  height: 5px;
  margin-bottom: 18px;
  background: var(--yellow);
}

.follow-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: end;
  gap: 26px;
}

.social-links {
  justify-content: flex-end;
}

.social-links.inline {
  justify-content: flex-start;
}

.social-links a,
.social-links span {
  background: transparent;
  color: var(--text);
}

.social-links a:hover {
  background: var(--yellow);
  color: var(--black);
}

.contact-cta {
  padding-bottom: 76px;
}

.page-shell {
  min-height: 58vh;
}

.page-panel {
  max-width: 920px;
}

.page-panel h1 {
  font-size: clamp(44px, 8vw, 92px);
}

.split-heading {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}

.news-hero {
  max-width: 980px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.news-grid.compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.news-card {
  display: grid;
  min-width: 0;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--panel-strong), var(--panel));
}

.news-media {
  display: block;
  aspect-ratio: 1 / 1;
  background: #050505;
  overflow: hidden;
}

.news-media video,
.news-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-media video {
  object-fit: contain;
}

.news-card-body {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 18px;
}

.news-card h3 {
  margin: 0;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 950;
  line-height: 1.02;
  text-transform: uppercase;
}

.news-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.source-line {
  font-size: 13px;
}

.hashtags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hashtags span {
  border: 1px solid rgba(255, 194, 26, 0.42);
  color: var(--yellow);
  padding: 5px 8px;
  font-size: 12px;
  font-weight: 900;
}

.empty-news {
  max-width: 760px;
}

.post-detail .post-heading {
  max-width: 1080px;
}

.post-heading p,
.post-meta p {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.video-frame {
  width: min(420px, 100%);
  margin: 0 auto;
  border: 1px solid var(--line);
  background: #000;
}

.video-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  background: #000;
  object-fit: contain;
}

.carousel-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.carousel-pair img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--line);
  object-fit: cover;
}

.contact-mail {
  font-weight: 900;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding: 24px 0 32px;
  color: var(--muted);
}

.site-footer p {
  margin: 6px 0 0;
}

@media (max-width: 760px) {
  .site-header,
  .site-footer,
  .hero-public,
  .follow-strip,
  .split-heading {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .site-header,
  .site-footer {
    flex-direction: column;
  }

  .hero-public {
    min-height: 0;
    padding-top: 34px;
  }

  .hero-mark {
    min-height: 220px;
    place-items: start;
  }

  .hero-mark img {
    width: 220px;
  }

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

  .news-grid,
  .news-grid.compact,
  .carousel-pair {
    grid-template-columns: 1fr;
  }

  .social-links {
    justify-content: flex-start;
  }
}
