:root {
  --ink: #102033;
  --muted: #65758b;
  --paper: #f6f9fc;
  --white: #ffffff;
  --line: rgba(63, 87, 119, .14);
  --blue: #1f7cff;
  --blue-dark: #155ed8;
  --mint: #31d5a5;
  --mint-dark: #079267;
  --mint-soft: #eafbf5;
  --gold: #f5b642;
  --gold-soft: #fff7df;
  --purple: #7c5cff;
  --purple-soft: #f1edff;
  --navy: #0f2035;
  --shadow: 0 28px 78px rgba(16, 32, 51, .11);
  --soft-shadow: 0 14px 40px rgba(16, 32, 51, .07);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 6%, rgba(49, 213, 165, .18), transparent 31rem),
    radial-gradient(circle at 88% 9%, rgba(31, 124, 255, .16), transparent 34rem),
    linear-gradient(180deg, #fbfdff 0, var(--paper) 48%, #eef5fb 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
a:focus-visible { outline: 3px solid rgba(31, 124, 255, .42); outline-offset: 4px; border-radius: 12px; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--navy); letter-spacing: 0; }
h1 { margin-bottom: 20px; font-size: clamp(3.35rem, 5vw, 6rem); line-height: .98; }
h2 { margin-bottom: 14px; font-size: clamp(2rem, 3.45vw, 3.7rem); line-height: 1.05; }
h3 { margin-bottom: 7px; font-size: 1.22rem; line-height: 1.18; }
p { color: var(--muted); }
svg { display: block; }

.shell,
.site-header {
  width: min(1530px, calc(100% - 124px));
  margin-inline: auto;
}

.site-header {
  min-height: 92px;
  display: grid;
  grid-template-columns: auto minmax(360px, 1fr) auto;
  align-items: center;
  gap: 58px;
}
.compact-header { grid-template-columns: auto auto; justify-content: space-between; }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-size: 1.32rem;
  font-weight: 900;
  white-space: nowrap;
}
.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 15px 15px 15px 6px;
  color: var(--white);
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, .9) 0 10%, transparent 11%),
    linear-gradient(135deg, #0b6ff0 0, #42b7ff 52%, #31d5a5 100%);
  box-shadow: 0 13px 28px rgba(31, 124, 255, .23);
}
.brand-mark:before {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  background: url('/assets/web/logo.png') center / cover no-repeat;
}
.brand-mark:after {
  position: absolute;
  right: -12px;
  bottom: -12px;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  content: "";
  background: rgba(255, 255, 255, .18);
  transform: rotate(22deg);
}
.brand-mark span { position: relative; z-index: 1; font-size: 1.02rem; font-weight: 950; }

.main-nav,
.header-actions,
.hero-buttons,
.placeholder-actions,
.cta-actions,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.main-nav {
  justify-content: flex-start;
  gap: clamp(24px, 2.6vw, 42px);
  color: #587086;
  font-size: 1.08rem;
  font-weight: 790;
}
.main-nav a:hover, .text-link:hover, .site-footer a:hover { color: var(--blue-dark); }
.header-actions { justify-content: flex-end; gap: 16px; }
.text-link { color: var(--navy); font-size: 1.05rem; font-weight: 830; }

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 1.02rem;
  font-weight: 850;
  white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary { color: var(--white); background: linear-gradient(135deg, var(--blue), #55b9ff); box-shadow: 0 13px 28px rgba(31, 124, 255, .24); }
.button-soft { color: var(--navy); border-color: var(--line); background: rgba(255, 255, 255, .86); box-shadow: 0 9px 24px rgba(16, 32, 51, .06); }
.button-purple { color: var(--white); background: linear-gradient(135deg, #6d4dff, #a986ff); box-shadow: 0 13px 28px rgba(124, 92, 255, .22); }

.hero-section { padding: 42px 0 24px; }
.hero-layout {
  min-height: 540px;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(10px, 1.4vw, 22px);
}
.eyebrow {
  margin-bottom: 14px;
  color: var(--blue-dark);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero-copy { min-width: 0; width: 100%; padding-right: clamp(8px, 1.2vw, 18px); }
.headline-line { display: block; white-space: nowrap; }
.hero-copy h1 em { color: var(--mint-dark); font-style: normal; }
.hero-lead { max-width: 650px; margin-bottom: 28px; color: #526882; font-size: 1.13rem; }
.hero-buttons { margin-bottom: 24px; gap: 12px; }

.social-proof {
  width: min(620px, 100%);
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 14px;
  border: 1px solid rgba(63, 87, 119, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .74);
  box-shadow: 0 12px 32px rgba(16, 32, 51, .055);
}
.avatar-stack { display: flex; align-items: center; flex-shrink: 0; }
.avatar,
.avatar-stack strong {
  position: relative;
  width: 42px;
  height: 42px;
  margin-left: -10px;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(16, 32, 51, .1);
  font-size: .7rem;
  font-weight: 900;
}
.avatar {
  display: block;
  overflow: hidden;
  background: #fff;
}
.avatar:first-child { margin-left: 0; }
.avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.avatar-stack strong {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  line-height: 1;
  text-align: center;
  background: #fff;
}
.social-proof p { margin: 0; font-size: .85rem; }
.social-proof p strong { display: block; color: var(--navy); }
.social-proof p span { display: block; color: #6c7f94; }

.hero-map-visual {
  position: relative;
  min-width: 0;
  max-width: 100%;
  justify-self: end;
  width: 100%;
  padding: 6px;
}
.hero-map-visual:before {
  position: absolute;
  inset: 28px 22px 14px;
  border-radius: 44px;
  content: "";
  background: rgba(31, 124, 255, .08);
  filter: blur(28px);
}
.hero-map-image {
  position: relative;
  overflow: hidden;
  min-height: clamp(360px, 31vw, 500px);
  border-radius: 32px;
  background:
    radial-gradient(circle at 18% 22%, rgba(49, 213, 165, .22), transparent 13rem),
    radial-gradient(circle at 78% 20%, rgba(31, 124, 255, .15), transparent 14rem),
    linear-gradient(145deg, #edf7f1, #f6fbff 42%, #eef6ff 100%);
  box-shadow: 0 24px 70px rgba(16, 32, 51, .105);
  mask-image: radial-gradient(circle at 50% 50%, #000 75%, rgba(0, 0, 0, .82) 100%);
}
.hero-map-image:before {
  position: absolute;
  inset: 0;
  z-index: 9;
  content: "";
  background: url('/assets/web/hero-conquest-map.png') center / cover no-repeat;
  pointer-events: none;
}
.conquest-map-fallback {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 1px solid rgba(63, 87, 119, .1);
  border-radius: inherit;
}
.conquest-map-fallback:before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(32deg, rgba(255,255,255,.38) 12%, transparent 12% 88%, rgba(255,255,255,.38) 88%),
    linear-gradient(rgba(31, 124, 255, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 124, 255, .055) 1px, transparent 1px);
  background-size: 180px 180px, 42px 42px, 42px 42px;
}
.map-cells { position: absolute; inset: 0; width: 100%; height: 100%; }
.terrain { fill: rgba(142, 210, 168, .2); }
.terrain-two { fill: rgba(190, 224, 178, .24); }
.terrain-three { fill: rgba(168, 218, 196, .2); }
.map-road { fill: none; stroke-linecap: round; }
.major-road { stroke: rgba(255, 255, 255, .92); stroke-width: 20; filter: drop-shadow(0 2px 0 rgba(154, 174, 194, .2)); }
.minor-road { stroke: rgba(255, 255, 255, .76); stroke-width: 11; }
.water-line { fill: none; stroke: rgba(96, 183, 232, .34); stroke-width: 18; stroke-linecap: round; }
.h3-cells polygon { stroke-width: 3; stroke-linejoin: round; }
.active-cells polygon { fill: url(#activeCellFill); stroke: rgba(31, 124, 255, .82); filter: drop-shadow(0 8px 13px rgba(31, 124, 255, .08)); }
.quiet-cells polygon { fill: url(#quietCellFill); stroke: rgba(112, 142, 174, .34); }
.territory-outline { fill: rgba(49, 213, 165, .08); stroke: var(--blue); stroke-width: 5; stroke-linejoin: round; filter: drop-shadow(0 14px 20px rgba(31, 124, 255, .13)); }
.activity-route { fill: none; stroke: var(--mint); stroke-width: 7; stroke-linecap: round; stroke-dasharray: 1 16; filter: drop-shadow(0 0 7px rgba(49, 213, 165, .5)); }
.castle-marker,
.map-marker {
  position: absolute;
  z-index: 4;
  display: grid;
  place-items: center;
  border: 4px solid #fff;
  box-shadow: 0 14px 30px rgba(16, 32, 51, .2);
}
.castle-marker {
  left: 50%;
  top: 48%;
  width: 74px;
  height: 74px;
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), #22486d);
  transform: translate(-50%, -50%);
}
.castle-marker svg { width: 43px; height: 43px; fill: currentColor; }
.map-marker { width: 42px; height: 42px; border-radius: 50%; background: #fff; }
.map-marker i { width: 13px; height: 13px; border-radius: 50%; background: var(--blue); }
.marker-run { left: 16%; bottom: 22%; }
.marker-small { right: 18%; top: 28%; }
.marker-small i { background: var(--mint-dark); }

.sr-only { position: absolute; overflow: hidden; width: 1px; height: 1px; padding: 0; margin: -1px; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.ranking-card,
.campaign-card,
.campaign-visual,
.about-section,
.final-cta,
.placeholder-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .9);
  box-shadow: var(--soft-shadow);
}
.placeholder-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 100px;
  height: 118px;
  overflow: hidden;
  border-radius: 28px;
}

.how-section { padding: 76px 0 58px; }
.how-heading { max-width: 760px; margin: 0 auto 26px; text-align: center; }
.how-heading h2 { margin-bottom: 12px; }
.how-heading p { max-width: 650px; margin: 0 auto; font-size: 1.08rem; }
.how-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.how-card {
  position: relative;
  min-width: 0;
  min-height: 430px;
  border: 0;
  border-radius: 28px;
  background: transparent;
  cursor: pointer;
  perspective: 1400px;
}
.how-card:focus-visible { outline: 3px solid rgba(31, 124, 255, .42); outline-offset: 5px; }
.how-card-inner {
  position: relative;
  min-height: 430px;
  transform-style: preserve-3d;
  transition: transform .55s cubic-bezier(.2, .72, .2, 1);
}
.how-card.is-flipped .how-card-inner { transform: rotateY(180deg); }
.how-card-face {
  position: absolute;
  inset: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--soft-shadow);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.how-card-face:after {
  position: absolute;
  right: -56px;
  bottom: -76px;
  width: 180px;
  height: 180px;
  border-radius: 52px;
  content: "";
  opacity: .52;
  transform: rotate(18deg);
}
.how-card-back {
  justify-content: center;
  padding: 34px;
  transform: rotateY(180deg);
}
.how-visual {
  position: relative;
  min-height: 245px;
  overflow: hidden;
  margin: 14px 14px 0;
  border-radius: 24px;
  background: linear-gradient(145deg, #eef7ff, #fbfdff);
}
.how-visual:before {
  position: absolute;
  inset: 0;
  z-index: 5;
  content: "";
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  pointer-events: none;
}
.how-visual:after {
  position: absolute;
  inset: 0;
  content: "";
  background-image: linear-gradient(rgba(31, 124, 255, .07) 1px, transparent 1px), linear-gradient(90deg, rgba(31, 124, 255, .06) 1px, transparent 1px);
  background-size: 36px 36px;
}
.how-track-visual { background: radial-gradient(circle at 22% 25%, rgba(49, 213, 165, .2), transparent 9rem), linear-gradient(145deg, #ecf7ff, #fbfdff); }
.how-track-visual:before { background-image: url('/assets/web/how-track.png'); }
.how-conquer-visual { background: radial-gradient(circle at 78% 24%, rgba(31, 124, 255, .16), transparent 10rem), linear-gradient(145deg, #f5f8fc, #eaf4ff); }
.how-conquer-visual:before { background-image: url('/assets/web/how-conquer.png'); }
.how-earn-visual { background: radial-gradient(circle at 25% 22%, rgba(49, 213, 165, .18), transparent 9rem), linear-gradient(145deg, #fffaf0, #f7fcf6); }
.how-earn-visual:before { background-image: url('/assets/web/how-earn.png'); }
.route-line {
  position: absolute;
  left: 14%;
  top: 52%;
  z-index: 2;
  width: 72%;
  height: 72px;
  border-top: 8px solid rgba(31, 124, 255, .78);
  border-radius: 50%;
  transform: rotate(-11deg);
}
.route-pin,
.runner-dot {
  position: absolute;
  z-index: 3;
  border: 5px solid #fff;
  border-radius: 50%;
  box-shadow: 0 12px 24px rgba(16, 32, 51, .16);
}
.route-pin { width: 34px; height: 34px; background: var(--blue); }
.pin-start { left: 17%; bottom: 25%; }
.pin-end { right: 17%; top: 28%; background: var(--mint-dark); }
.runner-dot { left: 48%; top: 43%; width: 46px; height: 46px; background: linear-gradient(135deg, var(--navy), #2776d8); }
.territory-cell {
  position: absolute;
  z-index: 2;
  width: 104px;
  height: 92px;
  clip-path: polygon(25% 6%, 75% 6%, 100% 50%, 75% 94%, 25% 94%, 0 50%);
  border: 2px solid rgba(31, 124, 255, .82);
  background: rgba(49, 213, 165, .14);
}
.cell-one { left: 16%; top: 22%; }
.cell-two { left: 36%; top: 39%; background: rgba(31, 124, 255, .12); }
.cell-three { right: 16%; top: 24%; }
.cell-four { right: 28%; bottom: 13%; background: rgba(15, 32, 53, .08); }
.territory-castle {
  position: absolute;
  left: 50%;
  top: 49%;
  z-index: 3;
  width: 62px;
  height: 62px;
  border: 5px solid #fff;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--navy), #214c74);
  box-shadow: 0 15px 28px rgba(16, 32, 51, .2);
  transform: translate(-50%, -50%);
}
.territory-castle:before {
  position: absolute;
  inset: 16px 14px 12px;
  content: "";
  background: #fff;
  clip-path: polygon(0 35%, 0 0, 22% 0, 22% 28%, 42% 28%, 42% 0, 58% 0, 58% 28%, 78% 28%, 78% 0, 100% 0, 100% 35%, 82% 52%, 82% 100%, 18% 100%, 18% 52%);
}
.wallet-card {
  position: absolute;
  left: 18%;
  top: 30%;
  z-index: 2;
  width: 62%;
  height: 44%;
  border: 1px solid rgba(196, 138, 24, .18);
  border-radius: 24px;
  background: linear-gradient(145deg, #fff, #fff3cf);
  box-shadow: 0 18px 34px rgba(117, 78, 8, .13);
}
.wallet-card:after {
  position: absolute;
  right: 18px;
  top: 42%;
  width: 38px;
  height: 24px;
  border-radius: 999px;
  content: "";
  background: rgba(49, 213, 165, .28);
}
.coin {
  position: absolute;
  z-index: 3;
  display: block;
  width: 42px;
  height: 42px;
  border: 5px solid #fff;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffd66d, #f5a623);
  box-shadow: 0 12px 24px rgba(150, 95, 8, .18);
}
.coin:before { position: absolute; inset: 12px; border-radius: 50%; content: ""; background: rgba(255, 255, 255, .46); }
.coin-one { right: 18%; top: 22%; }
.coin-two { left: 24%; bottom: 19%; width: 34px; height: 34px; }
.coin-three { right: 31%; bottom: 18%; width: 30px; height: 30px; background: linear-gradient(145deg, #bff4df, #31d5a5); }
.how-card-copy { position: relative; z-index: 1; padding: 22px 24px 26px; }
.how-card h3 { margin-bottom: 10px; font-size: 1.38rem; line-height: 1.18; }
.how-card p { margin-bottom: 0; color: #63758a; font-size: .96rem; }
.title-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 28px;
  margin-right: 7px;
  border-radius: 999px;
  color: var(--blue-dark);
  background: #eaf3ff;
  font-size: .82rem;
  font-weight: 950;
  vertical-align: .08em;
}
.how-track-card .how-card-face { border-color: rgba(31, 124, 255, .16); }
.how-track-card .how-card-face:after { background: #e8f3ff; }
.how-conquer-card .how-card-face { border-color: rgba(15, 32, 53, .16); }
.how-conquer-card .title-number { color: #fff; background: var(--navy); }
.how-conquer-card .how-card-face:after { background: #e9eff6; }
.how-earn-card .how-card-face { border-color: rgba(245, 182, 66, .28); }
.how-earn-card .title-number { color: #8a5a00; background: var(--gold-soft); }
.how-earn-card .how-card-face:after { background: var(--gold-soft); }
.flip-hint { display: inline-flex; margin-top: 18px; color: var(--blue-dark); font-size: .78rem; font-weight: 900; }

.preview-section { display: grid; grid-template-columns: minmax(0, .85fr) minmax(420px, 1.15fr); gap: 28px; align-items: center; padding: 78px 0 46px; }
.section-copy p:last-child { max-width: 520px; font-size: 1.04rem; }
.ranking-preview { display: grid; grid-template-columns: 1.1fr .9fr; gap: 16px; }
.mini-map { position: relative; overflow: hidden; min-height: 300px; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(145deg, #eff8ff, #fbfdff); box-shadow: var(--soft-shadow); }
.mini-map:before { position: absolute; inset: 0; content: ""; background-image: linear-gradient(rgba(31, 124, 255, .07) 1px, transparent 1px), linear-gradient(90deg, rgba(31, 124, 255, .07) 1px, transparent 1px); background-size: 34px 34px; }
.mini-map span { position: absolute; width: 92px; height: 80px; clip-path: polygon(25% 6%, 75% 6%, 100% 50%, 75% 94%, 25% 94%, 0 50%); border: 2px solid rgba(31, 124, 255, .75); background: rgba(49, 213, 165, .12); }
.mini-map span:first-child { top: 54px; left: 42px; }
.mini-map span:nth-child(2) { top: 116px; left: 122px; background: rgba(31, 124, 255, .1); }
.mini-map span:nth-child(3) { right: 50px; bottom: 58px; border-color: rgba(49, 213, 165, .9); }
.mini-map i { position: absolute; right: 34%; top: 44%; width: 38px; height: 38px; border: 10px solid rgba(31, 124, 255, .16); border-radius: 50%; background: var(--blue); box-shadow: 0 10px 24px rgba(31, 124, 255, .2); }
.ranking-card { padding: 22px; }
.ranking-card > p { margin-bottom: 18px; color: var(--blue-dark); font-weight: 900; }
.ranking-card ol { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.ranking-card li { display: flex; justify-content: space-between; gap: 14px; padding: 13px; border-radius: 15px; background: #f7fbff; }
.ranking-card strong { color: var(--navy); }
.ranking-card span { color: var(--muted); font-size: .82rem; font-weight: 760; }

.campaign-section { display: grid; grid-template-columns: 1fr minmax(330px, .62fr); gap: 22px; align-items: stretch; padding: 34px 0 50px; }
.campaign-card, .campaign-visual { padding: clamp(26px, 4vw, 44px); }
.campaign-card { background: linear-gradient(145deg, #fff, #f8f6ff); }
.campaign-card p { max-width: 690px; font-size: 1.04rem; }
.campaign-badge { display: inline-flex; align-items: center; min-height: 34px; padding: 7px 12px; border-radius: 999px; color: #5d43d9; background: var(--purple-soft); font-size: .76rem; font-weight: 900; }
.campaign-visual { display: grid; gap: 12px; background: linear-gradient(145deg, #fff, #fbf9ff); }
.campaign-visual div { padding: 14px; border: 1px solid rgba(124, 92, 255, .12); border-radius: 16px; background: rgba(255,255,255,.78); }
.campaign-visual span { display: block; color: var(--muted); font-size: .76rem; font-weight: 830; }
.campaign-visual strong { display: block; margin-top: 2px; color: var(--navy); font-size: 1.08rem; }

.about-section { padding: clamp(30px, 5vw, 58px); text-align: center; }
.about-section h2 { max-width: 940px; margin-inline: auto; }
.about-section p:last-child { max-width: 760px; margin: 0 auto; font-size: 1.04rem; }
.final-cta { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 72px; padding: clamp(30px, 5vw, 54px); background: linear-gradient(135deg, var(--navy), #17466f); }
.final-cta h2 { margin-bottom: 0; color: #fff; }
.final-cta .eyebrow { color: var(--mint); }

.site-footer { min-height: 112px; display: flex; align-items: center; justify-content: space-between; gap: 22px; border-top: 1px solid var(--line); color: var(--muted); font-size: .86rem; font-weight: 760; }
.site-footer nav { justify-content: flex-end; gap: 18px; }

.interior-page { min-height: 100vh; display: flex; flex-direction: column; }
.placeholder-main { flex: 1; display: grid; place-items: center; padding: 70px 0 90px; }
.placeholder-card { width: min(880px, 100%); padding: clamp(34px, 6vw, 70px); text-align: center; }
.placeholder-card h1 { font-size: clamp(2.4rem, 5vw, 4.5rem); }
.placeholder-lead { max-width: 680px; margin: 0 auto 28px; font-size: 1.08rem; }
.placeholder-actions { justify-content: center; }
.placeholder-icon { margin-inline: auto; color: var(--blue-dark); background: #eaf3ff; }
.sponsor-icon { color: #5d43d9; background: var(--purple-soft); }
.sponsor-text { color: #5d43d9; }

@media (max-width: 1180px) {
  .site-header { grid-template-columns: 1fr; justify-items: start; padding: 22px 0; }
  .main-nav { justify-content: flex-start; }
  .header-actions { justify-content: flex-start; }
  .hero-layout,
  .preview-section,
  .campaign-section { grid-template-columns: 1fr; }
  .hero-section { padding-top: 34px; }
  .hero-layout { min-height: 0; gap: 30px; }
  .hero-map-visual { max-width: 620px; width: 100%; justify-self: start; padding-left: 0; }
  .ranking-preview { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .shell,
  .site-header { width: min(100% - 64px, 1530px); }
  .main-nav { gap: 16px; }
  .main-nav a { padding: 6px 0; }
  .how-card-grid { grid-template-columns: 1fr; }
  .final-cta,
  .site-footer { align-items: flex-start; flex-direction: column; }
  .hero-map-image { min-height: 340px; }
  .how-section { padding: 58px 0 42px; }
  .how-card,
  .how-card-inner { min-height: 400px; }
  .how-visual { min-height: 220px; }
  .final-cta { margin-bottom: 48px; }
}

@media (max-width: 560px) {
  .shell,
  .site-header { width: min(100% - 34px, 1530px); }
  h1 { font-size: 2.72rem; }
  h2 { font-size: 2.2rem; }
  .headline-line { white-space: normal; }
  .button { width: 100%; }
  .header-actions,
  .hero-buttons,
  .placeholder-actions,
  .cta-actions { width: 100%; }
  .header-actions .text-link { width: 100%; text-align: center; }
  .social-proof { align-items: flex-start; flex-direction: column; border-radius: 24px; }
  .how-heading { margin-bottom: 20px; }
  .how-visual { min-height: 190px; margin: 10px 10px 0; border-radius: 20px; }
  .how-card,
  .how-card-inner { min-height: 370px; }
  .how-card-copy,
  .how-card-back { padding: 20px; }
  .how-card h3 { font-size: 1.28rem; }
  .hero-map-visual { padding: 0; }
  .hero-map-image { min-height: 260px; border-radius: 24px; }
  .castle-marker { width: 58px; height: 58px; border-radius: 19px; }
  .castle-marker svg { width: 34px; height: 34px; }
  .marker-small { right: 12%; }
  .site-footer nav { justify-content: flex-start; }
}
