/* Response Center — light / dark CTA portal */
:root {
  --bg: #f6f8fc;
  --bg-elevated: #ffffff;
  --bg-soft: #eef2f8;
  --text: #15233d;
  --text-strong: #0b1f44;
  --muted: #5d6b84;
  --navy: #0b1f44;
  --navy-deep: #071532;
  --gold: #c9a227;
  --gold-soft: #e8d48a;
  --border: #d9e0ec;
  --border-strong: #c2ccdd;
  --accent: #0b1f44;
  --link: #0b4ea2;
  --shadow: 0 14px 40px rgba(11, 31, 68, 0.08);
  --radius: 16px;
  --radius-sm: 12px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;
  color-scheme: light;
}

html[data-theme="dark"] {
  --bg: #070d1a;
  --bg-elevated: #101a2e;
  --bg-soft: #0d1628;
  --text: #e7eef9;
  --text-strong: #ffffff;
  --muted: #a7b4cb;
  --border: #243352;
  --border-strong: #33476a;
  --link: #8ec5ff;
  --shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--link); text-decoration: none; }
a:hover { text-decoration: underline; }
button, input { font: inherit; color: inherit; }

.container {
  width: min(980px, calc(100% - 2rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in srgb, var(--bg-elevated) 90%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand-logo { width: min(170px, 46vw); }
.header-actions { display: flex; align-items: center; gap: 0.55rem; }

.theme-toggle {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: var(--bg-elevated);
  color: var(--navy);
  display: grid;
  place-items: center;
  cursor: pointer;
}
html[data-theme="dark"] .theme-toggle { color: var(--gold); }
.theme-toggle .icon-moon { display: none; }
html[data-theme="dark"] .theme-toggle .icon-sun { display: none; }
html[data-theme="dark"] .theme-toggle .icon-moon { display: block; }

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(160deg, rgba(7, 21, 50, 0.82), rgba(11, 31, 68, 0.68)),
    url("https://cdn.neocdn.cloud/i/hstv/julyhslhs-95c52e.jpeg") center/cover no-repeat;
  padding: 2.75rem 0 2.4rem;
}
.hero-kicker {
  display: inline-block;
  margin: 0 0 0.7rem;
  padding: 0.3rem 0.75rem;
  border: 1px solid rgba(201, 162, 39, 0.55);
  border-radius: 999px;
  color: var(--gold-soft);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.8vw, 3.35rem);
  line-height: 1.08;
  max-width: 18ch;
}
.hero p {
  margin: 0.75rem 0 0;
  max-width: 38ch;
  color: rgba(255,255,255,0.9);
  font-size: 1.05rem;
}

.portal {
  padding: 1.5rem 0 2.75rem;
}
.portal-intro {
  text-align: center;
  margin: 0 0 1.15rem;
  color: var(--muted);
}

.action-grid {
  display: grid;
  gap: 0.75rem;
}

.action-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.action-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border: 0;
  background: transparent;
  color: var(--text-strong);
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}
.action-toggle span {
  display: grid;
  gap: 0.15rem;
}
.action-toggle small {
  color: var(--muted);
  font-weight: 500;
  font-size: 0.86rem;
}
.action-toggle .chev {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--gold);
  transition: transform 0.2s ease;
}
.action-card.open .action-toggle .chev { transform: rotate(180deg); }

.action-body {
  display: none;
  padding: 0 1.1rem 1.15rem;
  border-top: 1px solid var(--border);
}
.action-card.open .action-body { display: block; padding-top: 1rem; }

.choice-list {
  display: grid;
  gap: 0.55rem;
}
.choice {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.8rem 0.9rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-soft);
  cursor: pointer;
  color: var(--text);
}
.choice:hover { border-color: var(--gold); }
.choice input {
  margin-top: 0.2rem;
  width: 18px;
  height: 18px;
  accent-color: var(--navy);
}
html[data-theme="dark"] .choice input { accent-color: var(--gold); }
.choice strong {
  display: block;
  color: var(--text-strong);
  font-size: 0.95rem;
}
.choice em {
  display: block;
  margin-top: 0.15rem;
  font-style: normal;
  color: var(--muted);
  font-size: 0.84rem;
}

.choice-block {
  display: grid;
  gap: 0.45rem;
}
.choice-block .choice-detail {
  margin: 0 0 0.15rem;
  animation: rcReveal 0.22s ease;
}
.choice-block:has(input:checked) .choice {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--gold) 25%, transparent);
}

@keyframes rcReveal {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

.detail-box {
  margin-top: 0.9rem;
  padding: 0.95rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
}
.detail-box h4 {
  margin: 0 0 0.45rem;
  color: var(--text-strong);
  font-size: 1rem;
}
.detail-box p, .detail-box li {
  margin: 0.25rem 0;
  color: var(--muted);
}
.detail-box ul { margin: 0.5rem 0 0; padding-left: 1.1rem; }
.detail-box a { font-weight: 650; }

.call-grid {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.75rem;
}
@media (min-width: 720px) {
  .call-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.call-item {
  padding: 0.85rem 0.95rem;
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
  border: 1px solid var(--border);
}
.call-item h5 {
  margin: 0 0 0.4rem;
  color: var(--text-strong);
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.call-item a {
  display: inline-block;
  margin: 0.15rem 0.45rem 0.15rem 0;
  color: var(--link);
  font-weight: 650;
  word-break: break-word;
}
.call-item .note {
  display: block;
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.lang-block {
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px dashed var(--border);
}
.lang-block h4 {
  margin: 0 0 0.65rem;
  color: var(--gold);
  font-size: 0.95rem;
}
.lang-item {
  margin: 0 0 0.75rem;
  color: var(--text);
}
.lang-item strong {
  display: block;
  color: var(--text-strong);
  margin-bottom: 0.15rem;
}

.quick-links {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.35rem;
}
.quick-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-soft);
  color: var(--text-strong);
  font-weight: 650;
}
.quick-link:hover {
  border-color: var(--gold);
  text-decoration: none;
}
.quick-link span {
  color: var(--muted);
  font-weight: 500;
  font-size: 0.84rem;
}

.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.85);
  padding: 1.4rem 0;
  border-top: 3px solid var(--gold);
  text-align: center;
}
.site-footer p { margin: 0; font-size: 0.92rem; }

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