@font-face {
  font-family: "Anton";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.bunny.net/anton/files/anton-latin-400-normal.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Public Sans";
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://fonts.bunny.net/public-sans/files/public-sans-latin-400-normal.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Public Sans";
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://fonts.bunny.net/public-sans/files/public-sans-latin-600-normal.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Public Sans";
  font-style: normal;
  font-weight: 800;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://fonts.bunny.net/public-sans/files/public-sans-latin-800-normal.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {

  --navy-950: #060B1D;
  --navy-900: #0B1430;
  --navy-800: #13214A;
  --line: rgba(169, 184, 230, .16);
  --line-strong: rgba(169, 184, 230, .32);
  --paper: #F7F5EF;
  --muted: #A9B3D1;
  --gold-hi: #FFE39A;
  --gold: #F5B72B;
  --gold-lo: #B97A0C;
  --green: #48F77E;
  --red: #E0364B;

  --font-display: "Anton", Impact, "Avenir Next Condensed", "Arial Narrow", sans-serif-condensed, sans-serif;
  --font-body: "Public Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono: ui-monospace, "SF Mono", SFMono-Regular, Menlo, Consolas, monospace;
  --text-sm: .875rem;
  --text-base: 1.0625rem;
  --text-lg: 1.25rem;
  --text-2xl: clamp(2.5rem, 1.5rem + 4vw, 4.75rem);
  --text-tagline: clamp(1.875rem, 1.1rem + 2.7vw, 3.25rem);

  --space-1: .25rem;
  --space-2: .5rem;
  --space-3: .75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;

  --wrap: 75rem;
  --gutter: clamp(1rem, 4vw, 2.5rem);
  --nav-h: 4rem;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-pill: 999px;

  --ease-out: cubic-bezier(.2, .8, .2, 1);
  --dur-fast: 150ms;
  --dur-base: 240ms;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  background: var(--navy-950);
  scroll-padding-top: calc(var(--nav-h) + 2rem);
}
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--navy-950);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  overflow-x: clip;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; color: inherit; }
h1, h2, h3, p { margin: 0; }
::selection { background: var(--gold); color: var(--navy-950); }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.icon { width: 1.125em; height: 1.125em; flex: none; }

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

.skip-link {
  position: fixed; left: 12px; top: -100px; z-index: 100;
  padding: .75rem 1rem; border-radius: var(--radius-sm);
  background: var(--paper); color: var(--navy-950); font-weight: 600; text-decoration: none;
}
.skip-link:focus { top: 12px; }

.wrap {
  width: min(var(--wrap), 100% - 2 * var(--gutter));
  margin-inline: auto;
}

html:not([data-status="live"]) [data-if="live"],
html[data-status="live"] [data-unless="live"],
html:not([data-x="on"]) [data-if="x"],
html[data-x="on"] [data-unless="x"],
html:not([data-telegram="on"]) [data-if="telegram"],
html[data-telegram="on"] [data-unless="telegram"],
html:not([data-buy="on"]) [data-if="buy"],
html[data-buy="on"] [data-unless="buy"],
html:not([data-chart="on"]) [data-if="chart"],
html[data-chart="on"] [data-unless="chart"],
html:not([data-contract="on"]) [data-if="contract"],
html[data-contract="on"] [data-unless="contract"],
html:not([data-chain="on"]) [data-if="chain"],
html[data-chain="on"] [data-unless="chain"] {
  display: none !important;
}

.btn {
  --btn-bg: rgba(6, 11, 29, .45);
  --btn-bg-hover: rgba(247, 245, 239, .08);
  --btn-fg: var(--paper);
  --btn-border: var(--line-strong);
  --btn-border-hover: rgba(247, 245, 239, .7);
  --btn-inset: none;
  --btn-glow: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 52px;
  padding: 0 1.4rem;
  border: 1px solid var(--btn-border);
  border-radius: var(--radius-pill);
  background: var(--btn-bg);
  color: var(--btn-fg);
  box-shadow: var(--btn-inset);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-base), background-color var(--dur-fast), border-color var(--dur-fast);
}
.btn:hover {
  background: var(--btn-bg-hover);
  border-color: var(--btn-border-hover);
  box-shadow: var(--btn-inset), 0 12px 30px -10px var(--btn-glow);
  transform: translateY(-1px);
}
.btn:active { transform: translateY(1px); }

.btn-gold,
html[data-cta1="buy"] [data-cta="buy"],
html[data-cta1="x"] [data-cta="x"],
html[data-cta1="telegram"] [data-cta="telegram"],
html[data-cta1="chart"] [data-cta="chart"],
html[data-cta1="plan"] [data-cta="plan"],
html[data-cta1="links"] [data-cta="links"] {
  --btn-bg: linear-gradient(180deg, var(--gold-hi) 0%, var(--gold) 55%, #E39D16 100%);
  --btn-bg-hover: linear-gradient(180deg, #FFF0C2 0%, #FFC847 55%, #EFA91F 100%);
  --btn-fg: var(--navy-950);
  --btn-border: transparent;
  --btn-border-hover: transparent;
  --btn-inset: inset 0 1px 0 rgba(255, 255, 255, .55), inset 0 -2px 0 rgba(0, 0, 0, .16);
  --btn-glow: rgba(245, 183, 43, .55);
}
.btn-sm { min-height: 44px; padding: 0 1rem; font-size: .9375rem; }
.btn-line { --btn-bg: transparent; }

[data-cta] { display: none; }
html[data-cta1="buy"] [data-cta="buy"], html[data-cta2="buy"] [data-cta="buy"],
html[data-cta1="x"] [data-cta="x"], html[data-cta2="x"] [data-cta="x"],
html[data-cta1="telegram"] [data-cta="telegram"], html[data-cta2="telegram"] [data-cta="telegram"],
html[data-cta1="chart"] [data-cta="chart"], html[data-cta2="chart"] [data-cta="chart"],
html[data-cta1="plan"] [data-cta="plan"], html[data-cta2="plan"] [data-cta="plan"],
html[data-cta1="links"] [data-cta="links"], html[data-cta2="links"] [data-cta="links"] {
  display: inline-flex;
}
html[data-cta1="buy"] [data-cta="buy"],
html[data-cta1="x"] [data-cta="x"],
html[data-cta1="telegram"] [data-cta="telegram"],
html[data-cta1="chart"] [data-cta="chart"],
html[data-cta1="plan"] [data-cta="plan"],
html[data-cta1="links"] [data-cta="links"] {
  order: -1;
}

.btn-copy {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  min-height: 44px;
  padding: 0 .9rem;
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--gold);
  color: var(--navy-950);
  font-weight: 600;
  font-size: .875rem;
  cursor: pointer;
  transition: background-color var(--dur-fast);
}
.btn-copy:hover { background: #FFC847; }
.btn-copy .icon { width: 1rem; height: 1rem; }

.status-chip {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  min-height: 30px;
  padding: 0 .75rem;
  border: 1px solid rgba(245, 183, 43, .38);
  border-radius: var(--radius-pill);
  background: rgba(245, 183, 43, .08);
  color: #FFD77A;
  font-size: .8125rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}
.status-chip.is-live {
  border-color: rgba(72, 247, 126, .4);
  background: rgba(72, 247, 126, .08);
  color: #9DFFBC;
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}
@media (prefers-reduced-motion: no-preference) {
  .is-live .status-dot { animation: live-pulse 2s ease-out infinite; }
}
@keyframes live-pulse {
  0% { box-shadow: 0 0 0 0 rgba(72, 247, 126, .6); }
  100% { box-shadow: 0 0 0 8px rgba(72, 247, 126, 0); }
}

.site-nav {
  position: fixed;
  inset: 12px 0 auto;
  z-index: 50;
  padding-inline: 12px;
}
.nav-bar {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--space-4);
  max-width: calc(var(--wrap) + 3rem);
  height: var(--nav-h);
  margin-inline: auto;
  padding: 0 var(--space-3) 0 var(--space-3);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: rgba(6, 11, 29, .72);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  backdrop-filter: blur(16px) saturate(1.3);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .3);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .625rem;
  color: var(--paper);
  text-decoration: none;
  border-radius: var(--radius-pill);
}
.brand img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid var(--gold);
}
.brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: .01em;
}
.nav-links {
  display: flex;
  gap: var(--space-1);
  margin-left: auto;
}
.nav-links a {
  padding: .6rem .9rem;
  border-radius: var(--radius-pill);
  color: var(--muted);
  font-size: .9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: color var(--dur-fast), background-color var(--dur-fast);
}
.nav-links a:hover { color: var(--paper); background: rgba(247, 245, 239, .07); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}
.menu-toggle .icon { width: 22px; height: 22px; grid-area: 1 / 1; }
.menu-toggle .icon-close,
.site-nav[data-open] .menu-toggle .icon-open { display: none; }
.site-nav[data-open] .menu-toggle .icon-close { display: block; }

@media (max-width: 900px) {
  .menu-toggle { display: inline-grid; }
  .nav-actions { margin-left: auto; }
  .nav-actions .status-chip { display: none; }
  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 2px;
    padding: var(--space-2);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(8, 14, 36, .97);
    box-shadow: 0 24px 50px rgba(0, 0, 0, .45);
  }
  .site-nav[data-open] .nav-links { display: flex; }
  .nav-links a {
    padding: .9rem 1rem;
    border-radius: var(--radius-sm);
    color: var(--paper);
    font-size: 1.0625rem;
  }
}

.hero { position: relative; isolation: isolate; overflow: hidden; }

.hero-art {
  position: relative;
  max-width: 1800px;
  aspect-ratio: 1 / 1;
  margin-inline: auto;
  overflow: hidden;
}
.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 55%;
}
.hero-art::after {
  content: "";
  position: absolute;
  inset: 0 0 -1px;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(6, 11, 29, .75) 0%, rgba(6, 11, 29, 0) 24%, rgba(6, 11, 29, 0) 48%, rgba(6, 11, 29, .9) 78%, var(--navy-950) 94%);
}

@media (min-width: 641px) {
  .hero-art { aspect-ratio: auto; height: min(75vw, 74svh); }
}
@media (min-width: 1025px) {
  .hero-art { height: min(33.34vw, 52svh, 600px); }
  .hero-art img { object-position: 50% 45%; }
}
@media (min-width: 1800px) {
  .hero-art::after {
    background:
      linear-gradient(90deg, var(--navy-950) 0%, rgba(6, 11, 29, .5) 4%, rgba(6, 11, 29, 0) 10%, rgba(6, 11, 29, 0) 90%, rgba(6, 11, 29, .5) 96%, var(--navy-950) 100%),
      linear-gradient(180deg, rgba(6, 11, 29, .7) 0%, rgba(6, 11, 29, 0) 22%, rgba(6, 11, 29, 0) 48%, rgba(6, 11, 29, .9) 78%, var(--navy-950) 94%);
  }
}

.hero-body {
  position: relative;
  z-index: 1;
  container-type: inline-size;
  padding-bottom: clamp(3rem, 2rem + 4vw, 5.5rem);
}

.wordmark-row { position: relative; }

.wordmark {
  margin-top: -.24em;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.5rem, 12cqi, 5rem);
  line-height: .92;
  letter-spacing: -.005em;
  text-transform: uppercase;
  color: var(--gold);
  background: linear-gradient(180deg, #FFF4CC 0%, var(--gold-hi) 24%, var(--gold) 60%, #D48F10 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 .03em .06em rgba(0, 0, 0, .5));
  cursor: default;
  user-select: none;
  -webkit-user-select: none;
}

.trunk-pin {
  position: absolute;
  right: calc(-1 * min(48px, var(--gutter) - 8px));
  top: -22%;
  width: clamp(84px, 14cqi, 164px);
  height: auto;
  transform: rotate(-12deg);
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, .5));
}
@media (max-width: 640px) {
  .trunk-pin { top: -62%; }
}
.pin-text {
  font-family: var(--font-display);
  font-size: 23px;
  letter-spacing: 1.4px;
}

.hero-grid {
  display: grid;
  gap: var(--space-6);
}
@media (min-width: 1025px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 400px;
    align-items: end;
    gap: var(--space-8);
  }
  .wordmark { font-size: min(calc((100cqi - 400px - var(--space-8)) / 4.3), 6.5rem, 21svh); }
  .hero-actions { margin-top: var(--space-5); }
}

.hero-lead {
  max-width: 34rem;
  margin-top: var(--space-4);
  color: var(--muted);
  font-size: var(--text-lg);
  line-height: 1.5;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-6);
}
@media (max-width: 640px) {
  .hero-actions .btn { flex: 1 1 12rem; }
}

.launch-panel {
  padding: var(--space-5);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(19, 33, 74, .9), rgba(11, 20, 48, .94));
  box-shadow: 0 28px 60px rgba(0, 0, 0, .35);
}
.launch-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}
.launch-title {
  font-size: var(--text-base);
  font-weight: 600;
  line-height: 1.2;
}
.ca-field {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  min-height: 60px;
  padding: var(--space-2) var(--space-2) var(--space-2) var(--space-4);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--navy-950);
}
.ca-field.is-empty {
  padding-right: var(--space-4);
  border-style: dashed;
  color: var(--muted);
  font-weight: 600;
}
.ca-value {
  flex: 1;
  min-width: 0;
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: .875rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
}
.launch-note {
  margin-top: var(--space-3);
  color: var(--muted);
  font-size: var(--text-sm);
  line-height: 1.5;
}
.launch-nfa {
  margin-top: var(--space-4);
  padding-top: var(--space-3);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .75rem;
  line-height: 1.4;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-art img { animation: art-settle 1.4s var(--ease-out) both; }
  .wordmark { animation: rise-in .8s var(--ease-out) .1s both; }
  .trunk-pin { animation: pin-slap .55s cubic-bezier(.3, 1.5, .5, 1) .7s both; }
  .hero-grid { animation: rise-in .7s var(--ease-out) .35s both; }
}
@keyframes art-settle { from { transform: scale(1.06); } }
@keyframes rise-in { from { opacity: 0; transform: translateY(24px); } }
@keyframes pin-slap { from { opacity: 0; transform: scale(1.7) rotate(-40deg); } }

.ticker {
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: #040817;
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 50s linear infinite;
}
.ticker:hover .ticker-track,
.ticker[data-paused] .ticker-track { animation-play-state: paused; }
.ticker-group {
  display: flex;
  flex: none;
  justify-content: space-around;
  gap: 2.5rem;
  min-width: 100vw;
  margin: 0;
  padding: .95rem 1.25rem;
  list-style: none;
}
.ticker li {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.ticker li::after {
  content: "★";
  color: var(--gold);
  font-size: .8em;
}
@keyframes ticker { to { transform: translateX(-50%); } }

.ticker-toggle {
  position: absolute;
  top: 50%;
  right: 8px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: #040817;
  box-shadow: -24px 0 20px 6px #040817;
  cursor: pointer;
  transform: translateY(-50%);
}
.ticker-toggle .icon { width: 14px; height: 14px; grid-area: 1 / 1; }
.ticker-toggle .icon-play,
.ticker[data-paused] .ticker-toggle .icon-pause { display: none; }
.ticker[data-paused] .ticker-toggle .icon-play { display: block; }

.section { padding-block: clamp(4rem, 2.5rem + 5vw, 6.5rem); }
.section-head { max-width: 46rem; }
.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--text-2xl);
  line-height: .95;
  letter-spacing: .005em;
  text-transform: uppercase;
  text-wrap: balance;
}
.section-lead {
  max-width: 40rem;
  margin-top: var(--space-4);
  color: var(--muted);
  font-size: var(--text-lg);
  line-height: 1.5;
  text-wrap: pretty;
}

.planks {
  position: relative;
  display: grid;
  margin: var(--space-8) 0 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--navy-900);
}
.planks::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 12px;
  background: linear-gradient(180deg, var(--red) 0 4px, var(--paper) 4px 8px, var(--red) 8px 12px);
}
.plank { padding: calc(var(--space-6) + 12px) var(--space-6) var(--space-6); }
.plank + .plank { border-top: 1px solid var(--line); }
.plank-star { width: 28px; height: 28px; color: var(--gold); }
.plank-title {
  margin: var(--space-4) 0 var(--space-2);
  font-size: var(--text-lg);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -.01em;
}
.plank p { color: var(--muted); line-height: 1.6; }
@media (min-width: 861px) {
  .planks { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .plank + .plank { border-top: 0; border-left: 1px solid var(--line); }
}

.trunki-grid {
  display: grid;
  gap: var(--space-6);
  align-items: center;
}
@media (min-width: 861px) {
  .trunki-grid { grid-template-columns: minmax(0, 380px) minmax(0, 1fr); gap: var(--space-8); }
}
.trunki-art { margin: 0; }
.trunki-art img {
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}
.trunki-list {
  display: grid;
  gap: var(--space-3);
  margin: var(--space-5) 0 0;
  padding: 0;
  list-style: none;
}
.trunki-list li {
  position: relative;
  padding-left: 1.75rem;
  color: var(--muted);
  line-height: 1.6;
}
.trunki-list li::before {
  content: "";
  position: absolute;
  top: .6em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}
.trunki-list strong { color: var(--paper); font-weight: 600; }
.trunki-note { margin-top: var(--space-4); color: var(--muted); font-size: var(--text-sm); }
.brandcase { text-transform: none; }
.trunki-next {
  margin-top: var(--space-5);
  padding-top: var(--space-4);
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.trunki-next strong { color: var(--paper); font-weight: 600; }
.section-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-3);
  margin-top: var(--space-6);
}
.trunki-soon {
  margin: 0;
  padding: .625rem 1rem;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-pill);
  color: var(--muted);
  font-size: var(--text-sm);
}

.roadmap {
  display: grid;
  gap: 0;
  margin: var(--space-8) 0 0;
  padding: 0;
  list-style: none;
}
.step {
  position: relative;
  padding: 0 0 var(--space-7) 4.25rem;
}
.step::before {
  content: "";
  position: absolute;
  top: 44px;
  bottom: 0;
  left: 21px;
  width: 2px;
  background: var(--line-strong);
}
.step:last-child { padding-bottom: 0; }
.step:last-child::before { display: none; }
.step[data-state="done"]::before { background: var(--gold); }
.step-num {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 2px solid var(--line-strong);
  border-radius: 50%;
  background: var(--navy-950);
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1;
}
.step[data-state="done"] .step-num { border-color: var(--gold); background: var(--gold); color: var(--navy-950); }
.step[data-state="now"] .step-num { border-color: var(--gold); color: var(--gold); box-shadow: 0 0 0 6px rgba(245, 183, 43, .12); }
.step-title {
  padding-top: .55rem;
  margin-bottom: var(--space-2);
  font-size: var(--text-lg);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -.01em;
}
.step p { max-width: 30rem; color: var(--muted); }
.step-state {
  display: inline-block;
  margin-top: var(--space-3);
  padding: .4rem .7rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  color: var(--muted);
  font-size: .8125rem;
  font-weight: 600;
  line-height: 1;
}
.step[data-state="done"] .step-state { border-color: rgba(245, 183, 43, .45); color: var(--gold-hi); }
.step[data-state="now"] .step-state { border-color: var(--paper); color: var(--paper); }

@media (min-width: 861px) {
  .roadmap { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--space-5); }
  .step { padding: 4.5rem 0 0; }
  .step::before { top: 21px; bottom: auto; left: 52px; right: calc(-1 * var(--space-5)); width: auto; height: 2px; }
  .step:last-child::before { display: none; }
  .step-title { padding-top: 0; }
}

.links-grid {
  display: grid;
  gap: var(--space-7);
  align-items: start;
}
@media (min-width: 961px) {
  .links-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: var(--space-8); }
}
.safety {
  display: grid;
  gap: var(--space-3);
  margin: var(--space-6) 0 0;
  padding: 0;
  list-style: none;
}
.safety li {
  display: flex;
  gap: var(--space-3);
  line-height: 1.5;
}
.safety .icon { width: 1.25rem; height: 1.25rem; margin-top: .1rem; color: var(--gold); }
.safety .domain { color: var(--gold-hi); font-weight: 600; }

.link-list {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--navy-900);
}
.link-list > li + li { border-top: 1px solid var(--line); }
.link-item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  align-items: center;
  gap: var(--space-4);
  min-height: 80px;
  padding: var(--space-4) var(--space-5);
  color: inherit;
  text-decoration: none;
  transition: background-color var(--dur-fast);
}
a.link-item:hover { background: rgba(247, 245, 239, .045); }
a.link-item:focus-visible { outline-offset: -3px; border-radius: var(--radius-md); }
.link-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy-800);
}
.link-icon .icon { width: 20px; height: 20px; }
.link-name { display: block; font-weight: 600; line-height: 1.3; }
.link-meta {
  display: block;
  color: var(--muted);
  font-size: var(--text-sm);
  line-height: 1.4;
  overflow-wrap: anywhere;
}
.ca-inline { color: var(--paper); font-family: var(--font-mono); font-size: .8125rem; }
.link-action { color: var(--gold); font-weight: 600; }
a.link-item:hover .link-action { text-decoration: underline; text-underline-offset: 4px; }
.link-soon {
  padding: .35rem .65rem;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-pill);
  color: var(--muted);
  font-size: .8125rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}
.link-item.is-soon .link-icon { color: var(--muted); }

.faq-grid {
  display: grid;
  gap: var(--space-6);
  align-items: start;
}
@media (min-width: 861px) {
  .faq-grid { grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: var(--space-8); }
}
.faq details { border-bottom: 1px solid var(--line); }
.faq details:first-child { border-top: 1px solid var(--line); }
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  min-height: 44px;
  padding: var(--space-5) 0;
  font-size: var(--text-lg);
  font-weight: 600;
  line-height: 1.35;
  list-style: none;
  cursor: pointer;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  flex: none;
  width: 16px;
  height: 16px;
  background:
    linear-gradient(var(--gold), var(--gold)) center / 16px 2px no-repeat,
    linear-gradient(var(--gold), var(--gold)) center / 2px 16px no-repeat;
  transition: transform var(--dur-base) var(--ease-out);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq summary:hover { color: var(--gold-hi); }
.faq-a p {
  max-width: 38rem;
  padding-bottom: var(--space-5);
  color: var(--muted);
}

.site-footer {
  padding: var(--space-7) 0 calc(var(--space-7) + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: var(--text-sm);
}
.footer-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}
.footer-links { display: flex; align-items: center; gap: var(--space-2); }
.icon-link {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--paper);
  transition: border-color var(--dur-fast);
}
.icon-link:hover { border-color: var(--paper); }
.icon-link .icon { width: 18px; height: 18px; }
.footer-text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 var(--space-3);
  border-radius: var(--radius-pill);
  color: var(--muted);
  font-weight: 600;
  text-decoration: none;
  transition: color var(--dur-fast);
}
.footer-text-link:hover { color: var(--paper); }
.footer-note { margin-top: var(--space-5); font-size: .8125rem; line-height: 1.5; }

.toast {
  position: fixed;
  left: 50%;
  bottom: calc(24px + env(safe-area-inset-bottom));
  z-index: 70;
  max-width: min(92vw, 28rem);
  padding: .9rem 1.2rem;
  border-radius: var(--radius-pill);
  background: var(--paper);
  color: var(--navy-950);
  font-size: .9375rem;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .45);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 16px);
  transition: opacity var(--dur-base), transform var(--dur-base) var(--ease-out);
}
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

.coin {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 65;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin: -14px 0 0 -14px;
  border-radius: 50%;
  pointer-events: none;
  color: #7A4A06;
  font-family: var(--font-display);
  font-size: 15px;
  line-height: 1;
  background: radial-gradient(circle at 34% 30%, #FFF2BF 0, #FFD45C 28%, var(--gold) 55%, var(--gold-lo) 100%);
  box-shadow: inset 0 0 0 2px rgba(255, 236, 170, .6), inset 0 -3px 0 rgba(0, 0, 0, .18), 0 4px 10px rgba(0, 0, 0, .35);
  will-change: transform, opacity;
}

.legal-header { padding: var(--space-5) 0; border-bottom: 1px solid var(--line); }
.legal { padding-block: var(--space-8); }
.legal-body { max-width: 42rem; }
.legal h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--text-2xl);
  line-height: .95;
  letter-spacing: .005em;
  text-transform: uppercase;
}
.legal-updated { margin-top: var(--space-3); color: var(--muted); font-size: var(--text-sm); }
.legal h2 { margin-top: var(--space-7); font-size: var(--text-lg); font-weight: 800; line-height: 1.25; }
.legal p,
.legal li { color: var(--muted); }
.legal p { margin-top: var(--space-3); }
.legal ul { display: grid; gap: var(--space-2); margin: var(--space-3) 0 0; padding-left: 1.2rem; }
.legal strong { color: var(--paper); font-weight: 600; }
.legal a { color: var(--gold); text-underline-offset: 3px; }
.legal .lead { margin-top: var(--space-5); color: var(--paper); font-size: var(--text-lg); line-height: 1.5; }

.not-found {
  display: grid;
  place-items: center;
  min-height: 100vh;
  min-height: 100svh;
  padding: var(--space-8) var(--gutter);
  text-align: center;
}
.not-found img { width: 120px; height: 120px; margin: 0 auto var(--space-5); border-radius: 50%; border: 3px solid var(--gold); }
.not-found .section-title { margin-inline: auto; }
.not-found .section-lead { margin-inline: auto; }
.not-found .btn { margin-top: var(--space-6); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .ticker-track { animation: none; }
  .ticker-toggle { display: none; }
}
