body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #f6f6f3;
  color: #121212;
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.page-main {
  flex: 1;
}

.notice-banner {
  width: 100%;
  border-bottom: 1px solid #e8d8a9;
  background-color: #fff8e6;
}

.notice-banner p {
  width: min(1080px, 92vw);
  margin: 0 auto;
  padding: 0.5rem 0;
  font-size: 0.8rem;
  line-height: 1.4;
  font-weight: 500;
  color: #6b4b00;
  letter-spacing: 0.01em;
  text-align: center;
}

.landing {
  width: min(1080px, 92vw);
  margin: 2.8rem auto 0;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  margin: 0;
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: #707070;
}

.landing h1 {
  margin: 0.6rem auto 0;
  max-width: 800px;
  font-size: clamp(1.6rem, 4.2vw, 2.8rem);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.landing h1 br {
  display: block;
  content: "";
  margin-top: 0.1em;
}

.subtitle {
  margin: 0.75rem auto 0;
  max-width: 560px;
  color: #5b5b5b;
  font-size: 0.9rem;
  line-height: 1.65;
}

.platforms {
  margin-top: 2.2rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.platform-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.6rem 1rem;
  background-color: #ffffff;
  border: 1px solid #e4e4e0;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
}

.platform-card:hover {
  border-color: #d7d7d2;
}

.platform-card h2 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.platform-card p {
  margin: 0;
  color: #666;
  font-size: 0.82rem;
  line-height: 1.5;
}

.coming-soon {
  position: relative;
  background-color: #f9f9f7;
  border: 1px dashed #d9d9d5;
  border-radius: 12px;
  overflow: hidden;
}

.coming-soon .blurred-content {
  filter: blur(3.5px);
  opacity: 0.5;
}

.coming-soon-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.72rem;
  font-weight: 500;
  color: #888;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 800px) {
  .landing {
    margin-top: 2rem;
  }

  .platforms {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 1.8rem;
    gap: 0.6rem;
  }

  .coming-soon::after {
    font-size: 0.65rem;
  }
}

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

.site-footer {
  width: 100%;
  margin-top: auto;
  padding: 1.15rem 0 1.4rem;
  border-top: 1px solid #e8e8e3;
}

.site-footer p {
  width: min(1080px, 92vw);
  margin: 0 auto;
  text-align: center;
  color: #636363;
  font-size: 0.86rem;
  line-height: 1.5;
}

.site-footer a {
  color: #2a2a2a;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid #cfcfca;
}

.site-footer a:hover {
  border-bottom-color: #9c9c96;
}

.site-footer .footer-links {
  display: inline-flex;
  align-items: center;
  gap: 0.58rem;
  margin-left: 0.38rem;
}

.site-footer .footer-sep {
  color: #9a9a96;
  font-size: 0.72rem;
  line-height: 1;
}
