/* ----- RESET & BASE ----- */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    }

    body {
      background-color: #0c0b0a;
      color: #e5e2d9;
      line-height: 1.5;
      overflow-x: hidden;
      width: 100%;
    }

    /* color palette */
    :root {
      --color-stone: #74725e;
      --color-taupe: #a49d83;
      --color-peat: #595428;
      --card-bg: #1e1d19;
      --glow: rgba(116, 114, 94, 0.25);
    }

    /* ----- TYPOGRAPHY & LINKS ----- */
    a {
      text-decoration: none;
      color: inherit;
    }

    .container {
      width: 100%;
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    /* ----- HEADER (fully responsive) ----- */
    .header {
      background-color: #0f0e0c;
      border-bottom: 1px solid var(--color-stone);
      position: sticky;
      top: 0;
      z-index: 100;
      backdrop-filter: blur(8px);
      background: rgba(10, 10, 8, 0.96);
      width: 100%;
    }

    .nav-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.75rem 0;
      flex-wrap: wrap;
      position: relative;
    }

    .logo h1 {
      font-size: clamp(1.2rem, 5vw, 1.8rem);
      font-weight: 300;
      letter-spacing: 1px;
      white-space: nowrap;
    }
    .logo span {
      color: var(--color-taupe);
      font-weight: 500;
    }
    .domain-badge {
      font-size: 0.7rem;
      background: var(--color-peat);
      padding: 0.2rem 0.5rem;
      border-radius: 30px;
      color: #dddacf;
      margin-left: 0.3rem;
      vertical-align: middle;
      display: inline-block;
    }

    /* menu list - desktop */
    .nav-menu {
      display: flex;
      align-items: center;
      gap: 1.8rem;
      list-style: none;
      transition: all 0.25s ease;
    }
    .nav-menu li a {
      font-size: 1rem;
      font-weight: 400;
      color: #ddd8c8;
      padding: 0.4rem 0;
      border-bottom: 2px solid transparent;
      transition: 0.2s;
      white-space: nowrap;
    }
    .nav-menu li a:hover {
      border-bottom-color: var(--color-taupe);
      color: white;
    }

    /* mobile toggle button */
    .menu-toggle {
      display: none;
      font-size: 2rem;
      background: none;
      border: none;
      color: var(--color-taupe);
      cursor: pointer;
      z-index: 200;
      line-height: 1;
    }

    /* ----- SECTIONS (responsive padding) ----- */
    section {
      padding: 4rem 0;
      border-bottom: 1px solid #2c2b25;
      width: 100%;
    }
    .hero {
        min-height: 90vh;
        display: flex;
        align-items: center;
        padding-top: 2.5rem;

        background-image:  url("web_assets/images/img-12.avif");

        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;

        position: relative;
    }

    h2 {
      font-size: clamp(1.8rem, 6vw, 2.5rem);
      font-weight: 300;
      margin-bottom: 1rem;
      color: var(--color-taupe);
      letter-spacing: -0.02em;
    }
    h2 i {
      color: var(--color-stone);
      margin-right: 0.6rem;
    }
    .section-desc {
      font-size: 1.1rem;
      max-width: 700px;
      margin-bottom: 2.5rem;
      color: #b9b3a1;
    }

    /* GRIDS – fully responsive */
    .grid-2, .grid-3 {
      display: grid;
      gap: 2rem;
      width: 100%;
    }
    .grid-2 {
      grid-template-columns: repeat(2, 1fr);
    }
    .grid-3 {
      grid-template-columns: repeat(3, 1fr);
    }

    /* cards */
    .card {
      background: var(--card-bg);
      border-radius: 24px;
      overflow: hidden;
      border: 1px solid #3d3b30;
      transition: transform 0.25s cubic-bezier(0.2,0.9,0.3,1), border-color 0.2s, box-shadow 0.3s;
      box-shadow: 0 20px 30px -15px rgba(0,0,0,0.8);
      height: 100%;
      display: flex;
      flex-direction: column;
    }
    .card:hover {
      border-color: var(--color-stone);
      transform: translateY(-5px);
      box-shadow: 0 25px 35px -12px var(--glow);
    }
    .card-img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      background: #2d2b23;
      display: block;
      transition: transform 0.4s;
    }
    .card:hover .card-img {
      transform: scale(1.02);
    }
    .card-content {
      padding: 1.5rem 1.2rem;
      flex: 1;
    }
    .card h3 {
      font-size: 1.5rem;
      font-weight: 400;
      color: #d6d0bd;
      margin-bottom: 0.5rem;
    }
    .card h3 i {
      color: var(--color-peat);
      font-size: 1.2rem;
      margin-right: 0.4rem;
    }
    .badge {
      background: var(--color-peat);
      color: #ece7d7;
      padding: 0.2rem 1rem;
      border-radius: 30px;
      font-size: 0.85rem;
      display: inline-block;
      margin-top: 0.8rem;
    }

    /* token specific */
    .price {
      font-size: clamp(1.5rem, 4vw, 2rem);
      font-weight: 200;
      color: white;
      background: rgba(89, 84, 40, 0.3);
      padding: 0.2rem 0.8rem;
      border-radius: 40px;
      display: inline-block;
    }

    /* floating stats */
    .floating-stats {
      background: #1a1915;
      border-radius: 50px;
      padding: 1.8rem 2rem;
      border: 1px solid var(--color-stone);
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      justify-content: space-around;
      margin-top: 1rem;
      box-shadow: 0 20px 30px -15px black;
      transition: box-shadow 0.3s, border-color 0.3s;
      animation: softGlow 7s infinite alternate;
    }
    @keyframes softGlow {
      0% { border-color: #74725e40; box-shadow: 0 20px 30px -15px #000; }
      100% { border-color: #a49d83; box-shadow: 0 25px 40px -10px #a49d83; }
    }
    .stat-item {
      text-align: center;
    }
    .stat-number {
      font-size: clamp(2rem, 5vw, 3rem);
      font-weight: 200;
      color: var(--color-taupe);
      line-height: 1.2;
    }

    /* trade button */
    .trade-btn {
      background: transparent;
      border: 1px solid var(--color-taupe);
      color: var(--color-taupe);
      padding: 0.6rem 1.8rem;
      border-radius: 40px;
      font-weight: 400;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.25s;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
    }
    .trade-btn:hover {
      background: var(--color-taupe);
      color: #0c0b0a;
      border-color: var(--color-taupe);
      transform: scale(1.02);
      box-shadow: 0 0 15px #a49d83;
    }

    /* footer */
    .footer {
      background: #0d0c09;
      padding: 2rem 0;
      text-align: center;
      border-top: 1px solid #2b2922;
      color: #7f7a68;
    }

    /* ----- FULL RESPONSIVENESS BREAKPOINTS ----- */
    @media (max-width: 1024px) {
      .container { padding: 0 2rem; }
      .nav-menu { gap: 1.2rem; }
      .grid-3 { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 820px) {
      .grid-2 { grid-template-columns: 1fr; }
      .floating-stats { flex-direction: row; flex-wrap: wrap; }
    }

    @media (max-width: 768px) {
      .menu-toggle {
        display: block;
      }
      .nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.2rem;
        padding: 1.2rem 0 1rem 0;
        background: #141310;
        border-top: 1px solid var(--color-stone);
        margin-top: 0.8rem;
      }
      .nav-menu.active {
        display: flex;
      }
      .nav-menu li {
        width: 100%;
      }
      .nav-menu li a {
        display: block;
        padding: 0.8rem 1rem;
        border-bottom: 1px solid #3d3b30;
        white-space: normal;
      }
      .nav-menu li:last-child a { border-bottom: none; }
      /* adjust button in mobile menu */
      .nav-menu .trade-btn {
        border: none;
        padding: 0.8rem 1rem;
        justify-content: flex-start;
        width: 100%;
        background: transparent;
      }
    }

    @media (max-width: 600px) {
      .container { padding: 0 1.2rem; }
      section { padding: 3rem 0; }
      .grid-3 { grid-template-columns: 1fr; }
      .floating-stats { flex-direction: column; align-items: center; gap: 1.5rem; padding: 1.5rem; }
      .card-img { height: 180px; }
      h2 { font-size: 2rem; }
    }

    @media (max-width: 380px) {
      .logo h1 { font-size: 1rem; }
      .domain-badge { font-size: 0.6rem; }
      .trade-btn { padding: 0.4rem 1rem; font-size: 0.9rem; }
    }

    /* AOS custom */
    [data-aos] {
      transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    /* background effect */
    .bg-lines {
      position: absolute;
      top: 0; left: 0; width: 100%; height: 100%;
      background: repeating-linear-gradient(45deg, rgba(116,114,94,0.02) 0px, rgba(116,114,94,0.02) 2px, transparent 2px, transparent 10px);
      pointer-events: none;
      z-index: -1;
    }