﻿:root {
  color-scheme: dark;
  --brand: #ffc928;
  --orange: #ff7a21;
  --bg: #0e1014;
  --surface: #171a20;
  --surface-2: #1d2027;
  --text: #fff;
  --muted: #a8adb7;
  --line: rgba(255, 255, 255, .1);
  --shell: min(1180px, calc(100% - 48px));
}

* { box-sizing: border-box; }

html { background: var(--bg); }

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 9% 40%, rgba(255, 122, 33, .06), transparent 28rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

.shell { width: var(--shell); margin-inline: auto; }

.site-header {
  position: absolute;
  z-index: 5;
  inset: 0 0 auto;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  background: linear-gradient(to bottom, rgba(6, 7, 10, .65), transparent);
}

.header-inner {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-logo { width: 48px; height: 48px; object-fit: contain; filter: drop-shadow(0 9px 18px rgba(255, 122, 33, .18)); }

.brand-name { font-size: 21px; font-weight: 850; letter-spacing: .04em; }
.header-note { margin: 0; color: rgba(255, 255, 255, .72); font-size: 14px; letter-spacing: .12em; }

.hero {
  position: relative;
  min-height: clamp(610px, 72vw, 800px);
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  overflow: hidden;
  background: #0b0c0f;
}

.hero-image {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
  filter: contrast(1.03) saturate(.94);
}

.hero-shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 9, 12, .98) 0%, rgba(8, 9, 12, .92) 31%, rgba(8, 9, 12, .45) 53%, rgba(8, 9, 12, .08) 76%, rgba(8, 9, 12, .12) 100%),
    linear-gradient(0deg, var(--bg) 0%, transparent 38%),
    linear-gradient(180deg, rgba(8, 9, 12, .2), transparent 35%);
}

.hero-content { padding-bottom: clamp(76px, 10vw, 126px); }

.eyebrow, .section-kicker {
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.eyebrow span { width: 34px; height: 2px; background: linear-gradient(90deg, var(--brand), var(--orange)); }

.hero h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(44px, 6.2vw, 80px);
  line-height: 1.1;
  letter-spacing: -.045em;
  text-wrap: balance;
  text-shadow: 0 8px 34px rgba(0, 0, 0, .45);
}

.hero-copy {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, .8);
  font-size: clamp(17px, 2vw, 22px);
  letter-spacing: .05em;
}

.hero-meta { display: flex; align-items: center; flex-wrap: wrap; gap: 13px; color: rgba(255, 255, 255, .68); font-size: 13px; }
.hero-meta i { width: 4px; height: 4px; border-radius: 50%; background: var(--brand); }

.section-pad { padding: 104px 0; }

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

.section-kicker { margin-bottom: 12px; }
.section-heading h2, .story-heading h2, .about h2 { margin-bottom: 0; font-size: clamp(32px, 4vw, 52px); line-height: 1.12; letter-spacing: -.035em; }
.section-heading > p { max-width: 360px; margin-bottom: 5px; color: var(--muted); font-size: 15px; }

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

.drama-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(155deg, rgba(255, 255, 255, .035), transparent 50%), var(--surface);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .16);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

@media (hover: hover) {
  .drama-card:hover { transform: translateY(-7px); border-color: rgba(255, 201, 40, .38); box-shadow: 0 24px 60px rgba(0, 0, 0, .36); }
  .drama-card:hover img { transform: scale(1.035); }
}

.poster-wrap { position: relative; aspect-ratio: 2 / 3; overflow: hidden; background: #24262c; }
.poster-wrap::after { content: ""; position: absolute; inset: 50% 0 0; background: linear-gradient(transparent, rgba(9, 10, 13, .82)); }
.poster-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.genre-tag, .episode-tag { position: absolute; z-index: 1; top: 14px; padding: 6px 10px; border-radius: 999px; font-size: 12px; font-weight: 800; backdrop-filter: blur(10px); }
.genre-tag { left: 14px; background: var(--brand); color: #16120a; }
.episode-tag { right: 14px; background: rgba(10, 11, 14, .66); color: #fff; }

.card-body { padding: 20px 20px 22px; }
.card-body h3 { margin-bottom: 10px; font-size: 21px; letter-spacing: .01em; }
.card-body p { margin-bottom: 0; color: var(--muted); font-size: 14px; line-height: 1.8; }

.story-band {
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 8% 55%, rgba(255, 201, 40, .13), transparent 23rem),
    radial-gradient(circle at 92% 20%, rgba(255, 122, 33, .08), transparent 25rem),
    linear-gradient(135deg, #12151b, #0d0f13 58%, #151210);
}

.story-band::after {
  content: "HG";
  position: absolute;
  right: -20px;
  bottom: -92px;
  color: rgba(255, 255, 255, .018);
  font-size: clamp(220px, 32vw, 480px);
  font-weight: 950;
  line-height: .8;
  letter-spacing: -.12em;
  pointer-events: none;
}

.story-layout { position: relative; z-index: 1; display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(58px, 9vw, 136px); align-items: center; }
.story-heading { position: relative; }
.story-heading::before { content: ""; position: absolute; top: -40px; left: -32px; width: 92px; height: 92px; border-top: 1px solid rgba(255, 201, 40, .28); border-left: 1px solid rgba(255, 201, 40, .28); }
.story-heading h2 { max-width: 500px; font-size: clamp(44px, 5vw, 68px); line-height: 1.09; }
.story-heading h2 em { color: var(--brand); font-style: normal; }
.story-signature { margin: 28px 0 0; color: #6f747e; font-size: 10px; font-weight: 700; letter-spacing: .23em; }
.story-copy > p { max-width: 720px; margin-bottom: 38px; color: #c8cbd2; font-size: clamp(17px, 2vw, 21px); line-height: 1.9; }
.story-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.story-points div { position: relative; min-height: 190px; padding: 27px 23px 24px; overflow: hidden; border: 1px solid rgba(255, 255, 255, .11); border-radius: 18px; background: linear-gradient(145deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .015)); box-shadow: inset 0 1px rgba(255, 255, 255, .04); }
.story-points div::after { content: ""; position: absolute; right: -28px; bottom: -42px; width: 100px; height: 100px; border: 1px solid rgba(255, 201, 40, .12); border-radius: 50%; }
.story-points b { display: block; margin-bottom: 27px; color: var(--brand); font-size: 12px; letter-spacing: .12em; }
.story-points span { display: block; margin-bottom: 10px; color: #fff; font-size: 17px; font-weight: 750; }
.story-points small { display: block; color: #9398a2; font-size: 12px; line-height: 1.75; }

.about {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #0e1014, #101217);
}

.about::before { content: ""; position: absolute; inset: 0 auto 0 50%; width: 1px; background: linear-gradient(transparent, rgba(255, 255, 255, .08), transparent); }
.about-layout { display: grid; grid-template-columns: 410px 1fr; gap: clamp(64px, 10vw, 142px); align-items: center; }
.about-identity { position: relative; padding: 34px; border: 1px solid rgba(255, 255, 255, .09); border-radius: 30px; background: linear-gradient(145deg, rgba(255, 201, 40, .065), rgba(255, 255, 255, .018) 48%, rgba(255, 122, 33, .045)); box-shadow: 0 30px 80px rgba(0, 0, 0, .24); }
.logo-orbit { position: relative; aspect-ratio: 1; display: grid; place-items: center; border: 1px solid rgba(255, 201, 40, .16); border-radius: 50%; background: radial-gradient(circle, rgba(255, 201, 40, .1), transparent 65%); }
.logo-orbit::before, .logo-orbit::after { content: ""; position: absolute; border-radius: 50%; pointer-events: none; }
.logo-orbit::before { inset: 11%; border: 1px dashed rgba(255, 201, 40, .18); }
.logo-orbit::after { inset: 26%; background: radial-gradient(circle, rgba(255, 122, 33, .14), transparent 70%); }
.logo-orbit img { position: relative; z-index: 1; width: 72%; height: 72%; object-fit: contain; filter: drop-shadow(0 22px 34px rgba(255, 122, 33, .16)); }
.identity-caption { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 27px; padding-top: 22px; border-top: 1px solid var(--line); }
.identity-caption span { color: #777d87; font-size: 9px; font-weight: 750; letter-spacing: .2em; }
.identity-caption strong { color: #d8dbe1; font-size: 11px; letter-spacing: .12em; }
.about-content { max-width: 720px; }
.about-content h2 { margin-bottom: 26px; font-size: clamp(40px, 5vw, 62px); }
.about-content > p { color: var(--muted); line-height: 1.95; }
.about-content .about-lead { margin-bottom: 15px; color: #fff; font-size: clamp(20px, 2.4vw, 28px); line-height: 1.65; }
.about-facts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin-top: 32px; }
.about-facts div { padding: 17px 15px; border: 1px solid var(--line); border-radius: 13px; background: rgba(255, 255, 255, .022); }
.about-facts span, .about-facts strong { display: block; }
.about-facts span { margin-bottom: 8px; color: #777d87; font-size: 10px; letter-spacing: .08em; }
.about-facts strong { color: #eff0f2; font-size: 13px; }
.about-content .official-note { margin: 22px 0 0; padding-left: 14px; border-left: 2px solid var(--brand); color: #777d87; font-size: 12px; line-height: 1.8; }

.site-footer {
  position: relative;
  padding: 100px 0 28px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 201, 40, .15);
  background:
    radial-gradient(circle at 14% 20%, rgba(255, 201, 40, .08), transparent 27rem),
    radial-gradient(circle at 88% 40%, rgba(255, 122, 33, .055), transparent 24rem),
    #08090c;
}

.footer-monogram {
  position: absolute;
  right: -28px;
  bottom: 40px;
  color: rgba(255, 255, 255, .018);
  font-size: clamp(110px, 17vw, 250px);
  font-weight: 950;
  line-height: .76;
  letter-spacing: -.08em;
  pointer-events: none;
}

.footer-showcase { position: relative; z-index: 1; display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(70px, 11vw, 160px); align-items: center; padding-bottom: 72px; }
.footer-identity { align-self: stretch; display: flex; flex-direction: column; justify-content: space-between; padding-right: 56px; border-right: 1px solid var(--line); }
.footer-lockup { display: flex; align-items: center; gap: 18px; }
.footer-logo { width: 82px; height: 82px; object-fit: contain; filter: drop-shadow(0 16px 26px rgba(255, 122, 33, .15)); }
.footer-lockup strong, .footer-lockup span { display: block; }
.footer-lockup strong { margin-bottom: 8px; font-size: 29px; letter-spacing: .04em; }
.footer-lockup span { color: #777d87; font-size: 10px; font-weight: 750; letter-spacing: .22em; }
.footer-identity > p { margin: 42px 0 0; color: #696e78; font-size: 11px; letter-spacing: .2em; }
.footer-statement { max-width: 700px; }
.footer-statement h2 { margin: 0 0 23px; font-size: clamp(36px, 4.5vw, 60px); line-height: 1.17; letter-spacing: -.045em; }
.footer-statement h2 em { color: var(--brand); font-style: normal; }
.footer-statement > p:last-child { max-width: 650px; margin: 0; color: #9ca1aa; font-size: 14px; line-height: 1.9; }

.footer-official { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 26px 28px; border: 1px solid rgba(255, 255, 255, .09); border-radius: 16px; background: rgba(255, 255, 255, .025); box-shadow: inset 0 1px rgba(255, 255, 255, .035); }
.footer-domain { display: flex; align-items: center; gap: 18px; }
.footer-domain span { padding: 7px 9px; border-radius: 5px; background: var(--brand); color: #17130a; font-size: 9px; font-weight: 900; letter-spacing: .12em; }
.footer-domain strong { color: #f1f2f4; font-size: 14px; letter-spacing: .14em; }
.footer-official > p { margin: 0; color: #a7abb3; font-size: 13px; letter-spacing: .04em; }
.footer-bottom { position: relative; z-index: 1; display: flex; justify-content: space-between; gap: 24px; margin-top: 42px; padding-top: 24px; border-top: 1px solid var(--line); }
.footer-bottom p { margin: 0; color: #5f646d; font-size: 11px; letter-spacing: .03em; }

@media (max-width: 860px) {
  :root { --shell: min(100% - 32px, 680px); }
  .header-inner { height: 72px; }
  .header-note { display: none; }
  .hero { min-height: 690px; }
  .hero-image {
    inset: 72px 0 auto;
    width: 100%;
    height: auto;
    object-fit: initial;
    object-position: initial;
  }
  .hero-shade { background: linear-gradient(0deg, var(--bg) 0%, rgba(8, 9, 12, .76) 43%, rgba(8, 9, 12, .03) 79%, rgba(8, 9, 12, .08) 100%); }
  .hero-content { padding-bottom: 64px; }
  .hero h1 { max-width: 620px; }
  .section-pad { padding: 78px 0; }
  .drama-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 14px; }
  .story-layout, .about-layout { grid-template-columns: 1fr; }
  .story-layout, .about-layout { gap: 48px; }
  .story-heading::before { left: -16px; }
  .about::before { display: none; }
  .about-identity { width: min(420px, 100%); }
  .site-footer { padding-top: 78px; }
  .footer-showcase { grid-template-columns: 1fr; gap: 48px; }
  .footer-identity { padding: 0 0 38px; border-right: 0; border-bottom: 1px solid var(--line); }
  .footer-identity > p { margin-top: 26px; }
}

@media (max-width: 520px) {
  .brand-logo { width: 42px; height: 42px; }
  .brand-name { font-size: 19px; }
  .hero { min-height: 640px; }
  .hero-image { top: 72px; }
  .hero h1 { font-size: 42px; line-height: 1.14; }
  .hero-copy { max-width: 290px; font-size: 17px; line-height: 1.7; }
  .section-heading { display: block; margin-bottom: 28px; }
  .section-heading > p { margin-top: 12px; }
  .drama-grid { gap: 14px 10px; }
  .drama-card { border-radius: 13px; }
  .genre-tag, .episode-tag { top: 10px; padding: 5px 8px; font-size: 10px; }
  .genre-tag { left: 10px; }
  .episode-tag { right: 10px; }
  .card-body { padding: 14px 12px 16px; }
  .card-body h3 { margin-bottom: 7px; font-size: 16px; }
  .card-body p { display: -webkit-box; overflow: hidden; font-size: 12px; line-height: 1.65; -webkit-line-clamp: 3; -webkit-box-orient: vertical; }
  .story-points { grid-template-columns: 1fr; }
  .story-heading h2 { font-size: 42px; }
  .story-points div { min-height: 0; }
  .about-identity { padding: 23px; border-radius: 22px; }
  .about-facts { grid-template-columns: 1fr; }
  .footer-logo { width: 70px; height: 70px; }
  .footer-lockup strong { font-size: 25px; }
  .footer-official { align-items: flex-start; flex-direction: column; }
  .footer-domain { align-items: flex-start; flex-direction: column; gap: 12px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
