:root {
  --navy: #09224A;
  --green: #01DCA2;
  --muted: #66758A;
  --bg: #F4F7F9;
  --line: #DCE4EC;
  --white: #fff;
  --ink: #061428;
  --page: 1280px;
  --gutter: 2.5rem;
}

body.site {
  background: var(--white);
  color: var(--navy);
}

.site-wrap {
  width: 100%;
  max-width: var(--page);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.k {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.k::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  margin-top: 0.55rem;
  background: var(--green);
}

.k--light { color: rgba(255,255,255,0.72); }
.k--light::after { background: var(--green); }

.site-bar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  box-shadow: inset 0 -2px 0 var(--green);
}

.site--home .site-bar {
  position: fixed;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
}

.site--home .site-bar.is-solid,
.site--home.is-nav .site-bar {
  background: rgba(255,255,255,0.94);
  border-bottom-color: var(--line);
  box-shadow: inset 0 -2px 0 var(--green);
}

.site-bar__in {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 0 var(--gutter);
  height: 64px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
}

.site-logo img {
  display: block;
  height: 26px;
  width: auto;
  max-width: 132px;
}

.site-logo img.site-logo__white { display: none; }

.site--home .site-bar:not(.is-solid) .site-logo__ink { display: none; }
.site--home .site-bar:not(.is-solid) .site-logo__white { display: block; }

.site--home.is-nav .site-bar .site-logo__ink { display: block; }
.site--home.is-nav .site-bar .site-logo__white { display: none; }

.site-nav {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
}

.site-nav a {
  padding: 0.4rem 0.7rem;
  border-radius: 8px;
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
}

.site-nav a:hover,
.site-nav a:focus {
  background: var(--bg);
  outline: none;
}

.site--home .site-bar:not(.is-solid) .site-nav a {
  color: #fff;
}

.site--home .site-bar:not(.is-solid) .site-nav a:hover,
.site--home .site-bar:not(.is-solid) .site-nav a:focus {
  background: rgba(255,255,255,0.1);
}

.site-bar__cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
}

.site-link,
.site-text {
  color: var(--navy);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
}

.site-text { box-shadow: inset 0 -2px 0 var(--green); }

.site--home .site-bar:not(.is-solid) .site-link { color: #fff; }

.site-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.6rem;
  padding: 0 1.2rem;
  border-radius: 8px;
  background: var(--green);
  color: var(--navy);
  font-weight: 800;
  font-size: 0.9rem;
  text-decoration: none;
  white-space: nowrap;
}

.site-btn:focus {
  outline: 2px solid var(--navy);
  outline-offset: 3px;
}

.site-menu {
  display: none;
  width: 2.2rem;
  height: 2.2rem;
  margin-left: auto;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.site-menu span {
  display: block;
  width: 1.15rem;
  height: 1.5px;
  margin: 0.22rem auto;
  background: var(--navy);
}

.site--home .site-bar:not(.is-solid) .site-menu span { background: #fff; }
.site--home.is-nav .site-menu span { background: var(--navy); }

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  background: #061428;
  color: #fff;
}

.hero__scene {
  position: absolute;
  inset: -3%;
  background: #061428 url("/img/hero.png") center / cover no-repeat;
  animation: scene 24s ease-in-out infinite alternate;
}

.hero__veil {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 52% 48% at 50% 46%, rgba(6,20,40,0.62), rgba(6,20,40,0.18) 58%, transparent 74%);
}

.hero__in {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 7rem var(--gutter) 5rem;
  text-align: center;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(3.1rem, 8vw, 6.2rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.hero h1 em {
  font-style: normal;
  color: var(--green);
}

.hero__sub {
  margin: 0 0 1.8rem;
  max-width: 22rem;
  color: rgba(255,255,255,0.78);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.4;
}

.hero__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.15rem;
  flex-wrap: wrap;
}

.hero__ghost,
.end__ghost {
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  box-shadow: inset 0 -2px 0 var(--green);
}

.hero__ghost:focus,
.end__ghost:focus {
  outline: 2px solid var(--green);
  outline-offset: 4px;
}

.hero__micro {
  margin: 1.6rem 0 0;
  color: rgba(255,255,255,0.82);
  font-size: 0.95rem;
  font-weight: 700;
  text-shadow: 0 1px 12px rgba(6,20,40,0.55);
}

.run {
  background: var(--ink);
  color: #fff;
  padding: 1.5rem 0 1.65rem;
}

.run__k {
  margin: 0 0 0.9rem;
  padding: 0 var(--gutter);
  text-align: center;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.run__rail {
  overflow: hidden;
  width: 100%;
}

.run__move {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  will-change: transform;
}

.run__move p {
  display: inline-block;
  margin: 0;
  padding-right: 0.4em;
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.05;
  white-space: nowrap;
}

.run__move i {
  display: inline-block;
  padding: 0 0.85em;
  font-style: normal;
  font-weight: 700;
  color: rgba(255,255,255,0.28);
}

.idea {
  padding: 7.5rem 0;
}

.idea__in {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 4rem;
  align-items: center;
}

.idea h2,
.show h2,
.make h2,
.vol h2,
.code h2,
.ping h2,
.fee h2,
.end h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(2.1rem, 4.6vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.idea p,
.show__head p,
.make__copy p,
.vol__top p,
.code__copy p,
.fee p {
  margin: 0;
  max-width: 34rem;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.6;
}

.idea__map {
  position: relative;
  min-height: 20rem;
}

.idea__wires {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.idea__node,
.idea__core {
  position: absolute;
  z-index: 1;
  padding: 0.45rem 0.75rem;
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.idea__node--a { top: 8%; left: 0; }
.idea__node--b { top: 44%; left: 0; }
.idea__node--c { bottom: 8%; left: 0; }
.idea__node--out { top: 44%; right: 0; background: var(--navy); color: #fff; border-color: transparent; }

.idea__core {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0.7rem 1.1rem;
  background: var(--green);
  border: 0;
  font-size: 1.15rem;
}

.show {
  padding: 3rem 0 7rem;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(1,220,162,0.12), transparent 55%),
    var(--bg);
}

.show__head { max-width: 36rem; margin-bottom: 2.4rem; }

.ui {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px rgba(9,34,74,0.08);
  overflow: hidden;
}

.ui__bar {
  display: flex;
  justify-content: space-between;
  padding: 0.85rem 1.2rem;
  border-bottom: 1px solid var(--line);
  box-shadow: inset 0 -2px 0 var(--green);
  font-size: 0.78rem;
  font-weight: 800;
}

.ui__body {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.25rem;
  padding: 1.4rem;
}

.ui__hero,
.ui__side,
.ui__chart,
.ui__mix,
.ui__list {
  padding: 1.1rem 1.15rem;
  background: var(--bg);
}

.ui__hero { grid-column: 1; }
.ui__side { grid-column: 2; }
.ui__chart { grid-column: 1 / -1; }
.ui__mix,
.ui__list { min-width: 0; }

.ui p {
  margin: 0 0 0.35rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ui__hero strong,
.ui__side strong {
  display: block;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.ui__hero em,
.ui__side span {
  display: block;
  margin-top: 0.45rem;
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
}

.ui__hero em { color: #0a8f6c; }

.ui__bars {
  display: flex;
  align-items: flex-end;
  gap: 0.45rem;
  height: 7.5rem;
  margin-top: 0.8rem;
}

.ui__bars i {
  flex: 1;
  display: block;
  background: var(--navy);
  opacity: 0.88;
}

.ui__bars i:nth-child(even) { background: var(--green); opacity: 1; }

.ui__mix ul,
.ui__list ul,
.sheet__medios {
  margin: 0.7rem 0 0;
  padding: 0;
  list-style: none;
}

.ui__mix li {
  display: grid;
  grid-template-columns: 7.5rem 1fr 2.2rem;
  gap: 0.6rem;
  align-items: center;
  margin: 0.45rem 0 0;
  font-size: 0.82rem;
  font-weight: 700;
}

.ui__mix li span {
  display: block;
  height: 3px;
  background: var(--green);
}

.ui__mix em {
  font-style: normal;
  color: var(--muted);
  text-align: right;
}

.ui__list li {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 1rem;
  padding: 0.55rem 0;
  border-top: 1px solid var(--line);
  font-size: 0.86rem;
}

.ui__list li span:nth-child(2) { color: var(--muted); }

.make { padding: 7.5rem 0; }

.make__in {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 22rem);
  gap: 5rem;
  align-items: center;
}

.sheet {
  padding: 1.5rem 1.4rem 1.4rem;
  background: var(--white);
  border-left: 3px solid var(--green);
  box-shadow: 0 24px 60px rgba(9,34,74,0.07);
}

.sheet__k {
  margin: 0 0 1.2rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sheet label {
  display: block;
  margin: 0.85rem 0 0.25rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sheet__val {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.sheet__medios {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.sheet__medios li {
  padding: 0.28rem 0.55rem;
  background: rgba(1,220,162,0.16);
  font-size: 0.78rem;
  font-weight: 800;
}

.sheet__medios li::before { content: "✓ "; color: var(--navy); }

.sheet__btn {
  margin: 1.2rem 0 0;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: var(--navy);
  font-weight: 800;
  font-size: 0.88rem;
}

.sheet__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  font-weight: 700;
}

.sheet__link code {
  font-family: inherit;
  font-weight: 800;
}

.vol {
  padding: 7rem 0;
  background: var(--ink);
  color: #fff;
}

.vol h2 { max-width: none; color: #fff; }

.vol__top p {
  color: rgba(255,255,255,0.62);
  max-width: 38rem;
}

.vol__top { margin-bottom: 2.8rem; }

.ledger { border-top: 1px solid rgba(255,255,255,0.12); }

.ledger__row {
  display: grid;
  grid-template-columns: 5.5rem 1fr 7rem 7rem;
  gap: 1rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.95rem;
  font-weight: 600;
}

.ledger__row--h {
  color: rgba(255,255,255,0.42);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ledger__row span:nth-child(3),
.ledger__row span:nth-child(4) { text-align: right; }

.ledger__row span:last-child { color: var(--green); }

.ledger__note {
  margin-top: 1.1rem;
  color: rgba(255,255,255,0.42);
  font-size: 0.88rem;
}

.code {
  padding: 7.5rem 0;
  background: #08182f;
  color: #fff;
}

.code__in {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 3.5rem;
  align-items: center;
}

.code h2 { color: #fff; }

.code__copy p { color: rgba(255,255,255,0.62); margin-bottom: 1.5rem; }

.term {
  background: #04101f;
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}

.term__bar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.4);
  font-size: 0.72rem;
  font-weight: 700;
}

.term__bar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
}

.term__bar i:first-child { background: var(--green); }

.term pre {
  margin: 0;
  padding: 1.2rem 1.15rem 1.4rem;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  color: rgba(255,255,255,0.82);
  font-size: 0.8rem;
  line-height: 1.55;
}

.c-k { color: var(--green); font-weight: 800; }
.c-s { color: #9be7d2; }
.c-b { color: #fff; }
.c-c { color: rgba(255,255,255,0.35); }

.ping { padding: 7rem 0; }

.ping h2 { max-width: 12ch; }

.ping__flow {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.85rem 1rem;
  margin-top: 2rem;
}

.ping__flow p {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.ping__flow code {
  padding: 0.2rem 0.45rem;
  background: rgba(1,220,162,0.16);
  font-family: inherit;
}

.ping__flow span {
  width: 2.5rem;
  height: 1px;
  background: var(--navy);
}

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

.use .site-wrap {
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
}

.use__row {
  display: grid;
  grid-template-columns: 12rem minmax(0, 1fr);
  gap: 2rem;
  align-items: baseline;
  padding: 2.15rem 0;
  border-bottom: 1px solid var(--line);
}

.use__row:last-child { border-bottom: 0; }

.use__row b {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.use__row span {
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.why {
  padding: 6.5rem var(--gutter);
  background: var(--bg);
}

.why__line {
  margin: 0;
  max-width: var(--page);
  margin-left: auto;
  margin-right: auto;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
  font-size: clamp(1.8rem, 4.4vw, 3.3rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.why__line:last-child { border-bottom: 0; }

.fee { padding: 7.5rem 0; }

.fee h2 { max-width: 12ch; }

.fee .site-text { display: inline-block; margin-top: 1.5rem; }

.end {
  padding: 6.5rem 0;
  background:
    radial-gradient(ellipse 50% 70% at 80% 50%, rgba(1,220,162,0.2), transparent 58%),
    var(--ink);
  color: #fff;
}

.end h2 {
  margin: 0;
  max-width: 12ch;
  color: #fff;
  font-size: clamp(2.6rem, 5.4vw, 4.6rem);
  line-height: 0.92;
}

.end h2 span {
  display: block;
  margin-bottom: 0.2em;
  color: rgba(255,255,255,0.48);
  font-size: 0.42em;
  letter-spacing: -0.03em;
}

.end__in {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2.5rem 4rem;
}

.end__cta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-bottom: 0.35rem;
  flex-wrap: wrap;
}

.end__cta .site-btn {
  height: 3rem;
  padding: 0 1.45rem;
  font-size: 0.95rem;
}

.site-foot {
  background: var(--white);
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding: 2.6rem 0;
}

.site-foot__in {
  display: grid;
  grid-template-columns: 1.3fr repeat(5, minmax(0, 1fr));
  gap: 1.4rem 1.5rem;
  width: 100%;
  padding: 0 var(--gutter);
}

.site-foot img {
  display: block;
  height: 24px;
  width: auto;
  max-width: 120px;
  margin: 0 0 0.5rem;
}

.site-foot p { margin: 0; font-size: 0.88rem; }

.site-foot__h {
  margin: 0 0 0.45rem !important;
  color: var(--navy);
  font-weight: 800;
  font-size: 0.68rem !important;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.site-foot a {
  display: block;
  margin: 0.3rem 0 0;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.88rem;
}

.site-foot a:hover,
.site-foot a:focus { color: var(--navy); }

.site--law { scroll-padding-top: 5.5rem; }

.law__hero {
  padding: 4.8rem 0 3rem;
  background:
    radial-gradient(ellipse 55% 80% at 88% 20%, rgba(1,220,162,0.18), transparent 58%),
    var(--ink);
  color: #fff;
}

.law__hero h1 {
  margin: 0 0 0.85rem;
  max-width: 16ch;
  font-size: clamp(2.3rem, 5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.96;
}

.law__lead {
  margin: 0 0 1.6rem;
  max-width: 38rem;
  color: rgba(255,255,255,0.68);
  font-size: 1.08rem;
  line-height: 1.55;
}

.law__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  flex-wrap: wrap;
}

.law__meta > p {
  margin: 0;
  color: rgba(255,255,255,0.48);
  font-size: 0.88rem;
}

.law__switch {
  display: inline-flex;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 8px;
}

.law__switch a {
  display: inline-flex;
  align-items: center;
  height: 2.25rem;
  padding: 0 0.95rem;
  color: rgba(255,255,255,0.72);
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
}

.law__switch a:hover,
.law__switch a:focus { color: #fff; outline: none; }

.law__switch a.is-on {
  background: var(--green);
  color: var(--navy);
}

.law__sheet {
  background: var(--bg);
  padding: 3.2rem 0 5.5rem;
}

.law__grid {
  display: grid;
  grid-template-columns: 15.5rem minmax(0, 46rem);
  justify-content: space-between;
  gap: 3.5rem;
  align-items: start;
}

.law__toc {
  position: sticky;
  top: 5.5rem;
}

.law__toc-h {
  margin: 0 0 0.7rem;
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.law__toc nav { display: flex; flex-direction: column; }

.law__toc a {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  padding: 0.34rem 0;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.35;
  text-decoration: none;
}

.law__toc a span {
  flex: 0 0 1.15rem;
  color: var(--green);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.law__toc a:hover,
.law__toc a:focus { color: var(--navy); outline: none; }

.law__doc {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 2.6rem 2.8rem 3rem;
}

.law__sec { scroll-margin-top: 5.5rem; }

.law__sec + .law__sec {
  margin-top: 2.2rem;
  padding-top: 2.2rem;
  border-top: 1px solid var(--line);
}

.law__sec h2 {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  margin: 0 0 0.85rem;
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.law__sec h2 span {
  flex: 0 0 auto;
  color: var(--green);
  font-variant-numeric: tabular-nums;
}

.law__doc p {
  margin: 0;
  color: #3d4d63;
  font-size: 1.02rem;
  line-height: 1.7;
}

.law__doc p + p,
.law__doc ul + p,
.law__doc p + ul { margin-top: 0.85rem; }

.law__doc ul {
  margin: 0.85rem 0 0;
  padding: 0;
  list-style: none;
}

.law__doc li {
  position: relative;
  margin: 0;
  padding: 0.32rem 0 0.32rem 1.15rem;
  color: #3d4d63;
  font-size: 1.02rem;
  line-height: 1.6;
}

.law__doc li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.88rem;
  width: 7px;
  height: 2px;
  background: var(--green);
}

.law__card {
  margin-top: 1rem;
  padding: 1.15rem 1.25rem;
  background: var(--bg);
  border-left: 3px solid var(--green);
  border-radius: 0 10px 10px 0;
}

.law__card-h {
  margin: 0 0 0.35rem !important;
  color: var(--navy) !important;
  font-weight: 800;
}

.law__card a { color: var(--navy); font-weight: 700; }

.miss {
  width: 100%;
  padding: 7rem var(--gutter);
  text-align: center;
}

.miss__k { margin: 0 0 0.5rem; font-weight: 800; letter-spacing: 0.06em; }
.miss h1 { margin: 0 0 0.4rem; font-size: 1.85rem; letter-spacing: -0.03em; }
.miss p { margin: 0; color: var(--muted); }
.miss__cta { margin-top: 1.3rem !important; display: flex; gap: 0.55rem; justify-content: center; flex-wrap: wrap; }

.miss__btn {
  display: inline-flex;
  align-items: center;
  height: 2.45rem;
  padding: 0 1.05rem;
  border-radius: 8px;
  background: var(--green);
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
}

.miss__btn--ghost { background: var(--white); border: 1px solid var(--line); }

.js-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js-in.is-in {
  opacity: 1;
  transform: none;
}

@keyframes scene {
  from { transform: scale(1); }
  to { transform: scale(1.05) translate(-1%, 1%); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__scene,
  .js-in {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

@media (max-width: 1100px) {
  .idea__in,
  .make__in,
  .code__in,
  .ui__body {
    grid-template-columns: 1fr;
  }
  .ui__hero,
  .ui__side,
  .ui__chart { grid-column: auto; }
  .site-foot__in { grid-template-columns: 1fr 1fr 1fr; }
}

@media (max-width: 860px) {
  :root { --gutter: 1.35rem; }
  .site-menu { display: block; }
  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 64px;
    flex-direction: column;
    align-items: stretch;
    padding: 0.5rem var(--gutter) 0.85rem;
    background: var(--white);
    border-bottom: 1px solid var(--line);
  }
  .site.is-nav .site-nav { display: flex; }
  .site.is-nav .site-nav a { color: var(--navy); }
  .site-bar__cta { margin-left: 0; }
  .site-link { display: none; }
  .hero {
    min-height: 100svh;
  }
  .hero__in {
    min-height: 100svh;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 6.2rem var(--gutter) 3.4rem;
  }
  .hero__scene {
    background-image: url("/img/hero-mobile.png");
    background-position: center;
    background-size: cover;
  }
  .hero__veil {
    background: radial-gradient(ellipse 88% 40% at 50% 46%, rgba(6,20,40,0.78), rgba(6,20,40,0.22) 62%, rgba(6,20,40,0.42) 100%);
  }
  .hero h1 { font-size: 2.85rem; }
  .hero__sub {
    max-width: 18rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem;
  }
  .hero__cta {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 1rem;
  }
  .hero__cta .site-btn {
    width: 100%;
    max-width: 17.5rem;
    height: 3rem;
  }
  .hero__micro {
    margin-top: 1.35rem;
    max-width: 18rem;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
    text-shadow: 0 2px 16px rgba(6,20,40,0.75);
  }
  .run { padding: 1.25rem 0 1.4rem; }
  .run__move p { font-size: 1.7rem; }
  .idea,
  .make,
  .vol,
  .code,
  .ping,
  .fee,
  .end { padding: 4.2rem 0; }
  .show { padding: 2rem 0 4.2rem; }
  .idea__map { min-height: 16rem; }
  .use__row { grid-template-columns: 1fr; gap: 0.4rem; padding: 1.55rem 0; }
  .why { padding: 3.5rem var(--gutter); }
  .why__line { font-size: 1.55rem; padding: 1rem 0; }
  .end__in { flex-direction: column; align-items: flex-start; }
  .end__cta { padding-bottom: 0; }
  .law__hero { padding: 3.6rem 0 2.4rem; }
  .law__hero h1 { max-width: none; }
  .law__grid { grid-template-columns: 1fr; gap: 1.4rem; }
  .law__toc { position: static; }
  .law__toc nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.15rem 1rem;
  }
  .law__toc a { padding: 0.22rem 0; font-size: 0.8rem; }
  .law__doc { padding: 1.55rem 1.25rem 2rem; border-radius: 12px; }
  .law__sec h2 { font-size: 1.12rem; }
  .ledger__row { grid-template-columns: 4rem 1fr 1fr; }
  .ledger__row span:nth-child(3) { display: none; }
  .site-foot__in { grid-template-columns: 1fr 1fr; }
  .ui__mix li { grid-template-columns: 6.2rem 1fr 2rem; }
}

@media (max-width: 520px) {
  .hero h1 { font-size: 2.55rem; }
  .hero__in { padding: 5.8rem var(--gutter) 3rem; }
  .ui__list li { grid-template-columns: 1fr auto; }
  .ui__list li span:nth-child(2) { display: none; }
}
