*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --black: #0A0A0F;
    --surface: #12121A;
    --surface2: #1A1A28;
    --orange: #FF8C00;
    --amber: #FFB347;
    --amber-dim: rgba(255,140,0,0.12);
    --amber-border: rgba(255,140,0,0.25);
    --white: #FFFFFF;
    --text-primary: rgba(255,255,255,0.95);
    --text-secondary: rgba(255,255,255,0.55);
    --text-muted: rgba(255,255,255,0.3);
    --radius: 12px;
    --radius-lg: 20px;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Inter', sans-serif;
    background: var(--black);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
  }

  h1, h2, h3, h4, .display {
    font-family: 'Syne', sans-serif;
    line-height: 1.1;
  }

  a { text-decoration: none; color: inherit; }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 0 5%;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(10,10,15,0.8);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255,140,0,0.08);
    transition: background 0.3s;
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Syne', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
  }

  .logo-icon {
    width: 34px;
    height: 34px;
    background: var(--orange);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .logo-bars {
    display: flex;
    align-items: flex-end;
    gap: 2.5px;
    height: 18px;
  }

  .logo-bar {
    width: 3px;
    background: #0A0A0F;
    border-radius: 2px;
  }

  .logo-bar:nth-child(1) { height: 8px; }
  .logo-bar:nth-child(2) { height: 14px; }
  .logo-bar:nth-child(3) { height: 18px; }
  .logo-bar:nth-child(4) { height: 12px; }
  .logo-bar:nth-child(5) { height: 16px; }

  .logo-text span { color: var(--orange); }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
  }

  .nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--white); }

  .nav-cta {
    background: var(--orange);
    color: #0A0A0F !important;
    font-weight: 700 !important;
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    font-size: 0.875rem;
    transition: background 0.2s, transform 0.15s !important;
  }

  .nav-cta:hover { background: var(--amber) !important; transform: translateY(-1px); }

  .nav-social-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .nav-social-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    min-width: 54px;
    padding: 0.45rem 0.8rem;
    background: var(--orange);
    color: #0A0A0F !important;
    border-radius: 8px;
    font-family: 'Syne', sans-serif;
    font-size: 0.78rem !important;
    font-weight: 800 !important;
    line-height: 1;
    transition: background 0.2s, transform 0.15s !important;
  }

  .nav-social-cta:hover {
    background: var(--amber);
    color: #0A0A0F !important;
    transform: translateY(-1px);
  }

  .nav-social-icon {
    width: 15px;
    height: 15px;
    fill: currentColor;
    flex-shrink: 0;
  }

  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
  }

  .hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: 0.3s;
  }

  /* ── HERO ── */
  #hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 5% 80px;
    position: relative;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
  }

  .hero-glow {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(255,140,0,0.12) 0%, transparent 70%);
    animation: pulse-glow 4s ease-in-out infinite;
  }

  @keyframes pulse-glow {
    0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
  }

  .hero-grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,140,0,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,140,0,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.6) 0%, transparent 75%);
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--amber-dim);
    border: 1px solid var(--amber-border);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--amber);
    margin-bottom: 2rem;
    letter-spacing: 0.04em;
  }

  .badge-dot {
    width: 6px;
    height: 6px;
    background: var(--orange);
    border-radius: 50%;
    animation: blink 1.8s ease-in-out infinite;
  }

  @keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
  }

  .hero-title {
    font-size: clamp(2.8rem, 7vw, 6rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.0;
    margin-bottom: 1.5rem;
    max-width: 900px;
  }

  .hero-title .accent { color: var(--orange); }

  .hero-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-secondary);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 2.5rem;
  }

  .hero-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 3.5rem;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--orange);
    color: #0A0A0F;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.85rem 2rem;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
  }

  .btn-primary:hover { background: var(--amber); transform: translateY(-2px); }

  .btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--text-primary);
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.85rem 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.18);
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
  }

  .btn-ghost:hover { border-color: var(--orange); background: var(--amber-dim); }

  /* Waveform */
  .waveform-container {
    width: 100%;
    max-width: 700px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
  }

  .wave-bar {
    width: 4px;
    border-radius: 4px;
    background: var(--orange);
    opacity: 0.85;
    animation: wave-anim var(--duration, 1s) ease-in-out infinite alternate;
    animation-delay: var(--delay, 0s);
  }

  @keyframes wave-anim {
    from { height: var(--min-h, 6px); }
    to { height: var(--max-h, 40px); }
  }

  /* hero stats */
  .hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .stat {
    text-align: center;
  }

  .stat-value {
    font-family: 'Syne', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--orange);
    display: block;
  }

  .stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    letter-spacing: 0.04em;
  }

  /* ── SECTION SHARED ── */
  section {
    padding: 100px 5%;
  }

  .section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--orange);
    text-transform: uppercase;
    margin-bottom: 1rem;
  }

  .section-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    max-width: 600px;
  }

  .section-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 3.5rem;
  }

  .centered {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .centered .section-title,
  .centered .section-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  /* ── HOW IT WORKS ── */
  #how {
    background: var(--surface);
  }

  .steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
  }

  .step-card {
    background: var(--surface2);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    transition: border-color 0.25s, transform 0.25s;
  }

  .step-card:hover {
    border-color: var(--amber-border);
    transform: translateY(-4px);
  }

  .step-number {
    font-family: 'Syne', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
  }

  .step-icon {
    width: 48px;
    height: 48px;
    background: var(--amber-dim);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.4rem;
  }

  .step-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
  }

  .step-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.65;
  }

  /* earn items */
  .earn-list {
    list-style: none;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .earn-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
  }

  .earn-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--orange);
    border-radius: 50%;
    flex-shrink: 0;
  }

  /* ── TOKENOMICS ── */
  #tokenomics {
    background: var(--black);
  }

  #tokenomics > .section-title { margin-bottom: 0.5rem; }

  .token-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }

  .donut-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .donut-chart {
    position: relative;
    width: 280px;
    height: 280px;
  }

  .donut-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
  }

  .donut-center-value {
    font-family: 'Syne', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--orange);
    display: block;
  }

  .donut-center-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.06em;
  }

  .token-legend {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }

  .legend-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.875rem;
  }

  .legend-left {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
  }

  .legend-dot-rewards { background: #FF8C00; }
  .legend-dot-partnerships { background: #FFB347; }
  .legend-dot-liquidity { background: #E07000; }
  .legend-dot-marketing { background: #A04E00; }

  .legend-name { color: var(--text-secondary); }

  .legend-pct {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--text-primary);
  }

  .token-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .token-card {
    background: var(--surface);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    padding: 1.5rem;
  }

  .economy-card {
    background: var(--amber-dim);
    border-color: var(--amber-border);
  }

  .economy-label { color: var(--amber); }

  .economy-copy {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-top: 0.4rem;
  }

  .token-card-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
  }

  .token-card-value {
    font-family: 'Syne', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-primary);
  }

  .token-card-value span { color: var(--orange); }

  .token-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 0.5rem;
  }

  .highlight-card {
    background: var(--surface2);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius);
    padding: 1.25rem;
    text-align: center;
  }

  .highlight-card .val {
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--orange);
    display: block;
    margin-bottom: 0.25rem;
  }

  .highlight-card .lbl {
    font-size: 0.78rem;
    color: var(--text-secondary);
  }

  /* ── ROADMAP ── */
  #roadmap {
    background: var(--surface);
  }

  .roadmap-track {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 800px;
    margin: 0 auto;
  }

  .roadmap-track::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--orange), rgba(255,140,0,0.1));
  }

  .roadmap-item {
    display: flex;
    gap: 1.5rem;
    padding-bottom: 2.5rem;
    position: relative;
  }

  .roadmap-dot {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--orange);
    background: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: 'Syne', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--orange);
    z-index: 1;
  }

  .roadmap-dot.active {
    background: var(--orange);
    color: #0A0A0F;
  }

  .roadmap-content {
    background: var(--surface2);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    padding: 1.5rem;
    flex: 1;
    transition: border-color 0.2s;
  }

  .roadmap-content:hover { border-color: var(--amber-border); }

  .roadmap-phase {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--orange);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
  }

  .roadmap-content h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
  }

  .roadmap-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .roadmap-tag {
    background: var(--amber-dim);
    border: 1px solid var(--amber-border);
    border-radius: 100px;
    padding: 3px 12px;
    font-size: 0.78rem;
    color: var(--amber);
  }

  /* ── WHITEPAPER ── */
  #whitepaper {
    background: var(--black);
  }

  .wp-inner {
    background: var(--surface);
    border: 1px solid var(--amber-border);
    border-radius: var(--radius-lg);
    padding: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
  }

  .wp-inner::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,140,0,0.08), transparent 70%);
    pointer-events: none;
  }

  .wp-text h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
  }

  .wp-text p {
    color: var(--text-secondary);
    max-width: 460px;
    line-height: 1.7;
  }

  .wp-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
  }

  /* ── COMMUNITY ── */
  #community {
    background: var(--surface);
  }

  .socials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
  }

  .social-card {
    background: var(--surface2);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    cursor: pointer;
    transition: border-color 0.25s, transform 0.25s;
    text-decoration: none;
  }

  .social-card:hover {
    border-color: var(--amber-border);
    transform: translateY(-4px);
  }

  .social-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
  }

  .social-icon-x { background: rgba(29,161,242,0.12); }
  .social-icon-discord { background: rgba(88,101,242,0.12); }
  .social-icon-telegram { background: rgba(0,136,204,0.12); }
  .social-icon-newsletter { background: rgba(255,140,0,0.12); }

  .social-card h3 {
    font-size: 1rem;
    font-weight: 700;
  }

  .social-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
  }

  .social-arrow {
    font-size: 1.2rem;
    color: var(--orange);
    margin-top: auto;
  }

  /* ── FAQ ── */
  #faq {
    background: var(--black);
  }

  .faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .faq-item {
    background: var(--surface);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 0.2s;
  }

  .faq-item.open { border-color: var(--amber-border); }

  .faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    padding: 1.4rem 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }

  .faq-chevron {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--orange);
    transition: transform 0.3s;
  }

  .faq-item.open .faq-chevron { transform: rotate(180deg); }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
  }

  .faq-answer-inner {
    padding: 0 1.5rem 1.4rem;
    font-size: 0.925rem;
    color: var(--text-secondary);
    line-height: 1.75;
  }

  .faq-item.open .faq-answer { max-height: 400px; }

  /* ── FOOTER ── */
  footer {
    background: var(--surface);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 3rem 5%;
  }

  .footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .footer-copy {
    font-size: 0.85rem;
    color: var(--text-muted);
  }

  .footer-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
  }

  .footer-links a {
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: color 0.2s;
  }

  .footer-links a:hover { color: var(--orange); }

  /* ── MOBILE ── */
  @media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }

    .nav-links.open {
      display: flex;
      flex-direction: column;
      position: fixed;
      top: 68px; left: 0; right: 0;
      background: rgba(10,10,15,0.97);
      padding: 2rem;
      gap: 1.5rem;
      border-bottom: 1px solid rgba(255,140,0,0.1);
    }

    .token-layout { grid-template-columns: 1fr; }
    .donut-chart { width: 220px; height: 220px; }
    .wp-inner { padding: 2.5rem; }
    section { padding: 70px 5%; }
  }

  @media (max-width: 480px) {
    .hero-stats { gap: 1.5rem; }
    .token-highlights { grid-template-columns: 1fr; }
  }

  @media (prefers-reduced-motion: reduce) {
    .wave-bar, .hero-glow, .badge-dot { animation: none; }
  }
