:root {
  color-scheme: light;
  --paper: #f5f3ee;
  --paper-strong: #e8e4dc;
  --surface: #ffffff;
  --surface-soft: #fffdf7;
  --ink: #111111;
  --ink-soft: #4a4a4a;
  --muted: #7a7a7a;
  --line: #d5cfc5;
  --green: #21483e;
  --green-soft: #edf3ef;
  --gold: #b8942e;
  --gold-dark: #8c6d1f;
  --gold-soft: #ead9a8;
  --red: #dc2626;
  --red-soft: #f3dedb;
  --blue: #2e5a7d;
  --shadow: 0 22px 60px rgba(31, 36, 31, 0.12);
  --shadow-soft: 0 10px 28px rgba(31, 36, 31, 0.08);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::selection {
  background: var(--gold-soft);
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

main {
  min-height: 68vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(216, 213, 201, 0.9);
  background: rgba(245, 241, 232, 0.92);
  backdrop-filter: blur(14px);
}

.nav-wrap,
.mobile-nav,
.footer-grid,
.copyright,
.content-section,
.page-hero,
.article-page {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.nav-wrap {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--paper);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
  font-weight: 800;
}

.brand-mark.small {
  width: 32px;
  height: 32px;
  font-size: 11px;
}

.brand-text {
  display: grid;
  gap: 0;
}

.brand-text strong,
.footer-brand strong {
  font-size: 17px;
  font-weight: 800;
}

.brand-text small,
.footer-brand p {
  color: var(--muted);
  font-size: 12px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.desktop-nav a,
.mobile-nav a {
  border-radius: var(--radius);
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 650;
  transition: color 160ms ease, background 160ms ease;
}

.desktop-nav a {
  padding: 9px 13px;
}

.desktop-nav a:hover,
.desktop-nav a.active,
.mobile-nav a:hover,
.mobile-nav a.active {
  background: var(--paper-strong);
  color: var(--ink);
}

.icon-button {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
}

.icon-button svg,
.button svg,
.text-link svg,
.quick-icon svg,
.search-box svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mobile-menu-button {
  display: none;
}

.mobile-nav {
  padding: 0 0 14px;
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a {
  display: block;
  padding: 12px;
}

.home-hero {
  position: relative;
  overflow: hidden;
  background: var(--paper);
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(184, 148, 46, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 148, 46, 0.045) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 58% 58% at 50% 38%, #000 18%, transparent 72%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 40px));
  margin-inline: auto;
  padding: 40px 0 34px;
  color: var(--ink);
  text-align: center;
}

.hero-logo {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--ink);
  box-shadow: 0 16px 34px rgba(17, 17, 17, 0.16);
  color: var(--paper);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 24px;
  font-weight: 850;
  margin-bottom: 16px;
}

.eyebrow,
.section-title span,
.article-meta,
.back-link,
.level-badge,
.mood,
.panel-title-row span,
.compliance-panel-text > span {
  color: var(--gold);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
  font-weight: 800;
}

.hero-content h1,
.page-hero h1,
.article-page h1 {
  margin: 12px 0 18px;
  font-size: 44px;
  line-height: 1.12;
  font-weight: 850;
  max-width: 760px;
}

.hero-number {
  position: relative;
  display: inline-block;
  width: 1.18em;
  text-align: center;
}

.hero-number::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.13em;
  height: 0.2em;
  border-radius: 999px;
  background: rgba(184, 148, 46, 0.25);
  z-index: -1;
}

.hero-content p,
.page-hero p,
.article-page header p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.65;
}

.hero-content p + p {
  margin-top: 4px;
}

.hero-content small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius);
  padding: 0 18px;
  border: 1px solid rgba(255, 253, 250, 0.26);
  font-size: 14px;
  font-weight: 750;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button.primary {
  border-color: var(--gold);
  background: var(--gold);
  color: #111;
}

.button.ghost {
  background: rgba(255, 253, 250, 0.1);
  color: #fffdfa;
}

.content-section {
  padding: 38px 0 60px;
}

.content-section.first {
  padding-top: 28px;
}

.content-section.compact {
  padding-top: 0;
  padding-bottom: 78px;
}

.section-title {
  display: grid;
  grid-template-columns: minmax(48px, 1fr) auto minmax(48px, 1fr);
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  text-align: center;
}

.section-title::before,
.section-title::after {
  content: "";
  height: 1px;
  background: var(--line);
}

.section-title h2,
.section-title p {
  grid-column: 1 / -1;
}

.section-title h2 {
  margin: 8px 0 8px;
  font-size: 30px;
  line-height: 1.2;
}

.section-title p {
  max-width: 690px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 15px;
}

.roadmap-preview {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
}

.road-line {
  position: absolute;
  left: 7%;
  right: 7%;
  top: 28px;
  height: 3px;
  background: linear-gradient(90deg, var(--line), var(--gold), var(--green), var(--line));
  border-radius: 999px;
}

.road-node {
  position: relative;
  min-height: 132px;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 7px;
  text-align: center;
}

.road-node:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 20px;
  right: -8px;
  color: var(--gold);
  font-size: 18px;
  font-weight: 800;
}

.road-node > span {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  color: var(--ink-soft);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
  font-weight: 850;
  transition: border-color 160ms ease, transform 160ms ease;
}

.road-node:hover > span {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.road-node strong {
  font-size: 14px;
  line-height: 1.25;
}

.road-node small,
.road-node em {
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
}

.center-action {
  margin-top: 6px;
  text-align: center;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-dark);
  font-weight: 750;
}

.quick-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.quick-card,
.article-row,
.stat-card,
.panel,
.daily-card,
.record-card,
.phone-card,
.principle-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.quick-card {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  transition: transform 160ms ease, border-color 160ms ease;
}

.quick-card:hover,
.article-row:hover {
  border-color: rgba(184, 138, 47, 0.58);
  transform: translateY(-2px);
}

.quick-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--gold-dark);
}

.quick-card strong {
  font-size: 14px;
}

.quick-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.page-hero {
  padding: 74px 0 36px;
}

.page-hero.narrow,
.article-page {
  max-width: 840px;
}

.page-hero.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
}

.page-hero h1,
.article-page h1 {
  color: var(--ink);
}

.page-hero p,
.article-page header p {
  color: var(--ink-soft);
}

.back-link {
  display: inline-flex;
  margin-bottom: 10px;
}

.level-tabs,
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.level-tabs a,
.filter-bar button {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink-soft);
  padding: 0 12px;
  font-size: 13px;
  font-weight: 750;
}

.filter-bar button.active,
.filter-bar button:hover,
.level-tabs a:hover {
  border-color: var(--green);
  background: var(--green);
  color: #fffdfa;
}

.levels-stack,
.daily-stack,
.tools-stack,
.record-list {
  display: grid;
  gap: 20px;
}

.level-panel {
  scroll-margin-top: 92px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 26px;
  box-shadow: var(--shadow-soft);
}

.level-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.level-badge {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: var(--gold-soft);
  color: var(--ink);
}

.level-head h2,
.panel h2,
.daily-head h2,
.phone-card h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.25;
}

.level-head p {
  margin: 6px 0 0;
  color: var(--ink-soft);
}

.level-head > strong {
  color: var(--green);
}

.level-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  padding-top: 22px;
}

.level-group h3 {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 13px;
}

.route-item {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(216, 213, 201, 0.72);
  color: var(--ink);
  font-size: 15px;
}

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

.route-item:hover {
  color: var(--green);
}

.route-item small {
  flex: 0 0 auto;
  color: var(--muted);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
}

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

.daily-card {
  padding: 26px;
}

.daily-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.daily-head time {
  color: var(--muted);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 13px;
}

.mood {
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  background: var(--gold-soft);
  color: var(--ink);
  padding: 7px 10px;
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.metric-tile {
  min-height: 100px;
  display: grid;
  align-content: center;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
  padding: 14px;
}

.metric-tile span,
.stat-card span,
.record-numbers span,
.fact-list span {
  color: var(--muted);
  font-size: 12px;
}

.metric-tile strong {
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 17px;
}

.metric-tile small,
.mover-row em,
.record-numbers strong,
.record-numbers dd,
.stat-card strong {
  font-family: "SFMono-Regular", Consolas, monospace;
  font-style: normal;
}

.is-up {
  color: #1d7a49;
}

.is-down {
  color: var(--red);
}

.daily-block {
  margin-top: 24px;
}

.daily-block h3 {
  margin: 0 0 10px;
  font-size: 15px;
}

.daily-block p,
.record-main p,
.compliance-panel-text p,
.phone-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.75;
}

.mover-list {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.mover-row {
  min-height: 48px;
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) 84px;
  align-items: center;
  gap: 12px;
  padding: 0 14px;
  background: var(--surface-soft);
  border-bottom: 1px solid var(--line);
}

.mover-row:last-child {
  border-bottom: 0;
}

.mover-row span {
  color: var(--ink-soft);
  overflow-wrap: anywhere;
}

.daily-card blockquote {
  margin: 24px 0 0;
  border-left: 3px solid var(--gold);
  background: var(--surface-soft);
  padding: 14px 16px;
  color: var(--ink-soft);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.tag-row span {
  border-radius: var(--radius);
  background: var(--green-soft);
  color: var(--green);
  padding: 5px 8px;
  font-size: 12px;
  font-weight: 700;
}

.updated-pill {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--green);
  padding: 14px 16px;
  font-weight: 800;
  box-shadow: var(--shadow-soft);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}

.stat-card {
  min-height: 118px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 22px;
}

.stat-card strong {
  font-size: 26px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 20px;
}

.panel {
  padding: 24px;
  min-width: 0;
}

.fact-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.fact-list div {
  display: grid;
  gap: 4px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}

.fact-list div:last-child {
  border-bottom: 0;
}

.chart-wrap {
  margin-top: 14px;
  overflow: hidden;
}

.chart-wrap svg {
  width: 100%;
  height: auto;
  min-height: 240px;
}

.chart-wrap .axis {
  fill: none;
  stroke: var(--line);
  stroke-width: 2;
}

.chart-wrap .line {
  fill: none;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.chart-wrap .total {
  stroke: var(--green);
}

.chart-wrap .principal {
  stroke: var(--gold);
  stroke-dasharray: 7 8;
}

.chart-wrap circle {
  fill: var(--green);
  stroke: var(--surface);
  stroke-width: 4;
}

.chart-wrap text {
  fill: var(--muted);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 13px;
  text-anchor: middle;
}

.legend {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 13px;
}

.legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.legend i {
  width: 18px;
  height: 3px;
  border-radius: 999px;
}

.legend-total {
  background: var(--green);
}

.legend-principal {
  background: var(--gold);
}

.records-section {
  margin-top: 56px;
}

.record-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 24px;
  padding: 24px;
}

.record-main span {
  color: var(--gold);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
  font-weight: 800;
}

.record-main h3 {
  margin: 7px 0 10px;
  font-size: 20px;
}

.record-numbers {
  border-left: 1px solid var(--line);
  padding-left: 24px;
}

.record-numbers > strong {
  display: block;
  font-size: 26px;
  line-height: 1.15;
}

.record-numbers dl {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
}

.record-numbers dl div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.record-numbers dt {
  color: var(--muted);
}

.record-numbers dd {
  margin: 0;
  font-weight: 800;
}

.panel-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.table-panel h2 {
  margin-bottom: 16px;
}

.table-scroll {
  max-width: 100%;
  overflow-x: auto;
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-size: 14px;
}

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 13px 12px;
  text-align: left;
  vertical-align: middle;
}

th {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.strong-cell {
  color: var(--ink);
  font-weight: 800;
}

.compliance-panel-text {
  border-left: 4px solid var(--gold);
  background: linear-gradient(135deg, var(--surface), #fbf0d5);
}

.compliance-panel-text h2 {
  margin: 8px 0 14px;
}

.compliance-panel-text p + p {
  margin-top: 10px;
}

.phone-grid,
.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.phone-card {
  padding: 22px;
}

.phone-card strong {
  display: block;
  margin: 12px 0 6px;
  color: var(--green);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 24px;
}

.blog-tools {
  display: grid;
  gap: 18px;
}

.search-box {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--muted);
  padding: 0 14px;
}

.search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}

.article-list {
  display: grid;
  gap: 14px;
}

.home-list {
  max-width: 900px;
  margin-inline: auto;
}

.article-row {
  transition: transform 160ms ease, border-color 160ms ease;
}

.article-row[hidden] {
  display: none;
}

.article-row a {
  display: grid;
  gap: 9px;
  padding: 22px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
}

.article-row h2 {
  margin: 0;
  font-size: 21px;
}

.article-row p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.article-page {
  padding: 72px 0 28px;
}

.article-page header {
  border-bottom: 1px solid var(--line);
  padding-bottom: 28px;
}

.article-body {
  padding: 34px 0 12px;
}

.article-body p {
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.9;
}

.article-note {
  border-left: 3px solid var(--gold);
  background: var(--surface);
  color: var(--ink-soft);
  padding: 15px 17px;
}

.related-section {
  padding-top: 34px;
}

.about-visual {
  width: min(420px, 38vw);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.principle-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.principle-card {
  min-height: 150px;
  padding: 20px;
}

.principle-card span {
  color: var(--gold);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-weight: 850;
}

.principle-card p {
  margin: 20px 0 0;
  color: var(--ink-soft);
}

.site-footer {
  margin-top: 60px;
  border-top: 1px solid var(--line);
  background: rgba(235, 229, 216, 0.64);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr 1fr;
  gap: 36px;
  padding: 44px 0 30px;
}

.site-footer h2 {
  margin: 0 0 10px;
  font-size: 14px;
}

.site-footer p,
.footer-links a {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.footer-links {
  display: grid;
  gap: 7px;
}

.footer-links a:hover {
  color: var(--ink);
}

.copyright {
  border-top: 1px solid var(--line);
  padding: 20px 0 26px;
  color: var(--muted);
  text-align: center;
  font-size: 12px;
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu-button {
    display: inline-flex;
  }

  .hero-content h1,
  .page-hero h1,
  .article-page h1 {
    font-size: 38px;
  }

  .stats-grid,
  .market-grid,
  .principle-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portfolio-grid,
  .page-hero.split,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .page-hero.split {
    align-items: start;
  }

  .about-visual {
    width: min(520px, 100%);
  }

  .record-card {
    grid-template-columns: 1fr;
  }

  .record-numbers {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 20px 0 0;
  }
}

@media (max-width: 680px) {
  .nav-wrap,
  .mobile-nav,
  .footer-grid,
  .copyright,
  .content-section,
  .page-hero,
  .article-page {
    width: min(100% - 28px, 1120px);
  }

  .brand-text small {
    display: none;
  }

  .hero-content {
    width: min(100% - 28px, 1120px);
    padding: 38px 0 28px;
  }

  .hero-content h1,
  .page-hero h1,
  .article-page h1 {
    font-size: 31px;
  }

  .hero-content p,
  .page-hero p,
  .article-page header p,
  .article-body p {
    font-size: 16px;
  }

  .content-section {
    padding: 50px 0;
  }

  .section-title h2 {
    font-size: 25px;
  }

  .roadmap-preview,
  .stats-grid,
  .market-grid,
  .level-groups,
  .phone-grid,
  .principle-grid {
    grid-template-columns: 1fr;
  }

  .roadmap-preview {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 28px;
  }

  .road-line {
    display: none;
  }

  .road-node {
    min-height: 132px;
    justify-items: center;
    align-items: start;
    text-align: center;
  }

  .road-node > span {
    grid-row: auto;
  }

  .road-node:not(:last-child)::after {
    display: none;
  }

  .level-panel,
  .daily-card,
  .panel,
  .record-card {
    padding: 18px;
  }

  .level-head {
    grid-template-columns: 1fr;
  }

  .daily-head {
    flex-direction: column;
  }

  .mover-row {
    grid-template-columns: 68px minmax(0, 1fr);
    padding-block: 11px;
  }

  .mover-row em {
    grid-column: 2;
  }

  .stat-card {
    min-height: 96px;
  }

  .stat-card strong {
    font-size: 23px;
  }

  .record-numbers dl div {
    display: grid;
  }

  .hero-actions,
  .button {
    width: 100%;
  }
}
