:root {
  --bg: #0b0a08;
  --bg-soft: #12100d;
  --surface: #18130f;
  --surface-2: #221a13;
  --text: #fff8ee;
  --muted: #b7aa9b;
  --soft: #75685d;
  --line: rgba(255, 212, 150, 0.16);
  --gold: #f2c66d;
  --orange: #e86f2f;
  --ruby: #b63a2d;
  --ink: #070605;
  --max: 1200px;
  --header-height: 74px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
}

body {
  margin: 0;
  padding-top: var(--header-height);
  background:
    radial-gradient(circle at 12% 0%, rgba(232, 111, 47, 0.16), transparent 34rem),
    radial-gradient(circle at 90% 8%, rgba(242, 198, 109, 0.1), transparent 30rem),
    linear-gradient(180deg, #0b0a08 0%, #0d0b09 42%, #090807 100%);
  color: var(--text);
  font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.7;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 70%);
}

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

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  align-content: center;
  gap: 26px;
  min-height: var(--header-height);
  padding: 12px max(22px, calc((100% - var(--max)) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(10, 8, 6, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  box-shadow: 0 0 0 1px rgba(255, 214, 148, 0.22), 0 14px 28px rgba(0, 0, 0, 0.32);
}

.brand strong {
  display: block;
  font-size: 18px;
  line-height: 1.2;
}

.brand small {
  display: block;
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0;
}

.nav {
  display: flex;
  flex: 1;
  justify-content: center;
  gap: 22px;
}

.nav a {
  color: #e6d8c5;
  font-size: 14px;
  transition: color 0.2s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--gold);
}

.nav-cta {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border: 1px solid rgba(242, 198, 109, 0.4);
  border-radius: 8px;
  color: var(--gold);
  font-size: 13px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 70px;
  align-items: center;
  max-width: var(--max);
  min-height: calc(100svh - var(--header-height));
  margin: 0 auto;
  padding: 56px 22px 72px;
}

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

.eyebrow,
.section-heading > span,
.featured-copy > span,
.about-inner article > span {
  display: inline-block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
}

.hero h1 {
  margin: 14px 0 8px;
  font-size: 86px;
  line-height: 1.02;
}

.hero-subtitle {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 28px;
  font-weight: 800;
}

.hero-intro {
  max-width: 620px;
  margin: 0;
  color: #d8cabb;
  font-size: 18px;
}

.hero-tags,
.feature-tags,
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-tags span,
.feature-tags span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 248, 238, 0.04);
  color: #f5e4ce;
  font-size: 13px;
}

.hero-actions {
  gap: 14px;
  margin-top: 30px;
}

.download-button,
.download-main {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 64px;
  border-radius: 8px;
  font-weight: 800;
}

.download-button {
  min-width: 220px;
  padding: 14px 18px;
  border: 1px solid rgba(242, 198, 109, 0.34);
}

.download-button span,
.download-main small {
  display: block;
  font-size: 12px;
  font-weight: 700;
}

.download-button strong,
.download-main span {
  display: block;
  font-size: 20px;
  line-height: 1.15;
}

.download-button-primary,
.download-main {
  background: linear-gradient(135deg, #ffd74f, #ffb51d);
  color: var(--ink);
  box-shadow: 0 16px 38px rgba(255, 181, 29, 0.24);
}

.download-button-secondary {
  background: rgba(255, 248, 238, 0.045);
  color: var(--text);
}

.download-button::after,
.download-main::after {
  content: ">";
  flex: 0 0 auto;
  font-size: 24px;
  line-height: 1;
}

.hero-poster {
  position: relative;
  min-height: 620px;
  margin: 0;
}

.poster-main {
  position: absolute;
  top: 0;
  right: 44px;
  width: 300px;
  height: 430px;
  object-fit: cover;
  border: 1px solid rgba(255, 212, 150, 0.26);
  border-radius: 8px;
  box-shadow: 0 38px 80px rgba(0, 0, 0, 0.58);
}

.poster-card {
  position: absolute;
  width: 164px;
  height: 220px;
  object-fit: cover;
  border: 1px solid rgba(255, 212, 150, 0.22);
  border-radius: 8px;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.5);
}

.poster-card-one {
  left: 6px;
  bottom: 74px;
}

.poster-card-two {
  right: 0;
  bottom: 16px;
}

.section,
.featured,
.about,
.download-panel,
.site-note {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 92px 22px;
}

.download-panel {
  padding-top: 28px;
  padding-bottom: 84px;
}

.download-card {
  overflow: hidden;
  border: 1px solid rgba(242, 198, 109, 0.36);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 215, 79, 0.14), rgba(232, 111, 47, 0.05)),
    rgba(255, 248, 238, 0.04);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.34);
}

.download-brand {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: center;
  padding: 28px;
}

.download-brand img {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  box-shadow: 0 0 0 1px rgba(255, 214, 148, 0.22);
}

.download-brand span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
}

.download-brand h2 {
  margin: 4px 0 6px;
  font-size: 36px;
  line-height: 1.15;
}

.download-brand p {
  margin: 0;
  color: var(--muted);
}

.download-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.download-meta span {
  display: block;
  min-height: 82px;
  padding: 16px 28px;
}

.download-meta span + span {
  border-left: 1px solid var(--line);
}

.download-meta strong,
.download-meta small {
  display: block;
}

.download-meta strong {
  color: var(--text);
  font-size: 18px;
}

.download-meta small {
  color: var(--muted);
  font-size: 13px;
}

.download-main {
  width: calc(100% - 56px);
  margin: 28px;
  padding: 18px 24px;
}

.download-main small {
  color: rgba(7, 6, 5, 0.72);
}

.section-band {
  max-width: none;
  background: linear-gradient(180deg, rgba(255, 248, 238, 0.025), rgba(232, 111, 47, 0.05));
}

.section-band > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-heading h2,
.featured-copy h2,
.about-inner h2,
.site-note h2 {
  margin: 8px 0 12px;
  font-size: 42px;
  line-height: 1.16;
}

.section-heading p,
.featured-copy p,
.about-inner p,
.site-note p {
  margin: 0;
  color: var(--muted);
}

.card-grid {
  display: grid;
  gap: 18px;
}

.six-grid {
  grid-template-columns: repeat(3, 1fr);
}

.topic-grid {
  grid-template-columns: repeat(6, 1fr);
}

.country-grid {
  grid-template-columns: repeat(3, 1fr);
}

.content-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 248, 238, 0.045), rgba(255, 248, 238, 0.02));
}

.content-card img {
  width: 100%;
  aspect-ratio: 640 / 860;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.content-card div {
  min-height: 176px;
  padding: 18px;
}

.content-card span,
.direction-item > span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
}

.content-card h3 {
  margin: 8px 0 8px;
  font-size: 22px;
  line-height: 1.2;
}

.content-card p,
.direction-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.topic-grid .content-card div {
  min-height: 160px;
}

.country-grid .content-card img {
  aspect-ratio: 860 / 520;
}

.country-grid .content-card div {
  min-height: 150px;
}

.featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 62px;
  align-items: center;
}

.featured-media {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  min-height: 470px;
  align-items: center;
}

.featured-media img {
  width: 100%;
  aspect-ratio: 640 / 860;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.42);
}

.featured-media img:nth-child(2) {
  transform: translateY(-34px);
}

.featured-copy {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 248, 238, 0.04);
}

.comments-section {
  max-width: none;
  padding: 86px 22px;
}

.comments-inner {
  max-width: var(--max);
  margin: 0 auto;
}

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

.comment-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(11, 13, 18, 0.72);
}

.quote-mark,
.stars {
  min-height: 42px;
  color: #ffcc27;
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
}

.stars {
  font-size: 22px;
  letter-spacing: 0;
}

.comment-card h3 {
  margin: 10px 0 8px;
  color: var(--gold);
  font-size: 24px;
  line-height: 1.25;
}

.comment-card p {
  min-height: 0;
  margin: 12px 0 0;
  color: #e9dfd4;
  font-size: 18px;
}

.comment-card footer {
  display: grid;
  gap: 2px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.comment-card strong {
  font-size: 16px;
}

.comment-card time {
  color: var(--soft);
  font-size: 13px;
}

.direction-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.direction-item {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.direction-item h3 {
  margin: 42px 0 4px;
  color: var(--gold);
  font-size: 18px;
}

.direction-item h4 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.2;
}

.about {
  max-width: none;
  padding-top: 84px;
  padding-bottom: 84px;
}

.about-inner {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 36px;
  align-items: start;
}

.about-mark {
  display: grid;
  width: 128px;
  height: 128px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 248, 238, 0.04);
}

.about-mark img {
  width: 96px;
  height: 96px;
  border-radius: 8px;
}

.about-inner article {
  max-width: 860px;
}

.faq-section {
  padding-top: 72px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 248, 238, 0.035);
}

.faq-list summary {
  min-height: 64px;
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 800;
}

.faq-list details[open] summary {
  color: var(--gold);
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.site-note {
  margin-bottom: 50px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 34px 22px 54px;
  color: var(--muted);
}

.footer p {
  margin: 0;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.3s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  :root {
    --header-height: 112px;
  }

  .site-header {
    flex-wrap: wrap;
    gap: 12px;
    min-height: var(--header-height);
  }

  .nav {
    order: 3;
    flex: 0 0 100%;
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar {
    width: 0;
    height: 0;
  }

  .nav a {
    min-width: max-content;
  }

  .nav-cta {
    margin-left: auto;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 36px;
    padding-top: 48px;
  }

  .hero-poster {
    min-height: 440px;
  }

  .poster-main {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .poster-card-one {
    left: calc(50% - 245px);
  }

  .poster-card-two {
    right: calc(50% - 245px);
  }

  .six-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .topic-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .country-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured,
  .download-panel,
  .about-inner {
    grid-template-columns: 1fr;
  }

  .direction-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 720px) {
  :root {
    --header-height: 108px;
  }

  .site-header {
    min-height: var(--header-height);
    padding-left: 16px;
    padding-right: 16px;
    gap: 10px 12px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand strong {
    font-size: 16px;
  }

  .brand small {
    font-size: 9px;
  }

  .nav {
    flex-wrap: nowrap;
    gap: 8px 14px;
    overflow-x: auto;
    padding-bottom: 0;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar {
    width: 0;
    height: 0;
  }

  .nav a {
    font-size: 12px;
  }

  .nav-cta {
    min-height: 32px;
    padding: 6px 10px;
    font-size: 12px;
  }

  .hero,
  .section,
  .featured,
  .about,
  .download-panel,
  .comments-section,
  .site-note {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-subtitle {
    font-size: 22px;
  }

  .hero-intro {
    font-size: 16px;
  }

  .hero-poster {
    min-height: 360px;
  }

  .poster-main {
    width: 220px;
    height: 310px;
  }

  .poster-card {
    width: 118px;
    height: 158px;
  }

  .poster-card-one {
    left: 4px;
    bottom: 56px;
  }

  .poster-card-two {
    right: 4px;
    bottom: 12px;
  }

  .section,
  .featured,
  .about,
  .site-note {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .section-heading h2,
  .featured-copy h2,
  .about-inner h2,
  .site-note h2 {
    font-size: 31px;
  }

  .six-grid,
  .topic-grid,
  .country-grid,
  .comment-grid,
  .direction-grid {
    grid-template-columns: 1fr;
  }

  .download-button {
    width: 100%;
  }

  .download-panel {
    padding-top: 18px;
  }

  .download-brand {
    grid-template-columns: 54px 1fr;
    padding: 20px;
  }

  .download-brand img {
    width: 54px;
    height: 54px;
  }

  .download-brand h2 {
    font-size: 28px;
  }

  .download-meta {
    grid-template-columns: 1fr;
  }

  .download-meta span {
    min-height: 64px;
    padding: 12px 20px;
  }

  .download-meta span + span {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .download-main {
    width: calc(100% - 40px);
    margin: 20px;
    padding: 16px 18px;
  }

  .comment-card {
    min-height: 232px;
    padding: 22px;
  }

  .comment-card p {
    min-height: auto;
    font-size: 16px;
  }

  .content-card {
    display: block;
  }

  .content-card img {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 5;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .country-grid .content-card img {
    aspect-ratio: 16 / 10;
  }

  .content-card div,
  .topic-grid .content-card div,
  .country-grid .content-card div {
    min-height: auto;
    padding: 18px;
  }

  .content-card h3 {
    font-size: 20px;
  }

  .featured-media {
    min-height: auto;
  }

  .featured-media img:nth-child(2) {
    transform: none;
  }

  .featured-copy {
    padding: 22px;
  }

  .direction-item {
    min-height: 210px;
  }
}

@media (max-width: 430px) {
  .hero-tags span,
  .feature-tags span {
    width: 100%;
  }

  .content-card div,
  .topic-grid .content-card div,
  .country-grid .content-card div {
    padding: 16px;
  }

  .content-card p {
    font-size: 13px;
  }

  .poster-card {
    width: 0;
    height: 0;
    border: 0;
    opacity: 0;
    pointer-events: none;
  }

  .hero-poster {
    min-height: 330px;
  }
}
