:root {
  --green: #f72565;
  --green-dark: #10264f;
  --green-soft: #d9f3e8;
  --pink: #ff4f83;
  --pink-soft: #ffe1ea;
  --blush: #fff6f1;
  --blue: #10264f;
  --blue-soft: #e8f1fb;
  --gold: #f6b33b;
  --lilac: #dccaf6;
  --paper: #fffaf4;
  --white: #ffffff;
  --line: #eadfd8;
  --cream: #fff4df;
  --sun-soft: #fff2c7;
  --mint-soft: #e9f7ef;
  --muted: #716672;
  --shadow: 0 24px 70px rgba(16, 38, 74, 0.12);
  --radius: 8px;
  --header-offset: 174px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-offset);
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 242, 199, 0.64), transparent 28%),
    radial-gradient(circle at 92% 4%, rgba(232, 241, 251, 0.72), transparent 30%),
    radial-gradient(circle at 78% 70%, rgba(255, 225, 234, 0.34), transparent 28%),
    linear-gradient(180deg, #fffaf4 0%, #ffffff 46%, #fff8ef 100%);
  color: var(--blue);
  font-family:
    Nunito, "Nunito Sans", Inter, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

button {
  font: inherit;
}

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  overflow: visible;
  border-bottom: 1px solid rgba(225, 231, 228, 0.72);
  background: rgba(255, 250, 244, 0.92);
  backdrop-filter: blur(18px);
}

.site-header-inner {
  position: relative;
  width: min(1480px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 380px) minmax(0, 1fr);
  align-items: center;
  column-gap: clamp(32px, 3.2vw, 48px);
  min-height: 124px;
  padding: 14px 0;
  overflow: visible;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  min-width: 0;
  overflow: visible;
  padding: 6px 0;
  font-weight: 900;
  gap: 10px;
}

.header-logo {
  display: block;
  width: 68px;
  height: 94px;
  object-fit: contain;
  object-position: center;
}

.header-wordmark {
  display: inline-flex;
  flex-direction: column;
  color: var(--blue);
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  font-weight: 950;
  line-height: .84;
  letter-spacing: -.04em;
}

.header-wordmark strong {
  color: var(--pink);
  font-size: 1.2em;
}

.brand-name {
  color: var(--blue);
  font-size: clamp(1.22rem, 2vw, 1.5rem);
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-name strong {
  color: var(--pink);
}

.nav-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
  color: #213452;
  font-size: clamp(0.72rem, 0.68vw, 0.78rem);
  font-weight: 800;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  border: 1px solid rgba(16, 38, 79, 0.1);
  border-radius: 999px;
  padding: 7px 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 244, 0.9));
  white-space: nowrap;
  transition:
    border-color 180ms ease,
    color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.nav-links a + a {
  margin-left: 36px;
}

.nav-links a + a::before {
  position: absolute;
  left: -27px;
  top: 50%;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  content: "CR";
  border: 1px solid rgba(180, 122, 22, 0.42);
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.86) 0 14%, transparent 15%),
    radial-gradient(circle at 72% 74%, rgba(180, 122, 22, 0.28), transparent 26%),
    linear-gradient(145deg, #fff4bd 0%, #f6b33b 48%, #d89518 100%);
  color: #7d4b0a;
  font-size: 0.44rem;
  font-weight: 950;
  line-height: 1;
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.78),
    inset 0 -2px 3px rgba(125, 75, 10, 0.18),
    0 5px 12px rgba(246, 179, 59, 0.22);
  transform: translateY(-50%);
  transform-style: preserve-3d;
  animation: coin-spin-soft 6.5s ease-in-out infinite, coin-shine-soft 6.5s ease-in-out infinite;
  pointer-events: none;
}

.nav-links a:hover {
  border-color: rgba(255, 79, 131, 0.28);
  background: linear-gradient(180deg, #ffffff, var(--sun-soft));
  color: var(--blue);
  box-shadow: 0 10px 22px rgba(246, 179, 59, 0.13);
}

@keyframes coin-spin-soft {
  0%,
  100% {
    transform: translateY(-50%) rotateY(0deg) rotateZ(0deg);
  }

  45% {
    transform: translateY(-50%) rotateY(180deg) rotateZ(7deg);
  }

  72% {
    transform: translateY(-50%) rotateY(360deg) rotateZ(0deg);
  }
}

@keyframes coin-shine-soft {
  0%,
  100% {
    filter: saturate(1) brightness(1);
    box-shadow:
      inset 0 1px 1px rgba(255, 255, 255, 0.78),
      inset 0 -2px 3px rgba(125, 75, 10, 0.18),
      0 5px 12px rgba(246, 179, 59, 0.22);
  }

  50% {
    filter: saturate(1.08) brightness(1.08);
    box-shadow:
      inset 0 1px 1px rgba(255, 255, 255, 0.9),
      inset 0 -2px 3px rgba(125, 75, 10, 0.15),
      0 7px 16px rgba(246, 179, 59, 0.3);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }

  .nav-links a + a::before {
    animation: none;
  }
}

.site-search {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  align-items: center;
  width: 42px;
  min-height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 79, 131, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--blue);
}

.site-search span {
  color: var(--pink);
  font-size: 1.05rem;
  font-weight: 950;
}

.site-search input {
  position: absolute;
  width: 1px;
  height: 1px;
  min-width: 0;
  border: 0;
  outline: 0;
  opacity: 0;
  background: transparent;
  color: var(--blue);
  font-size: 0.84rem;
  font-weight: 800;
  pointer-events: none;
}

.site-search input::placeholder {
  color: rgba(16, 38, 79, 0.52);
}

.search-feedback {
  position: absolute;
  right: 6px;
  bottom: -22px;
  display: none;
  min-width: max-content;
  padding: 4px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 850;
  box-shadow: 0 8px 18px rgba(16, 38, 74, 0.08);
}

.site-search.has-feedback .search-feedback {
  display: block;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.login-link,
.create-account-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 0.88rem;
  font-weight: 950;
  white-space: nowrap;
}

.login-link {
  border: 1px solid rgba(255, 79, 131, 0.24);
  background: rgba(255, 255, 255, 0.72);
  color: var(--blue);
  cursor: pointer;
}

.create-account-link {
  border: 1px solid var(--pink);
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(247, 37, 101, 0.18);
}

.menu-button {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--blue);
}

.section-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.8fr);
  gap: clamp(30px, 4.6vw, 64px);
  align-items: center;
  min-height: calc(86vh - 72px);
  padding: clamp(20px, 3.3vw, 38px) 0 clamp(34px, 5vw, 58px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--pink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 680px;
  margin-bottom: 18px;
  font-size: clamp(2.8rem, 4.8vw, 4.85rem);
  line-height: 1.03;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 620px;
  margin-bottom: 12px;
  font-size: clamp(2.15rem, 4vw, 3.7rem);
  line-height: 1;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4.5vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.18rem;
  line-height: 1.15;
}

.hero-copy > p,
.section-heading > p,
.section-copy > p {
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

.hero-copy > p {
  max-width: 610px;
}

.hero-kicker {
  opacity: 0.72;
  color: var(--green);
  font-size: 0.72rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 18px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 900;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 18px 40px rgba(247, 37, 101, 0.22);
}

.button.secondary {
  border-color: rgba(255, 79, 131, 0.28);
  background: linear-gradient(180deg, #ffffff, var(--paper));
  color: var(--green-dark);
  box-shadow: 0 14px 30px rgba(255, 79, 131, 0.1);
}

.entry-panel {
  margin-top: clamp(18px, 2.8vw, 30px);
}

.entry-panel h2 {
  max-width: none;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  line-height: 1.18;
}

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

.entry-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 16px;
  min-height: 264px;
  padding: 22px;
  border: 1px solid rgba(16, 38, 74, 0.09);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 94% 10%, rgba(255, 242, 199, 0.62), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 244, 0.92));
  box-shadow: 0 20px 52px rgba(16, 38, 74, 0.08);
}

.entry-card h3 {
  margin-bottom: 8px;
  color: var(--green-dark);
  font-size: 1.32rem;
}

.entry-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 750;
}

.entry-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--sun-soft), #ffffff);
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 950;
  box-shadow: inset 0 -1px 2px rgba(246, 179, 59, 0.2);
}

.merchant-entry .entry-icon {
  background: linear-gradient(145deg, var(--blue-soft), #ffffff);
  color: var(--blue);
}

.merchant-entry {
  background:
    radial-gradient(circle at 94% 10%, rgba(232, 241, 251, 0.86), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 252, 255, 0.9));
}

.visual-button {
  width: 100%;
  min-height: 48px;
  cursor: default;
}

.download-panel {
  margin-top: 18px;
}

.download-panel > span {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-weight: 950;
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.store-button {
  display: inline-grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  min-width: 172px;
  min-height: 54px;
  align-items: center;
  justify-content: start;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  padding: 8px 15px;
  background: #05070b;
  color: var(--white);
  text-align: left;
  box-shadow: 0 16px 34px rgba(16, 38, 74, 0.14);
  cursor: default;
}

.store-button small {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.64rem;
  font-weight: 850;
  line-height: 1;
}

.store-button strong {
  display: block;
  font-size: 1.05rem;
  line-height: 1.12;
}

.store-icon {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
}

.apple-icon {
  width: 25px;
  height: 27px;
  border-radius: 9px 9px 12px 12px;
  background: var(--white);
}

.apple-icon::before {
  position: absolute;
  top: -5px;
  right: 3px;
  width: 8px;
  height: 6px;
  content: "";
  border-radius: 8px 0 8px 0;
  background: var(--white);
  transform: rotate(-25deg);
}

.play-icon {
  width: 0;
  height: 0;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 24px solid var(--white);
  filter: drop-shadow(7px 0 0 rgba(255, 255, 255, 0.38));
}

.download-panel p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 750;
}

.hero-secondary-line {
  margin: 14px 0 0;
  color: var(--green-dark);
  font-size: 0.98rem;
  font-weight: 900;
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.hero-notes span {
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 850;
}

.hero-notes span:first-child {
  border-color: rgba(246, 179, 59, 0.38);
  background: linear-gradient(180deg, var(--sun-soft), #ffffff);
  color: var(--blue);
}

.prototype-note {
  max-width: 700px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.35;
  opacity: 0.74;
}

.hero-visual {
  position: relative;
  min-height: 500px;
  display: grid;
  align-content: start;
  place-items: center;
  padding-top: clamp(8px, 2.2vw, 26px);
}

.phone-preview {
  position: relative;
  z-index: 2;
  width: min(410px, 100%);
  padding: 14px;
  border: 1px solid #eadfd8;
  border-radius: 36px;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 242, 199, 0.7), transparent 26%),
    radial-gradient(circle at 82% 8%, rgba(232, 241, 251, 0.72), transparent 26%),
    radial-gradient(circle at 82% 72%, rgba(255, 225, 234, 0.38), transparent 28%),
    linear-gradient(180deg, #ffffff, var(--paper) 58%, #fffaf4),
    var(--white);
  box-shadow:
    0 34px 90px rgba(16, 38, 74, 0.13),
    0 10px 24px rgba(246, 179, 59, 0.09);
}

.app-mockup {
  overflow: hidden;
}

.app-chrome {
  width: 74px;
  height: 7px;
  margin: 0 auto 12px;
  border-radius: 999px;
  background: #d8e1dc;
}

.app-header {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 10px;
}

.app-title-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  min-width: 0;
}

.app-title-row img {
  width: 44px;
  height: 44px;
  border: 2px solid var(--white);
  border-radius: 14px;
  object-fit: cover;
  object-position: 50% 42%;
  box-shadow: 0 10px 18px rgba(16, 38, 74, 0.08);
}

.app-title-row > div {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.app-brand {
  color: var(--pink);
  font-size: 0.82rem;
  font-weight: 950;
}

.app-header strong {
  color: var(--blue);
  font-size: 1.22rem;
  line-height: 1.1;
}

.app-account {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
}

.app-header small {
  padding: 6px 9px;
  border: 1px solid rgba(16, 38, 74, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
  white-space: nowrap;
}

.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  color: var(--blue);
}

.phone-top span {
  width: 54px;
  height: 6px;
  border-radius: 999px;
  background: #d9e3dc;
}

.pig-card,
.balance-card,
.app-status,
.send-preview {
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 14px 38px rgba(16, 38, 74, 0.08);
}

.app-status {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2px 12px;
  align-items: end;
  margin-bottom: 10px;
  padding: 14px;
  border: 1px solid rgba(255, 79, 131, 0.12);
}

.app-status span,
.app-status small {
  color: var(--muted);
  font-weight: 850;
}

.app-status strong {
  grid-row: span 2;
  color: var(--green);
  font-size: 1.7rem;
  line-height: 1;
}

.app-status small {
  font-size: 0.78rem;
  text-transform: uppercase;
}

.app-mockup .app-status {
  grid-template-columns: 1fr;
  align-items: start;
}

.app-mockup .app-status strong {
  grid-row: auto;
}

.app-mockup .app-status small {
  max-width: 230px;
  text-transform: none;
}

.pig-card {
  position: relative;
  overflow: hidden;
  padding: 20px 16px 18px;
  text-align: center;
}

.pig-card::before {
  position: absolute;
  inset: 14px 18px auto auto;
  width: 52px;
  height: 52px;
  content: "";
  border-radius: 50%;
  background: var(--green-soft);
}

.pig-card::after {
  position: absolute;
  inset: auto 18px 18px auto;
  width: 42px;
  height: 42px;
  content: "";
  border-radius: 50%;
  background: rgba(255, 213, 223, 0.72);
}

.pig-card p {
  margin: 10px 0 2px;
  color: var(--muted);
  font-weight: 800;
}

.pig-card strong {
  color: var(--green-dark);
  font-size: 1.12rem;
}

.app-pig-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px;
  text-align: left;
}

.app-pig-card::before {
  inset: 12px 12px auto auto;
  width: 44px;
  height: 44px;
}

.app-pig-card::after {
  display: none;
}

.app-pig-logo {
  width: 112px;
  max-width: 100%;
  height: auto;
  border-radius: 18px;
  background: transparent;
  box-shadow: 0 14px 30px rgba(16, 38, 74, 0.08);
}

.pig-message span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
}

.pig-message strong {
  color: var(--green-dark);
  font-size: 1rem;
  line-height: 1.18;
}

.app-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  margin-top: 10px;
}

.app-actions button {
  min-height: 38px;
  border: 1px solid rgba(16, 38, 74, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 950;
  cursor: default;
}

.app-actions small {
  display: inline-block;
  margin-left: 4px;
  padding: 2px 5px;
  border-radius: 999px;
  background: var(--pink-soft);
  color: #8d2942;
  font-size: 0.62rem;
  font-weight: 950;
}

.balance-card {
  margin-top: 12px;
  padding: 16px 18px;
  border: 1px solid rgba(244, 91, 131, 0.12);
}

.balance-card span,
.balance-card small {
  display: block;
  color: var(--muted);
  font-weight: 800;
}

.balance-card strong {
  display: block;
  margin: 5px 0;
  color: var(--pink);
  font-size: 2rem;
  line-height: 1;
}

.send-pig-button {
  width: 100%;
  min-height: 50px;
  margin-top: 12px;
  border: 0;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font-weight: 950;
  box-shadow: 0 16px 34px rgba(247, 37, 101, 0.2);
  cursor: default;
}

.send-preview {
  display: grid;
  gap: 8px;
  margin-top: 10px;
  padding: 14px;
}

.send-preview h3 {
  margin: 0;
  color: var(--green-dark);
  font-size: 1rem;
}

.visual-fields {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 7px;
}

.visual-fields span {
  display: block;
  padding: 9px 10px;
  border: 1px solid rgba(16, 38, 74, 0.08);
  border-radius: 12px;
  background: #fbfaf6;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
}

.value-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.value-chips span {
  padding: 6px 8px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 0.76rem;
  font-weight: 950;
}

.send-preview .send-pig-button {
  min-height: 40px;
  margin-top: 0;
}

.send-preview p {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
}

.phone-disclaimer {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-align: center;
}

/* Placeholder Pig CSS used only in older conceptual sections until official assets are created. */
.pig-illustration {
  position: relative;
  display: inline-block;
  width: 160px;
  height: 150px;
  z-index: 1;
}

.pig-illustration.big {
  width: 174px;
  height: 162px;
}

.pig-illustration::after {
  position: absolute;
  top: 14px;
  left: 50%;
  width: 26px;
  height: 22px;
  content: "";
  border-top: 5px solid #e96984;
  border-left: 5px solid transparent;
  border-radius: 50%;
  transform: translateX(-50%) rotate(-18deg);
}

.pig-illustration .head,
.pig-illustration .face {
  position: absolute;
  inset: 24px 16px 12px;
  border-radius: 48% 48% 44% 44%;
}

.pig-illustration .face::before,
.pig-illustration .face::after {
  position: absolute;
  top: 82px;
  width: 18px;
  height: 10px;
  content: "";
  border-radius: 50%;
  background: rgba(244, 91, 131, 0.22);
}

.pig-illustration .face::before {
  left: 34px;
}

.pig-illustration .face::after {
  right: 34px;
}

.pig-illustration .head {
  background:
    radial-gradient(circle at 34% 36%, rgba(255, 255, 255, 0.86) 0 8%, transparent 9%),
    linear-gradient(145deg, #ffd3dc, #ff8ea5 78%);
  box-shadow: inset -16px -18px 28px rgba(211, 74, 103, 0.16);
}

.pig-illustration .ear {
  position: absolute;
  z-index: 0;
  top: 22px;
  width: 52px;
  height: 54px;
  border-radius: 14px 34px 16px 32px;
  background: linear-gradient(145deg, #ffc0cc, #f47b96);
}

.pig-illustration .ear.left {
  left: 8px;
  transform: rotate(-28deg);
}

.pig-illustration .ear.right {
  right: 8px;
  transform: rotate(118deg);
}

.pig-illustration .eye {
  position: absolute;
  top: 56px;
  width: 23px;
  height: 29px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 28%, #ffffff 0 18%, transparent 19%),
    var(--blue);
}

.pig-illustration .eye.left {
  left: 49px;
}

.pig-illustration .eye.right {
  right: 49px;
}

.pig-illustration .snout {
  position: absolute;
  left: 50%;
  top: 80px;
  width: 58px;
  height: 40px;
  border: 3px solid #e35f7b;
  border-radius: 48%;
  background:
    radial-gradient(circle at 36% 52%, #b93a57 0 8%, transparent 9%),
    radial-gradient(circle at 64% 52%, #b93a57 0 8%, transparent 9%),
    #ff98aa;
  transform: translateX(-50%);
}

.pig-illustration .smile {
  position: absolute;
  left: 50%;
  top: 114px;
  width: 42px;
  height: 18px;
  border-bottom: 4px solid #8f2b45;
  border-radius: 0 0 999px 999px;
  transform: translateX(-50%);
}

.floating-coin {
  position: absolute;
  right: 2%;
  top: 42%;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 7px solid #ffd786;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffecac, var(--gold));
  color: #8f5511;
  font-size: 1.7rem;
  font-weight: 950;
  box-shadow: 0 20px 42px rgba(253, 186, 59, 0.28);
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-block: 1px solid var(--line);
  background: var(--white);
}

.problem-band {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  background:
    radial-gradient(circle at 8% 10%, rgba(255, 214, 227, 0.72), transparent 28%),
    var(--white);
}

.problem-heading {
  grid-column: 1 / -1;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(46px, 7vw, 78px) 0 24px;
}

.problem-heading h2 {
  max-width: 780px;
  margin-bottom: 10px;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.problem-heading p {
  margin: 0;
  color: var(--pink);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  font-weight: 950;
}

.intro-band article {
  padding: 34px clamp(20px, 5vw, 64px);
  border-right: 1px solid var(--line);
}

.problem-band article {
  padding-top: 28px;
  padding-bottom: 42px;
}

.problem-band article h2 {
  margin-bottom: 10px;
  font-size: clamp(1.24rem, 2vw, 1.7rem);
  line-height: 1.12;
}

.intro-band article:last-child {
  border-right: 0;
}

.line-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--pink-soft);
  color: var(--pink);
  font-weight: 950;
}

.intro-band p,
.step-card p,
.feature-list p,
.check-list,
.poster p,
.faq-list p,
.site-footer p {
  color: var(--muted);
}

.content-section {
  padding: clamp(70px, 10vw, 128px) 0;
}

.concept-section,
.stages-section,
.future-section {
  padding: clamp(70px, 10vw, 126px) 0;
}

.page-hero {
  padding: clamp(54px, 8vw, 96px) 0 clamp(40px, 6vw, 70px);
}

.page-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.58fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: center;
}

.page-hero h1 {
  max-width: 760px;
  margin-bottom: 16px;
  font-size: clamp(2.3rem, 5vw, 4.6rem);
}

.page-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.06rem, 2vw, 1.28rem);
  font-weight: 750;
}

.page-hero-card,
.callout-card {
  border: 1px solid rgba(255, 79, 131, 0.18);
  border-radius: var(--radius);
  padding: clamp(22px, 4vw, 34px);
  background:
    radial-gradient(circle at 94% 8%, rgba(255, 214, 227, 0.72), transparent 28%),
    var(--white);
  box-shadow: 0 22px 60px rgba(16, 38, 74, 0.1);
}

.page-hero-card strong,
.callout-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: clamp(1.25rem, 2.5vw, 1.7rem);
  line-height: 1.12;
}

.page-content {
  padding: 0 0 clamp(70px, 10vw, 128px);
}

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

.detail-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.detail-card {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 40px rgba(16, 38, 74, 0.06);
}

.detail-card h2,
.detail-card h3 {
  margin-bottom: 10px;
}

.detail-card p,
.detail-card li {
  color: var(--muted);
  font-weight: 750;
}

.detail-list {
  margin: 12px 0 0;
  padding-left: 20px;
}

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

.character-card {
  display: grid;
  gap: 10px;
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(255, 79, 131, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 42px rgba(16, 38, 79, 0.08);
}

.character-card h2 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.18;
}

.character-card strong {
  color: var(--pink);
  font-size: 0.84rem;
}

.character-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.character-placeholder {
  display: grid;
  min-height: 130px;
  place-items: center;
  border: 1px dashed rgba(255, 79, 131, 0.34);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 214, 227, 0.9), transparent 32%),
    linear-gradient(145deg, rgba(255, 241, 245, 0.94), rgba(232, 241, 251, 0.72));
  color: rgba(16, 38, 79, 0.28);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 950;
}

.character-card dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.character-card dt {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.character-card dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  overflow-wrap: anywhere;
}

.character-card code,
.cta-band code {
  font-size: 0.82em;
}

.cta-band {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  margin-top: clamp(30px, 6vw, 54px);
  border: 1px solid rgba(255, 79, 131, 0.18);
  border-radius: var(--radius);
  padding: clamp(22px, 4vw, 34px);
  background: linear-gradient(135deg, var(--paper), #ffffff);
}

.cta-band p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.collection-home-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(18px, 4vw, 34px);
  margin-bottom: clamp(70px, 10vw, 126px);
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(246, 179, 59, 0.28);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 92% 18%, rgba(246, 179, 59, 0.2), transparent 24%),
    linear-gradient(135deg, #fff, var(--blush));
  box-shadow: 0 18px 46px rgba(16, 38, 74, 0.08);
}

.collection-home-callout h2 {
  margin-bottom: 10px;
}

.collection-home-callout p:last-child {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}

.collection-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  gap: clamp(24px, 5vw, 68px);
  align-items: center;
  padding: clamp(54px, 8vw, 98px) 0 clamp(34px, 5vw, 58px);
}

.collection-hero h1 {
  max-width: 780px;
  margin-bottom: 14px;
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  line-height: 0.98;
}

.collection-hero-copy > p {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.06rem, 2vw, 1.26rem);
  font-weight: 750;
}

.collection-note {
  display: inline-flex;
  width: fit-content;
  margin-top: 12px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 79, 131, 0.18);
  border-radius: 999px;
  background: rgba(255, 241, 245, 0.8);
  color: var(--blue) !important;
  font-size: 0.94rem !important;
  font-weight: 900 !important;
}

.collection-summary {
  min-height: 260px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(246, 179, 59, 0.34);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 82% 12%, rgba(255, 242, 199, 0.82), transparent 34%),
    linear-gradient(145deg, #ffffff, #fff7ec);
  box-shadow: 0 24px 70px rgba(16, 38, 74, 0.11);
}

.collection-summary span {
  display: inline-grid;
  width: 72px;
  height: 72px;
  place-items: center;
  margin-bottom: 22px;
  border: 7px solid #f6c75a;
  border-radius: 50%;
  background: linear-gradient(145deg, #fff4bd, #f6b33b);
  color: #7d4b0a;
  font-weight: 950;
}

.collection-summary strong {
  display: block;
  color: var(--blue);
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  line-height: 1;
}

.collection-summary p,
.collection-tools p {
  color: var(--muted);
  font-weight: 750;
}

.compact-heading {
  margin-bottom: 18px;
}

.collection-tools {
  padding-bottom: 22px;
}

.collection-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.collection-filters button {
  min-height: 40px;
  border: 1px solid rgba(16, 38, 79, 0.12);
  border-radius: 999px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--blue);
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 900;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.collection-filters button:hover,
.collection-filters button.active {
  border-color: rgba(255, 79, 131, 0.34);
  background: linear-gradient(180deg, var(--pink-soft), #fff);
  box-shadow: 0 10px 22px rgba(255, 79, 131, 0.12);
}

.collection-advanced-filters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 12px;
  margin-top: 20px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.collection-advanced-filters label {
  display: grid;
  min-width: 0;
  gap: 7px;
}

.collection-advanced-filters label > span {
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.collection-search-field {
  grid-column: span 2;
}

.collection-advanced-filters input,
.collection-advanced-filters select {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(16, 38, 79, 0.14);
  border-radius: 6px;
  padding: 0 12px;
  background: #fff;
  color: var(--blue);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 750;
}

.collection-advanced-filters input:focus,
.collection-advanced-filters select:focus {
  border-color: var(--pink);
  outline: 3px solid rgba(255, 79, 131, 0.14);
}

.collection-clear-filters {
  align-self: end;
  min-height: 44px;
  border: 1px solid rgba(255, 79, 131, 0.28);
  border-radius: 6px;
  padding: 0 16px;
  background: var(--blush);
  color: var(--blue);
  cursor: pointer;
  font-weight: 900;
}

.collection-clear-filters:hover {
  border-color: var(--pink);
  color: var(--pink-strong);
}

.collection-section {
  padding-bottom: clamp(70px, 10vw, 128px);
}

.collection-status {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 850;
}

.collection-load-progress {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
}

.collection-load-track {
  width: 100%;
  height: 7px;
  overflow: hidden;
  border-radius: 4px;
  background: rgba(16, 38, 79, 0.1);
}

.collection-load-track span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--pink), #f6b33b);
  transition: width 180ms ease;
}

.collection-load-progress.is-complete .collection-load-track span {
  background: var(--pink);
}

.approved-phase-list{display:grid;gap:28px}.approved-avatar-filters{display:flex;flex-wrap:wrap;gap:10px;margin:22px 0 12px}.approved-avatar-filters button{border:1px solid rgba(16,38,79,.16);border-radius:999px;padding:10px 16px;background:#fff;color:var(--blue);cursor:pointer;font-weight:900}.approved-avatar-filters button.active{border-color:var(--pink);background:var(--pink);color:#fff}.approved-avatar-status{margin:0 0 20px;color:var(--muted);font-weight:850}.approved-avatar-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px}.approved-avatar-card{overflow:hidden;border:1px solid rgba(16,38,79,.1);border-radius:18px;background:#fff;box-shadow:0 14px 34px rgba(16,38,79,.08)}.approved-avatar-media{padding:12px;background:linear-gradient(180deg,#f7f9fd,#fff)}.approved-avatar-card img{display:block;width:100%;height:360px;object-fit:contain}.approved-avatar-content{padding:18px;text-align:left}.approved-avatar-kicker{margin:0;color:var(--pink);font-size:.78rem;font-weight:950;text-transform:uppercase}.approved-avatar-content h3{margin:5px 0 8px;color:var(--blue)}.approved-avatar-content>p:not(.approved-avatar-kicker){margin:0 0 14px;color:var(--muted)}.approved-avatar-content dl{display:grid;gap:7px;margin:0}.approved-avatar-content dl div{display:flex;justify-content:space-between;gap:12px;border-top:1px solid rgba(16,38,79,.08);padding-top:7px}.approved-avatar-content dt{color:var(--muted);font-size:.82rem;font-weight:800}.approved-avatar-content dd{margin:0;color:var(--blue);font-size:.82rem;font-weight:900;text-align:right}.blocked-phase-note{padding:18px;border:1px dashed rgba(16,38,79,.3);border-radius:14px;background:#fff8e8}.avatar-home-preview{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px;max-width:880px;margin:24px auto}.avatar-home-preview img{width:100%;height:360px;object-fit:contain;border-radius:18px;background:#fff;box-shadow:0 14px 36px rgba(16,38,79,.1)}

.pig-principal-feature{display:grid;grid-template-columns:minmax(0,1fr) minmax(240px,380px);align-items:center;gap:clamp(24px,5vw,64px);margin-block:clamp(36px,6vw,72px);padding-block:clamp(28px,5vw,52px)}.pig-principal-feature img{display:block;width:100%;height:min(620px,70vh);object-fit:contain;object-position:center;filter:drop-shadow(0 20px 32px rgba(16,38,79,.14))}.pig-principal-feature h2{margin:8px 0 14px}.pig-principal-feature p{max-width:700px;color:var(--muted);font-weight:750}

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

.collectible-card {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 560px;
  grid-template-rows: auto minmax(220px, 1fr) auto auto;
  overflow: hidden;
  border: 1px solid rgba(16, 38, 79, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(145deg, rgba(255, 79, 131, 0.65), rgba(246, 179, 59, 0.76), rgba(16, 38, 79, 0.42)) border-box;
  box-shadow: 0 18px 46px rgba(16, 38, 74, 0.1);
}

.collectible-card[hidden] {
  display: none;
}

.collectible-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 214, 227, 0.56), transparent 24%),
    radial-gradient(circle at 88% 18%, rgba(255, 242, 199, 0.58), transparent 24%);
  pointer-events: none;
}

.collectible-card.identity-azul {
  border-top: 3px solid #4f9fe8;
}

.collectible-card.identity-rosa {
  border-top: 3px solid var(--pink);
}

.collectible-card.identity-arco-iris {
  border-top: 3px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(90deg, #ef4444, #f59e0b, #facc15, #22c55e, #3b82f6, #8b5cf6) border-box;
}

.collectible-topline,
.collectible-body,
.collectible-footer,
.collectible-frame {
  position: relative;
}

.collectible-topline {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  padding: 14px 14px 10px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.collectible-topline strong {
  color: var(--pink);
  text-align: right;
}

.collectible-frame {
  display: grid;
  min-height: 250px;
  place-items: center;
  margin: 0 14px;
  border: 1px solid rgba(255, 79, 131, 0.14);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.94), rgba(255, 241, 245, 0.5) 56%, rgba(232, 241, 251, 0.5)),
    linear-gradient(145deg, #fff, #fff8ef);
}

.collectible-frame img {
  width: min(90%, 240px);
  max-height: 260px;
  object-fit: contain;
  filter: drop-shadow(0 18px 22px rgba(16, 38, 74, 0.14));
}

.card-placeholder {
  display: grid;
  gap: 8px;
  place-items: center;
  color: rgba(16, 38, 79, 0.34);
  text-align: center;
}

.card-placeholder span {
  font-size: clamp(3rem, 8vw, 4.6rem);
  font-weight: 950;
  line-height: 1;
}

.card-placeholder small {
  color: var(--muted);
  font-weight: 900;
}

.collectible-body {
  padding: 16px 16px 12px;
}

.collectible-body h2 {
  margin: 0 0 8px;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.12;
}

.collectible-body p {
  min-height: 66px;
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
}

.card-taxonomy {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 12px;
  padding: 0;
  list-style: none;
}

.card-taxonomy li {
  border: 1px solid rgba(16, 38, 79, 0.1);
  border-radius: 999px;
  padding: 4px 8px;
  background: var(--blush);
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 850;
}

.collectible-body dl {
  display: grid;
  gap: 7px;
  margin: 0;
}

.collectible-body dl div {
  display: flex;
  min-width: 0;
  gap: 10px;
  justify-content: space-between;
  border-bottom: 1px solid rgba(234, 223, 216, 0.76);
  padding-bottom: 6px;
}

.collectible-body dt {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.collectible-body dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  overflow-wrap: anywhere;
  text-align: right;
}

.collectible-footer {
  display: grid;
  gap: 10px;
  padding: 0 16px 16px;
}

.card-status {
  display: inline-flex;
  width: fit-content;
  min-height: 28px;
  align-items: center;
  border-radius: 999px;
  padding: 0 10px;
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.card-status.criada {
  background: var(--sun-soft);
  color: #7d4b0a;
}

.card-status.pendente {
  background: var(--blue-soft);
  color: var(--blue);
}

.collectible-footer small {
  color: var(--muted);
  font-weight: 800;
}

.collection-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

.collection-pagination[hidden] {
  display: none;
}

.collection-pagination button {
  min-height: 42px;
  border: 1px solid rgba(16, 38, 79, 0.14);
  border-radius: 6px;
  padding: 0 16px;
  background: #fff;
  color: var(--blue);
  cursor: pointer;
  font-weight: 900;
}

.collection-pagination button:hover:not(:disabled) {
  border-color: var(--pink);
  background: var(--blush);
}

.collection-pagination button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.collection-pagination span {
  color: var(--muted);
  font-weight: 900;
}

@media (max-width: 620px) {
  .collection-search-field,
  .collection-clear-filters {
    grid-column: 1 / -1;
  }

  .collection-pagination {
    gap: 8px;
  }

  .collection-pagination button {
    flex: 1 1 0;
    padding: 0 10px;
  }
}

/* Public educational positioning - 2026-07 */
.public-nav-panel {
  grid-template-columns: minmax(0, 1fr);
}

.public-nav-panel .nav-links {
  justify-content: flex-end;
}

.public-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(340px, 0.78fr);
  align-items: center;
  gap: clamp(32px, 4.5vw, 64px);
  min-height: min(680px, calc(100vh - var(--header-offset) - 48px));
  padding: clamp(38px, 5vw, 72px) 0;
}

.public-hero-copy h1,
.inner-hero h1 {
  max-width: 780px;
  margin: 10px 0 18px;
  font-size: clamp(3rem, 5.8vw, 6rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.public-hero-copy h1 {
  font-size: clamp(3rem, 5.2vw, 5.2rem);
}

.public-lead,
.inner-hero > p:last-child {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.6vw, 1.34rem);
  font-weight: 750;
}

.public-actions,
.public-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.public-actions {
  margin-top: 28px;
}

.public-badges {
  margin-top: 24px;
}

.public-badges span {
  padding: 8px 12px;
  border: 1px solid rgba(16, 38, 79, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 900;
}

.public-hero-visual {
  min-width: 0;
}

.public-hero-visual img {
  display: block;
  width: 100%;
  max-height: 610px;
  object-fit: contain;
  border-radius: var(--radius);
}

.public-band,
.mystery-band {
  width: 100%;
  box-sizing: border-box;
  padding: clamp(58px, 8vw, 108px) max(20px, calc((100% - 1180px) / 2));
}

.soft-band {
  border-block: 1px solid rgba(16, 38, 79, 0.07);
  background: linear-gradient(135deg, rgba(255, 241, 245, 0.78), rgba(232, 241, 251, 0.64));
}

.public-band-inner,
.public-split,
.mystery-inner {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.public-grid {
  display: grid;
  gap: 0;
  width: min(100%, 1180px);
  margin: 36px auto 0;
}

.three-columns {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.two-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.public-grid article {
  min-width: 0;
  padding: clamp(20px, 3vw, 34px);
  border-left: 1px solid rgba(16, 38, 79, 0.12);
}

.public-grid article:last-child {
  border-right: 1px solid rgba(16, 38, 79, 0.12);
}

.public-grid h2,
.public-grid h3,
.public-split h2,
.lesson-panel h3,
.mystery-inner h2 {
  margin: 8px 0 12px;
  letter-spacing: 0;
}

.public-grid h2 {
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  overflow-wrap: anywhere;
}

.public-grid p,
.public-split p,
.lesson-panel p,
.mystery-inner p,
.age-track p,
.process-line p {
  color: var(--muted);
  font-weight: 750;
}

.topic-icon,
.process-line article > span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--sun-soft);
  color: #80510c;
  font-weight: 950;
}

.text-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--pink);
  font-weight: 950;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.public-split {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
  align-items: center;
  gap: clamp(36px, 7vw, 96px);
}

.lesson-panel {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(246, 179, 59, 0.3);
  border-radius: var(--radius);
  background: linear-gradient(145deg, #fffdf6, var(--sun-soft));
}

.lesson-label {
  color: #80510c;
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

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

.check-list li {
  color: var(--blue);
  font-weight: 850;
}

.check-list li::before {
  content: "✓";
  margin-right: 9px;
  color: var(--pink);
}

.character-pair,
.collection-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: end;
}

.character-pair img,
.collection-preview img {
  display: block;
  width: 100%;
  max-height: 390px;
  object-fit: contain;
  border-radius: var(--radius);
}

.character-pair-single {
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
}

.character-pair-single img {
  width: min(100%, 330px);
}

.collection-preview {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.collection-preview img {
  max-height: 300px;
}

.identity-preview {
  align-items: stretch;
  min-height: 300px;
}

.identity-swatch {
  min-width: 0;
  border: 1px solid rgba(16, 38, 79, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(16, 38, 79, 0.08);
}

.identity-swatch-blue {
  background: #dceeff;
}

.identity-swatch-pink {
  background: #ffd9e6;
}

.identity-swatch-rainbow {
  background: linear-gradient(180deg, #f64b5f 0 16.6%, #ff9d2e 16.6% 33.2%, #f6d84a 33.2% 49.8%, #51b86b 49.8% 66.4%, #4b8de8 66.4% 83%, #8f63c8 83% 100%);
}

.age-track,
.process-line {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(100%, 1180px);
  margin: 36px auto 0;
  border-block: 1px solid rgba(16, 38, 79, 0.12);
}

.age-track article,
.process-line article {
  padding: 28px 24px;
  border-right: 1px solid rgba(16, 38, 79, 0.12);
}

.age-track article:last-child,
.process-line article:last-child {
  border-right: 0;
}

.age-track strong {
  display: block;
  font-size: 1.05rem;
}

.mystery-band {
  background: var(--blue);
  color: var(--white);
}

.mystery-inner {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  align-items: center;
  gap: clamp(28px, 6vw, 80px);
}

.mystery-mark {
  display: grid;
  width: 160px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  color: var(--gold);
  font-size: 6rem;
  font-weight: 950;
}

.mystery-inner p {
  color: rgba(255, 255, 255, 0.76);
}

.compact-band {
  padding-block: clamp(42px, 6vw, 70px);
}

.inner-hero {
  padding-block: clamp(60px, 9vw, 120px);
}

.inner-hero h1 {
  font-size: clamp(2.8rem, 5.4vw, 5.5rem);
}

.coin-hero {
  background: radial-gradient(circle at 82% 42%, rgba(246, 179, 59, 0.2), transparent 32%);
}

.faq-list {
  display: grid;
  gap: 10px;
  width: min(100%, 900px);
  margin: 0 auto;
}

.faq-list details {
  border: 1px solid rgba(16, 38, 79, 0.12);
  border-radius: var(--radius);
  background: var(--white);
}

.faq-list summary {
  padding: 18px 20px;
  color: var(--blue);
  font-weight: 950;
  cursor: pointer;
}

.faq-list details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
  font-weight: 750;
}

@media (max-width: 1499px) {
  .public-nav-panel .nav-links {
    justify-content: stretch;
  }

  .public-hero {
    min-height: auto;
  }
}

@media (max-width: 900px) {
  .public-hero,
  .public-split,
  .public-grid,
  .three-columns,
  .two-columns,
  .age-track,
  .process-line,
  .mystery-inner {
    grid-template-columns: 1fr;
  }

  .public-hero-visual {
    order: 2;
  }

  .public-grid article,
  .public-grid article:last-child,
  .age-track article,
  .process-line article {
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid rgba(16, 38, 79, 0.12);
  }

  .public-grid article:last-child,
  .age-track article:last-child,
  .process-line article:last-child {
    border-bottom: 0;
  }

  .mystery-mark {
    width: 110px;
    font-size: 4rem;
  }
}

@media (max-width: 620px) {
  .public-hero,
  .inner-hero {
    width: min(100% - 32px, 1180px);
    padding-block: 34px 54px;
  }

  .public-hero-copy h1,
  .inner-hero h1 {
    font-size: clamp(2.45rem, 12vw, 3.55rem);
  }

  .public-actions .button,
  .public-split > .button {
    width: 100%;
  }

  .public-band,
  .mystery-band {
    padding-inline: 16px;
  }

  .collection-preview {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

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

.concept-grid article {
  min-height: 250px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 40px rgba(16, 38, 74, 0.06);
}

.concept-grid p {
  color: var(--muted);
}

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

.step-card {
  min-height: 270px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 40px rgba(16, 38, 74, 0.06);
}

.step-card span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 46px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  font-weight: 950;
}

.split-section,
.coin-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(30px, 7vw, 92px);
  align-items: center;
  padding: clamp(72px, 10vw, 128px) clamp(20px, 6vw, 84px);
}

.merchants {
  background: var(--green-dark);
  color: var(--white);
}

.merchants .eyebrow,
.merchants .section-copy p,
.merchants .feature-list p {
  color: rgba(255, 255, 255, 0.76);
}

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

.feature-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.feature-list .line-icon {
  margin: 0;
  background: rgba(255, 255, 255, 0.14);
  color: var(--gold);
}

.family-section {
  padding: clamp(72px, 10vw, 128px) 0;
  background: linear-gradient(180deg, var(--paper), #ffffff);
}

.family-inner {
  display: grid;
  gap: 24px;
}

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

.quote-grid p {
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(244, 91, 131, 0.16);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--green-dark);
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(244, 91, 131, 0.06);
}

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

.pig-family-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  max-width: 860px;
  padding: 18px;
  border: 1px solid rgba(244, 91, 131, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.pig-family-note p {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}

.pig-family-official {
  width: 74px;
  height: 74px;
  border: 3px solid var(--white);
  border-radius: 22px;
  object-fit: cover;
  object-position: 50% 42%;
  box-shadow: 0 14px 26px rgba(16, 38, 74, 0.1);
}

.education-section {
  padding: clamp(70px, 10vw, 126px) 0;
}

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

.education-grid article,
.games-grid article {
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 40px rgba(16, 38, 74, 0.06);
}

.education-grid p,
.games-grid p {
  color: var(--muted);
  font-weight: 750;
}

.games-section {
  padding: clamp(70px, 10vw, 126px) 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 242, 199, 0.76), transparent 30%),
    radial-gradient(circle at 88% 12%, rgba(232, 241, 251, 0.7), transparent 28%),
    linear-gradient(180deg, #ffffff, var(--paper));
}

.games-inner {
  display: grid;
  gap: 8px;
}

.games-grid article {
  background: rgba(255, 255, 255, 0.76);
}

.games-grid strong {
  display: block;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 1.18rem;
  line-height: 1.15;
}

/* Placeholder family mini-Pigs used only as a temporary visual note. */
.mini-pig-group {
  display: flex;
  align-items: flex-end;
  min-width: 104px;
}

.mini-pig-group i {
  display: block;
  width: 34px;
  height: 34px;
  margin-left: -8px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 40%, var(--blue) 0 5%, transparent 6%),
    radial-gradient(circle at 65% 40%, var(--blue) 0 5%, transparent 6%),
    radial-gradient(circle at 50% 60%, #ff8ba3 0 15%, transparent 16%),
    linear-gradient(145deg, #ffd3dc, #ff91a8);
  box-shadow: 0 10px 20px rgba(244, 91, 131, 0.12);
}

.mini-pig-group i:first-child {
  margin-left: 0;
  width: 42px;
  height: 42px;
}

.mini-pig-group i:nth-child(2) {
  width: 38px;
  height: 38px;
  background:
    radial-gradient(circle at 35% 40%, var(--blue) 0 5%, transparent 6%),
    radial-gradient(circle at 65% 40%, var(--blue) 0 5%, transparent 6%),
    radial-gradient(circle at 50% 60%, #ff8ba3 0 15%, transparent 16%),
    linear-gradient(145deg, #dff4e9, #8ed9ad);
}

.mini-pig-group i:nth-child(3) {
  width: 30px;
  height: 30px;
}

.mini-pig-group i:nth-child(4) {
  width: 28px;
  height: 28px;
  background:
    radial-gradient(circle at 35% 40%, var(--blue) 0 5%, transparent 6%),
    radial-gradient(circle at 65% 40%, var(--blue) 0 5%, transparent 6%),
    radial-gradient(circle at 50% 60%, #ff8ba3 0 15%, transparent 16%),
    linear-gradient(145deg, #e8f1fb, #9cc8f4);
}

.age-row article {
  min-height: 156px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  border: 1px solid rgba(244, 91, 131, 0.18);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 36px rgba(244, 91, 131, 0.08);
}

.age-row strong {
  color: var(--green-dark);
  font-size: 1.08rem;
}

.age-row span {
  color: var(--muted);
  font-weight: 750;
}

.pig-stage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
}

.pig-stage-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  border: 1px solid rgba(16, 38, 74, 0.08);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 25%, rgba(255, 255, 255, 0.96) 0 25%, transparent 26%),
    linear-gradient(180deg, #fff8fa, #ffffff 60%, #f3fbf6);
  box-shadow: 0 18px 46px rgba(16, 38, 74, 0.075);
}

.pig-stage-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.9) 68%);
  pointer-events: none;
}

.pig-stage-card strong,
.stage-subtitle,
.pig-stage-card p {
  position: relative;
  z-index: 2;
}

.pig-stage-card strong {
  color: var(--green-dark);
  font-size: 1.32rem;
  line-height: 1.05;
}

.stage-subtitle {
  display: block;
  margin-top: 5px;
  color: var(--blue);
  font-size: 0.92rem;
  font-weight: 900;
  opacity: 0.78;
}

.pig-stage-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 750;
}

.stage-pig-logo {
  position: absolute;
  z-index: 1;
  top: 30px;
  left: 50%;
  width: 132px;
  height: 132px;
  border: 5px solid rgba(255, 255, 255, 0.88);
  border-radius: 34px;
  background: transparent;
  object-fit: contain;
  object-position: 50% 42%;
  box-shadow: 0 18px 34px rgba(16, 38, 74, 0.1);
  transform: translateX(-50%);
}

.stage-child .stage-pig-logo {
  width: 112px;
  height: 112px;
  top: 42px;
}

.stage-merchant .stage-pig-logo {
  border-color: rgba(253, 186, 59, 0.4);
}

.stage-grandma .stage-pig-logo,
.stage-grandpa .stage-pig-logo {
  border-color: rgba(223, 244, 233, 0.95);
}

.stage-official-family {
  position: absolute;
  z-index: 1;
  top: 42px;
  left: 50%;
  display: flex;
  align-items: center;
  transform: translateX(-50%);
}

.stage-official-family img {
  width: 84px;
  height: 84px;
  margin-left: -22px;
  border: 4px solid rgba(255, 255, 255, 0.9);
  border-radius: 26px;
  background: var(--white);
  object-fit: contain;
  object-position: 50% 42%;
  box-shadow: 0 16px 28px rgba(16, 38, 74, 0.09);
}

.stage-official-family img:first-child {
  margin-left: 0;
  width: 100px;
  height: 100px;
}

/* Placeholder stage Pigs used only for future-character concept cards. */
.stage-pig,
.stage-family-icons {
  position: absolute;
  z-index: 1;
  top: 34px;
  left: 50%;
  width: 142px;
  height: 168px;
  transform: translateX(-50%);
}

.stage-pig .pig-face,
.stage-pig .pig-body,
.stage-pig .pig-ear,
.stage-pig .pig-prop,
.stage-pig .pig-accessory,
.stage-pig .pig-counter,
.stage-pig .pig-hair,
.stage-pig .pig-mustache {
  position: absolute;
  display: block;
}

.stage-pig .pig-ear {
  top: 8px;
  width: 40px;
  height: 42px;
  border-radius: 11px 24px 12px 24px;
  background: linear-gradient(145deg, #ffc1ce, #f47b96);
}

.stage-pig .pig-ear.left {
  left: 8px;
  transform: rotate(-30deg);
}

.stage-pig .pig-ear.right {
  right: 8px;
  transform: rotate(120deg);
}

.stage-pig .pig-face {
  top: 20px;
  left: 50%;
  width: 108px;
  height: 100px;
  border-radius: 48% 48% 45% 45%;
  background:
    radial-gradient(circle at 34% 38%, #ffffff 0 6%, transparent 7%),
    radial-gradient(circle at 34% 40%, var(--blue) 0 10%, transparent 11%),
    radial-gradient(circle at 66% 38%, #ffffff 0 6%, transparent 7%),
    radial-gradient(circle at 66% 40%, var(--blue) 0 10%, transparent 11%),
    radial-gradient(ellipse at 50% 62%, #ff94a7 0 17%, transparent 18%),
    linear-gradient(145deg, #ffd4dd, #ff93aa);
  box-shadow: inset -10px -12px 22px rgba(211, 74, 103, 0.13);
  transform: translateX(-50%);
}

.stage-pig .pig-face::before,
.stage-pig .pig-face::after {
  position: absolute;
  top: 62px;
  width: 6px;
  height: 6px;
  content: "";
  border-radius: 50%;
  background: #98334d;
}

.stage-pig .pig-face::before {
  left: 49px;
}

.stage-pig .pig-face::after {
  right: 49px;
}

.stage-pig .pig-body {
  left: 50%;
  bottom: 4px;
  width: 88px;
  height: 70px;
  border-radius: 25px 25px 20px 20px;
  background: linear-gradient(180deg, var(--green), #0c4e3c);
  transform: translateX(-50%);
}

.stage-pig .pig-body::after {
  position: absolute;
  left: 50%;
  top: 15px;
  width: 18px;
  height: 18px;
  content: "P";
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 950;
  transform: translateX(-50%);
}

.stage-pig .pig-prop {
  right: 6px;
  bottom: 48px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 10px 18px rgba(253, 186, 59, 0.22);
}

.stage-child .stage-pig {
  top: 52px;
  width: 118px;
  height: 138px;
}

.stage-child .pig-face {
  width: 92px;
  height: 86px;
}

.stage-child .pig-face::before,
.stage-child .pig-face::after {
  top: 53px;
}

.stage-child .pig-face::before {
  left: 42px;
}

.stage-child .pig-face::after {
  right: 42px;
}

.stage-child .pig-ear {
  width: 34px;
  height: 36px;
}

.stage-child .pig-body {
  width: 74px;
  height: 56px;
  background: linear-gradient(180deg, #ffd66e, #ee9f22);
}

.stage-child .coin-dot {
  right: 0;
  bottom: 38px;
  width: 30px;
  height: 30px;
  border: 5px solid #ffe4a0;
}

.stage-teen .stage-pig::before {
  position: absolute;
  left: 16px;
  bottom: 30px;
  width: 30px;
  height: 52px;
  content: "";
  border-radius: 12px;
  background: linear-gradient(180deg, #39316f, #241c50);
  transform: rotate(-10deg);
}

.stage-teen .pig-body {
  background: linear-gradient(180deg, #6b73d9, #403a88);
}

.headphones {
  top: 39px;
  left: 50%;
  width: 126px;
  height: 64px;
  border-top: 6px solid #403a88;
  border-radius: 70px 70px 0 0;
  transform: translateX(-50%);
}

.headphones::before,
.headphones::after {
  position: absolute;
  top: 28px;
  width: 16px;
  height: 32px;
  content: "";
  border-radius: 999px;
  background: #403a88;
}

.headphones::before {
  left: 5px;
}

.headphones::after {
  right: 5px;
}

.stage-adult .pig-body {
  background: linear-gradient(180deg, #256a95, #153c62);
}

.stage-adult .pig-face {
  box-shadow:
    inset -10px -12px 22px rgba(211, 74, 103, 0.13),
    0 0 0 5px rgba(255, 255, 255, 0.24);
}

.stage-merchant .pig-body {
  background: linear-gradient(180deg, #f2a93b, #b86a13);
}

.stage-merchant .pig-body::after {
  background: rgba(255, 255, 255, 0.42);
  color: #7d480c;
}

.apron {
  left: 50%;
  bottom: 8px;
  width: 46px;
  height: 48px;
  border-radius: 8px 8px 14px 14px;
  background: rgba(255, 255, 255, 0.62);
  transform: translateX(-50%);
}

.pig-counter {
  left: 50%;
  bottom: -4px;
  width: 132px;
  height: 22px;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, #fff0d8, #e7bd7b);
  box-shadow: 0 10px 18px rgba(139, 88, 23, 0.12);
  transform: translateX(-50%);
}

.stage-grandma .pig-body {
  background: linear-gradient(180deg, #8ec89b, #3f7c4d);
}

.stage-grandma .pig-face {
  background:
    radial-gradient(circle at 34% 38%, #ffffff 0 6%, transparent 7%),
    radial-gradient(circle at 34% 40%, var(--blue) 0 10%, transparent 11%),
    radial-gradient(circle at 66% 38%, #ffffff 0 6%, transparent 7%),
    radial-gradient(circle at 66% 40%, var(--blue) 0 10%, transparent 11%),
    radial-gradient(ellipse at 50% 62%, #ff94a7 0 17%, transparent 18%),
    linear-gradient(145deg, #ffe0e6, #f9a2b4);
}

.stage-grandpa .pig-body {
  background: linear-gradient(180deg, #9a6a43, #5e3d27);
}

.glasses {
  top: 56px;
  left: 50%;
  width: 76px;
  height: 24px;
  border-right: 4px solid var(--blue);
  border-left: 4px solid var(--blue);
  transform: translateX(-50%);
}

.glasses::before,
.glasses::after {
  position: absolute;
  top: 0;
  width: 24px;
  height: 22px;
  content: "";
  border: 3px solid var(--blue);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.glasses::before {
  left: -2px;
}

.glasses::after {
  right: -2px;
}

.hat {
  z-index: 3;
  top: 5px;
  left: 50%;
  width: 82px;
  height: 26px;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, #8f6847, #5e3d27);
  transform: translateX(-50%) rotate(-5deg);
}

.hat::after {
  position: absolute;
  left: 50%;
  bottom: -7px;
  width: 104px;
  height: 12px;
  content: "";
  border-radius: 999px;
  background: #5e3d27;
  transform: translateX(-50%);
}

.phone-dot,
.cup-dot,
.tag-dot {
  border-radius: 6px !important;
}

.phone-dot {
  width: 18px !important;
  height: 30px !important;
  background: var(--blue) !important;
}

.cup-dot {
  width: 22px !important;
  height: 28px !important;
  background: linear-gradient(180deg, #ffffff, #d7eadf) !important;
}

.tag-dot {
  width: 28px !important;
  height: 18px !important;
  background: var(--white) !important;
  transform: rotate(-10deg);
}

.stage-pig .pig-hair {
  z-index: 3;
  top: 18px;
  left: 50%;
  width: 66px;
  height: 24px;
  border-radius: 999px 999px 40px 40px;
  background: #f0f0e8;
  transform: translateX(-50%);
}

.stage-pig .pig-mustache {
  z-index: 3;
  top: 88px;
  left: 50%;
  width: 50px;
  height: 14px;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 28% 50%, #f3f0e5 0 42%, transparent 43%),
    radial-gradient(ellipse at 72% 50%, #f3f0e5 0 42%, transparent 43%);
  transform: translateX(-50%);
}

.stage-family-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 210px;
  height: 150px;
}

.stage-family-icons span {
  width: 64px;
  height: 64px;
  margin-left: -20px;
  border: 3px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 40%, var(--blue) 0 5%, transparent 6%),
    radial-gradient(circle at 65% 40%, var(--blue) 0 5%, transparent 6%),
    radial-gradient(circle at 50% 60%, #ff8ba3 0 15%, transparent 16%),
    linear-gradient(145deg, #ffd3dc, #ff91a8);
  box-shadow: 0 14px 24px rgba(16, 38, 74, 0.1);
}

.stage-family-icons span:first-child {
  margin-left: 0;
  width: 82px;
  height: 82px;
}

.stage-family-icons span:nth-child(2) {
  background:
    radial-gradient(circle at 35% 40%, var(--blue) 0 5%, transparent 6%),
    radial-gradient(circle at 65% 40%, var(--blue) 0 5%, transparent 6%),
    radial-gradient(circle at 50% 60%, #ff8ba3 0 15%, transparent 16%),
    linear-gradient(145deg, #e8f1fb, #9cc8f4);
}

.stage-family-icons span:nth-child(3) {
  width: 54px;
  height: 54px;
  background:
    radial-gradient(circle at 35% 40%, var(--blue) 0 5%, transparent 6%),
    radial-gradient(circle at 65% 40%, var(--blue) 0 5%, transparent 6%),
    radial-gradient(circle at 50% 60%, #ff8ba3 0 15%, transparent 16%),
    linear-gradient(145deg, #dff4e9, #8ed9ad);
}

.stage-family-icons span:nth-child(4) {
  width: 48px;
  height: 48px;
}

.pig-family-section {
  padding: clamp(66px, 9vw, 112px) 0;
  background: var(--blue);
  color: var(--white);
}

.pig-family-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.pig-family-inner .eyebrow,
.pig-family-inner p {
  color: rgba(255, 255, 255, 0.76);
}

.character-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.character-cloud span {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 900;
}

.coin-section {
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1fr);
}

.coin-visual {
  display: grid;
  place-items: center;
}

.coin {
  display: grid;
  width: min(280px, 70vw);
  aspect-ratio: 1;
  place-items: center;
  border: 22px solid #ffc86c;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.9) 0 9%, transparent 10%),
    linear-gradient(145deg, #ff83a0, #f45b83 62%, #d93f69);
  color: #ffe8ef;
  font-size: clamp(5rem, 14vw, 9rem);
  font-weight: 950;
  box-shadow: 0 30px 80px rgba(244, 91, 131, 0.24);
}

.coin-shadow {
  width: 54%;
  height: 22px;
  margin-top: -8px;
  border-radius: 50%;
  background: rgba(16, 38, 74, 0.12);
  filter: blur(8px);
}

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

.coin-rules {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.coin-rules span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 79, 131, 0.18);
  border-radius: 999px;
  background: var(--pink-soft);
  color: var(--green-dark);
  font-size: 0.9rem;
  font-weight: 900;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  font-weight: 800;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "✓";
  color: var(--green);
}

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

.poster {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  text-align: center;
  box-shadow: 0 18px 42px rgba(16, 38, 74, 0.08);
}

.poster.soft {
  background: linear-gradient(160deg, var(--paper), #ffffff);
}

.poster-logo {
  color: var(--blue);
  font-size: 1.1rem;
  font-weight: 950;
}

.poster-logo strong {
  color: var(--pink);
}

.poster h3 {
  max-width: 420px;
  margin: 24px 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.qr-fake {
  width: 172px;
  height: 172px;
  border: 12px solid var(--white);
  background:
    linear-gradient(90deg, var(--blue) 14px, transparent 14px) 0 0 / 34px 34px,
    linear-gradient(var(--blue) 14px, transparent 14px) 0 0 / 34px 34px,
    var(--green-soft);
  box-shadow: 0 0 0 1px var(--line);
}

.mini-pig {
  width: 164px;
  height: 124px;
  border-radius: 52% 52% 44% 44%;
  background:
    radial-gradient(circle at 34% 38%, var(--blue) 0 5%, transparent 6%),
    radial-gradient(circle at 66% 38%, var(--blue) 0 5%, transparent 6%),
    radial-gradient(circle at 50% 58%, #ff8ba3 0 16%, transparent 17%),
    linear-gradient(145deg, #ffd3dc, #ff91a8);
}

.poster-pig-logo {
  width: min(210px, 72%);
  height: auto;
  border-radius: 24px;
  background: transparent;
  box-shadow: 0 16px 34px rgba(16, 38, 74, 0.08);
}

.principles-section {
  padding: clamp(72px, 10vw, 128px) 0;
  background: linear-gradient(180deg, #fff8fa, #fbfaf6);
}

.principles-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
}

.principles-inner p {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.12rem;
}

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

.avoid-list span {
  padding: 16px;
  border: 1px solid rgba(16, 38, 74, 0.08);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--blue);
  font-weight: 900;
  box-shadow: 0 14px 32px rgba(16, 38, 74, 0.06);
}

.faq-section {
  padding: clamp(72px, 10vw, 128px) 0;
  background: var(--white);
}

.faq-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 78px);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px;
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: start;
  padding: 38px clamp(20px, 6vw, 84px);
  border-top: 1px solid var(--line);
  background: var(--blue);
  color: var(--white);
}

.site-footer p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 24px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.footer-prototype {
  grid-column: 1 / -1;
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.86rem;
  font-weight: 800;
}

.login-modal[hidden],
.cookie-notice[hidden] {
  display: none;
}

.login-modal {
  position: fixed;
  z-index: 80;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 38, 79, 0.46);
  backdrop-filter: blur(10px);
}

.modal-card {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(255, 79, 131, 0.18);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 30px 90px rgba(16, 38, 74, 0.28);
}

.modal-card h2 {
  margin-bottom: 10px;
  font-size: clamp(1.9rem, 5vw, 2.8rem);
}

.modal-card p,
.modal-card small {
  color: var(--muted);
  font-weight: 750;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  color: var(--blue);
  font-size: 1.4rem;
  font-weight: 900;
  cursor: pointer;
}

.visual-login-form {
  display: grid;
  gap: 12px;
  margin: 22px 0 12px;
}

.visual-login-form label {
  display: grid;
  gap: 6px;
  color: var(--blue);
  font-weight: 900;
}

.visual-login-form input {
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0 14px;
  background: var(--paper);
  color: var(--blue);
  font: inherit;
}

.visual-login-form button,
.visual-login-form a {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 950;
}

.visual-login-form button {
  border: 0;
  background: var(--pink);
  color: var(--white);
  cursor: default;
}

.visual-login-form a {
  border: 1px solid rgba(255, 79, 131, 0.24);
  background: var(--blush);
  color: var(--blue);
}

.cookie-notice {
  position: fixed;
  z-index: 60;
  right: clamp(14px, 3vw, 28px);
  bottom: clamp(14px, 3vw, 28px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  width: min(560px, calc(100% - 28px));
  padding: 14px;
  border: 1px solid rgba(255, 79, 131, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 60px rgba(16, 38, 74, 0.16);
}

.cookie-notice strong {
  color: var(--blue);
}

.cookie-notice p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 750;
  line-height: 1.35;
}

.cookie-notice button {
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  background: var(--pink);
  color: var(--white);
  font-weight: 950;
  cursor: pointer;
}

.legal-body {
  background: var(--paper);
}

.legal-main {
  width: min(960px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(52px, 8vw, 92px) 0;
}

.legal-article {
  padding: clamp(26px, 5vw, 44px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 46px rgba(16, 38, 74, 0.08);
}

.legal-article h1 {
  max-width: 780px;
  font-size: clamp(2.2rem, 6vw, 4rem);
}

.legal-article h2 {
  margin-top: 34px;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
}

.legal-article p,
.legal-article li {
  color: var(--muted);
  font-weight: 750;
}

.legal-notice {
  padding: 16px;
  border: 1px solid rgba(255, 79, 131, 0.18);
  border-radius: var(--radius);
  background: var(--blush);
  color: var(--blue);
  font-weight: 900;
}

@media (max-width: 1499px) {
  :root {
    --header-offset: 132px;
  }

  .site-header-inner {
    width: min(1320px, calc(100% - 32px));
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 18px;
    min-height: 112px;
    padding: 12px 0;
  }

  .brand {
    flex-basis: 240px;
  }

  .header-logo {
    width: 58px;
    height: 80px;
  }

  .menu-button {
    display: block;
  }

  .nav-panel {
    position: static;
    order: 3;
    width: 100%;
    max-height: calc(100vh - 154px);
    overflow-y: auto;
    display: none;
    justify-self: stretch;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 10px 10px 96px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    transform: none;
  }

  body.nav-open .nav-panel {
    display: block;
  }

  .nav-links {
    display: grid;
    gap: 10px;
  }

  .nav-links a + a {
    margin-left: 0;
  }

  .nav-links a + a::before {
    display: none;
  }

  .nav-links a {
    min-height: 44px;
    padding: 12px;
    border-radius: 6px;
  }

  .nav-links a:hover {
    background: var(--sun-soft);
  }

  .site-search {
    width: 100%;
    grid-template-columns: auto 1fr;
    justify-items: stretch;
    padding: 0 11px;
  }

  .site-search input {
    position: static;
    width: 100%;
    height: auto;
    opacity: 1;
    pointer-events: auto;
  }

  .header-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .site-header-inner > .nav-links {
    display: flex;
    flex: 1 1 auto;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px 10px;
    font-size: 0.84rem;
  }

  .site-header-inner > .nav-links a {
    padding: 8px 10px;
  }

  .hero,
  .page-hero-inner,
  .split-section,
  .coin-section,
  .pig-family-inner,
  .principles-inner,
  .faq-inner {
    grid-template-columns: 1fr;
  }

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

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

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

  .hero-visual {
    min-height: auto;
    padding-top: 0;
  }

  .intro-band,
  .concept-grid,
  .detail-grid,
  .detail-grid.two,
  .character-grid,
  .collection-hero,
  .collectible-grid,
  .steps-grid,
  .poster-grid,
  .education-grid,
  .games-grid {
    grid-template-columns: 1fr;
  }

  .quote-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pig-stage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .age-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .collectible-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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


.character-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 260px);
  align-items: center;
  gap: clamp(18px, 4vw, 34px);
  margin: clamp(28px, 5vw, 48px) 0;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(246, 179, 59, 0.26);
  border-radius: var(--radius);
  background: radial-gradient(circle at 88% 16%, rgba(255, 236, 174, 0.74), transparent 32%), linear-gradient(135deg, #fff, var(--paper));
  box-shadow: 0 18px 46px rgba(16, 38, 74, 0.08);
  overflow: hidden;
}

.character-callout h2 {
  margin-bottom: 10px;
}

.character-callout p {
  color: var(--muted);
  font-weight: 750;
}

.character-callout img {
  width: min(250px, 100%);
  justify-self: center;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(16, 38, 74, 0.16));
}

.micro-alert {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 10px;
  padding: 8px 12px;
  border: 1px solid rgba(246, 179, 59, 0.34);
  border-radius: 999px;
  background: var(--sun-soft);
  color: var(--blue) !important;
  font-size: 0.9rem;
  font-weight: 900 !important;
}

@media (max-width: 620px) {
  .character-callout {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .character-callout img {
    order: -1;
    width: min(220px, 82%);
  }

  :root {
    --header-offset: 116px;
  }

  .section-shell {
    width: min(100% - 32px, 1180px);
  }

  .header-logo {
    width: 48px;
    height: 66px;
  }

  .header-wordmark { font-size: 1.15rem; }

  .brand {
    flex-basis: 188px;
  }

  .nav-panel {
    max-height: calc(100vh - 118px);
  }

  .hero {
    padding-top: 22px;
  }

  h1 {
    font-size: clamp(2.3rem, 10vw, 3.2rem);
    line-height: 1.04;
  }

  .hero-copy > p {
    font-size: 1.04rem;
  }

  .hero-actions,
  .button,
  .store-button {
    width: 100%;
  }

  .button {
    min-height: 52px;
  }

  .entry-panel {
    margin-top: 22px;
  }

  .entry-card {
    padding: 18px;
  }

  .store-buttons {
    display: grid;
    grid-template-columns: 1fr;
  }

  .split-section,
  .coin-section {
    padding-inline: 16px;
  }

  .phone-preview {
    border-radius: 26px;
  }

  .app-mockup {
    max-height: none;
    overflow: hidden;
  }

  .app-header {
    align-items: flex-start;
  }

  .app-title-row {
    grid-template-columns: 1fr;
  }

  .app-title-row img {
    display: none;
  }

  .app-pig-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .app-pig-logo {
    justify-self: center;
    width: 140px;
  }

  .app-actions {
    grid-template-columns: 1fr;
  }

  .pig-illustration.big {
    width: 158px;
    height: 150px;
  }

  .floating-coin {
    right: 0;
    top: 0;
    width: 62px;
    height: 62px;
    border-width: 6px;
  }

  .poster {
    min-height: 380px;
    padding: 24px;
  }

  .pig-family-note {
    grid-template-columns: 1fr;
  }

  .quote-grid,
  .pig-stage-grid,
  .collection-home-callout,
  .avoid-list {
    grid-template-columns: 1fr;
  }

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

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

  .collection-filters button {
    flex: 1 1 calc(50% - 8px);
  }

  .pig-stage-card {
    min-height: 300px;
  }

  .age-row {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .cookie-notice {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    padding: 12px;
  }

  .cookie-notice button {
    width: auto;
    min-height: 40px;
    padding: 0 14px;
  }

  .cookie-notice p {
    display: none;
  }

  .cookie-notice strong {
    font-size: 0.86rem;
  }

  .cookie-notice strong::after {
    content: " sem cookies de rastreamento.";
    color: var(--muted);
    font-weight: 800;
  }
}

@media (max-width:720px){.approved-avatar-grid,.avatar-home-preview,.pig-principal-feature{grid-template-columns:1fr}.approved-avatar-card img,.avatar-home-preview img{height:300px}.pig-principal-feature img{order:-1;height:min(520px,68vh)}}

/* Desktop visual foundation */
.desktop-foundation {
  padding: 28px clamp(16px, 3vw, 40px) 56px;
  background: #eef3f7;
}

.desktop-shell {
  width: min(1480px, 100%);
  min-height: 880px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid #dce5ec;
  border-radius: 24px;
  background: #f7f9fb;
  box-shadow: 0 28px 80px rgba(16, 38, 79, .16);
}

.desktop-sidebar {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px 16px;
  background: #0c1f37;
  color: #edf6ff;
}

.desktop-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 10px 24px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.desktop-brand img {
  width: 42px;
  height: 52px;
  object-fit: contain;
}

.desktop-brand span,
.desktop-sidebar-note div {
  display: grid;
}

.desktop-brand strong { font-size: .96rem; }
.desktop-brand small,
.desktop-sidebar-note small { color: #9eb1c5; font-size: .73rem; }

.desktop-sidebar nav {
  display: grid;
  gap: 6px;
  margin-top: 24px;
}

.desktop-sidebar nav a,
.desktop-sidebar nav button {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: center;
  min-height: 46px;
  border: 0;
  border-radius: 10px;
  padding: 9px 10px;
  background: transparent;
  color: #cbd8e5;
  text-align: left;
  font-size: .84rem;
  font-weight: 800;
}

.desktop-sidebar nav a:hover,
.desktop-sidebar nav a.is-active {
  background: rgba(73, 199, 141, .13);
  color: #fff;
}

.desktop-sidebar nav a.is-active { box-shadow: inset 3px 0 #49c78d; }
.desktop-sidebar nav button:disabled { cursor: not-allowed; opacity: .62; }
.desktop-sidebar nav small {
  grid-column: 2;
  color: #8295a9;
  font-size: .61rem;
  font-weight: 700;
}

.desktop-sidebar-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding: 14px 10px 0;
  border-top: 1px solid rgba(255,255,255,.1);
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #49c78d;
  box-shadow: 0 0 0 4px rgba(73,199,141,.12);
}

.desktop-workspace { min-width: 0; }

.desktop-topbar {
  min-height: 96px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px clamp(22px, 4vw, 46px);
  border-bottom: 1px solid #e1e8ee;
  background: rgba(255,255,255,.9);
}

.desktop-topbar h1 {
  margin: 2px 0 0;
  font-size: clamp(1.3rem, 2.1vw, 1.8rem);
  line-height: 1.15;
}

.desktop-kicker {
  margin: 0;
  color: #648096;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.prototype-chip,
.status-badge,
.labs-status span {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 7px 11px;
  background: #e8f7ef;
  color: #16744d;
  font-size: .72rem;
  font-weight: 900;
}

.prototype-chip { margin-left: auto; }
.desktop-menu-button { display: none; }
.desktop-dashboard { display: grid; gap: 20px; padding: clamp(20px, 3vw, 38px); }

.desktop-welcome {
  min-height: 265px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 280px);
  align-items: center;
  overflow: hidden;
  border-radius: 20px;
  padding: clamp(26px, 4vw, 44px);
  background:
    radial-gradient(circle at 90% 10%, rgba(255,215,90,.3), transparent 32%),
    linear-gradient(135deg, #102f55, #125642);
  color: white;
}

.desktop-welcome h2 { max-width: 680px; margin: 8px 0 10px; color: white; font-size: clamp(1.8rem, 3vw, 2.8rem); }
.desktop-welcome p:not(.desktop-kicker) { max-width: 690px; color: #d9e7ef; }
.desktop-welcome .desktop-kicker { color: #87e4b8; }
.desktop-welcome img { width: min(230px, 100%); height: 250px; justify-self: center; object-fit: contain; object-position: center 20%; filter: drop-shadow(0 22px 28px rgba(0,0,0,.2)); }

.desktop-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.desktop-primary-action,
.desktop-secondary-action {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  padding: 10px 16px;
  font-size: .82rem;
  font-weight: 900;
}
.desktop-primary-action { background: #54d596; color: #0b2a24; }
.desktop-secondary-action { border: 1px solid currentColor; background: rgba(255,255,255,.08); color: inherit; }

.metric-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.metric-grid article,
.dashboard-card {
  border: 1px solid #e0e7ec;
  border-radius: 15px;
  padding: 20px;
  background: white;
}
.metric-grid span { color: #698096; font-size: .73rem; font-weight: 800; }
.metric-grid strong { display: block; margin: 8px 0 4px; color: #112b48; font-size: 1.65rem; }
.metric-grid strong small { font-size: .7rem; }
.metric-grid p { margin: 0; color: #8090a1; font-size: .72rem; }
.metric-grid .metric-status { color: #16744d; }

.dashboard-columns { display: grid; grid-template-columns: 1.3fr .9fr; gap: 18px; }
.card-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.card-heading h2 { margin: 5px 0 0; font-size: 1.15rem; }
.project-list,
.activity-list,
.role-tags { margin: 18px 0 0; padding: 0; list-style: none; }
.project-list li { display: grid; grid-template-columns: 42px minmax(0,1fr) auto; align-items: center; gap: 12px; padding: 13px 0; border-top: 1px solid #edf1f4; }
.project-list p,
.project-list small,
.activity-list small { margin: 2px 0 0; color: #74879a; font-size: .7rem; }
.project-list > li > small { text-align: right; }
.project-icon { display: grid; width: 40px; height: 40px; place-items: center; border-radius: 10px; font-size: .72rem; font-weight: 950; }
.project-icon-green { background: #e3f7ed; color: #16744d; }
.project-icon-blue { background: #e7f0fb; color: #285f99; }
.project-icon-gold { background: #fff4d7; color: #8c620d; }
.activity-list { display: grid; gap: 18px; }
.activity-list li { display: grid; grid-template-columns: 14px 1fr; gap: 10px; }
.activity-list li > span { width: 9px; height: 9px; margin-top: 6px; border-radius: 50%; background: #49c78d; box-shadow: 0 0 0 4px #e5f6ee; }
.activity-list div { display: grid; }

.brasileirinho-panel {
  display: grid;
  grid-template-columns: minmax(240px, 38%) minmax(0, 1fr);
  align-items: center;
  overflow: hidden;
  border: 1px solid #dbe8d9;
  border-radius: 20px;
  background: linear-gradient(135deg, #f4fbf2, #fff);
}
.brasileirinho-art { height: 510px; overflow: hidden; background: #123d29; }
.brasileirinho-art img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.brasileirinho-panel > div:last-child { padding: clamp(28px, 5vw, 56px); }
.brasileirinho-panel h2 { margin: 6px 0 12px; font-size: clamp(2rem, 4vw, 3.3rem); }
.character-lead { color: #4d6475; font-size: 1.03rem; }
.brasileirinho-panel blockquote { margin: 24px 0; border-left: 4px solid #e4b52d; padding: 8px 0 8px 18px; color: #183e2d; font-size: 1.15rem; font-weight: 900; }
.role-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.role-tags li { border-radius: 999px; padding: 7px 11px; background: #e7f2e4; color: #265d41; font-size: .73rem; font-weight: 850; }
.brasileirinho-panel .desktop-secondary-action { color: #184d36; }

.labs-panel {
  display: grid;
  grid-template-columns: minmax(0,1.4fr) minmax(240px,.6fr);
  align-items: center;
  gap: 24px;
  border: 1px solid #dce2f0;
  border-radius: 18px;
  padding: clamp(24px, 4vw, 38px);
  background: linear-gradient(135deg, #f2f4ff, #fff);
}
.labs-mark { display: inline-grid; width: 46px; height: 46px; place-items: center; border-radius: 12px; background: #263d77; color: white; font-weight: 950; }
.labs-panel h2 { margin: 8px 0; }
.labs-panel p { color: #65768b; }
.labs-status { padding: 20px; border-radius: 14px; background: white; }
.labs-status span { background: #fff1d2; color: #855b08; }

.main-characters-section { padding-top: 64px; padding-bottom: 64px; }
.main-character-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.main-character-card { overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: white; box-shadow: 0 16px 40px rgba(16,38,74,.08); }
.main-character-card img,
.placeholder-mark { width: 100%; height: 390px; object-fit: cover; object-position: center 16%; background: #eaf3ec; }
.main-character-card > div:last-child { padding: 22px; }
.main-character-card h2 { margin: 6px 0 8px; }
.main-character-card p { color: var(--muted); }
.character-role { color: #14734b; font-size: .7rem; font-weight: 950; letter-spacing: .08em; text-transform: uppercase; }
.main-character-placeholder { display: grid; grid-template-rows: 390px 1fr; }
.placeholder-mark { display: grid; place-items: center; background: linear-gradient(145deg,#fff0cf,#ffe2e9); color: #7d4b0a; font-size: 5rem; font-weight: 950; }

.desktop-foundation :focus-visible,
.main-characters-section :focus-visible {
  outline: 3px solid #f6b33b;
  outline-offset: 3px;
}

@media (max-width: 1100px) {
  .desktop-shell { grid-template-columns: 220px minmax(0,1fr); }
  .metric-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .dashboard-columns { grid-template-columns: 1fr; }
  .main-character-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 860px) {
  .desktop-foundation { padding: 12px 0 36px; }
  .desktop-shell { position: relative; display: block; min-height: 0; border-radius: 0; border-inline: 0; }
  .desktop-sidebar { position: fixed; z-index: 50; inset: 0 auto 0 0; width: min(300px, 88vw); transform: translateX(-102%); transition: transform 180ms ease; box-shadow: 18px 0 50px rgba(0,0,0,.28); }
  body.desktop-nav-open { overflow: hidden; }
  body.desktop-nav-open .desktop-sidebar { transform: translateX(0); }
  .desktop-menu-button { display: inline-grid; width: 44px; height: 44px; place-content: center; gap: 4px; border: 1px solid #dce5ec; border-radius: 9px; background: white; }
  .desktop-menu-button span { display: block; width: 19px; height: 2px; background: #10264f; }
  .desktop-topbar { position: relative; z-index: 20; min-height: 82px; padding: 14px 18px; }
  .prototype-chip { display: none; }
  .desktop-welcome { grid-template-columns: 1fr; }
  .desktop-welcome img { display: none; }
  .brasileirinho-panel { grid-template-columns: 1fr; }
  .brasileirinho-art { height: min(520px, 72vh); }
  .labs-panel { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .desktop-dashboard { padding: 14px; gap: 14px; }
  .desktop-topbar h1 { font-size: 1.12rem; }
  .desktop-topbar .desktop-kicker { display: none; }
  .metric-grid,
  .main-character-grid { grid-template-columns: 1fr; }
  .project-list li { grid-template-columns: 42px minmax(0,1fr); }
  .project-list > li > small { grid-column: 2; text-align: left; }
  .brasileirinho-art { height: 430px; }
  .main-character-card img,
  .placeholder-mark,
  .main-character-placeholder { grid-template-rows: 330px 1fr; }
  .main-character-card img,
  .placeholder-mark { height: 330px; }
}
.skip-link{position:fixed;z-index:1000;top:8px;left:8px;transform:translateY(-160%);padding:12px 16px;border-radius:8px;background:#101a3c;color:#fff;font-weight:800}.skip-link:focus{transform:none}.global-site{margin:0;background:#f4f7fb;color:#17213d}.global-layout{display:grid;grid-template-columns:276px minmax(0,1fr);min-height:100vh}.global-sidebar{position:sticky;top:0;align-self:start;height:100vh;overflow:auto;padding:24px 18px;background:#101a3c;color:#fff}.global-brand{display:flex;align-items:center;gap:10px;color:inherit;text-decoration:none}.global-brand img{width:38px;height:50px;object-fit:contain}.global-brand span{display:grid}.global-brand small{color:#aebbd3;font-size:.7rem}.global-sidebar>section{margin-top:28px}.global-sidebar h2{margin:0 10px 8px;color:#91a1be;font-size:.68rem;letter-spacing:.1em;text-transform:uppercase}.global-sidebar nav{display:grid;gap:4px}.global-sidebar nav a{display:grid;grid-template-columns:1fr auto;align-items:center;gap:8px;padding:10px;border-radius:10px;color:#dce5f5;text-decoration:none;font-size:.82rem;font-weight:750}.global-sidebar nav a small{color:#91a1be;font-size:.58rem}.global-sidebar nav a:hover,.global-sidebar nav a:focus-visible{background:#1d2a50}.global-sidebar nav a[aria-current]{background:#263866;color:#fff;box-shadow:inset 3px 0 #49c78d}.global-safety-note{display:grid;gap:3px;margin:28px 8px 0;padding:14px;border-radius:12px;background:#173d38;color:#d7fff2;font-size:.72rem}.global-safety-note span{color:#9ddccb}.global-page{min-width:0}.global-page-header{display:grid;gap:14px;padding:20px clamp(20px,4vw,58px);border-bottom:1px solid #dce3ee;background:#fff}.global-page-header>div{display:flex;align-items:center;justify-content:space-between;gap:20px}.global-eyebrow{margin:0;color:#60708d;font-size:.72rem;font-weight:850;text-transform:uppercase;letter-spacing:.08em}.global-status{display:inline-flex;padding:6px 10px;border-radius:999px;font-size:.68rem;font-weight:850}.status-available{background:#dff8ee;color:#17684f}.status-demonstrative{background:#e7edff;color:#304fa1}.status-developing{background:#fff1cf;color:#7b5600}.status-planned{background:#eee9ff;color:#5740a0}.global-breadcrumbs ol{display:flex;flex-wrap:wrap;gap:7px;margin:0;padding:0;list-style:none;font-size:.75rem}.global-breadcrumbs li+li:before{content:"/";margin-right:7px;color:#8b96a9}.global-breadcrumbs a{color:#5367aa}.global-page>main{min-height:70vh}.global-footer{display:flex;justify-content:space-between;gap:24px;padding:32px clamp(20px,4vw,58px);border-top:1px solid #dce3ee;background:#fff}.global-footer p{margin:5px 0;color:#66718a}.global-footer nav{display:flex;flex-wrap:wrap;gap:14px}.global-footer a{color:#405698}.global-mobile-header,.global-mobile-menu{display:none}.structural-page{max-width:900px;margin:0 auto;padding:clamp(56px,8vw,110px) clamp(20px,5vw,64px)}.structural-page h1{max-width:760px;margin:12px 0 20px;font-size:clamp(2.4rem,5vw,4.8rem);line-height:1;letter-spacing:-.05em}.structural-page>p{max-width:720px;font-size:1.05rem;line-height:1.7}.status-explanation{display:grid;gap:6px;margin-top:28px;padding:22px;border:1px solid #d8e0ec;border-radius:16px;background:#fff}.status-explanation span{color:#68738b}.related-links{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;margin-top:28px}.related-links a{padding:20px;border:1px solid #d8e0ec;border-radius:14px;background:#fff;color:#304c96;font-weight:800}.global-site .site-header,.global-site .site-footer{display:none}.global-site .desktop-foundation .desktop-sidebar{display:none}.global-site .desktop-foundation .desktop-shell{display:block}.global-site .desktop-workspace{min-width:0}.global-site .desktop-topbar{display:none}
@media(max-width:900px){.global-layout{display:block}.global-sidebar{display:none}.global-mobile-header{position:sticky;z-index:60;top:0;display:flex;align-items:center;justify-content:space-between;min-height:64px;padding:8px 16px;border-bottom:1px solid #dce3ee;background:rgb(255 255 255/.96);backdrop-filter:blur(14px)}.global-mobile-header .global-brand{color:#17213d}.global-mobile-header .global-brand img{width:30px;height:42px}.global-mobile-menu{position:fixed;z-index:55;inset:64px 0 auto;max-height:calc(100vh - 64px);overflow:auto;padding:12px 16px 24px;border-bottom:1px solid #dce3ee;background:#fff}.global-mobile-menu nav{display:grid;gap:4px}.global-mobile-menu a{display:flex;justify-content:space-between;gap:12px;padding:13px 10px;border-radius:10px;color:#25365f;text-decoration:none;font-weight:800}.global-mobile-menu a small{color:#77829a;font-size:.66rem}.global-mobile-menu a[aria-current]{background:#edf2ff}.global-site.nav-open .global-mobile-menu{display:block}.global-page-header{padding:16px 20px}.global-footer{display:grid}.related-links{grid-template-columns:1fr}}
.global-page{overflow-x:hidden}
.structural-page .labs-prototype-card{display:grid;gap:8px;text-decoration:none}.structural-page .labs-prototype-card>strong{color:#17213d;font-size:1.18rem}.structural-page .labs-prototype-card>small{color:#68738b;font-size:.82rem;line-height:1.55}.structural-page .labs-prototype-card:hover,.structural-page .labs-prototype-card:focus-visible{border-color:#304fa1;box-shadow:0 12px 30px rgba(48,79,161,.1)}

/* Brasil Patrimonial 001 — escopo isolado do Cofrinho Labs */
.bp-prototype {
  --bp-navy: var(--blue);
  --bp-ink: #17213d;
  --bp-muted: #536078;
  --bp-surface: var(--white);
  --bp-paper: var(--paper);
  --bp-blush: var(--blush);
  --bp-line: #d8e0ec;
  --bp-real: #17684f;
  --bp-real-soft: #dff8ee;
  --bp-virtual: #7b5600;
  --bp-virtual-soft: #fff1cf;
  --bp-demo: #304fa1;
  --bp-demo-soft: #e7edff;
  --bp-future: #5740a0;
  --bp-future-soft: #eee9ff;
  --bp-radius: 18px;
  --bp-shadow: 0 18px 50px rgba(16, 38, 79, 0.09);
  overflow-wrap: anywhere;
  background:
    radial-gradient(circle at 8% 4%, rgba(246, 179, 59, 0.14), transparent 28%),
    radial-gradient(circle at 92% 10%, rgba(73, 199, 141, 0.12), transparent 26%),
    #f4f7fb;
  color: var(--bp-ink);
}

.bp-prototype [hidden] {
  display: none !important;
}

.bp-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  margin: -1px;
  padding: 0;
  border: 0;
  white-space: nowrap;
}

.bp-shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.bp-hero {
  border-bottom: 1px solid var(--bp-line);
  background:
    linear-gradient(135deg, rgba(255, 250, 244, 0.98), rgba(255, 255, 255, 0.92)),
    var(--bp-surface);
}

.bp-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  padding-block: clamp(52px, 8vw, 104px);
}

.bp-hero-copy {
  min-width: 0;
}

.bp-hero h1 {
  max-width: 820px;
  margin: 10px 0 20px;
  font-size: clamp(2.45rem, 5vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.bp-lead {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--bp-muted);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.7;
}

.bp-actions,
.bp-stage-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.bp-actions {
  margin-top: 28px;
}

.bp-prototype .button {
  min-height: 48px;
  cursor: pointer;
}

.bp-prototype .button.primary {
  border-color: var(--bp-navy);
  background: var(--bp-navy);
  color: var(--bp-surface);
  box-shadow: 0 14px 32px rgba(16, 38, 79, 0.2);
}

.bp-prototype .button.primary:hover {
  background: #1d3768;
}

.bp-prototype .button.secondary {
  border-color: rgba(16, 38, 79, 0.28);
  background: var(--bp-surface);
  color: var(--bp-navy);
  box-shadow: none;
}

.bp-prototype .button:disabled {
  cursor: not-allowed;
  border-color: #cbd3df;
  background: #e8ecf2;
  color: #68738b;
  box-shadow: none;
  transform: none;
}

.bp-storage-note {
  margin: 14px 0 0;
  color: var(--bp-muted);
  font-size: 0.82rem;
}

.bp-safety-notice {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(73, 199, 141, 0.32);
  border-radius: var(--bp-radius);
  background:
    linear-gradient(145deg, rgba(23, 61, 56, 0.98), rgba(16, 38, 79, 0.98));
  color: #ffffff;
  box-shadow: var(--bp-shadow);
}

.bp-safety-notice strong {
  color: #d7fff2;
  font-size: 1.05rem;
}

.bp-safety-notice p {
  margin: 0;
  color: #e1e8f3;
  line-height: 1.7;
}

.bp-section-heading {
  max-width: 790px;
  margin-bottom: 30px;
}

.bp-section-heading h2 {
  margin: 8px 0 14px;
  font-size: clamp(1.85rem, 3.5vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.bp-section-heading > p:last-child {
  margin-bottom: 0;
  color: var(--bp-muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

.bp-territory,
.bp-experience {
  padding-block: clamp(58px, 8vw, 100px);
}

.bp-territory {
  border-bottom: 1px solid var(--bp-line);
  background: rgba(255, 255, 255, 0.76);
}

.bp-map-panel {
  margin: 0;
  padding: clamp(20px, 4vw, 38px);
  border: 1px solid var(--bp-line);
  border-radius: calc(var(--bp-radius) + 4px);
  background:
    radial-gradient(circle at 54% 42%, rgba(73, 199, 141, 0.1), transparent 34%),
    linear-gradient(145deg, #f8fbf7, #ffffff);
  box-shadow: var(--bp-shadow);
}

.bp-region-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bp-region {
  display: grid;
  align-content: start;
  gap: 9px;
  min-width: 0;
  padding: 18px;
  border: 1px solid #dbe8d9;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.96);
}

.bp-region > strong {
  color: var(--bp-navy);
  font-size: 1rem;
}

.bp-region > small {
  color: var(--bp-muted);
  line-height: 1.45;
}

.bp-region-norte {
  grid-column: 1 / 4;
}

.bp-region-nordeste {
  grid-column: 4 / 7;
}

.bp-region-centro-oeste {
  grid-column: 2 / 4;
}

.bp-region-sudeste {
  grid-column: 4 / 6;
}

.bp-region-sul {
  grid-column: 3 / 5;
}

.bp-city-marker {
  display: grid;
  gap: 2px;
  padding: 11px 12px;
  border-left: 4px solid var(--bp-real);
  border-radius: 8px;
  background: var(--bp-real-soft);
  color: var(--bp-real);
  font-weight: 900;
}

.bp-city-marker small {
  font-size: 0.75rem;
  font-weight: 750;
}

.bp-future-label,
.bp-tag,
.bp-seal {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border-radius: 999px;
  font-weight: 850;
}

.bp-future-label {
  padding: 5px 9px;
  background: var(--bp-future-soft);
  color: var(--bp-future);
  font-size: 0.75rem;
}

.bp-map-panel figcaption {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--bp-line);
  color: var(--bp-muted);
  font-size: 0.82rem;
  line-height: 1.6;
}

.bp-experience {
  background: #f4f7fb;
}

.bp-stepper {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.bp-stepper li {
  display: grid;
  min-width: 0;
  gap: 5px;
  align-content: start;
  padding: 14px;
  border: 1px solid var(--bp-line);
  border-radius: 13px;
  background: var(--bp-surface);
}

.bp-stepper li > span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: #e8ecf2;
  color: #536078;
  font-size: 0.78rem;
  font-weight: 950;
}

.bp-stepper li strong {
  color: var(--bp-ink);
  font-size: 0.78rem;
  line-height: 1.25;
}

.bp-stepper li small {
  color: var(--bp-muted);
  font-size: 0.75rem;
}

.bp-stepper li[data-state="current"] {
  border-color: rgba(48, 79, 161, 0.42);
  background: var(--bp-demo-soft);
  box-shadow: inset 0 3px var(--bp-demo);
}

.bp-stepper li[data-state="current"] > span {
  background: var(--bp-demo);
  color: #ffffff;
}

.bp-stepper li[data-state="completed"] {
  border-color: rgba(23, 104, 79, 0.3);
  background: var(--bp-real-soft);
}

.bp-stepper li[data-state="completed"] > span {
  background: var(--bp-real);
  color: #ffffff;
}

.bp-stepper li[data-state="locked"] {
  background: #f0f2f6;
}

.bp-stage-list {
  display: grid;
  gap: 22px;
}

.bp-stage {
  scroll-margin-top: 84px;
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid var(--bp-line);
  border-radius: calc(var(--bp-radius) + 2px);
  background: var(--bp-surface);
  box-shadow: var(--bp-shadow);
}

.bp-stage-kicker {
  margin: 0 0 8px;
  color: var(--bp-demo);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bp-stage h3 {
  max-width: 780px;
  margin: 0 0 12px;
  font-size: clamp(1.45rem, 2.8vw, 2.25rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.bp-stage h3:focus {
  outline: none;
}

.bp-stage > p:not(.bp-stage-kicker),
.bp-stage form > p {
  max-width: 780px;
  color: var(--bp-muted);
  line-height: 1.65;
}

.bp-stage form {
  margin-top: 26px;
}

.bp-stage fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.bp-stage legend {
  margin-bottom: 13px;
  padding: 0;
  color: var(--bp-ink);
  font-weight: 900;
}

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

.bp-answer-options,
.bp-decision-options {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bp-choice-card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  min-width: 0;
  min-height: 72px;
  align-items: start;
  padding: 16px;
  border: 1px solid var(--bp-line);
  border-radius: 14px;
  background: var(--bp-surface);
  color: var(--bp-ink);
  cursor: pointer;
}

.bp-choice-card:hover {
  border-color: rgba(48, 79, 161, 0.46);
  background: #f8faff;
}

.bp-choice-card:has(input:checked) {
  border-color: var(--bp-demo);
  background: var(--bp-demo-soft);
  box-shadow: inset 0 0 0 1px var(--bp-demo);
}

.bp-choice-card:has(input:disabled) {
  cursor: not-allowed;
  background: #eef1f5;
  color: #68738b;
}

.bp-choice-card input {
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  accent-color: var(--bp-demo);
}

.bp-choice-card > span {
  display: grid;
  min-width: 0;
  gap: 5px;
}

.bp-choice-card > .bp-choice-copy {
  min-width: 0;
}

.bp-choice-card > .bp-choice-copy > strong,
.bp-choice-card > .bp-choice-copy > small {
  display: block;
}

.bp-choice-card > .bp-choice-copy > small {
  margin-top: 0.3rem;
  color: var(--bp-muted);
}

.bp-choice-card strong {
  line-height: 1.35;
}

.bp-choice-card small {
  color: var(--bp-muted);
  line-height: 1.5;
}

.bp-choice-card em {
  color: var(--bp-demo);
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 800;
  line-height: 1.45;
}

.bp-stage-actions {
  margin-top: 22px;
}

.bp-feedback {
  min-height: 28px;
  margin: 18px 0 0;
  padding: 12px 14px;
  border-radius: 10px;
}

.bp-feedback:empty {
  min-height: 0;
  padding: 0;
}

.bp-feedback[data-state="success"] {
  background: var(--bp-real-soft);
  color: var(--bp-real);
}

.bp-feedback[data-state="error"] {
  background: #fff0f0;
  color: #8c2530;
}

.bp-property-card,
.bp-granted-summary,
.bp-dashboard-card,
.bp-wall {
  min-width: 0;
  border: 1px solid var(--bp-line);
  border-radius: var(--bp-radius);
  background: var(--bp-surface);
}

.bp-property-card {
  margin-top: 24px;
  padding: clamp(20px, 3vw, 28px);
  background:
    linear-gradient(145deg, rgba(255, 241, 207, 0.56), rgba(255, 255, 255, 0.96));
}

.bp-granted-summary {
  margin-top: 24px;
  padding: clamp(20px, 3vw, 28px);
  border-left: 5px solid var(--bp-real);
  background:
    linear-gradient(145deg, rgba(223, 248, 238, 0.82), rgba(255, 255, 255, 0.98));
}

.bp-granted-summary h4 {
  margin: 8px 0 0;
  color: var(--bp-ink);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.bp-card-heading {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: flex-start;
  justify-content: space-between;
}

.bp-card-heading h4 {
  margin: 8px 0 0;
  color: var(--bp-ink);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.2;
}

.bp-tag {
  margin: 0;
  padding: 6px 10px;
  font-size: 0.75rem;
}

.bp-tag-real {
  background: var(--bp-real-soft);
  color: var(--bp-real);
}

.bp-tag-virtual {
  background: var(--bp-virtual-soft);
  color: var(--bp-virtual);
}

.bp-tag-demo {
  background: var(--bp-demo-soft);
  color: var(--bp-demo);
}

.bp-tag-future {
  background: var(--bp-future-soft);
  color: var(--bp-future);
}

.bp-seal {
  padding: 7px 11px;
  background: var(--bp-virtual-soft);
  color: var(--bp-virtual);
  font-size: 0.75rem;
}

.bp-details,
.bp-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 22px 0 0;
}

.bp-details > div,
.bp-metrics > div {
  min-width: 0;
  padding: 14px 0;
  border-top: 1px solid #e8edf3;
}

.bp-details > div:nth-child(odd),
.bp-metrics > div:nth-child(odd) {
  padding-right: 18px;
}

.bp-details > div:nth-child(even),
.bp-metrics > div:nth-child(even) {
  padding-left: 18px;
  border-left: 1px solid #e8edf3;
}

.bp-details dt,
.bp-metrics dt {
  color: var(--bp-muted);
  font-size: 0.75rem;
  font-weight: 800;
}

.bp-details dd,
.bp-metrics dd {
  margin: 4px 0 0;
  color: var(--bp-ink);
  font-weight: 850;
}

.bp-metrics dd strong {
  font-size: 1.35rem;
}

.bp-card-disclaimer {
  margin: 20px 0 0;
  padding: 14px;
  border-left: 4px solid var(--bp-demo);
  border-radius: 8px;
  background: var(--bp-demo-soft);
  color: var(--bp-demo);
  font-size: 0.82rem;
  line-height: 1.55;
}

.bp-balance-note {
  margin: 18px 0 0;
  padding: 12px 14px;
  border-radius: 10px;
  background: var(--bp-virtual-soft);
  color: var(--bp-virtual);
  font-size: 0.82rem;
  line-height: 1.55;
}

.bp-final-stage {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(248, 250, 255, 1));
}

.bp-dashboard {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.bp-dashboard-card,
.bp-wall {
  padding: clamp(20px, 3vw, 28px);
  box-shadow: 0 12px 34px rgba(16, 38, 79, 0.06);
}

.bp-dashboard-card > h4 {
  margin: 26px 0 8px;
  font-size: 1rem;
}

.bp-ledger,
.bp-wall-events {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bp-ledger:empty::before {
  content: "As movimentações aparecerão depois da sua decisão.";
  display: block;
  padding: 14px 0;
  color: var(--bp-muted);
  font-size: 0.82rem;
}

.bp-ledger li,
.bp-wall-events li {
  padding: 13px 0;
  border-top: 1px solid #e8edf3;
  color: var(--bp-ink);
  line-height: 1.5;
}

.bp-future-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.bp-future-grid li {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 13px;
  border: 1px dashed rgba(87, 64, 160, 0.36);
  border-radius: 11px;
  background: var(--bp-future-soft);
}

.bp-future-grid span {
  color: var(--bp-ink);
  font-weight: 800;
}

.bp-future-grid strong {
  color: var(--bp-future);
  font-size: 0.75rem;
}

.bp-wall {
  margin-top: 18px;
}

.bp-wall-events {
  margin-top: 20px;
}

.bp-wall-events li {
  position: relative;
  padding-left: 24px;
}

.bp-wall-events li::before {
  position: absolute;
  left: 2px;
  top: 19px;
  width: 9px;
  height: 9px;
  content: "";
  border-radius: 50%;
  background: var(--bp-real);
  box-shadow: 0 0 0 4px var(--bp-real-soft);
}

.bp-reactions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.bp-reactions button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(48, 79, 161, 0.3);
  border-radius: 999px;
  padding: 10px 14px;
  background: var(--bp-surface);
  color: var(--bp-demo);
  font-weight: 850;
  cursor: pointer;
}

.bp-reactions button:hover,
.bp-reactions button[aria-pressed="true"] {
  border-color: var(--bp-demo);
  background: var(--bp-demo-soft);
}

.bp-reactions button span {
  display: grid;
  min-width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 999px;
  background: var(--bp-demo);
  color: #ffffff;
  font-size: 0.75rem;
}

.bp-prototype :where(a, button, input, summary):focus-visible {
  outline: 3px solid var(--bp-navy);
  outline-offset: 3px;
}

.bp-prototype :where(.button.primary, .bp-safety-notice a):focus-visible {
  outline-color: var(--bp-navy);
  box-shadow:
    0 0 0 2px #ffffff,
    0 0 0 5px var(--bp-navy);
}

.bp-choice-card:focus-within {
  outline: 3px solid var(--bp-navy);
  outline-offset: 3px;
}

@media (max-width: 1100px) {
  .bp-hero-grid,
  .bp-dashboard {
    grid-template-columns: 1fr;
  }

  .bp-stepper {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .bp-answer-options,
  .bp-decision-options {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .bp-stepper {
    grid-template-columns: 1fr;
  }

  .bp-stepper li {
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
  }

  .bp-stepper li > span {
    grid-row: 1 / 3;
  }

  .bp-stepper li small {
    grid-column: 3;
    grid-row: 1 / 3;
    text-align: right;
  }

  .bp-region-grid,
  .bp-choice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bp-region {
    grid-column: auto;
  }

  .bp-answer-options,
  .bp-decision-options {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .bp-shell {
    width: min(100% - 32px, 1180px);
  }

  .bp-hero-grid {
    padding-block: 42px 50px;
  }

  .bp-hero h1 {
    font-size: clamp(2.15rem, 11vw, 3rem);
  }

  .bp-territory,
  .bp-experience {
    padding-block: 48px;
  }

  .bp-region-grid,
  .bp-choice-grid,
  .bp-details,
  .bp-metrics,
  .bp-future-grid {
    grid-template-columns: 1fr;
  }

  .bp-details > div:nth-child(odd),
  .bp-details > div:nth-child(even),
  .bp-metrics > div:nth-child(odd),
  .bp-metrics > div:nth-child(even) {
    padding-right: 0;
    padding-left: 0;
    border-left: 0;
  }

  .bp-actions,
  .bp-stage-actions {
    align-items: stretch;
  }

  .bp-actions .button,
  .bp-stage-actions .button {
    width: 100%;
  }

  .bp-stage,
  .bp-map-panel {
    padding: 18px;
  }

  .bp-stepper li {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .bp-stepper li small {
    grid-column: 2;
    grid-row: auto;
    text-align: left;
  }

  .bp-card-heading {
    display: grid;
  }

  .bp-reactions {
    display: grid;
  }

  .bp-reactions button {
    width: 100%;
    justify-content: space-between;
  }
}

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

  .bp-prototype .button:hover {
    transform: none;
  }
}

/* Brasil Patrimonial — refinamento visual 002 */
.bp-hero {
  background:
    radial-gradient(circle at 84% 18%, rgba(69, 197, 147, 0.14), transparent 30%),
    linear-gradient(145deg, #fffaf2 0%, #f7f9ff 58%, #eef9f5 100%);
}

.bp-hero-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
}

.bp-reset-action {
  border: 0;
  border-bottom: 1px solid currentColor;
  padding: 0.35rem 0;
  background: transparent;
  color: var(--bp-muted);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.bp-hero-territory {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(23, 104, 79, 0.2);
  border-radius: 28px;
  padding: clamp(1.25rem, 2vw, 2rem);
  background: linear-gradient(155deg, #0f493e, #17684f 58%, #1f8065);
  color: white;
  box-shadow: 0 26px 65px rgba(16, 72, 59, 0.2);
}

.bp-hero-territory .bp-tag {
  background: rgba(255, 255, 255, 0.14);
  color: white;
}

.bp-hero-territory h2 {
  max-width: 18ch;
  margin: 0.6rem 0 0;
  color: white;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
}

.bp-brazil-concept {
  position: absolute;
  inset: 1.5rem 1.5rem auto auto;
  width: 42%;
  aspect-ratio: 1;
  opacity: 0.9;
}

.bp-brazil-shape {
  position: absolute;
  inset: 6% 10% 8% 7%;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-radius: 42% 58% 48% 52% / 34% 38% 62% 66%;
  background: linear-gradient(145deg, rgba(255, 224, 112, 0.28), rgba(92, 217, 167, 0.32));
  transform: rotate(-9deg);
}

.bp-map-dot {
  position: absolute;
  width: 0.8rem;
  height: 0.8rem;
  border: 3px solid white;
  border-radius: 50%;
  background: #ffcc4d;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.16);
}

.bp-map-dot-jp { top: 31%; right: 16%; }
.bp-map-dot-sp { top: 61%; right: 29%; }

.bp-hero-cities {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.65rem;
  max-width: 64%;
  margin-top: 1.5rem;
}

.bp-hero-cities article {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  padding: 0.75rem 0.9rem;
  background: rgba(7, 40, 34, 0.42);
}

.bp-hero-cities strong,
.bp-hero-cities small {
  display: block;
}

.bp-hero-cities small {
  margin-top: 0.25rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
}

.bp-future-regions,
.bp-concept-note {
  position: relative;
  z-index: 1;
  margin: 0.9rem 0 0;
  font-size: 0.75rem;
}

.bp-future-regions strong {
  display: block;
  margin-top: 0.2rem;
  color: #ffe39a;
}

.bp-concept-note {
  color: #fff;
}

.bp-first-fold-notice {
  margin: -0.4rem 0 1.4rem;
  border-left: 4px solid var(--bp-real);
  padding: 0.7rem 1rem;
  color: var(--bp-ink);
  font-weight: 700;
}

.bp-city-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.bp-city-profile {
  border: 1px solid var(--bp-line);
  border-radius: 22px;
  padding: clamp(1.25rem, 2vw, 1.8rem);
  box-shadow: var(--bp-shadow);
}

.bp-city-profile-jp {
  background: linear-gradient(145deg, #f2fff9, #e4f7f0);
}

.bp-city-profile-sp {
  background: linear-gradient(145deg, #f4f6ff, #e8edff);
}

.bp-city-role {
  color: var(--bp-muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.bp-city-profile h3 {
  margin: 0.75rem 0 0.4rem;
  color: var(--bp-ink);
  font-size: 1.6rem;
}

.bp-city-profile h3 span {
  color: var(--bp-demo);
  font-size: 0.85rem;
}

.bp-city-profile ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1rem 0;
  padding: 0;
  list-style: none;
}

.bp-city-profile li {
  border-radius: 999px;
  padding: 0.35rem 0.65rem;
  background: white;
  color: var(--bp-ink);
  font-size: 0.8rem;
  font-weight: 700;
}

.bp-progress-mobile {
  display: none;
}

.bp-receipt {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 680px;
  margin: 1.25rem 0;
  border: 1px dashed #9aa8bf;
  border-radius: 14px;
  padding: 0.9rem;
  background: #fffdf7;
  box-shadow: 0 8px 24px rgba(23, 33, 61, 0.07);
}

.bp-receipt div {
  padding: 0.35rem 0.75rem;
}

.bp-receipt div + div {
  border-left: 1px solid var(--bp-line);
}

.bp-receipt span,
.bp-receipt strong {
  display: block;
}

.bp-receipt span {
  color: var(--bp-muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bp-receipt strong {
  margin-top: 0.3rem;
  color: var(--bp-ink);
  font-size: 1.25rem;
}

.bp-receipt-change {
  background: var(--bp-virtual-soft);
}

.bp-challenge-success {
  margin-top: 1rem;
  border: 1px solid rgba(23, 104, 79, 0.24);
  border-radius: 18px;
  padding: 1rem;
  background: linear-gradient(145deg, #effcf7, #fff9e7);
}

.bp-pig-guidance {
  border-left: 4px solid #efb83c;
  border-radius: 0 12px 12px 0;
  padding: 0.7rem 0.85rem;
  background: #fff8df;
  color: #58420a;
}

.bp-equation {
  margin: 1rem 0;
  color: var(--bp-ink);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.bp-achievement-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.bp-achievement-row > * {
  border-radius: 999px;
  padding: 0.5rem 0.8rem;
}

.bp-achievement-row strong {
  background: var(--bp-virtual-soft);
  color: var(--bp-virtual);
}

.bp-achievement-row span {
  background: var(--bp-real-soft);
  color: var(--bp-real);
  font-weight: 800;
}

.bp-plot-visual {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  margin: 1.25rem 0;
  border: 1px solid rgba(23, 104, 79, 0.24);
  border-radius: 20px;
  background:
    linear-gradient(90deg, transparent 48%, rgba(255,255,255,.48) 49%, rgba(255,255,255,.48) 51%, transparent 52%),
    linear-gradient(#bfe6d3 49%, #a8d8c0 50%);
}

.bp-plot-road {
  position: absolute;
  inset: auto 0 0;
  padding: 0.6rem 1rem;
  background: #34455d;
  color: white;
  font-size: 0.75rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.bp-plot-land {
  position: absolute;
  inset: 22% 24% 23%;
  display: grid;
  place-content: center;
  border: 3px solid white;
  border-radius: 14px;
  background: #f8e9ac;
  color: var(--bp-ink);
  text-align: center;
  box-shadow: 0 12px 30px rgba(33, 65, 54, 0.16);
}

.bp-plot-land small { display: block; margin-top: 0.25rem; }

.bp-plot-marker {
  position: absolute;
  top: 13%;
  left: 50%;
  width: 1.1rem;
  height: 1.1rem;
  border: 4px solid white;
  border-radius: 50% 50% 50% 0;
  background: #e9557c;
  transform: rotate(-45deg);
}

.bp-development {
  display: grid;
  grid-template-columns: auto auto minmax(140px, 1fr);
  align-items: center;
  gap: 0.75rem;
  margin: 1rem 0;
  color: var(--bp-ink);
}

.bp-development progress,
.bp-progress-mobile progress,
.bp-next-achievement progress,
.bp-community-project progress {
  width: 100%;
  accent-color: var(--bp-real);
}

.bp-decision-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.4rem;
  margin: 0.75rem 0 0;
}

.bp-decision-preview div {
  border-radius: 8px;
  padding: 0.45rem 0.55rem;
  background: rgba(255, 255, 255, 0.72);
}

.bp-decision-preview dt {
  color: var(--bp-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
}

.bp-decision-preview dd {
  margin: 0.15rem 0 0;
  color: var(--bp-ink);
  font-size: 0.82rem;
  font-weight: 800;
}

.bp-city-choice-joao-pessoa { border-left: 5px solid var(--bp-real); }
.bp-city-choice-sao-paulo { border-left: 5px solid var(--bp-demo); }
.bp-city-facts,
.bp-city-neighborhoods { display: block; margin-top: 0.45rem; }
.bp-city-neighborhoods { font-weight: 700; }

.bp-ledger-heading,
.bp-ledger li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
}

.bp-ledger-heading {
  padding: 0.5rem 0;
  color: var(--bp-muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.bp-ledger li strong { white-space: nowrap; }

.bp-next-achievement {
  margin: 1rem 0;
  border: 1px solid #d8c9ff;
  border-radius: 16px;
  padding: 1rem;
  background: linear-gradient(145deg, #f5f1ff, #fffaf0);
}

.bp-next-label {
  margin: 0.8rem 0 0.2rem;
  color: var(--bp-demo);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bp-next-achievement h5,
.bp-wall h5 {
  margin: 0.25rem 0;
  color: var(--bp-ink);
  font-size: 1.2rem;
}

.bp-wall-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.25rem 0;
}

.bp-community-project,
.bp-player-card,
.bp-demo-profiles {
  border: 1px solid var(--bp-line);
  border-radius: 16px;
  padding: 1rem;
  background: #f8fafc;
}

.bp-player-card dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
  margin: 0.8rem 0 0;
}

.bp-player-card dl div { padding: 0.45rem; background: white; border-radius: 8px; }
.bp-player-card dt { color: var(--bp-muted); font-size: 0.7rem; }
.bp-player-card dd { margin: 0.1rem 0 0; color: var(--bp-ink); font-weight: 800; }

.bp-demo-profiles > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 0.8rem;
}

.bp-demo-profiles article {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.bp-demo-profiles article > span {
  display: grid;
  flex: 0 0 2.4rem;
  width: 2.4rem;
  height: 2.4rem;
  place-items: center;
  border-radius: 50%;
  background: var(--bp-demo-soft);
  color: var(--bp-demo);
  font-size: 0.75rem;
  font-weight: 900;
}

.bp-demo-profiles p,
.bp-demo-profiles small { display: block; margin: 0; }
.bp-demo-profiles small { color: var(--bp-muted); }

@media (max-width: 900px) {
  .bp-hero-grid {
    grid-template-columns: 1fr;
  }

  .bp-hero-territory {
    margin-top: 0.5rem;
  }

  .bp-city-showcase {
    grid-template-columns: 1fr;
  }

  .bp-progress-mobile {
    display: block;
    margin-bottom: 1rem;
    border: 1px solid var(--bp-line);
    border-radius: 16px;
    padding: 0.9rem 1rem;
    background: white;
    box-shadow: 0 10px 28px rgba(16, 38, 79, 0.07);
  }

  .bp-progress-mobile p,
  .bp-progress-mobile h3 {
    margin: 0;
  }

  .bp-progress-mobile p {
    color: var(--bp-demo);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
  }

  .bp-progress-mobile h3 {
    margin-top: 0.2rem;
    color: var(--bp-ink);
    font-size: 1.15rem;
  }

  .bp-progress-mobile progress {
    margin: 0.65rem 0;
  }

  .bp-progress-mobile summary {
    display: flex;
    align-items: center;
    min-height: 44px;
    color: var(--bp-demo);
    font-weight: 800;
    cursor: pointer;
  }

  .bp-stage h3 {
    scroll-margin-top: 84px;
  }

  .bp-progress-mobile ol {
    margin: 0.75rem 0 0;
    padding-left: 1.3rem;
    color: var(--bp-muted);
  }

  .bp-progress-mobile li[data-state="current"] {
    color: var(--bp-ink);
    font-weight: 900;
  }

  .bp-progress-mobile li[data-state="completed"] {
    color: var(--bp-real);
  }

  .bp-stepper {
    display: none;
  }
}

@media (max-width: 620px) {
  .bp-hero {
    padding-top: 0.65rem;
  }

  .bp-hero h1 {
    font-size: clamp(2.05rem, 11vw, 2.8rem);
  }

  .bp-hero-copy .eyebrow {
    margin-bottom: 0.35rem;
  }

  .bp-actions {
    align-items: flex-start;
  }

  .bp-reset-action {
    font-size: 0.82rem;
  }

  .bp-hero-territory {
    padding: 1.1rem;
  }

  .bp-brazil-concept {
    width: 39%;
    opacity: 0.62;
  }

  .bp-hero-cities {
    max-width: 72%;
  }

  .bp-first-fold-notice {
    margin-top: 0;
    font-size: 0.86rem;
  }

  .bp-receipt,
  .bp-wall-grid,
  .bp-demo-profiles > div {
    grid-template-columns: 1fr;
  }

  .bp-receipt div + div {
    border-top: 1px solid var(--bp-line);
    border-left: 0;
  }

  .bp-development {
    grid-template-columns: auto auto;
  }

  .bp-development progress {
    grid-column: 1 / -1;
  }

  .bp-decision-preview {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 901px) {
  .global-site:has(.bp-prototype) .global-layout {
    grid-template-columns: 238px minmax(0, 1fr);
  }

  .global-site:has(.bp-prototype) .global-sidebar {
    padding-inline: 14px;
  }

  .global-site:has(.bp-prototype) .global-sidebar nav a {
    padding-block: 8px;
    font-size: 0.76rem;
  }
}

@media (max-width: 1180px) {
  .bp-hero-grid {
    grid-template-columns: 1fr;
  }
}

/* Public concept foundation */
.global-site {
  background: #f3f6fb;
  color: #14243f;
}

.global-layout {
  grid-template-columns: 264px minmax(0, 1fr);
}

.global-sidebar {
  position: relative;
  top: auto;
  align-self: stretch;
  min-width: 0;
  min-height: 100vh;
  height: auto;
  overflow: visible;
  padding: 26px 17px;
  background: #0b2140;
}

.global-sidebar > section {
  margin-top: 24px;
}

.global-sidebar h2 {
  color: #8fa5c3;
}

.global-sidebar nav a {
  min-width: 0;
  padding: 9px 10px;
  color: #dce8f7;
}

.global-sidebar nav a > span {
  min-width: 0;
}

.global-sidebar nav a small {
  min-width: 0;
  max-width: 92px;
  color: #8fa5c3;
  text-align: right;
}

.global-sidebar nav a[aria-current] {
  background: #173d69;
  box-shadow: inset 3px 0 #55c697;
}

.global-safety-note {
  margin-top: 24px;
  background: #123f40;
}

.global-page-header {
  padding-block: 16px;
}

.global-status {
  white-space: nowrap;
}

.status-available {
  background: #ddf7ed;
  color: #126049;
}

.status-demonstrative {
  background: #e7efff;
  color: #254d92;
}

.status-developing {
  background: #fff2d5;
  color: #72520a;
}

.status-planned {
  background: #eeeaff;
  color: #53418f;
}

.concept-page {
  --concept-blue: #164f91;
  --concept-blue-dark: #0c315f;
  --concept-blue-soft: #eaf2ff;
  --concept-green: #278a67;
  --concept-green-soft: #e5f5ee;
  --concept-gold: #e9ad39;
  --concept-warm: #f3ebe2;
  --concept-border: #d8e1ee;
  --concept-muted: #5d6d84;
  overflow: clip;
  color: #14243f;
}

.concept-page *,
.concept-page *::before,
.concept-page *::after {
  box-sizing: border-box;
}

.concept-page h1,
.concept-page h2,
.concept-page h3,
.concept-page p {
  margin-top: 0;
}

.concept-page h1,
.concept-page h2,
.concept-page h3 {
  text-wrap: balance;
}

.concept-page p {
  line-height: 1.68;
}

.concept-page a:focus-visible {
  outline: 3px solid #f1b63f;
  outline-offset: 3px;
}

.concept-kicker {
  margin-bottom: 12px;
  color: var(--concept-blue);
  font-size: .73rem;
  font-weight: 850;
  letter-spacing: .105em;
  text-transform: uppercase;
}

.concept-lead {
  max-width: 720px;
  color: #465b75;
  font-size: clamp(1.05rem, 1.8vw, 1.24rem);
}

.concept-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
  min-height: min(760px, calc(100vh - 104px));
  border-bottom: 1px solid var(--concept-border);
  background:
    radial-gradient(circle at 82% 20%, rgb(77 144 211 / .16), transparent 31%),
    linear-gradient(150deg, #f9fbff 0%, #edf4ff 58%, #e5f3ee 100%);
}

.concept-hero-copy {
  align-self: center;
  padding: clamp(64px, 8vw, 126px) clamp(24px, 6vw, 88px);
}

.concept-hero h1,
.concept-module-hero h1 {
  max-width: 760px;
  margin-bottom: 26px;
  color: #0d2c55;
  font-size: clamp(3rem, 6vw, 6.5rem);
  line-height: .96;
  letter-spacing: -.065em;
}

.concept-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}

.concept-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 19px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 820;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
}

.concept-button-primary {
  background: var(--concept-blue);
  color: #fff;
  box-shadow: 0 12px 26px rgb(18 69 130 / .18);
}

.concept-button-primary:hover {
  background: #0e3f79;
}

.concept-button-secondary {
  border-color: #b9c8db;
  background: #fff;
  color: #164879;
}

.concept-button-light {
  background: #fff;
  color: #123d70;
}

.concept-text-link {
  color: var(--concept-blue);
  font-weight: 820;
}

.concept-trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.concept-trust-list li {
  padding: 7px 10px;
  border: 1px solid #c8d7e9;
  border-radius: 999px;
  background: rgb(255 255 255 / .72);
  color: #415b77;
  font-size: .72rem;
  font-weight: 760;
}

.concept-hero-visual {
  position: relative;
  display: grid;
  min-width: 0;
  place-items: end center;
  overflow: hidden;
  padding: 52px 30px 0;
}

.concept-hero-visual::before {
  position: absolute;
  width: min(510px, 88%);
  aspect-ratio: 1;
  border: 1px solid rgb(28 83 142 / .15);
  border-radius: 50%;
  background: rgb(255 255 255 / .58);
  content: "";
}

.concept-hero-visual img {
  position: relative;
  z-index: 2;
  width: min(370px, 70%);
  max-height: 630px;
  object-fit: contain;
  object-position: bottom;
}

.concept-route-card {
  position: absolute;
  z-index: 3;
  top: 13%;
  left: 5%;
  display: grid;
  max-width: 310px;
  gap: 5px;
  padding: 18px;
  border: 1px solid rgb(178 198 222 / .8);
  border-radius: 16px;
  background: rgb(255 255 255 / .92);
  box-shadow: 0 22px 55px rgb(22 57 95 / .14);
}

.concept-route-card strong {
  color: #153f70;
  font-size: 1.02rem;
}

.concept-route-card small,
.concept-route-label {
  color: var(--concept-muted);
  font-size: .7rem;
}

.concept-route-label {
  font-weight: 820;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.concept-route-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  margin-top: 8px;
}

.concept-route-line span {
  height: 4px;
  border-radius: 999px;
  background: #c7d5e7;
}

.concept-route-line span:nth-child(-n+3) {
  background: var(--concept-green);
}

.concept-hero-token {
  position: absolute;
  z-index: 3;
  right: 9%;
  bottom: 19%;
  display: grid;
  width: 74px;
  aspect-ratio: 1;
  place-items: center;
  border: 7px solid #f5cb70;
  border-radius: 50%;
  background: #e5a628;
  color: #49340a;
  box-shadow: 0 15px 30px rgb(97 67 11 / .2);
  font-weight: 900;
}

.concept-section {
  padding: clamp(64px, 8vw, 112px) clamp(22px, 5vw, 72px);
  border-bottom: 1px solid var(--concept-border);
  background: #fff;
}

.concept-section:nth-of-type(odd) {
  background: #f8faff;
}

.concept-section-heading {
  max-width: 780px;
  margin-bottom: 38px;
}

.concept-section-heading h2,
.concept-community-preview h2,
.concept-purpose-grid h2 {
  margin-bottom: 18px;
  color: #102f57;
  font-size: clamp(2.15rem, 4vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -.05em;
}

.concept-section-heading > p:last-child,
.concept-community-preview > div > p,
.concept-purpose-grid > p {
  color: var(--concept-muted);
  font-size: 1.04rem;
}

.concept-step-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.concept-step-grid li {
  min-width: 0;
  padding: 23px 20px;
  border: 1px solid var(--concept-border);
  border-radius: 16px;
  background: #fff;
}

.concept-step-grid li > span,
.concept-rule-grid article > span,
.concept-upgrade-grid article > span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--concept-blue);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.concept-step-grid h3,
.concept-rule-grid h3,
.concept-upgrade-grid h3 {
  margin-bottom: 10px;
  color: #183c68;
  font-size: 1.02rem;
}

.concept-step-grid p,
.concept-rule-grid p,
.concept-upgrade-grid p {
  margin-bottom: 0;
  color: var(--concept-muted);
  font-size: .86rem;
}

.concept-territory {
  background: #eef5ff !important;
}

.concept-territory-layout {
  display: grid;
  grid-template-columns: minmax(340px, 1.08fr) minmax(300px, .92fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: stretch;
}

.concept-brazil-map {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid #cbd9e9;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgb(255 255 255 / .85), rgb(223 237 250 / .86)),
    #e7f2fb;
}

.concept-brazil-map::before {
  position: absolute;
  inset: 13% 20%;
  border-radius: 44% 56% 50% 50% / 31% 36% 64% 69%;
  background: #d6e9dc;
  box-shadow: inset 0 0 0 1px #b6d3c0;
  clip-path: polygon(22% 0, 72% 5%, 100% 28%, 83% 51%, 66% 58%, 58% 100%, 36% 77%, 18% 62%, 0 35%);
  content: "";
}

.concept-map-region {
  position: absolute;
  z-index: 2;
  color: #527060;
  font-size: .68rem;
  font-weight: 780;
}

.region-north { top: 23%; left: 31%; }
.region-northeast { top: 31%; right: 23%; }
.region-center { top: 47%; left: 39%; }
.region-southeast { right: 30%; bottom: 28%; }
.region-south { right: 38%; bottom: 17%; }

.concept-map-pin {
  position: absolute;
  z-index: 3;
  padding: 8px 10px 8px 25px;
  border: 1px solid #a8bfd7;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 9px 20px rgb(27 69 109 / .12);
  color: #153e6d;
  font-size: .72rem;
  font-weight: 850;
}

.concept-map-pin::before {
  position: absolute;
  top: 50%;
  left: 9px;
  width: 9px;
  aspect-ratio: 1;
  transform: translateY(-50%);
  border-radius: 50%;
  background: #e25e48;
  content: "";
}

.pin-jp { top: 30%; right: 3%; }
.pin-sp { right: 12%; bottom: 28%; }

.concept-city-list {
  display: grid;
  gap: 16px;
}

.concept-city-list article {
  padding: 25px;
  border: 1px solid var(--concept-border);
  border-radius: 19px;
  background: #fff;
}

.concept-city-list article > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.concept-city-list article > div span {
  display: grid;
  width: 38px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 9px;
  background: var(--concept-blue-soft);
  color: var(--concept-blue);
  font-size: .72rem;
  font-weight: 900;
}

.concept-city-list article > div p {
  margin: 0;
  color: var(--concept-muted);
  font-size: .74rem;
}

.concept-city-list h3 {
  margin: 17px 0 14px;
  color: #153c68;
  font-size: 1.55rem;
}

.concept-city-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.concept-city-list li {
  padding: 6px 9px;
  border-radius: 999px;
  background: #f0f4f8;
  color: #50637b;
  font-size: .72rem;
}

.concept-ecosystem-grid,
.concept-safety-grid,
.concept-role-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.concept-ecosystem-grid a,
.concept-safety-grid article,
.concept-role-grid article {
  display: block;
  min-width: 0;
  padding: 25px;
  border: 1px solid var(--concept-border);
  border-radius: 17px;
  background: #fff;
  color: inherit;
  text-decoration: none;
}

.concept-ecosystem-grid a {
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.concept-ecosystem-grid a:hover {
  transform: translateY(-3px);
  border-color: #96b2d1;
  box-shadow: 0 18px 36px rgb(30 67 105 / .09);
}

.concept-card-code,
.concept-project-icon {
  display: grid;
  width: 43px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 11px;
  background: var(--concept-blue-soft);
  color: var(--concept-blue);
  font-size: .73rem;
  font-weight: 900;
}

.concept-ecosystem-grid h3 {
  margin: 21px 0 10px;
  color: #153d6a;
  font-size: 1.2rem;
}

.concept-ecosystem-grid p {
  margin-bottom: 20px;
  color: var(--concept-muted);
  font-size: .88rem;
}

.concept-ecosystem-grid small {
  color: var(--concept-green);
  font-weight: 820;
}

.concept-progress-section {
  background: #102f57 !important;
  color: #fff;
}

.concept-progress-section .concept-kicker {
  color: #89c9af;
}

.concept-progress-section h2 {
  color: #fff;
}

.concept-timeline {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.concept-timeline li {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 18px;
  min-width: 0;
}

.concept-timeline li > span {
  position: relative;
}

.concept-timeline li > span::before {
  position: absolute;
  z-index: 2;
  top: 7px;
  left: 11px;
  width: 15px;
  aspect-ratio: 1;
  border: 4px solid #8ad2b4;
  border-radius: 50%;
  background: #102f57;
  content: "";
}

.concept-timeline li:not(:last-child) > span::after {
  position: absolute;
  top: 22px;
  bottom: -6px;
  left: 18px;
  width: 1px;
  background: #416184;
  content: "";
}

.concept-timeline li > div {
  padding: 0 0 25px;
}

.concept-timeline small {
  color: #8ad2b4;
  font-weight: 820;
}

.concept-timeline h3 {
  margin: 5px 0 0;
  color: #fff;
  font-size: 1.12rem;
}

.concept-community-preview {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(340px, 1.1fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
}

.concept-community-board {
  display: grid;
  gap: 11px;
}

.concept-community-board article {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 18px;
  padding: 20px;
  border: 1px solid var(--concept-border);
  border-radius: 14px;
  background: #fff;
}

.concept-community-board article span {
  color: var(--concept-blue);
  font-size: .7rem;
  font-weight: 820;
  text-transform: uppercase;
}

.concept-community-board article strong {
  grid-column: 1;
  color: #1a3e68;
}

.concept-community-board article small {
  grid-row: 1 / span 2;
  grid-column: 2;
  align-self: center;
  color: var(--concept-muted);
}

.concept-safety {
  background: var(--concept-warm) !important;
}

.concept-safety-grid article strong {
  color: #153d69;
}

.concept-safety-grid article p,
.concept-role-grid article p {
  margin: 10px 0 0;
  color: var(--concept-muted);
  font-size: .88rem;
}

.concept-final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: clamp(58px, 7vw, 92px) clamp(22px, 5vw, 72px);
  background: #164f91;
  color: #fff;
}

.concept-final-cta .concept-kicker {
  color: #bde6d4;
}

.concept-final-cta h2 {
  max-width: 760px;
  margin-bottom: 12px;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: -.045em;
}

.concept-final-cta p {
  margin-bottom: 0;
  color: #dfeeff;
}

.concept-module-hero {
  display: flex;
  min-height: 430px;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  padding: clamp(64px, 8vw, 112px) clamp(22px, 5vw, 72px);
  border-bottom: 1px solid var(--concept-border);
  background:
    radial-gradient(circle at 90% 15%, rgb(68 133 201 / .16), transparent 30%),
    linear-gradient(145deg, #f9fbff, #edf4ff);
}

.concept-module-hero > div {
  max-width: 860px;
}

.concept-module-hero h1 {
  margin-bottom: 22px;
  font-size: clamp(2.8rem, 5.4vw, 5.9rem);
}

.concept-disclaimer {
  flex: 0 0 min(320px, 32%);
  padding: 19px;
  border: 1px solid #c5d5e7;
  border-radius: 15px;
  background: rgb(255 255 255 / .88);
}

.concept-disclaimer strong {
  color: var(--concept-blue);
}

.concept-disclaimer p {
  margin: 7px 0 0;
  color: var(--concept-muted);
  font-size: .83rem;
}

.concept-demo-shell {
  margin: clamp(30px, 5vw, 72px);
  border: 1px solid var(--concept-border);
  border-radius: 22px;
  background: #f7f9fc;
  box-shadow: 0 22px 60px rgb(26 63 102 / .08);
}

.concept-demo-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 26px;
  border-bottom: 1px solid var(--concept-border);
  border-radius: 22px 22px 0 0;
  background: #fff;
}

.concept-demo-header span,
.concept-panel-heading span,
.concept-neighborhood-aside article > span {
  color: var(--concept-blue);
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.concept-demo-header h2 {
  margin: 4px 0 0;
  color: #153c68;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
}

.concept-demo-header > small {
  color: var(--concept-muted);
}

.concept-bank-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 20px;
}

.concept-bank-metrics article,
.concept-panel {
  min-width: 0;
  padding: 20px;
  border: 1px solid var(--concept-border);
  border-radius: 15px;
  background: #fff;
}

.concept-bank-metrics article > span {
  color: var(--concept-muted);
  font-size: .72rem;
}

.concept-bank-metrics article > strong {
  display: block;
  margin-top: 13px;
  color: #153e6d;
  font-size: clamp(1.55rem, 3vw, 2.45rem);
}

.concept-bank-metrics article > strong small {
  font-size: .7rem;
}

.concept-bank-metrics article p {
  margin: 5px 0 0;
  color: var(--concept-muted);
  font-size: .72rem;
}

.concept-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0 20px 20px;
}

.concept-history-panel {
  grid-column: 1 / -1;
}

.concept-panel-heading {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.concept-panel-heading h3 {
  margin: 4px 0 0;
  color: #183f6d;
}

.concept-panel-heading > strong {
  color: var(--concept-green);
}

.concept-allocation-list {
  display: grid;
  gap: 17px;
  margin-top: 24px;
}

.concept-allocation-list p {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 7px;
  color: var(--concept-muted);
  font-size: .78rem;
}

.concept-allocation-list i,
.concept-goal-visual,
.concept-progress-bar {
  display: block;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #e6edf5;
}

.concept-allocation-list i::before,
.concept-goal-visual span,
.concept-progress-bar span {
  display: block;
  width: var(--progress);
  height: 100%;
  border-radius: inherit;
  background: var(--concept-green);
  content: "";
}

.concept-goal-visual {
  margin-top: 30px;
  height: 12px;
}

.concept-panel > p {
  margin: 15px 0 0;
  color: var(--concept-muted);
  font-size: .8rem;
}

.concept-history-panel ol {
  display: grid;
  gap: 0;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.concept-history-panel li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 18px;
  padding: 13px 0;
  border-top: 1px solid #e2e8f0;
}

.concept-history-panel li > span {
  font-weight: 760;
}

.concept-history-panel li > strong {
  color: var(--concept-green);
}

.concept-history-panel li > small {
  color: var(--concept-muted);
}

.concept-connection-flow {
  display: grid;
  grid-template-columns: repeat(5, auto);
  align-items: center;
  gap: 18px;
}

.concept-connection-flow article {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--concept-border);
  border-radius: 16px;
  background: #fff;
}

.concept-connection-flow article > span {
  color: var(--concept-green);
  font-weight: 900;
}

.concept-connection-flow h3 {
  margin: 18px 0 9px;
  color: #153d69;
}

.concept-connection-flow p {
  margin-bottom: 0;
  color: var(--concept-muted);
  font-size: .86rem;
}

.concept-connection-flow > i {
  color: #7890aa;
  font-style: normal;
  font-size: 1.4rem;
}

.concept-unit-layout {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  min-height: 440px;
}

.concept-unit-visual {
  position: relative;
  display: grid;
  overflow: hidden;
  place-items: end center;
  border-right: 1px solid var(--concept-border);
  background: #dcecf8;
}

.concept-unit-sky {
  position: absolute;
  inset: 0;
  background: linear-gradient(#c9e4f7 0 58%, #a8d09d 58%);
}

.concept-unit-building {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(320px, 62%);
  height: 250px;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: end;
  padding: 32px 28px 0;
  border-radius: 20px 20px 0 0;
  background: #f5eee4;
  box-shadow: 0 20px 30px rgb(55 75 81 / .15);
}

.concept-unit-building::before {
  position: absolute;
  inset: 22px 24px auto;
  height: 16px;
  border-radius: 999px;
  background: #d4a24d;
  content: "";
}

.concept-unit-building span {
  height: 112px;
  border: 8px solid #fff;
  border-bottom: 0;
  background: #78a7c7;
}

.concept-unit-ground {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 78px;
  background: #83b178;
}

.concept-unit-visual > small {
  position: absolute;
  z-index: 4;
  right: 12px;
  bottom: 10px;
  left: 12px;
  padding: 7px;
  border-radius: 8px;
  background: rgb(255 255 255 / .82);
  color: #4d6477;
  text-align: center;
}

.concept-unit-summary {
  align-self: center;
  padding: clamp(28px, 5vw, 60px);
}

.concept-stage-chip,
.concept-availability,
.concept-game-status,
.concept-project-grid article > strong,
.concept-availability-grid article > span {
  display: inline-flex;
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--concept-blue-soft);
  color: var(--concept-blue);
  font-size: .66rem;
  font-weight: 840;
}

.concept-unit-summary h3 {
  margin: 24px 0 12px;
  color: #173e69;
  font-size: 1.8rem;
}

.concept-unit-summary > p {
  color: var(--concept-muted);
}

.concept-unit-summary .concept-progress-bar {
  margin: 24px 0;
  height: 11px;
}

.concept-unit-summary dl,
.concept-featured-game dl {
  display: grid;
  gap: 0;
  margin: 0;
}

.concept-unit-summary dl > div,
.concept-featured-game dl > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
  border-top: 1px solid var(--concept-border);
}

.concept-unit-summary dt,
.concept-featured-game dt {
  color: var(--concept-muted);
}

.concept-unit-summary dd,
.concept-featured-game dd {
  margin: 0;
  font-weight: 760;
  text-align: right;
}

.concept-upgrade-grid,
.concept-rule-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.concept-upgrade-grid article,
.concept-rule-grid article {
  padding: 23px 20px;
  border: 1px solid var(--concept-border);
  border-radius: 16px;
  background: #fff;
}

.concept-upgrade-grid article.is-current {
  border-color: #86bda9;
  background: var(--concept-green-soft);
}

.concept-upgrade-grid small {
  display: block;
  margin-top: 22px;
  color: var(--concept-green);
  font-weight: 820;
}

.concept-patrimony-links {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(380px, 1.2fr);
  gap: clamp(30px, 6vw, 92px);
}

.concept-patrimony-links h2 {
  color: #102f57;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.03;
  letter-spacing: -.05em;
}

.concept-patrimony-links ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.concept-patrimony-links li {
  display: grid;
  gap: 5px;
  padding: 17px 0;
  border-top: 1px solid var(--concept-border);
}

.concept-patrimony-links li > span {
  color: var(--concept-blue);
  font-size: .72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.concept-featured-game {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(310px, .85fr);
  gap: 50px;
  align-items: center;
  margin: clamp(30px, 5vw, 72px);
  padding: clamp(28px, 5vw, 62px);
  border-radius: 22px;
  background: #102f57;
  color: #fff;
}

.concept-featured-game .concept-kicker,
.concept-featured-game .concept-availability {
  color: #8bd0b4;
}

.concept-featured-game .concept-availability {
  margin-bottom: 20px;
  background: rgb(71 157 122 / .18);
}

.concept-featured-game h2 {
  margin-bottom: 17px;
  color: #fff;
  font-size: clamp(2.3rem, 4vw, 4.4rem);
  letter-spacing: -.05em;
}

.concept-featured-game p {
  color: #d6e3f2;
}

.concept-featured-game dl {
  margin: 24px 0;
}

.concept-featured-game dl > div {
  border-color: #3b587a;
}

.concept-game-path {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
  align-items: center;
  gap: 8px;
}

.concept-game-path span {
  display: grid;
  width: 72px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid #587493;
  border-radius: 50%;
  background: #183e68;
  font-size: .7rem;
  font-weight: 820;
  text-align: center;
}

.concept-game-path i {
  height: 2px;
  background: #5ba889;
}

.concept-game-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.concept-game-grid article {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--concept-border);
  border-radius: 17px;
  background: #fff;
}

.concept-game-status {
  align-self: flex-start;
  margin-bottom: 24px;
}

.status-live {
  background: var(--concept-green-soft) !important;
  color: #17664e !important;
}

.concept-game-grid h3 {
  margin: 18px 0 9px;
  color: #153d69;
}

.concept-game-grid p {
  color: var(--concept-muted);
  font-size: .87rem;
}

.concept-game-grid ul {
  display: grid;
  gap: 6px;
  margin: auto 0 0;
  padding: 17px 0 0;
  border-top: 1px solid var(--concept-border);
  list-style: none;
  color: #53677e;
  font-size: .75rem;
}

.concept-neighborhood-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(290px, .75fr);
  gap: 16px;
  padding: 20px;
}

.concept-board-column,
.concept-neighborhood-aside {
  display: grid;
  gap: 12px;
}

.concept-system-post,
.concept-neighborhood-aside article {
  padding: 22px;
  border: 1px solid var(--concept-border);
  border-radius: 16px;
  background: #fff;
}

.concept-system-post > span {
  color: var(--concept-blue);
  font-size: .68rem;
  font-weight: 850;
  text-transform: uppercase;
}

.concept-system-post h3,
.concept-neighborhood-aside strong {
  display: block;
  margin: 17px 0 8px;
  color: #173e69;
}

.concept-system-post p,
.concept-neighborhood-aside p {
  margin-bottom: 8px;
  color: var(--concept-muted);
}

.concept-system-post small {
  color: #75839a;
}

.concept-neighborhood-aside .concept-progress-bar {
  margin-top: 16px;
}

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

.concept-project-grid article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--concept-border);
  border-radius: 17px;
  background: #fff;
}

.concept-project-grid article > div small {
  color: var(--concept-blue);
  font-weight: 820;
}

.concept-project-grid h3 {
  margin: 7px 0 8px;
  color: #153d69;
}

.concept-project-grid p {
  margin-bottom: 0;
  color: var(--concept-muted);
  font-size: .86rem;
}

.concept-project-grid article > strong {
  grid-column: 2;
  justify-self: start;
}

.concept-step-grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.concept-no-money {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 24px;
  padding: 20px 23px;
  border: 1px solid #e3d2bd;
  border-radius: 15px;
  background: #fff8ef;
}

.concept-no-money strong {
  flex: 0 0 auto;
  color: #744d17;
}

.concept-no-money p {
  margin: 0;
  color: #735f47;
}

.concept-how-hero {
  align-items: center;
}

.concept-purpose-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(300px, 1.1fr);
  gap: clamp(30px, 7vw, 100px);
  align-items: center;
}

.concept-how-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--concept-border);
  list-style: none;
}

.concept-how-list li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--concept-border);
}

.concept-how-list li > span {
  color: var(--concept-green);
  font-weight: 900;
}

.concept-how-list h3 {
  margin-bottom: 6px;
  color: #153d69;
}

.concept-how-list p {
  margin-bottom: 0;
  color: var(--concept-muted);
  font-size: .87rem;
}

.concept-how-list small {
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--concept-blue-soft);
  color: var(--concept-blue);
  font-weight: 820;
}

.concept-role-grid article h3 {
  margin-bottom: 0;
  color: #153d69;
}

.concept-availability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.concept-availability-grid article {
  padding: 24px;
  border: 1px solid var(--concept-border);
  border-radius: 17px;
  background: #fff;
}

.concept-availability-grid h3 {
  margin: 22px 0 10px;
  color: #153d69;
}

.concept-availability-grid p {
  color: var(--concept-muted);
  font-size: .87rem;
}

.concept-availability-grid a {
  color: var(--concept-blue);
  font-weight: 820;
}

@media (max-width: 1180px) {
  .concept-step-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .concept-upgrade-grid,
  .concept-rule-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .concept-bank-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .concept-hero {
    grid-template-columns: 1fr;
  }

  .concept-hero-visual {
    min-height: 520px;
  }

  .concept-territory-layout,
  .concept-community-preview,
  .concept-patrimony-links,
  .concept-featured-game,
  .concept-purpose-grid {
    grid-template-columns: 1fr;
  }

  .concept-ecosystem-grid,
  .concept-safety-grid,
  .concept-role-grid,
  .concept-game-grid,
  .concept-availability-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .concept-module-hero {
    display: grid;
  }

  .concept-disclaimer {
    max-width: 520px;
  }

  .concept-unit-layout,
  .concept-neighborhood-layout {
    grid-template-columns: 1fr;
  }

  .concept-unit-visual {
    min-height: 390px;
    border-right: 0;
    border-bottom: 1px solid var(--concept-border);
  }

  .concept-connection-flow {
    grid-template-columns: 1fr;
  }

  .concept-connection-flow > i {
    transform: rotate(90deg);
    justify-self: center;
  }
}

@media (max-width: 680px) {
  .global-status {
    white-space: normal;
    text-align: right;
  }

  .concept-hero-copy {
    padding-top: 58px;
  }

  .concept-hero h1,
  .concept-module-hero h1 {
    font-size: clamp(2.65rem, 13vw, 4.2rem);
  }

  .concept-actions,
  .concept-final-cta,
  .concept-no-money {
    align-items: stretch;
    flex-direction: column;
  }

  .concept-button {
    width: 100%;
  }

  .concept-step-grid,
  .concept-ecosystem-grid,
  .concept-safety-grid,
  .concept-role-grid,
  .concept-game-grid,
  .concept-availability-grid,
  .concept-bank-metrics,
  .concept-dashboard-grid,
  .concept-upgrade-grid,
  .concept-rule-grid,
  .concept-project-grid,
  .concept-step-grid-four {
    grid-template-columns: 1fr;
  }

  .concept-history-panel,
  .concept-project-grid article > strong {
    grid-column: auto;
  }

  .concept-brazil-map {
    min-height: 430px;
  }

  .concept-community-board article {
    grid-template-columns: 1fr;
  }

  .concept-community-board article small {
    grid-row: auto;
    grid-column: auto;
  }

  .concept-demo-shell,
  .concept-featured-game {
    margin-inline: 14px;
  }

  .concept-demo-header {
    display: grid;
  }

  .concept-unit-building {
    width: 72%;
  }

  .concept-game-path {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .concept-game-path i {
    width: 2px;
    height: 18px;
  }

  .concept-project-grid article {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .concept-how-list li {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .concept-how-list small {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 420px) {
  .concept-hero-visual {
    min-height: 460px;
  }

  .concept-route-card {
    right: 4%;
    left: 4%;
    max-width: none;
  }

  .concept-hero-visual img {
    width: 76%;
  }

  .concept-hero-token {
    right: 5%;
    bottom: 16%;
    width: 62px;
  }

  .concept-section,
  .concept-module-hero {
    padding-inline: 18px;
  }

  .concept-project-grid article {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .concept-ecosystem-grid a {
    transition: none;
  }

  .concept-ecosystem-grid a:hover {
    transform: none;
  }
}

@media (max-width: 900px) {
  .global-site:has(.bp-prototype) .global-page-header {
    gap: 6px;
    padding: 8px 16px;
  }

  .global-site:has(.bp-prototype) .global-breadcrumbs ol {
    gap: 4px;
    font-size: 0.66rem;
  }

  .global-site:has(.bp-prototype) .global-breadcrumbs li + li::before {
    margin-right: 4px;
  }

  .global-site:has(.bp-prototype) .global-eyebrow {
    font-size: 0.63rem;
  }

  .global-site:has(.bp-prototype) .global-status {
    padding: 4px 8px;
    font-size: 0.6rem;
  }

  .bp-hero-grid {
    gap: 24px;
    padding-block: 24px 20px;
  }
}
