:root {
  --ink: #101416;
  --muted: #66727a;
  --paper: #f7f4ec;
  --surface: #fffdf8;
  --panel: #141b1f;
  --line: rgba(16, 20, 22, 0.12);
  --green: #135747;
  --cyan: #3aa8b8;
  --coral: #e45d41;
  --amber: #f0b443;
  --violet: #7668d9;
  --blue: #2d648c;
  --shadow: 0 26px 80px rgba(16, 20, 22, 0.16);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", "Noto Sans KR", system-ui, sans-serif;
  line-height: 1.55;
}

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

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

button {
  cursor: pointer;
}

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(247, 244, 236, 0.9);
  border-bottom: 1px solid var(--line);
  display: flex;
  height: 72px;
  justify-content: space-between;
  left: 0;
  padding: 0 clamp(18px, 4vw, 54px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 30;
}

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

.brand-mark {
  align-items: center;
  aspect-ratio: 1;
  background: var(--ink);
  border: 2px solid var(--amber);
  border-radius: 8px;
  color: var(--amber);
  display: grid;
  flex: 0 0 42px;
  font-weight: 900;
  place-items: center;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.12;
}

.brand small {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.desktop-nav,
.header-tools {
  align-items: center;
  display: flex;
}

.desktop-nav {
  gap: clamp(16px, 2vw, 28px);
  font-size: 0.92rem;
  font-weight: 800;
}

.desktop-nav a {
  color: rgba(16, 20, 22, 0.68);
}

.desktop-nav a:hover {
  color: var(--green);
}

.header-tools {
  gap: 12px;
}

.language-toggle {
  background: #ece7db;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: inline-grid;
  gap: 3px;
  grid-template-columns: repeat(2, 1fr);
  padding: 3px;
}

.language-toggle button {
  background: transparent;
  border: 0;
  border-radius: 6px;
  color: rgba(16, 20, 22, 0.6);
  font-size: 0.78rem;
  font-weight: 800;
  min-height: 30px;
  min-width: 38px;
}

.language-toggle button.is-active {
  background: var(--surface);
  color: var(--green);
  box-shadow: 0 4px 12px rgba(16, 20, 22, 0.08);
}

.menu-button {
  background: transparent;
  border: 0;
  display: none;
  height: 42px;
  padding: 8px;
  width: 42px;
}

.menu-button span {
  background: var(--ink);
  display: block;
  height: 2px;
  margin: 5px 0;
  width: 100%;
}

.mobile-nav {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  display: none;
  left: 0;
  padding: 86px 24px 18px;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
}

.mobile-nav a {
  display: block;
  font-weight: 800;
  padding: 10px 0;
}

.hero {
  align-items: center;
  display: grid;
  gap: clamp(30px, 5vw, 76px);
  grid-template-columns: minmax(0, 0.86fr) minmax(400px, 1.14fr);
  min-height: 100svh;
  overflow: hidden;
  padding: 112px clamp(22px, 5vw, 72px) 48px;
  position: relative;
}

.hero::before {
  background:
    radial-gradient(circle at 20% 18%, rgba(58, 168, 184, 0.22), transparent 28%),
    radial-gradient(circle at 88% 24%, rgba(118, 104, 217, 0.16), transparent 26%),
    linear-gradient(125deg, rgba(19, 87, 71, 0.09), transparent 45%);
  content: "";
  inset: 0;
  position: absolute;
  z-index: -1;
}

.eyebrow {
  color: var(--coral);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(2.65rem, 5.8vw, 5.5rem);
  letter-spacing: 0;
  line-height: 1.04;
  margin-bottom: 24px;
  max-width: 820px;
  word-break: keep-all;
}

h2 {
  font-size: clamp(1.9rem, 3.7vw, 3.65rem);
  letter-spacing: 0;
  line-height: 1.1;
  margin-bottom: 18px;
  word-break: keep-all;
}

h3 {
  font-size: 1.05rem;
  line-height: 1.25;
  margin-bottom: 8px;
}

.hero-copy p:not(.eyebrow),
.section-heading p,
.planner-copy p,
.about-grid p,
.community-heading p {
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  max-width: 720px;
  word-break: keep-all;
}

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

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  transition: background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

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

.button.primary {
  background: var(--green);
  color: white;
}

.button.secondary {
  background: var(--surface);
  border-color: var(--line);
  color: var(--green);
}

.hero-stats {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, 1fr);
  margin: 34px 0 0;
  max-width: 640px;
}

.hero-stats div {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.hero-stats dt {
  font-size: 1.4rem;
  font-weight: 900;
}

.hero-stats dd {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  margin: 0;
  text-transform: uppercase;
}

.hero-terminal,
.world-panel,
.event-panel,
.control-panel,
.results-panel,
.detail-panel,
.planner-card,
.method-card {
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-terminal {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: white;
  min-height: 590px;
  overflow: hidden;
  padding: clamp(18px, 3vw, 28px);
  position: relative;
}

.hero-terminal::before,
.world-map::before {
  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: 34px 34px;
  content: "";
  inset: 0;
  position: absolute;
}

.terminal-bar,
.terminal-feed,
.mini-map {
  position: relative;
  z-index: 1;
}

.terminal-bar {
  align-items: center;
  display: flex;
  gap: 10px;
}

.terminal-bar small {
  color: rgba(255, 255, 255, 0.55);
  margin-left: auto;
}

.live-dot {
  background: #78e09d;
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(120, 224, 157, 0.13);
  height: 10px;
  width: 10px;
}

.mini-map {
  height: 300px;
  margin: 34px 0 22px;
}

.map-continent {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 45% 55% 38% 62%;
  position: absolute;
}

.americas {
  height: 160px;
  left: 8%;
  top: 72px;
  transform: rotate(-18deg);
  width: 130px;
}

.europe {
  height: 86px;
  left: 44%;
  top: 72px;
  width: 118px;
}

.asia {
  height: 154px;
  right: 8%;
  top: 82px;
  transform: rotate(10deg);
  width: 210px;
}

.africa {
  height: 140px;
  left: 48%;
  top: 150px;
  transform: rotate(12deg);
  width: 120px;
}

.map-ping {
  background: var(--tone);
  border: 3px solid rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  height: 16px;
  left: var(--x);
  position: absolute;
  top: var(--y);
  transform: translate(-50%, -50%);
  width: 16px;
}

.map-ping::after {
  animation: ping 1.9s infinite;
  border: 1px solid var(--tone);
  border-radius: inherit;
  content: "";
  inset: -12px;
  position: absolute;
}

.map-ping.hot {
  height: 20px;
  width: 20px;
}

.terminal-feed {
  display: grid;
  gap: 12px;
}

.terminal-feed article {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  padding: 16px;
}

.terminal-feed span,
.terminal-feed small {
  color: rgba(255, 255, 255, 0.62);
  display: block;
  font-size: 0.78rem;
}

.terminal-feed strong {
  display: block;
  margin: 7px 0;
}

@keyframes ping {
  0% {
    opacity: 0.9;
    transform: scale(0.65);
  }
  100% {
    opacity: 0;
    transform: scale(2.2);
  }
}

.trust-strip {
  align-items: center;
  background: var(--ink);
  color: white;
  display: flex;
  gap: 14px;
  justify-content: center;
  padding: 15px clamp(22px, 5vw, 72px);
  text-align: center;
}

.trust-strip span {
  color: rgba(255, 255, 255, 0.7);
}

.section {
  margin: 0 auto;
  max-width: 1260px;
  padding: clamp(70px, 9vw, 118px) clamp(22px, 4vw, 44px);
}

.section-heading {
  max-width: 880px;
}

.radar-section,
.app-section {
  max-width: none;
}

.radar-section .section-heading,
.radar-workspace,
.app-heading,
.lens-layout {
  margin-left: auto;
  margin-right: auto;
  max-width: 1260px;
}

.radar-workspace {
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1.45fr) minmax(340px, 0.55fr);
  margin-top: 34px;
}

.world-panel,
.event-panel,
.control-panel,
.results-panel,
.detail-panel,
.planner-card,
.method-card {
  background: var(--surface);
  border: 1px solid var(--line);
}

.world-panel {
  overflow: hidden;
}

.map-header {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding: 18px 20px;
}

.map-header span,
.event-kicker,
.filter-group > span,
.mini-brief span,
.results-header span,
.stock-card span,
.detail-meta span,
.engine-grid span,
.impact-list span {
  color: var(--coral);
  display: block;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-header strong,
.results-header strong {
  display: block;
  font-size: 1.32rem;
}

.icon-button {
  aspect-ratio: 1;
  background: var(--ink);
  border: 0;
  border-radius: 8px;
  color: white;
  font-size: 1.15rem;
  font-weight: 900;
  width: 42px;
}

.world-map {
  background:
    radial-gradient(circle at 24% 45%, rgba(58, 168, 184, 0.16), transparent 14%),
    radial-gradient(circle at 68% 46%, rgba(228, 93, 65, 0.18), transparent 16%),
    linear-gradient(145deg, #172126, #101416);
  color: white;
  min-height: 540px;
  overflow: hidden;
  position: relative;
}

.world-map .map-continent {
  background: rgba(255, 255, 255, 0.09);
}

.event-pin {
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border: 2px solid var(--tone);
  border-radius: 999px;
  color: var(--ink);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 900;
  gap: 8px;
  left: var(--x);
  min-height: 38px;
  padding: 7px 11px;
  position: absolute;
  top: var(--y);
  transform: translate(-50%, -50%);
  z-index: 2;
}

.event-pin::before {
  background: var(--tone);
  border-radius: 50%;
  content: "";
  height: 10px;
  width: 10px;
}

.event-pin.is-active,
.event-pin:hover,
.event-pin:focus-visible {
  background: var(--tone);
  color: white;
  outline: none;
}

.event-panel {
  align-self: stretch;
  display: grid;
  overflow: hidden;
}

.event-top {
  background: var(--panel);
  color: white;
  padding: 24px;
}

.event-top p {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 0;
}

.severity {
  align-items: center;
  display: flex;
  gap: 8px;
  margin-top: 18px;
}

.severity i {
  background: var(--tone);
  border-radius: 999px;
  display: block;
  height: 10px;
  width: 10px;
}

.impact-list {
  display: grid;
  gap: 14px;
  padding: 20px;
}

.impact-list article {
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
}

.impact-list article:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.impact-list strong {
  display: block;
  margin-top: 4px;
}

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

.signals-section {
  border-top: 1px solid var(--line);
}

.engine-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 34px;
}

.engine-grid article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 220px;
  padding: 22px;
}

.engine-grid span {
  color: var(--blue);
  font-size: 1.05rem;
}

.engine-grid p,
.stock-card p,
.detail-body p,
.detail-body ul,
.workflow-list p,
.planner-output {
  color: var(--muted);
}

.app-heading {
  align-items: end;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.45fr);
}

.lens-layout {
  display: grid;
  gap: 16px;
  grid-template-columns: 280px minmax(360px, 0.95fr) minmax(320px, 0.75fr);
  margin-top: 34px;
}

.control-panel {
  align-self: start;
  display: grid;
  gap: 22px;
  padding: 20px;
  position: sticky;
  top: 92px;
}

label {
  color: var(--ink);
  display: grid;
  font-size: 0.84rem;
  font-weight: 900;
  gap: 8px;
}

input,
select,
textarea {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  min-height: 44px;
  padding: 11px 12px;
}

textarea {
  resize: vertical;
}

select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position: calc(100% - 17px) 19px, calc(100% - 12px) 19px;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
  padding-right: 34px;
}

.segmented {
  background: #ece7db;
  border-radius: 8px;
  display: grid;
  gap: 4px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 10px;
  padding: 4px;
}

.segmented button,
.chip-list button {
  border: 0;
  border-radius: 7px;
  font-weight: 900;
}

.segmented button {
  background: transparent;
  color: rgba(16, 20, 22, 0.62);
  min-height: 38px;
}

.segmented button.is-active {
  background: var(--surface);
  color: var(--green);
  box-shadow: 0 6px 18px rgba(16, 20, 22, 0.08);
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.chip-list button {
  background: white;
  border: 1px solid var(--line);
  color: var(--green);
  min-height: 34px;
  padding: 6px 10px;
}

.chip-list button.is-active {
  background: var(--green);
  color: white;
}

.mini-brief {
  background: #eee7da;
  border-radius: 8px;
  padding: 16px;
}

.mini-brief strong {
  display: block;
  line-height: 1.25;
  margin: 8px 0;
}

.mini-brief p {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
}

.results-panel {
  min-height: 680px;
  padding: 18px;
}

.results-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}

.stock-grid {
  display: grid;
  gap: 12px;
}

.stock-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  padding: 16px;
  text-align: left;
  transition: border 160ms ease, transform 160ms ease, box-shadow 160ms ease;
  width: 100%;
}

.stock-card:hover,
.stock-card.is-active {
  border-color: rgba(19, 87, 71, 0.42);
  box-shadow: 0 12px 30px rgba(16, 20, 22, 0.08);
  transform: translateY(-1px);
}

.stock-main {
  align-items: start;
  display: flex;
  gap: 14px;
  justify-content: space-between;
}

.ticker {
  background: var(--ink);
  border-radius: 8px;
  color: white;
  display: inline-grid;
  font-weight: 900;
  min-width: 64px;
  padding: 8px 10px;
  place-items: center;
}

.stock-card h3 {
  font-size: 1.2rem;
  margin: 0;
}

.stock-card p {
  margin: 0;
}

.meter {
  background: #ebe5d8;
  border-radius: 999px;
  height: 9px;
  overflow: hidden;
}

.meter span {
  background: linear-gradient(90deg, var(--green), var(--amber), var(--coral));
  display: block;
  height: 100%;
  width: var(--score);
}

.detail-panel {
  align-self: start;
  min-height: 680px;
  overflow: hidden;
  position: sticky;
  top: 92px;
}

.detail-top {
  background: var(--panel);
  color: white;
  padding: 24px;
}

.detail-top p {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 0;
}

.detail-meta {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 20px;
}

.detail-meta div {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 12px;
}

.detail-body {
  display: grid;
  gap: 18px;
  padding: 22px;
}

.detail-body section {
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}

.detail-body section:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.detail-body ul {
  margin: 8px 0 0;
  padding-left: 18px;
}

.method-section,
.about-section,
.community-section {
  max-width: none;
}

.method-card,
.about-grid {
  display: grid;
  gap: 36px;
  grid-template-columns: 0.75fr 1.25fr;
  margin: 0 auto;
  max-width: 1260px;
  padding: clamp(28px, 5vw, 54px);
}

.workflow-list {
  display: grid;
  gap: 16px;
}

.workflow-list article {
  border-left: 4px solid var(--amber);
  padding-left: 18px;
}

.workflow-list strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.planner-section {
  align-items: start;
  display: grid;
  gap: 34px;
  grid-template-columns: 0.82fr 1.18fr;
}

.planner-card {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.planner-output {
  background: #eee7da;
  border-radius: 8px;
  display: none;
  padding: 16px;
}

.planner-output.is-visible {
  display: block;
}

.planner-output strong {
  color: var(--ink);
  display: block;
  margin-bottom: 8px;
}

.community-section {
  border-top: 1px solid var(--line);
}

.community-heading,
.community-layout {
  margin-left: auto;
  margin-right: auto;
  max-width: 1260px;
}

.community-heading {
  align-items: end;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) 190px;
}

.community-summary {
  background: var(--ink);
  border-radius: 8px;
  color: white;
  min-height: 140px;
  padding: 22px;
}

.community-summary strong {
  display: block;
  font-size: 3rem;
  line-height: 1;
}

.community-summary span {
  color: rgba(255, 255, 255, 0.7);
  display: block;
  font-weight: 800;
  margin-top: 10px;
}

.community-layout {
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(320px, 0.42fr) minmax(0, 0.58fr);
  margin-top: 34px;
}

.journal-form,
.review-board {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(16, 20, 22, 0.08);
}

.journal-form {
  align-self: start;
  display: grid;
  gap: 16px;
  padding: 22px;
  position: sticky;
  top: 92px;
}

.journal-form h3 {
  font-size: 1.35rem;
  margin-bottom: 0;
}

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

.form-note {
  color: var(--muted);
  font-size: 0.85rem;
  margin: 0;
}

.review-board {
  padding: 18px;
}

.review-toolbar {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-bottom: 16px;
}

.review-toolbar strong {
  font-size: 1.35rem;
}

.text-button {
  background: transparent;
  border: 0;
  color: var(--green);
  font-size: 0.85rem;
  font-weight: 800;
  padding: 8px 0;
}

.review-grid {
  display: grid;
  gap: 12px;
}

.review-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 14px;
  padding: 16px;
}

.review-top {
  align-items: start;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.review-top h3 {
  font-size: 1.18rem;
  margin: 0;
}

.review-meta,
.review-card p {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
}

.return-pill {
  border-radius: 999px;
  color: white;
  flex: 0 0 auto;
  font-size: 0.85rem;
  font-weight: 900;
  padding: 7px 10px;
}

.return-pill.positive {
  background: var(--green);
}

.return-pill.negative {
  background: var(--coral);
}

.review-numbers {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, 1fr);
}

.review-numbers div {
  background: #f2ede3;
  border-radius: 8px;
  padding: 10px;
}

.review-numbers span {
  color: var(--muted);
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.review-numbers strong {
  display: block;
  font-size: 0.98rem;
  margin-top: 2px;
}

.trade-type {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--green);
  display: inline-flex;
  font-size: 0.75rem;
  font-weight: 900;
  padding: 5px 8px;
}

.about-section {
  background: var(--green);
  color: white;
}

.about-grid p {
  color: rgba(255, 255, 255, 0.76);
}

.about-section .eyebrow {
  color: var(--amber);
}

.site-footer {
  align-items: center;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  padding: 22px clamp(22px, 5vw, 72px);
}

.site-footer span:first-child {
  color: white;
  font-weight: 900;
}

@media (max-width: 1120px) {
  .hero,
  .radar-workspace,
  .app-heading,
  .lens-layout,
  .method-card,
  .planner-section,
  .about-grid,
  .community-heading,
  .community-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .control-panel,
  .detail-panel,
  .journal-form {
    position: static;
  }

  .lens-layout {
    max-width: 760px;
  }

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

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

  .menu-button {
    display: block;
  }

  .mobile-nav.is-open {
    display: block;
  }

  .hero {
    padding-top: 102px;
  }

  h1 {
    font-size: clamp(2.4rem, 12vw, 4rem);
  }

  .hero-terminal {
    min-height: 500px;
  }

  .mini-map {
    height: 230px;
  }

  .hero-stats,
  .engine-grid,
  .detail-meta,
  .form-grid,
  .review-numbers {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    align-items: start;
    display: grid;
    text-align: left;
  }

  .world-map {
    min-height: 500px;
  }

  .event-pin {
    font-size: 0;
    min-height: 24px;
    padding: 0;
    width: 24px;
  }

  .event-pin::before {
    height: 8px;
    width: 8px;
  }

  .site-footer {
    display: grid;
  }
}
