      *,
      *::before,
      *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
      }
      :root {
        --lime: #b4e505;
        --lime-dark: #515d0d;
        --bg: #0c0f18;
        --surface: #121626;
        --surface-alt: #181d30;
        --border: #222a42;
        --border-strong: #303c5c;
        --text: #e4e8f4;
        --text-sub: #c0c4d1;
        --text-muted: #6b7694;
      }
      html {
        scroll-behavior: smooth;
      }
      body {
        background: var(--bg);
        color: var(--text);
        font-family: "DM Sans", sans-serif;
        font-size: 16px;
        line-height: 1.6;
        overflow-x: hidden;
      }

      /* PAGE SWITCHING */
      .page {
        display: none;
      }
      .page.active {
        display: block;
      }

      /* NAV */
      nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
        padding: 1.25rem 2rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: rgba(12, 15, 24, 0.85);
        backdrop-filter: blur(16px);
        border-bottom: 1px solid rgba(34, 42, 66, 0.6);
      }
      .nav-logo {
        font-family: "Plus Jakarta Sans", sans-serif;
        font-weight: 700;
        font-size: 1.05rem;
        letter-spacing: -0.01em;
        color: var(--text);
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 8px;
        cursor: pointer;
      }
      .nav-logo .dot {
        width: 8px;
        height: 8px;
        background: var(--lime);
        border-radius: 50%;
        display: inline-block;
      }
      .nav-cta {
        background: var(--lime);
        color: var(--lime-dark);
        font-family: "Plus Jakarta Sans", sans-serif;
        font-weight: 600;
        font-size: 0.82rem;
        padding: 0.5rem 1.2rem;
        border-radius: 100px;
        border: none;
        cursor: pointer;
        text-decoration: none;
        transition:
          opacity 0.2s,
          transform 0.2s;
      }
      .nav-cta:hover {
        opacity: 0.9;
        transform: scale(1.02);
      }

      /* HERO */
      .hero {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 8rem 2rem 4rem;
        position: relative;
        overflow: hidden;
      }
      .hero-bg {
        position: absolute;
        inset: 0;
        pointer-events: none;
        overflow: hidden;
      }
      .hero-bg .glow {
        position: absolute;
        top: 20%;
        left: 50%;
        transform: translateX(-50%);
        width: 600px;
        height: 600px;
        background: radial-gradient(
          circle,
          rgba(180, 229, 5, 0.12) 0%,
          transparent 70%
        );
        border-radius: 50%;
        animation: pulse 4s ease-in-out infinite;
      }
      .hero-bg .grid {
        position: absolute;
        inset: 0;
        background-image:
          linear-gradient(rgba(48, 60, 92, 0.3) 1px, transparent 1px),
          linear-gradient(90deg, rgba(48, 60, 92, 0.3) 1px, transparent 1px);
        background-size: 60px 60px;
        mask-image: radial-gradient(
          ellipse 80% 60% at 50% 40%,
          black 20%,
          transparent 100%
        );
      }
      @keyframes pulse {
        0%,
        100% {
          opacity: 0.6;
          transform: translateX(-50%) scale(1);
        }
        50% {
          opacity: 1;
          transform: translateX(-50%) scale(1.08);
        }
      }
      .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: rgba(180, 229, 5, 0.1);
        border: 1px solid rgba(180, 229, 5, 0.25);
        color: var(--lime);
        font-size: 0.78rem;
        font-weight: 500;
        padding: 0.35rem 0.85rem;
        border-radius: 100px;
        margin-bottom: 2rem;
        opacity: 0;
        transform: translateY(20px);
        animation: fadeUp 0.6s 0.2s ease forwards;
      }
      .hero-badge .live-dot {
        width: 6px;
        height: 6px;
        background: var(--lime);
        border-radius: 50%;
        animation: blink 1.5s ease-in-out infinite;
      }
      @keyframes blink {
        0%,
        100% {
          opacity: 1;
        }
        50% {
          opacity: 0.3;
        }
      }
      .hero h1 {
        font-family: "Plus Jakarta Sans", sans-serif;
        font-weight: 800;
        font-size: clamp(2.6rem, 6.5vw, 5rem);
        line-height: 1.08;
        letter-spacing: -0.03em;
        margin-bottom: 1.25rem;
        opacity: 0;
        transform: translateY(30px);
        animation: fadeUp 0.7s 0.4s ease forwards;
      }
      .hero h1 .accent {
        color: var(--lime);
      }
      .hero-sub {
        font-size: clamp(1rem, 2vw, 1.2rem);
        color: var(--text-sub);
        font-weight: 400;
        max-width: 520px;
        margin: 0 auto 2.5rem;
        opacity: 0;
        transform: translateY(30px);
        animation: fadeUp 0.7s 0.6s ease forwards;
      }
      .hero-actions {
        display: flex;
        align-items: center;
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
        opacity: 0;
        transform: translateY(30px);
        animation: fadeUp 0.7s 0.8s ease forwards;
      }
      .btn-primary {
        background: var(--lime);
        color: var(--lime-dark);
        font-family: "Plus Jakarta Sans", sans-serif;
        font-weight: 600;
        font-size: 0.9rem;
        padding: 0.85rem 2rem;
        border-radius: 100px;
        border: none;
        cursor: pointer;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: all 0.25s;
        box-shadow: 0 0 40px rgba(180, 229, 5, 0.2);
      }
      .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 0 60px rgba(180, 229, 5, 0.35);
      }
      .btn-ghost {
        color: var(--text-sub);
        font-size: 0.9rem;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        transition: color 0.2s;
        cursor: pointer;
        background: none;
        border: none;
      }
      .btn-ghost:hover {
        color: var(--text);
      }
      .hero-stat {
        margin-top: 4rem;
        display: flex;
        gap: 2rem;
        justify-content: center;
        flex-wrap: wrap;
        opacity: 0;
        animation: fadeUp 0.7s 1s ease forwards;
        transform: translateY(20px);
      }
      .stat-item {
        text-align: center;
      }
      .stat-num {
        font-family: "Plus Jakarta Sans", sans-serif;
        font-weight: 700;
        font-size: 1.5rem;
        color: var(--text);
        letter-spacing: -0.02em;
      }
      .stat-num span {
        color: var(--lime);
      }
      .stat-label {
        font-size: 0.8rem;
        color: var(--text-muted);
        margin-top: 2px;
      }
      @keyframes fadeUp {
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      /* SHARED */
      .section {
        padding: 6rem 2rem;
        max-width: 1100px;
        margin: 0 auto;
      }
      .section-label {
        font-family: "Plus Jakarta Sans", sans-serif;
        font-size: 0.72rem;
        font-weight: 600;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--lime);
        margin-bottom: 1rem;
      }
      .section-title {
        font-family: "Plus Jakarta Sans", sans-serif;
        font-weight: 800;
        font-size: clamp(1.8rem, 4vw, 2.8rem);
        line-height: 1.1;
        letter-spacing: -0.025em;
        margin-bottom: 1.25rem;
      }
      .section-sub {
        color: var(--text-sub);
        font-weight: 400;
        font-size: 1rem;
        max-width: 560px;
        line-height: 1.7;
      }
      .full-divider {
        height: 1px;
        background: linear-gradient(
          90deg,
          transparent,
          var(--border),
          transparent
        );
      }

      /* PAIN */
      .pain-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 1px;
        background: var(--border);
        border: 1px solid var(--border);
        border-radius: 16px;
        overflow: hidden;
        margin-top: 3rem;
      }
      .pain-item {
        background: var(--surface);
        padding: 1.75rem;
        transition: background 0.3s;
      }
      .pain-item:hover {
        background: var(--surface-alt);
      }
      .pain-icon {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
        filter: grayscale(1) opacity(0.45);
      }
      .pain-title {
        font-family: "Plus Jakarta Sans", sans-serif;
        font-weight: 600;
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
        text-decoration: line-through;
        color: var(--text-muted);
      }
      .pain-desc {
        font-size: 0.85rem;
        color: var(--text-muted);
        line-height: 1.5;
      }

      /* FEATURES */
      .features-section {
        padding: 6rem 2rem;
        background: var(--surface);
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
      }
      .features-inner {
        max-width: 1100px;
        margin: 0 auto;
      }
      .features-header {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        margin-bottom: 3.5rem;
        align-items: end;
      }
      .feature-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 1rem;
      }
      .feature-card {
        background: var(--bg);
        border: 1px solid var(--border);
        border-radius: 12px;
        padding: 1.5rem;
        transition: all 0.3s;
        position: relative;
        overflow: hidden;
      }
      .feature-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: var(--lime);
        transform: scaleX(0);
        transition: transform 0.3s;
        transform-origin: left;
      }
      .feature-card:hover {
        border-color: var(--border-strong);
        transform: translateY(-3px);
      }
      .feature-card:hover::before {
        transform: scaleX(1);
      }
      .feature-emoji {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
        display: block;
      }
      .feature-name {
        font-family: "Plus Jakarta Sans", sans-serif;
        font-weight: 700;
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
        color: var(--text);
      }
      .feature-desc {
        font-size: 0.83rem;
        color: var(--text-sub);
        line-height: 1.55;
      }

      /* USE CASES */
      .usecases-section {
        padding: 6rem 2rem;
      }
      .usecases-inner {
        max-width: 1100px;
        margin: 0 auto;
      }
      .usecases-header {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        margin-bottom: 3.5rem;
        align-items: end;
      }
      .usecase-tabs {
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
        margin-bottom: 2rem;
      }
      .tab-btn {
        font-family: "Plus Jakarta Sans", sans-serif;
        font-size: 0.82rem;
        font-weight: 600;
        padding: 0.45rem 1rem;
        border-radius: 100px;
        border: 1px solid var(--border);
        background: transparent;
        color: var(--text-muted);
        cursor: pointer;
        transition: all 0.2s;
      }
      .tab-btn:hover {
        border-color: var(--border-strong);
        color: var(--text-sub);
      }
      .tab-btn.active {
        background: rgba(180, 229, 5, 0.12);
        border-color: rgba(180, 229, 5, 0.35);
        color: var(--lime);
      }
      .usecase-panel {
        display: none;
      }
      .usecase-panel.active {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
      }
      .usecase-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
        display: block;
      }
      .usecase-title {
        font-family: "Plus Jakarta Sans", sans-serif;
        font-weight: 800;
        font-size: 1.6rem;
        letter-spacing: -0.02em;
        margin-bottom: 0.75rem;
        line-height: 1.2;
      }
      .usecase-desc {
        color: var(--text-sub);
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
      }
      .usecase-points {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 0.6rem;
      }
      .usecase-points li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: 0.88rem;
        color: var(--text-sub);
      }
      .usecase-points .check {
        width: 18px;
        height: 18px;
        background: rgba(180, 229, 5, 0.15);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        margin-top: 1px;
      }
      .usecase-points .check::after {
        content: "";
        width: 6px;
        height: 4px;
        border-left: 1.5px solid var(--lime);
        border-bottom: 1.5px solid var(--lime);
        transform: rotate(-45deg) translateY(-1px);
      }
      .usecase-visual {
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: 16px;
        padding: 1.5rem;
        min-height: 280px;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
      }
      .uc-row {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 0.75rem;
        background: var(--surface-alt);
        border-radius: 8px;
        border: 1px solid var(--border);
        transition: border-color 0.2s;
      }
      .uc-row:hover {
        border-color: var(--border-strong);
      }
      .uc-avatar {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.6rem;
        font-weight: 700;
        flex-shrink: 0;
        font-family: "Plus Jakarta Sans", sans-serif;
      }
      .uc-info {
        flex: 1;
      }
      .uc-name {
        font-size: 0.75rem;
        font-weight: 600;
        color: var(--text);
        font-family: "Plus Jakarta Sans", sans-serif;
      }
      .uc-role {
        font-size: 0.65rem;
        color: var(--text-muted);
      }
      .uc-status {
        font-size: 0.65rem;
        font-weight: 500;
        padding: 2px 8px;
        border-radius: 100px;
      }
      .status-live {
        background: rgba(180, 229, 5, 0.15);
        color: var(--lime);
        border: 1px solid rgba(180, 229, 5, 0.3);
      }
      .status-ready {
        background: rgba(59, 130, 246, 0.12);
        color: #60a5fa;
        border: 1px solid rgba(59, 130, 246, 0.25);
      }
      .status-wait {
        background: rgba(245, 158, 11, 0.1);
        color: #fbbf24;
        border: 1px solid rgba(245, 158, 11, 0.2);
      }
      .status-done {
        background: rgba(107, 114, 148, 0.12);
        color: var(--text-muted);
        border: 1px solid var(--border);
      }

      /* SHOWCASE */
      .showcase-section {
        padding: 6rem 2rem;
        max-width: 1100px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
      }
      .phone-mockup {
        position: relative;
        display: flex;
        justify-content: center;
      }
      .phone-frame {
        width: 240px;
        height: 480px;
        background: var(--surface);
        border: 1px solid var(--border-strong);
        border-radius: 36px;
        padding: 16px;
        position: relative;
        overflow: hidden;
        box-shadow:
          0 40px 80px rgba(0, 0, 0, 0.6),
          0 0 0 1px rgba(255, 255, 255, 0.05);
      }
      .phone-notch {
        width: 80px;
        height: 22px;
        background: var(--bg);
        border-radius: 0 0 16px 16px;
        margin: 0 auto 12px;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .phone-notch::after {
        content: "";
        width: 40px;
        height: 4px;
        background: var(--border-strong);
        border-radius: 2px;
      }
      .phone-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 12px;
      }
      .phone-header-title {
        font-family: "Plus Jakarta Sans", sans-serif;
        font-weight: 700;
        font-size: 0.8rem;
        color: var(--text);
      }
      .live-badge {
        background: rgba(180, 229, 5, 0.15);
        color: var(--lime);
        font-size: 0.6rem;
        font-weight: 600;
        padding: 2px 6px;
        border-radius: 100px;
        border: 1px solid rgba(180, 229, 5, 0.3);
        display: flex;
        align-items: center;
        gap: 3px;
      }
      .brief-item {
        background: var(--surface-alt);
        border: 1px solid var(--border);
        border-radius: 8px;
        padding: 10px;
        margin-bottom: 6px;
      }
      .brief-item-title {
        font-size: 0.65rem;
        font-weight: 500;
        color: var(--text);
        margin-bottom: 2px;
      }
      .brief-item-sub {
        font-size: 0.58rem;
        color: var(--text-muted);
      }
      .brief-item.active {
        border-color: rgba(180, 229, 5, 0.4);
        background: rgba(180, 229, 5, 0.05);
      }
      .brief-item.active .brief-item-title {
        color: var(--lime);
      }
      .phone-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 6px;
        margin-top: 8px;
      }
      .phone-stat {
        background: var(--surface-alt);
        border: 1px solid var(--border);
        border-radius: 6px;
        padding: 8px;
        text-align: center;
      }
      .phone-stat-num {
        font-family: "Plus Jakarta Sans", sans-serif;
        font-weight: 700;
        font-size: 0.9rem;
        color: var(--lime);
      }
      .phone-stat-label {
        font-size: 0.5rem;
        color: var(--text-muted);
        margin-top: 1px;
      }
      .checklist {
        list-style: none;
        margin: 2rem 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
      }
      .checklist li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: 0.9rem;
        color: var(--text-sub);
      }
      .check {
        width: 18px;
        height: 18px;
        background: rgba(180, 229, 5, 0.15);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        margin-top: 2px;
      }
      .check::after {
        content: "";
        width: 6px;
        height: 4px;
        border-left: 1.5px solid var(--lime);
        border-bottom: 1.5px solid var(--lime);
        transform: rotate(-45deg) translateY(-1px);
      }

      /* FAQ */
      .faq-section {
        padding: 6rem 2rem;
        background: var(--surface);
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
      }
      .faq-inner {
        max-width: 860px;
        margin: 0 auto;
      }
      .faq-header {
        text-align: center;
        margin-bottom: 3rem;
      }
      .faq-header .section-sub {
        margin: 0 auto;
        text-align: center;
      }
      .faq-item {
        border-bottom: 1px solid var(--border);
      }
      .faq-item:first-child {
        border-top: 1px solid var(--border);
      }
      .faq-question {
        width: 100%;
        background: none;
        border: none;
        cursor: pointer;
        padding: 1.25rem 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        text-align: left;
        color: var(--text);
        font-family: "Plus Jakarta Sans", sans-serif;
        font-weight: 600;
        font-size: 0.95rem;
        transition: color 0.2s;
      }
      .faq-question:hover {
        color: var(--lime);
      }
      .faq-icon {
        width: 22px;
        height: 22px;
        border-radius: 50%;
        border: 1px solid var(--border-strong);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        transition: all 0.3s;
        color: var(--text-muted);
        font-size: 0.9rem;
        line-height: 1;
      }
      .faq-item.open .faq-icon {
        background: rgba(180, 229, 5, 0.12);
        border-color: rgba(180, 229, 5, 0.35);
        color: var(--lime);
        transform: rotate(45deg);
      }
      .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
      }
      .faq-answer-inner {
        padding: 0 0 1.25rem;
        font-size: 0.9rem;
        color: var(--text-sub);
        line-height: 1.75;
      }
      .faq-item.open .faq-answer {
        max-height: 300px;
      }

      /* CTA */
      .cta-section {
        padding: 6rem 2rem;
        text-align: center;
        position: relative;
        overflow: hidden;
      }
      .cta-bg {
        position: absolute;
        inset: 0;
        background: radial-gradient(
          ellipse 60% 80% at 50% 50%,
          rgba(180, 229, 5, 0.07) 0%,
          transparent 70%
        );
        pointer-events: none;
      }
      .cta-inner {
        max-width: 680px;
        margin: 0 auto;
        position: relative;
      }
      .store-buttons {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 2.5rem;
      }
      .store-btn {
        display: inline-flex;
        /* align-items: center; */
        text-align: left;
        gap: 10px;
        background: var(--surface);
        border: 1px solid var(--border-strong);
        color: var(--text);
        text-decoration: none;
        padding: 0.8rem 1.5rem;
        border-radius: 12px;
        font-size: 0.85rem;
        font-weight: 500;
        transition: all 0.25s;
      }
      .store-btn:hover {
        border-color: var(--lime);
        background: rgba(180, 229, 5, 0.05);
        transform: translateY(-2px);
      }
      .store-icon {
        font-size: 1.4rem;
      }

      /* FOOTER */
      footer {
        border-top: 1px solid var(--border);
        padding: 2.5rem 2rem;
        max-width: 100%;
      }
      .footer-inner {
        max-width: 1100px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 1.5rem;
      }
      .footer-brand .copy {
        font-size: 0.8rem;
        color: var(--text-muted);
        margin-top: 4px;
      }
      .footer-tagline {
        font-family: "Plus Jakarta Sans", sans-serif;
        font-size: 0.85rem;
        color: var(--text-muted);
        font-weight: 500;
      }
      .footer-tagline span {
        color: var(--lime);
      }
      .footer-links {
        display: flex;
        gap: 1.5rem;
        flex-wrap: wrap;
      }
      .footer-link {
        font-size: 0.8rem;
        color: var(--text-muted);
        text-decoration: none;
        cursor: pointer;
        background: none;
        border: none;
        transition: color 0.2s;
        font-family: "DM Sans", sans-serif;
      }
      .footer-link:hover {
        color: var(--lime);
      }

      /* SCROLL ANIMATIONS */
      .reveal {
        opacity: 0;
        transform: translateY(40px);
        transition:
          opacity 0.7s ease,
          transform 0.7s ease;
      }
      .reveal.visible {
        opacity: 1;
        transform: translateY(0);
      }
      .reveal-delay-1 {
        transition-delay: 0.1s;
      }
      .reveal-delay-2 {
        transition-delay: 0.2s;
      }
      .reveal-delay-3 {
        transition-delay: 0.3s;
      }
      .reveal-delay-4 {
        transition-delay: 0.4s;
      }

      /* LEGAL PAGES */
      .legal-page {
        padding-top: 80px;
        min-height: 100vh;
      }
      .legal-hero {
        padding: 4rem 2rem 3rem;
        border-bottom: 1px solid var(--border);
        background: var(--surface);
      }
      .legal-hero-inner {
        max-width: 860px;
        margin: 0 auto;
      }
      .legal-back {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        color: var(--text-muted);
        font-size: 0.82rem;
        cursor: pointer;
        background: none;
        border: none;
        font-family: "DM Sans", sans-serif;
        margin-bottom: 1.5rem;
        transition: color 0.2s;
      }
      .legal-back:hover {
        color: var(--lime);
      }
      .legal-back svg {
        width: 14px;
        height: 14px;
      }
      .legal-title {
        font-family: "Plus Jakarta Sans", sans-serif;
        font-weight: 800;
        font-size: clamp(1.8rem, 4vw, 2.6rem);
        letter-spacing: -0.025em;
        margin-bottom: 0.5rem;
      }
      .legal-meta {
        font-size: 0.82rem;
        color: var(--text-muted);
      }
      .legal-meta span {
        color: var(--lime);
      }
      .legal-body {
        max-width: 860px;
        margin: 0 auto;
        padding: 3rem 2rem 6rem;
      }
      .legal-body h2 {
        font-family: "Plus Jakarta Sans", sans-serif;
        font-weight: 700;
        font-size: 1.1rem;
        color: var(--text);
        margin: 2.5rem 0 0.75rem;
        letter-spacing: -0.01em;
      }
      .legal-body h2:first-child {
        margin-top: 0;
      }
      .legal-body p {
        font-size: 0.92rem;
        color: var(--text-sub);
        line-height: 1.8;
        margin-bottom: 1rem;
      }
      .legal-body ul {
        margin: 0.5rem 0 1rem 1.25rem;
        display: flex;
        flex-direction: column;
        gap: 0.4rem;
      }
      .legal-body ul li {
        font-size: 0.92rem;
        color: var(--text-sub);
        line-height: 1.7;
      }
      .legal-body a {
        color: var(--lime);
        text-decoration: none;
      }
      .legal-body a:hover {
        text-decoration: underline;
      }
      .legal-divider {
        height: 1px;
        background: var(--border);
        margin: 2rem 0;
      }
      .legal-highlight {
        background: rgba(180, 229, 5, 0.06);
        border: 1px solid rgba(180, 229, 5, 0.15);
        border-radius: 10px;
        padding: 1rem 1.25rem;
        margin: 1.5rem 0;
      }
      .legal-highlight p {
        margin: 0;
        font-size: 0.88rem;
        color: var(--text-sub);
      }
      .legal-highlight p strong {
        color: var(--text);
        font-weight: 600;
      }

      @media (max-width: 700px) {
        .features-header,
        .usecases-header,
        .showcase-section {
          grid-template-columns: 1fr !important;
          gap: 2rem !important;
        }
        .usecase-panel.active {
          grid-template-columns: 1fr !important;
        }
        .footer-inner {
          flex-direction: column;
          align-items: flex-start;
          gap: 1rem;
        }
      }
