@import url("https://fonts.googleapis.com/css2?family=Figtree:wght@400;500;600;700;800&family=Syne:wght@600;700;800&display=swap");

:root {
  --bg: #081018;
  --bg-soft: #0c1622;
  --panel: #121c2a;
  --panel-2: #172333;
  --ink: #e8eef4;
  --muted: #8b9aab;
  --copper: #e07a3a;
  --copper-2: #f0a05a;
  --teal: #2bb3a8;
  --line: rgba(232, 238, 244, .1);
  --deep: #05090f;
  --paper: #f4efe6;
  --paper-ink: #151b22;
  --shell: 1180px;
  --display: "Syne", "Segoe UI", sans-serif;
  --sans: "Figtree", "Segoe UI", ui-sans-serif, sans-serif;
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
.shell { width: min(calc(100% - 40px), var(--shell)); margin-inline: auto; }
.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 99;
  padding: 10px 16px;
  background: var(--copper);
  color: #1a0d06;
  border-radius: 4px;
  font-weight: 800;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(8, 16, 24, .92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.mast-bar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  color: #6f7f91;
  border-bottom: 1px solid var(--line);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.mast-bar b { color: var(--copper-2); }
.header-inner {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 4px;
  color: #1a0d06;
  font-family: var(--display);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: -.04em;
  background: linear-gradient(160deg, var(--copper-2), var(--copper));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .18);
}
.brand-name {
  font-family: var(--display);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -.03em;
}
.brand-name b { color: var(--copper-2); }
.desktop-nav {
  display: flex;
  gap: 26px;
  color: var(--muted);
  font-size: .86rem;
  font-weight: 700;
}
.desktop-nav a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}
.desktop-nav a:hover {
  color: var(--ink);
  border-bottom-color: var(--copper);
}
.header-cta {
  padding: 10px 16px;
  border-radius: 4px;
  color: #1a0d06;
  background: var(--copper);
  font-size: .8rem;
  font-weight: 800;
  white-space: nowrap;
  flex-shrink: 0;
}
.header-cta:hover { background: var(--copper-2); }
.header-cta .cta-short { display: none; }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  min-height: 720px;
  background: var(--deep);
}
.hero-sky {
  position: relative;
  min-height: 720px;
  overflow: hidden;
}
.hero-sky img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 70%;
  display: block;
  filter: saturate(.85) contrast(1.05);
}
.hero-sky::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 9, 15, .15), rgba(5, 9, 15, .55)),
    linear-gradient(180deg, rgba(5, 9, 15, .2), transparent 28%, rgba(5, 9, 15, .55));
}
.briefing-card {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 32px;
  z-index: 2;
  padding: 22px;
  border: 1px solid rgba(224, 122, 58, .35);
  border-radius: var(--radius);
  background: rgba(8, 16, 24, .78);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, .35);
}
.briefing-card header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  color: var(--copper-2);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .16em;
}
.briefing-score {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
.briefing-score strong {
  font-family: var(--display);
  font-size: clamp(3.4rem, 6vw, 4.6rem);
  font-weight: 800;
  line-height: .8;
  letter-spacing: -.06em;
}
.briefing-score strong span {
  color: var(--muted);
  font-size: .38em;
}
.briefing-score p {
  margin: 0;
  max-width: 140px;
  color: var(--muted);
  font-size: .72rem;
  text-align: right;
}
.briefing-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.briefing-list li {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 10px;
  align-items: center;
  padding-top: 8px;
  border-top: 1px solid var(--line);
  font-size: .78rem;
  font-weight: 700;
}
.briefing-list span {
  color: var(--copper-2);
  font-size: .62rem;
  font-weight: 800;
}
.briefing-list em {
  color: var(--teal);
  font-size: .62rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 64px 72px 56px;
  background:
    linear-gradient(180deg, rgba(23, 35, 51, .35), transparent 40%),
    var(--bg);
}
.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--copper-2);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hero .eyebrow {
  width: fit-content;
  padding: 7px 12px;
  color: var(--copper-2);
  border: 1px solid rgba(224, 122, 58, .35);
  border-radius: 4px;
  background: rgba(224, 122, 58, .08);
}
.hero .eyebrow i {
  width: 7px;
  height: 7px;
  background: var(--copper);
  box-shadow: 0 0 0 4px rgba(224, 122, 58, .18);
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin: 22px 0 20px;
  font-family: var(--display);
  font-size: clamp(2.8rem, 5.4vw, 4.8rem);
  font-weight: 750;
  line-height: .94;
  letter-spacing: -.045em;
}
.hero h1 em {
  font-style: normal;
  color: var(--copper-2);
}
.hero-lead {
  max-width: 540px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 4px;
  font-size: .84rem;
  font-weight: 800;
}
.button-primary,
.hero .button-primary {
  color: #1a0d06;
  background: var(--copper);
}
.button-primary:hover,
.hero .button-primary:hover { background: var(--copper-2); }
.button-secondary,
.hero .button-secondary {
  color: var(--ink);
  border: 1px solid var(--line);
  background: transparent;
}
.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  width: min(100%, 520px);
  margin-top: 42px;
  border-top: 1px solid var(--line);
}
.hero-proof div { padding: 16px 18px 0 0; }
.hero-proof strong {
  display: block;
  color: var(--teal);
  font-family: var(--display);
  font-size: 1.35rem;
}
.hero-proof span {
  color: #b7c4d1;
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .04em;
}

.desk-strip {
  border-block: 1px solid var(--line);
  background: var(--bg-soft);
}
.desk-grid {
  display: grid;
  grid-template-columns: 160px repeat(5, 1fr);
}
.desk-label {
  display: flex;
  align-items: center;
  padding: 22px 18px 22px 0;
  color: var(--copper-2);
  border-right: 1px solid var(--line);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .14em;
}
.desk-grid a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 92px;
  padding: 16px 18px;
  border-right: 1px solid var(--line);
  transition: background .2s ease, color .2s ease;
}
.desk-grid a:last-child { border-right: 0; }
.desk-grid a:hover { background: rgba(224, 122, 58, .1); color: var(--copper-2); }
.desk-grid small {
  color: var(--muted);
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .12em;
}
.desk-grid b {
  margin-top: 6px;
  font-size: .92rem;
  font-weight: 750;
}

.safety-lab {
  padding: 88px 0;
  background:
    linear-gradient(90deg, rgba(43, 179, 168, .07), transparent 42%),
    var(--bg);
}
.safety-split {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 56px;
  align-items: start;
}
.safety-copy .section-kicker { color: var(--teal); }
.safety-copy h2 {
  margin: 16px 0 18px;
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 750;
  line-height: .98;
  letter-spacing: -.04em;
}
.safety-copy p { max-width: 420px; color: var(--muted); }
.safety-copy > a {
  display: inline-flex;
  gap: 10px;
  margin-top: 22px;
  color: var(--teal);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  border-bottom: 1px solid var(--teal);
  padding-bottom: 4px;
}
.safety-checks { display: grid; gap: 10px; }
.safety-checks article {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 92px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}
.step-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 4px;
  color: #06221f;
  background: var(--teal);
  font-family: var(--display);
  font-weight: 800;
}
.safety-checks h3 {
  margin: 0 0 4px;
  font-size: 1.02rem;
}
.safety-checks p {
  margin: 0;
  color: var(--muted);
  font-size: .8rem;
}

.reading-room {
  padding: 96px 0 108px;
  background: var(--bg-soft);
}
.reading-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  margin-bottom: 36px;
}
.reading-head h2 {
  margin: 12px 0 0;
  font-family: var(--display);
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  font-weight: 750;
  letter-spacing: -.04em;
}
.reading-head p {
  max-width: 340px;
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
}
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(150px, auto);
  gap: 14px;
}
.lead-story {
  grid-column: span 2;
  grid-row: span 2;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  min-height: 320px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}
.lead-visual {
  display: grid;
  place-content: center;
  color: #1a0d06;
  background:
    linear-gradient(160deg, var(--copper-2), var(--copper));
}
.lead-visual span,
.lead-visual i,
.lead-visual small {
  display: block;
  text-align: center;
}
.lead-visual span { font-size: .68rem; font-weight: 800; letter-spacing: .18em; }
.lead-visual i {
  font-family: var(--display);
  font-size: clamp(3.4rem, 6vw, 5.2rem);
  font-style: normal;
  font-weight: 800;
  line-height: .9;
  letter-spacing: -.06em;
}
.lead-visual small { margin-top: 6px; font-size: .58rem; font-weight: 800; letter-spacing: .12em; }
.lead-content { display: flex; flex-direction: column; justify-content: center; padding: 32px; }
.story-label {
  color: var(--copper-2);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .12em;
}
.lead-content h3 {
  margin: 14px 0 12px;
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  font-weight: 750;
  line-height: 1.12;
}
.lead-content p { color: var(--muted); font-size: .9rem; }
.lead-content > b { margin-top: auto; color: var(--copper-2); font-size: .74rem; letter-spacing: .06em; text-transform: uppercase; }
.guide-card {
  display: flex;
  flex-direction: column;
  min-height: 220px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  transition: border-color .2s ease, transform .2s ease;
}
.guide-card:hover {
  border-color: rgba(224, 122, 58, .45);
  transform: translateY(-2px);
}
.guide-card span {
  color: var(--teal);
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .12em;
}
.guide-card h3 {
  margin: 14px 0 10px;
  font-size: 1.08rem;
  line-height: 1.25;
}
.guide-card p { color: var(--muted); font-size: .8rem; }
.guide-card b {
  margin-top: auto;
  color: #6f7f91;
  font-size: .68rem;
}

.topic-route {
  padding: 28px 0 72px;
  background: var(--bg);
}
.route-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 22px;
}
.route-head h2 {
  margin: 10px 0 0;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 750;
}
.route-head p { max-width: 360px; margin: 0; color: var(--muted); font-size: .86rem; }
.route-rail {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.route-rail a {
  display: flex;
  flex-direction: column;
  min-height: 168px;
  padding: 18px;
  border-right: 1px solid var(--line);
  background: var(--panel);
  transition: background .2s ease, color .2s ease;
}
.route-rail a:last-child { border-right: 0; }
.route-rail a:hover { background: var(--copper); color: #1a0d06; }
.route-rail i {
  font-family: var(--display);
  font-size: 1.1rem;
  font-style: normal;
  font-weight: 800;
  color: var(--copper-2);
}
.route-rail a:hover i { color: #1a0d06; }
.route-rail span {
  margin-top: auto;
  color: var(--muted);
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .12em;
}
.route-rail a:hover span { color: #5a3014; }
.route-rail b { margin-top: 8px; font-size: .95rem; line-height: 1.25; }

.editorial-manifesto {
  padding: 88px 0;
  color: var(--paper-ink);
  background: var(--paper);
}
.memo-head { max-width: 680px; margin-bottom: 36px; }
.memo-head .section-kicker { color: #9a4d1c; }
.memo-head h2 {
  margin: 12px 0 16px;
  font-family: var(--display);
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  font-weight: 750;
  letter-spacing: -.04em;
}
.memo-head a {
  color: #9a4d1c;
  font-size: .76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  border-bottom: 2px solid #9a4d1c;
  padding-bottom: 3px;
}
.memo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.memo-grid article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(21, 27, 34, .14);
  background: #fffdf8;
}
.memo-grid span {
  display: block;
  margin-bottom: 28px;
  color: var(--copper);
  font-family: var(--display);
  font-size: 1.8rem;
  font-weight: 800;
}
.memo-grid h3 { margin: 0 0 10px; font-size: 1.12rem; }
.memo-grid p { margin: 0; color: #5b6570; font-size: .82rem; }

.site-footer {
  padding-top: 0;
  color: #c5d0db;
  background: #05090f;
  border-top: 3px solid var(--copper);
}
.footer-topline {
  display: flex;
  justify-content: space-between;
  padding-block: 18px;
  color: #6f7f91;
  border-bottom: 1px solid var(--line);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .14em;
}
.footer-topline a { color: var(--copper-2); }
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1.7fr repeat(3, 1fr);
  gap: 48px;
  padding-block: 56px;
}
.footer-intro p { max-width: 380px; margin: 20px 0 0; color: #8b9aab; font-size: .78rem; }
.footer-logo { display: inline-flex; align-items: center; gap: 12px; }
.footer-logo span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  color: #1a0d06;
  background: var(--copper);
  font-family: var(--display);
  font-weight: 800;
}
.footer-logo b { color: var(--ink); font-family: var(--display); font-size: 1.18rem; }
.site-footer .footer-links { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.site-footer .footer-links b { margin-bottom: 6px; color: var(--copper-2); font-size: .58rem; letter-spacing: .14em; }
.site-footer .footer-links a { color: #9aabbb; font-size: .76rem; }
.site-footer .footer-links a:hover { color: var(--ink); }
.site-footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-block: 18px;
  color: #6f7f91;
  border-top: 1px solid var(--line);
  font-size: .64rem;
}

.card-tag { color: var(--copper-2); font-size: .63rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: #6f7f91;
  font-size: .7rem;
}

@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-sky { min-height: 420px; }
  .hero-copy { padding: 48px 0 56px; }
  .desk-grid { grid-template-columns: 1fr 1fr; }
  .desk-label { grid-column: 1 / -1; border-right: 0; border-bottom: 1px solid var(--line); padding: 16px 0; }
  .desk-grid a:nth-child(odd) { border-right: 0; }
  .safety-split, .reading-head, .route-head { grid-template-columns: 1fr; display: grid; }
  .bento { grid-template-columns: 1fr 1fr; }
  .lead-story { grid-column: 1 / -1; grid-row: auto; }
  .route-rail { grid-template-columns: 1fr 1fr 1fr; }
  .route-rail a:nth-child(3n) { border-right: 0; }
  .route-rail a:nth-child(n+4) { border-top: 1px solid var(--line); }
  .memo-grid { grid-template-columns: 1fr; }
  .site-footer .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-intro { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .shell { width: min(calc(100% - 22px), var(--shell)); }
  .desktop-nav { display: none; }
  .header-inner { min-height: 62px; gap: 10px; }
  .header-cta { padding: 8px 12px; font-size: .7rem; }
  .header-cta .cta-full { display: none; }
  .header-cta .cta-short { display: inline; }
  .mast-bar { font-size: .54rem; }
  .hero-sky { min-height: 360px; }
  .briefing-card { left: 14px; right: 14px; bottom: 14px; }
  .hero h1 { font-size: clamp(2.1rem, 10vw, 2.9rem); }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-proof { grid-template-columns: 1fr; }
  .desk-grid { grid-template-columns: 1fr; }
  .desk-grid a { border-right: 0; border-bottom: 1px solid var(--line); }
  .reading-room, .safety-lab, .editorial-manifesto { padding-block: 64px; }
  .lead-story { grid-template-columns: 1fr; }
  .lead-visual { min-height: 180px; }
  .bento { grid-template-columns: 1fr; }
  .lead-story { grid-row: auto; }
  .route-rail { grid-template-columns: 1fr; }
  .route-rail a { min-height: 108px; border-right: 0; border-bottom: 1px solid var(--line); }
  .route-rail a:last-child { border-bottom: 0; }
  .site-footer .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px 16px; }
  .site-footer .footer-bottom, .footer-topline { flex-direction: column; align-items: flex-start; gap: 8px; }
}

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