:root {
  --teal: #098c95;
  --teal-dark: #04717b;
  --cyan: #06b6d4;
  --blue: #2563eb;
  --navy: #07152e;
  --navy-2: #0b2144;
  --ink: #0f1c34;
  --muted: #64748b;
  --line: #dbe8f4;
  --soft: #f4f9fd;
  --white: #fff;
  --green: #22c55e;
  --amber: #f59e0b;
  --shadow: 0 18px 50px rgba(8, 42, 74, 0.13);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(238, 247, 252, 0.9), rgba(255, 255, 255, 0.95) 360px),
    radial-gradient(circle at 78% 10%, rgba(6, 182, 212, 0.18), transparent 28%),
    #fff;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
}

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

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

button,
select,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 20;
  width: min(1500px, calc(100% - 48px));
  height: 76px;
  margin: 18px auto 0;
  padding: 0 16px 0 20px;
  display: grid;
  grid-template-columns: 240px 1fr auto auto;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(205, 225, 239, 0.95);
  border-radius: var(--radius);
  box-shadow: 0 14px 42px rgba(24, 55, 84, 0.12);
  backdrop-filter: blur(18px);
}

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

.brand strong {
  display: block;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.05;
  letter-spacing: 0;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: #277c88;
  font-size: 12px;
  font-weight: 700;
}

.brand-mark {
  position: relative;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border: 4px solid var(--teal);
  border-radius: 50%;
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span {
  content: "";
  position: absolute;
  display: block;
  background: var(--teal);
  transform-origin: left center;
}

.brand-mark::before {
  width: 23px;
  height: 5px;
  left: 11px;
  top: 25px;
  transform: rotate(-48deg);
}

.brand-mark::after {
  width: 18px;
  height: 5px;
  left: 21px;
  top: 27px;
  transform: rotate(42deg);
}

.brand-mark span {
  width: 17px;
  height: 5px;
  left: 10px;
  top: 20px;
  transform: rotate(42deg);
}

.nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav a {
  position: relative;
  padding: 22px 18px;
  color: #1f2937;
  font-size: 16px;
  font-weight: 700;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 13px;
  height: 3px;
  background: var(--teal);
  opacity: 0;
  transform: scaleX(0.3);
  transition: 0.2s ease;
}

.nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.login-btn,
.btn,
.copy-key {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid var(--teal);
  border-radius: var(--radius);
  font-weight: 800;
  cursor: pointer;
}

.login-btn,
.btn.primary,
.copy-key {
  color: #fff;
  background: linear-gradient(135deg, var(--teal), #057b87);
  box-shadow: 0 10px 24px rgba(9, 140, 149, 0.22);
}

.btn.ghost {
  color: var(--teal);
  background: rgba(255, 255, 255, 0.78);
}

.btn.wide {
  width: 100%;
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
}

.section-shell,
.section-grid,
.map-section,
.tokens-section,
.docs-section,
.component-preview {
  width: min(1500px, calc(100% - 48px));
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 88px);
  padding: 82px 0 26px;
  display: grid;
  grid-template-columns: minmax(420px, 0.66fr) minmax(640px, 1fr);
  align-items: center;
  gap: 18px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-left: 8px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  color: var(--teal);
  font-size: clamp(54px, 6vw, 104px);
  line-height: 1.03;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
}

.hero h2 {
  margin: 20px 0 0;
  color: var(--navy);
  font-size: clamp(34px, 4vw, 60px);
  line-height: 1.1;
  letter-spacing: 0;
}

.hero-text {
  max-width: 680px;
  margin: 24px 0 34px;
  color: #526174;
  font-size: 22px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-visual {
  position: relative;
  min-width: 0;
  border-radius: var(--radius);
  overflow: hidden;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: 34%;
  background: linear-gradient(90deg, rgba(245, 250, 254, 0.96), rgba(245, 250, 254, 0));
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  height: min(740px, 68vh);
  object-fit: cover;
  object-position: 90% center;
  filter: saturate(1.04) contrast(1.02);
}

.icon,
.metric-icon,
.line-icon {
  position: relative;
  display: inline-block;
  width: 28px;
  height: 28px;
  margin-right: 10px;
  flex: 0 0 auto;
}

.icon::before,
.icon::after,
.metric-icon::before,
.metric-icon::after,
.line-icon::before,
.line-icon::after {
  content: "";
  position: absolute;
  display: block;
}

.icon.pin::before {
  inset: 3px 7px 8px;
  border: 3px solid currentColor;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.icon.pin::after {
  width: 6px;
  height: 6px;
  left: 11px;
  top: 9px;
  background: currentColor;
  border-radius: 50%;
}

.icon.cube::before,
.line-icon.node::before {
  inset: 5px;
  border: 3px solid currentColor;
  transform: rotate(45deg);
}

.icon.key::before {
  width: 11px;
  height: 11px;
  left: 3px;
  top: 4px;
  border: 3px solid currentColor;
  border-radius: 50%;
}

.icon.key::after {
  width: 17px;
  height: 4px;
  left: 13px;
  top: 15px;
  background: currentColor;
  box-shadow: -2px 6px 0 currentColor;
  transform: rotate(-45deg);
}

.metric-band {
  width: min(1380px, calc(100% - 48px));
  margin: -88px auto 0;
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(215, 230, 241, 0.96);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.metric-band article {
  min-height: 126px;
  padding: 28px 34px;
  display: grid;
  grid-template-columns: 54px 1fr;
  column-gap: 18px;
  align-items: center;
  border-right: 1px solid var(--line);
}

.metric-band article:last-child {
  border-right: none;
}

.metric-band p,
.metric-band strong {
  margin: 0;
}

.metric-band p {
  color: #1d3558;
  font-weight: 800;
}

.metric-band strong {
  display: block;
  margin-top: 8px;
  color: var(--teal);
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1;
}

.metric-icon {
  width: 54px;
  height: 54px;
  margin: 0;
  border: 1px solid #b8dbe0;
  border-radius: 50%;
  color: var(--teal);
}

.metric-icon.power::before {
  left: 22px;
  top: 12px;
  width: 11px;
  height: 26px;
  background: currentColor;
  clip-path: polygon(55% 0, 100% 0, 64% 38%, 100% 38%, 32% 100%, 48% 54%, 12% 54%);
}

.metric-icon.server::before,
.line-icon.racks::before {
  left: 13px;
  top: 13px;
  width: 28px;
  height: 8px;
  background: currentColor;
  box-shadow: 0 12px 0 currentColor, 0 24px 0 currentColor;
}

.metric-icon.token::before {
  left: 13px;
  top: 12px;
  width: 28px;
  height: 28px;
  border: 5px solid currentColor;
  transform: rotate(45deg);
}

.metric-icon.leaf::before,
.line-icon.solar::before {
  inset: 12px 13px;
  border: 4px solid currentColor;
  border-radius: 100% 0 100% 0;
  transform: rotate(-20deg);
}

.capability-strip {
  margin: 28px auto 0;
  padding: 34px 42px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  color: #dffbff;
  background:
    linear-gradient(135deg, rgba(6, 182, 212, 0.2), transparent 30%),
    linear-gradient(90deg, var(--navy), #071f42);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.capability-strip article {
  min-width: 0;
  padding: 12px 24px;
  border-right: 1px solid rgba(125, 211, 252, 0.22);
}

.capability-strip article:last-child {
  border-right: none;
}

.capability-strip h3,
.capability-strip p {
  margin: 0;
}

.capability-strip h3 {
  margin-top: 12px;
  color: #fff;
  font-size: 20px;
}

.capability-strip p {
  margin-top: 8px;
  color: #b8d8e7;
  line-height: 1.6;
}

.line-icon {
  width: 42px;
  height: 42px;
  margin: 0;
  color: #7ff5ff;
}

.line-icon.solar::after {
  left: 4px;
  bottom: 4px;
  width: 34px;
  height: 12px;
  border: 3px solid currentColor;
  transform: skewX(-18deg);
}

.line-icon.token::before {
  inset: 9px;
  border: 4px solid currentColor;
  transform: rotate(45deg);
}

.line-icon.api::before {
  left: 4px;
  top: 13px;
  width: 34px;
  height: 20px;
  border: 3px solid currentColor;
  border-radius: 12px;
}

.section-grid {
  padding: 118px 0 0;
  display: grid;
  grid-template-columns: minmax(420px, 0.8fr) minmax(560px, 1fr);
  gap: 48px;
  align-items: center;
}

.section-grid.reverse {
  grid-template-columns: minmax(620px, 1fr) minmax(420px, 0.72fr);
}

.section-copy h2,
.section-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(38px, 4vw, 64px);
  line-height: 1.1;
}

.section-copy > p:not(.eyebrow),
.section-heading p {
  margin: 20px 0 0;
  color: #526174;
  font-size: 19px;
  line-height: 1.75;
}

.feature-list {
  margin-top: 32px;
  display: grid;
  gap: 14px;
}

.feature-list article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(18, 64, 94, 0.08);
}

.feature-list span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--teal);
  border: 1px solid #b6dee4;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 900;
}

.feature-list h3,
.feature-list p {
  margin: 0;
}

.feature-list h3 {
  color: #0d2444;
}

.feature-list p {
  margin-top: 6px;
  color: #607187;
  line-height: 1.55;
}

.image-panel {
  padding: 8px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.image-panel img,
.component-preview img,
.console-panel img {
  width: 100%;
  border-radius: 6px;
}

.map-section,
.tokens-section,
.component-preview {
  padding-top: 118px;
}

.section-heading {
  max-width: 840px;
  margin-bottom: 32px;
}

.map-layout {
  display: grid;
  grid-template-columns: 270px 1fr 330px;
  gap: 18px;
  min-height: 660px;
}

.map-controls,
.site-card,
.package,
.console-panel,
.code-card,
.component-preview img {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 36px rgba(12, 52, 87, 0.1);
}

.map-controls {
  padding: 22px;
  align-self: stretch;
}

.map-controls label,
.check-list label {
  display: block;
  color: #1f3553;
  font-weight: 800;
}

.map-controls select {
  width: 100%;
  margin-top: 10px;
  padding: 12px 14px;
  color: #23364e;
  background: #f8fbfe;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.check-list {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.check-list p {
  margin: 0 0 14px;
  color: #152842;
  font-weight: 900;
}

.check-list label {
  margin: 12px 0;
  color: #4a5f78;
}

.check-list input {
  accent-color: var(--teal);
  margin-right: 8px;
}

.map-canvas {
  position: relative;
  min-height: 660px;
  border: 1px solid #c7deed;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #dff2fb;
}

.map-canvas img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-pin {
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%);
  width: 34px;
  height: 34px;
  padding: 0;
  color: #fff;
  background: radial-gradient(circle, #fff 0 20%, var(--teal) 22% 54%, rgba(9, 140, 149, 0.22) 56%);
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(6, 182, 212, 0.16), 0 0 24px rgba(6, 182, 212, 0.44);
  cursor: pointer;
}

.map-pin span {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  transform: translateX(-50%);
  min-width: 86px;
  padding: 7px 10px;
  color: #0f2742;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #bfe8ec;
  border-radius: 999px;
  box-shadow: 0 10px 20px rgba(9, 71, 92, 0.12);
  font-size: 13px;
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transition: 0.18s ease;
}

.map-pin:hover span,
.map-pin.active span {
  opacity: 1;
}

.map-pin::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  background: var(--teal);
  border: 3px solid #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.map-pin.active {
  background: radial-gradient(circle, #fff 0 18%, var(--teal) 20% 54%, rgba(245, 158, 11, 0.2) 56%);
  border-color: #fcd34d;
  box-shadow: 0 0 0 10px rgba(245, 158, 11, 0.22), 0 0 28px rgba(245, 158, 11, 0.36);
}

.site-card {
  padding: 22px;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.site-card-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.site-card h3,
.site-card p {
  margin: 0;
}

.site-card h3 {
  color: var(--navy);
  font-size: 30px;
}

.site-card p {
  margin-top: 8px;
  color: #4a5f78;
  font-weight: 800;
}

.status-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 8px;
  background: var(--green);
  border-radius: 50%;
}

.small-icon {
  width: 34px;
  height: 34px;
  color: #718096;
  background: transparent;
  border: 0;
  font-size: 26px;
  cursor: pointer;
}

.site-photo {
  height: 146px;
  display: grid;
  place-items: center;
  color: #0f766e;
  background:
    linear-gradient(135deg, rgba(34, 197, 94, 0.14), rgba(6, 182, 212, 0.1)),
    repeating-linear-gradient(120deg, rgba(9, 140, 149, 0.2) 0 2px, transparent 2px 18px),
    #eef9f6;
  border: 1px solid #d7ece8;
  border-radius: var(--radius);
  font-weight: 900;
}

.site-card dl {
  margin: 0;
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.site-card dl div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 16px;
  border-bottom: 1px solid var(--line);
}

.site-card dl div:last-child {
  border-bottom: 0;
}

.site-card dt {
  color: #526174;
  font-weight: 800;
}

.site-card dd {
  margin: 0;
  color: var(--teal);
  font-size: 22px;
  font-weight: 900;
}

.data-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.data-grid article {
  padding: 22px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(20, 65, 95, 0.08);
}

.data-grid span {
  color: #5b6f85;
  font-weight: 800;
}

.data-grid strong {
  display: block;
  margin-top: 8px;
  color: var(--teal);
  font-size: 30px;
}

.task-table {
  margin-top: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.task-table div {
  display: grid;
  grid-template-columns: 1.4fr 100px 70px;
  gap: 12px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
}

.task-table div:first-child {
  color: #536981;
  background: #f2f8fc;
  font-weight: 900;
}

.task-table div:last-child {
  border-bottom: 0;
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 13px;
}

.chip.ok {
  color: #047857;
  background: #dff8ed;
}

.chip.wait {
  color: #b45309;
  background: #fff2d8;
}

.token-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 22px;
  align-items: start;
}

.token-cards {
  display: grid;
  gap: 16px;
}

.package {
  position: relative;
  padding: 24px;
  min-height: 150px;
}

.package.selected {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(9, 140, 149, 0.12), var(--shadow);
}

.package span {
  color: #536981;
  font-weight: 900;
}

.package strong {
  display: block;
  margin-top: 8px;
  color: var(--navy);
  font-size: 30px;
}

.package p {
  margin: 9px 0 0;
  color: #607187;
}

.package b {
  display: block;
  margin-top: 18px;
  color: var(--teal);
  font-size: 24px;
}

.console-panel {
  position: relative;
  padding: 8px;
  overflow: hidden;
}

.api-overlay {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 18px;
  color: #e6fbff;
  background: rgba(7, 21, 46, 0.88);
  border: 1px solid rgba(125, 211, 252, 0.28);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
}

.api-overlay span {
  display: block;
  margin-bottom: 8px;
  color: #8fefff;
  font-weight: 900;
}

.api-overlay code {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 18px;
}

.docs-section {
  padding-top: 118px;
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 42px;
  align-items: start;
}

.code-card {
  margin: 0;
  padding: 28px;
  overflow: auto;
  color: #dffbff;
  background:
    linear-gradient(135deg, rgba(6, 182, 212, 0.15), transparent 45%),
    var(--navy);
  border-color: #12396b;
}

.code-card code {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 16px;
  line-height: 1.8;
}

.component-preview {
  padding-bottom: 110px;
}

.component-preview img {
  padding: 8px;
}

.site-footer {
  width: min(1500px, calc(100% - 48px));
  margin: 0 auto 32px;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #dffbff;
  background: var(--navy);
  border-radius: var(--radius);
}

.site-footer .brand strong {
  color: #fff;
}

.site-footer p {
  margin: 0;
  color: #b8d8e7;
}

.site-footer .legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
  font-size: 12px;
}

.site-footer a {
  color: #8fefff;
  font-weight: 900;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 220px 1fr auto;
  }

  .nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    padding: 12px;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-header.menu-open .nav {
    display: flex;
  }

  .nav a {
    padding: 14px 16px;
  }

  .menu-btn {
    display: block;
  }

  .hero,
  .section-grid,
  .section-grid.reverse,
  .docs-section,
  .token-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 62px;
  }

  .metric-band,
  .capability-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .capability-strip article {
    border-right: none;
    border-bottom: 1px solid rgba(125, 211, 252, 0.18);
  }

  .map-layout {
    grid-template-columns: 1fr;
  }

  .map-canvas {
    min-height: 560px;
  }
}

@media (max-width: 760px) {
  .site-header,
  .section-shell,
  .section-grid,
  .map-section,
  .tokens-section,
  .docs-section,
  .component-preview,
  .site-footer,
  .metric-band {
    width: min(100% - 28px, 1500px);
  }

  .site-header {
    top: 10px;
    height: auto;
    min-height: 68px;
    margin-top: 10px;
    grid-template-columns: 1fr auto;
  }

  .brand strong {
    font-size: 18px;
  }

  .brand small {
    font-size: 10px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .login-btn {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
  }

  .hero-copy {
    max-width: 100%;
    min-width: 0;
  }

  .hero h1 {
    font-size: 52px;
  }

  .hero h2 {
    font-size: 34px;
  }

  .hero-text {
    max-width: 320px;
    font-size: 18px;
    overflow-wrap: anywhere;
  }

  .hero-actions {
    max-width: 260px;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-visual img {
    height: 420px;
  }

  .metric-band {
    margin-top: 24px;
    grid-template-columns: 1fr;
  }

  .metric-band article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metric-band article:last-child {
    border-bottom: 0;
  }

  .capability-strip {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .section-grid,
  .map-section,
  .tokens-section,
  .docs-section,
  .component-preview {
    padding-top: 76px;
  }

  .map-canvas {
    min-height: 420px;
  }

  .map-pin {
    min-width: 88px;
    min-height: 34px;
    padding: 0 10px;
    font-size: 13px;
  }

  .data-grid {
    grid-template-columns: 1fr;
  }

  .task-table div {
    grid-template-columns: 1fr;
  }

  .api-overlay {
    position: static;
    margin: 8px;
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
