:root {
  color-scheme: dark;
  --bg: #080b0e;
  --ink: #f5f7f4;
  --muted: #aeb9bb;
  --line: rgba(255, 255, 255, 0.16);
  --panel: rgba(9, 14, 18, 0.72);
  --cyan: #67e8f9;
  --amber: #f5b84b;
  --red: #ff5b61;
  --green: #80e27e;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: linear-gradient(180deg, rgba(2, 4, 7, 0.88), rgba(2, 4, 7, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  max-width: min(42vw, 214px);
  padding: 6px 8px;
  border: 1px solid rgba(245, 247, 244, 0.18);
  background: rgba(2, 7, 11, 0.42);
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.2);
}

.brand-logo {
  display: block;
  width: clamp(132px, 11vw, 190px);
  max-width: 100%;
  height: auto;
}

nav {
  display: flex;
  gap: clamp(14px, 3vw, 32px);
  color: rgba(245, 247, 244, 0.82);
  font-size: 0.95rem;
}

.hero {
  position: relative;
  min-height: 94svh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 110px clamp(18px, 5vw, 72px) 58px;
}

.hero-image,
.hero-scrim,
.hero-grid {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.12) contrast(1.02) brightness(1.08);
  transform: scale(1.01);
}

.hero-scrim {
  background:
    radial-gradient(circle at 72% 52%, rgba(245, 184, 75, 0.16), transparent 24%),
    radial-gradient(circle at 82% 28%, rgba(103, 232, 249, 0.16), transparent 26%),
    linear-gradient(90deg, rgba(3, 5, 8, 0.92) 0%, rgba(3, 5, 8, 0.68) 34%, rgba(3, 5, 8, 0.08) 64%, rgba(3, 5, 8, 0.18) 100%),
    linear-gradient(180deg, rgba(3, 5, 8, 0.08), rgba(3, 5, 8, 0.58));
}

.hero-grid {
  z-index: 1;
  opacity: 0.28;
  background:
    linear-gradient(rgba(103, 232, 249, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(103, 232, 249, 0.08) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 72%, transparent);
  animation: drift 12s linear infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding-top: clamp(42px, 7vw, 104px);
}

.kicker,
.section-label,
.panel-label,
.topic,
time {
  color: var(--cyan);
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(3.4rem, 8.5vw, 8.6rem);
  line-height: 0.84;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.72);
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 30px;
  color: rgba(245, 247, 244, 0.86);
  font-size: clamp(1.05rem, 1.8vw, 1.32rem);
}

.hero-verdict {
  display: grid;
  grid-template-columns: repeat(3, 106px);
  gap: 10px;
  margin-bottom: 24px;
}

.hero-verdict div {
  min-height: 86px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(2, 6, 9, 0.58);
  backdrop-filter: blur(14px);
}

.hero-verdict span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-verdict strong {
  display: block;
  margin-top: 2px;
  font-size: 2.55rem;
  line-height: 1;
}

.future-readout {
  position: absolute;
  z-index: 3;
  top: 108px;
  right: clamp(18px, 5vw, 72px);
  display: grid;
  gap: 8px;
  min-width: 230px;
  color: rgba(245, 247, 244, 0.86);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.future-readout span {
  padding: 8px 10px;
  border-left: 2px solid var(--red);
  background: linear-gradient(90deg, rgba(255, 91, 97, 0.24), rgba(2, 6, 9, 0.18));
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--line);
  font-weight: 800;
}

.button.primary {
  background: var(--ink);
  color: #071014;
}

.button.secondary {
  background: rgba(8, 13, 17, 0.46);
  backdrop-filter: blur(16px);
}

.signal-panel {
  position: absolute;
  z-index: 2;
  right: clamp(18px, 5vw, 72px);
  bottom: 42px;
  width: min(390px, calc(100vw - 36px));
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(2, 6, 9, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 80px rgba(255, 91, 97, 0.12);
}

.signal-panel strong {
  display: block;
  margin: 8px 0;
  font-size: 1.16rem;
}

.signal-panel p {
  margin-bottom: 0;
  color: var(--muted);
}

.intro-band,
.section,
.assessment,
footer {
  padding-inline: clamp(18px, 5vw, 72px);
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
  gap: clamp(24px, 5vw, 72px);
  padding-top: 64px;
  padding-bottom: 64px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0d1215;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4.3vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
}

.intro-band p,
.assessment-copy p {
  color: var(--muted);
  font-size: 1.1rem;
}

.section {
  padding-top: 86px;
  padding-bottom: 86px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.vision-card,
.blog-list article {
  min-height: 310px;
  padding: 22px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
}

.vision-card {
  display: flex;
  flex-direction: column;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.vision-card:hover {
  transform: translateY(-4px);
  border-color: rgba(103, 232, 249, 0.55);
  background: linear-gradient(180deg, rgba(103, 232, 249, 0.12), rgba(255, 255, 255, 0.028));
}

.vision-card h3,
.blog-list h3 {
  margin: 18px 0 12px;
  font-size: 1.38rem;
  line-height: 1.1;
}

.vision-card p,
.vision-card small,
.blog-list p {
  color: var(--muted);
}

.meter {
  width: 100%;
  height: 10px;
  margin-top: auto;
  margin-bottom: 14px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.meter span {
  display: block;
  width: var(--score);
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--amber), var(--red));
}

.assessment {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(26px, 5vw, 74px);
  align-items: center;
  padding-top: 86px;
  padding-bottom: 86px;
  background:
    linear-gradient(135deg, rgba(103, 232, 249, 0.08), transparent 32%),
    linear-gradient(225deg, rgba(255, 91, 97, 0.11), transparent 30%),
    #101619;
}

.scoreboard {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
}

.scoreboard div {
  min-height: 150px;
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.scoreboard div:nth-child(2n) {
  border-right: 0;
}

.scoreboard div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.scoreboard span {
  display: block;
  color: var(--muted);
  margin-bottom: 28px;
}

.scoreboard strong {
  font-size: clamp(2rem, 5vw, 4.8rem);
  line-height: 1;
}

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

.blog-list article {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}

.blog-list img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
}

.blog-list time,
.blog-list h3,
.blog-list p,
.blog-list .text-link {
  margin-inline: 22px;
}

.blog-list time {
  margin-top: 20px;
}

.blog-list p {
  margin-bottom: 18px;
}

.text-link,
.back-link {
  color: var(--cyan);
  font-weight: 800;
}

.text-link {
  margin-top: auto;
  margin-bottom: 22px;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 32px;
  padding-bottom: 32px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.article-page {
  background:
    radial-gradient(circle at 70% 0%, rgba(103, 232, 249, 0.1), transparent 34%),
    #080b0e;
}

.article-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
}

.article-shell {
  padding: clamp(36px, 6vw, 72px) clamp(18px, 5vw, 72px) 80px;
}

.article {
  max-width: 920px;
  margin: 0 auto;
}

.article time {
  display: inline-block;
  margin-top: 28px;
  margin-bottom: 14px;
}

.article h1 {
  max-width: 920px;
  margin-bottom: 22px;
  font-size: clamp(2.8rem, 6.6vw, 6.6rem);
}

.article-lead {
  color: rgba(245, 247, 244, 0.88);
  font-size: clamp(1.18rem, 2vw, 1.45rem);
}

.article-image {
  display: block;
  width: 100%;
  margin: 32px 0;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article p:not(.article-lead) {
  color: var(--muted);
  font-size: 1.08rem;
}

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

  .intro-band,
  .assessment {
    grid-template-columns: 1fr;
  }

  .signal-panel {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 34px;
  }

  .future-readout {
    display: none;
  }

  .article-header {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .site-header {
    align-items: flex-start;
    gap: 12px;
    flex-direction: column;
  }

  .brand {
    padding: 6px 8px;
    border: 1px solid rgba(245, 247, 244, 0.16);
    background: rgba(2, 7, 11, 0.42);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.24);
  }

  .brand-logo {
    width: 128px;
  }

  nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    min-height: 100svh;
    align-items: end;
    padding-top: 166px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  .hero-verdict {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-verdict div {
    min-height: 76px;
    padding: 10px;
  }

  .hero-verdict strong {
    font-size: 2rem;
  }

  .vision-grid,
  .blog-list,
  .scoreboard {
    grid-template-columns: 1fr;
  }

  .article h1 {
    font-size: clamp(2.7rem, 13vw, 4.4rem);
  }

  .scoreboard div,
  .scoreboard div:nth-child(2n),
  .scoreboard div:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .scoreboard div:last-child {
    border-bottom: 0;
  }

  footer {
    flex-direction: column;
  }
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(54px, 54px, 0);
  }
}
