* {
  box-sizing: border-box;
}

body {
  background: #0b0d10;
  color: #f5f1e8;
  font-family: Arial, "Noto Sans TC", sans-serif;
  margin: 0;
}

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

.site-header,
.site-footer {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 22px 6vw;
}

.site-header {
  background: #11151b;
  border-bottom: 1px solid #2a3038;
}

.logo {
  color: #d8ad58;
  font-size: 24px;
  font-weight: 800;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

nav a {
  color: #cfc8bc;
  font-size: 15px;
}

nav a:hover {
  color: #ffffff;
}

.hero {
  background-image: linear-gradient(90deg, rgba(8, 10, 12, 0.92), rgba(8, 10, 12, 0.45)), url("assets/brand-hero.png");
  background-position: center;
  background-size: cover;
  min-height: 620px;
  padding: 140px 6vw;
}

.hero-text {
  max-width: 720px;
}

.eyebrow {
  color: #56d3d7;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 14px;
  text-transform: uppercase;
}

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

h1 {
  font-size: 76px;
  line-height: 1;
  margin-bottom: 22px;
}

h2 {
  font-size: 34px;
  line-height: 1.2;
  margin-bottom: 16px;
}

h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

p,
li {
  color: #cfc8bc;
  font-size: 17px;
  line-height: 1.8;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  border: 1px solid #6b7280;
  border-radius: 6px;
  display: inline-block;
  font-weight: 800;
  padding: 12px 18px;
}

.button.primary {
  background: #d8ad58;
  border-color: #d8ad58;
  color: #11151b;
}

.section {
  margin: 0 auto;
  max-width: 1120px;
  padding: 72px 6vw;
}

.two-column {
  display: grid;
  gap: 36px;
  grid-template-columns: 0.9fr 1.1fr;
}

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

.cards article,
.coming,
.list-section,
.legal {
  background: #141922;
  border: 1px solid #2a3038;
  border-radius: 8px;
  padding: 28px;
}

.page-title {
  background-image: linear-gradient(90deg, rgba(8, 10, 12, 0.94), rgba(8, 10, 12, 0.72)), url("assets/brand-hero.png");
  background-position: center;
  background-size: cover;
  padding: 92px 6vw 72px;
}

.page-title h1 {
  font-size: 58px;
}

ul {
  margin-bottom: 0;
  padding-left: 22px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.tags span {
  background: rgba(86, 211, 215, 0.12);
  border: 1px solid rgba(86, 211, 215, 0.32);
  border-radius: 6px;
  color: #e8ffff;
  padding: 10px 14px;
}

.legal {
  max-width: 860px;
}

.legal h2 {
  font-size: 26px;
  margin-top: 34px;
}

.site-footer {
  border-top: 1px solid #2a3038;
  color: #cfc8bc;
}

@media (max-width: 780px) {
  .site-header,
  .site-footer,
  .two-column {
    align-items: flex-start;
    flex-direction: column;
  }

  .two-column,
  .cards {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 96px 6vw;
  }

  h1 {
    font-size: 52px;
  }

  .page-title h1 {
    font-size: 44px;
  }
}
