:root {
  --ink: #090a0d;
  --ink-soft: #12141a;
  --surface: #171a21;
  --surface-2: #1e222b;
  --line: rgba(255, 255, 255, 0.11);
  --gold: #d8ae62;
  --gold-bright: #f1d195;
  --gold-dark: #9d7637;
  --silver: #d9dde5;
  --white: #f8f7f3;
  --muted: #a7abb5;
  --positive: #71d6a4;
  --negative: #ef8e83;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--white);
  background:
    radial-gradient(circle at 9% 10%, rgba(216, 174, 98, 0.09), transparent 28rem),
    var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", "Segoe UI", sans-serif;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(241, 209, 149, 0.78);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 9px 14px;
  color: var(--ink);
  background: var(--gold-bright);
  border-radius: 8px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 40px), 840px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(9, 10, 13, 0.78);
  backdrop-filter: blur(18px);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.22);
}

.nav-shell {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  flex-shrink: 0;
}

.brand img,
.h5-brand img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 6px 24px rgba(216, 174, 98, 0.16);
}

.brand-copy {
  display: grid;
  line-height: 1.08;
}

.brand-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--gold);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.primary-nav a {
  padding: 9px 13px;
  color: var(--muted);
  font-size: 0.91rem;
  font-weight: 650;
  border-radius: 10px;
  transition: color 0.25s ease, background 0.25s ease;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.primary-nav .nav-cta {
  margin-left: 9px;
  color: #17120a;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  box-shadow: 0 8px 26px rgba(216, 174, 98, 0.2);
}

.primary-nav .nav-cta:hover {
  color: #17120a;
  background: linear-gradient(135deg, #f7dda9, #e3b963);
}

.menu-toggle {
  display: none;
  width: 45px;
  height: 45px;
  padding: 0;
  border: 1px solid var(--line);
  color: var(--white);
  background: var(--surface);
  border-radius: 12px;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 2px;
  content: "";
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--gold-bright);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 1px;
  background: var(--gold);
  content: "";
}

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

h1,
h2,
h3 {
  line-height: 1.25;
}

h1,
h2 {
  font-family: Georgia, "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-weight: 500;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 25px;
  font-size: clamp(2.7rem, 6vw, 5.5rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.05rem, 4.5vw, 3.8rem);
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.15rem, 2vw, 1.42rem);
}

.lead {
  max-width: 690px;
  color: #c8cad1;
  font-size: clamp(1.02rem, 1.7vw, 1.18rem);
}

.text-gold {
  color: var(--gold-bright);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 31px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 19px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-weight: 750;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #17120a;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  box-shadow: 0 12px 34px rgba(216, 174, 98, 0.22);
}

.button-secondary {
  color: var(--white);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.button-secondary:hover {
  border-color: rgba(216, 174, 98, 0.45);
}

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  min-height: calc(100svh - 78px);
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  position: absolute;
  top: 11%;
  left: -12rem;
  width: 34rem;
  height: 34rem;
  border: 1px solid rgba(216, 174, 98, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(216, 174, 98, 0.02), 0 0 0 130px rgba(216, 174, 98, 0.015);
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: clamp(42px, 6vw, 86px);
  padding-block: 70px 90px;
}

.hero-copy h1 span {
  display: block;
  color: var(--gold-bright);
}

.hero-copy .lead {
  max-width: 620px;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.84rem;
}

.hero-note::before {
  display: inline-grid;
  width: 27px;
  height: 27px;
  place-items: center;
  color: var(--gold);
  border: 1px solid rgba(216, 174, 98, 0.35);
  border-radius: 50%;
  content: "i";
  font-family: Georgia, serif;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 580px;
}

.hero-photo {
  position: absolute;
  inset: 0 12% 15% 0;
  width: 88%;
  height: 85%;
  object-fit: cover;
  filter: grayscale(38%) saturate(75%) contrast(108%);
  border-radius: 110px 24px 110px 24px;
  box-shadow: var(--shadow);
}

.hero-visual::after {
  position: absolute;
  inset: 0 12% 15% 0;
  border-radius: 110px 24px 110px 24px;
  background: linear-gradient(140deg, rgba(8, 9, 12, 0.05), rgba(8, 9, 12, 0.42) 60%, rgba(216, 174, 98, 0.14));
  content: "";
}

.market-panel {
  position: absolute;
  right: 0;
  bottom: 3%;
  z-index: 2;
  width: min(390px, 82%);
  padding: 22px;
  border: 1px solid rgba(216, 174, 98, 0.27);
  background: rgba(18, 20, 26, 0.92);
  backdrop-filter: blur(18px);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.panel-top,
.ticker-row,
.mini-stat,
.contact-line,
.policy-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.panel-label {
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
}

.live-dot {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--positive);
  font-size: 0.73rem;
}

.live-dot::before {
  width: 7px;
  height: 7px;
  background: currentColor;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(113, 214, 164, 0.11);
  content: "";
}

.chart {
  height: 126px;
  margin: 18px 0 12px;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 100% 31px, 48px 100%;
  border-radius: 8px;
}

.chart-bars {
  height: 100%;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  padding: 14px 10px;
}

.chart-bars i {
  position: relative;
  flex: 1;
  height: var(--h);
  min-height: 14px;
  background: linear-gradient(to top, rgba(216, 174, 98, 0.1), rgba(216, 174, 98, 0.86));
  border-radius: 3px 3px 0 0;
}

.chart-bars i::after {
  position: absolute;
  top: -9px;
  left: 50%;
  width: 2px;
  height: calc(100% + 16px);
  background: var(--gold-bright);
  content: "";
  transform: translateX(-50%);
  opacity: 0.55;
}

.ticker-row {
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
}

.ticker-row b {
  letter-spacing: 0.06em;
}

.ticker-row span {
  color: var(--positive);
}

.section {
  position: relative;
  padding-block: clamp(82px, 10vw, 132px);
}

.section-muted {
  background: #0d0f13;
  border-block: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
  align-items: end;
  margin-bottom: 62px;
}

.section-heading h2,
.section-heading p {
  margin-bottom: 0;
}

.section-heading p {
  max-width: 590px;
  justify-self: end;
  color: var(--muted);
}

.briefing-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 30px;
  align-items: stretch;
}

.briefing-intro {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 38px;
  color: #17120a;
  background: linear-gradient(145deg, #eed099, #bb8e47);
  border-radius: var(--radius-lg);
}

.briefing-intro .big-number {
  margin-top: 60px;
  font-family: Georgia, serif;
  font-size: clamp(4rem, 8vw, 7.5rem);
  line-height: 0.88;
}

.briefing-intro small {
  display: block;
  margin-top: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.briefing-list {
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border-radius: var(--radius-lg);
}

.briefing-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 25px 30px;
  border-bottom: 1px solid var(--line);
}

.briefing-item:last-child {
  border-bottom: 0;
}

.briefing-icon,
.feature-icon,
.policy-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(216, 174, 98, 0.25);
  color: var(--gold-bright);
  background: rgba(216, 174, 98, 0.08);
  border-radius: 16px;
}

.briefing-icon {
  width: 54px;
  height: 54px;
  font-size: 1.35rem;
}

.briefing-item h3,
.briefing-item p {
  margin-bottom: 0;
}

.briefing-item p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.9rem;
}

.briefing-item > span:last-child {
  color: var(--gold);
  font-size: 1.25rem;
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.steps::before {
  position: absolute;
  top: 31px;
  right: 10%;
  left: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 174, 98, 0.55), transparent);
  content: "";
}

.step {
  position: relative;
  z-index: 1;
  padding-top: 2px;
}

.step-number {
  width: 61px;
  height: 61px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  color: var(--gold-bright);
  border: 1px solid rgba(216, 174, 98, 0.38);
  background: var(--ink-soft);
  border-radius: 50%;
  box-shadow: 0 0 0 8px var(--ink);
  font-family: Georgia, serif;
  font-size: 1.1rem;
}

.step p {
  color: var(--muted);
  font-size: 0.93rem;
}

.replay-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(440px, 1.14fr);
  gap: clamp(45px, 7vw, 94px);
  align-items: center;
}

.replay-copy ul,
.check-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.replay-copy li,
.check-list li {
  position: relative;
  margin: 13px 0;
  padding-left: 30px;
  color: #c9cbd1;
}

.replay-copy li::before,
.check-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--gold);
  content: "◇";
}

.replay-board {
  position: relative;
  padding: 24px;
  border: 1px solid rgba(216, 174, 98, 0.25);
  background: linear-gradient(160deg, #1c2028, #101217);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.replay-board::before {
  position: absolute;
  inset: 12px;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 21px;
  content: "";
}

.board-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 6px 20px;
}

.board-head strong {
  letter-spacing: 0.04em;
}

.board-head span {
  color: var(--gold);
  font-size: 0.77rem;
}

.decision-card {
  position: relative;
  padding: 21px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
  border-radius: 15px;
}

.decision-card + .decision-card {
  margin-top: 12px;
}

.decision-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 15px;
}

.decision-top span {
  color: var(--muted);
  font-size: 0.8rem;
}

.scenario-track {
  height: 7px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
}

.scenario-track i {
  display: block;
  width: var(--w);
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-bright));
  border-radius: inherit;
}

.decision-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.74rem;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--line);
  border-radius: var(--radius-lg);
}

.value-item {
  min-height: 280px;
  padding: clamp(28px, 4vw, 48px);
  background: var(--ink-soft);
}

.feature-icon,
.policy-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 28px;
  font-size: 1.25rem;
}

.value-item p {
  color: var(--muted);
}

.disclaimer {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 26px;
  align-items: start;
  padding: 34px;
  border: 1px solid rgba(216, 174, 98, 0.29);
  background: rgba(216, 174, 98, 0.065);
  border-radius: var(--radius-md);
}

.disclaimer-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--gold);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-weight: 700;
}

.disclaimer h3 {
  margin-bottom: 7px;
}

.disclaimer p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 16px;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 21px 24px;
  border: 0;
  color: var(--white);
  background: transparent;
  text-align: left;
  cursor: pointer;
  font-weight: 700;
}

.faq-question::after {
  color: var(--gold);
  content: "+";
  font-size: 1.5rem;
  font-weight: 400;
}

.faq-question[aria-expanded="true"]::after {
  content: "−";
}

.faq-answer {
  display: none;
  padding: 0 24px 22px;
  color: var(--muted);
}

.faq-answer p {
  margin-bottom: 0;
}

.faq-question[aria-expanded="true"] + .faq-answer {
  display: block;
}

.cta-band {
  overflow: hidden;
  padding-block: clamp(72px, 9vw, 116px);
}

.cta-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 40px;
  align-items: center;
  padding: clamp(34px, 6vw, 70px);
  color: #16120a;
  background: linear-gradient(130deg, #f0d39c, #c4964b);
  border-radius: var(--radius-lg);
}

.cta-inner::after {
  position: absolute;
  right: -3rem;
  bottom: -7rem;
  width: 20rem;
  height: 20rem;
  border: 1px solid rgba(20, 16, 8, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 38px rgba(20, 16, 8, 0.035), 0 0 0 76px rgba(20, 16, 8, 0.025);
  content: "";
}

.cta-inner h2,
.cta-inner p {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin-bottom: 0;
}

.cta-inner p {
  margin-top: 13px;
  color: rgba(22, 18, 10, 0.72);
}

.cta-inner .button {
  position: relative;
  z-index: 1;
  color: var(--white);
  background: var(--ink);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(88px, 12vw, 155px);
  border-bottom: 1px solid var(--line);
}

.page-hero::after {
  position: absolute;
  top: -15rem;
  right: -12rem;
  width: 38rem;
  height: 38rem;
  border: 1px solid rgba(216, 174, 98, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(216, 174, 98, 0.018), 0 0 0 140px rgba(216, 174, 98, 0.012);
  content: "";
}

.page-hero .container,
.page-hero .narrow {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 920px;
  font-size: clamp(2.6rem, 6.5vw, 5.4rem);
}

.page-hero .lead {
  max-width: 760px;
}

.about-split,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
  gap: clamp(45px, 7vw, 96px);
  align-items: center;
}

.about-image-wrap {
  position: relative;
  padding: 0 0 30px 30px;
}

.about-image-wrap::before {
  position: absolute;
  right: 30px;
  bottom: 0;
  left: 0;
  height: 82%;
  border: 1px solid rgba(216, 174, 98, 0.32);
  border-radius: 34px 90px 34px 34px;
  content: "";
}

.about-image-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: grayscale(42%) sepia(10%);
  border-radius: 34px 90px 34px 34px;
  box-shadow: var(--shadow);
}

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

.principle {
  padding: 32px;
  border-top: 2px solid var(--gold-dark);
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border-radius: 0 0 18px 18px;
}

.principle span {
  display: block;
  margin-bottom: 32px;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 1.55rem;
}

.principle p {
  margin-bottom: 0;
  color: var(--muted);
}

.audience-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 60px;
  align-items: start;
}

.audience-list {
  border-top: 1px solid var(--line);
}

.audience-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 24px;
  padding-block: 28px;
  border-bottom: 1px solid var(--line);
}

.audience-item > span {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 1.1rem;
}

.audience-item h3,
.audience-item p {
  margin-bottom: 0;
}

.audience-item p {
  margin-top: 5px;
  color: var(--muted);
}

.policy-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: -60px;
  position: relative;
  z-index: 2;
}

.summary-card {
  padding: 28px;
  border: 1px solid rgba(216, 174, 98, 0.23);
  background: rgba(23, 26, 33, 0.97);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

.summary-card strong {
  display: block;
  margin-bottom: 8px;
}

.summary-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.89rem;
}

.policy-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 65px;
  align-items: start;
}

.policy-toc {
  position: sticky;
  top: 108px;
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 16px;
}

.policy-toc strong {
  display: block;
  margin-bottom: 12px;
  color: var(--gold-bright);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

.policy-toc a {
  display: block;
  padding: 7px 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.policy-toc a:hover {
  color: var(--white);
}

.policy-section {
  padding: 0 0 46px;
  margin-bottom: 46px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 112px;
}

.policy-section:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}

.policy-title {
  justify-content: flex-start;
  margin-bottom: 22px;
}

.policy-title .policy-icon {
  width: 45px;
  height: 45px;
  margin: 0;
  font-size: 1rem;
  border-radius: 13px;
}

.policy-title h2 {
  margin-bottom: 0;
  font-family: inherit;
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.policy-section p,
.policy-section li {
  color: #c4c6cd;
}

.policy-section ul {
  padding-left: 1.3rem;
}

.data-table {
  width: 100%;
  margin-block: 25px;
  overflow: hidden;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.data-table th,
.data-table td {
  padding: 15px 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.data-table th:last-child,
.data-table td:last-child {
  border-right: 0;
}

.data-table tr:last-child td {
  border-bottom: 0;
}

.data-table th {
  color: var(--gold-bright);
  background: rgba(216, 174, 98, 0.08);
  font-size: 0.83rem;
}

.data-table td {
  color: var(--muted);
  font-size: 0.88rem;
}

.rights-box {
  padding: 28px;
  margin-top: 25px;
  border-left: 3px solid var(--gold);
  background: rgba(216, 174, 98, 0.07);
  border-radius: 0 15px 15px 0;
}

.rights-box p:last-child {
  margin-bottom: 0;
}

.contact-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(350px, 0.75fr);
  align-items: start;
}

.form-card {
  padding: clamp(28px, 5vw, 50px);
  border: 1px solid var(--line);
  background: linear-gradient(155deg, var(--surface-2), var(--surface));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.form-card h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

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

.field {
  margin-bottom: 20px;
}

.field label {
  display: block;
  margin-bottom: 8px;
  color: #d9dbe0;
  font-size: 0.86rem;
  font-weight: 700;
}

.field label span {
  margin-left: 5px;
  color: var(--gold);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  color: var(--white);
  background: rgba(7, 8, 11, 0.52);
  border-radius: 11px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.field textarea {
  min-height: 155px;
  resize: vertical;
}

.field select {
  appearance: auto;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  outline: none;
  box-shadow: 0 0 0 4px rgba(216, 174, 98, 0.09);
}

.field input[type="file"] {
  padding: 10px;
  color: var(--muted);
}

.field input[type="file"]::file-selector-button {
  margin-right: 12px;
  padding: 7px 11px;
  border: 0;
  color: var(--ink);
  background: var(--silver);
  border-radius: 7px;
  cursor: pointer;
}

.field-error {
  display: block;
  min-height: 19px;
  margin-top: 5px;
  color: var(--negative);
  font-size: 0.76rem;
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: var(--negative);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-block: 7px 24px;
  color: var(--muted);
  font-size: 0.84rem;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  accent-color: var(--gold);
}

.consent a {
  color: var(--gold-bright);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-status {
  display: none;
  padding: 12px 14px;
  margin-bottom: 17px;
  border-radius: 10px;
  font-size: 0.86rem;
}

.form-status.is-success {
  display: block;
  color: var(--positive);
  border: 1px solid rgba(113, 214, 164, 0.25);
  background: rgba(113, 214, 164, 0.08);
}

.form-status.is-error {
  display: block;
  color: var(--negative);
  border: 1px solid rgba(239, 142, 131, 0.25);
  background: rgba(239, 142, 131, 0.08);
}

.contact-aside {
  display: grid;
  gap: 20px;
}

.contact-photo {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  border-radius: 24px;
}

.contact-photo img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  filter: grayscale(65%) sepia(14%);
}

.contact-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9, 10, 13, 0.68), transparent 70%);
  content: "";
}

.contact-card {
  padding: 27px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 18px;
}

.contact-card h3 {
  margin-bottom: 17px;
}

.contact-line {
  align-items: flex-start;
  justify-content: flex-start;
  padding-block: 13px;
  border-top: 1px solid var(--line);
}

.contact-line span:first-child {
  width: 33px;
  color: var(--gold);
  flex: 0 0 auto;
}

.contact-line strong,
.contact-line small {
  display: block;
}

.contact-line small {
  margin-top: 2px;
  color: var(--muted);
}

.contact-line a:hover {
  color: var(--gold-bright);
}

.site-footer {
  padding-block: 60px 28px;
  border-top: 1px solid var(--line);
  background: #07080a;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr 0.6fr;
  gap: 50px;
  padding-bottom: 44px;
}

.footer-brand p {
  max-width: 450px;
  margin-top: 20px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-column strong {
  display: block;
  margin-bottom: 13px;
  color: var(--silver);
  font-size: 0.82rem;
  letter-spacing: 0.09em;
}

.footer-column a {
  display: block;
  width: fit-content;
  margin: 7px 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-column a:hover {
  color: var(--gold-bright);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 24px;
  color: #7f838e;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.h5-page {
  background: var(--ink);
}

.h5-header {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.h5-brand {
  display: flex;
  align-items: center;
  gap: 13px;
}

.h5-brand strong {
  font-family: Georgia, serif;
  font-size: 1rem;
}

.h5-footer {
  padding: 30px 20px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  text-align: center;
  font-size: 0.78rem;
}

@media (max-width: 980px) {
  .hero-grid,
  .replay-shell,
  .about-split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 540px;
  }

  .hero-photo {
    inset: 0 8% 13% 0;
    width: 92%;
    height: 87%;
  }

  .hero-visual::after {
    inset: 0 8% 13% 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .section-heading p {
    justify-self: start;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 45px;
  }

  .steps::before {
    display: none;
  }

  .about-split .about-image-wrap {
    max-width: 650px;
  }

  .policy-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .policy-toc {
    position: static;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px 16px;
  }

  .policy-toc strong {
    grid-column: 1 / -1;
  }

  .footer-top {
    grid-template-columns: 1.3fr 0.7fr 0.7fr;
  }
}

@media (max-width: 760px) {
  .container,
  .narrow {
    width: min(calc(100% - 30px), var(--max));
  }

  .nav-shell {
    min-height: 70px;
  }

  .brand-copy small {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .primary-nav {
    position: fixed;
    inset: 70px 0 auto;
    display: grid;
    padding: 18px 20px 26px;
    border-bottom: 1px solid var(--line);
    background: rgba(9, 10, 13, 0.98);
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .primary-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .primary-nav a {
    padding: 13px;
  }

  .primary-nav .nav-cta {
    margin: 8px 0 0;
  }

  .hero-grid {
    padding-block: 56px 70px;
  }

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

  .hero-photo,
  .hero-visual::after {
    inset: 0 0 18% 0;
    width: 100%;
    height: 82%;
    border-radius: 70px 18px 70px 18px;
  }

  .market-panel {
    width: 90%;
    padding: 18px;
  }

  .briefing-layout,
  .audience-layout {
    grid-template-columns: 1fr;
  }

  .briefing-intro .big-number {
    margin-top: 32px;
  }

  .briefing-item {
    grid-template-columns: 52px 1fr;
    padding: 20px;
  }

  .briefing-item > span:last-child {
    display: none;
  }

  .briefing-icon {
    width: 48px;
    height: 48px;
  }

  .replay-shell {
    gap: 38px;
  }

  .value-grid,
  .principles {
    grid-template-columns: 1fr;
  }

  .value-item {
    min-height: auto;
  }

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

  .cta-inner {
    grid-template-columns: 1fr;
  }

  .policy-summary {
    grid-template-columns: 1fr;
    margin-top: -35px;
  }

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

  .data-table {
    display: block;
    overflow-x: auto;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 7px;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: 2.52rem;
  }

  h2 {
    font-size: 2rem;
  }

  .brand-copy strong {
    max-width: 150px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero-visual {
    min-height: 390px;
  }

  .market-panel {
    width: 96%;
  }

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

  .step {
    display: grid;
    grid-template-columns: 55px 1fr;
    gap: 18px;
  }

  .step-number {
    width: 50px;
    height: 50px;
    margin: 0;
    box-shadow: none;
  }

  .replay-board {
    padding: 16px;
  }

  .decision-top {
    flex-direction: column;
    gap: 3px;
  }

  .about-image-wrap {
    padding: 0 0 18px 18px;
  }

  .about-image-wrap img {
    aspect-ratio: 4 / 4.7;
  }

  .audience-item {
    grid-template-columns: 46px 1fr;
  }

  .policy-toc {
    grid-template-columns: 1fr;
  }

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

  .footer-brand {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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