:root {
  --ink: #121725;
  --muted: #5b6577;
  --line: #dce3e8;
  --paper: #f7f9fb;
  --surface: #ffffff;
  --teal: #0f8b8d;
  --blue: #2256a4;
  --amber: #d88924;
  --deep: #08111d;
  --shadow: 0 18px 42px rgba(15, 28, 45, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", Arial, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 0 clamp(20px, 5vw, 72px);
  color: #fff;
  background: rgba(8, 17, 29, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 700;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  color: #08111d;
  background: #fff;
  border-radius: 8px;
  font-size: 13px;
  letter-spacing: 0;
}

.brand-text {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
}

.nav a {
  transition: color 160ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: #fff;
}

.hero {
  position: relative;
  min-height: min(760px, 92svh);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--deep);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/hero-entertainment-tech.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.01);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 17, 29, 0.92) 0%, rgba(8, 17, 29, 0.76) 38%, rgba(8, 17, 29, 0.28) 72%, rgba(8, 17, 29, 0.48) 100%),
    linear-gradient(180deg, rgba(8, 17, 29, 0.24) 0%, rgba(8, 17, 29, 0.18) 68%, rgba(8, 17, 29, 0.96) 100%);
}

.hero-content {
  position: relative;
  width: min(100%, 1160px);
  margin: 0 auto;
  padding: 132px clamp(20px, 5vw, 72px) 96px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
}

.hero-copy {
  max-width: 650px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 2vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 700;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button.primary {
  color: #07121c;
  background: #fff;
}

.button.secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.34);
}

.section {
  padding: clamp(72px, 10vw, 116px) 0;
}

.section-inner {
  width: min(100%, 1160px);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 72px);
}

.section h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.16;
  letter-spacing: 0;
}

.section p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.intro {
  background: #fff;
}

.intro-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.intro-grid > p {
  padding-top: 32px;
  font-size: 18px;
}

.business {
  background: #edf3f6;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 34px;
}

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

.feature-card {
  min-height: 250px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid rgba(18, 23, 37, 0.08);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature-index {
  display: inline-flex;
  margin-bottom: 46px;
  color: var(--teal);
  font-size: 14px;
  font-weight: 800;
}

.feature-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.28;
}

.feature-card p {
  font-size: 15.5px;
}

.strength {
  color: #fff;
  background: #0b1623;
}

.strength .section-kicker {
  color: #4fd1c5;
}

.strength h2,
.strength strong {
  color: #fff;
}

.strength p,
.strength span {
  color: rgba(255, 255, 255, 0.74);
}

.strength-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: center;
}

.strength-copy p {
  max-width: 620px;
  margin-top: 24px;
}

.metric-list {
  display: grid;
  gap: 14px;
}

.metric {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.metric:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.metric strong {
  font-size: 24px;
  line-height: 1;
}

.contact {
  background: #fff;
}

.contact-grid {
  align-items: center;
}

.contact h2 {
  margin-bottom: 18px;
}

.contact-panel {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 16px 24px;
  margin: 0;
  padding: 30px;
  background: #f4f7f9;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-style: normal;
}

.contact-panel span {
  color: var(--muted);
}

.contact-panel strong {
  color: var(--ink);
  font-size: 17px;
  word-break: break-word;
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: #08111d;
}

.footer-inner {
  width: min(100%, 1160px);
  min-height: 78px;
  margin: 0 auto;
  padding: 22px clamp(20px, 5vw, 72px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
  font-size: 14px;
}

@media (max-width: 820px) {
  .site-header {
    min-height: 64px;
    gap: 14px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .nav {
    gap: 14px;
    font-size: 14px;
  }

  .hero {
    min-height: 740px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(8, 17, 29, 0.94) 0%, rgba(8, 17, 29, 0.78) 60%, rgba(8, 17, 29, 0.44) 100%),
      linear-gradient(180deg, rgba(8, 17, 29, 0.18) 0%, rgba(8, 17, 29, 0.86) 100%);
  }

  .hero-content {
    padding-top: 116px;
    padding-bottom: 72px;
  }

  .intro-grid,
  .contact-grid,
  .strength-grid {
    grid-template-columns: 1fr;
  }

  .intro-grid > p {
    padding-top: 0;
  }

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

  .feature-card {
    min-height: 210px;
  }

  .feature-index {
    margin-bottom: 28px;
  }
}

@media (max-width: 540px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    flex-direction: column;
    padding-top: 14px;
    padding-bottom: 14px;
  }

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

  .hero {
    min-height: 760px;
  }

  .hero-content {
    padding-top: 148px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .contact-panel {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .metric {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
