:root {
  --black: #070707;
  --black-2: #0d0d0d;
  --paper: #efeee8;
  --white: #f7f7f2;
  --gray: #999992;
  --gray-dark: #686863;
  --line: #2b2b29;
  --line-light: rgba(255,255,255,.17);
  --pear: #c7ff55;
  --blue: #655cff;
  --ice: #a9efff;
  --orange: #ff9d45;
  --max: 1280px;
  --ease: cubic-bezier(.2,.8,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; color-scheme: dark; }

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--paper);
  background: var(--black);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body::before {
  position: fixed;
  z-index: -2;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent calc(50% - .5px), rgba(255,255,255,.035) 50%, transparent calc(50% + .5px)),
    radial-gradient(circle at 79% 8%, rgba(77,68,255,.12), transparent 31rem);
}

body::after {
  position: fixed;
  z-index: 99;
  inset: 0;
  content: "";
  opacity: .026;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.83' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

::selection { color: var(--black); background: var(--pear); }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 2px solid var(--pear); outline-offset: 4px; }

.container {
  width: min(calc(100% - 64px), var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(7,7,7,.94);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  min-height: 76px;
  align-items: center;
}

.brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 11px;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .19em;
  text-transform: uppercase;
}

.brand img { width: 31px; height: 31px; }

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.desktop-nav a {
  position: relative;
  padding: 28px 0 25px;
  color: #7e7e79;
  font-size: .69rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: color .2s ease;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] { color: var(--paper); }

.desktop-nav a[aria-current="page"]::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  content: "";
  background: var(--pear);
}

.nav-actions { display: flex; justify-content: flex-end; align-items: center; }
.mobile-nav { display: none; }

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--paper);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  content: "";
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle[aria-expanded="true"] span { opacity: 0; }
.menu-toggle[aria-expanded="true"]::before { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"]::after { transform: translateY(-6px) rotate(-45deg); }

.btn {
  display: inline-flex;
  min-height: 50px;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  border: 1px solid var(--line-light);
  border-radius: 0;
  color: var(--paper);
  background: transparent;
  font-size: .69rem;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
  transition: color .22s ease, background .22s ease, border-color .22s ease, transform .22s var(--ease);
}

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

.btn-primary {
  color: var(--black);
  border-color: var(--pear);
  background: var(--pear);
}

.btn-primary:hover { background: var(--white); border-color: var(--white); }

.btn-secondary { border-color: var(--paper); }
.btn-secondary:hover { color: var(--black); background: var(--paper); }

.btn-disabled,
.btn[aria-disabled="true"] {
  color: #5b5b57;
  border-color: #232321;
  background: #0a0a0a;
  cursor: not-allowed;
}

.btn-disabled:hover,
.btn[aria-disabled="true"]:hover { transform: none; }

.nav-cta {
  min-height: 42px;
  padding-inline: 18px;
  font-size: .62rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 25px;
  color: #8a8a84;
  font-family: "Courier New", monospace;
  font-size: .61rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 8px;
  content: "";
  background: var(--pear);
  clip-path: polygon(0 0,100% 0,72% 100%,0 100%);
}

.eyebrow-pear { color: #2e3a18; }
.eyebrow-pear::before { background: var(--black); }

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

h1 {
  margin-bottom: 28px;
  font-size: clamp(5rem, 11vw, 10.2rem);
  font-weight: 900;
  letter-spacing: -.085em;
  line-height: .78;
  text-transform: uppercase;
}

h2 {
  max-width: 920px;
  margin-bottom: 20px;
  font-size: clamp(2.8rem, 5.8vw, 5.4rem);
  font-weight: 900;
  letter-spacing: -.07em;
  line-height: .92;
  text-transform: uppercase;
}

h3 {
  margin-bottom: 11px;
  font-size: 1.1rem;
  letter-spacing: -.03em;
}

.gradient-text { color: var(--paper); }
.muted { color: var(--gray); }

.lead {
  max-width: 640px;
  color: #aaa9a2;
  font-size: clamp(1.02rem,1.8vw,1.35rem);
  line-height: 1.55;
}

.section { position: relative; padding-block: 128px; }

.section-heading {
  display: grid;
  grid-template-columns: minmax(0,1.5fr) minmax(260px,.5fr);
  align-items: end;
  margin-bottom: 62px;
  gap: 70px;
}

.section-heading p:last-child {
  max-width: 420px;
  margin: 0 0 8px;
  color: var(--gray);
  font-size: .86rem;
  line-height: 1.65;
}

.hero {
  position: relative;
  min-height: 780px;
  padding: 86px 0 80px;
  border-bottom: 1px solid var(--line);
  overflow: clip;
}

.hero::after {
  position: absolute;
  z-index: -1;
  top: -15%;
  right: -10%;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(255,255,255,.055);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  align-items: center;
  gap: 42px;
}

.hero-copy { position: relative; z-index: 2; padding-top: 35px; }

.hero h1 {
  position: relative;
  width: max-content;
  max-width: 100%;
}

.hero h1::after {
  position: absolute;
  right: -33px;
  bottom: 7px;
  width: 18px;
  height: 18px;
  content: "";
  background: var(--pear);
}

.hero-tagline {
  max-width: 580px;
  margin-bottom: 15px;
  font-size: clamp(1.75rem,3vw,2.7rem);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1.05;
}

.hero-description {
  max-width: 555px;
  margin-bottom: 34px;
  color: var(--gray);
  font-size: .91rem;
  line-height: 1.68;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.hero-trust { display: flex; flex-wrap: wrap; margin-top: 27px; gap: 13px 22px; color: #5e5e5a; font-family: "Courier New",monospace; font-size: .59rem; }
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust i { width: 6px; height: 6px; background: var(--pear); }

.hero-visual { position: relative; min-height: 585px; border-left: 1px solid var(--line); }

.hero-visual::before {
  position: absolute;
  top: 0;
  left: 21px;
  color: #555550;
  content: "FIG. 01 / PARTICIPATION ASSET";
  font-family: "Courier New",monospace;
  font-size: .56rem;
  letter-spacing: .13em;
}

.coin-orbit {
  position: absolute;
  top: 3%;
  right: -4%;
  width: min(600px,49vw);
  animation: float 7s var(--ease) infinite;
}

.orbit-ring {
  position: absolute;
  right: -6%;
  bottom: 2%;
  width: 94%;
  height: 30%;
  border: 1px solid rgba(255,255,255,.085);
  border-radius: 50%;
}

.orbit-dot {
  position: absolute;
  top: 48%;
  right: -1%;
  width: 9px;
  height: 9px;
  background: var(--pear);
}

.floating-note {
  position: absolute;
  right: 0;
  bottom: 7%;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 14px;
  border: 1px solid var(--paper);
  color: var(--paper);
  background: var(--black);
}

.floating-note strong,
.floating-note span { display: block; }
.floating-note strong { font-size: .68rem; }
.floating-note div span { margin-top: 3px; color: var(--gray-dark); font-size: .57rem; }
.pear-dot { display: grid; width: 32px; height: 32px; place-items: center; color: var(--black); background: var(--pear); font-size: .9rem; }

/* Shared X rewards phone visual */
.wallet-visual { overflow: hidden; }
.wallet-visual::before { display: none; }
.wallet-visual-label { position: absolute; top: 0; left: 21px; color: #555550; font-family: "Courier New",monospace; font-size: .56rem; letter-spacing: .13em; }
.phone-shadow { position: absolute; right: 11%; bottom: 6%; width: 54%; height: 12%; border-radius: 50%; background: rgba(128,108,255,.22); filter: blur(28px); }
.phone-frame { position: absolute; z-index: 2; top: 7%; right: 18%; width: min(310px,47%); padding: 9px; border: 2px solid #42424b; border-radius: 36px; background: #101014; box-shadow: 18px 24px 0 rgba(255,255,255,.025),0 30px 80px rgba(0,0,0,.7),inset 0 0 0 1px #08080a; transform: rotate(5deg); animation: phone-float 7s var(--ease) infinite; }
.phone-frame::before { position: absolute; z-index: -1; top: 13%; right: -16px; width: 5px; height: 70px; border-radius: 0 4px 4px 0; content: ""; background: #33333a; }
.phone-speaker { position: absolute; z-index: 3; top: 17px; left: 50%; width: 72px; height: 18px; border-radius: 0 0 14px 14px; background: #101014; transform: translateX(-50%); }
.phone-speaker::after { position: absolute; top: 7px; left: 24px; width: 24px; height: 3px; border-radius: 4px; content: ""; background: #3d3d44; }
.phone-screen { min-height: 560px; overflow: hidden; padding: 16px; border-radius: 28px; color: #f5f5f2; background: linear-gradient(155deg,#22232a,#101114 34%,#080909); }
.phone-status,.profile-top,.phone-footer { display: flex; justify-content: space-between; align-items: center; color: #92939b; font-family: "Courier New",monospace; font-size: .49rem; letter-spacing: .08em; }
.phone-status { padding: 0 4px 20px; color: #d1d1d0; font-weight: 700; }
.profile-top { margin-bottom: 14px; color: #777980; }
.screen-mark { display: grid; width: 25px; height: 25px; place-items: center; border: 1px solid #55565c; border-radius: 50%; color: var(--white); font-family: Arial,sans-serif; font-size: .9rem; font-weight: 900; }
.screen-menu { font-size: .9rem; }
.profile-type { margin: 5px 0 8px; color: var(--pear); font-family: "Courier New",monospace; font-size: .49rem; letter-spacing: .13em; }
.profile-name { font-size: 1rem; font-weight: 900; letter-spacing: -.04em; }
.verified { display: inline-grid; width: 15px; height: 15px; place-items: center; border-radius: 50%; color: var(--black); background: #8ecbff; font-size: .6rem; }
.profile-handle { margin-top: 3px; color: #898a91; font-family: "Courier New",monospace; font-size: .56rem; }
.wallet-balance { padding: 13px 14px 12px; border: 1px solid #3b3c42; background: rgba(255,255,255,.035); }
.wallet-balance span,.phone-footer span { display: block; color: #888990; font-family: "Courier New",monospace; font-size: .46rem; letter-spacing: .11em; }
.wallet-balance strong { display: block; margin: 4px 0 1px; color: var(--pear); font-size: 1.75rem; letter-spacing: -.06em; }
.wallet-balance small { color: #a7a8ae; font-size: .55rem; }
.reward-list { margin: 17px 0 15px; }
.reward-row { display: flex; justify-content: space-between; gap: 10px; padding: 10px 0; border-bottom: 1px solid #292a2f; }
.reward-row b,.reward-row small { display: block; }
.reward-row b { color: #e5e5e2; font-size: .62rem; }
.reward-row small { margin-top: 4px; color: #777980; font-size: .5rem; }
.reward-score { min-width: 72px; text-align: right; }
.reward-score span { display: block; color: var(--pear); font-family: "Courier New",monospace; font-size: .55rem; }
.reward-score i { display: block; width: 72px; height: 3px; margin-top: 7px; background: #303137; }
.reward-score em { display: block; height: 100%; background: var(--pear); }
.phone-withdraw { display: flex; width: 100%; justify-content: space-between; align-items: center; padding: 11px 13px; border: 0; color: var(--black); background: var(--pear); cursor: pointer; font-size: .58rem; font-weight: 900; letter-spacing: .05em; text-transform: uppercase; }
.phone-footer { margin-top: 15px; font-size: .43rem; }
.phone-footer strong { color: var(--pear); font-size: .45rem; }
.phone-card { position: absolute; z-index: 3; display: grid; grid-template-columns: auto 1fr; column-gap: 9px; padding: 12px 14px; border: 1px solid #4b4b50; background: rgba(8,8,8,.92); box-shadow: 0 15px 35px rgba(0,0,0,.35); }
.phone-card b,.phone-card small,.phone-card span { display: block; }
.phone-card b { color: #eeeeeb; font-size: .62rem; }
.phone-card small,.phone-card span { color: #7e7f82; font-family: "Courier New",monospace; font-size: .48rem; }
.phone-card-top { top: 23%; left: 3%; align-items: center; }
.phone-card-bottom { right: 2%; bottom: 13%; grid-template-columns: auto auto; }
.phone-card-bottom span { grid-column: 1 / -1; margin-bottom: 4px; color: var(--pear); }
.phone-card-bottom b { color: var(--pear); font-size: .95rem; }
.phone-card-bottom small { align-self: end; margin-left: 5px; }
.card-pulse { display: block; width: 8px; height: 8px; border-radius: 50%; background: var(--pear); box-shadow: 0 0 0 5px rgba(190,255,70,.11); }
@keyframes phone-float { 0%,100% { transform: rotate(5deg) translateY(0); } 50% { transform: rotate(3deg) translateY(-11px); } }

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

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  border-bottom: 1px solid var(--line);
}

.strip-item {
  position: relative;
  min-height: 132px;
  padding: 34px 30px;
  border-right: 1px solid var(--line);
}

.strip-item:first-child { border-left: 1px solid var(--line); }
.strip-item::before { position: absolute; top: -1px; left: 30px; width: 42px; height: 3px; content: ""; background: var(--pear); }
.strip-label { display: block; margin-bottom: 24px; color: #5d5d58; font-family: "Courier New",monospace; font-size: .55rem; letter-spacing: .14em; text-transform: uppercase; }
.strip-value { font-size: .86rem; font-weight: 800; text-transform: uppercase; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.card {
  position: relative;
  min-height: 350px;
  padding: 30px;
  border-right: 1px solid var(--line);
  background: transparent;
  overflow: hidden;
  transition: color .25s ease, background .25s ease;
}

.card:first-child { border-left: 1px solid var(--line); }
.card:hover { color: var(--black); background: var(--pear); }
.card::after { position: absolute; right: -70px; bottom: -70px; width: 150px; height: 150px; border: 1px solid currentColor; border-radius: 50%; content: ""; opacity: .12; }
.card-icon { display: grid; width: 48px; height: 48px; margin-bottom: 100px; place-items: center; border: 1px solid currentColor; }
.card-icon img { width: 27px; height: 27px; }
.card-number { position: absolute; top: 32px; right: 30px; font-family: "Courier New",monospace; font-size: .59rem; letter-spacing: .14em; opacity: .45; }
.card h3 { font-size: 1.32rem; text-transform: uppercase; }
.card p { max-width: 290px; margin: 0; color: var(--gray); font-size: .78rem; line-height: 1.62; }
.card:hover p { color: #33342d; }

.pear-section { padding: 0; }

.pear-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  padding: clamp(45px,7vw,90px);
  color: var(--black);
  background: var(--pear);
  overflow: hidden;
}

.pear-panel::before {
  position: absolute;
  top: -240px;
  right: -140px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(0,0,0,.22);
  border-radius: 50%;
  content: "";
}

.pear-panel h2 { max-width: 650px; }
.pear-copy p:last-child { max-width: 500px; margin: 0; color: #31362a; font-size: .88rem; line-height: 1.7; }

.points-card {
  position: relative;
  z-index: 2;
  padding: 34px;
  color: var(--paper);
  border: 1px solid var(--black);
  background: var(--black);
}

.points-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.points-label { color: #74746e; font-family: "Courier New",monospace; font-size: .57rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.live-pill { padding: 6px 9px; color: var(--black); background: var(--pear); font-family: "Courier New",monospace; font-size: .53rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.points-value { margin-bottom: 8px; font-size: clamp(3rem,5.7vw,5.1rem); font-weight: 900; letter-spacing: -.075em; line-height: .9; }
.points-value span { color: var(--pear); }
.points-change { margin-bottom: 38px; color: var(--pear); font-size: .75rem; }
.progress-meta { display: flex; justify-content: space-between; margin-bottom: 11px; color: #85857f; font-family: "Courier New",monospace; font-size: .6rem; }
.progress-track { height: 8px; background: #2b2b28; overflow: hidden; }
.progress-fill { width: 72%; height: 100%; background: var(--pear); }
.demo-note { display: flex; align-items: center; gap: 7px; margin-top: 18px; color: #5d5d58; font-size: .59rem; }
.demo-note::before { display: grid; width: 14px; height: 14px; flex: 0 0 auto; place-items: center; border: 1px solid #4a4a46; border-radius: 50%; content: "i"; font-size: .5rem; }

.allocation-layout { display: grid; grid-template-columns: 1.15fr .85fr; border: 1px solid var(--line); }

.allocation-card {
  position: relative;
  min-height: 500px;
  padding: clamp(35px,5vw,60px);
  color: var(--black);
  background: var(--paper);
  overflow: hidden;
}

.allocation-card::after {
  position: absolute;
  top: -170px;
  right: -170px;
  width: 390px;
  height: 390px;
  border: 55px solid var(--blue);
  border-radius: 50%;
  content: "";
  opacity: .9;
}

.allocation-kicker { font-family: "Courier New",monospace; font-size: .59rem; font-weight: 700; letter-spacing: .18em; }
.allocation-value { position: relative; z-index: 1; margin: 34px 0 8px; font-size: clamp(3.5rem,7vw,6.5rem); font-weight: 900; letter-spacing: -.09em; line-height: .85; }
.allocation-unit { color: #575750; font-family: "Courier New",monospace; font-size: .61rem; font-weight: 700; letter-spacing: .15em; }
.allocation-bars { position: relative; z-index: 2; display: grid; margin-top: 65px; gap: 23px; }
.bar-row { display: grid; grid-template-columns: 100px 1fr 38px; align-items: center; gap: 13px; font-family: "Courier New",monospace; font-size: .61rem; }
.bar-track { height: 5px; background: #cccbc4; }
.bar-track i { display: block; height: 100%; background: var(--black); }

.teaser-copy {
  display: flex;
  min-height: 500px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(35px,5vw,60px);
  border-left: 1px solid var(--line);
  background: var(--black-2);
}

.teaser-copy h3 { max-width: 420px; font-size: clamp(2.2rem,3.8vw,3.6rem); font-weight: 900; line-height: .92; text-transform: uppercase; }
.teaser-copy p:not(.eyebrow) { max-width: 400px; margin-bottom: 32px; color: var(--gray); font-size: .82rem; line-height: 1.65; }
.teaser-copy .btn { width: max-content; }

.page-hero {
  position: relative;
  min-height: 530px;
  display: flex;
  align-items: center;
  padding: 95px 0 85px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  overflow: hidden;
}

.page-hero::after {
  position: absolute;
  z-index: -1;
  top: -55%;
  right: -180px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  content: "";
}

.page-hero h1 { max-width: 1100px; margin: 0 0 30px; font-size: clamp(4.4rem,9.5vw,9rem); }
.page-hero .lead { margin: 0; }
.concept-pill { display: inline-flex; margin-top: 29px; padding: 8px 10px; border: 1px solid var(--line); color: #666660; font-family: "Courier New",monospace; font-size: .56rem; }

.tokenomics-wrap {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 90px;
  padding-top: 100px;
  padding-bottom: 110px;
}

.donut-area { position: relative; display: grid; min-height: 500px; place-items: center; }
.donut-area::before { position: absolute; top: 0; left: 0; color: #54544f; content: "ALLOCATION / 100%"; font-family: "Courier New",monospace; font-size: .57rem; letter-spacing: .15em; }
.donut { position: relative; display: grid; width: min(410px,82vw); aspect-ratio: 1; place-items: center; border-radius: 50%; background: conic-gradient(var(--ice) 0 50%,var(--blue) 50% 70%,var(--pear) 70% 85%,var(--orange) 85% 95%,var(--paper) 95% 100%); transform: rotate(-28deg); }
.donut::after { width: 60%; aspect-ratio: 1; border-radius: 50%; content: ""; background: var(--black); }
.donut-center { position: absolute; z-index: 2; text-align: center; transform: rotate(28deg); }
.donut-center img { width: 40px; margin: 0 auto 14px; }
.donut-center strong,.donut-center span { display: block; }
.donut-center strong { font-size: 1.7rem; }
.donut-center span { margin-top: 4px; color: #666660; font-family: "Courier New",monospace; font-size: .52rem; letter-spacing: .15em; }

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

.token-item {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 17px;
  min-height: 88px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  transition: padding .25s var(--ease), color .25s ease;
}

.token-item:hover { padding-left: 12px; color: var(--pear); }
.token-icon { display: grid; width: 45px; height: 45px; place-items: center; border: 1px solid var(--line); }
.token-icon img { width: 24px; }
.geo-icon { position: relative; width: 18px; height: 18px; border: 2px solid currentColor; transform: rotate(45deg); }
.geo-icon.circle { border-radius: 50%; }
.geo-icon.split::after { position: absolute; top: 50%; left: -3px; width: 21px; height: 2px; content: ""; background: currentColor; transform: rotate(-45deg); }
.token-copy strong,.token-copy span { display: block; }
.token-copy strong { margin-bottom: 5px; font-size: .82rem; text-transform: uppercase; }
.token-copy span { color: #71716c; font-size: .66rem; line-height: 1.45; }
.token-percent { font-size: 1.4rem; letter-spacing: -.05em; }
.token-disclaimer { padding: 18px 20px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); color: #6d6d67; font-family: "Courier New",monospace; font-size: .61rem; text-align: center; }

.airdrop-main { padding: 100px 0 120px; }

.estimate-card {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(35px,6vw,68px);
  border: 1px solid var(--paper);
  background: var(--black);
  overflow: hidden;
}

.estimate-card::after {
  position: absolute;
  top: -170px;
  right: -170px;
  width: 390px;
  height: 390px;
  border: 1px solid #353531;
  border-radius: 50%;
  content: "";
}

.estimate-head { position: relative; z-index: 1; display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; }
.estimate-logo { width: 54px; height: 54px; }
.estimate-title { margin-bottom: 18px; color: #73736e; font-family: "Courier New",monospace; font-size: .61rem; font-weight: 700; letter-spacing: .18em; }
.estimate-value { margin-bottom: 8px; font-size: clamp(3.7rem,8vw,7.2rem); font-weight: 900; letter-spacing: -.09em; line-height: .85; }
.estimate-unit { color: var(--pear); font-family: "Courier New",monospace; font-size: .59rem; font-weight: 700; letter-spacing: .16em; }
.estimate-based { display: flex; align-items: center; margin-top: 36px; gap: 13px; color: #73736e; font-size: .72rem; }
.estimate-based strong { color: var(--pear); }
.metrics-grid { display: grid; grid-template-columns: repeat(3,1fr); margin-top: 54px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.metric { padding: 24px; border-right: 1px solid var(--line); }
.metric:first-child { padding-left: 0; }
.metric:last-child { border-right: 0; }
.metric span,.metric strong { display: block; }
.metric span { margin-bottom: 10px; color: #686862; font-family: "Courier New",monospace; font-size: .54rem; letter-spacing: .1em; text-transform: uppercase; }
.metric strong { font-size: 1.2rem; }
.estimate-actions { display: flex; flex-wrap: wrap; margin-top: 38px; gap: 8px; }
.tooltip-wrap { position: relative; }
.tooltip-wrap::after { position: absolute; z-index: 3; bottom: calc(100% + 9px); left: 50%; width: max-content; padding: 7px 9px; border: 1px solid var(--paper); color: var(--paper); background: var(--black); content: attr(data-tooltip); font-size: .57rem; opacity: 0; pointer-events: none; transform: translate(-50%,5px); transition: opacity .2s,transform .2s; }
.tooltip-wrap:hover::after { opacity: 1; transform: translate(-50%,0); }

.farming-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.day-card { position: relative; min-height: 280px; padding: 28px; border-right: 1px solid var(--line); overflow: hidden; transition: color .25s,background .25s; }
.day-card:first-child { border-left: 1px solid var(--line); }
.day-card:hover,.day-card.featured { color: var(--black); background: var(--pear); }
.day-number { display: flex; justify-content: space-between; align-items: center; margin-bottom: 85px; color: #696964; font-family: "Courier New",monospace; font-size: .58rem; letter-spacing: .14em; }
.day-card:hover .day-number,.day-card.featured .day-number { color: #4d5c2f; }
.day-check { display: grid; width: 26px; height: 26px; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-size: .52rem; }
.day-points { margin-bottom: 8px; font-size: 1.45rem; font-weight: 900; letter-spacing: -.04em; }
.day-points span { color: var(--pear); }
.day-card:hover .day-points span,.day-card.featured .day-points span { color: var(--black); }
.day-caption { margin: 0; color: #6b6b65; font-size: .69rem; }
.day-card:hover .day-caption,.day-card.featured .day-caption { color: #3e442f; }
.farming-note { margin: 25px 0 0; color: #6d6d67; font-family: "Courier New",monospace; font-size: .64rem; text-align: center; }

.rewards-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  padding-top: 100px;
  padding-bottom: 120px;
}

.reward-card {
  position: relative;
  display: flex;
  min-height: 520px;
  flex-direction: column;
  padding: 28px;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--black);
  overflow: hidden;
}

.reward-card:first-child { border-left: 1px solid var(--line); }
.reward-card:nth-child(2) { color: var(--black); background: var(--paper); }
.reward-card:nth-child(3) { background: #171463; }
.reward-badge { position: relative; z-index: 2; width: max-content; padding: 6px 8px; border: 1px solid currentColor; font-family: "Courier New",monospace; font-size: .54rem; font-weight: 700; letter-spacing: .14em; }
.reward-art { position: relative; display: grid; min-height: 285px; place-items: center; }
.reward-art::before { position: absolute; width: 190px; aspect-ratio: 1; border: 1px solid currentColor; border-radius: 50%; content: ""; opacity: .16; }
.reward-art::after { position: absolute; width: 120px; aspect-ratio: 1; border: 1px solid currentColor; border-radius: 50%; content: ""; opacity: .12; }
.reward-art img { position: relative; z-index: 2; width: 110px; }
.reward-symbol { position: relative; z-index: 2; display: grid; width: 92px; height: 92px; place-items: center; border: 2px solid currentColor; color: var(--ice); font-size: 2.25rem; font-weight: 900; }
.reward-card:nth-child(2) .reward-symbol { color: var(--blue); }
.reward-symbol.check-concept { border-radius: 50%; }
.reward-card h3 { max-width: 290px; margin-top: auto; font-size: 1.45rem; line-height: 1.02; text-transform: uppercase; }
.reward-card p { margin-bottom: 0; color: #8b8b85; font-size: .75rem; line-height: 1.6; }
.reward-card:nth-child(2) p { color: #62625d; }
.reward-card:nth-child(3) p { color: #a9a6cf; }

.guide-section { padding: 120px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.guide-grid { display: grid; grid-template-columns: repeat(3,1fr); margin-top: 58px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.guide-step { min-height: 250px; padding: 30px; border-right: 1px solid var(--line); }
.guide-step:first-child { border-left: 1px solid var(--line); }
.step-number { display: block; margin-bottom: 80px; color: #595954; font-family: "Courier New",monospace; font-size: .57rem; letter-spacing: .15em; }
.guide-step h3 { font-size: 1.35rem; }
.guide-step p { max-width: 290px; margin: 0; color: var(--gray); font-size: .74rem; line-height: 1.62; }
.guide-disclaimer { display: inline-flex; margin-top: 35px; padding: 8px 10px; border: 1px solid var(--line); color: #65655f; font-family: "Courier New",monospace; font-size: .58rem; }

.site-footer { padding: 80px 0 25px; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; padding-bottom: 58px; gap: 40px; }
.footer-brand .brand { margin-bottom: 18px; }
.footer-brand p { max-width: 320px; margin: 0; color: #6e6e68; font-size: .72rem; line-height: 1.6; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 13px 28px; }
.footer-nav a { color: #797973; font-size: .68rem; font-weight: 700; text-transform: uppercase; }
.footer-nav a:hover { color: var(--pear); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 23px; border-top: 1px solid var(--line); gap: 25px; color: #555550; font-family: "Courier New",monospace; font-size: .57rem; }
.footer-disclaimer { color: #7d7d77; text-align: right; }

@media (max-width:1000px) {
  .nav-wrap { grid-template-columns: 1fr auto; }
  .desktop-nav,.nav-actions>.nav-cta { display: none; }
  .menu-toggle { display: block; }
  .mobile-nav { position: absolute; top: calc(100% + 1px); right: -1px; left: -1px; padding: 10px; border: 1px solid var(--line); background: rgba(7,7,7,.98); }
  .mobile-nav.is-open { display: grid; gap: 2px; }
  .mobile-nav a { padding: 13px 12px; color: #8b8b85; font-size: .72rem; font-weight: 700; text-transform: uppercase; }
  .mobile-nav a[aria-current="page"],.mobile-nav a:hover { color: var(--black); background: var(--pear); }
  .mobile-nav .btn { margin-top: 6px; }
  .hero-grid { grid-template-columns: 1.05fr .95fr; }
  .hero-visual { min-height: 480px; }
  .coin-orbit { right: -30%; width: 520px; }
  .stats-strip { grid-template-columns: repeat(2,1fr); }
  .strip-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .tokenomics-wrap { gap: 40px; }
}

@media (max-width:780px) {
  .container { width: min(calc(100% - 30px),var(--max)); }
  .nav-wrap { min-height: 66px; }
  .section { padding-block: 90px; }
  .section-heading { display: block; margin-bottom: 42px; }
  .section-heading p:last-child { margin-top: 23px; }
  .hero { min-height: auto; padding: 70px 0 0; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { padding-top: 0; }
  .hero-visual { min-height: 470px; margin-top: 45px; border-top: 1px solid var(--line); border-left: 0; }
  .hero-visual::before { top: 18px; left: 0; }
  .coin-orbit { top: 5%; right: 50%; width: min(520px,118vw); }
  @keyframes float {
    0%,100% { transform: translateX(50%) translateY(0) rotate(-1deg); }
    50% { transform: translateX(50%) translateY(-12px) rotate(1deg); }
  }
  .floating-note { right: 0; bottom: 4%; }
  .card-grid,.pear-panel,.allocation-layout,.tokenomics-wrap,.farming-grid { grid-template-columns: 1fr; }
  .card { border-left: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .card:last-child { border-bottom: 0; }
  .pear-panel { gap: 45px; }
  .teaser-copy { min-height: 360px; border-top: 1px solid var(--line); border-left: 0; }
  .tokenomics-wrap { gap: 35px; padding-top: 80px; }
  .donut-area { min-height: 430px; }
  .day-card { border-left: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .day-card:last-child { border-bottom: 0; }
  .rewards-grid { grid-template-columns: 1fr; }
  .reward-card { min-height: 430px; border-left: 1px solid var(--line); border-bottom: 0; }
  .reward-card:last-child { border-bottom: 1px solid var(--line); }
  .reward-art { min-height: 190px; }
  .guide-grid { grid-template-columns: 1fr; }
  .guide-step { min-height: 0; border-left: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .guide-step:last-child { border-bottom: 0; }
  .step-number { margin-bottom: 35px; }
  .footer-top,.footer-bottom { display: block; }
  .footer-nav { margin-top: 35px; }
  .footer-disclaimer { margin-top: 12px; text-align: left; line-height: 1.5; }
}

@media (max-width:520px) {
  .container { width: min(calc(100% - 22px),var(--max)); }
  h1 { font-size: clamp(4rem,20vw,5.6rem); }
  h2 { font-size: 2.55rem; }
  .hero h1::after { right: -18px; bottom: 4px; width: 11px; height: 11px; }
  .hero-tagline { font-size: 1.75rem; }
  .hero-description { font-size: .84rem; }
  .hero-actions { display: grid; }
  .hero-actions .btn { width: 100%; }
  .hero-trust { gap: 12px 17px; }
  .hero-visual { min-height: 390px; }
  .coin-orbit { width: 440px; }
  .stats-strip { grid-template-columns: 1fr; }
  .strip-item { min-height: 100px; border-bottom: 1px solid var(--line); }
  .strip-item:last-child { border-bottom: 0; }
  .card { min-height: 310px; padding: 24px; }
  .card-icon { margin-bottom: 70px; }
  .pear-panel { padding: 45px 22px; }
  .points-card { padding: 23px; }
  .allocation-card,.teaser-copy { padding: 38px 22px; }
  .allocation-card::after { right: -250px; }
  .bar-row { grid-template-columns: 77px 1fr 32px; gap: 8px; }
  .page-hero { min-height: 480px; padding: 78px 0 65px; }
  .page-hero h1 { font-size: clamp(3.6rem,17vw,5.2rem); }
  .donut-area { min-height: 350px; }
  .token-item { grid-template-columns: 40px 1fr auto; gap: 11px; }
  .token-icon { width: 40px; height: 40px; }
  .token-copy span { display: none; }
  .token-percent { font-size: 1.1rem; }
  .airdrop-main { padding-top: 70px; }
  .estimate-card { padding: 38px 21px; }
  .estimate-logo { width: 42px; height: 42px; }
  .metrics-grid { grid-template-columns: 1fr; }
  .metric,.metric:first-child { padding: 19px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .metric:last-child { border-bottom: 0; }
  .estimate-actions { display: grid; }
  .estimate-actions .btn,.tooltip-wrap,.tooltip-wrap .btn { width: 100%; }
  .reward-card { min-height: 400px; }
  .footer-nav { display: grid; grid-template-columns: repeat(2,1fr); }
}

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

@media (max-width:780px) {
  .wallet-visual { min-height: 560px; }
  .wallet-visual-label { left: 0; }
  .phone-frame { top: 9%; left: 50%; right: auto; width: 280px; margin-left: -140px; }
  .phone-card-top { left: 0; }
  .phone-card-bottom { right: 0; bottom: 8%; }
}

@media (max-width:520px) {
  .phone-frame { width: 255px; margin-left: -127.5px; padding: 7px; border-radius: 31px; }
  .phone-screen { min-height: 505px; padding: 14px 13px 11px; border-radius: 24px; }
  .phone-card { padding: 10px 11px; }
  .phone-card-top { top: 18%; }
  .phone-card-bottom { bottom: 5%; }
}
