:root {
  --ink: #0a1020;
  --ink-2: #11192c;
  --ink-3: #1a243b;
  --paper: #f3f0e7;
  --paper-2: #e7e2d5;
  --signal: #c4a7ff;
  --signal-soft: #b39bea;
  --orange: #ff6c3e;
  --blue: #526cff;
  --sky: #85c7ff;
  --line: rgba(243, 240, 231, .17);
  --line-dark: rgba(10, 16, 32, .17);
  --muted: #9ea6b6;
  --display: "Arial Narrow", "Avenir Next Condensed", "Helvetica Neue", Arial, sans-serif;
  --body: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}
button, input, select { font: inherit; }
button { color: inherit; }
a { color: inherit; }
.grain {
  position: fixed;
  inset: 0;
  z-index: 100;
  opacity: .055;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.site-header {
  min-height: 80px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 36px;
  border-bottom: 1px solid var(--line);
  background: rgba(10, 16, 32, .92);
}
.brand { display: flex; align-items: center; gap: 11px; width: max-content; text-decoration: none; }
.brand > span:last-child { font-family: var(--display); font-size: .72rem; font-weight: 900; line-height: .82; letter-spacing: -.02em; }
.brand-disc { position: relative; width: 39px; height: 39px; display: block; border: 1px solid var(--signal); border-radius: 50%; }
.brand-disc::before, .brand-disc::after { content: ""; position: absolute; background: var(--signal); }
.brand-disc::before { width: 1px; height: 53px; top: -8px; left: 18px; transform: rotate(45deg); }
.brand-disc::after { width: 8px; height: 8px; left: 15px; top: 15px; border-radius: 50%; }
.brand-disc i { position: absolute; width: 19px; height: 19px; border: 1px solid var(--signal); border-radius: 50%; left: 9px; top: 9px; animation: lensPulse 3s ease-out infinite; }
@keyframes lensPulse { 0% { transform: scale(.4); opacity: 0; } 25% { opacity: .8; } 100% { transform: scale(1.55); opacity: 0; } }
.edition { margin: 0; color: var(--muted); font-family: var(--mono); font-size: .64rem; letter-spacing: .13em; }
.edition span { width: 6px; height: 6px; display: inline-block; margin-right: 9px; border-radius: 50%; background: var(--signal); box-shadow: 0 0 0 5px rgba(196, 167, 255, .12); }
.data-link { justify-self: end; padding-bottom: 4px; border-bottom: 1px solid var(--line); font-size: .66rem; letter-spacing: .15em; text-decoration: none; text-transform: uppercase; }
.data-link span { color: var(--signal); }
.site-header > * { animation: headerDrop .72s cubic-bezier(.16, 1, .3, 1) both; }
.site-header > :nth-child(2) { animation-delay: .1s; }
.site-header > :nth-child(3) { animation-delay: .2s; }
@keyframes headerDrop {
  from { opacity: 0; transform: translateY(-18px); filter: blur(4px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 960px;
  padding: 82px 4.3vw 76px;
  display: grid;
  grid-template-columns: 1.52fr .64fr;
  grid-template-rows: auto 1fr;
  column-gap: 7vw;
  overflow: hidden;
  background: #070b15;
}
.hero-backdrop {
  position: absolute;
  z-index: -2;
  inset: -4%;
  background:
    linear-gradient(90deg, rgba(7, 11, 21, .92) 0%, rgba(10, 16, 32, .78) 46%, rgba(10, 16, 32, .62) 72%, rgba(7, 11, 21, .76) 100%),
    linear-gradient(180deg, rgba(10, 16, 32, .2) 0%, rgba(10, 16, 32, .48) 100%),
    url("assets/urban-mall-hero.jpg") center center / cover no-repeat;
  transform-origin: center;
  animation: heroBackdropIn 1.9s cubic-bezier(.16, 1, .3, 1) both;
}
.hero::before {
  content: "";
  position: absolute;
  width: 570px;
  height: 570px;
  right: -90px;
  top: -182px;
  border: 1px solid rgba(196, 167, 255, .26);
  border-radius: 50%;
  box-shadow: 0 0 0 74px rgba(196, 167, 255, .03), 0 0 0 148px rgba(196, 167, 255, .02);
  animation: orbitIn 1.3s cubic-bezier(.16, 1, .3, 1) .45s both;
}
.hero::after {
  content: "HE / TRE / TKU";
  position: absolute;
  right: 4.4vw;
  bottom: 28px;
  color: rgba(243, 240, 231, .28);
  font-family: var(--mono);
  font-size: .61rem;
  letter-spacing: .3em;
  animation: heroRise .7s ease 1.25s both;
}
.eyebrow, .step-label { margin: 0; color: var(--signal); font-family: var(--mono); font-size: .64rem; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow { grid-column: 1 / -1; animation: heroRise .8s cubic-bezier(.16, 1, .3, 1) .25s both; }
.hero h1 {
  align-self: end;
  margin: 48px 0 0;
  font-family: var(--display);
  font-size: clamp(5.3rem, 10.6vw, 11rem);
  font-stretch: condensed;
  font-weight: 900;
  line-height: .82;
  letter-spacing: -.075em;
  text-transform: uppercase;
  animation: heroTitleIn 1.05s cubic-bezier(.16, 1, .3, 1) .42s both;
}
.hero h1 em { color: var(--signal); font-style: normal; }
.hero-side { align-self: end; max-width: 510px; padding-bottom: 10px; }
.hero-lead { margin: 0 0 48px; font-size: clamp(1.25rem, 1.8vw, 1.8rem); font-weight: 500; line-height: 1.22; letter-spacing: -.035em; animation: heroRise .9s cubic-bezier(.16, 1, .3, 1) .72s both; }
.hero-rule { display: grid; grid-template-columns: 42px 1fr; gap: 14px; padding: 15px 0; border-top: 1px solid var(--line); animation: heroRise .85s cubic-bezier(.16, 1, .3, 1) .9s both; }
.hero-rule + .hero-rule { animation-delay: 1.05s; }
.hero-rule:last-child { border-bottom: 1px solid var(--line); }
.hero-rule span { color: var(--signal); font-family: var(--mono); font-size: .68rem; }
.hero-rule p { margin: 0; color: var(--muted); font-size: .84rem; line-height: 1.5; }

@keyframes heroBackdropIn {
  from { opacity: 0; transform: scale(1.13); filter: blur(8px) saturate(.7); }
  to { opacity: 1; transform: scale(1); filter: blur(0) saturate(1); }
}
@keyframes heroTitleIn {
  from { opacity: 0; transform: translateY(90px) skewY(2deg); clip-path: inset(100% 0 0 0); filter: blur(6px); }
  to { opacity: 1; transform: translateY(0) skewY(0); clip-path: inset(0 0 0 0); filter: blur(0); }
}
@keyframes heroRise {
  from { opacity: 0; transform: translateY(28px); filter: blur(5px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@keyframes orbitIn {
  from { opacity: 0; transform: scale(.65) rotate(-18deg); }
  to { opacity: 1; transform: scale(1) rotate(0); }
}

.workspace { padding: 76px 4.3vw 92px; background: var(--paper); color: var(--ink); }
.workspace-head { display: grid; grid-template-columns: 1fr minmax(280px, 460px); gap: 40px; align-items: end; margin-bottom: 38px; }
.workspace .step-label, .comparison .step-label { color: var(--blue); }
.workspace h2, .comparison h2, .method h2 { margin: 12px 0 0; font-family: var(--display); font-size: clamp(2.75rem, 5vw, 5.1rem); font-weight: 900; line-height: .84; letter-spacing: -.055em; text-transform: uppercase; }
.workspace-head .step-label + h2 { margin-top: 26px; }
.workspace-head > p { margin: 0; max-width: 52ch; color: #5a6070; font-size: .88rem; line-height: 1.55; }
.business-picker { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line-dark); margin-bottom: 28px; }
.business-button {
  min-height: 104px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr;
  align-items: start;
  padding: 16px 19px;
  border: 0;
  border-right: 1px solid var(--line-dark);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition: background .2s ease, color .2s ease;
}
.business-button:last-child { border-right: 0; }
.business-button:hover { background: #e9e5da; }
.business-button.is-active { background: var(--ink); color: var(--paper); }
.business-button span { color: #777d8a; font-family: var(--mono); font-size: .58rem; }
.business-button b { align-self: end; font-family: var(--display); font-size: clamp(1.3rem, 2vw, 2.05rem); font-weight: 900; letter-spacing: -.045em; text-transform: uppercase; }
.business-button i { grid-column: 2; grid-row: 1 / -1; align-self: center; color: var(--blue); font-size: 1.35rem; font-style: normal; }
.business-button.is-active i { color: var(--signal); }

.explorer { display: grid; grid-template-columns: minmax(0, 1.85fr) minmax(330px, .72fr); min-height: 760px; border: 1px solid var(--line-dark); background: #e7e4da; box-shadow: 0 26px 70px rgba(32, 34, 46, .14); }
.map-column { min-width: 0; display: flex; flex-direction: column; }
.map-toolbar { min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 0 20px; border-bottom: 1px solid var(--line-dark); }
.city-tabs { display: flex; align-items: center; gap: 5px; }
.city-button { padding: 8px 12px; border: 0; background: transparent; color: #6e7480; cursor: pointer; font-size: .7rem; letter-spacing: .11em; text-transform: uppercase; }
.city-button.is-active { background: var(--ink); color: var(--paper); }
.map-year { display: flex; align-items: center; gap: 8px; color: #707784; font-family: var(--mono); font-size: .57rem; letter-spacing: .08em; text-transform: uppercase; }
.map-year span { color: var(--ink); font-weight: 700; }
.map-year i { width: 5px; height: 5px; display: block; border-radius: 50%; background: var(--blue); }
.metric-row { display: flex; align-items: center; gap: 6px; padding: 13px 20px; border-bottom: 1px solid var(--line-dark); overflow-x: auto; scrollbar-width: none; }
.metric-row::-webkit-scrollbar { display: none; }
.metric-button { flex: 0 0 auto; padding: 7px 10px; border: 1px solid transparent; background: transparent; color: #707784; cursor: pointer; font-size: .63rem; white-space: nowrap; }
.metric-button:hover { color: var(--ink); }
.metric-button.is-active { border-color: var(--ink); color: var(--ink); }

.map-frame { position: relative; flex: 1; min-height: 620px; overflow: hidden; background: #d9d5ca; }
.map-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .55;
  background-image: linear-gradient(rgba(10, 16, 32, .07) 1px, transparent 1px), linear-gradient(90deg, rgba(10, 16, 32, .07) 1px, transparent 1px);
  background-size: 36px 36px;
}
.map-frame::after { content: ""; position: absolute; inset: 0; pointer-events: none; box-shadow: inset 0 0 80px rgba(18, 24, 37, .08); }
.map-caption { position: absolute; z-index: 4; left: 21px; top: 20px; display: flex; flex-direction: column; gap: 3px; pointer-events: none; }
.map-caption span { font-family: var(--display); font-size: .95rem; font-weight: 900; letter-spacing: -.02em; text-transform: uppercase; }
.map-caption strong { color: #4f5665; font-family: var(--mono); font-size: .63rem; letter-spacing: .06em; }
#postalMap { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.postal-area { stroke: rgba(10, 16, 32, .5); stroke-width: .75; vector-effect: non-scaling-stroke; cursor: pointer; transition: fill .28s ease, stroke .14s ease, opacity .2s ease; }
.postal-area:hover { stroke: var(--paper); stroke-width: 1.6; }
.postal-area.is-selected { stroke: var(--ink); stroke-width: 2.5; filter: drop-shadow(0 2px 5px rgba(10, 16, 32, .4)); }
.postal-area.is-compared { stroke: var(--orange); stroke-width: 1.8; }
.postal-area:focus { outline: none; stroke: var(--ink); stroke-width: 2.7; }
.map-legend { position: absolute; z-index: 5; left: 21px; bottom: 18px; display: flex; align-items: center; gap: 8px; color: #3f4654; font-family: var(--mono); font-size: .6rem; letter-spacing: .06em; text-transform: uppercase; }
.map-legend i { width: 112px; height: 7px; background: linear-gradient(90deg, #263658, #718aff, var(--signal)); }
.map-hint { position: absolute; z-index: 4; right: 19px; bottom: 17px; color: #424957; font-family: var(--mono); font-size: .62rem; letter-spacing: .06em; text-transform: uppercase; }
.map-hint span { color: var(--blue); }
.map-tooltip { position: fixed; z-index: 110; width: 220px; padding: 12px 14px; border: 1px solid rgba(243, 240, 231, .26); background: rgba(10, 16, 32, .95); color: var(--paper); pointer-events: none; opacity: 0; transform: translate(12px, -50%); transition: opacity .12s ease; box-shadow: 0 12px 30px rgba(10, 16, 32, .28); }
.map-tooltip.is-visible { opacity: 1; }
.map-tooltip > span { color: var(--signal); font-family: var(--mono); font-size: .64rem; letter-spacing: .1em; }
.map-tooltip > strong { display: block; margin: 4px 0 10px; font-family: var(--display); font-size: 1.1rem; text-transform: uppercase; }
.map-tooltip p { display: flex; align-items: baseline; gap: 6px; margin: 0; padding-top: 8px; border-top: 1px solid var(--line); }
.map-tooltip p b { font-size: 1rem; }
.map-tooltip p i { color: #c1c7d2; font-size: .68rem; font-style: normal; }

.area-panel { --panel-muted: #bdc4d2; position: relative; padding: 24px 26px 25px; display: flex; flex-direction: column; background: var(--ink); color: var(--paper); }
.panel-kicker, .section-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; font-family: var(--mono); font-size: .63rem; letter-spacing: .1em; text-transform: uppercase; }
.panel-kicker span { color: var(--signal); }
.panel-kicker b { color: var(--panel-muted); font-weight: 400; }
.area-heading { margin: 34px 0 24px; }
.area-heading p { margin: 0 0 13px; color: var(--signal); font-family: var(--mono); font-size: .76rem; letter-spacing: .13em; }
.area-heading h3 { margin: 0; font-family: var(--display); font-size: clamp(2.5rem, 4vw, 4.4rem); font-weight: 900; line-height: .82; letter-spacing: -.06em; text-transform: uppercase; }
.signal-intro { padding: 17px 0 19px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.signal-intro p { margin: 0 0 8px; color: var(--orange); font-family: var(--mono); font-size: .63rem; letter-spacing: .12em; }
.signal-intro strong { display: block; font-size: .91rem; font-weight: 500; line-height: 1.35; }
.primary-signals { display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: 1px solid var(--line); }
.primary-signal { min-width: 0; padding: 17px 10px 17px 0; }
.primary-signal + .primary-signal { padding-left: 11px; border-left: 1px solid var(--line); }
.primary-signal span { display: block; min-height: 27px; color: var(--panel-muted); font-size: .64rem; line-height: 1.3; text-transform: uppercase; }
.primary-signal b { display: block; margin-top: 5px; font-family: var(--display); font-size: 1.45rem; font-weight: 900; letter-spacing: -.04em; white-space: nowrap; }
.primary-signal i { display: block; margin-top: 3px; color: var(--signal); font-family: var(--mono); font-size: .57rem; line-height: 1.3; font-style: normal; }
.profile-section { padding: 18px 0; border-bottom: 1px solid var(--line); }
.section-head { margin-bottom: 13px; color: var(--paper); }
.section-head b { color: var(--panel-muted); font-weight: 400; }
.age-profile { display: grid; gap: 8px; }
.age-row { display: grid; grid-template-columns: 45px 1fr 35px; gap: 8px; align-items: center; }
.age-row span, .age-row b { font-family: var(--mono); font-size: .59rem; font-weight: 400; }
.age-row b { color: var(--panel-muted); text-align: right; }
.age-track { height: 5px; background: rgba(243, 240, 231, .1); }
.age-track i { height: 100%; display: block; background: var(--sky); transform-origin: left; animation: barIn .5s ease both; }
.age-row:nth-child(2) .age-track i { background: var(--signal); }
.age-row:nth-child(3) .age-track i { background: var(--blue); }
.age-row:nth-child(4) .age-track i { background: var(--orange); }
@keyframes barIn { from { transform: scaleX(0); } }
.flow-chart { display: grid; gap: 10px; }
.flow-row { display: grid; grid-template-columns: 75px 1fr 45px; gap: 8px; align-items: center; }
.flow-row span, .flow-row b { font-family: var(--mono); font-size: .59rem; font-weight: 400; }
.flow-row b { color: var(--panel-muted); text-align: right; }
.flow-track { height: 15px; background: rgba(243, 240, 231, .08); }
.flow-track i { height: 100%; display: block; background: var(--sky); transition: width .35s ease; }
.flow-row:nth-child(2) .flow-track i { background: var(--orange); }
.compare-button { margin-top: auto; min-height: 48px; display: flex; align-items: center; justify-content: space-between; padding: 0 15px; border: 1px solid var(--signal); background: var(--signal); color: var(--ink); cursor: pointer; font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; }
.compare-button:hover { background: transparent; color: var(--signal); }
.compare-button.is-added { border-color: var(--orange); background: transparent; color: var(--orange); }
.compare-button b { font-size: 1.2rem; font-weight: 400; }
.panel-note { margin: 12px 0 0; color: var(--panel-muted); font-size: .66rem; line-height: 1.5; }

.comparison { padding: 86px 4.3vw 100px; background: var(--ink-2); }
.comparison-head { display: grid; grid-template-columns: 1fr minmax(270px, 430px); gap: 50px; align-items: end; margin-bottom: 48px; }
.comparison-head .step-label + h2 { margin-top: 28px; }
.comparison-head > p { margin: 0; color: var(--muted); font-size: .83rem; line-height: 1.6; }
.comparison-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.compare-card { min-height: 430px; padding: 22px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.compare-card.empty { display: flex; align-items: center; justify-content: center; color: #5b6478; font-family: var(--mono); font-size: .61rem; letter-spacing: .11em; text-align: center; text-transform: uppercase; }
.compare-card-head { display: grid; grid-template-columns: 1fr auto; align-items: start; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.compare-card-head span { color: var(--signal); font-family: var(--mono); font-size: .62rem; }
.compare-card-head h3 { margin: 5px 0 0; font-family: var(--display); font-size: 2rem; line-height: .86; letter-spacing: -.04em; text-transform: uppercase; }
.compare-remove { width: 28px; height: 28px; border: 1px solid var(--line); background: transparent; color: var(--muted); cursor: pointer; }
.compare-remove:hover { border-color: var(--orange); color: var(--orange); }
.compare-metrics { display: grid; gap: 17px; padding-top: 21px; }
.compare-metric-head { display: flex; align-items: end; justify-content: space-between; gap: 12px; margin-bottom: 6px; }
.compare-metric-head span { color: #c5cbd6; font-size: .67rem; font-weight: 500; letter-spacing: .07em; text-transform: uppercase; }
.compare-metric-head b { font-family: var(--mono); font-size: .66rem; }
.compare-track { height: 7px; background: rgba(243, 240, 231, .08); }
.compare-track i { height: 100%; display: block; background: var(--blue); transform-origin: left; transition: width .35s ease, transform .75s cubic-bezier(.16, 1, .3, 1); }
.compare-metric:nth-child(2) .compare-track i, .compare-metric:nth-child(5) .compare-track i { background: var(--signal); }
.compare-metric:nth-child(3) .compare-track i { background: var(--orange); }
.compare-foot { margin: 24px 0 0; padding-top: 14px; border-top: 1px solid var(--line); color: var(--muted); font-size: .6rem; line-height: 1.45; }

.method {
  position: relative;
  isolation: isolate;
  min-height: 840px;
  display: grid;
  grid-template-columns: .75fr 1.55fr;
  gap: 7vw;
  align-items: center;
  padding: 132px 4.3vw;
  overflow: hidden;
  background: #070b15;
  color: var(--paper);
}
.method-backdrop {
  position: absolute;
  z-index: -2;
  inset: -4%;
  background:
    linear-gradient(90deg, rgba(7, 11, 21, .94) 0%, rgba(10, 16, 32, .82) 43%, rgba(10, 16, 32, .7) 100%),
    linear-gradient(180deg, rgba(82, 108, 255, .08), rgba(7, 11, 21, .52)),
    url("assets/decision-city-bg.jpg") center center / cover no-repeat;
  transform-origin: center;
}
.method::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 430px;
  height: 430px;
  left: -165px;
  bottom: -250px;
  border: 1px solid rgba(196, 167, 255, .3);
  border-radius: 50%;
  box-shadow: 0 0 0 66px rgba(196, 167, 255, .04), 0 0 0 132px rgba(196, 167, 255, .025);
}
.method::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .16;
  background-image: linear-gradient(rgba(243, 240, 231, .1) 1px, transparent 1px), linear-gradient(90deg, rgba(243, 240, 231, .1) 1px, transparent 1px);
  background-size: 52px 52px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 58%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 58%, #000 100%);
}
.method-title, .method-grid { position: relative; z-index: 1; }
.method .step-label { color: var(--signal); }
.method h2 { margin-top: 30px; text-shadow: 0 5px 28px rgba(0, 0, 0, .3); }
.method h2 em { color: var(--signal); font-style: normal; }
.method-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(243, 240, 231, .28); border-left: 1px solid rgba(243, 240, 231, .28); box-shadow: 0 28px 70px rgba(0, 0, 0, .18); }
.method-grid article { min-height: 330px; padding: 24px; border-right: 1px solid rgba(243, 240, 231, .28); border-bottom: 1px solid rgba(243, 240, 231, .28); background: rgba(10, 16, 32, .58); backdrop-filter: blur(12px); transition: background .25s ease, transform .25s ease; }
.method-grid article:hover { background: rgba(17, 25, 44, .76); transform: translateY(-5px); }
.method-grid span { color: var(--signal); font-family: var(--mono); font-size: .68rem; }
.method-grid h3 { margin: 92px 0 15px; font-family: var(--display); font-size: 1.34rem; font-weight: 900; line-height: .9; text-transform: uppercase; }
.method-grid p { margin: 0; color: #d3d8e2; font-size: .76rem; line-height: 1.58; }

footer { min-height: 170px; display: grid; grid-template-columns: 1fr minmax(280px, 560px) 1fr; gap: 35px; align-items: center; padding: 35px 4.3vw; background: #070b15; }
footer > * { opacity: 1 !important; transform: none !important; filter: none !important; transition: none !important; }
.footer-logo { justify-self: start; }
footer p { margin: 0; color: var(--muted); font-size: .66rem; line-height: 1.5; text-align: center; }
.design-credit { justify-self: end; padding-bottom: 5px; border-bottom: 1px solid rgba(196, 167, 255, .4); color: #d8dcea; font-size: .72rem; font-weight: 600; letter-spacing: .11em; text-decoration: none; text-transform: uppercase; transition: color .2s ease, border-color .2s ease; }
.design-credit:hover { border-color: var(--signal); color: var(--signal); }

.motion-ready .reveal-item {
  opacity: 0;
  transform: translateY(38px);
  filter: blur(7px);
  transition:
    opacity .82s cubic-bezier(.16, 1, .3, 1) var(--reveal-delay, 0ms),
    transform .82s cubic-bezier(.16, 1, .3, 1) var(--reveal-delay, 0ms),
    filter .82s cubic-bezier(.16, 1, .3, 1) var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}
.motion-ready .reveal-item.reveal-left { transform: translateX(-44px); }
.motion-ready .reveal-item.reveal-right { transform: translateX(44px); }
.motion-ready .reveal-item.reveal-scale { transform: translateY(24px) scale(.965); }
.motion-ready .reveal-item.reveal-backdrop {
  transform: scale(1.1);
  filter: blur(9px) saturate(.75);
  transition-duration: 1.55s;
}
.motion-ready .reveal-item.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0) saturate(1);
}
.motion-ready .reveal-item.is-visible:not(.reveal-backdrop) { will-change: auto; }
.motion-ready .compare-card:not(.is-visible) .compare-track i { transform: scaleX(0); }
.motion-ready .compare-card.is-visible .compare-track i { transform: scaleX(1); transition-delay: calc(var(--reveal-delay, 0ms) + 280ms); }

.business-button, .city-button, .metric-button, .compare-button, .compare-remove { transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease; }
.business-button:hover { transform: translateY(-4px); }
.city-button:hover, .metric-button:hover { transform: translateY(-2px); }
.compare-button:hover { transform: translateY(-3px); }
.motion-ready .business-button.reveal-item.is-visible:hover { transform: translateY(-4px); }
.motion-ready .city-button.reveal-item.is-visible:hover, .motion-ready .metric-button.reveal-item.is-visible:hover { transform: translateY(-2px); }
.motion-ready .compare-button.reveal-item.is-visible:hover { transform: translateY(-3px); }
.motion-ready .method-grid article.reveal-item.is-visible:hover { transform: translateY(-5px); }

@media (max-width: 1180px) {
  .hero { grid-template-columns: 1.3fr .7fr; }
  .hero h1 { font-size: clamp(5rem, 11vw, 8.5rem); }
  .explorer { grid-template-columns: minmax(0, 1.45fr) 340px; }
  .primary-signal b { font-size: 1.2rem; }
  .method { grid-template-columns: 1fr; }
  .method-grid h3 { margin-top: 45px; }
}

@media (max-width: 900px) {
  .site-header { grid-template-columns: 1fr auto; padding: 0 22px; }
  .edition { display: none; }
  .hero { min-height: 920px; grid-template-columns: 1fr; padding: 64px 24px 86px; }
  .hero h1 { align-self: auto; margin-top: 55px; font-size: clamp(4.4rem, 19vw, 8rem); }
  .hero-side { margin-top: 55px; }
  .workspace, .comparison, .method { padding-left: 24px; padding-right: 24px; }
  .workspace-head, .comparison-head { grid-template-columns: 1fr; }
  .business-picker { grid-template-columns: repeat(2, 1fr); }
  .business-button:nth-child(2) { border-right: 0; }
  .business-button:nth-child(-n+2) { border-bottom: 1px solid var(--line-dark); }
  .explorer { grid-template-columns: 1fr; }
  .map-frame { min-height: 570px; }
  .area-panel { min-height: 690px; }
  .comparison-grid { grid-template-columns: 1fr; }
  .compare-card { min-height: 390px; }
  .method { min-height: auto; padding-top: 108px; padding-bottom: 108px; }
  .method-grid { grid-template-columns: 1fr; }
  .method-grid h3 { margin-top: 25px; }
  footer { grid-template-columns: 1fr; text-align: left; }
  footer p { text-align: left; }
  .design-credit { justify-self: start; }
}

@media (max-width: 560px) {
  .site-header { min-height: 72px; }
  .data-link { font-size: .55rem; }
  .hero { min-height: 840px; padding-left: 18px; padding-right: 18px; }
  .hero h1 { font-size: clamp(3.85rem, 20vw, 6rem); }
  .workspace, .comparison, .method { padding: 62px 16px 72px; }
  .workspace-head { gap: 20px; }
  .workspace h2, .comparison h2, .method h2 { font-size: 2.7rem; }
  .business-button { min-height: 88px; padding: 13px; }
  .business-button b { font-size: 1.15rem; }
  .map-toolbar { align-items: flex-start; flex-direction: column; padding: 14px; }
  .metric-row { padding-left: 14px; padding-right: 14px; }
  .map-frame { min-height: 480px; }
  .map-caption { left: 14px; }
  .map-legend { left: 14px; }
  .map-hint { display: none; }
  .area-panel { min-height: 670px; padding: 22px 18px; }
  .area-heading h3 { font-size: 2.65rem; }
  .comparison-head { gap: 20px; }
  .compare-card { padding: 18px; }
  footer { padding: 40px 18px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .motion-ready .reveal-item { opacity: 1 !important; transform: none !important; filter: none !important; }
}
