@font-face {
  font-family: "Inter";
  src: url("/assets/inter-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

/* Shared with LOCAL Arizona Places and LOCAL Ohio Places */
:root {
  --navy-950: #041726;
  --navy-900: #071f31;
  --navy-800: #0b2a40;
  --navy-700: #123a55;
  --ink: #102e3d;
  --ink-2: #2c4656;
  --muted: #536775;
  --mist: #d4dde3;
  --line: #e3e8ec;
  --orange: #ff8741;
  --orange-2: #ff914f;
  --orange-deep: #e8651c;
  --cream: #fbfaf7;
  --sand: #fff8ea;
  --white: #ffffff;
  --radius: 5px;
  --radius-lg: 14px;
  --shadow: 0 1px 2px rgb(7 31 49 / 6%), 0 12px 32px -12px rgb(7 31 49 / 18%);
  --shadow-lg: 0 2px 4px rgb(7 31 49 / 6%), 0 28px 60px -24px rgb(7 31 49 / 35%);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  color: var(--ink);
  background: var(--cream);
  font-family: "Inter", "Inter Fallback", Arial, sans-serif;
  font-feature-settings: "cv11", "ss01";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--cream);
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
h1,
h2,
h3,
p,
ol,
ul,
figure,
blockquote {
  margin: 0;
}
ol,
ul {
  padding: 0;
  list-style: none;
}
:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
  border-radius: 2px;
}
::selection {
  background: var(--orange);
  color: var(--navy-900);
}
.sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.icon {
  width: 1.15em;
  height: 1.15em;
  flex: none;
}
.wrap {
  width: min(1240px, calc(100% - 96px));
  margin-inline: auto;
}
.section {
  padding-block: clamp(80px, 10vw, 136px);
}
.skip {
  position: fixed;
  top: -80px;
  left: 16px;
  z-index: 100;
  background: var(--white);
  color: var(--navy-900);
  padding: 12px 16px;
  border-radius: var(--radius);
  font-weight: 700;
}
.skip:focus {
  top: 12px;
}

/* Type */
h1 {
  font-size: clamp(58px, 8.4vw, 124px);
  font-weight: 750;
  line-height: 0.94;
  letter-spacing: -0.052em;
}
h2 {
  font-size: clamp(36px, 4.6vw, 64px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.045em;
  text-wrap: balance;
}
h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
}
.accent {
  color: var(--orange);
}
.accent-text {
  color: var(--orange-deep);
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.kicker-light {
  color: #c8d6df;
}
.kicker-case {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: none;
}
.kicker-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgb(255 135 65 / 22%);
}
.section-head {
  margin-bottom: clamp(40px, 5vw, 64px);
}
.section-head-split {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 48px;
  align-items: end;
}
.section-intro {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
  max-width: 440px;
  justify-self: end;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 15px 24px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s,
    transform 0.2s var(--ease),
    box-shadow 0.2s;
}
.btn-sm {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 14px;
}
.btn-primary {
  background: var(--orange);
  color: var(--navy-900);
  box-shadow: 0 10px 24px -12px rgb(255 135 65 / 80%);
}
.btn-primary:hover {
  background: var(--orange-2);
  transform: translateY(-2px);
}
.btn-ghost {
  color: var(--white);
  border: 1px solid rgb(255 255 255 / 34%);
  background: rgb(255 255 255 / 6%);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  border-color: var(--white);
  background: rgb(255 255 255 / 12%);
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  transition:
    background 0.3s,
    box-shadow 0.3s,
    backdrop-filter 0.3s;
}
.site-header.is-solid {
  background: rgb(7 31 49 / 92%);
  backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 1px 0 rgb(255 255 255 / 8%);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1240px, calc(100% - 96px));
  height: 84px;
  margin-inline: auto;
}
.brand img {
  width: 172px;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  color: #e5edf2;
  font-size: 14px;
  font-weight: 600;
}
.site-nav > a:not(.btn) {
  position: relative;
  padding-block: 8px;
}
.site-nav > a:not(.btn)::after {
  content: "";
  position: absolute;
  inset: auto 0 2px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.site-nav > a:not(.btn):hover::after {
  transform: scaleX(1);
}
.site-nav .btn {
  margin-left: 4px;
}

/* Hero — LOCAL Starts Here, with the state doors as the main action */
.hero {
  position: relative;
  isolation: isolate;
  padding: 116px 0 28px;
  color: var(--white);
  background: var(--navy-950);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 55% 60% at 74% 48%, rgb(22 66 96 / 70%), transparent 70%),
    radial-gradient(ellipse 35% 35% at 70% 60%, rgb(255 135 65 / 14%), transparent 70%),
    radial-gradient(circle at 6% 100%, rgb(255 135 65 / 8%), transparent 40%);
}
.hero-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: end;
}
.hero-copy {
  position: relative;
  z-index: 2;
  animation: rise 0.9s var(--ease) both;
}
.hero h1 {
  font-size: clamp(54px, 6vw, 88px);
}
.hero-intro {
  padding-bottom: 6px;
  animation: rise 0.9s var(--ease) 0.08s both;
}
.hero-value {
  max-width: 500px;
  color: var(--white);
  font-size: clamp(19px, 1.6vw, 22px);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -0.015em;
}
.hero-tagline span {
  display: inline-block;
}
.hero-tagline {
  max-width: 500px;
  margin-top: 14px;
  color: #aebfcb;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.hero-choose {
  margin: clamp(28px, 3.4vw, 44px) 0 14px;
  color: #aebfcb;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero .state-cards {
  animation: rise 1s var(--ease) 0.15s both;
}
.hero .state-card {
  box-shadow: 0 30px 60px -30px rgb(0 0 0 / 80%);
}
.hero .state-media {
  aspect-ratio: 4 / 3;
}
.hero .more-states {
  margin-top: 20px;
  padding: 14px;
  border-color: rgb(255 255 255 / 18%);
  color: #aebfcb;
  font-size: 14px;
}
.hero-scroll {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: max-content;
  margin: clamp(20px, 3vw, 40px) auto 0;
  padding: 8px 14px;
  color: #aebfcb;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s;
}
.hero-scroll:hover {
  color: var(--white);
}
.hero-scroll .icon {
  color: var(--orange);
  animation: nudge 2s ease-in-out infinite;
}

/* Our network — the map story */
.network {
  position: relative;
  isolation: isolate;
  color: var(--white);
  background: var(--navy-900);
  overflow: hidden;
}
.network-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 55% 50% at 70% 34%, rgb(22 66 96 / 80%), transparent 70%),
    radial-gradient(ellipse 35% 25% at 68% 48%, rgb(255 135 65 / 12%), transparent 70%);
}
.network-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(24px, 3vw, 48px);
  align-items: center;
}
.network h2 {
  font-size: clamp(40px, 4.6vw, 66px);
}
.network h2 .accent {
  color: var(--orange);
}
.network-lede {
  max-width: 440px;
  margin-top: 18px;
  color: #c8d6df;
  font-size: 17px;
  line-height: 1.6;
}
.network .story {
  margin: 30px 0 0;
}

/* Story timeline */
.story {
  position: relative;
  display: grid;
  gap: 4px;
  margin: 28px 0 30px;
  padding-left: 2px;
}
.story::before {
  content: "";
  position: absolute;
  top: 14px;
  bottom: 14px;
  left: 7px;
  width: 2px;
  border-radius: 2px;
  background: rgb(255 255 255 / 10%);
}
.story-step {
  position: relative;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: center;
  padding: 7px 0;
  color: var(--white);
}
.story-mark {
  position: relative;
  z-index: 1;
  width: 12px;
  height: 12px;
  border: 2px solid var(--orange);
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgb(255 135 65 / 18%);
}
.story-text {
  font-size: clamp(18px, 1.55vw, 21px);
  font-weight: 700;
  letter-spacing: -0.025em;
}
.story-desc {
  grid-column: 2;
  padding-top: 2px;
  color: #aebfcb;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Map: a tilted ground plane with an upright overlay */
.hm {
  position: relative;
  aspect-ratio: 975 / 610;
  margin: 0 -72px 0 -12px;
  perspective: 1500px;
}
.hm-ground {
  position: absolute;
  inset: 0;
  transform: rotateX(30deg) rotateZ(-4deg) scale(1.1);
  transform-origin: 50% 62%;
  transform-style: preserve-3d;
}
.hm-svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.dot-sand {
  fill: #eadcc6;
}
.dot-orange {
  fill: var(--orange);
}
.dot-mist {
  fill: #e5edf2;
}
.hm-state {
  fill: url(#dots-sand);
  opacity: 0.36;
  transition: opacity 0.5s var(--ease) calc(var(--d, 0s) * 0.4);
}
.hm.focus-1 .hm-state {
  animation: wave 1.5s var(--ease) var(--d, 0s) both;
}
.hm-hit {
  fill: transparent;
}
.hm-lit,
.hm-outline {
  opacity: 0;
  transition: opacity 0.8s var(--ease);
}
.hm-lit.is-az,
.hm-lit.is-oh {
  fill: url(#dots-orange);
}
.hm-lit.is-ut {
  fill: url(#dots-mist);
}
.hm-outline {
  fill: none;
  stroke-width: 1.3;
  stroke-linejoin: round;
}
.hm-outline.is-az,
.hm-outline.is-oh {
  stroke: var(--orange);
}
.hm-outline.is-ut {
  stroke: #c8d6df;
  stroke-dasharray: 4 4;
}
.hm.s2 .hm-lit.is-az,
.hm.s2 .hm-lit.is-oh {
  opacity: 1;
  filter: drop-shadow(0 0 3px rgb(255 135 65 / 75%));
}
.hm.s2 .hm-lit.is-oh,
.hm.s2 .hm-outline.is-oh {
  transition-delay: 0.3s;
}
.hm.s2 .hm-lit.is-ut {
  opacity: 0.8;
  transition-delay: 0.6s;
}
.hm.s2 .hm-outline {
  opacity: 0.75;
}
.hm.s2 .hm-outline.is-ut {
  transition-delay: 0.6s;
  animation: dash-flow 2.4s linear infinite;
}
.hm-link {
  cursor: pointer;
}
.hm-link:hover .hm-outline,
.hm-link.is-active .hm-outline,
.hm-link:focus-visible .hm-outline {
  opacity: 1;
  stroke-width: 2.4;
}
.hm-link:focus-visible {
  outline: none;
}
.hm-halo {
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  transition: opacity 1.2s;
}
.hm.s2 .hm-halo {
  opacity: 1;
  animation: halo 5s ease-in-out infinite;
}
.hm.s2 .hm-halo.is-oh {
  animation-delay: 2.5s;
}
.hm-anchor {
  fill: none;
}

/* City pins on the ground */
.hm-city {
  pointer-events: none;
}
.hm-dot {
  fill: var(--white);
  stroke: var(--orange-deep);
  stroke-width: 2.2;
  transform: scale(0);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) var(--d, 0s);
}
.hm-city.is-ut .hm-dot {
  fill: var(--navy-950);
  stroke: #c8d6df;
}
.hm-ripple {
  fill: none;
  stroke: var(--white);
  stroke-width: 1.2;
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
}
.hm.s3 .hm-dot {
  transform: scale(1);
}
.hm.s3 .hm-city:not(.is-ut) .hm-ripple {
  animation: ripple 2.8s ease-out var(--d, 0s) infinite;
}

/* Upright overlay: state tags and city names */
.hm-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.hm-overlay [data-anchor] {
  position: absolute;
  top: 0;
  left: 0;
}
.hm-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgb(255 135 65 / 85%);
  border-radius: 999px;
  background: rgb(4 23 38 / 88%);
  color: var(--white);
  font-size: 15px;
  font-weight: 750;
  letter-spacing: -0.01em;
  white-space: nowrap;
  box-shadow: 0 12px 28px -12px rgb(0 0 0 / 80%);
  backdrop-filter: blur(8px);
  pointer-events: auto;
  opacity: 0;
  translate: -50% calc(-50% + 8px);
  transition:
    opacity 0.5s var(--ease),
    translate 0.5s var(--ease),
    background 0.2s;
}
.hm-tag i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 3px rgb(74 222 128 / 20%);
}
.hm-tag .icon {
  color: var(--orange);
}
a.hm-tag:hover,
a.hm-tag.is-active {
  background: rgb(96 45 20 / 95%);
}
.hm-tag.is-ut {
  border: 1px dashed #7f9cb0;
  color: #c8d6df;
}
.hm-tag.is-ut i {
  background: #9fb3c1;
  box-shadow: none;
}
.hm.s2 .hm-tag {
  opacity: 1;
  translate: -50% -50%;
}
.hm.s2 .hm-tag.is-az {
  transition-delay: 0.2s;
}
.hm.s2 .hm-tag.is-oh {
  transition-delay: 0.5s;
}
.hm.s2 .hm-tag.is-ut {
  transition-delay: 0.8s;
}
.hm-name {
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  text-shadow:
    0 1px 2px rgb(4 23 38 / 95%),
    0 0 10px rgb(4 23 38 / 90%);
  opacity: 0;
  transition:
    opacity 0.5s 0.35s,
    color 0.4s;
}
.hm-name.is-left {
  translate: calc(-100% - 12px) -50%;
}
.hm-name.is-right {
  translate: 12px -50%;
}
.hm-name.is-ut {
  color: #c8d6df;
}
.hm.s3 .hm-name {
  opacity: 1;
}

.hm-states {
  display: none;
}

/* Before the story starts (JS only), the map waits in darkness. */
.js .hm:not(.s1) .hm-state {
  opacity: 0;
}

/* Without JS, show the finished map (labels need JS to be placed). */
html:not(.js) .hm-lit.is-az,
html:not(.js) .hm-lit.is-oh,
html:not(.js) .hm-halo {
  opacity: 1;
}
html:not(.js) .hm-lit.is-ut,
html:not(.js) .hm-outline {
  opacity: 0.75;
}
html:not(.js) .hm-dot {
  transform: scale(1);
}
html:not(.js) .hm-overlay {
  display: none;
}
html:not(.js) .hm-states {
  display: flex;
}
@keyframes dash-flow {
  to {
    stroke-dashoffset: -24;
  }
}
@keyframes wave {
  0% {
    opacity: 0.36;
  }
  35% {
    opacity: 0.95;
  }
  100% {
    opacity: 0.36;
  }
}
@keyframes ripple {
  0% {
    opacity: 0.8;
    transform: scale(1);
  }
  70%,
  100% {
    opacity: 0;
    transform: scale(4);
  }
}
@keyframes halo {
  0%,
  100% {
    transform: scale(0.94);
  }
  50% {
    transform: scale(1.06);
  }
}
@keyframes nudge {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(4px);
  }
}

@media (max-width: 1080px) {
  .hm {
    margin-right: -32px;
  }
  .hm-tag {
    padding: 6px 11px;
    font-size: 13px;
  }
  .hm-name {
    font-size: 12px;
  }
}
@media (max-width: 860px) {
  .hero {
    padding-top: 96px;
  }
  .hero-head,
  .network-grid {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: clamp(50px, 15vw, 72px);
  }
  .hero-head {
    gap: 16px;
  }
  .hero-value {
    font-size: 18px;
  }
  .hm {
    display: grid;
    aspect-ratio: auto;
    gap: 14px;
    margin: 8px -6px 0;
    perspective: 900px;
  }
  .hm-ground {
    position: relative;
    inset: auto;
    aspect-ratio: 975 / 610;
    transform: rotateX(24deg) scale(1.04);
  }
  .hm-overlay [data-anchor]:not(.hm-name) {
    display: none;
  }
  .hm-overlay {
    bottom: auto;
    aspect-ratio: 975 / 610;
  }
  .hm-name {
    font-size: 11px;
  }
  .story-text {
    font-size: 18px;
  }
  .hm-states {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 6px;
  }
  .hm-states a,
  .hm-states span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 14px;
    border: 1px solid rgb(255 135 65 / 60%);
    border-radius: 999px;
    background: rgb(255 135 65 / 12%);
    font-size: 14px;
    font-weight: 700;
  }
  .hm-states span {
    border: 1px dashed #7f9cb0;
    background: none;
    color: #c8d6df;
  }
  .hm-states i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #9fb3c1;
  }
  .hm-states i.is-live {
    background: #4ade80;
  }
}
@media (max-width: 860px) {
  .hero .state-media {
    aspect-ratio: 16 / 9;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-intro,
  .hero .state-cards,
  .hero-scroll .icon {
    animation: none;
  }
}

/* States */
.states {
  background: var(--cream);
}
.states-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: end;
  margin-bottom: clamp(36px, 4vw, 52px);
}
.states-aside .section-intro {
  justify-self: start;
  max-width: 520px;
}
.states-label {
  margin: 32px 0 14px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.states-list {
  display: grid;
  gap: 12px;
}
.states-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 600;
}
.states-list span {
  display: grid;
  flex: none;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgb(255 135 65 / 14%);
  color: var(--orange-deep);
}
.states-list .icon {
  width: 19px;
  height: 19px;
}
.map-stage {
  position: relative;
  padding: clamp(16px, 3vw, 36px) clamp(12px, 3vw, 40px) clamp(16px, 2vw, 24px);
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    radial-gradient(circle at 20% 60%, rgb(255 135 65 / 9%), transparent 36%),
    radial-gradient(circle at 74% 38%, rgb(255 135 65 / 8%), transparent 30%),
    var(--white);
  box-shadow: var(--shadow);
}
.network-map {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}
.map-state {
  fill: #e6ebee;
  stroke: var(--white);
  stroke-width: 1.3;
  stroke-linejoin: round;
  transition: fill 0.2s;
}
.map-base .map-state:hover {
  fill: #dbe2e6;
}
.map-live {
  fill: var(--orange);
  cursor: pointer;
  filter: drop-shadow(0 6px 10px rgb(232 101 28 / 30%));
}
.map-link:hover .map-live,
.map-link:focus-visible .map-live,
.map-live.is-active {
  fill: var(--orange-deep);
}
.map-link:focus-visible {
  outline: none;
}
.map-link:focus-visible .map-live {
  stroke: var(--navy-900);
  stroke-width: 3;
}
.map-soon {
  fill: url(#soon-hatch);
  stroke: var(--navy-700);
  stroke-width: 1.4;
  stroke-dasharray: 4 3;
}
.hatch-bg {
  fill: #dfe7ec;
}
.hatch-line {
  fill: #b5c6d1;
}
.map-label {
  font:
    800 15px "Inter",
    Arial,
    sans-serif;
  letter-spacing: 0.04em;
  text-anchor: middle;
  pointer-events: none;
}
.map-label.on-live {
  fill: var(--white);
}
.map-label.on-soon {
  fill: var(--navy-900);
}
.beacon {
  pointer-events: none;
}
.beacon-ring {
  fill: none;
  stroke: var(--orange);
  stroke-width: 2;
  transform-box: fill-box;
  transform-origin: center;
  animation: beacon 2.8s var(--ease) infinite;
  opacity: 0;
}
.beacon-ring-late {
  animation-delay: 1.4s;
}
.map-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 28px;
  margin-top: clamp(12px, 2vw, 24px);
  color: var(--muted);
  font-size: 13px;
  font-weight: 550;
}
.map-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.map-legend i {
  width: 14px;
  height: 14px;
  border-radius: 4px;
}
.legend-live {
  background: var(--orange);
}
.legend-soon {
  background: repeating-linear-gradient(45deg, #b5c6d1 0 2px, #dfe7ec 2px 5px);
  outline: 1px dashed var(--navy-700);
  outline-offset: -1px;
}
.legend-future {
  background: #e6ebee;
}
.state-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.state-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}
a.state-card:hover,
a.state-card.is-active {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.state-media {
  position: relative;
  aspect-ratio: 4 / 3.6;
  overflow: hidden;
  background: var(--navy-800);
}
.state-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}
a.state-card:hover .state-media img,
a.state-card.is-active .state-media img {
  transform: scale(1.045);
}
.state-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(4 23 38 / 0%) 45%, rgb(4 23 38 / 82%) 100%);
}
.status-chip {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgb(255 255 255 / 92%);
  color: var(--navy-900);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}
.status-chip::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #8ea3b1;
}
.status-chip.is-live::before {
  background: #16a34a;
  box-shadow: 0 0 0 3px rgb(22 163 74 / 20%);
}
.state-caption {
  position: absolute;
  inset: auto 22px 20px;
  z-index: 1;
  color: var(--white);
}
.state-caption h3 {
  font-size: clamp(34px, 3.2vw, 46px);
  font-weight: 750;
  letter-spacing: -0.045em;
  line-height: 1;
}
.state-caption p {
  margin-top: 8px;
  color: #d4dde3;
  font-size: 14px;
  font-weight: 550;
}
.state-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 84px;
  padding: 16px 22px;
}
.state-logo {
  width: auto;
  height: 46px;
  max-width: 68%;
  object-fit: contain;
  object-position: left center;
}
.state-go {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}
a.state-card .state-go .icon {
  display: grid;
  width: 34px;
  height: 34px;
  padding: 8px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--navy-900);
  transition: transform 0.25s var(--ease);
}
a.state-card:hover .state-go .icon {
  transform: rotate(45deg);
}
.state-card.is-soon .state-media img {
  filter: saturate(0.72);
}
.state-card.is-soon .state-go {
  padding: 8px 12px;
  border: 1px dashed #aebfcb;
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.02em;
}
.more-states {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
  padding: 18px;
  border: 1px dashed #cdd7de;
  border-radius: var(--radius-lg);
  color: var(--muted);
  font-size: 15px;
  font-weight: 550;
  text-align: center;
}
.more-dots {
  display: inline-flex;
  gap: 5px;
}
.more-dots i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  animation: blink 1.6s infinite;
}
.more-dots i:nth-child(2) {
  animation-delay: 0.2s;
}
.more-dots i:nth-child(3) {
  animation-delay: 0.4s;
}

/* About */
.about {
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.about-copy h2 {
  margin-bottom: 28px;
}
.loop {
  position: relative;
  aspect-ratio: 480 / 400;
}
.loop-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.loop-track {
  fill: none;
  stroke: #f1e6d6;
  stroke-width: 26;
}
.loop-arc {
  fill: none;
  stroke: var(--orange-deep);
  stroke-width: 1.8;
  stroke-dasharray: 4 5;
  animation: dash-flow 1.4s linear infinite;
}
.loop-runner {
  fill: var(--orange);
  filter: drop-shadow(0 0 6px rgb(255 135 65 / 80%));
}
.loop-center {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  align-content: center;
  width: 36%;
  aspect-ratio: 1;
  translate: -50% -50%;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--white);
  text-align: center;
  box-shadow: 0 24px 50px -20px rgb(7 31 49 / 60%), 0 0 0 10px rgb(255 135 65 / 10%);
}
.loop-center span {
  color: var(--orange);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 800;
  line-height: 1;
}
.loop-center strong {
  max-width: 120px;
  margin-top: 6px;
  font-size: clamp(13px, 1.1vw, 15px);
  font-weight: 700;
  line-height: 1.25;
}
.loop-steps li {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  max-width: 196px;
  padding: 10px 14px 10px 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.3;
  box-shadow: var(--shadow);
  translate: -50% -50%;
}
.loop-steps strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
}
.loop-icon {
  display: grid;
  flex: none;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgb(255 135 65 / 14%);
  color: var(--orange-deep);
}
.loop-icon .icon {
  width: 19px;
  height: 19px;
}
.loop-steps .n1 {
  top: 12.5%;
  left: 50%;
}
.loop-steps .n2 {
  top: 50%;
  left: 86%;
}
.loop-steps .n3 {
  top: 87.5%;
  left: 50%;
}
.loop-steps .n4 {
  top: 50%;
  left: 13%;
}
.about h2 {
  font-size: clamp(44px, 6vw, 86px);
}
.underline {
  background: linear-gradient(var(--orange), var(--orange)) 0 92% / 100% 0.12em no-repeat;
}
.about-copy > p:not(.kicker) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}
.about-copy > p:not(.kicker) + p {
  margin-top: 18px;
}
.about-copy > p.about-lead {
  color: var(--ink);
  font-size: clamp(22px, 2vw, 27px);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.025em;
}

/* Ecosystem */
.ecosystem {
  background: var(--sand);
}
.tile-tag {
  margin-bottom: 10px;
  color: var(--orange-deep);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.tile-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 26px;
  border-radius: 12px;
  background: rgb(255 135 65 / 14%);
  color: var(--orange-deep);
}
.tile-icon .icon {
  width: 24px;
  height: 24px;
}
.eco-index {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: clamp(32px, 4vw, 48px);
}
.eco-index a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 15px;
  border: 1px solid #eadfcb;
  border-radius: 999px;
  background: rgb(255 255 255 / 60%);
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 650;
  transition:
    background 0.25s,
    color 0.25s,
    border-color 0.25s;
}
.eco-index a span {
  color: #9fb0bb;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.eco-index a:hover {
  border-color: var(--orange);
}
.eco-index a.is-active {
  border-color: var(--navy-900);
  background: var(--navy-900);
  color: var(--white);
}
.eco-index a.is-active span {
  color: var(--orange);
}
.eco {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
  column-gap: clamp(40px, 6vw, 96px);
}
.eco-item {
  display: contents;
}
.eco-visual {
  position: sticky;
  top: max(104px, calc(50vh - 320px));
  grid-column: 1;
  grid-row: 1 / 7;
  align-self: start;
  height: min(640px, calc(100vh - 150px));
  border-radius: 24px;
  background: var(--navy-900);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  opacity: 0;
  transform: scale(0.97);
  transition:
    opacity 0.6s var(--ease),
    transform 0.8s var(--ease);
  container-type: size;
}
.eco-item.is-active .eco-visual {
  z-index: 1;
  opacity: 1;
  transform: none;
}
.eco-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.eco-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(4 23 38 / 0%) 55%, rgb(4 23 38 / 35%));
  pointer-events: none;
}
.eco-text {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: min(76vh, 680px);
  padding: 40px 0 40px 34px;
  border-left: 2px solid #eadfcb;
  opacity: 0.38;
  transition:
    opacity 0.5s var(--ease),
    border-color 0.5s;
  scroll-margin-top: 120px;
}
.eco-item:nth-child(1) .eco-text {
  grid-row: 1;
}
.eco-item:nth-child(2) .eco-text {
  grid-row: 2;
}
.eco-item:nth-child(3) .eco-text {
  grid-row: 3;
}
.eco-item:nth-child(4) .eco-text {
  grid-row: 4;
}
.eco-item:nth-child(5) .eco-text {
  grid-row: 5;
}
.eco-item:nth-child(6) .eco-text {
  grid-row: 6;
}
.eco-item.is-active .eco-text {
  border-color: var(--orange);
  opacity: 1;
}
.eco-num {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
  letter-spacing: 0.08em;
}
.eco-num span {
  color: #b3a58f;
}
.eco-text h3 {
  margin-bottom: 16px;
  font-size: clamp(32px, 3.3vw, 46px);
  font-weight: 750;
  letter-spacing: -0.045em;
  line-height: 1.02;
}
.eco-text > p:not(.eco-num, .tile-tag) {
  max-width: 470px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}
.eco-text strong {
  color: var(--ink);
}
.eco-points {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}
.eco-points li {
  position: relative;
  padding-left: 30px;
  color: var(--ink-2);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}
.eco-points li::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: var(--orange);
}
.eco-points li::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 6.5px;
  width: 6px;
  height: 9px;
  border: solid var(--navy-900);
  border-width: 0 2px 2px 0;
  rotate: 45deg;
}
.eco-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.eco-chips li {
  padding: 7px 12px;
  border: 1px solid #eadfcb;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 650;
}

/* Shared overlay pieces */
.float-chip {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  border-radius: 999px;
  background: var(--white);
  color: var(--navy-900);
  font-size: 13px;
  font-weight: 700;
  box-shadow: var(--shadow-lg);
}
.float-chip .icon {
  color: var(--orange-deep);
}
.chip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgb(255 135 65 / 22%);
}
.chip-tl {
  top: 6%;
  left: 6%;
}
.chip-br {
  right: 6%;
  bottom: 6%;
}
.line {
  display: block;
  height: 0.5em;
  margin-top: 0.5em;
  border-radius: 99px;
  background: #dfe6ea;
}
.line.short {
  width: 62%;
}
.eco-item.is-active .float-chip,
.eco-item.is-active .toast,
.eco-item.is-active .product,
.eco-item.is-active .chat,
.eco-item.is-active .phone {
  animation: pop-in 0.8s var(--ease) 0.15s both;
}

/* 01 City LIVING */
.eco-v-living .eco-bg {
  filter: brightness(0.5) saturate(0.9) blur(1px);
  transform: scale(1.04);
}
.covers {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.cover {
  position: absolute;
  width: min(46cqw, 38cqh * 1.1);
  aspect-ratio: 0.735;
  border-radius: 3px;
  color: var(--white);
  overflow: hidden;
  container-type: inline-size;
  box-shadow:
    1px 2px 0 #eae3d7,
    2px 4px 0 #c5b9a8,
    3px 6px 0 #ede4d6,
    6px 14px 16px rgb(33 16 5 / 30%),
    14px 30px 40px rgb(0 0 0 / 40%);
}
.cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cover::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgb(0 0 0 / 45%) 0%, rgb(0 0 0 / 0%) 34%, rgb(0 0 0 / 0%) 52%, rgb(0 0 0 / 62%) 100%);
}
.cover::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  box-shadow: inset 4px 0 6px rgb(0 0 0 / 35%);
}
.cover-back {
  top: 50%;
  left: 50%;
  translate: -88% -54%;
  rotate: -8deg;
  filter: brightness(0.9);
}
.cover-front {
  top: 50%;
  left: 50%;
  translate: -18% -44%;
  rotate: 5deg;
}
.cover-mast,
.cover-story {
  position: absolute;
  z-index: 2;
  text-align: center;
}
.cover-mast {
  inset: 7cqw 5cqw auto;
}
.cover-mast span {
  display: block;
  font-size: 2.6cqw;
  font-weight: 600;
  letter-spacing: 0.6cqw;
}
.cover-mast strong {
  display: block;
  margin-top: 2.4cqw;
  font:
    700 15cqw / 1.05 Georgia,
    serif;
  letter-spacing: -0.7cqw;
  white-space: nowrap;
  text-shadow: 0 2px 12px rgb(0 0 0 / 25%);
}
.cover-mast i {
  font-weight: 400;
}
.cover-mast em {
  display: block;
  margin-top: 1.6cqw;
  font-size: 3.6cqw;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.9cqw;
  text-transform: uppercase;
}
.cover-story {
  inset: auto 7cqw 9cqw;
  display: flex;
  flex-direction: column;
  gap: 3.4cqw;
  text-align: left;
}
.cover-story span {
  font-size: 2.6cqw;
  font-weight: 650;
  letter-spacing: 0.45cqw;
}
.cover-story strong {
  font:
    400 10.5cqw / 1.05 Georgia,
    serif;
  letter-spacing: -0.25cqw;
}
.eco-item.is-active .cover-front {
  animation: cover-in 1s var(--ease) both;
}

/* 02 Merchant Pages */
.eco-v-merchant .eco-bg {
  filter: brightness(0.82);
  object-position: 70% center;
}
.phone {
  position: absolute;
  top: 7cqh;
  left: 7cqw;
  z-index: 1;
  width: 42cqh;
  height: 86cqh;
  border: 0.55em solid #0b1720;
  border-radius: 2.6em;
  background: var(--white);
  color: var(--navy-900);
  font-size: 1.9cqh;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgb(0 0 0 / 60%);
}
.phone-cover {
  height: 30%;
  overflow: hidden;
}
.phone-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 22%;
}
.phone-body {
  padding: 0 1.1em 1em;
}
.phone-logo {
  display: grid;
  place-items: center;
  width: 3.4em;
  height: 3.4em;
  margin-top: -1.7em;
  margin-bottom: 0.7em;
  border: 0.22em solid var(--white);
  border-radius: 50%;
  background: var(--orange);
  color: var(--navy-900);
}
.phone-logo .icon {
  width: 1.6em;
  height: 1.6em;
}
.phone strong {
  display: block;
  font-size: 1.2em;
  font-weight: 750;
  letter-spacing: -0.02em;
}
.phone small {
  display: block;
  margin-top: 0.2em;
  color: var(--muted);
  font-size: 0.8em;
}
.phone-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4em;
  margin-top: 0.9em;
}
.phone-actions span {
  padding: 0.5em 0;
  border-radius: 0.5em;
  background: #f1f4f6;
  font-size: 0.72em;
  font-weight: 700;
  text-align: center;
}
.phone-actions span:first-child {
  background: var(--orange);
}
.phone-label {
  margin-top: 1em;
  font-size: 0.78em;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.phone-hours {
  display: flex;
  justify-content: space-between;
  margin-top: 0.9em;
  padding: 0.55em 0.7em;
  border-radius: 0.5em;
  background: #f1f4f6;
  font-size: 0.75em;
  font-weight: 650;
}
.phone-hours span:first-child {
  display: flex;
  align-items: center;
  gap: 0.4em;
}
.phone-hours i {
  width: 0.55em;
  height: 0.55em;
  border-radius: 50%;
  background: #16a34a;
}
.phone-map {
  position: relative;
  display: flex;
  align-items: flex-end;
  height: 5.5em;
  margin-top: 0.8em;
  padding: 0.5em;
  border-radius: 0.6em;
  background:
    linear-gradient(90deg, transparent 46%, #fff 46% 50%, transparent 50%),
    linear-gradient(0deg, transparent 58%, #fff 58% 64%, transparent 64%),
    linear-gradient(135deg, #e6ecef, #d7e0e5);
  overflow: hidden;
}
.phone-map em {
  position: relative;
  padding: 0.25em 0.55em;
  border-radius: 99px;
  background: var(--white);
  font-size: 0.68em;
  font-style: normal;
  font-weight: 700;
}
.phone-map-pin {
  position: absolute;
  top: 26%;
  left: 44%;
  width: 1.1em;
  height: 1.1em;
  border-radius: 50% 50% 50% 0;
  background: var(--orange);
  rotate: -45deg;
  box-shadow: 0 0 0 0.35em rgb(255 135 65 / 25%);
}
.phone-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.35em;
  margin-top: 0.9em;
}
.phone-thumbs img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 0.45em;
  object-fit: cover;
}

/* 03 LOCAL Insiders */
.eco-v-insiders .eco-bg {
  object-position: 40% center;
}
.toast {
  position: absolute;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: min(360px, 86%);
  padding: 13px 16px 13px 13px;
  border-radius: 16px;
  background: rgb(255 255 255 / 94%);
  color: var(--navy-900);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
}
.toast strong {
  display: block;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.3;
}
.toast small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}
.toast-icon {
  display: grid;
  flex: none;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--navy-900);
  color: var(--orange);
}
.toast-icon.is-orange {
  background: var(--orange);
  color: var(--navy-900);
}
.toast-top {
  top: 6%;
  right: 6%;
}
.toast-bottom {
  bottom: 7%;
  left: 6%;
}
.eco-item.is-active .toast-bottom {
  animation-delay: 0.45s;
}

/* 04 SHOP LOCAL */
.eco-v-shop .eco-bg {
  filter: brightness(0.7);
  object-position: 60% center;
}
.product {
  position: absolute;
  right: 6%;
  bottom: 6%;
  z-index: 1;
  width: min(300px, 64%);
  border-radius: 18px;
  background: var(--white);
  color: var(--navy-900);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.product-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}
.product-body {
  padding: 14px 16px 16px;
}
.product-body small {
  display: block;
  color: var(--orange-deep);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.product-body strong {
  display: block;
  margin-top: 4px;
  font-size: 17px;
  font-weight: 750;
  letter-spacing: -0.02em;
}
.product-btn {
  display: block;
  margin-top: 12px;
  padding: 10px;
  border-radius: var(--radius);
  background: var(--orange);
  font-size: 13px;
  font-weight: 750;
  text-align: center;
}

/* 05 MarketLOCK360 */
.eco-v-lock {
  background:
    radial-gradient(circle at 50% 50%, rgb(255 135 65 / 18%), transparent 55%),
    var(--navy-900);
}
.eco-v-lock::after {
  display: none;
}
.lock-ring,
.lock-labels {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(66cqw, 66cqh);
  aspect-ratio: 1;
  translate: -50% -50%;
}
.lock-seg {
  fill: none;
  stroke: var(--orange);
  stroke-width: 22;
  opacity: 0.35;
  animation: seg-glow 6s linear infinite;
}
.lock-seg:nth-child(2) {
  animation-delay: 1s;
}
.lock-seg:nth-child(3) {
  animation-delay: 2s;
}
.lock-seg:nth-child(4) {
  animation-delay: 3s;
}
.lock-seg:nth-child(5) {
  animation-delay: 4s;
}
.lock-seg:nth-child(6) {
  animation-delay: 5s;
}
.lock-orbit {
  fill: none;
  stroke: rgb(255 255 255 / 16%);
  stroke-width: 1.5;
  stroke-dasharray: 3 6;
}
.lock-core {
  fill: var(--navy-800);
  stroke: rgb(255 255 255 / 10%);
  stroke-width: 1.5;
}
.lock-icon {
  fill: none;
  stroke: var(--orange);
  stroke-width: 5;
  stroke-linejoin: round;
}
.lock-num {
  fill: var(--white);
  font:
    800 46px "Inter",
    Arial,
    sans-serif;
  letter-spacing: -0.04em;
  text-anchor: middle;
}
.lock-sub {
  fill: #aebfcb;
  font:
    700 11px "Inter",
    Arial,
    sans-serif;
  letter-spacing: 0.2em;
  text-anchor: middle;
}
.lock-labels li {
  position: absolute;
  translate: -50% -50%;
  padding: 6px 11px;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 999px;
  background: rgb(7 31 49 / 88%);
  color: #e5edf2;
  font-size: 12px;
  font-weight: 650;
  white-space: nowrap;
}
.lock-labels .l1 {
  top: 6%;
  left: 76%;
}
.lock-labels .l2 {
  top: 50%;
  left: 101%;
}
.lock-labels .l3 {
  top: 94%;
  left: 76%;
}
.lock-labels .l4 {
  top: 94%;
  left: 24%;
}
.lock-labels .l5 {
  top: 50%;
  left: -1%;
}
.lock-labels .l6 {
  top: 6%;
  left: 24%;
}

/* 06 Ai */
.eco-v-ai .eco-bg {
  object-position: center 62%;
}
.chat {
  position: absolute;
  top: 6%;
  right: 6%;
  left: 6%;
  z-index: 1;
  max-width: 360px;
  margin-left: auto;
  padding: 16px;
  border-radius: 20px;
  background: rgb(255 255 255 / 94%);
  color: var(--navy-900);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
  font-size: 14px;
}
.chat-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.chat-head strong {
  font-size: 14px;
  font-weight: 750;
}
.chat-mark {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--navy-900);
  color: var(--orange);
}
.bubble {
  padding: 11px 14px;
  line-height: 1.45;
}
.bubble-me {
  width: fit-content;
  max-width: 84%;
  margin-left: auto;
  border-radius: 16px 16px 4px 16px;
  background: var(--navy-900);
  color: var(--white);
  font-weight: 550;
}
.bubble-ai {
  max-width: 90%;
  margin-top: 10px;
  border-radius: 16px 16px 16px 4px;
  background: #fff3e8;
}
.bubble-ai p {
  font-weight: 550;
}
.bubble-ai .line {
  background: #f5d9c2;
}
.typing {
  display: inline-flex;
  gap: 4px;
  margin: 12px 0 0 6px;
}
.typing i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  animation: blink 1.2s infinite;
}
.typing i:nth-child(2) {
  animation-delay: 0.2s;
}
.typing i:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes pop-in {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes cover-in {
  from {
    opacity: 0;
    translate: -10% -34%;
  }
  to {
    opacity: 1;
  }
}
@keyframes seg-glow {
  0%,
  30%,
  100% {
    opacity: 0.35;
  }
  8%,
  18% {
    opacity: 1;
  }
}

@media (max-width: 900px) {
  .eco-index {
    display: none;
  }
  .eco {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 56px;
  }
  .eco-item {
    display: block;
  }
  .eco-visual {
    position: relative;
    top: auto;
    height: auto;
    aspect-ratio: 4 / 4.4;
    opacity: 1;
    transform: none;
  }
  .eco-text {
    min-height: 0;
    padding: 26px 0 0;
    border-left: 0;
    opacity: 1;
  }
  .eco-item .float-chip,
  .eco-item .toast,
  .eco-item .product,
  .eco-item .chat,
  .eco-item .phone,
  .eco-item .cover-front {
    animation: none !important;
  }
}
@media (max-width: 640px) {
  .eco-visual {
    aspect-ratio: 4 / 5;
    border-radius: 18px;
  }
  .toast strong {
    font-size: 13px;
  }
  .toast-icon {
    width: 34px;
    height: 34px;
  }
  .lock-ring,
  .lock-labels {
    width: min(56cqw, 60cqh);
  }
  .lock-labels li {
    font-size: 10.5px;
    padding: 5px 9px;
  }
  .chat {
    font-size: 13px;
  }
}
/* Human FIRST */
.human {
  position: relative;
  background: var(--navy-900);
  color: var(--white);
  overflow: hidden;
}
.human::before {
  content: "";
  position: absolute;
  inset: -30% auto auto -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgb(255 135 65 / 14%), transparent 60%);
  pointer-events: none;
}
.human-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.human h2 {
  font-size: clamp(50px, 6.6vw, 96px);
  line-height: 0.98;
  margin-bottom: 32px;
}
.human h2 .accent-text {
  color: var(--orange);
}
.human-lead {
  color: var(--white);
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -0.02em;
  max-width: 500px;
}
.human-copy > p:not(.kicker, .human-lead) {
  margin-top: 18px;
  max-width: 500px;
  color: #b7c7d2;
  font-size: 17px;
  line-height: 1.75;
}
.human-quote {
  margin-top: 36px;
  padding-left: 22px;
  border-left: 3px solid var(--orange);
  color: #c8d6df;
  font-size: 20px;
  line-height: 1.5;
}
.human-quote strong {
  color: var(--white);
  font-weight: 650;
}
.layers {
  position: relative;
  padding: 0 0 40px 40px;
}
.layer-tech {
  position: absolute;
  top: -36px;
  right: 0;
  width: 64%;
  height: 72%;
  padding: 22px;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 20px;
  background: linear-gradient(160deg, var(--navy-700), var(--navy-800));
  overflow: hidden;
}
.layer-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgb(255 135 65 / 0%), rgb(255 135 65 / 0%)),
    radial-gradient(rgb(255 255 255 / 16%) 1px, transparent 1.5px) 0 0 / 16px 16px;
  mask-image: linear-gradient(200deg, #000, transparent 75%);
}
.layer-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgb(255 135 65 / 22%), transparent);
  translate: -100% 0;
  animation: scan 4.5s ease-in-out infinite;
}
.layer-tech .layer-label,
.layer-tech .layer-chips {
  position: relative;
  justify-content: flex-end;
  text-align: right;
}
.layer-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #aebfcb;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.layer-label .icon {
  color: var(--orange);
}
.layer-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}
.layer-chips li {
  padding: 6px 11px;
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: 999px;
  color: #d4dde3;
  font-size: 12.5px;
  font-weight: 650;
}
.layer-human {
  position: relative;
  z-index: 1;
  margin: 110px 0 0;
  border-radius: 20px;
  background: var(--white);
  color: var(--navy-900);
  overflow: hidden;
  box-shadow: 0 40px 80px -30px rgb(0 0 0 / 70%);
}
.layer-human img {
  width: 100%;
  aspect-ratio: 16 / 9.5;
  object-fit: cover;
  object-position: 30% 35%;
}
.layer-human figcaption {
  padding: 18px 20px 20px;
}
.layer-human .layer-label {
  color: var(--orange-deep);
}
.layer-human .layer-label .icon {
  color: var(--orange-deep);
}
.layer-human .layer-chips li {
  border-color: #eadfcb;
  background: var(--sand);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}
@keyframes scan {
  0%,
  15% {
    translate: -100% 0;
  }
  85%,
  100% {
    translate: 100% 0;
  }
}

/* Discover */
.discover {
  background: var(--cream);
}
.beliefs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  padding-block: 30px;
  border-block: 1px solid var(--line);
}
.beliefs p {
  color: var(--ink-2);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -0.02em;
}
.beliefs p + p {
  padding-left: 32px;
  border-left: 1px solid var(--line);
}
.paths {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.path {
  display: flex;
  flex-direction: column;
  padding: 30px 28px 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  transition:
    border-color 0.25s,
    box-shadow 0.25s,
    transform 0.25s var(--ease);
}
.path:hover {
  border-color: rgb(255 135 65 / 60%);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.path h3 {
  margin-bottom: 10px;
}
.path p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}
.path-go {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 26px;
  color: var(--orange-deep);
  font-size: 14px;
  font-weight: 700;
}

/* Start */
.start {
  position: relative;
  padding-block: clamp(72px, 9vw, 120px);
  background:
    radial-gradient(circle at 88% 10%, rgb(255 135 65 / 20%), transparent 40%),
    var(--sand);
  color: var(--ink);
  overflow: hidden;
}
.start .kicker {
  color: var(--muted);
}
.start-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: center;
}
.start h2 {
  font-size: clamp(60px, 9vw, 136px);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.9;
}
.start-beliefs {
  display: grid;
  gap: 10px;
  max-width: 460px;
  margin-top: 30px;
}
.start-beliefs li {
  position: relative;
  padding-left: 20px;
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.55;
}
.start-beliefs li::before {
  content: "";
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}
.start-lead {
  color: var(--ink);
  font-size: clamp(18px, 1.5vw, 21px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.015em;
}
.start-label {
  margin: 26px 0 12px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.start-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.start-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 84px;
  padding: 18px 22px;
  border: 1px solid #e6d8c2;
  border-radius: 12px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.03em;
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s;
}
a.start-link {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--navy-900);
}
a.start-link:hover {
  background: var(--orange-2);
}
a.start-link .icon {
  width: 26px;
  height: 26px;
  transition: transform 0.2s var(--ease);
}
a.start-link:hover .icon {
  transform: translate(3px, -3px);
}
.start-link em {
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
a.start-link {
  box-shadow: 0 14px 30px -16px rgb(232 101 28 / 70%);
}
.start-link.is-soon {
  border-style: dashed;
  border-color: #cdbca3;
  background: rgb(255 255 255 / 55%);
  color: var(--ink);
}
.start-link.is-future {
  border-style: dashed;
  border-color: #cdbca3;
  color: #8a9aa5;
}

/* Footer */
.footer {
  padding-block: 56px 28px;
  background: var(--navy-900);
  color: var(--white);
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgb(255 255 255 / 12%);
}
.footer-top .brand img {
  width: 190px;
}
.footer-motto {
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.18em;
}
.footer-motto span {
  margin-inline: 12px;
  color: var(--orange);
}
.footer-mid {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-block: 36px;
}
.footer-label {
  margin-bottom: 14px;
  color: #8ea3b1;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.footer-links {
  display: grid;
  gap: 10px;
  color: #d4dde3;
  font-size: 15px;
}
.footer-links a:hover {
  color: var(--orange);
}
.footer-links span {
  color: #8ea3b1;
}
.footer-brand {
  text-align: right;
  color: #b7c7d2;
  font-size: 15px;
  line-height: 1.8;
}
.footer-brand strong {
  color: var(--white);
}
.footer-known {
  color: var(--orange);
  font-weight: 650;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgb(255 255 255 / 12%);
  color: #8ea3b1;
  font-size: 13px;
}

/* Motion */
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}
.js .reveal.is-in {
  opacity: 1;
  transform: none;
}
@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes beacon {
  0% {
    opacity: 0.9;
    transform: scale(0.6);
  }
  100% {
    opacity: 0;
    transform: scale(3.2);
  }
}
@keyframes blink {
  0%,
  100% {
    opacity: 0.25;
  }
  50% {
    opacity: 1;
  }
}
@keyframes spin {
  to {
    rotate: 360deg;
  }
}

/* Responsive */
@media (max-width: 1080px) {
  .wrap,
  .header-inner {
    width: calc(100% - 64px);
  }
  .site-nav > a:not(.btn) {
    display: none;
  }
}
@media (max-width: 860px) {
  .section-head-split,
  .states-top,
  .about-grid,
  .human-grid,
  .start-inner {
    grid-template-columns: 1fr;
  }
  .section-intro {
    justify-self: start;
  }
  .state-cards {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-inline: auto;
  }
  .state-media {
    aspect-ratio: 4 / 3.3;
  }
  .beliefs {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .beliefs p + p {
    padding: 18px 0 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .paths {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  :root {
    scroll-padding-top: 68px;
  }
  .wrap,
  .header-inner {
    width: calc(100% - 32px);
  }
  .header-inner {
    height: 68px;
  }
  .brand img {
    width: 132px;
  }
  .site-nav .btn {
    min-height: 38px;
    padding: 8px 12px;
    font-size: 13px;
  }
  .kicker {
    font-size: 10px;
    letter-spacing: 0.16em;
  }
  .section-intro {
    font-size: 16px;
  }
  .map-stage {
    border-radius: 16px;
  }
  .map-label {
    font-size: 22px;
  }
  .map-legend {
    font-size: 12px;
    gap: 8px 16px;
  }
  .loop {
    display: grid;
    gap: 10px;
    aspect-ratio: auto;
  }
  .loop-ring {
    display: none;
  }
  .loop-center {
    position: relative;
    top: auto;
    left: auto;
    order: 2;
    width: 100%;
    aspect-ratio: auto;
    padding: 16px;
    border-radius: 14px;
    translate: none;
    grid-auto-flow: column;
    gap: 12px;
    justify-content: center;
  }
  .loop-center strong {
    max-width: none;
    margin: 0;
    font-size: 16px;
  }
  .loop-center span {
    font-size: 32px;
  }
  .loop-steps {
    display: grid;
    gap: 10px;
  }
  .loop-steps li {
    position: static;
    width: auto;
    max-width: none;
    translate: none;
  }
  .layers {
    padding: 0;
  }
  .layer-tech {
    position: relative;
    inset: auto;
    width: auto;
    height: auto;
    margin-bottom: -18px;
    padding-bottom: 34px;
  }
  .layer-human {
    margin: 0 10px;
  }
  .start-links {
    grid-template-columns: 1fr;
  }
  .start-link {
    min-height: 68px;
    font-size: 21px;
  }
  .footer-top,
  .footer-mid,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-motto {
    font-size: 11px;
    letter-spacing: 0.12em;
  }
  .footer-motto span {
    margin-inline: 6px;
  }
  .footer-brand {
    text-align: left;
  }
}
@media (prefers-reduced-motion: reduce) {
  :root {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .js .reveal {
    opacity: 1;
    transform: none;
  }
  .beacon-ring {
    opacity: 0.5;
  }
}
