:root {
      --ink: #17102d;
      --ink-soft: #2d1d4e;
      --night: #21123d;
      --night-2: #301d59;
      --purple: #7655cf;
      --lavender: #c4b6f8;
      --lilac: #eee9ff;
      --cream: #fff8ec;
      --paper: #fffdf8;
      --orange: #ff8857;
      --orange-deep: #e45c45;
      --yellow: #ffc95d;
      --green: #9bcf64;
      --line: rgba(255, 255, 255, .24);
      --dark-line: rgba(23, 16, 45, .16);
      --shadow: 0 24px 70px rgba(24, 12, 58, .22);
      --radius-xl: 42px;
      --radius-lg: 28px;
      --radius-md: 18px;
      --ease: cubic-bezier(.22, .8, .24, 1);
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      color: var(--cream);
      background: var(--night);
      font-family: "DM Sans", sans-serif;
      overflow-x: hidden;
    }
    body.no-scroll { overflow: hidden; }
    a { color: inherit; text-decoration: none; }
    button, a { -webkit-tap-highlight-color: transparent; }
    button { color: inherit; font: inherit; }
    img { display: block; max-width: 100%; }
    #top, #about, #thesis, #why, #buy, #tokenomics, #shill, #memes, #community { scroll-margin-top: 104px; }
    ::selection { color: var(--ink); background: var(--yellow); }

    .container {
      width: min(1180px, calc(100% - 48px));
      margin-inline: auto;
    }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      width: fit-content;
      margin: 0 0 24px;
      color: var(--yellow);
      font-family: "Space Grotesk", sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
    }
    .eyebrow::before {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: currentColor;
      box-shadow: 0 0 0 5px rgba(255, 201, 93, .14);
      content: "";
    }
    .display {
      margin: 0;
      font-family: Bungee, sans-serif;
      font-weight: 400;
      letter-spacing: -.055em;
      line-height: .94;
      text-transform: uppercase;
    }
    .section-kicker {
      margin: 0 0 18px;
      color: var(--orange);
      font-family: "Space Grotesk", sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .16em;
      text-transform: uppercase;
    }
    .section-title {
      max-width: 780px;
      color: var(--cream);
      font-size: clamp(44px, 7vw, 92px);
    }
    .section-title.dark { color: var(--ink); }
    .body-copy {
      margin: 0;
      color: rgba(255, 248, 236, .7);
      font-size: 21px;
      line-height: 1.7;
    }
    .body-copy.dark { color: rgba(23, 16, 45, .68); }

    .site-header {
      position: fixed;
      z-index: 20;
      top: 16px;
      left: 0;
      width: 100%;
      padding-inline: 24px;
      transition: transform .4s var(--ease);
    }
    .nav-shell {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      width: min(1180px, 100%);
      min-height: 62px;
      margin-inline: auto;
      padding: 8px 9px 8px 18px;
      border: 1px solid transparent;
      border-radius: 999px;
      background: transparent;
      color: var(--cream);
      transition: background .35s ease, box-shadow .35s ease, border-color .35s ease;
    }
    .site-header.scrolled .nav-shell {
      border-color: rgba(255, 255, 255, .24);
      background: rgba(32, 18, 61, .78);
      box-shadow: 0 18px 46px rgba(9, 4, 28, .24);
      color: var(--cream);
      -webkit-backdrop-filter: blur(18px);
      backdrop-filter: blur(18px);
    }
    .brand {
      display: inline-flex;
      align-items: center;
      flex: 0 0 auto;
      font-family: Bungee, sans-serif;
      color: var(--yellow);
      font-size: 22px;
      letter-spacing: -.07em;
      text-shadow: 0 2px 0 var(--purple), 0 4px 0 rgba(0, 0, 0, .36);
    }
    .brand-image { display: none; }
    .scrolled .brand { color: var(--cream); text-shadow: 0 2px 0 var(--purple), 0 3px 0 rgba(0, 0, 0, .35); }
    .nav-links {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: clamp(18px, 2.4vw, 34px);
      margin-left: auto;
      margin-right: auto;
      font-family: "Space Grotesk", sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
    }
    .nav-links a:focus-visible { opacity: 1; }
    .nav-links a { color: var(--cream); opacity: .9; transition: opacity .2s ease, color .2s ease; }
    .nav-links a:hover { color: var(--yellow); opacity: 1; }
    .scrolled .nav-links a:hover { color: var(--yellow); }
    .menu-button {
      display: none;
      width: 42px;
      height: 42px;
      padding: 0;
      border: 0;
      border-radius: 50%;
      background: var(--ink);
      cursor: pointer;
    }
    .menu-button span,
    .menu-button span::before,
    .menu-button span::after {
      display: block;
      width: 16px;
      height: 2px;
      margin: auto;
      border-radius: 99px;
      background: var(--cream);
      content: "";
      transition: transform .25s ease;
    }
    .menu-button span::before { transform: translateY(-5px); }
    .menu-button span::after { transform: translateY(3px); }
    .menu-button.open span { background: transparent; }
    .menu-button.open span::before { transform: translateY(0) rotate(45deg); }
    .menu-button.open span::after { transform: translateY(-2px) rotate(-45deg); }
    .pill-button,
    .outline-button,
    .text-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 48px;
      padding: 0 22px;
      border: 0;
      border-radius: 999px;
      font-family: "Space Grotesk", sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .05em;
      text-transform: uppercase;
      transition: transform .24s var(--ease), box-shadow .24s ease, background .24s ease;
    }
    .pill-button { background: var(--ink); box-shadow: inset 0 -3px 0 rgba(0, 0, 0, .18); color: var(--cream); cursor: pointer; }
    .pill-button:hover { background: var(--orange-deep); box-shadow: 0 10px 24px rgba(228, 92, 69, .25); transform: translateY(-3px); }
    .outline-button { border: 1px solid rgba(255, 248, 236, .38); background: rgba(255, 255, 255, .05); color: var(--cream); cursor: pointer; }
    .outline-button:hover { border-color: var(--yellow); background: rgba(255, 201, 93, .12); transform: translateY(-3px); }
    .nav-cta { min-height: 48px; padding-inline: 24px; background: var(--yellow); color: var(--ink); }

    .hero {
      position: relative;
      min-height: min(100vh, 980px);
      overflow: hidden;
      isolation: isolate;
      background:
        radial-gradient(circle at 78% 12%, rgba(255, 173, 104, .34), transparent 24%),
        linear-gradient(155deg, #21123d 0%, #432364 42%, #a14d6f 75%, #ef8659 100%);
    }
    .hero::before {
      position: absolute;
      z-index: -2;
      inset: 0;
      background:
        linear-gradient(115deg, rgba(20, 9, 45, .3) 0%, rgba(47, 22, 79, .12) 47%, rgba(240, 126, 84, .04) 100%),
        radial-gradient(ellipse at 18% 76%, rgba(105, 77, 184, .62), transparent 37%);
      content: "";
    }
    .hero::after {
      position: absolute;
      z-index: -1;
      right: -6%;
      bottom: -20%;
      left: -6%;
      height: 47%;
      border-top: 1px solid rgba(255, 248, 236, .24);
      background: repeating-linear-gradient(175deg, rgba(207, 190, 255, .16) 0 2px, transparent 2px 24px);
      opacity: .68;
      transform: rotate(-2deg);
      content: "";
    }
    .hero-grid {
      position: relative;
      display: grid;
      grid-template-columns: minmax(0, .87fr) minmax(0, 1.13fr);
      align-items: center;
      gap: 42px;
      min-height: min(100vh, 980px);
      padding-top: 104px;
      padding-bottom: 60px;
    }
    .sun-orb {
      position: absolute;
      z-index: -1;
      top: 16%;
      right: 23%;
      width: clamp(160px, 17vw, 280px);
      aspect-ratio: 1;
      border-radius: 50%;
      background: radial-gradient(circle at 35% 30%, #ffe1a2, #ffab65 44%, rgba(255, 133, 84, .1) 72%, transparent 73%);
      filter: blur(.2px);
      opacity: .9;
    }
    .hero-copy { position: relative; z-index: 2; padding-bottom: 20px; }
    .hero-copy .eyebrow { display: none; }
    .hero-title { max-width: 680px; color: var(--cream); font-size: clamp(68px, 9.6vw, 150px); text-shadow: 0 7px 0 rgba(23, 16, 45, .45); }
    .hero-title span { color: var(--yellow); }
    .hero-tagline {
      margin: 24px 0 12px;
      color: var(--cream);
      font-family: "Space Grotesk", sans-serif;
      font-size: clamp(22px, 2.5vw, 36px);
      font-weight: 700;
      letter-spacing: -.04em;
    }
    .hero-subtitle { max-width: 510px; margin: 0; color: rgba(255, 248, 236, .9); font-size: 19px; line-height: 1.55; }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
    .hero-actions .pill-button { min-height: 56px; padding-inline: 26px; background: var(--yellow); color: var(--ink); }
    .hero-actions .pill-button:hover { background: var(--cream); }
    .hero-actions .outline-button { min-height: 56px; padding-inline: 26px; border-color: rgba(196, 182, 248, .9); background: rgba(33, 18, 61, .14); }
    .community-note { margin: 32px 0 0; color: rgba(196, 182, 248, .92); font-family: "Space Grotesk", sans-serif; font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
    .social-row { display: flex; align-items: center; gap: 9px; margin-top: 28px; }
    .social-link {
      display: inline-grid;
      width: 36px;
      height: 36px;
      place-items: center;
      border: 1px solid rgba(255, 248, 236, .4);
      border-radius: 50%;
      color: var(--cream);
      font-family: "Space Grotesk", sans-serif;
      font-size: 12px;
      font-weight: 700;
      transition: background .2s ease, color .2s ease, transform .2s ease;
    }
    .social-link:hover { background: var(--yellow); color: var(--ink); transform: translateY(-3px) rotate(-6deg); }
    .hero-art { position: relative; z-index: 1; min-height: 720px; }
    .hero-art::before {
      position: absolute;
      top: 14%;
      right: 2%;
      width: 80%;
      height: 72%;
      border-radius: 50%;
      background: rgba(23, 16, 45, .3);
      filter: blur(40px);
      content: "";
    }
    .hero-image-frame {
      position: absolute;
      top: 2%;
      right: -14%;
      width: min(760px, 112%);
      aspect-ratio: .95;
      overflow: hidden;
      transform: rotate(0deg);
      filter: drop-shadow(0 30px 34px rgba(24, 9, 45, .42));
      animation: mascotFloat 7s ease-in-out infinite;
    }
    .hero-image-frame::after {
      display: none;
    }
    .hero-image-frame img { width: 100%; height: 100%; border-radius: 32px; object-fit: cover; object-position: center; transform: scale(1); transform-origin: center; }
    .hero .hero-stats, .hero .sticker, .hero .scroll-note { display: none; }
    .sticker {
      position: absolute;
      display: grid;
      place-items: center;
      border: 2px solid var(--ink);
      box-shadow: 5px 7px 0 rgba(23, 16, 45, .25);
      font-family: Bungee, sans-serif;
      text-align: center;
      text-transform: uppercase;
    }
    .sticker-sun { top: 6%; right: -1%; width: 90px; height: 90px; border-radius: 50%; background: var(--yellow); color: var(--ink); font-size: 12px; transform: rotate(10deg); }
    .sticker-float { right: 4%; bottom: 8%; width: 126px; height: 58px; border-radius: 18px; background: var(--orange); color: var(--ink); font-size: 12px; transform: rotate(-8deg); }
    .sticker-frog { bottom: 16%; left: 1%; width: 74px; height: 74px; border-radius: 47% 53% 44% 56%; background: var(--green); color: var(--ink); font-size: 24px; transform: rotate(-10deg); }
    .hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 40px; }
    .hero-stat { padding: 16px 17px; border: 1px solid rgba(255, 248, 236, .22); border-radius: 16px; background: rgba(255, 248, 236, .08); }
    .hero-stat small { display: block; margin-bottom: 8px; color: rgba(255, 248, 236, .52); font-family: "Space Grotesk", sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
    .hero-stat strong { display: block; color: var(--cream); font-family: "Space Grotesk", sans-serif; font-size: 14px; }
    .scroll-note { position: absolute; right: 0; bottom: 28px; display: flex; align-items: center; gap: 12px; color: rgba(255, 248, 236, .65); font-family: "Space Grotesk", sans-serif; font-size: 11px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
    .scroll-note::after { width: 42px; height: 1px; background: currentColor; content: ""; }
    @keyframes mascotFloat { 0%, 100% { transform: translateY(0) rotate(2.5deg); } 50% { transform: translateY(-14px) rotate(1deg); } }
    @media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; } }

    .ticker { position: relative; overflow: hidden; border-top: 1px solid rgba(255, 248, 236, .18); border-bottom: 1px solid rgba(255, 248, 236, .18); background: var(--orange); color: var(--ink); }
    .ticker-track { display: flex; width: max-content; animation: tickerMove 32s linear infinite; }
    .ticker-line { display: flex; align-items: center; gap: 28px; min-height: 70px; padding-right: 28px; white-space: nowrap; font-family: Bungee, sans-serif; font-size: clamp(18px, 2vw, 28px); letter-spacing: .02em; }
    .ticker-line i { display: inline-grid; width: 12px; height: 12px; place-items: center; border: 2px solid currentColor; border-radius: 50%; font-style: normal; }
    .ticker-line span:nth-child(3n) { color: var(--cream); }
    @keyframes tickerMove { to { transform: translateX(-50%); } }

    .dark-section { position: relative; overflow: hidden; background: var(--night); }
    .light-section { position: relative; overflow: hidden; background: var(--cream); color: var(--ink); }
    .section-pad { padding: 136px 0; }
    .top-rule { border-top: 1px solid var(--line); }
    .light-section .top-rule { border-color: var(--dark-line); }

    .thesis-wrap { position: relative; display: grid; grid-template-columns: .86fr 1.14fr; align-items: center; gap: clamp(46px, 8vw, 120px); }
    .thesis-copy { position: relative; z-index: 1; }
    .thesis-copy .section-title { max-width: 600px; }
    .thesis-lede { max-width: 550px; margin: 28px 0 0; color: var(--cream); font-family: "Space Grotesk", sans-serif; font-size: clamp(23px, 3vw, 38px); font-weight: 600; line-height: 1.2; letter-spacing: -.04em; }
    .thesis-lede em { color: var(--yellow); font-style: normal; }
    .thesis-copy .body-copy { max-width: 500px; margin-top: 22px; }
    .thesis-link { display: inline-flex; align-items: center; gap: 10px; margin-top: 28px; color: var(--yellow); font-family: "Space Grotesk", sans-serif; font-size: 13px; font-weight: 700; text-transform: uppercase; }
    .thesis-link:hover span { transform: translateX(5px); }
    .thesis-link span { transition: transform .24s var(--ease); }
    .thesis-visual { position: relative; min-height: 570px; }
    .thesis-visual::before { position: absolute; top: 10%; right: 3%; width: 80%; height: 75%; border-radius: 50%; background: rgba(118, 85, 207, .34); filter: blur(50px); content: ""; }
    .visual-frame { position: absolute; top: 5%; right: 0; width: min(520px, 96%); padding: 10px; border: 1px solid rgba(255, 248, 236, .32); border-radius: 34px; background: rgba(255, 248, 236, .08); box-shadow: var(--shadow); transform: rotate(4deg); }
    .visual-frame img { width: 100%; border-radius: 26px; }
    .visual-label { position: absolute; right: -2%; bottom: 15%; padding: 14px 18px; border: 2px solid var(--ink); border-radius: 15px; background: var(--yellow); box-shadow: 5px 6px 0 rgba(23, 16, 45, .35); color: var(--ink); font-family: Bungee, sans-serif; font-size: 13px; transform: rotate(-7deg); }
    .visual-float { position: absolute; bottom: 11%; left: 2%; display: grid; width: 100px; height: 100px; place-items: center; border: 2px solid var(--ink); border-radius: 50%; background: var(--orange); box-shadow: 4px 7px 0 rgba(23, 16, 45, .3); color: var(--ink); font-size: 37px; transform: rotate(-12deg); }
    .visual-float::after { position: absolute; inset: 12px; border: 2px dashed rgba(23, 16, 45, .42); border-radius: 50%; content: ""; }
    .arrow-doodle { position: absolute; right: -3%; bottom: 2%; color: var(--lavender); font-family: "Space Grotesk", sans-serif; font-size: 13px; font-weight: 700; transform: rotate(-14deg); }
    .arrow-doodle::before { display: block; width: 70px; height: 28px; border-bottom: 2px solid currentColor; border-left: 2px solid currentColor; border-radius: 0 0 0 28px; content: ""; }
    .arrow-doodle::after { position: absolute; bottom: -2px; left: 0; width: 9px; height: 9px; border-bottom: 2px solid currentColor; border-left: 2px solid currentColor; transform: rotate(14deg); content: ""; }

    .bubbles { position: absolute; inset: 0; pointer-events: none; }
    .bubble { position: absolute; display: block; border: 1px solid rgba(255, 248, 236, .28); border-radius: 50%; background: rgba(255, 248, 236, .04); animation: bubbleUp var(--duration, 8s) ease-in-out infinite; }
    .bubble:nth-child(1) { top: 17%; left: 8%; width: 18px; height: 18px; --duration: 9s; }
    .bubble:nth-child(2) { top: 31%; right: 13%; width: 36px; height: 36px; --duration: 12s; animation-delay: -3s; }
    .bubble:nth-child(3) { top: 70%; left: 47%; width: 11px; height: 11px; --duration: 7s; animation-delay: -2s; }
    .bubble:nth-child(4) { top: 84%; right: 26%; width: 22px; height: 22px; --duration: 10s; animation-delay: -5s; }
    .bubble:nth-child(5) { top: 54%; left: 23%; width: 10px; height: 10px; --duration: 11s; animation-delay: -1s; }
    @keyframes bubbleUp { 0%, 100% { opacity: .3; transform: translateY(10px) scale(.9); } 50% { opacity: .8; transform: translateY(-24px) scale(1.08); } }

    .why-intro { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 52px; }
    .why-intro .body-copy { max-width: 360px; }
    .feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
    .feature-card { position: relative; min-height: 390px; overflow: hidden; padding: 28px; border: 2px solid var(--ink); border-radius: var(--radius-lg); background: var(--card-bg, var(--yellow)); box-shadow: 8px 10px 0 rgba(23, 16, 45, .14); color: var(--ink); transition: transform .35s var(--ease), box-shadow .35s ease; }
    .feature-card:hover { box-shadow: 14px 18px 0 rgba(23, 16, 45, .16); transform: translateY(-10px) rotate(var(--tilt, -1deg)); }
    .feature-card:nth-child(2) { --card-bg: #bba9fa; --tilt: 1deg; }
    .feature-card:nth-child(3) { --card-bg: #ff8d61; --tilt: -1deg; }
    .feature-card::before { position: absolute; right: -18%; bottom: -24%; width: 70%; aspect-ratio: 1; border: 22px solid rgba(255, 255, 255, .2); border-radius: 50%; content: ""; }
    .feature-number { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; font-family: "Space Grotesk", sans-serif; font-size: 13px; font-weight: 700; letter-spacing: .1em; }
    .feature-number::after { width: 9px; height: 9px; border-radius: 50%; background: var(--ink); content: ""; }
    .feature-icon { position: relative; z-index: 1; display: grid; height: 190px; place-items: center; font-size: 112px; line-height: 1; }
    .feature-image { position: relative; z-index: 1; height: 190px; margin: 18px -8px 20px; overflow: hidden; border: 2px solid var(--ink); border-radius: 18px; background: var(--purple); box-shadow: 5px 7px 0 rgba(23, 16, 45, .18); }
    .feature-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s var(--ease), filter .45s ease; }
    .feature-card:nth-child(3) .feature-image img { object-position: 50% 22%; }
    .feature-card:hover .feature-image img { filter: saturate(1.12); transform: scale(1.06); }
    .float-icon { position: relative; width: 190px; height: 105px; border: 14px solid var(--orange); border-radius: 50%; box-shadow: inset 0 0 0 3px var(--ink), 0 7px 0 rgba(23, 16, 45, .2); }
    .float-icon::after { position: absolute; top: 20px; left: 56px; width: 48px; height: 54px; border: 4px solid var(--ink); border-radius: 45%; background: var(--orange-deep); content: ""; }
    .wave-icon { position: relative; width: 172px; height: 114px; overflow: hidden; border: 4px solid var(--ink); border-radius: 48% 52% 42% 58%; background: var(--purple); transform: rotate(-5deg); }
    .wave-icon::before, .wave-icon::after { position: absolute; left: -10%; width: 120%; height: 32px; border: 4px solid var(--ink); border-radius: 50%; background: transparent; content: ""; }
    .wave-icon::before { top: 23px; }
    .wave-icon::after { top: 60px; }
    .community-icon { position: relative; display: flex; align-items: end; justify-content: center; width: 170px; height: 120px; }
    .community-icon span { position: relative; display: block; width: 73px; height: 73px; border: 4px solid var(--ink); border-radius: 50% 50% 45% 45%; background: var(--green); }
    .community-icon span::before, .community-icon span::after { position: absolute; top: -18px; width: 25px; height: 25px; border: 4px solid var(--ink); border-radius: 50%; background: var(--green); content: ""; }
    .community-icon span::before { left: 3px; }
    .community-icon span::after { right: 3px; }
    .feature-card h3 { position: relative; z-index: 1; margin: 0 0 8px; font-family: Bungee, sans-serif; font-size: 25px; font-weight: 400; letter-spacing: -.04em; }
    .feature-card p { position: relative; z-index: 1; max-width: 210px; margin: 0; color: rgba(23, 16, 45, .7); font-size: 15px; line-height: 1.5; }

    .buy-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(52px, 9vw, 140px); align-items: start; }
    .buy-heading { position: sticky; top: 130px; }
    .buy-heading .section-title { max-width: 430px; }
    .buy-heading .body-copy { max-width: 360px; margin-top: 24px; }
    .buy-steps { display: grid; gap: 13px; }
    .buy-step { position: relative; display: grid; grid-template-columns: 76px 1fr; gap: 20px; align-items: center; padding: 22px; border: 1px solid rgba(255, 248, 236, .2); border-radius: 22px; background: rgba(255, 248, 236, .06); transition: transform .3s var(--ease), background .3s ease; }
    .buy-step:hover { background: rgba(255, 201, 93, .1); transform: translateX(8px); }
    .step-index { display: grid; width: 62px; height: 62px; place-items: center; border-radius: 19px; background: var(--yellow); color: var(--ink); font-family: Bungee, sans-serif; font-size: 18px; }
    .buy-step:nth-child(2) .step-index { background: var(--lavender); }
    .buy-step:nth-child(3) .step-index { background: var(--orange); }
    .buy-step h3 { margin: 0 0 5px; color: var(--cream); font-family: "Space Grotesk", sans-serif; font-size: 20px; }
    .buy-step p { margin: 0; color: rgba(255, 248, 236, .62); font-size: 14px; line-height: 1.5; }
    .address-box { display: grid; grid-template-columns: 1fr auto; gap: 16px; align-items: center; margin-top: 24px; padding: 18px 20px; border: 1px solid rgba(255, 248, 236, .22); border-radius: 22px; background: rgba(255, 248, 236, .08); }
    .address-label { display: block; margin-bottom: 8px; color: rgba(255, 248, 236, .5); font-family: "Space Grotesk", sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
    .address-value { display: block; overflow: hidden; color: var(--cream); font-family: "Space Grotesk", sans-serif; font-size: 14px; font-weight: 600; text-overflow: ellipsis; white-space: nowrap; }
    .copy-button { display: inline-flex; align-items: center; gap: 8px; min-height: 42px; padding: 0 15px; border: 1px solid rgba(255, 248, 236, .3); border-radius: 999px; background: transparent; color: var(--cream); font-family: "Space Grotesk", sans-serif; font-size: 11px; font-weight: 700; text-transform: uppercase; cursor: pointer; transition: background .2s ease, color .2s ease; }
    .copy-button:hover { background: var(--yellow); color: var(--ink); }
    .buy-cta { width: fit-content; margin-top: 22px; background: var(--orange); color: var(--ink); }

    .floatomics-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 54px; }
    .floatomics-head .body-copy { max-width: 320px; }
    .token-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
    .token-card { min-height: 176px; padding: 22px; border: 2px solid var(--ink); border-radius: 22px; background: var(--paper); box-shadow: 5px 7px 0 rgba(23, 16, 45, .1); color: var(--ink); transform: rotate(var(--rotate, 0deg)); transition: transform .3s var(--ease), box-shadow .3s ease; }
    .token-card:hover { box-shadow: 8px 12px 0 rgba(23, 16, 45, .14); transform: translateY(-7px) rotate(0deg); }
    .token-card:nth-child(2) { --rotate: 1.4deg; background: var(--yellow); }
    .token-card:nth-child(3) { --rotate: -1.5deg; background: var(--lavender); }
    .token-card:nth-child(4) { --rotate: 1.1deg; background: var(--orange); }
    .token-card:nth-child(5) { --rotate: -1deg; background: var(--green); }
    .token-card small { display: block; margin-bottom: 25px; color: rgba(23, 16, 45, .56); font-family: "Space Grotesk", sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
    .token-card strong { display: block; font-family: Bungee, sans-serif; font-size: clamp(19px, 2.2vw, 28px); font-weight: 400; letter-spacing: -.045em; line-height: 1; }

    .shill-section { background: var(--purple); }
    .shill-section::before { position: absolute; top: -30%; right: -8%; width: 520px; height: 520px; border: 1px solid rgba(255, 248, 236, .17); border-radius: 50%; box-shadow: 0 0 0 50px rgba(255, 248, 236, .025), 0 0 0 100px rgba(255, 248, 236, .025); content: ""; }
    .shill-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 46px; }
    .shill-head .body-copy { max-width: 350px; }
    .shill-marquee { position: relative; overflow: hidden; margin-inline: calc((100vw - min(1180px, calc(100% - 48px))) / -2); }
    .shill-track { display: flex; width: max-content; animation: shillMove 56s linear infinite; }
    .shill-marquee:hover .shill-track { animation-play-state: paused; }
    .quote-card { display: flex; flex: 0 0 330px; flex-direction: column; justify-content: space-between; min-height: 245px; margin-right: 15px; padding: 23px; border: 2px solid var(--ink); border-radius: 24px; background: var(--cream); box-shadow: 8px 9px 0 rgba(23, 16, 45, .22); color: var(--ink); transform: rotate(var(--rotate, -1deg)); }
    .quote-card:nth-child(2n) { --rotate: 1.2deg; background: var(--yellow); }
    .quote-card:nth-child(3n) { --rotate: -.6deg; background: var(--lavender); }
    .quote-card:nth-child(4n) { --rotate: .8deg; background: var(--orange); }
    .quote-mark { color: var(--orange-deep); font-family: Georgia, serif; font-size: 48px; line-height: .7; }
    .quote-card p { margin: 12px 0 24px; font-family: "Space Grotesk", sans-serif; font-size: 21px; font-weight: 600; letter-spacing: -.04em; line-height: 1.12; }
    .quote-actions { display: flex; gap: 8px; }
    .quote-actions button, .quote-actions a { display: inline-flex; align-items: center; justify-content: center; min-height: 37px; padding: 0 12px; border: 1px solid rgba(23, 16, 45, .32); border-radius: 999px; background: transparent; color: var(--ink); font-family: "Space Grotesk", sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; cursor: pointer; transition: background .2s ease, color .2s ease; }
    .quote-actions button:hover, .quote-actions a:hover { background: var(--ink); color: var(--cream); }
    @keyframes shillMove { to { transform: translateX(-50%); } }

    .meme-section { background: var(--ink); }
    .meme-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 45px; }
    .meme-head .body-copy { max-width: 270px; }
    .meme-gallery { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 86px; gap: 14px; }
    .meme-tile { position: relative; overflow: hidden; min-height: 180px; padding: 0; border: 2px solid rgba(255, 248, 236, .55); border-radius: 23px; background: var(--night-2); cursor: pointer; isolation: isolate; }
    .meme-tile:nth-child(1) { grid-column: span 5; grid-row: span 5; }
    .meme-tile:nth-child(2) { grid-column: span 3; grid-row: span 3; }
    .meme-tile:nth-child(3) { grid-column: span 4; grid-row: span 4; }
    .meme-tile:nth-child(4) { grid-column: span 3; grid-row: span 4; }
    .meme-tile:nth-child(5) { grid-column: span 4; grid-row: span 3; }
    .meme-tile:nth-child(6) { grid-column: span 5; grid-row: span 4; }
    .meme-tile:nth-child(7) { grid-column: span 4; grid-row: span 3; }
    .meme-tile:nth-child(8) { grid-column: span 3; grid-row: span 4; }
    .meme-tile:nth-child(9) { grid-column: span 5; grid-row: span 4; }
    .meme-tile:nth-child(10) { grid-column: span 3; grid-row: span 4; }
    .meme-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease), filter .55s ease; }
    .meme-tile:nth-child(2) img { object-position: 71% 24%; filter: saturate(1.15) hue-rotate(12deg); }
    .meme-tile:nth-child(3) img { object-position: 20% 78%; filter: saturate(1.18) contrast(1.04); }
    .meme-tile:nth-child(4) img { object-position: 80% 68%; filter: hue-rotate(-16deg) saturate(1.24); }
    .meme-tile:nth-child(5) img { object-position: 48% 12%; filter: saturate(1.1) brightness(1.04); }
    .meme-tile:nth-child(6) img { object-position: 51% 84%; filter: hue-rotate(18deg) saturate(1.16); }
    .meme-tile:nth-child(7) img { object-position: 29% 52%; filter: contrast(1.08) saturate(1.2); }
    .meme-tile:nth-child(8) img { object-position: 87% 88%; filter: hue-rotate(-27deg) saturate(1.16); }
    .meme-tile::after { position: absolute; z-index: 1; inset: 0; background: linear-gradient(180deg, transparent 48%, rgba(23, 16, 45, .7) 100%); content: ""; pointer-events: none; }
    .meme-tile:hover img { filter: saturate(1.4) contrast(1.1); transform: scale(1.08) rotate(1.5deg); }
    .meme-caption { position: absolute; z-index: 2; right: 17px; bottom: 15px; left: 17px; display: flex; align-items: end; justify-content: space-between; gap: 10px; color: var(--cream); font-family: "Space Grotesk", sans-serif; font-size: 13px; font-weight: 700; text-align: left; }
    .meme-caption span:last-child { display: grid; width: 30px; height: 30px; flex: 0 0 auto; place-items: center; border: 1px solid rgba(255, 248, 236, .5); border-radius: 50%; font-size: 16px; }

    .community-section { position: relative; min-height: 650px; overflow: hidden; background: linear-gradient(135deg, var(--orange-deep), #e86e66 32%, #6742aa 100%); }
    .community-section::before { position: absolute; top: -180px; right: -100px; width: 650px; height: 650px; border: 1px solid rgba(255, 248, 236, .28); border-radius: 50%; box-shadow: 0 0 0 45px rgba(255, 248, 236, .05), 0 0 0 90px rgba(255, 248, 236, .05), 0 0 0 135px rgba(255, 248, 236, .05); content: ""; }
    .community-layout { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr .9fr; align-items: center; min-height: 650px; gap: 40px; }
    .community-title { max-width: 720px; color: var(--cream); font-size: clamp(48px, 8vw, 108px); }
    .community-copy { max-width: 440px; margin: 24px 0 0; color: rgba(255, 248, 236, .82); font-size: 18px; line-height: 1.65; }
    .community-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
    .community-actions .pill-button { background: var(--ink); }
    .community-actions .outline-button { border-color: rgba(255, 248, 236, .6); }
    .community-art { position: relative; display: grid; min-height: 500px; place-items: center; }
    .community-art::before { position: absolute; width: 390px; height: 230px; border: 30px solid rgba(255, 201, 93, .9); border-radius: 50%; box-shadow: inset 0 0 0 3px var(--ink), 0 15px 0 rgba(23, 16, 45, .2); content: ""; transform: rotate(-8deg); }
    .community-art img { position: relative; z-index: 1; width: min(430px, 90%); border: 6px solid var(--ink); border-radius: 36px; box-shadow: 11px 15px 0 rgba(23, 16, 45, .28); transform: rotate(5deg); }
    .community-sticker { position: absolute; z-index: 2; top: 11%; left: 3%; display: grid; width: 100px; height: 100px; place-items: center; border: 3px solid var(--ink); border-radius: 50%; background: var(--green); box-shadow: 5px 6px 0 rgba(23, 16, 45, .23); color: var(--ink); font-family: Bungee, sans-serif; font-size: 12px; text-align: center; transform: rotate(-12deg); }

    .site-footer { padding: 75px 0 30px; background: #130c29; color: var(--cream); }
    .footer-top { display: flex; align-items: start; justify-content: space-between; gap: 40px; padding-bottom: 66px; }
    .footer-brand { max-width: 300px; }
    .footer-brand .brand { color: var(--cream); font-size: 21px; }
    .footer-brand .brand-image { width: 45px; height: 45px; border-color: var(--cream); }
    .footer-brand p { margin: 19px 0 0; color: rgba(255, 248, 236, .56); font-size: 14px; line-height: 1.6; }
    .footer-links { display: grid; grid-template-columns: repeat(2, minmax(110px, 1fr)); gap: 9px 48px; font-family: "Space Grotesk", sans-serif; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
    .footer-links a { color: rgba(255, 248, 236, .62); transition: color .2s ease; }
    .footer-links a:hover { color: var(--yellow); }
    .footer-social { display: flex; gap: 9px; }
    .footer-bottom { display: flex; align-items: end; justify-content: space-between; gap: 30px; padding-top: 24px; border-top: 1px solid rgba(255, 248, 236, .13); }
    .footer-bottom p { max-width: 500px; margin: 0; color: rgba(255, 248, 236, .42); font-size: 12px; line-height: 1.55; }
    .copyright { color: rgba(255, 248, 236, .5); font-family: "Space Grotesk", sans-serif; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }

    .reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .hero .reveal { opacity: 1; transform: none; }
    .toast { position: fixed; z-index: 50; right: 20px; bottom: 20px; padding: 13px 17px; border: 1px solid rgba(255, 248, 236, .22); border-radius: 999px; background: var(--ink); box-shadow: var(--shadow); color: var(--cream); font-family: "Space Grotesk", sans-serif; font-size: 12px; font-weight: 700; opacity: 0; pointer-events: none; transform: translateY(15px); transition: opacity .25s ease, transform .25s ease; }
    .toast.show { opacity: 1; transform: translateY(0); }
    .lightbox { position: fixed; z-index: 40; inset: 0; display: grid; place-items: center; padding: 36px; background: rgba(14, 8, 30, .88); opacity: 0; pointer-events: none; transition: opacity .25s ease; }
    .lightbox.open { opacity: 1; pointer-events: auto; }
    .lightbox img { max-width: min(900px, 94vw); max-height: 88vh; border: 3px solid var(--cream); border-radius: 24px; box-shadow: 0 28px 90px rgba(0, 0, 0, .45); }
    .lightbox-close { position: absolute; top: 20px; right: 24px; display: grid; width: 45px; height: 45px; place-items: center; border: 1px solid rgba(255, 248, 236, .55); border-radius: 50%; background: transparent; color: var(--cream); font-size: 26px; cursor: pointer; }
    :focus-visible { outline: 3px solid var(--yellow); outline-offset: 4px; }

    @media (max-width: 1050px) {
      .nav-links { gap: 17px; }
      .nav-cta { padding-inline: 16px; }
      .hero-grid { gap: 15px; }
      .hero-image-frame { right: -10%; width: min(590px, 110%); }
      .token-grid { grid-template-columns: repeat(3, 1fr); }
    }
    @media (max-width: 850px) {
      .site-header { padding-inline: 14px; }
      .nav-shell { padding-left: 14px; }
      .nav-links { position: absolute; top: 71px; right: 0; left: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 10px; border: 1px solid rgba(255, 255, 255, .5); border-radius: 24px; background: rgba(255, 249, 241, .98); box-shadow: var(--shadow); color: var(--ink); }
      .nav-links.open,
      .site-header.menu-open .nav-links { display: flex; }
      .nav-links a { padding: 14px 16px; border-radius: 14px; }
      .nav-links a:hover { background: var(--lilac); }
      .menu-button { display: grid; place-items: center; }
      .nav-cta { display: none; }
      .scrolled .nav-links { background: rgba(32, 18, 61, .97); color: var(--cream); }
      .hero { min-height: auto; }
      .hero-grid { grid-template-columns: 1fr; min-height: auto; padding-top: 145px; }
      .hero-copy { max-width: 650px; }
      .hero-art { min-height: 610px; margin-top: -10px; }
      .hero-image-frame { right: 0; left: 7%; width: 88%; margin-inline: auto; }
      .scroll-note { display: none; }
      .thesis-wrap, .buy-layout, .community-layout { grid-template-columns: 1fr; }
      .thesis-visual { min-height: 560px; margin-top: 10px; }
      .buy-heading { position: static; }
      .buy-steps { max-width: 680px; }
      .community-layout { padding: 110px 0 70px; }
      .community-art { min-height: 460px; }
      .footer-top { flex-wrap: wrap; }
    }
    @media (max-width: 620px) {
      .container { width: min(100% - 32px, 480px); }
      .section-pad { padding: 88px 0; }
      .hero-grid { padding-top: 122px; padding-bottom: 30px; }
      .hero-title { font-size: clamp(57px, 17vw, 96px); }
      .hero-tagline { font-size: 23px; }
      .hero-subtitle { font-size: 15px; }
      .hero-actions { display: grid; grid-template-columns: 1fr; }
      .hero-actions a { width: 100%; }
      .hero-stats { gap: 6px; margin-top: 30px; }
      .hero-stat { padding: 12px 10px; }
      .hero-stat small { font-size: 8px; letter-spacing: .1em; }
      .hero-stat strong { font-size: 12px; }
      .hero-art { min-height: 385px; margin-top: 0; }
       .hero-image-frame { top: 8px; right: 0; left: 0; width: 100%; aspect-ratio: .95; }
      .hero-image-frame::after { border-radius: 23px; }
      .hero-image-frame img { border-radius: 23px; }
      .sticker-sun { right: -2%; width: 64px; height: 64px; font-size: 9px; }
      .sticker-float { right: 2%; bottom: 3%; width: 98px; height: 46px; font-size: 9px; }
      .sticker-frog { bottom: 9%; left: -4%; width: 54px; height: 54px; font-size: 18px; }
      .ticker-line { min-height: 56px; gap: 18px; padding-right: 18px; font-size: 17px; }
      .thesis-wrap { gap: 24px; }
      .thesis-lede { font-size: 25px; }
      .thesis-visual { min-height: 370px; }
      .visual-frame { top: 5%; width: 93%; }
      .visual-label { right: -1%; bottom: 12%; padding: 11px 13px; font-size: 10px; }
      .visual-float { bottom: 5%; left: -2%; width: 75px; height: 75px; font-size: 27px; }
      .why-intro, .floatomics-head, .shill-head, .meme-head { display: block; margin-bottom: 30px; }
      .why-intro .body-copy, .floatomics-head .body-copy, .shill-head .body-copy, .meme-head .body-copy { margin-top: 18px; }
      .feature-grid { grid-template-columns: 1fr; gap: 13px; }
      .feature-card { min-height: 310px; padding: 23px; }
       .feature-icon { height: 125px; font-size: 80px; }
       .feature-image { height: 165px; margin-top: 14px; margin-bottom: 17px; }
      .float-icon { width: 155px; height: 82px; border-width: 11px; }
      .float-icon::after { top: 14px; left: 47px; width: 40px; height: 43px; }
      .wave-icon { width: 140px; height: 92px; }
      .community-icon { height: 92px; }
      .token-grid { grid-template-columns: repeat(2, 1fr); gap: 9px; }
      .token-card { min-height: 142px; padding: 17px; }
      .token-card small { margin-bottom: 20px; font-size: 9px; }
      .token-card strong { font-size: 19px; }
      .buy-step { grid-template-columns: 55px 1fr; gap: 14px; padding: 16px; }
      .step-index { width: 50px; height: 50px; border-radius: 15px; font-size: 14px; }
      .buy-step h3 { font-size: 17px; }
      .address-box { grid-template-columns: 1fr; gap: 13px; }
      .address-box .copy-button { width: 100%; }
      .quote-card { flex-basis: 280px; min-height: 220px; }
      .quote-card p { font-size: 19px; }
      .meme-gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; gap: 9px; }
      .meme-tile:nth-child(n) { grid-column: span 1; grid-row: span 2; min-height: 0; }
      .meme-tile:nth-child(1), .meme-tile:nth-child(6) { grid-row: span 3; }
      .meme-caption { right: 11px; bottom: 10px; left: 11px; font-size: 11px; }
      .meme-caption span:last-child { width: 26px; height: 26px; font-size: 14px; }
      .community-section { min-height: auto; }
      .community-layout { min-height: auto; padding: 88px 0 42px; }
      .community-art { min-height: 340px; margin-top: 10px; }
      .community-art::before { width: 290px; height: 170px; border-width: 22px; }
      .community-art img { width: 90%; border-radius: 24px; }
      .community-sticker { top: 4%; left: 0; width: 78px; height: 78px; font-size: 10px; }
      .footer-top { display: block; padding-bottom: 42px; }
      .footer-links { margin-top: 34px; gap: 14px 28px; }
      .footer-social { margin-top: 28px; }
      .footer-bottom { display: block; }
      .copyright { display: block; margin-top: 19px; }
      .lightbox { padding: 18px; }
    }
    @media (max-width: 360px) {
       .brand { font-size: 17px; }
      .hero-stat strong { font-size: 11px; }
      .feature-card h3 { font-size: 22px; }
    }
