:root {
  --black: #050403;
  --black-soft: #0d0907;
  --panel: #100c09;
  --panel-strong: #15100c;
  --white: #fffaf0;
  --muted: #d5cbbd;
  --gold: #ffc72c;
  --gold-deep: #d99000;
  --red: #dc071b;
  --red-deep: #85030c;
  --green: #07913a;
  --green-deep: #034f20;
  --line: rgba(255, 199, 44, 0.34);
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  scrollbar-width: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(255, 199, 44, 0.025) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(rgba(255, 199, 44, 0.025) 1px, transparent 1px) 0 0 / 72px 72px,
    var(--black);
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, transparent 0%, rgba(94, 4, 11, 0.11) 48%, transparent 100%);
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  color: #111;
  background: var(--gold);
  border-radius: 4px;
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.kente-band {
  width: 100%;
  height: 32px;
  background-color: #060503;
  background-image: url("assets/littleagent-revision02-kente.png");
  background-repeat: repeat-x;
  background-position: center 51%;
  background-size: 238px 119px;
  border-top: 1px solid rgba(255, 199, 44, 0.7);
  border-bottom: 1px solid rgba(255, 199, 44, 0.7);
}

.kente-band-top {
  height: 29px;
  border-top: 0;
}

.kente-band-bottom {
  height: 36px;
}

.site-header {
  position: relative;
  z-index: 10;
  width: calc(100% - 64px);
  max-width: 1376px;
  min-height: 76px;
  margin: -3px auto 14px;
  overflow: hidden;
  background: #030303;
  border: 1px solid rgba(255, 199, 44, 0.76);
  border-radius: 0 0 24px 24px;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.46);
}

.nav-shell {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 20px;
}

.brand {
  min-width: 415px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand img {
  width: 190px;
  height: auto;
}

.brand-divider {
  width: 1px;
  height: 42px;
  flex: 0 0 auto;
  background: rgba(255, 255, 255, 0.76);
}

.brand strong {
  color: #ffd75a;
  font-size: 34px;
  line-height: 1;
  font-weight: 850;
}

.nav-menu {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 38px;
  margin-left: auto;
}

.nav-menu a {
  color: #f7f0e5;
  font-size: 15px;
  font-weight: 750;
  white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--gold);
}

.nav-id {
  min-width: 218px;
  min-height: 50px;
  margin: 0;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid var(--gold);
  border-radius: 28px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.nav-id b {
  color: #ffd85a;
  font-size: 21px;
}

main {
  width: 100%;
}

.hero {
  position: relative;
  isolation: isolate;
  width: calc(100% - 64px);
  max-width: 1376px;
  min-height: 540px;
  margin: 0 auto;
  overflow: hidden;
  background-color: #0a0602;
  background-image:
    linear-gradient(90deg, #0b0702 0%, rgba(11, 7, 2, 0.97) 24%, rgba(8, 5, 2, 0.83) 44%, rgba(8, 5, 2, 0.12) 69%, rgba(7, 3, 2, 0) 100%),
    url("assets/littleagent-revision02-hero.png");
  background-repeat: no-repeat;
  background-position: center, center 49%;
  background-size: cover, cover;
  border-radius: 0 0 22px 22px;
  box-shadow: inset 0 -70px 80px rgba(0, 0, 0, 0.25);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle at 14% 24%, rgba(255, 199, 44, 0.14), transparent 28%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: 650px;
  padding: 34px 20px 30px;
}

.eyebrow {
  width: max-content;
  max-width: 100%;
  min-height: 38px;
  margin: 0 0 34px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--gold);
  background: rgba(3, 3, 3, 0.83);
  border: 1px solid var(--gold);
  border-radius: 20px;
  font-size: 15px;
  font-weight: 800;
}

.eyebrow span {
  width: 11px;
  height: 11px;
  flex: 0 0 auto;
  background: var(--gold);
  border-radius: 50%;
}

.hero h1 {
  max-width: 625px;
  margin: 0;
  color: var(--white);
  font-size: 64px;
  line-height: 1.08;
  font-weight: 900;
}

.hero h1 span {
  display: block;
  color: #ffda62;
}

.hero-subtitle {
  max-width: 540px;
  margin: 4px 0 18px;
  color: #f6ede1;
  font-size: 21px;
  line-height: 1.42;
}

.search-callout {
  width: 536px;
  min-height: 58px;
  margin: 0 0 26px;
  padding: 9px 16px;
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(2, 2, 2, 0.9);
  border: 2px solid var(--gold);
  border-radius: 18px;
  color: #fff;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 750;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.28);
}

.search-callout b {
  margin: 0 7px;
  color: #ffd54c;
  font-size: 20px;
}

.search-icon {
  position: relative;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  border: 3px solid var(--gold);
  border-radius: 50%;
}

.search-icon::after {
  position: absolute;
  width: 17px;
  height: 3px;
  right: -13px;
  bottom: -8px;
  content: "";
  background: var(--gold);
  transform: rotate(45deg);
  transform-origin: left center;
}

.hero-actions {
  width: 794px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.cta {
  position: relative;
  min-width: 0;
  min-height: 76px;
  padding: 0 18px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  color: #fff;
  box-shadow: 0 13px 26px rgba(0, 0, 0, 0.32), inset 0 1px rgba(255, 255, 255, 0.2);
  transition: transform 160ms ease, filter 160ms ease;
}

.cta:hover,
.cta:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.cta:focus-visible,
.nav-menu a:focus-visible,
.brand:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

.cta b {
  min-width: 0;
  font-size: 19px;
  line-height: 1.15;
  text-align: center;
}

.cta-host {
  background: linear-gradient(135deg, #ffc72c, #efaa00);
}

.cta-agent {
  background: linear-gradient(135deg, #e3061a, #bd0614);
}

.cta-coin {
  background: linear-gradient(135deg, #07983e, #06712e);
}

.cta-arrow {
  font-size: 27px;
  line-height: 1;
  font-weight: 300;
  text-align: right;
}

.route-icon,
.feature-mark {
  width: 32px;
  height: 32px;
  display: block;
  flex: 0 0 auto;
  object-fit: contain;
}

.cta .route-icon {
  filter: brightness(0) invert(1);
}

.overview-strip {
  width: calc(100% - 104px);
  max-width: 1336px;
  margin: 52px auto 42px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}

.overview-card {
  min-width: 0;
  min-height: 140px;
  padding: 22px 24px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  background: rgba(12, 9, 7, 0.92);
  border: 2px solid currentColor;
  border-radius: 18px;
}

.overview-card h2,
.overview-card p {
  margin: 0;
}

.overview-card h2 {
  margin-bottom: 8px;
  font-size: 23px;
  line-height: 1.12;
}

.overview-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.overview-host,
.overview-steps {
  color: var(--gold);
}

.overview-agent {
  color: var(--red);
}

.overview-coin {
  color: var(--green);
}

.overview-card p {
  color: #ddd2c5;
}

.section-shell {
  width: calc(100% - 120px);
  max-width: 1320px;
  margin: 0 auto;
}

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

.section-heading > * {
  margin-top: 0;
}

.section-kicker,
.panel-kicker {
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 850;
  text-transform: uppercase;
}

.section-heading h2 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 44px;
  line-height: 1.08;
  font-weight: 900;
}

.section-heading > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.party-section {
  min-height: 730px;
  padding: 74px 0 82px;
}

.party-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(320px, 1fr);
  gap: 36px;
  align-items: stretch;
}

.party-visual {
  min-height: 440px;
  background-color: #1a0c03;
  background-image: url("assets/littleagent-revision02-party.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border: 1px solid rgba(255, 199, 44, 0.46);
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.34);
}

.feature-stack {
  display: grid;
  gap: 18px;
}

.feature-card {
  min-width: 0;
  padding: 24px 24px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  background: rgba(15, 11, 8, 0.96);
  border: 1px solid currentColor;
  border-radius: 14px;
}

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

.feature-card h3 {
  margin-bottom: 7px;
  color: currentColor;
  font-size: 19px;
  line-height: 1.2;
}

.feature-card p {
  color: #d9cfc2;
  font-size: 14px;
  line-height: 1.45;
}

.feature-gold {
  color: var(--gold);
}

.feature-green {
  color: #16b956;
}

.feature-red {
  color: #ed1c2e;
}

.paths-section {
  min-height: 910px;
  padding: 78px 0 88px;
}

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

.journey-card {
  min-width: 0;
  overflow: hidden;
  background: #0c0907;
  border: 2px solid currentColor;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.34);
}

.journey-host {
  color: var(--gold);
}

.journey-agent {
  color: var(--red);
}

.journey-card > img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  object-position: center 42%;
  border-bottom: 1px solid currentColor;
}

.journey-body {
  padding: 25px 28px 28px;
}

.journey-title {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
}

.journey-title p,
.journey-title h2 {
  margin: 0;
}

.journey-title p {
  margin-bottom: 3px;
  color: #cfc4b8;
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
}

.journey-title h2 {
  color: currentColor;
  font-size: 29px;
  line-height: 1.1;
}

.journey-intro {
  min-height: 68px;
  margin: 18px 0;
  color: #f1e8dd;
  font-size: 15px;
  line-height: 1.5;
}

.journey-steps {
  min-height: 188px;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
  color: #d6ccbf;
  counter-reset: none;
}

.journey-steps li {
  min-width: 0;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: start;
  gap: 11px;
  font-size: 13px;
  line-height: 1.45;
}

.journey-steps span,
.steps-panel li span {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: currentColor;
  font-size: 12px;
  line-height: 1;
  font-weight: 850;
}

.path-cta {
  width: 100%;
  min-height: 56px;
  margin-top: 20px;
  border-radius: 12px;
}

.path-cta b {
  font-size: 16px;
}

.official-section {
  min-height: 710px;
  padding: 82px 0 92px;
}

.official-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.42fr);
  gap: 42px;
}

.coin-panel,
.steps-panel {
  min-width: 0;
  min-height: 400px;
  border-radius: 20px;
}

.coin-panel {
  padding: 34px;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-content: start;
  gap: 14px 18px;
  color: #19d663;
  background: #062414;
  border: 2px solid var(--green);
}

.coin-panel > .route-icon {
  width: 48px;
  height: 48px;
  transform: scale(1.35);
  transform-origin: top left;
}

.coin-panel h2,
.coin-panel p {
  margin-top: 0;
}

.coin-panel h2 {
  margin-bottom: 14px;
  color: #20dd6b;
  font-size: 36px;
  line-height: 1.1;
}

.coin-panel p:last-child {
  margin-bottom: 0;
  color: #e2f1e7;
  font-size: 17px;
  line-height: 1.55;
}

.coin-panel .panel-kicker {
  color: #8ce7ae;
}

.panel-cta {
  width: 100%;
  min-height: 58px;
  margin-top: 34px;
  grid-column: 1 / -1;
  border-radius: 12px;
}

.steps-panel {
  padding: 36px 38px;
  background: #0c0907;
  border: 2px solid var(--gold);
}

.steps-panel .panel-kicker {
  color: #deb146;
}

.steps-panel h2 {
  margin: 0 0 26px;
  color: #ffdb66;
  font-size: 37px;
  line-height: 1.1;
}

.steps-panel ol {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
  list-style: none;
}

.steps-panel li {
  min-width: 0;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  color: #e6ddd1;
  font-size: 15px;
  line-height: 1.42;
}

.steps-panel li span {
  color: #111;
  background: var(--gold);
  border-color: var(--gold);
}

.community-faq-section {
  min-height: 820px;
  padding: 82px 0 88px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 68px;
  align-items: start;
}

.community-column,
.faq-column {
  min-width: 0;
}

.community-card {
  padding: 28px;
  display: grid;
  gap: 0;
  background:
    linear-gradient(135deg, rgba(255, 199, 44, 0.07), transparent 44%),
    #0d0907;
  border: 1px solid var(--gold);
  border-radius: 18px;
}

.community-card article {
  min-width: 0;
  padding: 22px 0;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 17px;
  border-bottom: 1px solid rgba(255, 199, 44, 0.2);
}

.community-card article:last-child {
  border-bottom: 0;
}

.community-number {
  color: var(--gold);
  font-size: 13px;
  font-weight: 850;
}

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

.community-card h3 {
  margin-bottom: 7px;
  color: #ffda61;
  font-size: 19px;
}

.community-card p {
  color: #d4cabe;
  font-size: 14px;
  line-height: 1.5;
}

.faq-column {
  padding: 34px;
  background: #0b0806;
  border: 1px solid #85776a;
  border-radius: 18px;
  box-shadow: 20px 20px 0 rgba(255, 255, 255, 0.045);
}

.faq-column .section-heading {
  margin-bottom: 24px;
}

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

.faq-list article {
  min-width: 0;
  padding: 14px 16px;
  background: #080705;
  border: 1px solid #786f65;
  border-radius: 9px;
}

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

.faq-list h3 {
  margin-bottom: 5px;
  color: #ffd655;
  font-size: 14px;
  line-height: 1.3;
}

.faq-list p {
  color: #d9d0c4;
  font-size: 12px;
  line-height: 1.42;
}

.final-cta {
  width: calc(100% - 120px);
  max-width: 1320px;
  min-height: 188px;
  margin: 14px auto 50px;
  padding: 26px 28px;
  display: grid;
  grid-template-columns: minmax(400px, 1fr) minmax(600px, 1.4fr);
  align-items: center;
  gap: 30px;
  background:
    linear-gradient(90deg, rgba(255, 199, 44, 0.09), transparent 34%),
    #050403;
  border: 2px solid var(--gold);
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.42);
}

.final-brand {
  min-width: 0;
  display: grid;
  grid-template-columns: 160px 1px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
}

.final-brand img {
  width: 160px;
  height: auto;
}

.final-brand h2,
.final-brand p {
  margin: 0;
}

.final-brand h2 {
  color: #ffda5d;
  font-size: 28px;
  line-height: 1;
}

.final-brand p {
  margin-top: 7px;
  color: #e6dccf;
  font-size: 12px;
  line-height: 1.4;
}

.final-actions {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.final-actions .cta {
  min-height: 58px;
  padding: 0 12px;
  grid-template-columns: 28px minmax(0, 1fr) 12px;
  gap: 6px;
  border-radius: 12px;
}

.final-actions .route-icon {
  transform: scale(0.8);
  transform-origin: center;
}

.final-actions .cta b {
  font-size: 14px;
}

.final-actions .cta-arrow {
  font-size: 20px;
}

.site-footer {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a99d8f;
  background: #030302;
  border-top: 1px solid rgba(255, 199, 44, 0.18);
}

.site-footer p {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
}

.site-footer span {
  margin: 0 7px;
  color: var(--gold);
}

@media (max-width: 1240px) {
  .brand {
    min-width: 340px;
  }

  .brand img {
    width: 156px;
  }

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

  .nav-menu {
    gap: 22px;
  }

  .nav-id {
    min-width: 190px;
    gap: 12px;
  }

  .hero-copy {
    width: 610px;
  }

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

  .hero-actions {
    width: 750px;
  }

  .overview-strip {
    gap: 16px;
  }

  .overview-card {
    padding: 19px;
  }

  .final-cta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .site-header,
  .hero {
    width: calc(100% - 32px);
  }

  .nav-shell {
    gap: 18px;
  }

  .brand {
    min-width: auto;
  }

  .nav-menu {
    display: none;
  }

  .nav-id {
    margin-left: auto;
  }

  .hero-actions {
    width: calc(100vw - 72px);
  }

  .overview-strip {
    width: calc(100% - 48px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-shell,
  .final-cta {
    width: calc(100% - 48px);
  }

  .party-grid,
  .path-grid,
  .official-grid,
  .community-faq-section {
    grid-template-columns: 1fr;
  }

  .journey-intro,
  .journey-steps {
    min-height: 0;
  }

  .community-faq-section {
    gap: 54px;
  }
}

@media (max-width: 600px) {
  body {
    background:
      linear-gradient(90deg, rgba(255, 199, 44, 0.025) 1px, transparent 1px) 0 0 / 52px 52px,
      linear-gradient(rgba(255, 199, 44, 0.025) 1px, transparent 1px) 0 0 / 52px 52px,
      var(--black);
  }

  .kente-band {
    height: 26px;
    background-size: 186px 93px;
    background-position: center 51%;
  }

  .kente-band-top {
    height: 24px;
  }

  .kente-band-bottom {
    height: 30px;
  }

  .site-header {
    width: calc(100% - 32px);
    min-height: 52px;
    margin: -1px auto 13px;
    border-radius: 0 0 18px 18px;
  }

  .nav-shell {
    min-height: 50px;
    padding: 0 10px;
  }

  .brand {
    width: 100%;
    gap: 12px;
  }

  .brand img {
    width: 132px;
  }

  .brand-divider {
    height: 35px;
  }

  .brand strong {
    min-width: 0;
    font-size: 26px;
    white-space: nowrap;
  }

  .nav-id {
    display: none;
  }

  .hero {
    width: 100%;
    min-height: 767px;
    margin: 0;
    overflow: hidden;
    background-image:
      linear-gradient(180deg, #080503 0%, #080503 66%, rgba(8, 5, 3, 0.65) 75%, rgba(8, 5, 3, 0.06) 100%),
      url("assets/littleagent-revision02-hero.png");
    background-position: center, 61% bottom;
    background-size: 100% 100%, auto 270px;
    border-radius: 0;
    box-shadow: none;
  }

  .hero::before {
    display: none;
  }

  .hero-shape {
    position: absolute;
    z-index: 0;
    display: block;
    pointer-events: none;
  }

  .hero-shape-red {
    width: 430px;
    height: 330px;
    top: 203px;
    left: 92px;
    background: #4f0609;
    clip-path: polygon(9% 3%, 100% 0, 100% 92%, 28% 100%, 0 40%);
    transform: rotate(-4deg);
  }

  .hero-shape-gold {
    width: 246px;
    height: 390px;
    top: 282px;
    left: -108px;
    background: #8b6500;
    border-radius: 50%;
    transform: rotate(18deg);
  }

  .hero-copy {
    width: 100%;
    padding: 5px 28px 0;
  }

  .eyebrow {
    min-height: 36px;
    margin: 0 auto 34px;
    padding: 0 13px;
    display: flex;
    justify-content: center;
    font-size: 14px;
  }

  .eyebrow span {
    width: 10px;
    height: 10px;
  }

  .hero h1 {
    max-width: 340px;
    font-size: 38px;
    line-height: 1.1;
  }

  .hero-subtitle {
    max-width: 330px;
    margin: 8px 0 14px;
    font-size: 15px;
    line-height: 1.35;
  }

  .search-callout {
    width: 100%;
    min-height: 58px;
    margin-bottom: 20px;
    padding: 8px 13px;
    gap: 15px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.35;
  }

  .search-callout b {
    margin: 0 3px;
    font-size: 16px;
  }

  .hero-actions {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .cta {
    min-height: 58px;
    grid-template-columns: 38px minmax(0, 1fr) 18px;
    padding: 0 17px;
    border-radius: 13px;
  }

  .cta b {
    font-size: 19px;
  }

  .cta-arrow {
    font-size: 25px;
  }

  .overview-strip {
    width: calc(100% - 40px);
    margin: 30px auto 44px;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .overview-card {
    min-height: 112px;
    padding: 18px 20px;
    grid-template-columns: 38px minmax(0, 1fr);
    border-width: 1px;
    border-radius: 12px;
  }

  .overview-card h2 {
    font-size: 19px;
  }

  .overview-card p {
    font-size: 13px;
  }

  .overview-steps {
    display: none;
  }

  .section-shell {
    width: calc(100% - 40px);
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .section-heading h2 {
    font-size: 32px;
  }

  .section-heading > p:last-child {
    font-size: 15px;
    line-height: 1.45;
  }

  .section-kicker,
  .panel-kicker {
    font-size: 11px;
  }

  .party-section {
    min-height: 0;
    padding: 58px 0 68px;
  }

  .party-grid {
    gap: 22px;
  }

  .party-visual {
    min-height: 0;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
  }

  .feature-stack {
    gap: 12px;
  }

  .feature-card {
    min-height: 108px;
    padding: 18px;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 12px;
    border-radius: 11px;
  }

  .feature-card h3 {
    font-size: 16px;
  }

  .feature-card p {
    font-size: 12px;
  }

  .paths-section {
    min-height: 0;
    padding: 64px 0 72px;
  }

  .paths-section > .section-heading {
    margin-bottom: 34px;
  }

  .path-grid {
    gap: 74px;
  }

  .journey-card {
    border-width: 1px;
    border-radius: 14px;
  }

  .journey-card > img {
    aspect-ratio: 16 / 10;
    object-position: center;
  }

  .journey-body {
    padding: 22px 18px 20px;
  }

  .journey-title {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 10px;
  }

  .journey-title h2 {
    font-size: 27px;
  }

  .journey-intro {
    margin: 17px 0 20px;
    font-size: 14px;
  }

  .journey-steps {
    gap: 16px;
  }

  .journey-steps li {
    font-size: 12px;
  }

  .path-cta {
    min-height: 56px;
    margin-top: 24px;
  }

  .path-cta b {
    font-size: 16px;
  }

  .official-section {
    min-height: 0;
    padding: 64px 0 72px;
  }

  .official-grid {
    gap: 46px;
  }

  .coin-panel,
  .steps-panel {
    min-height: 0;
    border-radius: 14px;
  }

  .coin-panel {
    padding: 24px 20px;
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .coin-panel h2 {
    font-size: 30px;
  }

  .coin-panel p:last-child {
    font-size: 14px;
  }

  .panel-cta {
    margin-top: 20px;
  }

  .steps-panel {
    padding: 24px 20px;
  }

  .steps-panel h2 {
    font-size: 31px;
  }

  .steps-panel ol {
    gap: 14px;
  }

  .steps-panel li {
    padding: 12px;
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 10px;
    background: #090705;
    border: 1px solid rgba(255, 199, 44, 0.48);
    border-radius: 10px;
    font-size: 12px;
  }

  .community-faq-section {
    min-height: 0;
    padding: 64px 0 72px;
    gap: 72px;
  }

  .community-card {
    padding: 17px;
    border-radius: 13px;
  }

  .community-card article {
    padding: 19px 0;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 10px;
  }

  .community-card h3 {
    font-size: 17px;
  }

  .community-card p {
    font-size: 12px;
  }

  .faq-column {
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .faq-list {
    gap: 10px;
  }

  .faq-list article {
    padding: 14px;
  }

  .faq-list h3 {
    font-size: 13px;
  }

  .faq-list p {
    font-size: 11px;
  }

  .final-cta {
    width: calc(100% - 32px);
    min-height: 560px;
    margin: 120px auto 46px;
    padding: 28px 20px;
    grid-template-columns: 1fr;
    align-content: center;
    gap: 32px;
    border-radius: 14px;
  }

  .final-brand {
    grid-template-columns: 128px 1px minmax(0, 1fr);
    gap: 12px;
  }

  .final-brand img {
    width: 128px;
  }

  .final-brand .brand-divider {
    height: 52px;
  }

  .final-brand h2 {
    font-size: 25px;
  }

  .final-brand p {
    font-size: 10px;
  }

  .final-actions {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .final-actions .cta {
    min-height: 56px;
    grid-template-columns: 34px minmax(0, 1fr) 18px;
    padding: 0 16px;
  }

  .final-actions .cta b {
    font-size: 16px;
  }

  .site-footer {
    min-height: 60px;
  }
}

@media (max-width: 370px) {
  .brand img {
    width: 118px;
  }

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

  .hero-copy {
    padding-right: 22px;
    padding-left: 22px;
  }

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

  .search-callout {
    font-size: 13px;
  }

  .cta b {
    font-size: 17px;
  }

  .final-brand {
    grid-template-columns: 112px 1px minmax(0, 1fr);
  }

  .final-brand img {
    width: 112px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .cta {
    transition: none;
  }
}
