@font-face {
  font-family: "MontserratLocal";
  src: url("./assets/fonts/Montserrat-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "MontserratLocal";
  src: url("./assets/fonts/Montserrat-SemiBold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "MontserratLocal";
  src: url("./assets/fonts/Montserrat-ExtraBold.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary: #00ed64;
  --primary-deep: #008c45;
  --primary-soft: #e3fcef;
  --ink: #001e2b;
  --ink-2: #18313d;
  --body: #3d4f5b;
  --muted: #6d7c87;
  --line: #dce5e2;
  --line-soft: #eef3f1;
  --canvas: #ffffff;
  --surface: #f7faf8;
  --surface-green: #f0fbf4;
  --teal: #003d4f;
  --aqua: #20c7b5;
  --brass: #b98b2f;
  --blue: #3d6fd9;
  --coral: #e96f4c;
  --violet: #6d5bd0;
  --on-dark: #ffffff;
  --on-dark-muted: #a8b3bc;
  --radius-card: 8px;
  --radius-panel: 18px;
  --radius-full: 9999px;
  --shadow-soft: rgba(0, 30, 43, 0.06) 0 10px 26px;
  --shadow-panel: rgba(0, 30, 43, 0.12) 0 24px 70px -36px;
  --font-brand: "MontserratLocal", "IBM Plex Sans KR", "Apple SD Gothic Neo", sans-serif;
  --font-body: "IBM Plex Sans KR", "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  --font-mono: "JetBrains Mono", "SF Mono", Menlo, Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--canvas);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.72;
}

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

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

.container {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
}

.intro {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 18%, rgba(0, 237, 100, 0.16), transparent 30%),
    linear-gradient(135deg, #000f16 0%, #001e2b 50%, #041015 100%);
  transition: opacity 700ms ease, visibility 700ms ease;
}

.intro.is-complete {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.matrix-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.58;
}

.crt-shell {
  position: relative;
  width: min(860px, calc(100vw - 36px));
  padding: 18px 18px 30px;
  border: 1px solid rgba(195, 240, 210, 0.24);
  border-radius: 24px 24px 38px 38px;
  background:
    linear-gradient(160deg, rgba(28, 45, 56, 0.98), rgba(0, 30, 43, 0.98)),
    #001e2b;
  box-shadow:
    rgba(0, 237, 100, 0.22) 0 0 72px,
    rgba(0, 0, 0, 0.65) 0 40px 90px;
}

.crt-label {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 0 6px 12px;
  color: var(--on-dark-muted);
  font-family: var(--font-mono);
  font-size: 12px;
}

.crt-screen {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(0, 237, 100, 0.35);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 50%, rgba(0, 237, 100, 0.12), transparent 55%),
    #000c10;
  box-shadow: inset rgba(0, 0, 0, 0.9) 0 0 42px;
}

.crt-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset rgba(255, 255, 255, 0.08) 0 0 28px;
  pointer-events: none;
}

.crt-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.03) 0,
    rgba(255, 255, 255, 0.03) 1px,
    transparent 2px,
    transparent 5px
  );
  mix-blend-mode: screen;
  pointer-events: none;
}

.terminal-topbar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 18px;
  color: var(--on-dark-muted);
  font-family: var(--font-mono);
  font-size: 13px;
}

.terminal-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--coral);
}

.terminal-topbar span:nth-child(2) {
  background: #ffd166;
}

.terminal-topbar span:nth-child(3) {
  background: var(--primary);
}

.terminal-topbar strong {
  margin-left: 8px;
  color: var(--primary);
  font-weight: 700;
}

.crt-logo {
  position: relative;
  z-index: 1;
  width: min(360px, 72%);
  margin: 4px auto 18px;
  opacity: 0.96;
  filter: drop-shadow(0 0 18px rgba(0, 237, 100, 0.18));
}

.terminal-lines {
  position: relative;
  z-index: 1;
  min-height: 206px;
  margin: 0;
  color: #b8ffd1;
  font-family: var(--font-mono);
  font-size: 16px;
  line-height: 1.7;
  white-space: pre-wrap;
  text-shadow: rgba(0, 237, 100, 0.45) 0 0 10px;
}

.terminal-meter {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  color: var(--on-dark-muted);
  font-family: var(--font-mono);
  font-size: 12px;
}

.terminal-meter div {
  height: 10px;
  overflow: hidden;
  border: 1px solid rgba(0, 237, 100, 0.4);
  border-radius: var(--radius-full);
  background: rgba(0, 30, 43, 0.75);
}

.terminal-meter i {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), #9dffb8);
  transition: width 420ms ease;
}

.crt-base {
  position: absolute;
  left: 50%;
  bottom: -46px;
  width: 34%;
  height: 44px;
  transform: translateX(-50%);
  border-radius: 0 0 18px 18px;
  background: linear-gradient(180deg, #1c2d38, #08171f);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
  padding: 0 max(32px, calc((100vw - 1180px) / 2 + 32px));
  border-bottom: 1px solid rgba(220, 229, 226, 0.84);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 700;
}

.brand-logo {
  width: 196px;
  height: auto;
}

.footer-logo {
  width: 210px;
  height: auto;
}

.nav-tokens {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius-full);
  background: var(--surface);
}

.nav-tokens a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 7px 13px;
  border-radius: var(--radius-full);
  color: var(--body);
  font-size: 14px;
  font-weight: 600;
  transition: color 180ms ease, background 180ms ease;
}

.nav-tokens a:hover,
.nav-tokens a:focus-visible {
  color: var(--ink);
  background: var(--canvas);
  outline: none;
}

.bgm-button {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid rgba(0, 237, 100, 0.44);
  border-radius: var(--radius-full);
  color: var(--primary);
  background: rgba(0, 30, 43, 0.88);
  box-shadow: rgba(0, 30, 43, 0.18) 0 10px 30px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.bgm-button[aria-pressed="true"] {
  color: var(--ink);
  background: var(--primary);
}

.bgm-button:focus-visible {
  outline: 3px solid rgba(0, 237, 100, 0.3);
  outline-offset: 3px;
}

.bgm-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: currentColor 0 0 12px;
}

.hero-band {
  position: relative;
  overflow: hidden;
  padding: 92px 0 70px;
  background:
    linear-gradient(115deg, rgba(227, 252, 239, 0.82) 0%, rgba(255, 255, 255, 0.98) 44%, rgba(247, 250, 248, 1) 100%);
}

.hero-band::after {
  content: "";
  position: absolute;
  right: -12%;
  bottom: -30%;
  width: 58%;
  height: 72%;
  border-radius: 52% 48% 0 0;
  background: rgba(0, 237, 100, 0.1);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
  align-items: center;
  gap: 58px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--primary-deep);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  word-break: keep-all;
  overflow-wrap: break-word;
}

h1 {
  margin-bottom: 18px;
  color: var(--ink);
  font-family: var(--font-brand);
  font-size: 58px;
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 20px;
  color: var(--ink);
  font-family: var(--font-brand);
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-family: var(--font-brand);
  font-size: 21px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0;
}

.classic-slogan {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 6px 12px;
  border: 1px solid rgba(0, 140, 69, 0.18);
  border-radius: var(--radius-full);
  color: var(--primary-deep);
  background: var(--surface-green);
  font-family: var(--font-mono);
  font-size: 17px;
  font-weight: 700;
}

.hero-lead,
.section-lead,
.section-header p,
.contact-panel p {
  color: var(--body);
  font-size: 18px;
  line-height: 1.72;
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.button-primary,
.button-secondary {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-secondary {
  color: var(--ink);
  border: 1px solid var(--line);
  background: var(--canvas);
}

.button-primary:hover,
.button-primary:focus-visible,
.button-secondary:hover,
.button-secondary:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.signal-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.signal-row div {
  min-height: 100px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: rgba(0, 30, 43, 0.04) 0 8px 18px;
}

.signal-row dt {
  color: var(--primary-deep);
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 700;
}

.signal-row dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.hero-visual,
.generated-image {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-panel);
  background: var(--canvas);
  box-shadow: var(--shadow-panel);
}

.hero-visual {
  padding: 18px;
  background:
    linear-gradient(160deg, rgba(0, 30, 43, 0.98), rgba(6, 58, 61, 0.98)),
    var(--ink);
  transform: rotate(1.5deg);
}

.hero-logo {
  width: min(380px, 72%);
  margin: 2px auto 12px;
  border-radius: var(--radius-card);
}

.hero-visual img,
.generated-image img {
  width: 100%;
}

.hero-visual > img:not(.hero-logo) {
  border-radius: var(--radius-card);
}

.ticker-strip {
  overflow: hidden;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line);
  background: var(--primary);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
}

.ticker-strip div {
  display: flex;
  width: max-content;
  animation: ticker 36s linear infinite;
}

.ticker-strip span {
  padding: 13px 30px;
  white-space: nowrap;
}

.section {
  padding: 86px 0;
}

.about-section,
.architecture-section,
.faq-section {
  background: var(--canvas);
}

.light-section,
.process-section {
  background: var(--surface);
}

.detail-section {
  background:
    linear-gradient(180deg, var(--canvas) 0%, var(--surface-green) 100%);
}

.insight-section {
  background:
    linear-gradient(180deg, #f8fbfa 0%, #ffffff 52%, #f5faf7 100%);
}

.split-layout,
.image-copy-grid,
.ollaga-grid,
.contact-grid {
  display: grid;
  gap: 56px;
  align-items: center;
}

.split-layout {
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
}

.image-copy-grid {
  grid-template-columns: minmax(420px, 1.04fr) minmax(0, 0.96fr);
}

.section-header {
  max-width: 850px;
  margin-bottom: 34px;
}

.mission-points {
  display: grid;
  gap: 14px;
}

.mission-points article,
.service-card,
.detail-card,
.process-grid article,
.faq-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--canvas);
  box-shadow: rgba(0, 30, 43, 0.04) 0 1px 2px;
}

.mission-points article {
  display: grid;
  grid-template-columns: 52px 1fr;
  min-height: 132px;
  column-gap: 18px;
  padding: 22px;
}

.mission-points h3,
.mission-points p {
  grid-column: 2;
}

.mission-points p,
.service-card p,
.detail-card p,
.process-grid p,
.faq-grid p {
  margin-bottom: 0;
  color: var(--body);
}

.point-index {
  grid-row: 1 / span 2;
  color: var(--primary-deep);
  font-family: var(--font-mono);
  font-weight: 700;
}

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

.service-card {
  min-height: 268px;
  padding: 22px;
}

.service-code {
  display: inline-flex;
  margin-bottom: 38px;
  padding: 4px 9px;
  border-radius: 6px;
  color: var(--ink);
  background: var(--primary);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
}

.accent-blue .service-code {
  color: var(--on-dark);
  background: var(--blue);
}

.accent-brass .service-code {
  color: var(--ink);
  background: #f3d486;
}

.accent-coral .service-code {
  color: var(--on-dark);
  background: var(--coral);
}

.accent-ink .service-code {
  color: var(--primary);
  background: var(--ink);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--ink-2);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: inset var(--ink) 0 0 0 4px;
}

.business-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.detail-card {
  display: flex;
  min-height: 520px;
  flex-direction: column;
  padding: 18px;
}

.detail-card img {
  width: 100%;
  margin-bottom: 20px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-card);
  background: var(--surface);
}

.detail-card strong {
  display: block;
  margin-top: auto;
  padding-top: 20px;
  color: var(--primary-deep);
  font-size: 14px;
}

.detail-card span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

.analytics-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.22fr) minmax(0, 0.95fr);
  gap: 18px;
  align-items: stretch;
}

.chart-card {
  display: flex;
  min-height: 476px;
  flex-direction: column;
  gap: 22px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 250, 0.94)),
    var(--canvas);
  box-shadow: rgba(0, 30, 43, 0.08) 0 18px 44px -30px;
}

.chart-card.wide {
  background:
    linear-gradient(145deg, rgba(0, 30, 43, 0.98), rgba(9, 70, 70, 0.96)),
    var(--ink);
}

.chart-card.wide h3,
.chart-card.wide p {
  color: var(--on-dark);
}

.chart-card.wide p {
  color: rgba(255, 255, 255, 0.72);
}

.chart-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 4px 9px;
  border-radius: 6px;
  color: var(--ink);
  background: var(--primary);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
}

.chart-copy p {
  margin-bottom: 0;
  color: var(--body);
  font-size: 15px;
}

.chart-wrap {
  position: relative;
  height: 270px;
  margin-top: auto;
}

.chart-card.wide .chart-wrap {
  height: 300px;
}

.chart-wrap canvas {
  width: 100% !important;
  height: 100% !important;
}

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

.process-grid article {
  min-height: 220px;
  padding: 22px;
}

.process-grid span {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 30px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--primary);
  font-family: var(--font-mono);
  font-weight: 700;
}

.ollaga-section {
  color: var(--on-dark);
  background:
    linear-gradient(130deg, #001e2b 0%, #063a3d 58%, #172421 100%);
}

.ollaga-grid {
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 0.72fr);
}

.ollaga-section h2,
.ollaga-section .section-lead {
  color: var(--on-dark);
}

.ollaga-section .section-lead {
  color: rgba(255, 255, 255, 0.78);
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.mini-stats div {
  min-height: 100px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.06);
}

.mini-stats strong,
.mini-stats span {
  display: block;
}

.mini-stats strong {
  color: var(--primary);
  font-family: var(--font-mono);
  font-size: 14px;
}

.mini-stats span {
  margin-top: 8px;
  color: var(--on-dark-muted);
  font-size: 14px;
}

.ollaga-map-panel {
  overflow: hidden;
  min-height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-panel);
  background: #061216;
  box-shadow:
    rgba(0, 237, 100, 0.16) 0 0 52px,
    rgba(0, 0, 0, 0.42) 0 28px 80px;
}

.map-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--on-dark-muted);
  background: rgba(255, 255, 255, 0.04);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
}

.map-toolbar a {
  color: var(--primary);
}

.ollaga-map {
  height: 430px;
  background:
    linear-gradient(135deg, rgba(0, 237, 100, 0.1), transparent 34%),
    #0c1c20;
}

.ollaga-map .leaflet-container,
.leaflet-container {
  font-family: var(--font-body);
}

.ollaga-map-status {
  margin: 0;
  padding: 13px 16px 16px;
  color: var(--on-dark-muted);
  font-size: 14px;
}

.ollaga-popup strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-family: var(--font-brand);
}

.ollaga-popup span {
  display: block;
  color: var(--body);
  font-size: 13px;
}

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

.faq-grid article {
  padding: 22px;
}

.contact-section {
  color: var(--on-dark);
  background: var(--ink);
}

.contact-grid {
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.72fr);
}

.contact-section h2,
.contact-section .eyebrow {
  color: var(--on-dark);
}

.contact-section .eyebrow {
  color: var(--primary);
}

.contact-panel {
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.06);
}

.contact-panel p {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  padding: 56px 0;
  color: var(--on-dark-muted);
  background: #061216;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.5fr 0.5fr;
  gap: 48px;
}

.footer-brand {
  color: var(--on-dark);
}

.site-footer p {
  max-width: 420px;
  margin: 18px 0 0;
}

.site-footer strong,
.site-footer a {
  display: block;
}

.site-footer strong {
  margin-bottom: 12px;
  color: var(--on-dark);
}

.site-footer a {
  padding: 4px 0;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}

@media (max-width: 1100px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .nav-tokens {
    width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
  }

  .hero-grid,
  .split-layout,
  .image-copy-grid,
  .ollaga-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual,
  .generated-image {
    max-width: 760px;
  }

  .service-grid,
  .business-detail-grid,
  .analytics-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .chart-card.wide {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 36px, 1180px);
  }

  .crt-shell {
    padding: 12px 12px 24px;
  }

  .crt-screen {
    min-height: 390px;
    padding: 14px;
  }

  .terminal-lines {
    font-size: 13px;
  }

  .terminal-meter {
    grid-template-columns: 1fr;
  }

  .site-header {
    min-height: auto;
    padding-left: 18px;
    padding-right: 18px;
  }

  .nav-tokens {
    flex-wrap: wrap;
    border-radius: var(--radius-panel);
    overflow-x: visible;
  }

  .nav-tokens a {
    flex: 1 1 30%;
    padding-left: 8px;
    padding-right: 8px;
    white-space: normal;
    text-align: center;
  }

  .brand-logo {
    width: 168px;
  }

  .bgm-button {
    right: 14px;
    bottom: 14px;
  }

  .hero-band {
    padding: 60px 0 44px;
  }

  .hero-visual {
    transform: none;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 30px;
  }

  .hero-lead,
  .section-lead,
  .section-header p,
  .contact-panel p {
    font-size: 17px;
  }

  .signal-row,
  .service-grid,
  .business-detail-grid,
  .analytics-grid,
  .process-grid,
  .mini-stats,
  .faq-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .chart-card,
  .chart-card.wide {
    min-height: auto;
  }

  .chart-card.wide {
    grid-column: auto;
  }

  .chart-wrap {
    height: 250px;
  }

  .chart-card.wide .chart-wrap {
    height: 260px;
  }

  .ollaga-map-panel {
    min-height: auto;
    border-radius: 16px;
  }

  .map-toolbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .ollaga-map {
    height: 340px;
  }

  .mission-points article {
    grid-template-columns: 1fr;
  }

  .mission-points h3,
  .mission-points p {
    grid-column: 1;
  }

  .point-index {
    grid-row: auto;
    margin-bottom: 10px;
  }

  .detail-card {
    min-height: auto;
  }

  .section {
    padding: 60px 0;
  }
}
