body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  background:
    radial-gradient(circle at top, rgba(96, 109, 140, 0.08), transparent 28%),
    #090b10;
  color: #f2f2f2;
}

* {
  box-sizing: border-box;
}

a {
  color: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.topbar {
  background: rgba(12, 13, 17, 0.96);
  border-bottom: 1px solid rgba(122, 137, 170, 0.10);
  position: sticky;
  top: 0;
  z-index: 20;
}

.topbar-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-logo {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.main-nav a {
  text-decoration: none;
  color: rgba(242, 242, 242, 0.72);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.topbar-button,
.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 700;
}

.topbar-button {
  background: transparent;
  color: #f2f2f2;
  padding: 11px 0;
  font-size: 13px;
}

.hero {
  background: #090b10;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  padding: 64px 0;
  border-bottom: 1px solid rgba(132, 145, 166, 0.10);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero::before,
.hero::after {
  content: none;
}

.hero-inner {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 560px;
  margin-left: auto;
  text-align: right;
  background: linear-gradient(180deg, rgba(9, 11, 16, 0.04), rgba(9, 11, 16, 0.28));
  padding: 18px 20px 16px;
  border-radius: 20px;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 12px;
  background: linear-gradient(135deg, #5a6782, #3d4759);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 12px;
}

.hero h1 {
  margin: 0 0 16px;
  font-size: 32px;
  line-height: 0.95;
  letter-spacing: -0.05em;
  max-width: 11ch;
  margin-left: auto;
  color: yellow;
}


.hero-text {
  margin: 0 0 24px;
  max-width: 48ch;
  color: rgba(242, 242, 242, 0.74);
  line-height: 1.7;
  margin-left: auto;
}

.hero-button {
  background: transparent;
  color: #f5f5f7;
  padding: 0;
}

.page-shell {
  padding: 34px 0 72px;
}

.content-grid {
  display: block;
}

.posts-column {
  display: grid;
  gap: 18px;
  max-width: 1040px;
}

.section-heading {
  margin: 0 0 8px;
  color: #f2f2f2;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.featured-row {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
  padding: 18px 0 14px;
}

.video-frame {
  width: 280px;
  background: transparent;
}

.video-frame iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border: 0;
}

.featured-text {
  padding: 6px 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
  max-width: 36ch;
}

.text-frame {
  padding: 16px 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.post-meta {
  margin: 0;
  color: rgba(242, 242, 242, 0.68);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.featured-text h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.1;
  overflow-wrap: normal;
  word-break: normal;
  color: #e6ebf4;
  text-shadow: 0 0 14px rgba(120, 137, 167, 0.10);
}

.post-text,
.featured-text .post-text {
  color: rgba(242, 242, 242, 0.72);
  line-height: 1.45;
  text-align: left;
  margin: 0;
  overflow-wrap: break-word;
  max-width: 42ch;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.featured-text .post-text {
  font-size: 14px;
}

.video-post .post-text {
  font-size: 14px;
}

.post-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 8px;
  width: 100%;
  max-width: none;
  padding: 0 18px;
}

.post-info {
  margin: 0;
  color: rgba(190, 198, 212, 0.50);
  font-size: 11px;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.post-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border: 1px solid rgba(132, 145, 166, 0.40);
  border-radius: 4px;
  color: #f2f2f2;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  background: rgba(132, 145, 166, 0.14);
}

.post-button:hover {
  border-color: rgba(174, 183, 199, 0.40);
}

@media (max-width: 980px) {
  .posts-column {
    max-width: none;
  }

  .section-heading {
    margin-bottom: 6px;
  }

  .featured-row {
    grid-template-columns: 1fr;
  }

  .video-frame {
    width: 100%;
  }

  .post-footer {
    flex-wrap: wrap;
  }

  .topbar-inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: 14px 0;
  }

  .hero {
    min-height: auto;
    padding: 56px 0;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 16px;
  }

  .main-nav {
    justify-content: center;
    gap: 16px;
  }

  .site-logo {
    width: 100%;
    text-align: center;
  }
}
