:root {
  color-scheme: dark;
  --hws-red: #b91409;
  --hws-red-strong: #d61d12;
  --hws-gold: #e1bd72;
  --hws-ink: #090706;
  --hws-panel: rgba(18, 17, 16, .88);
  --hws-line: rgba(225, 189, 114, .22);
  --hws-text: #f6f1ea;
  --hws-muted: #a99d91;
  --hws-bg: radial-gradient(circle at 20% 42%, #4a0e08 0, #160604 38%, #050403 72%);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background: #060403;
  color: var(--hws-text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  letter-spacing: 0;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.hws-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 12px 24px;
  background: rgba(27, 27, 27, .94);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  backdrop-filter: blur(16px);
}
.hws-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
  font-weight: 900;
  font-size: 22px;
}
.hws-brand img { width: 44px; height: 44px; object-fit: contain; }
.hws-menu {
  display: flex;
  align-items: center;
  gap: 22px;
  flex: 1;
  font-weight: 800;
  color: #eee6dd;
}
.hws-menu a {
  opacity: .92;
  transition: color .2s ease, opacity .2s ease, filter .2s ease, text-shadow .2s ease;
}
.hws-menu a:hover,
.hws-menu a.is-active {
  color: var(--hws-gold);
  opacity: 1;
  filter: brightness(1.18);
  text-shadow: 0 0 16px rgba(225, 189, 114, .38);
}
.hws-nav-cta,
.hws-hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 28px;
  border-radius: 6px;
  background: linear-gradient(180deg, var(--hws-red-strong), #8d1008);
  border: 1px solid rgba(255, 199, 133, .24);
  color: white;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(147, 22, 10, .32);
  transition: filter .2s ease, transform .2s ease, box-shadow .2s ease;
}
.hws-nav-cta:hover,
.hws-frame-button:hover {
  filter: brightness(1.16);
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(147, 22, 10, .42);
}
.hws-frame-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: var(--hws-btn-width, 220px);
  min-height: var(--hws-btn-height, 68px);
  padding: 0 34px;
  color: var(--hws-btn-color, #f7ead9);
  font-size: var(--hws-btn-font, 22px);
  font-weight: 900;
  text-shadow: 0 2px 0 var(--hws-btn-shadow, #3a0b06), 0 0 12px rgba(0, 0, 0, .7);
  background: linear-gradient(180deg, rgba(119, 22, 14, .96), rgba(58, 9, 6, .96));
  border: 2px solid rgba(51, 82, 85, .85);
  outline: 2px solid rgba(172, 39, 24, .72);
  outline-offset: -8px;
  border-radius: var(--hws-btn-radius, 0);
  box-shadow: inset 0 0 0 1px rgba(234, 201, 142, .22), 0 14px 32px rgba(105, 13, 6, .28);
}
.hws-frame-button::before,
.hws-frame-button::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 16px;
  height: 16px;
  border-top: 2px solid rgba(202, 222, 219, .7);
  border-left: 2px solid rgba(202, 222, 219, .7);
}
.hws-frame-button::before { left: 8px; transform: translateY(-50%) rotate(-45deg); }
.hws-frame-button::after { right: 8px; transform: translateY(-50%) rotate(135deg); }
.hws-frame-button.is-primary {
  color: var(--hws-btn-color, #fff8eb);
  background: linear-gradient(180deg, rgba(170, 31, 20, .98), rgba(80, 10, 6, .98));
}
.hws-button-image-mode .hws-frame-button {
  background-image: var(--hws-btn-image, linear-gradient(180deg, rgba(119, 22, 14, .96), rgba(58, 9, 6, .96)));
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  border: 0;
  outline: 0;
  box-shadow: none;
}
.hws-no-inner-frame .hws-frame-button {
  outline: 0;
  box-shadow: 0 14px 32px rgba(105, 13, 6, .28);
}
.hws-no-button-corners .hws-frame-button::before,
.hws-no-button-corners .hws-frame-button::after,
.hws-button-image-mode .hws-frame-button::before,
.hws-button-image-mode .hws-frame-button::after {
  display: none;
}

.hws-view { display: none; }
.hws-view.is-active { display: block; }

.hws-bg-page {
  position: relative;
  min-height: calc(100vh - 74px);
  isolation: isolate;
  overflow: hidden;
  background: #050403;
}
.hws-bg-page::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--page-bg, radial-gradient(circle at 26% 18%, rgba(94, 22, 12, .9), transparent 36%), linear-gradient(135deg, #100704, #030202 68%));
  background-size: cover;
  background-position: center;
  filter: brightness(calc(var(--overview-brightness, 76) * 1%));
  transform: scale(1.01);
}
.hws-bg-page::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .12), rgba(34, 6, 3, .26) 56%, rgba(0, 0, 0, .76)),
    #050403;
  opacity: calc(var(--page-overlay, 72) / 100);
}

.hws-hero {
  position: relative;
  min-height: calc(100vh - 74px);
  display: grid;
  align-items: center;
  padding: 90px clamp(24px, 8vw, 150px);
  overflow: hidden;
  background: #050403;
}
.hws-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--hws-bg);
  background-size: cover;
  background-position: center;
  filter: brightness(calc(var(--hws-bg-brightness, 82) * 1%));
}
.hws-bg-effect::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: .28;
  background:
    radial-gradient(circle at 25% 38%, rgba(234, 62, 18, .22), transparent 30%),
    linear-gradient(105deg, transparent 0 45%, rgba(215, 30, 14, .13) 46% 51%, transparent 52%);
  pointer-events: none;
}
.hws-ember-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
  mix-blend-mode: screen;
}
.hws-ember {
  position: absolute;
  left: var(--ember-x, 0%);
  top: var(--ember-y, 100%);
  width: var(--ember-w, 5px);
  height: var(--ember-h, 18px);
  border-radius: 50%;
  opacity: calc(var(--hws-ember-opacity, 78) / 100);
  background: radial-gradient(circle at 35% 35%, rgba(255,255,220,.98) 0 16%, var(--hws-ember-color, #ff9a1f) 48%, rgba(150, 22, 8, .08) 78%);
  box-shadow: 0 0 8px rgba(255, 170, 54, .82), 0 0 20px rgba(187, 42, 8, .24);
  filter: blur(var(--ember-blur, .2px));
  transform: translate3d(0, 0, 0) rotate(var(--ember-rotate, -38deg)) scale(var(--ember-scale, 1));
  transform-origin: center;
  will-change: transform, opacity, filter;
  animation: hws-ember-burst var(--ember-duration, 8s) cubic-bezier(.2, .72, .24, 1) var(--ember-delay, 0s) infinite;
}
.hws-ember.is-spark {
  width: var(--ember-w, 7px);
  height: var(--ember-w, 7px);
  border-radius: 50%;
}
.hws-ember.is-cinder {
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(255,238,166,.92), rgba(232,105,20,.82) 48%, rgba(116, 18, 7, .14) 78%);
  box-shadow: 0 0 14px rgba(255, 126, 23, .44);
}
.hws-ember.is-streak {
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,255,218,.12), rgba(255,244,174,.96) 22%, var(--hws-ember-color, #ff9a1f) 62%, rgba(160, 23, 8, .04));
}
.hws-ember.is-flare {
  width: var(--ember-w, 80px);
  height: var(--ember-h, 28px);
  opacity: calc((var(--hws-ember-opacity, 78) / 100) * .28);
  background: radial-gradient(ellipse, rgba(255, 151, 29, .62), rgba(146, 20, 8, .18) 54%, transparent 76%);
  filter: blur(14px);
}
.hws-ember-layer[data-hws-ember-direction="right_up"] .hws-ember {
  animation-name: hws-ember-burst-left;
}
.hws-ember-layer[data-hws-ember-direction="random"] .hws-ember {
  animation-name: hws-ember-float;
}
.hws-hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .78;
}
.hws-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(6,4,3,.84), rgba(6,4,3,.18) 46%, rgba(6,4,3,.74));
  opacity: calc(var(--hws-hero-overlay, 74) / 100);
}
.hws-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
  transform: translateY(var(--hws-hero-copy-y, 0));
}
.hws-hero-pos-center {
  justify-items: center;
  text-align: center;
}
.hws-hero-pos-center .hws-hero-copy {
  margin: 0 auto;
}
.hws-hero-pos-center .hws-hero-actions {
  justify-content: center;
}
.hws-hero-pos-right {
  justify-items: end;
  text-align: left;
}
.hws-hero-pos-right .hws-hero-copy {
  margin-left: auto;
}
.hws-age-notice {
  position: absolute;
  left: clamp(18px, 3vw, 44px);
  top: clamp(18px, 3vw, 42px);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: min(360px, calc(100% - 36px));
  color: rgba(244, 235, 220, .78);
  font-size: 14px;
  line-height: 1.5;
}
.hws-age-notice img {
  width: 66px;
  height: auto;
  flex: 0 0 auto;
  background: rgba(255, 255, 255, .94);
  border-radius: 6px;
  box-shadow: 0 10px 24px rgba(0,0,0,.32);
}
.hws-kicker {
  margin: 0 0 14px;
  color: var(--hws-gold);
  font-weight: 900;
  text-transform: uppercase;
}
.hws-hero h1 {
  margin: 0;
  font-size: clamp(48px, 7vw, 104px);
  line-height: .95;
  letter-spacing: 0;
  text-shadow: 0 8px 30px rgba(0,0,0,.72);
}
.hws-hero-title-logo {
  width: min(var(--hero-title-logo-width, 460px), 86vw);
  height: auto;
  margin: 0 0 22px;
  filter: drop-shadow(0 10px 26px rgba(0, 0, 0, .74));
  transform: translateY(var(--hws-hero-logo-y, 0));
}
.hws-hero-title-logo.is-main {
  margin-bottom: 32px;
}
.hws-subtitle {
  max-width: 620px;
  margin: 24px 0 34px;
  font-size: clamp(20px, 2.4vw, 34px);
  color: #ffe2a0;
  font-weight: 800;
}
.hws-hero-actions {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
  transform: translateY(var(--hws-hero-actions-y, 0));
}
.hws-hero-actions.is-reverse {
  flex-direction: row-reverse;
  justify-content: flex-end;
}
.hws-countdown {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 28px 0 34px;
}
.hws-countdown-label { font-size: 24px; font-weight: 900; margin-right: 10px; }
.hws-countdown strong {
  min-width: 62px;
  padding: 10px 12px;
  border-radius: 4px;
  background: linear-gradient(180deg, #ac2b15, #5f1008);
  text-align: center;
  font-size: 32px;
}
.hws-countdown em { color: var(--hws-muted); font-style: normal; font-weight: 800; }

.hws-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 86px 0;
}
.hws-section h1,
.hws-section h2 {
  margin: 0 0 34px;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1;
}
.hws-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.hws-news-card,
.hws-news-row {
  background: var(--hws-panel);
  border: 1px solid rgba(255,255,255,.08);
}
.hws-news-card a {
  display: grid;
  min-height: 380px;
  grid-template-rows: 180px 1fr;
}
.hws-news-card img,
.hws-news-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #1a1412;
}
.hws-news-card div { padding: 22px; display: grid; align-content: start; gap: 14px; }
.hws-news-card small,
.hws-news-row small { color: var(--hws-muted); font-weight: 700; }
.hws-news-card h3,
.hws-news-row h3 { margin: 0; font-size: 22px; line-height: 1.28; }
.hws-news-card time,
.hws-news-row time { color: #d0c5ba; font-size: 18px; }
.hws-news-list { display: grid; gap: 22px; }
.hws-news-row a {
  display: grid;
  grid-template-columns: minmax(220px, 360px) 1fr;
  min-height: 190px;
}
.hws-news-row div { padding: 24px; display: grid; align-content: center; gap: 10px; }
.hws-news-row p { margin: 0; color: var(--hws-muted); line-height: 1.7; }
.hws-pin-badge {
  display: inline-flex;
  align-items: center;
  margin-right: 8px;
  padding: 2px 8px;
  color: #fff7df;
  background: rgba(185, 20, 9, .78);
  border: 1px solid rgba(225, 189, 114, .26);
  font-size: 12px;
}
.hws-empty { color: var(--hws-muted); }

.hws-overview {
  min-height: calc(100vh - 74px);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--overview-gradient-to, #050302);
}
.hws-overview::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--overview-bg, radial-gradient(circle at 50% 28%, #3b1410, #070504 68%));
  background-size: cover;
  background-position: center top;
  filter: brightness(calc(var(--page-brightness, 76) * 1%));
}
.hws-overview::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(5, 3, 2, .18) 0%, rgba(43, 9, 5, .62) 68%, var(--overview-gradient-to, #050302) 100%),
    linear-gradient(90deg, var(--overview-gradient-from, #120704), transparent 48%, var(--overview-gradient-to, #050302));
  opacity: calc(var(--overview-overlay, 64) / 100);
}
.hws-overview .hws-section {
  min-height: calc(100vh - 74px);
  display: grid;
  align-content: center;
}
.hws-overview-logo {
  width: min(var(--overview-logo-width, 520px), 86vw);
  margin: 0 auto 28px;
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, .82));
}
.hws-overview h2,
.hws-overview .hws-kicker {
  text-align: center;
}
.hws-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 18px;
}
.hws-overview-grid article {
  min-height: 250px;
  padding: 28px;
  background: linear-gradient(180deg, rgba(30, 27, 25, .94), rgba(10, 8, 7, .94));
  border: 1px solid var(--hws-line);
}
.hws-overview-grid h3 {
  margin: 0 0 14px;
  color: var(--hws-gold);
  font-size: 25px;
}
.hws-overview-grid p {
  margin: 0;
  color: #cbbdb1;
  line-height: 1.8;
}
.hws-overview-stories {
  display: grid;
  gap: 34px;
  margin-top: 26px;
}
.hws-overview-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 48%);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  min-height: 430px;
  padding: clamp(28px, 5vw, 58px);
  background: linear-gradient(100deg, rgba(8, 6, 5, .84), rgba(32, 14, 10, .48));
  border: 1px solid var(--hws-line);
}
.hws-overview-story.is-reverse {
  grid-template-columns: minmax(320px, 48%) minmax(0, 1fr);
}
.hws-overview-story.is-reverse > div { order: 2; }
.hws-overview-story.is-reverse > img { order: 1; }
.hws-overview-story h3 {
  margin: 0 0 18px;
  color: #fff1d1;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.08;
}
.hws-overview-story p {
  margin: 0;
  color: #d1c4b7;
  font-size: 18px;
  line-height: 1.9;
}
.hws-overview-intro {
  width: min(760px, 100%);
  margin: -16px auto 0;
  color: #d8c9b8;
  text-align: center;
  font-size: 18px;
  line-height: 1.8;
}
.hws-overview-story .hws-frame-button {
  margin-top: 28px;
}
.hws-overview-story img {
  width: 100%;
  min-height: 260px;
  max-height: 520px;
  object-fit: cover;
  border: 1px solid rgba(225, 189, 114, .18);
  box-shadow: 0 22px 54px rgba(0, 0, 0, .42);
}

.hws-careers {
  min-height: calc(100vh - 74px);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #050403;
}
.hws-careers::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--career-bg, radial-gradient(circle at 65% 42%, #263435, #050403 66%));
  background-size: cover;
  background-position: center;
  filter: brightness(calc(var(--career-brightness, 74) * 1%));
}
.hws-careers::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(4,4,4,.94), rgba(4,4,4,.46) 52%, rgba(4,4,4,.24));
  opacity: calc(var(--career-overlay, 66) / 100);
}
.hws-career-shell {
  display: grid;
  grid-template-columns: minmax(320px, 42%) 1fr;
  gap: clamp(28px, 5vw, 80px);
  align-items: stretch;
  min-height: 620px;
}
.hws-career-left {
  display: grid;
  align-content: center;
  gap: 58px;
  position: relative;
  z-index: 2;
}
.hws-career-tabs {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.hws-career-tabs button {
  width: 86px;
  min-height: 112px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 12px;
  color: #e6ddd4;
  background: transparent;
  border: 0;
  font-weight: 900;
  font-size: 18px;
}
.hws-career-tabs button img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(225, 189, 114, .34);
  background: rgba(0, 0, 0, .42);
  filter: drop-shadow(0 8px 16px rgba(0,0,0,.55));
}
.hws-career-tabs button.is-active {
  color: #fff4d2;
  text-shadow: 0 0 14px rgba(214, 29, 18, .9);
}
.hws-career-tabs button.is-active img {
  border-color: #e1bd72;
  box-shadow: 0 0 0 4px rgba(185, 20, 9, .48), 0 0 24px rgba(225, 189, 114, .36);
}
.hws-career-panels {
  position: relative;
  min-height: 620px;
}
.hws-career-panel {
  display: none;
  min-height: 620px;
  position: relative;
  overflow: hidden;
  background: transparent;
  border: 0;
}
.hws-career-panel.is-active {
  display: block;
}
.hws-career-copy {
  display: none;
}
.hws-career-copy.is-active { display: block; }
.hws-career-copy h3 {
  margin: 0 0 18px;
  font-size: clamp(42px, 6vw, 74px);
  line-height: 1;
  color: #e9dcc0;
}
.hws-career-copy p {
  margin: 0;
  color: #d1c5b9;
  line-height: 1.85;
  font-size: 18px;
}
.hws-career-media {
  min-height: 620px;
  height: 100%;
}
.hws-career-media img,
.hws-career-media video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 28px 42px rgba(0, 0, 0, .64));
}
.hws-footer {
  padding: 62px 24px;
  text-align: left;
  color: #958a80;
  border-top: 1px solid var(--hws-line);
  background: #070504;
}
.hws-footer a { color: #bfa364; }
.hws-footer-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(220px, 36%) 1fr;
  gap: 44px;
  align-items: center;
}
.hws-footer-logos {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}
.hws-footer-logos img {
  max-width: min(100%, 280px);
  max-height: 110px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, .48));
}
.hws-footer-info {
  min-width: 0;
}
.hws-footer p {
  margin: 8px 0;
  line-height: 1.65;
}
.hws-footer-extra {
  display: grid;
  gap: 6px;
  line-height: 1.65;
}
.hws-footer-extra p {
  margin: 0;
}
.hws-footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: center;
}
.hws-footer-row > * + * {
  position: relative;
}
.hws-footer-row > * + *::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  width: 1px;
  height: 1em;
  transform: translateY(-50%);
  background: rgba(191, 163, 100, .42);
}
.hws-footer-links {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 26px;
  color: #bfa364;
}

.hws-letters-page .hws-section {
  min-height: calc(100vh - 74px);
  display: grid;
  align-items: center;
}
.hws-letters-page {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #050403;
}
.hws-letters-page::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--letters-bg, radial-gradient(circle at 42% 24%, #3c130d, #050403 68%));
  background-size: cover;
  background-position: center;
  filter: brightness(calc(var(--letters-brightness, 78) * 1%));
}
.hws-letters-page::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(4, 4, 4, .9), rgba(4, 4, 4, .42) 58%, rgba(4, 4, 4, .72));
  opacity: calc(var(--letters-overlay, 72) / 100);
}
.hws-letter-panel {
  width: min(760px, 100%);
  padding: clamp(30px, 5vw, 62px);
  background: linear-gradient(100deg, rgba(14, 10, 8, .9), rgba(42, 14, 8, .58));
  border: 1px solid var(--hws-line);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .42);
}
.hws-letter-panel h1 {
  margin: 0 0 18px;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1;
}
.hws-letter-subtitle {
  margin: 0 0 24px;
  color: #ffe2a0;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.6;
}
.hws-letter-content {
  color: #d4c8bd;
  font-size: 18px;
  line-height: 1.9;
}
.hws-letter-actions {
  margin-top: 32px;
}
.hws-letter-showcase-section {
  display: grid;
  grid-template-columns: minmax(280px, var(--letter-panel-width, 420px)) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
  min-height: calc(100vh - 74px);
}
.hws-letter-intro {
  width: min(var(--letter-panel-width, 420px), 100%);
  padding: clamp(22px, 2.6vw, 36px);
  background: linear-gradient(100deg, rgba(14, 10, 8, .9), rgba(42, 14, 8, .48));
  border: 1px solid var(--hws-line);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .38);
}
.hws-letter-intro h1 {
  margin: 0 0 16px;
  font-size: clamp(34px, 4.2vw, 50px);
  line-height: 1.05;
}
.hws-letter-intro .hws-letter-subtitle {
  font-size: clamp(16px, 1.35vw, 19px);
}
.hws-letter-actions .hws-frame-button {
  --hws-btn-width: min(220px, 100%);
  --hws-btn-height: 58px;
}
.hws-letter-showcase {
  min-width: 0;
}
.hws-letter-showcase .hws-section-head {
  margin-bottom: 22px;
}
.hws-letter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.hws-letter-card {
  min-width: 0;
  color: inherit;
  text-decoration: none;
  background: linear-gradient(180deg, rgba(29, 25, 22, .92), rgba(9, 7, 6, .94));
  border: 1px solid rgba(225, 189, 114, .2);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .34);
  transition: transform .18s ease, border-color .18s ease, filter .18s ease;
}
.hws-letter-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 218, 135, .52);
  filter: brightness(1.12);
}
.hws-letter-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: rgba(255, 255, 255, .04);
}
.hws-letter-card div {
  padding: 18px;
}
.hws-letter-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
}
.hws-letter-card p {
  margin: 0;
  color: var(--hws-muted);
  line-height: 1.7;
}

.hws-social {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #050403;
  border-top: 1px solid rgba(225, 189, 114, .12);
}
.hws-social::before,
.hws-social::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hws-social::before {
  z-index: -2;
  background-image: var(--page-bg, radial-gradient(circle at 50% 0, rgba(86, 23, 12, .54), transparent 42%), linear-gradient(180deg, #0a0504, #050403));
  background-size: cover;
  background-position: center;
  filter: brightness(calc(var(--page-brightness, 70) * 1%));
}
.hws-social::after {
  z-index: -1;
  background: #050403;
  opacity: calc(var(--page-overlay, 78) / 100);
}
.hws-social .hws-section {
  padding: 74px 0;
  text-align: center;
}
.hws-social h2 {
  margin-bottom: 14px;
}
.hws-social-subtitle {
  width: min(720px, 100%);
  margin: 0 auto 34px;
  color: var(--hws-muted);
  font-size: 18px;
  line-height: 1.8;
}
.hws-social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 18px;
}
.hws-social-grid article {
  display: grid;
  gap: 14px;
  justify-items: center;
  align-content: start;
  min-height: 210px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(27, 23, 20, .9), rgba(8, 6, 5, .9));
  border: 1px solid var(--hws-line);
  transition: transform .2s ease, filter .2s ease, border-color .2s ease;
}
.hws-social-grid article:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  border-color: rgba(225, 189, 114, .38);
}
.hws-social-grid a,
.hws-social-grid article > div {
  display: grid;
  justify-items: center;
  gap: 10px;
}
.hws-social-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.hws-social-grid strong {
  color: #fff1d1;
  font-size: 19px;
}
.hws-social-qr {
  width: 116px;
  height: 116px;
  object-fit: cover;
  padding: 8px;
  background: #fff;
}
.hws-social-grid p {
  margin: 0;
  color: var(--hws-muted);
  line-height: 1.65;
}

.hws-activity-float {
  position: fixed;
  right: 24px;
  z-index: 40;
  width: min(var(--activity-width, 260px), calc(100vw - 48px));
  transition: transform .24s ease, opacity .24s ease;
}
.hws-activity-float.is-right_center { top: 50%; transform: translateY(-50%); }
.hws-activity-float.is-right_bottom { bottom: 92px; }
.hws-activity-float a {
  display: grid;
  gap: 10px;
  padding: 12px;
  color: #fff1d1;
  background: linear-gradient(180deg, rgba(88, 18, 10, .94), rgba(15, 9, 7, .94));
  border: 1px solid rgba(225, 189, 114, .32);
  box-shadow: 0 22px 48px rgba(0, 0, 0, .45);
}
.hws-activity-float a:hover {
  filter: brightness(1.12);
}
.hws-activity-float img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.08);
}
.hws-activity-float span {
  display: grid;
  gap: 4px;
}
.hws-activity-float strong {
  font-size: 20px;
}
.hws-activity-float em {
  color: var(--hws-gold);
  font-style: normal;
  font-weight: 800;
}
.hws-activity-float b {
  justify-self: start;
  padding: 6px 12px;
  background: rgba(185, 20, 9, .86);
  border: 1px solid rgba(225, 189, 114, .28);
}
.hws-activity-float button {
  margin-top: 8px;
  padding: 5px 10px;
  color: #d8c09a;
  background: rgba(0, 0, 0, .58);
  border: 1px solid rgba(225, 189, 114, .26);
  cursor: pointer;
}
.hws-activity-float.is-collapsed {
  transform: translate(calc(100% - 48px), -50%);
}
.hws-activity-float.is-right_bottom.is-collapsed {
  transform: translateX(calc(100% - 48px));
}

.hws-inner { background: radial-gradient(circle at 50% 0, #36100b, #060403 48%); }
.hws-article {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  padding: 76px 0 100px;
}
.hws-article h1 {
  margin: 8px 0 14px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.15;
}
.hws-cover { width: 100%; max-height: 460px; object-fit: cover; margin: 28px 0; }
.hws-content {
  color: #e4d8ce;
  font-size: 18px;
  line-height: 1.9;
}
.hws-content a { color: var(--hws-gold); }
.hws-content img { height: auto; margin: 24px 0; }

.hws-landing {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 88px 0 110px;
}
.hws-landing-head {
  max-width: 780px;
  margin-bottom: 38px;
}
.hws-landing-head h1 {
  margin: 0 0 18px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1;
}
.hws-landing-head p {
  margin: 0 0 28px;
  color: #d7c8bb;
  font-size: 20px;
  line-height: 1.75;
}
.hws-download-page {
  position: relative;
  min-height: calc(100vh - 74px);
  isolation: isolate;
  overflow: hidden;
  background: #050302;
}
.hws-download-page::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--download-bg, radial-gradient(circle at 38% 24%, #34110c, #050302 68%));
  background-size: cover;
  background-position: center;
  filter: brightness(calc(var(--download-brightness, 76) * 1%));
}
.hws-download-page::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0, 0, 0, .44), rgba(0, 0, 0, .82));
  opacity: calc(var(--download-overlay, 78) / 100);
}
.hws-download-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}
.hws-platform,
.hws-platform-card,
.hws-download-note {
  min-height: 260px;
  padding: 28px;
  background: linear-gradient(180deg, rgba(30, 27, 25, .94), rgba(10, 8, 7, .94));
  border: 1px solid var(--hws-line);
}
.hws-platform span,
.hws-platform-card span {
  color: var(--hws-gold);
  font-weight: 900;
}
.hws-platform h2,
.hws-platform-card h3,
.hws-download-note h2 {
  margin: 14px 0 12px;
  font-size: 30px;
}
.hws-platform p,
.hws-platform-card p,
.hws-download-note p {
  min-height: 56px;
  color: var(--hws-muted);
  line-height: 1.7;
}
.hws-rich-text a {
  color: var(--hws-gold);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.hws-rich-text a:hover {
  color: #fff0c2;
}
.hws-download-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, .72);
  backdrop-filter: blur(8px);
}
.hws-download-modal.is-open {
  display: grid;
}
.hws-download-modal-panel {
  width: min(560px, 100%);
  padding: 32px;
  color: #efe7dc;
  background: linear-gradient(180deg, rgba(30, 24, 21, .98), rgba(8, 6, 5, .98));
  border: 1px solid rgba(225, 189, 114, .24);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .58), inset 0 0 0 1px rgba(255, 255, 255, .04);
}
.hws-download-modal-panel h2 {
  margin: 0 0 18px;
  font-size: 28px;
}
.hws-download-modal-panel p {
  margin: 0;
  color: #d4c6b8;
  line-height: 1.9;
  font-size: 18px;
}
.hws-download-modal-panel a {
  color: var(--hws-gold);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.hws-download-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.hws-download-modal-actions button {
  min-width: 132px;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid rgba(225, 189, 114, .28);
  color: #f7ead9;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}
.hws-modal-reject {
  background: rgba(255, 255, 255, .06);
}
.hws-modal-accept {
  background: linear-gradient(180deg, var(--hws-red-strong), #8d1008);
  box-shadow: 0 12px 26px rgba(147, 22, 10, .34);
}
.hws-platform-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  margin: 16px 0;
  border: 1px solid rgba(255,255,255,.08);
  background: #100d0c;
}
.hws-download-note img {
  width: 128px;
  height: 128px;
  object-fit: cover;
  margin-bottom: 18px;
  background: white;
  padding: 8px;
}

@keyframes hws-ember-fly {
  0% { transform: translate3d(0, 0, 0) rotate(var(--ember-rotate, -38deg)); opacity: 0; }
  12% { opacity: calc(var(--hws-ember-opacity, 78) / 100); }
  86% { opacity: calc(var(--hws-ember-opacity, 78) / 100); }
  100% { transform: translate3d(var(--ember-travel-x, 36vw), var(--ember-travel-y, -76vh), 0) rotate(var(--ember-rotate, -38deg)); opacity: 0; }
}
@keyframes hws-ember-fly-left {
  0% { transform: translate3d(0, 0, 0) rotate(var(--ember-rotate, 38deg)); opacity: 0; }
  12% { opacity: calc(var(--hws-ember-opacity, 78) / 100); }
  86% { opacity: calc(var(--hws-ember-opacity, 78) / 100); }
  100% { transform: translate3d(calc(var(--ember-travel-x, 36vw) * -1), var(--ember-travel-y, -76vh), 0) rotate(var(--ember-rotate, 38deg)); opacity: 0; }
}
@keyframes hws-ember-drift {
  0% { transform: translate3d(0, 0, 0) scale(.85) rotate(var(--ember-rotate, -20deg)); opacity: 0; }
  18% { opacity: calc(var(--hws-ember-opacity, 78) / 100); }
  80% { opacity: calc(var(--hws-ember-opacity, 78) / 100); }
  100% { transform: translate3d(var(--ember-travel-x, 18vw), var(--ember-travel-y, -48vh), 0) scale(1.08) rotate(calc(var(--ember-rotate, -20deg) + 34deg)); opacity: 0; }
}
@keyframes hws-ember-burst {
  0% { transform: translate3d(0, 0, 0) scale(.35) rotate(var(--ember-rotate, -38deg)); opacity: 0; filter: blur(4px); }
  7% { opacity: calc(var(--hws-ember-opacity, 78) / 100); filter: blur(var(--ember-blur, .2px)); }
  34% { transform: translate3d(var(--ember-mid-x, 18vw), var(--ember-mid-y, -26vh), 0) scale(var(--ember-scale, 1)) rotate(var(--ember-rotate, -38deg)); opacity: calc((var(--hws-ember-opacity, 78) / 100) * .96); }
  48% { opacity: calc((var(--hws-ember-opacity, 78) / 100) * .42); }
  61% { opacity: calc((var(--hws-ember-opacity, 78) / 100) * .86); }
  100% { transform: translate3d(var(--ember-travel-x, 46vw), var(--ember-travel-y, -78vh), 0) scale(.18) rotate(var(--ember-rotate-end, -10deg)); opacity: 0; filter: blur(3px); }
}
@keyframes hws-ember-burst-left {
  0% { transform: translate3d(0, 0, 0) scale(.35) rotate(var(--ember-rotate, 38deg)); opacity: 0; filter: blur(4px); }
  7% { opacity: calc(var(--hws-ember-opacity, 78) / 100); filter: blur(var(--ember-blur, .2px)); }
  34% { transform: translate3d(var(--ember-mid-x, -18vw), var(--ember-mid-y, -26vh), 0) scale(var(--ember-scale, 1)) rotate(var(--ember-rotate, 38deg)); opacity: calc((var(--hws-ember-opacity, 78) / 100) * .96); }
  48% { opacity: calc((var(--hws-ember-opacity, 78) / 100) * .42); }
  61% { opacity: calc((var(--hws-ember-opacity, 78) / 100) * .86); }
  100% { transform: translate3d(var(--ember-travel-x, -46vw), var(--ember-travel-y, -78vh), 0) scale(.18) rotate(var(--ember-rotate-end, 10deg)); opacity: 0; filter: blur(3px); }
}
@keyframes hws-ember-float {
  0% { transform: translate3d(0, 0, 0) scale(.45) rotate(var(--ember-rotate, -20deg)); opacity: 0; }
  14% { opacity: calc(var(--hws-ember-opacity, 78) / 100); }
  35% { transform: translate3d(var(--ember-mid-x, 12vw), var(--ember-mid-y, -18vh), 0) scale(var(--ember-scale, 1)) rotate(var(--ember-rotate, -20deg)); }
  52% { opacity: calc((var(--hws-ember-opacity, 78) / 100) * .45); }
  66% { opacity: calc((var(--hws-ember-opacity, 78) / 100) * .84); }
  100% { transform: translate3d(var(--ember-travel-x, 18vw), var(--ember-travel-y, -48vh), 0) scale(.22) rotate(var(--ember-rotate-end, 18deg)); opacity: 0; }
}

@media (max-width: 900px) {
  .hws-nav { align-items: flex-start; flex-direction: column; gap: 12px; padding: 14px 18px; }
  .hws-brand { min-width: 0; font-size: 19px; }
  .hws-brand img { width: 36px; height: 36px; }
  .hws-menu { width: 100%; overflow-x: auto; gap: 18px; padding-bottom: 4px; }
  .hws-nav-cta { display: none; }
  .hws-hero { min-height: calc(100vh - 132px); padding: 70px 22px; }
  .hws-hero::before { background-image: var(--hws-bg-mobile, var(--hws-bg)); }
  .hws-hero-pos-right,
  .hws-hero-pos-center { justify-items: start; text-align: left; }
  .hws-hero-pos-center .hws-hero-actions { justify-content: flex-start; }
  .hws-age-notice {
    position: relative;
    left: auto;
    top: auto;
    margin-bottom: 24px;
    max-width: 100%;
  }
  .hws-hero-title-logo { width: min(var(--hero-title-logo-width, 360px), 72vw); }
  .hws-card-grid { grid-template-columns: 1fr; }
  .hws-overview-grid { grid-template-columns: 1fr; }
  .hws-overview-story,
  .hws-overview-story.is-reverse { grid-template-columns: 1fr; min-height: 0; }
  .hws-overview-story.is-reverse > div,
  .hws-overview-story.is-reverse > img { order: initial; }
  .hws-career-shell { grid-template-columns: 1fr; }
  .hws-career-left { gap: 36px; }
  .hws-career-tabs { gap: 12px; }
  .hws-career-panel.is-active { grid-template-columns: 1fr; }
  .hws-career-media,
  .hws-career-panels,
  .hws-career-panel { min-height: 360px; }
  .hws-letter-showcase-section { grid-template-columns: 1fr; min-height: 0; }
  .hws-letter-grid { grid-template-columns: 1fr; }
  .hws-news-row a { grid-template-columns: 1fr; }
  .hws-news-row img { height: 190px; }
  .hws-download-grid { grid-template-columns: 1fr; }
  .hws-social-grid { grid-template-columns: 1fr; }
  .hws-activity-float { display: none; }
  .hws-activity-float.show-mobile {
    display: block;
    right: 14px;
    bottom: 18px;
    top: auto;
    width: min(var(--activity-width, 260px), calc(100vw - 28px));
    transform: none;
  }
  .hws-footer-inner { grid-template-columns: 1fr; text-align: center; }
  .hws-footer-logos,
  .hws-footer-links { justify-content: center; }
  .hws-footer-logos img {
    max-width: min(220px, 82vw);
    max-height: 78px;
  }
}
