:root {
      --bg: #050712;
      --bg-alt: #080b1a;
      --card: #111627;
      --accent: #34d399;
      --accent-soft: rgba(52, 211, 153, 0.1);
      --text: #f9fafb;
      --muted: #9ca3af;
      --border: #1f2937;
      --danger: #f97373;
      --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
        "Segoe UI", sans-serif;
    }

    [data-theme="light"] {
      --bg: #ffffff;
      --bg-alt: #f9fafb;
      --card: #f3f4f6;
      --accent: #059669;
      --accent-soft: rgba(5, 150, 105, 0.1);
      --text: #111827;
      --muted: #6b7280;
      --border: #e5e7eb;
      --danger: #dc2626;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: var(--font-sans);
      background: radial-gradient(circle at top, var(--bg-alt) 0, var(--bg) 60%);
      color: var(--text);
      line-height: 1.6;
      transition: background 0.3s ease, color 0.3s ease;
    }

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

    .page {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    /* NAVBAR */

    .navbar {
      position: sticky;
      top: 0;
      z-index: 50;
      backdrop-filter: blur(16px);
      background: rgba(3, 7, 18, 0.85);
      border-bottom: 1px solid var(--border);
    }

    [data-theme="light"] .navbar {
      background: rgba(255, 255, 255, 0.85);
    }

    .navbar-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 1.1rem 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 2rem;
    }

    .nav-left {
      display: flex;
      align-items: center;
      gap: 0.9rem;
    }

    .brand-mark {
      width: 34px;
      height: 34px;
      border-radius: 999px;
      /** background: conic-gradient(from 180deg, #22c55e, #22d3ee, #4f46e5, #22c55e); **/
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 0 0 2px var(--bg);
      flex-shrink: 0;
    }

    .brand-mark img {
      width: 24px; /* Adjust size as needed */
      height: 24px; /* Adjust size as needed */
      display: block;
    }

    .brand-title {
      font-size: 1.05rem;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

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

    .nav-links a {
      padding: 0.3rem 0.6rem;
      border-radius: 999px;
      transition: color 0.15s ease, background 0.15s ease;
    }

    .nav-links a:hover {
      color: var(--text);
      background: var(--card);
    }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 1rem;
      font-size: 1rem;
    }

    .theme-toggle {
      width: 38px;
      height: 38px;
      border-radius: 999px;
      border: 1px solid var(--border);
      background: var(--card);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.15s ease;
      padding: 0;
    }

    .theme-toggle:hover {
      border-color: var(--accent);
      transform: scale(1.05);
    }

    .theme-toggle svg {
      width: 20px;
      height: 20px;
      fill: var(--text);
    }

    .theme-toggle .sun-icon {
      display: none;
    }

    [data-theme="light"] .theme-toggle .sun-icon {
      display: block;
    }

    [data-theme="light"] .theme-toggle .moon-icon {
      display: none;
    }

    .nav-ghost {
      padding: 0.6rem 1.1rem;
      border-radius: 999px;
      border: 1px solid var(--border);
      color: var(--muted);
      background: transparent;
      cursor: pointer;
      transition: border 0.15s ease, background 0.15s ease, color 0.15s ease;
      font-size: 1rem;
    }

    .nav-ghost:hover {
      border-color: var(--accent);
      color: var(--text);
      background: var(--card);
    }

    .nav-cta {
      padding: 0.65rem 1.4rem;
      border-radius: 999px;
      border: none;
      background: linear-gradient(135deg, #22c55e, #14b8a6);
      color: #022c22;
      font-weight: 600;
      font-size: 1rem;
      cursor: pointer;
      box-shadow: 0 12px 30px rgba(34, 197, 94, 0.3);
      transition: transform 0.1s ease, box-shadow 0.1s ease, filter 0.1s ease;
      white-space: nowrap;
    }

    .nav-cta:hover {
      transform: translateY(-1px);
      box-shadow: 0 16px 40px rgba(34, 197, 94, 0.4);
      filter: brightness(1.05);
    }

    @media (max-width: 768px) {
      .nav-links {
        display: none;
      }
      .navbar-inner {
        padding-inline: 1.5rem;
      }
    }

    /* HERO */

    .hero {
      max-width: 1280px;
      margin: 5rem auto 4rem;
      padding: 0 2rem;
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
      gap: 3.5rem;
      align-items: center;
      min-height: 70vh;
    }

    .hero-copy {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      padding: 0.25rem 0.7rem 0.25rem 0.25rem;
      border-radius: 999px;
      background: var(--card);
      border: 1px solid var(--border);
      color: var(--muted);
      font-size: 0.85rem;
      align-self: flex-start;
    }

    .eyebrow-pill {
      padding: 0.2rem 0.6rem;
      border-radius: 999px;
      background: var(--accent-soft);
      color: var(--accent);
      font-weight: 600;
      font-size: 0.75rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .hero h1 {
      font-size: clamp(2.8rem, 5.5vw, 4.2rem);
      line-height: 1.05;
      letter-spacing: -0.04em;
      margin-bottom: 0.5rem;
    }

    .hero h1 span {
      background: linear-gradient(to right, #22c55e, #22d3ee);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    [data-theme="light"] .hero h1 span {
      background: linear-gradient(to right, #059669, #0891b2);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-sub {
      color: var(--muted);
      max-width: 36rem;
      font-size: 1.15rem;
      line-height: 1.7;
    }

    .hero-ctas {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      align-items: center;
      margin-top: 0.5rem;
    }

    .btn-primary {
      padding: 1rem 1.8rem;
      border-radius: 999px;
      border: none;
      background: linear-gradient(135deg, #22c55e, #14b8a6);
      color: #022c22;
      font-weight: 600;
      font-size: 1.05rem;
      cursor: pointer;
      box-shadow: 0 18px 45px rgba(34, 197, 94, 0.35);
      transition: transform 0.1s ease, box-shadow 0.1s ease, filter 0.1s ease;
    }

    .btn-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 25px 70px rgba(34, 197, 94, 0.5);
      filter: brightness(1.06);
    }

    .btn-secondary {
      padding: 0.95rem 1.5rem;
      border-radius: 999px;
      border: 1px solid var(--border);
      color: var(--muted);
      background: var(--card);
      font-size: 1rem;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      transition: border 0.15s ease, background 0.15s ease, color 0.15s ease;
    }

    .btn-secondary:hover {
      border-color: var(--accent);
      color: var(--text);
    }

    .hero-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      padding-top: 1.5rem;
      border-top: 1px solid var(--border);
      margin-top: 1rem;
      font-size: 0.95rem;
      color: var(--muted);
    }

    .hero-meta span strong {
      color: var(--accent);
      font-weight: 600;
    }

    .hero-visual {
      position: relative;
      border-radius: 1.3rem;
      padding: 1.5rem 1.3rem;
      background: var(--card);
      border: 1px solid var(--border);
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
      display: flex;
      flex-direction: column;
      gap: 1.1rem;
    }

    [data-theme="light"] .hero-visual {
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);
    }

    .badge-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 0.85rem;
      color: var(--muted);
    }

    .chain-pill {
      padding: 0.25rem 0.65rem;
      border-radius: 999px;
      background: var(--card);
      border: 1px solid rgba(30, 64, 175, 0.5);
      color: #bfdbfe;
      font-weight: 500;
      font-size: 0.8rem;
    }

    [data-theme="light"] .chain-pill {
      color: #1e40af;
      background: rgba(219, 234, 254, 0.5);
    }

    .tag-pill {
      padding: 0.25rem 0.65rem;
      border-radius: 999px;
      background: var(--card);
      border: 1px solid var(--border);
      font-size: 0.8rem;
    }

    .order-book {
      display: grid;
      grid-template-columns: 1.1fr 1.2fr;
      gap: 1.1rem;
      font-size: 0.85rem;
    }

    .panel {
      background: var(--bg);
      border-radius: 1rem;
      border: 1px solid var(--border);
      padding: 0.9rem 0.8rem;
    }

    .panel-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 0.6rem;
      font-size: 0.8rem;
      color: var(--muted);
    }

    .market-name {
      font-weight: 600;
      color: var(--text);
      font-size: 0.9rem;
    }

    .price {
      font-size: 1.05rem;
      font-weight: 600;
    }

    .price.up {
      color: var(--accent);
    }

    .price.down {
      color: var(--danger);
    }

    .small-label {
      font-size: 0.78rem;
      color: var(--muted);
    }

    .chart {
      height: 130px;
      border-radius: 0.8rem;
      background: linear-gradient(to top right, rgba(34, 197, 94, 0.12), transparent),
        repeating-linear-gradient(
          to right,
          var(--border),
          var(--border) 1px,
          transparent 1px,
          transparent 10px
        );
      position: relative;
      overflow: hidden;
    }

    .chart-line {
      position: absolute;
      inset: 18px 10px 8px 10px;
      border-radius: 999px;
      background: linear-gradient(
        90deg,
        rgba(239, 68, 68, 0.2),
        rgba(234, 179, 8, 0.5),
        rgba(34, 197, 94, 0.9)
      );
      mask-image: radial-gradient(circle at left, transparent 0, black 30px);
      opacity: 0.9;
    }

    .depth-list {
      display: grid;
      grid-template-columns: 1fr 1fr 1.1fr;
      gap: 0.35rem;
      font-size: 0.8rem;
      color: var(--muted);
    }

    .depth-row {
      display: contents;
    }

    .depth-cell {
      padding: 0.25rem 0.35rem;
      border-radius: 0.4rem;
      font-size: 0.78rem;
    }

    .depth-cell.bid {
      background: rgba(22, 163, 74, 0.12);
      color: #bbf7d0;
    }

    .depth-cell.ask {
      background: rgba(239, 68, 68, 0.12);
      color: #fecaca;
    }

    [data-theme="light"] .depth-cell.bid {
      background: rgba(5, 150, 105, 0.15);
      color: #065f46;
    }

    [data-theme="light"] .depth-cell.ask {
      background: rgba(220, 38, 38, 0.15);
      color: #991b1b;
    }

    .tickets {
      display: flex;
      gap: 0.5rem;
      margin-top: 0.6rem;
    }

    .ticket {
      flex: 1;
      border-radius: 0.8rem;
      padding: 0.6rem 0.65rem;
      background: var(--bg);
      border: 1px dashed var(--border);
      font-size: 0.8rem;
      color: var(--muted);
    }

    .ticket strong {
      display: block;
      color: var(--text);
      font-size: 0.9rem;
      margin-bottom: 0.15rem;
    }

    /* VALUE PROPS */

    .section {
      max-width: 1280px;
      margin: 8rem auto 4rem;
      padding: 0 2rem;
    }

    .section-header {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      gap: 1.5rem;
      margin-bottom: 2rem;
    }

    .section-title {
      font-size: 2rem;
      font-weight: 600;
    }

    .section-kicker {
      color: var(--muted);
      font-size: 1rem;
    }

    .value-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.5rem;
    }

    .card {
      border-radius: 1.1rem;
      background: var(--card);
      border: 1px solid var(--border);
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
      position: relative;
      overflow: hidden;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .card:hover {
      transform: translateY(-2px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    [data-theme="light"] .card:hover {
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    }

    .card-badge {
      font-size: 0.8rem;
      color: var(--accent);
      background: var(--accent-soft);
      padding: 0.2rem 0.6rem;
      border-radius: 999px;
      align-self: flex-start;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      font-weight: 600;
    }

    .card h3 {
      font-size: 1.1rem;
      font-weight: 600;
    }

    .card p {
      font-size: 0.95rem;
      color: var(--muted);
      line-height: 1.6;
    }

    .card ul {
      margin-top: 0.5rem;
      list-style: none;
      font-size: 0.95rem;
      color: var(--muted);
      display: flex;
      flex-direction: column;
      gap: 0.35rem;
    }

    .card ul li::before {
      content: "• ";
      color: var(--accent);
      font-weight: bold;
      margin-right: 0.4rem;
    }

    /* METRICS */

    .metrics {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 1.5rem;
    }

    /* HOTTEST MARKETS */
    .markets-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 1.5rem;
    }

    .market-card {
      border-radius: 1.1rem;
      background: var(--card);
      border: 1px solid var(--border);
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      position: relative;
      overflow: hidden;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      min-height: 140px;
    }

    .market-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    [data-theme="light"] .market-card:hover {
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    }

    .market-info {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .market-name {
      font-size: 0.95rem;
      color: var(--muted);
      font-weight: 500;
    }

    .market-price {
      font-size: 1.3rem;
      font-weight: 600;
    }

    .market-change {
      font-size: 0.9rem;
      font-weight: 600;
    }

    .market-change.up {
      color: var(--accent);
    }

    .market-change.down {
      color: var(--danger);
    }

    .market-action {
      padding: 0.6rem 1.2rem;
      border-radius: 999px;
      border: none;
      background: var(--accent);
      color: #022c22;
      font-weight: 600;
      font-size: 0.9rem;
      cursor: pointer;
      transition: all 0.2s ease;
      opacity: 0;
      transform: translateY(10px);
      position: absolute;
      bottom: 1.5rem;
      left: 50%;
      transform: translate(-50%, 10px);
    }

    .market-card:hover .market-action {
      opacity: 1;
      transform: translate(-50%, 0);
    }

    @media (max-width: 900px) {
      .markets-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 600px) {
      .markets-grid {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    /* HOW IT WORKS */
    .how-it-works-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.5rem;
    }

    .how-it-works-card {
      border-radius: 1.1rem;
      background: var(--card);
      border: 1px solid var(--border);
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      text-align: center;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .how-it-works-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    [data-theme="light"] .how-it-works-card:hover {
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    }

    .how-it-works-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: var(--accent-soft);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 0.5rem;
      color: var(--accent);
      font-size: 1.5rem;
    }

    .how-it-works-card h3 {
      font-size: 1.1rem;
      font-weight: 600;
    }

    .how-it-works-card p {
      font-size: 0.95rem;
      color: var(--muted);
      line-height: 1.6;
    }

    @media (max-width: 900px) {
      .how-it-works-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 600px) {
      .how-it-works-grid {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    /* SECURITY & TRUST */
    .security-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.5rem;
      margin-bottom: 2rem;
    }

    .security-card {
      border-radius: 1.1rem;
      background: var(--card);
      border: 1px solid var(--border);
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      text-align: center;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .security-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    [data-theme="light"] .security-card:hover {
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    }

    .security-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: var(--accent-soft);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 0.5rem;
      color: var(--accent);
      font-size: 1.5rem;
    }

    .security-card h3 {
      font-size: 1.1rem;
      font-weight: 600;
    }

    .security-card p {
      font-size: 0.95rem;
      color: var(--muted);
      line-height: 1.6;
    }

    .security-footer {
      text-align: center;
      padding: 1.5rem;
      border-radius: 1.1rem;
      background: var(--card);
      border: 1px solid var(--border);
    }

    .security-footer p {
      color: var(--muted);
      margin-bottom: 1rem;
    }

    .security-link {
      color: var(--accent);
      font-weight: 500;
      text-decoration: none;
      transition: opacity 0.2s ease;
    }

    .security-link:hover {
      opacity: 0.8;
    }

    /* FAQ */
    .faq-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1rem;
    }

    .faq-item {
      border-radius: 1.1rem;
      background: var(--card);
      border: 1px solid var(--border);
      overflow: hidden;
    }

    .faq-question {
      width: 100%;
      padding: 1.5rem;
      background: transparent;
      border: none;
      text-align: left;
      font-size: 1rem;
      font-weight: 500;
      color: var(--text);
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      transition: background-color 0.2s ease;
    }

    .faq-question:hover {
      background: var(--bg);
    }

    .faq-question span {
      flex: 1;
      margin-right: 1rem;
    }

    .faq-icon {
      width: 20px;
      height: 20px;
      transition: transform 0.2s ease;
      color: var(--muted);
    }

    .faq-question[aria-expanded="true"] .faq-icon {
      transform: rotate(45deg);
    }

    .faq-answer {
      padding: 0 1.5rem;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
    }

    .faq-answer p {
      padding-bottom: 1.5rem;
      color: var(--muted);
      line-height: 1.6;
    }

    .faq-item.active .faq-answer {
      max-height: 500px; /* Adjust as needed */
    }

    .faq-item.active .faq-answer {
      padding-top: 0;
      padding-bottom: 1.5rem;
    }

    @media (max-width: 900px) {
      .security-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 600px) {
      .security-grid {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    .metric {
      border-radius: 1.1rem;
      padding: 1.2rem 1.2rem;
      background: var(--card);
      border: 1px solid var(--border);
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
    }

    .metric-label {
      font-size: 0.8rem;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    .metric-value {
      font-size: 1.3rem;
      font-weight: 600;
    }

    .metric-trend {
      font-size: 0.85rem;
      color: var(--accent);
    }

    /* COMPARISON TABLE */

    .table-wrapper {
      border-radius: 1.1rem;
      border: 1px solid var(--border);
      overflow: hidden;
      background: var(--card);
    }

    table {
      width: 100%;
      border-collapse: collapse;
      font-size: 0.95rem;
    }

    th,
    td {
      padding: 0.9rem 1.1rem;
      text-align: left;
      border-bottom: 1px solid var(--border);
    }

    th {
      font-weight: 600;
      font-size: 0.9rem;
      color: var(--muted);
      background: var(--bg);
    }

    tr:hover td {
      background: var(--bg);
    }

    .pill-good {
      padding: 0.15rem 0.5rem;
      border-radius: 999px;
      background: rgba(22, 163, 74, 0.16);
      color: #bbf7d0;
      font-size: 0.8rem;
    }

    .pill-bad {
      padding: 0.15rem 0.5rem;
      border-radius: 999px;
      background: rgba(239, 68, 68, 0.16);
      color: #fecaca;
      font-size: 0.8rem;
    }

    [data-theme="light"] .pill-good {
      background: rgba(5, 150, 105, 0.15);
      color: #065f46;
    }

    [data-theme="light"] .pill-bad {
      background: rgba(220, 38, 38, 0.15);
      color: #991b1b;
    }

    /* FOOTER CTA */

    .footer-cta {
      margin-top: 3rem;
      padding: 2rem 2rem;
      border-radius: 1.2rem;
      background: var(--card);
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
      flex-wrap: wrap;
      font-size: 1rem;
    }

    .footer-cta p {
      color: var(--muted);
      font-size: 1rem;
    }

    .footer {
      border-top: 1px solid var(--border);
      margin-top: 4rem;
      padding: 2rem 2rem 3rem;
      font-size: 0.85rem;
      color: var(--muted);
    }

    @media (max-width: 900px) {
      .hero {
        grid-template-columns: minmax(0, 1fr);
        margin-top: 3rem;
        min-height: auto;
      }
      .value-grid {
        grid-template-columns: minmax(0, 1fr);
      }
      .metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 600px) {
      .hero {
        padding-inline: 1.5rem;
      }
      .section {
        padding-inline: 1.5rem;
      }
      .metrics {
        grid-template-columns: minmax(0, 1fr);
      }
      .hero-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
      }
      .footer-cta {
        align-items: flex-start;
      }
      .navbar-inner {
        gap: 1rem;
      }
      .logo-text {
        font-size: 1rem;
      }
      .hero h1 {
        font-size: 2.2rem;
      }
    }
    #quickstart {
      padding: 5rem 2rem;
      background: var(--bg-alt);
    }
    
    #quickstart .section-header {
      justify-content: center;
      text-align: center;
      margin-bottom: 3rem;
    }
    
    .steps-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      max-width: 1000px;
      margin: 0 auto;
    }
    
    .step-card {
      padding: 2.5rem 2rem;
      border-radius: 1.1rem;
      background: var(--card);
      border: 1px solid var(--border);
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 1.2rem;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    
    .step-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }
    
    [data-theme="light"] .step-card:hover {
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    }
    
    .step-number {
      width: 60px;
      height: 60px;
      border-radius: 999px;
      background: linear-gradient(135deg, var(--accent), #14b8a6);
      color: #022c22;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 1.4rem;
      flex-shrink: 0;
      box-shadow: 0 8px 20px rgba(34, 197, 94, 0.3);
    }
    
    .step-card h3 {
      font-size: 1.25rem;
      font-weight: 600;
      margin: 0;
    }
    
    .step-card p {
      color: var(--muted);
      font-size: 1rem;
      line-height: 1.6;
      margin: 0;
    }
    
    @media (max-width: 768px) {
      .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }
      
      #quickstart {
        padding: 4rem 1.5rem;
      }
    }
    