    :root {
      --ink: #070a0f;
      --midnight: #081522;
      --deep-blue: #0b2a3b;
      --teal-smoke: #23535a;
      --cream: #f7e7c8;
      --gold: #f6b34b;
      --sunburst: #ff7a21;
      --red: #d9281f;
      --red-dark: #8f1514;
      --white: #fff8ec;
      --muted: rgba(255, 248, 236, 0.72);
      --glass: rgba(8, 21, 34, 0.72);
      --border: rgba(247, 231, 200, 0.18);
      --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
      --poster-img: url("assets/lets-rock-and-roll.jpeg");
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--white);
      background:
        radial-gradient(circle at 20% 5%, rgba(255, 122, 33, 0.18), transparent 30rem),
        radial-gradient(circle at 86% 12%, rgba(35, 83, 90, 0.42), transparent 32rem),
        linear-gradient(180deg, #05070a 0%, var(--midnight) 42%, #0d0908 100%);
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 999;
      opacity: 0.13;
      background-image:
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
      background-size: 4px 4px;
      mix-blend-mode: overlay;
    }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }
    section { position: relative; }

    .container {
      width: min(1180px, calc(100% - 32px));
      margin-inline: auto;
    }

    .title {
      font-family: "Bebas Neue", Impact, sans-serif;
      letter-spacing: 0.055em;
      line-height: 0.93;
      text-transform: uppercase;
    }

    .small-caps {
      text-transform: uppercase;
      letter-spacing: 0.22em;
      font-weight: 900;
      font-size: 0.78rem;
    }

    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 50;
      backdrop-filter: blur(18px);
      background: linear-gradient(180deg, rgba(5, 7, 10, 0.9), rgba(5, 7, 10, 0.62));
      border-bottom: 1px solid var(--border);
    }

    .nav-wrap {
      min-height: 74px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 22px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 900;
    }

    .pick-logo {
      width: 40px;
      height: 40px;
      display: grid;
      place-items: center;
      color: #170603;
      font-weight: 900;
      background: linear-gradient(145deg, var(--gold), var(--sunburst) 54%, var(--red));
      border-radius: 62% 38% 55% 45% / 52% 43% 57% 48%;
      box-shadow: 0 0 26px rgba(255, 122, 33, 0.45);
      transform: rotate(-12deg);
    }

    .brand-name { font-size: 1.65rem; }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 26px;
      color: var(--muted);
      font-size: 0.94rem;
      font-weight: 800;
    }

    .nav-links a { transition: color 0.2s ease, transform 0.2s ease; }
    .nav-links a:hover { color: var(--gold); transform: translateY(-1px); }

    .button-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 48px;
      padding: 0 20px;
      border-radius: 999px;
      font-weight: 900;
      border: 1px solid transparent;
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
      transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
      cursor: pointer;
      white-space: nowrap;
    }

    .btn:hover { transform: translateY(-2px) scale(1.015); box-shadow: 0 18px 42px rgba(0,0,0,0.34); }
    .btn-primary {
      background: linear-gradient(135deg, var(--red), var(--sunburst));
      color: var(--white);
      text-shadow: 0 1px 0 rgba(0,0,0,0.35);
      box-shadow: 0 0 34px rgba(217, 40, 31, 0.38), 0 16px 34px rgba(0, 0, 0, 0.32);
    }
    .btn-secondary {
      background: rgba(247, 231, 200, 0.08);
      border-color: var(--border);
      color: var(--cream);
    }
    .btn-gold {
      background: linear-gradient(135deg, var(--gold), #ffe0a3);
      color: #1f0a04;
    }

    .mobile-toggle {
      display: none;
      background: rgba(255,255,255,0.08);
      color: var(--cream);
      border: 1px solid var(--border);
      width: 46px;
      height: 46px;
      border-radius: 14px;
      font-size: 1.3rem;
      cursor: pointer;
    }

    .hero {
      min-height: 100svh;
      padding: 124px 0 80px;
      isolation: isolate;
      overflow: hidden;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -3;
      background: var(--poster-img) center / cover no-repeat;
      opacity: 0.38;
      filter: saturate(1.1) contrast(1.05);
      transform: scale(1.03);
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -2;
      background:
        linear-gradient(90deg, rgba(5,7,10,0.96) 0%, rgba(5,7,10,0.72) 43%, rgba(5,7,10,0.35) 100%),
        radial-gradient(circle at 55% 30%, rgba(255, 122, 33, 0.21), transparent 26rem),
        linear-gradient(180deg, rgba(5,7,10,0.28), #05070a 100%);
    }

    .stage-light {
      position: absolute;
      z-index: -1;
      width: 48rem;
      height: 48rem;
      border-radius: 999px;
      background: radial-gradient(circle, rgba(246, 179, 75, 0.24), transparent 62%);
      top: 8%;
      right: -15rem;
      filter: blur(16px);
      animation: pulse 5s ease-in-out infinite;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.8fr);
      align-items: center;
      gap: clamp(36px, 7vw, 76px);
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 9px 13px;
      background: rgba(247, 231, 200, 0.08);
      border: 1px solid var(--border);
      border-radius: 999px;
      color: var(--gold);
      margin-bottom: 24px;
    }

    .hero h1 {
      margin: 0;
      font-size: clamp(4.6rem, 11vw, 10rem);
      text-shadow: 0 7px 0 rgba(0,0,0,0.26), 0 0 36px rgba(217, 40, 31, 0.22);
    }

    .hero h1 .hot {
      color: var(--gold);
      display: block;
    }

    .hero-copy {
      margin: 24px 0 0;
      max-width: 680px;
      color: var(--muted);
      font-size: clamp(1.04rem, 2vw, 1.3rem);
      line-height: 1.7;
    }

    .hero-stats {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      margin: 32px 0;
      max-width: 660px;
    }

    .mini-card,
    .card {
      background: linear-gradient(180deg, rgba(247, 231, 200, 0.12), rgba(247, 231, 200, 0.045));
      border: 1px solid var(--border);
      border-radius: 24px;
      box-shadow: var(--shadow);
      backdrop-filter: blur(12px);
    }

    .mini-card { padding: 16px; }
    .mini-card strong {
      display: block;
      color: var(--cream);
      font-size: 1.08rem;
      margin-bottom: 4px;
    }
    .mini-card span { color: var(--muted); font-size: 0.82rem; font-weight: 800; }

    .contract-box {
      width: min(680px, 100%);
      margin-top: 22px;
      display: flex;
      align-items: stretch;
      gap: 10px;
      padding: 10px;
      border: 1px solid rgba(246, 179, 75, 0.22);
      border-radius: 22px;
      background: rgba(5, 7, 10, 0.58);
    }

    .contract-box input {
      flex: 1;
      min-width: 0;
      border: 0;
      outline: 0;
      padding: 0 12px;
      border-radius: 15px;
      background: rgba(255,255,255,0.08);
      color: var(--cream);
      font-weight: 800;
      font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    }

    .copy-btn {
      border: 0;
      min-width: 112px;
    }

    .poster-card {
      position: relative;
      padding: 12px;
      border-radius: 34px;
      background: linear-gradient(145deg, rgba(246, 179, 75, 0.78), rgba(217, 40, 31, 0.75), rgba(11, 42, 59, 0.75));
      box-shadow: 0 0 80px rgba(255, 122, 33, 0.22), var(--shadow);
      transform: rotate(1.2deg);
      animation: float 4.5s ease-in-out infinite;
    }

    .poster-card img {
      border-radius: 25px;
      aspect-ratio: 1 / 1;
      object-fit: cover;
      border: 1px solid rgba(255,255,255,0.18);
    }

    .poster-stamp {
      position: absolute;
      left: -18px;
      bottom: 34px;
      transform: rotate(-10deg);
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 12px 18px;
      border-radius: 999px;
      background: var(--red);
      color: var(--white);
      font-weight: 900;
      box-shadow: 0 18px 34px rgba(0,0,0,0.32);
      border: 2px solid rgba(247,231,200,0.38);
    }

    .section-pad { padding: 92px 0; }

    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 34px;
    }

    .section-head h2 {
      font-size: clamp(3.3rem, 8vw, 6.6rem);
      margin: 0;
    }

    .section-head p {
      max-width: 520px;
      margin: 0;
      color: var(--muted);
      line-height: 1.7;
    }

    .token-grid,
    .roadmap-grid,
    .buy-grid {
      display: grid;
      gap: 18px;
    }

    .token-grid { grid-template-columns: repeat(4, 1fr); }
    .buy-grid { grid-template-columns: repeat(3, 1fr); }
    .roadmap-grid { grid-template-columns: repeat(4, 1fr); }

    .card {
      position: relative;
      overflow: hidden;
      padding: 26px;
    }

    .card::before {
      content: "";
      position: absolute;
      inset: 0 0 auto;
      height: 4px;
      background: linear-gradient(90deg, var(--red), var(--gold));
    }

    .card .icon {
      width: 52px;
      height: 52px;
      display: grid;
      place-items: center;
      border-radius: 18px;
      margin-bottom: 18px;
      background: rgba(246, 179, 75, 0.13);
      font-size: 1.6rem;
    }

    .card h3 {
      margin: 0 0 10px;
      font-size: 1.25rem;
    }

    .card p {
      margin: 0;
      color: var(--muted);
      line-height: 1.65;
    }

    .token-value {
      display: block;
      font-family: "Bebas Neue", Impact, sans-serif;
      letter-spacing: 0.05em;
      font-size: clamp(2rem, 3vw, 3rem);
      color: var(--gold);
      margin-top: 8px;
    }

    .about {
      background:
        linear-gradient(180deg, rgba(247, 231, 200, 0.06), transparent),
        radial-gradient(circle at 15% 40%, rgba(217, 40, 31, 0.2), transparent 26rem);
    }

    .about-grid {
      display: grid;
      grid-template-columns: 0.83fr 1.17fr;
      gap: clamp(28px, 6vw, 66px);
      align-items: center;
    }

    .about-art {
      min-height: 460px;
      border-radius: 34px;
      background:
        linear-gradient(180deg, rgba(5,7,10,0.05), rgba(5,7,10,0.7)),
        var(--poster-img) center / cover no-repeat;
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
    }

    .about-art::after {
      content: "ON TOUR NEAR YOU";
      position: absolute;
      right: 22px;
      bottom: 24px;
      padding: 12px 16px;
      border: 2px solid rgba(247,231,200,0.5);
      border-radius: 12px;
      font-family: "Bebas Neue", Impact, sans-serif;
      letter-spacing: 0.14em;
      font-size: 2rem;
      color: var(--cream);
      transform: rotate(-2deg);
      background: rgba(217, 40, 31, 0.78);
    }

    .about-copy h2 { font-size: clamp(3.2rem, 7vw, 6rem); margin: 0; }
    .about-copy p { color: var(--muted); line-height: 1.75; font-size: 1.05rem; }

    .check-list {
      display: grid;
      gap: 12px;
      padding: 0;
      margin: 26px 0 0;
      list-style: none;
    }

    .check-list li {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 13px 16px;
      border: 1px solid var(--border);
      border-radius: 16px;
      background: rgba(247, 231, 200, 0.06);
      font-weight: 800;
    }

    .step-number {
      font-family: "Bebas Neue", Impact, sans-serif;
      color: var(--gold);
      font-size: 3.4rem;
      line-height: 1;
    }

    .cta {
      padding: 92px 0;
      text-align: center;
      overflow: hidden;
      background:
        radial-gradient(circle at 50% 0%, rgba(246,179,75,0.3), transparent 25rem),
        linear-gradient(135deg, var(--red-dark), var(--red), var(--sunburst));
    }

    .cta h2 {
      margin: 0;
      font-size: clamp(4rem, 10vw, 9rem);
      text-shadow: 0 7px 0 rgba(0,0,0,0.22);
    }

    .cta p {
      margin: 18px auto 28px;
      max-width: 700px;
      color: rgba(255,248,236,0.86);
      line-height: 1.7;
      font-weight: 700;
    }

    footer {
      padding: 34px 0;
      background: #050505;
      color: rgba(255,248,236,0.55);
      text-align: center;
      border-top: 1px solid var(--border);
    }

    footer p { margin: 7px 0; }

    .reveal {
      opacity: 0;
      transform: translateY(34px);
      transition: opacity 0.75s ease, transform 0.75s ease;
    }
    .reveal.show { opacity: 1; transform: translateY(0); }

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

    @keyframes pulse {
      0%, 100% { opacity: 0.8; transform: scale(1); }
      50% { opacity: 1; transform: scale(1.06); }
    }

    @media (max-width: 980px) {
      .hero-grid, .about-grid { grid-template-columns: 1fr; }
      .poster-card { max-width: 560px; margin-inline: auto; }
      .section-head { display: block; }
      .section-head p { margin-top: 12px; }
      .token-grid, .roadmap-grid { grid-template-columns: repeat(2, 1fr); }
      .buy-grid { grid-template-columns: 1fr; }
    }

    @media (max-width: 760px) {
      .mobile-toggle { display: inline-grid; place-items: center; }
      .nav-links {
        position: absolute;
        top: 74px;
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
        background: rgba(5, 7, 10, 0.94);
        border: 1px solid var(--border);
        border-radius: 20px;
      }
      .nav-links.open { display: flex; }
      .nav-links a { padding: 12px; }
      .site-header .btn-primary { display: none; }
      .hero { padding-top: 112px; }
      .hero-stats { grid-template-columns: 1fr; }
      .contract-box { flex-direction: column; }
      .contract-box input { min-height: 48px; }
      .token-grid, .roadmap-grid { grid-template-columns: 1fr; }
      .about-art { min-height: 340px; }
      .poster-stamp { left: 12px; bottom: 18px; }
    }