:root {
  --navy: #064fcb;
  --line: #bfe1ff57;
  --blue: #00a2ff;
  --deep-blue: #06329b;
  --text: #fff;
  --muted: #c4ddff;
  --gold: #f4d27a;
  --display: "Bebas Neue", Impact, sans-serif;
  --body: Manrope, Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  background: var(--navy);
  color: var(--text);
  margin: 0;
  font-family: var(--body);
  overflow-x: hidden;
  max-width: 100%;
}

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

main {
  isolation: isolate;
  overflow-x: hidden;
  max-width: 100%;
  background-color: var(--navy);
  background-image:
    linear-gradient(#98daff21 1px, #0000 1px),
    linear-gradient(90deg, #98daff1a 1px, #0000 1px),
    radial-gradient(circle at 50% 7%, #118dff 0, #086edf 28%, #0000 58%);
  background-size: 92px 92px, 92px 92px, 100% 100%;
  min-height: 100vh;
  position: relative;
}

main:before {
  content: "";
  z-index: -1;
  background: linear-gradient(#008aff0a, #0436a447 48%, #0322779e 100%);
  position: absolute;
  inset: 0;
}

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

.ambient {
  z-index: -2;
  filter: blur(100px);
  opacity: 0.4;
  pointer-events: none;
  border-radius: 50%;
  position: absolute;
}

.ambientOne {
  background: #39baff;
  width: 560px;
  height: 560px;
  top: 80px;
  left: calc(50% - 280px);
}

.ambientTwo {
  background: #00b7ff;
  width: 420px;
  height: 420px;
  top: 730px;
  right: -190px;
}

.ambientThree {
  background: #f4d27a;
  opacity: 0.18;
  width: 320px;
  height: 320px;
  top: 1480px;
  left: -80px;
}

.nav {
  border-bottom: 1px solid var(--line);
  justify-content: space-between;
  align-items: center;
  height: 88px;
  display: flex;
  gap: 12px;
}

.brand,
.footerBrand {
  letter-spacing: 0.12em;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  display: flex;
}

.brand span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand img,
.footerBrand img {
  object-fit: contain;
  width: 34px;
  height: 34px;
}

.navActions {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-left: auto;
}

.xLink,
.tgLink {
  color: #06318d;
  border: 1px solid #fff;
  background: #fff;
  border-radius: 99px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
  box-shadow: 0 10px 24px #00247947;
}

.xLink:hover,
.tgLink:hover {
  background: #e8f6ff;
  transform: translateY(-2px);
}

.hero {
  text-align: left;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: 52px;
  min-height: 0;
  padding: 52px 0 80px;
  display: grid;
  position: relative;
}

.heroGhost {
  position: absolute;
  left: -6%;
  top: 8%;
  z-index: 0;
  color: #0000;
  pointer-events: none;
  letter-spacing: 0.34em;
  -webkit-text-stroke: 1px #c7e7ff36;
  font-size: clamp(72px, 16vw, 210px);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  user-select: none;
}

.heroCopy,
.heroShot { z-index: 1; position: relative; min-width: 0; }

.heroCopy h1 {
  margin: 18px 0 16px;
  font-family: var(--display);
  font-size: clamp(52px, 6.4vw, 96px);
  font-weight: 400;
}

.stretchLine {
  display: block;
  letter-spacing: 0.46em;
  color: #0000;
  background: linear-gradient(90deg, #fff 10%, #7ad7ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 0.5em;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 6px;
  animation: stretch 4.8s ease-in-out infinite;
}

.nameLine { display: block; }

.rangeTrack {
  background: #7996d729;
  border-radius: 99px;
  width: 168px;
  height: 4px;
  margin: 14px 0 0;
  overflow: hidden;
}

.rangeTrack span {
  display: block;
  height: 100%;
  width: 72%;
  border-radius: inherit;
  background: linear-gradient(90deg, #7ad7ff, #ff8fab);
  box-shadow: 0 0 14px #ff8fab88;
}

.hero .intro {
  margin: 22px 0 0;
  max-width: 100%;
  overflow-wrap: anywhere;
}
.hero .actions { justify-content: flex-start; margin-top: 34px; }
.hero .soonNote { padding: 0; text-align: left; margin-top: 14px; }
.hero .contract { margin-top: 14px; }

.heroShot {
  isolation: isolate;
}

.shotGlow {
  position: absolute;
  z-index: -1;
  filter: blur(70px);
  opacity: 0.55;
  pointer-events: none;
  background: radial-gradient(circle, #ff8fab 0%, #39baff 42%, #0000 70%);
  width: 78%;
  height: 78%;
  top: 12%;
  left: 14%;
  border-radius: 50%;
}

.shotOrbit {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  border: 1px solid #cbebff6e;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  top: -28px;
  right: -18px;
  animation: 11s linear infinite spin;
}

.shotOrbit:before {
  content: "";
  background: #e0f6ff;
  border-radius: 50%;
  width: 7px;
  height: 7px;
  position: absolute;
  top: 12px;
  left: 18px;
  box-shadow: 0 0 16px #fff;
}

.shotFrame {
  margin: 0;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid #cfecff70;
  background: #042786;
  box-shadow: 0 30px 100px #001f7047, inset 0 1px #ffffff21;
  position: relative;
  transform: rotate(-1.4deg);
  animation: 7s ease-in-out infinite float;
}

.shotFrame img.mascot {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

.shotChip {
  position: absolute;
  left: 16px;
  bottom: 16px;
  color: #d5ecff;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
  background: #032a896b;
  border: 1px solid #d3f0ff57;
  border-radius: 99px;
  padding: 9px 13px;
  font-size: 10px;
  font-weight: 800;
}

@keyframes spin { to { transform: rotate(360deg); } }

@keyframes float {
  0%, 100% { transform: rotate(-1.4deg) translateY(0); }
  50% { transform: rotate(-1.4deg) translateY(-8px); }
}

@keyframes stretch {
  0%, 100% { letter-spacing: 0.34em; }
  50% { letter-spacing: 0.58em; }
}

.eyebrow {
  color: #d9eeff;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
}

.eyebrow span {
  background: #bdeaff;
  border-radius: 50%;
  width: 7px;
  height: 7px;
  box-shadow: 0 0 14px #fff;
}

h1, h2 {
  font-family: var(--display);
  font-weight: 400;
}

h1 {
  letter-spacing: 0.02em;
  color: #0000;
  filter: drop-shadow(0 8px 22px #01267b38);
  background: linear-gradient(#fff 28%, #c4e9ff 105%);
  -webkit-background-clip: text;
  background-clip: text;
  margin: 24px 0 19px;
  font-size: clamp(40px, 8vw, 118px);
  line-height: 0.9;
  max-width: 100%;
}

.tagline {
  letter-spacing: -0.03em;
  margin: 0;
  max-width: min(22ch, 100%);
  width: 100%;
  font-size: clamp(20px, 3.2vw, 32px);
  font-weight: 700;
  line-height: 1.25;
  white-space: normal;
}

.intro {
  max-width: min(620px, 100%);
  color: var(--muted);
  margin: 22px auto 0;
  font-size: 16px;
  line-height: 1.7;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.intro.left {
  margin-left: 0;
  text-align: left;
}

.actions {
  gap: 12px;
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.primaryButton,
.secondaryButton {
  border-radius: 14px;
  justify-content: center;
  align-items: center;
  gap: 9px;
  min-height: 50px;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.25s;
  display: flex;
}

.primaryButton {
  color: #06318d;
  background: linear-gradient(135deg, #fff, #bfe9ff);
  box-shadow: 0 14px 40px #00247947, inset 0 1px #fff;
}

.primaryButton:hover {
  background: #fff;
  transform: translateY(-2px);
}

.primaryButton.is-disabled {
  opacity: 0.55;
  pointer-events: none;
}

.secondaryButton {
  border: 1px solid var(--line);
  background: #00309838;
  box-shadow: inset 0 1px #ffffff1a;
}

.secondaryButton:hover {
  background: #4bbbff3d;
  border-color: #cef;
  transform: translateY(-2px);
}

.contract {
  border: 1px solid var(--line);
  color: #d8ecff;
  cursor: pointer;
  backdrop-filter: blur(12px);
  background: #032a896b;
  border-radius: 13px;
  align-items: center;
  gap: 12px;
  max-width: 100%;
  margin-top: 18px;
  padding: 10px 12px;
  display: none;
}

.contract.is-on { display: flex; }

.contractLabel {
  color: #fff;
  background: #001e6f80;
  border-radius: 7px;
  padding: 5px 7px;
  font-size: 10px;
  font-weight: 800;
}

.contractText {
  text-overflow: ellipsis;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  overflow: hidden;
  min-width: 0;
  flex: 1;
  white-space: nowrap;
}

.copyState {
  color: #aee7ff;
  font-size: 11px;
  font-weight: 700;
  margin-left: auto;
}

.soonNote {
  margin-top: 18px;
  color: #aee7ff;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
  padding: 0 12px;
  text-align: center;
}

.thesisSection { padding: 20px 0 96px; }

.thesisCard {
  backdrop-filter: blur(18px);
  background: linear-gradient(125deg, #0b49bedb, #042786ed 62%);
  border: 1px solid #cfecff70;
  border-radius: 30px;
  grid-template-columns: minmax(0, 1.3fr) minmax(340px, 0.7fr);
  align-items: center;
  gap: 72px;
  min-height: 410px;
  padding: 68px 72px;
  display: grid;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 100px #001f7047, inset 0 1px #ffffff21;
}

.thesisCard:before {
  content: "";
  pointer-events: none;
  border: 1px solid #5781ff1a;
  border-radius: 50%;
  width: 520px;
  height: 520px;
  position: absolute;
  top: -240px;
  left: -220px;
  box-shadow: 0 0 0 80px #5781ff06, 0 0 0 160px #5781ff05;
}

.thesisCard:after {
  content: "";
  filter: blur(95px);
  opacity: 0.38;
  pointer-events: none;
  background: #00c8ff;
  border-radius: 50%;
  width: 320px;
  height: 320px;
  position: absolute;
  bottom: -220px;
  right: -130px;
}

.thesisCopy,
.thesisStats { z-index: 1; position: relative; }

.kicker {
  color: #d5ecff;
  letter-spacing: 0.2em;
  border: 1px solid #d3f0ff57;
  border-radius: 99px;
  align-items: center;
  gap: 9px;
  margin: 0 0 24px;
  padding: 9px 13px;
  font-size: 10px;
  font-weight: 800;
  display: inline-flex;
}

.thesisCopy h2 {
  color: #0000;
  background: linear-gradient(#fff 20%, #aabce3 110%);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(48px, 6vw, 78px);
}

.statusRow {
  color: #b9c9ea;
  letter-spacing: 0.04em;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  flex-wrap: wrap;
}

.taxChip {
  color: #eaf6ff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid #d3f0ff57;
  background: #032a896b;
  border-radius: 99px;
  padding: 7px 10px;
  font-size: 10px;
  font-weight: 800;
}

.statusDot {
  background: #4b83ff;
  border-radius: 50%;
  width: 7px;
  height: 7px;
  box-shadow: 0 0 15px #3574ff;
}

.thesisStats {
  border-left: 1px solid #8da9e833;
  flex-direction: column;
  justify-content: center;
  min-height: 270px;
  padding-left: 58px;
  display: flex;
}

.statLabel {
  color: #afd7ff;
  letter-spacing: 0.18em;
  font-size: 10px;
  font-weight: 800;
}

.statHero {
  flex-direction: column;
  align-items: flex-end;
  display: flex;
}

.statHero > strong {
  color: #dcedff;
  letter-spacing: 0.04em;
  text-shadow: 0 0 9px #4da0ff, 0 0 28px #3077ffcc;
  margin: 10px 0 2px;
  font-family: var(--display);
  font-size: clamp(52px, 6vw, 76px);
  font-weight: 400;
  line-height: 0.92;
}

.tokenName {
  color: #63c8ff;
  letter-spacing: 0.08em;
  font-size: 12px;
  font-weight: 800;
}

.statRule {
  background: #7996d729;
  border-radius: 99px;
  height: 3px;
  margin: 30px 0 25px;
  overflow: hidden;
}

.statRuleFill {
  border-radius: inherit;
  background: linear-gradient(90deg, #296dff, #7bd7ff);
  width: 100%;
  height: 100%;
  box-shadow: 0 0 14px #3478ff;
  animation: fill 2.4s ease both;
}

@keyframes fill {
  from { width: 0; }
  to { width: 100%; }
}

.statDetails {
  text-align: right;
  justify-content: flex-end;
  gap: 32px;
  display: flex;
  flex-wrap: wrap;
}

.statDetails > div {
  flex-direction: column;
  gap: 10px;
  display: flex;
}

.statDetails strong {
  color: #eaf2ff;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 22px;
  font-weight: 400;
  white-space: nowrap;
}

.partners {
  border-top: 1px solid var(--line);
  padding: 42px 0 28px;
}

.partnersKicker {
  color: #5f87f8;
  letter-spacing: 0.2em;
  text-align: center;
  margin: 0 0 28px;
  font-size: 11px;
  font-weight: 800;
}

.partnerRow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: 16px 24px;
  width: 100%;
  max-width: 100%;
}

.partner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-width: 0;
  min-height: 72px;
  padding: 14px 10px;
  overflow: hidden;
  border: 1px solid #c7e7ff33;
  background: #032a896b;
  border-radius: 16px;
  opacity: 1;
  transition: opacity 0.25s, transform 0.25s;
}

.partner span {
  color: #eaf6ff;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 800;
}

.partner:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.partner img {
  display: block;
  width: 100%;
  height: 28px;
  max-width: 120px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px #00238555);
}

.lore {
  border-top: 1px solid var(--line);
  padding: 90px 0 80px;
}

.sectionHeading {
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 40px;
  display: flex;
}

.sectionKicker {
  color: #5f87f8;
  letter-spacing: 0.18em;
  margin: 0 0 13px;
  font-size: 11px;
  font-weight: 800;
}

h2 {
  letter-spacing: 0.02em;
  margin: 0;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 0.95;
}

.sectionHeading > p {
  max-width: 390px;
  color: var(--muted);
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.loreGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.loreCard {
  backdrop-filter: blur(14px);
  background: linear-gradient(145deg, #0843b5b8, #042889d6);
  border: 1px solid #c7e7ff57;
  border-radius: 20px;
  min-height: 230px;
  padding: 24px;
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
  box-shadow: inset 0 1px #ffffff17;
}

.loreCard:hover {
  background: linear-gradient(145deg, #1063dfcc, #04329de6);
  border-color: #d0f0ffcc;
  transform: translateY(-5px);
  box-shadow: 0 20px 60px #001e6e47;
}

.loreIndex {
  color: #aee7ff;
  letter-spacing: 0.16em;
  font-size: 11px;
  font-weight: 800;
}

.loreCard h3 {
  margin: 22px 0 14px;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.loreCard p {
  color: var(--muted);
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  flex: 1;
}

.buy {
  padding: 0 0 80px;
}

.buyCard {
  backdrop-filter: blur(18px);
  background: linear-gradient(125deg, #0b49bedb, #042786ed 62%);
  border: 1px solid #cfecff70;
  border-radius: 30px;
  padding: 56px 64px;
  box-shadow: 0 30px 100px #001f7047, inset 0 1px #ffffff21;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 36px;
}

.step {
  border-top: 1px solid #c7e7ff57;
  padding-top: 18px;
}

.stepNum {
  display: block;
  color: #63c8ff;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  margin-bottom: 10px;
}

.step h3 {
  margin: 0 0 8px;
  font-size: 18px;
  letter-spacing: -0.03em;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.buyActions {
  margin-top: 36px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.faq {
  border-top: 1px solid var(--line);
  padding: 80px 0 100px;
}

.faqList {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faqItem {
  backdrop-filter: blur(14px);
  background: linear-gradient(145deg, #0843b5b8, #042889d6);
  border: 1px solid #c7e7ff57;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: inset 0 1px #ffffff17;
}

.faqItem summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 700;
}

.faqItem summary::-webkit-details-marker { display: none; }

.faqItem summary::after {
  content: "+";
  flex-shrink: 0;
  color: #aee7ff;
  font-family: var(--display);
  font-size: 28px;
  line-height: 1;
}

.faqItem[open] summary::after { content: "–"; }

.faqItem p {
  color: var(--muted);
  margin: 0;
  padding: 0 20px 18px;
  font-size: 15px;
  line-height: 1.6;
  max-width: 62ch;
}

.faqCa,
.footerCa span {
  display: inline-block;
  margin: 0 0 8px;
  padding: 6px 8px;
  border-radius: 8px;
  background: #021a5c73;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  word-break: break-all;
  color: #eaf6ff;
}

.siteFooter {
  border-top: 1px solid var(--line);
  background: #03227766;
  padding: 48px 0 28px;
}

.footerInner { display: flex; flex-direction: column; gap: 28px; }

.footerTop {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
}

.footerBrandBlock p {
  max-width: 280px;
  color: var(--muted);
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.5;
}

.footerNav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  font-size: 13px;
  font-weight: 700;
}

.footerNav a { color: #e0f4ff; }
.footerNav a:hover { color: #fff; }

.footerBottom {
  border-top: 1px solid #c7e7ff2e;
  padding-top: 18px;
  color: #afcdf0;
  font-size: 12px;
  display: grid;
  gap: 8px;
}

.footerFine { margin: 0; opacity: 0.8; }
.footerCopy { margin: 0; letter-spacing: 0.04em; }

.hidden { display: none !important; }

@media (width <= 860px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 22px;
    min-height: 0;
    padding: 20px 0 48px;
  }
  .heroGhost,
  .shotGlow,
  .shotOrbit,
  .ambient { display: none; }
  .heroShot { order: -1; }
  .shotFrame { transform: none; animation: none; }
  .shotFrame img.mascot { height: auto; }
  .shotChip { top: 12px; bottom: auto; }
  .heroCopy h1 { font-size: clamp(48px, 14vw, 72px); }
  .stretchLine {
    letter-spacing: 0.22em;
    animation: none;
  }
  .tagline { max-width: 100%; white-space: normal; }
  .thesisCard {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 36px 28px;
  }
  .thesisStats {
    border-top: 1px solid #8da9e833;
    border-left: 0;
    min-height: 0;
    padding: 28px 0 0;
  }
  .partnerRow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 12px;
  }
  .partner img { height: 22px; max-width: 100%; }
  .loreGrid,
  .steps { grid-template-columns: 1fr; }
  .footerTop { flex-direction: column; }
}

@media (width <= 760px) {
  .shell { width: min(calc(100% - 24px), 1180px); max-width: 100%; }
  h2 { overflow-wrap: anywhere; }
  html, body, main { width: 100%; max-width: 100vw; overflow-x: hidden; }
  .shell {
    width: auto;
    margin-left: 12px;
    margin-right: 12px;
  }
  .nav {
    height: auto;
    min-height: 52px;
    padding: 8px 0;
    gap: 8px;
    width: auto;
    max-width: none;
    position: sticky;
    top: 0;
    z-index: 50;
    background: #064fcce8;
    backdrop-filter: blur(18px);
    flex-wrap: wrap;
  }
  .brand { flex: 1 1 auto; min-width: 0; }
  .brand { gap: 8px; }
  .brand img { width: 28px; height: 28px; }
  .brand span { display: inline; font-size: 18px; }
  .xLink {
    height: 36px;
    min-width: 0;
    width: 100%;
    padding: 0 14px;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 0;
    flex: 1 0 100%;
  }
  .copyState { display: none; }
  .heroCopy,
  .tagline,
  .intro,
  .thesisCard,
  .buyCard,
  .lore,
  .sectionHeading,
  .sectionHeading > p { max-width: 100%; }
  .tagline { white-space: normal; overflow-wrap: anywhere; }
  .contractText { max-width: 46vw; }
  .hero { padding: 16px 0 40px; }
  .shotFrame { border-radius: 20px; }
  .shotChip { left: 10px; font-size: 9px; padding: 7px 10px; }
  .intro,
  .thesisCopy .intro,
  .loreCard p,
  .sectionHeading > p {
    font-size: 14px;
    overflow-wrap: anywhere;
    max-width: 100%;
  }
  .actions { flex-direction: column; width: 100%; }
  .primaryButton,
  .secondaryButton { width: 100%; }
  .contract { width: 100%; }
  .thesisSection { padding: 0 0 56px; }
  .thesisCard,
  .buyCard { border-radius: 20px; padding: 24px 16px; min-height: 0; }
  .thesisCopy h2 { font-size: clamp(40px, 12vw, 52px); }
  h1, .heroCopy h1 { font-size: clamp(44px, 16vw, 64px); }
  h2 { font-size: clamp(34px, 12vw, 48px); }
  .thesisStats {
    border: 1px solid #c7e7ff33;
    background: #021a5c73;
    border-radius: 18px;
    padding: 18px 16px 16px;
    min-height: 0;
  }
  .statHero { align-items: flex-start; }
  .statHero > strong { font-size: 48px; margin: 4px 0 2px; }
  .statDetails {
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: left;
    justify-content: start;
    gap: 14px 12px;
  }
  .statDetails strong { font-size: 18px; }
  .statusRow { margin-top: 18px; }
  .lore { padding: 56px 0 64px; }
  .sectionHeading { flex-direction: column; align-items: flex-start; gap: 14px; }
  .partners { padding: 28px 0 12px; overflow: hidden; }
  .partnerRow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 10px;
  }
  .partner { min-height: 48px; padding: 14px 8px; }
  .partner img { display: none; }
  .partner span { font-size: 13px; letter-spacing: 0.16em; }
  .faq { padding: 56px 0 72px; }
  .faqItem summary { font-size: 15px; padding: 16px; }
  .faqItem p { padding: 0 16px 16px; font-size: 14px; }
  .siteFooter { padding: 36px 0 24px; }
  .footerTop { flex-direction: column; gap: 20px; }
  .footerNav { gap: 10px 16px; }
}
