
      :root {
        --bg: #09090d;
        --bg-soft: #121218;
        --panel: rgba(18, 18, 24, 0.9);
        --panel-strong: #17191f;
        --border: rgba(255, 255, 255, 0.08);
        --text: #f5f1f6;
        --muted: #b7b2bb;
        --soft: #e8d4e7;
        --pink: #F600FF;
        --pink-deep: #F600FF;
        --pink-soft: #F600FF;
        --gold: #f6d9b1;
        --green: #b7f0d6;
        --shadow: rgba(0, 0, 0, 0.38);
      }

      * { box-sizing: border-box; }

      html {
        scroll-behavior: smooth;
      }

      body {
        margin: 0;
        font-family: Inter, "Segoe UI", sans-serif;
        background:
          radial-gradient(circle at top left, rgba(255, 125, 183, 0.12), transparent 28%),
          radial-gradient(circle at 80% 20%, rgba(255, 125, 183, 0.10), transparent 24%),
          var(--bg);
        color: var(--text);
      }

      img { max-width: 100%; display: block; }

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

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

      .topbar {
        position: sticky;
        top: 0;
        z-index: 20;
        backdrop-filter: blur(14px);
        background: rgba(9, 9, 13, 0.68);
        border-bottom: 1px solid var(--border);
      }

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

      .brand {
        display: flex;
        align-items: center;
        gap: 12px;
        font-weight: 700;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        font-size: 0.76rem;
      }

      .brand-mark {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--pink), #F600FF);
        box-shadow: 0 0 22px rgba(246, 0, 255, 0.45);
        position: relative;
      }

      .brand-mark::after {
        content: "";
        position: absolute;
        inset: 8px;
        border-radius: 50%;
        background: rgba(9, 9, 13, 0.6);
      }

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

      .nav-cta {
        border: 1px solid rgba(246, 0, 255, 0.32);
        background: rgba(246, 0, 255, 0.1);
        color: var(--text);
        padding: 10px 18px;
        border-radius: 999px;
        font-weight: 600;
      }

      .hero {
        padding: 72px 0 48px;
      }

      .hero-grid {
        display: grid;
        grid-template-columns: 1.3fr 0.9fr;
        align-items: center;
        gap: 18px;
      }

      .eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid var(--border);
        border-radius: 999px;
        padding: 8px 14px;
        color: var(--soft);
        font-size: 0.72rem;
        letter-spacing: 0.16em;
        text-transform: uppercase;
      }

      .eyebrow::before {
        content: "";
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--pink);
        box-shadow: 0 0 16px rgba(246, 0, 255, 0.8);
      }

      h1 {
        margin: 28px 0 18px;
        font-size: clamp(3.3rem, 7vw, 7rem);
        line-height: 0.9;
        letter-spacing: -0.07em;
        font-weight: 800;
      }

      .headline-accent {
        color: var(--pink);
      }

      .subhead {
        max-width: 600px;
        color: var(--muted);
        font-size: 1.06rem;
        line-height: 1.7;
      }

      .hero-actions {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-top: 32px;
      }

      .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 54px;
        padding: 0 22px;
        border-radius: 999px;
        font-weight: 700;
        transition: transform 0.2s ease, border-color 0.2s ease;
      }

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

      .btn-primary {
        background: linear-gradient(135deg, var(--pink), #ffb7d5);
        color: #130d14;
        box-shadow: 0 14px 30px rgba(255, 125, 183, 0.25);
      }

      .btn-secondary {
        border: 1px solid var(--border);
        color: var(--text);
        background: rgba(255, 255, 255, 0.02);
      }

      .hero-proof {
        display: flex;
        gap: 28px;
        margin-top: 36px;
        flex-wrap: wrap;
      }

      .proof-item {
        min-width: 120px;
      }

      .proof-value {
        font-size: 2rem;
        font-weight: 800;
        letter-spacing: -0.06em;
      }

      .proof-label {
        color: var(--muted);
        font-size: 0.82rem;
      }

      .phone-mockup {
        position: relative;
        width: min(440px, 100%);
        margin-left: auto;
        padding: 18px 18px 22px;
        border-radius: 32px;
        background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(19,19,25,0.8));
        border: 1px solid var(--border);
        box-shadow: 0 30px 90px var(--shadow);
      }

      .phone-glass {
        background: linear-gradient(180deg, #171a21, #101217 48%, #0e1015);
        border-radius: 26px;
        padding: 18px 16px 0;
        min-height: 620px;
        border: 1px solid rgba(255,255,255,0.04);
        overflow: hidden;
      }

      .status-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 0.7rem;
        color: var(--muted);
        padding: 0 8px 14px;
      }

      .mini-dots {
        display: flex;
        gap: 6px;
      }

      .mini-dots span {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(255,255,255,0.38);
      }

      .ring-visual {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 240px;
      }

      .ring-core {
        width: 220px;
        height: 220px;
        border-radius: 50%;
        background:
          radial-gradient(circle at 35% 30%, rgba(255,255,255,0.7), transparent 18%),
          linear-gradient(140deg, rgba(255,125,183,0.9), rgba(104,97,205,0.7));
        box-shadow:
          inset 0 0 22px rgba(255,255,255,0.25),
          0 0 40px rgba(255,125,183,0.25);
        position: relative;
      }

      .ring-core::before,
      .ring-core::after {
        content: "";
        position: absolute;
        inset: 18px;
        border-radius: 50%;
        border: 1px solid rgba(255,255,255,0.3);
      }

      .ring-core::after {
        inset: 38px;
        background: rgba(9, 9, 13, 0.45);
        border: 0;
      }

      .metric-stack {
        display: grid;
        gap: 12px;
        padding: 0 12px 16px;
      }

      .metric-card {
        background: rgba(255,255,255,0.03);
        border: 1px solid rgba(255,255,255,0.05);
        border-radius: 18px;
        padding: 14px 16px;
      }

      .metric-label {
        color: var(--muted);
        font-size: 0.7rem;
        margin-bottom: 8px;
      }

      .metric-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
      }

      .metric-value {
        font-size: 1.6rem;
        font-weight: 700;
        letter-spacing: -0.06em;
      }

      .pill {
        background: rgba(183, 240, 214, 0.12);
        border: 1px solid rgba(183, 240, 214, 0.2);
        color: var(--green);
        border-radius: 999px;
        padding: 7px 10px;
        font-size: 0.72rem;
      }

      .section {
        padding: 42px 0 24px;
      }

      .section-heading {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 26px;
        margin-bottom: 28px;
      }

      .section-label {
        color: var(--pink);
        text-transform: uppercase;
        letter-spacing: 0.16em;
        font-size: 0.74rem;
        margin-bottom: 14px;
      }

      h2 {
        margin: 0;
        font-size: clamp(2.3rem, 4vw, 4rem);
        line-height: 0.96;
        letter-spacing: -0.07em;
      }

      .lead {
        max-width: 520px;
        color: var(--muted);
        line-height: 1.7;
      }

      .cards-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
      }

      .feature-card {
        background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
        border: 1px solid var(--border);
        border-radius: 24px;
        padding: 26px 22px;
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.02);
      }

      .feature-icon {
        width: 52px;
        height: 52px;
        border-radius: 16px;
        display: grid;
        place-items: center;
        background: linear-gradient(135deg, rgba(246,0,255,0.2), rgba(246,0,255,0.05));
        border: 1px solid rgba(246,0,255,0.2);
        margin-bottom: 18px;
        color: var(--pink);
        font-size: 1.5rem;
      }

      .feature-card h3 {
        margin: 0 0 12px;
        font-size: 1.6rem;
        letter-spacing: -0.05em;
      }

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

      .feature-list {
        margin-top: 18px;
        display: grid;
        gap: 10px;
        color: var(--soft);
        font-size: 0.86rem;
      }

      .feature-list span {
        display: flex;
        align-items: center;
        gap: 10px;
      }

      .feature-list span::before {
        content: "";
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--pink);
      }

      .feature-visual {
        margin-top: 18px;
        background: rgba(255,255,255,0.02);
        border: 1px solid var(--border);
        border-radius: 18px;
        padding: 14px;
      }

      .mini-bars {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        align-items: end;
        gap: 8px;
        height: 74px;
      }

      .mini-bars span {
        display: block;
        border-radius: 10px 10px 0 0;
        background: linear-gradient(180deg, rgba(255,125,183,0.8), rgba(255,125,183,0.2));
      }

      .dashboard-layout {
        display: grid;
        grid-template-columns: 1.15fr 0.95fr;
        gap: 20px;
        margin-top: 18px;
      }

      .dashboard-panel,
      .data-panel,
      .event-panel {
        background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
        border: 1px solid var(--border);
        border-radius: 28px;
        padding: 22px;
      }

      .panel-head {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 18px;
      }

      .panel-head h3 {
        margin: 0;
        font-size: 1.2rem;
        letter-spacing: -0.04em;
      }

      .stats-row {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px;
        margin-bottom: 18px;
      }

      .stat-box {
        border-radius: 18px;
        background: rgba(255,255,255,0.02);
        border: 1px solid var(--border);
        padding: 14px;
      }

      .stat-box .kicker {
        color: var(--muted);
        font-size: 0.72rem;
        text-transform: uppercase;
        letter-spacing: 0.13em;
      }

      .stat-box .big {
        display: block;
        margin-top: 8px;
        font-size: 1.8rem;
        letter-spacing: -0.06em;
        font-weight: 700;
      }

      .chart-wrap {
        border-radius: 18px;
        background: rgba(255,255,255,0.02);
        border: 1px solid var(--border);
        padding: 18px 14px 12px;
      }

      .lines {
        height: 150px;
        display: flex;
        align-items: flex-end;
        gap: 8px;
      }

      .lines span {
        display: block;
        width: 100%;
        border-radius: 999px 999px 0 0;
        background: linear-gradient(180deg, rgba(255,125,183,0.9), rgba(255,125,183,0.18));
      }

      .legend {
        display: flex;
        justify-content: space-between;
        color: var(--muted);
        font-size: 0.72rem;
        margin-top: 14px;
      }

      .data-panel {
        display: grid;
        gap: 16px;
      }

      .recommend-item {
        display: grid;
        grid-template-columns: 58px 1fr auto;
        align-items: center;
        gap: 12px;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255,255,255,0.05);
      }

      .recommend-item:last-child { border-bottom: 0; }

      .recommend-thumb {
        width: 58px;
        height: 58px;
        border-radius: 18px;
        background: linear-gradient(135deg, rgba(255,125,183,0.32), rgba(255,255,255,0.08));
        border: 1px solid rgba(255,125,183,0.2);
      }

      .recommend-name {
        font-size: 1rem;
        margin-bottom: 4px;
      }

      .recommend-meta {
        color: var(--muted);
        font-size: 0.76rem;
      }

      .score {
        font-size: 0.82rem;
        padding: 7px 10px;
        border-radius: 999px;
        background: rgba(255,125,183,0.1);
        border: 1px solid rgba(255,125,183,0.2);
        color: var(--pink);
      }

      .event-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-top: 18px;
      }

      .ticket {
        position: relative;
        overflow: hidden;
        background: linear-gradient(145deg, rgba(255,125,183,0.14), rgba(255,255,255,0.02));
        border: 1px solid rgba(255,125,183,0.25);
        border-radius: 28px;
        padding: 22px;
      }

      .ticket::before, .ticket::after {
        content: "";
        position: absolute;
        top: 50%;
        width: 26px;
        height: 26px;
        border-radius: 50%;
        background: var(--bg);
        transform: translateY(-50%);
      }

      .ticket::before { left: -13px; }
      .ticket::after { right: -13px; }

      .ticket-tag {
        color: var(--soft);
        font-size: 0.7rem;
        letter-spacing: 0.16em;
        text-transform: uppercase;
      }

      .event-title {
        font-size: clamp(2rem, 3vw, 3rem);
        margin: 16px 0 8px;
        letter-spacing: -0.06em;
      }

      .event-meta {
        color: var(--muted);
        line-height: 1.7;
      }

      .nft-box {
        padding: 18px;
        border-radius: 24px;
        background: rgba(255,255,255,0.02);
        border: 1px solid var(--border);
      }

      .nft-art {
        height: 170px;
        border-radius: 20px;
        background:
          radial-gradient(circle at 50% 30%, rgba(255, 125, 183, 0.9), transparent 25%),
          linear-gradient(135deg, rgba(130, 90, 255, 0.3), rgba(255,255,255,0.02));
        border: 1px solid rgba(255,125,183,0.22);
        position: relative;
        overflow: hidden;
      }

      .nft-art::before {
        content: "";
        position: absolute;
        inset: 18px;
        border-radius: 16px;
        border: 1px solid rgba(255,255,255,0.2);
        background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
      }

      .nft-stats {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 18px;
        color: var(--muted);
        font-size: 0.8rem;
      }

      .cta-band {
        margin-top: 42px;
        border: 1px solid var(--border);
        background: linear-gradient(135deg, rgba(255,125,183,0.12), rgba(255,255,255,0.02));
        border-radius: 30px;
        padding: 32px 28px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 26px;
      }

      .preorder-panel {
        display: grid;
        grid-template-columns: 1.1fr 1.25fr;
        gap: 20px;
        background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
        border: 1px solid var(--border);
        border-radius: 28px;
        padding: 22px;
      }

      .preorder-offer {
        padding: 16px 10px 16px 6px;
      }

      .preorder-offer h3 {
        margin: 12px 0 12px;
        font-size: clamp(2rem, 3vw, 3rem);
        line-height: 1;
        letter-spacing: -0.06em;
      }

      .preorder-offer p {
        margin: 0;
        color: var(--muted);
        line-height: 1.8;
      }

      .process-list {
        display: grid;
        gap: 14px;
      }

      .process-item {
        display: grid;
        grid-template-columns: 54px 1fr;
        gap: 14px;
        align-items: start;
        border: 1px solid var(--border);
        border-radius: 18px;
        background: rgba(255,255,255,0.02);
        padding: 14px 16px;
      }

      .step-number {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        background: linear-gradient(135deg, rgba(255,125,183,0.24), rgba(255,125,183,0.08));
        border: 1px solid rgba(255,125,183,0.25);
        color: var(--pink);
        font-weight: 700;
      }

      .process-item strong {
        display: block;
        margin-bottom: 6px;
        font-size: 1.04rem;
      }

      .process-item p {
        margin: 0;
        color: var(--muted);
        line-height: 1.7;
      }

      .cta-copy h3 {
        margin: 0 0 10px;
        font-size: clamp(2rem, 4vw, 3.3rem);
        letter-spacing: -0.07em;
      }

      .cta-copy p {
        margin: 0;
        color: var(--muted);
        line-height: 1.7;
      }

      footer {
        padding: 26px 0 44px;
        color: var(--muted);
        font-size: 0.84rem;
      }

      .footer-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 16px;
        padding-top: 18px;
        border-top: 1px solid var(--border);
      }

      @media (max-width: 900px) {
        .hero-grid,
        .dashboard-layout,
        .cards-grid,
        .event-grid,
        .preorder-panel,
        .cta-band {
          grid-template-columns: 1fr;
          display: grid;
        }

        .hero-grid {
          text-align: center;
        }

        .phone-mockup {
          margin: 0 auto;
        }

        .section-heading {
          display: block;
        }

        .nav-links {
          display: none;
        }

        .hero-actions {
          justify-content: center;
          flex-wrap: wrap;
        }
      }

      @media (max-width: 560px) {
        h1 { font-size: clamp(2.7rem, 18vw, 4.5rem); }
        .proof-item { min-width: 100px; }
        .stats-row { grid-template-columns: 1fr; }
        .cta-band { padding: 24px 20px; }
        .footer-row { flex-direction: column; align-items: flex-start; }
      }
    