:root {
  color-scheme: light;
  --paper: #fbfaf7;
  --ink: #14161b;
  --muted: #74716b;
  --soft: #efebe3;
  --line: #dfd9ce;
  --blue: #245bdb;
  --white: #fffaf0;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
}

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

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100vw - 40px));
  margin: 0 auto;
}

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

.brand {
  font-family: ui-serif, "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

nav,
.site-footer div,
.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

nav a,
.site-footer a,
.text-link {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

nav a[aria-current="page"],
nav a:hover,
.site-footer a:hover,
.text-link:hover {
  color: var(--blue);
}

.hero {
  position: relative;
  min-height: min(760px, 88svh);
  overflow: hidden;
  display: grid;
  align-items: end;
  margin-bottom: 0;
  background: #030304;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  opacity: 0.68;
  filter: saturate(0.72) contrast(1.12);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.42) 56%, rgba(0, 0, 0, 0.72)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.84), transparent 44%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100vw - 40px));
  margin: 0 auto;
  padding: 84px 0 72px;
}

.kicker,
.eyebrow {
  margin: 0;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: ui-serif, "Hiragino Mincho ProN", "Yu Mincho", serif;
  letter-spacing: 0;
}

.hero h1 {
  margin: 22px 0 0;
  color: var(--white);
  font-size: clamp(58px, 12vw, 148px);
  line-height: 0.88;
}

.hero-copy {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(255, 250, 240, 0.78);
  font-size: clamp(16px, 2.2vw, 21px);
  line-height: 1.9;
  font-weight: 600;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  margin-top: 28px;
  border: 1px solid rgba(255, 250, 240, 0.36);
  color: var(--white);
  background: rgba(36, 91, 219, 0.86);
  font-size: 13px;
  font-weight: 900;
}

.hero .text-link {
  margin-top: 28px;
  color: rgba(255, 250, 240, 0.76);
}

.section {
  width: min(1180px, calc(100vw - 40px));
  margin: 0 auto;
  padding: 68px 0;
  border-bottom: 1px solid var(--line);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: start;
}

.section h2 {
  margin: 14px 0 0;
  font-size: clamp(34px, 6vw, 76px);
  line-height: 1.02;
}

.section p,
.legal p {
  color: var(--muted);
  font-size: 16px;
  line-height: 2;
}

.issue-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  background: var(--line);
  border: 1px solid var(--line);
}

.issue-strip article {
  min-height: 220px;
  padding: 28px;
  background: var(--paper);
}

.issue-strip span {
  font-family: ui-serif, "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 28px;
  font-weight: 900;
}

.issue-strip p {
  margin: 28px 0 0;
}

.split-text {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  border-bottom: 0;
}

.legal {
  width: min(880px, calc(100vw - 40px));
  margin: 0 auto;
  padding: 72px 0 80px;
}

.legal h1 {
  margin: 14px 0 0;
  font-size: clamp(44px, 9vw, 94px);
  line-height: 0.95;
}

.lead {
  max-width: 720px;
  margin: 28px 0 0;
}

.legal section {
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.legal h2 {
  margin: 0;
  font-size: 26px;
}

.legal section p {
  margin: 12px 0 0;
}

.legal a {
  color: var(--blue);
  font-weight: 800;
}

.site-footer {
  padding: 26px 0 34px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

@media (max-width: 760px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .hero {
    min-height: 78svh;
  }

  .hero-inner {
    padding: 64px 0 46px;
  }

  .intro-grid,
  .issue-strip {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 48px 0;
  }

  .issue-strip {
    gap: 0;
  }

  .issue-strip article {
    min-height: 0;
  }
}
