  :root {
        --ink: #ffffff;
        --ink-2: #f5f4ff;
        --surface: #f0eeff;
        --glass: rgba(124,58,237,0.04);
        --glass-border: rgba(124,58,237,0.12);
        --accent: #7c3aed;
        --accent-2: #9333ea;
        --accent-glow: rgba(124,58,237,0.2);
        --gold: #f4c842;
        --muted: #6b7280;
        --text: #111827;
        --radius: 20px;
        --font-display: 'Syne', sans-serif;
        --font-body: 'DM Sans', sans-serif;
        --ease-out-expo: cubic-bezier(0.16,1,0.3,1);
      }
 
           *, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
      html { scroll-behavior: smooth; font-size: 16px; }
 
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Inter", sans-serif;
      }

      html {
        scroll-behavior: smooth;
      }
   body {
        font-family: var(--font-body);
        background: #ffffff;
        color: var(--text);
        line-height: 1.6;
        overflow-x: hidden;
        cursor: none;
      }
 
 #cursor-dot {
        width: 8px; height: 8px;
        background: var(--accent-2);
        border-radius: 50%;
        position: fixed; top:0; left:0;
        pointer-events: none;
        z-index: 9999;
        transform: translate(-50%, -50%);
        transition: transform 0.08s, background 0.2s;
      }
      #cursor-ring {
        width: 36px; height: 36px;
        border: 1.5px solid rgba(168,85,247,0.6);
        border-radius: 50%;
        position: fixed; top:0; left:0;
        pointer-events: none;
        z-index: 9998;
        transform: translate(-50%, -50%);
        transition: width 0.3s var(--ease-out-expo), height 0.3s var(--ease-out-expo), border-color 0.3s, top 0.12s var(--ease-out-expo), left 0.12s var(--ease-out-expo);
      }
      body.hovering #cursor-ring {
        width: 60px; height: 60px;
        border-color: var(--accent-2);
        background: rgba(124,58,237,0.08);
      }
 
      /* ── NOISE OVERLAY ─────────────────────────────────────────────── */
      body::before {
        content: '';
        position: fixed; inset: 0;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
        opacity: 0.025;
        pointer-events: none;
        z-index: 9000;
      }
 
      /* ── AMBIENT BG BLOBS ──────────────────────────────────────────── */
      .ambient {
        position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden;
      }
      .blob {
        position: absolute; border-radius: 50%;
        filter: blur(100px); opacity: 0.12;
        animation: drift 18s ease-in-out infinite;
      }
      .blob-1 { width: 600px; height: 600px; background: #a78bfa; top: -200px; left: -150px; animation-delay: 0s; }
      .blob-2 { width: 500px; height: 500px; background: #c084fc; bottom: -200px; right: -150px; animation-delay: -6s; }
      .blob-3 { width: 350px; height: 350px; background: #818cf8; top: 40%; left: 50%; animation-delay: -12s; }
 
      @keyframes drift {
        0%,100% { transform: translate(0,0) scale(1); }
        33% { transform: translate(40px,-60px) scale(1.05); }
        66% { transform: translate(-30px,40px) scale(0.95); }
      }
 
      /* Navigation */
      nav {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        height: 80px;
        display: flex;
        align-items: center;
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
        border-bottom: 1px solid #eee;
      }

      .nav-container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
      }

      .logo {
        font-weight: 800;
        font-size: 1.5rem;
        color: var(--primary);
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 10px;
        cursor: pointer;
      }

      .nav-links {
        display: flex;
        gap: 30px;
        align-items: center;
      }

      .nav-links a {
        text-decoration: none;
        color: var(--text-main);
        font-weight: 500;
        font-size: 0.95rem;
        transition: var(--transition);
      }

      .nav-links a:hover {
        color: var(--primary);
      }

  .btn-cta {
        background: linear-gradient(135deg, var(--accent), var(--accent-2));
        color: white !important;
        padding: 10px 22px;
        border-radius: 50px;
        font-weight: 600;
        font-size: 0.88rem;
        letter-spacing: 0.02em;
        border: none; cursor: pointer;
        transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
        position: relative; overflow: hidden;
      }
      .btn-cta::after {
        content: '';
        position: absolute; inset: 0;
        background: white; opacity: 0;
        transition: opacity 0.2s;
      }
      .btn-cta:hover { opacity: 0.9; transform: translateY(-2px); box-shadow: 0 8px 30px var(--accent-glow); }
      /* Section Toggling Logic */
      .page-view {
        display: block;
      }
      .page-view.hidden {
        display: none;
      }

      #privacy-view {
        /* display: none; */
        padding: 120px 20px 60px;
        max-width: 900px;
        margin: 0 auto;
      }


      /* Hero Section */
      .hero {
        min-height: 100vh;
        display: flex; flex-direction: column;
        align-items: center; justify-content: center;
        text-align: center;
        padding: 120px 24px 80px;
        position: relative; overflow: hidden;
        background: linear-gradient(160deg, #faf8ff 0%, #f3f0ff 40%, #fdf4ff 100%);
      }
           .hero-eyebrow {
        display: inline-flex; align-items: center; gap: 8px;
        background: rgba(124,58,237,0.08);
        border: 1px solid rgba(124,58,237,0.2);
        color: var(--accent);
        font-size: 0.78rem; font-weight: 600;
        letter-spacing: 0.1em; text-transform: uppercase;
        padding: 6px 16px; border-radius: 50px;
        margin-bottom: 32px;
        opacity: 0; animation: fadeUp 0.8s var(--ease-out-expo) 0.2s forwards;
      }
      .hero-eyebrow span { width: 6px; height: 6px; background: var(--accent-2); border-radius: 50%; display: block; animation: pulse 2s infinite; }
      @keyframes pulse { 0%,100%{ opacity:1; transform:scale(1); } 50%{ opacity:0.4; transform:scale(0.7); } }
 
     .hero h1 {
        font-family: var(--font-display);
        font-size: clamp(2.8rem, 6vw, 5.5rem);
        font-weight: 800;
        line-height: 1.05;
        letter-spacing: -0.03em;
        color: #0f0a1e;
        margin-bottom: 28px;
        opacity: 0; animation: fadeUp 0.9s var(--ease-out-expo) 0.35s forwards;
      }
      .hero h1 .highlight {
        background: linear-gradient(135deg, #a855f7, #7c3aed, #c084fc);
        -webkit-background-clip: text; -webkit-text-fill-color: transparent;
        background-clip: text;
      }
 
      .hero p {
        max-width: 600px; margin: 0 auto 48px;
        font-size: 1.15rem; color: #6b7280; font-weight: 300; line-height: 1.75;
        opacity: 0; animation: fadeUp 0.9s var(--ease-out-expo) 0.5s forwards;
      }
 
      .hero-ctas {
        display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
        opacity: 0; animation: fadeUp 0.9s var(--ease-out-expo) 0.65s forwards;
      }
 .btn-primary {
        display: inline-flex; align-items: center; gap: 8px;
        background: linear-gradient(135deg, var(--accent), var(--accent-2));
        color: white; text-decoration: none;
        padding: 14px 32px; border-radius: 50px;
        font-weight: 600; font-size: 0.95rem;
        box-shadow: 0 0 40px var(--accent-glow);
        transition: transform 0.25s, box-shadow 0.25s;
      }
      .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 50px rgba(124,58,237,0.5); }
      .btn-ghost {
        display: inline-flex; align-items: center; gap: 8px;
        background: transparent;
        border: 1.5px solid rgba(124,58,237,0.3);
        color: var(--accent); text-decoration: none;
        padding: 14px 32px; border-radius: 50px;
        font-weight: 500; font-size: 0.95rem;
        transition: background 0.25s, border-color 0.25s, transform 0.25s;
      }
      .btn-ghost:hover { background: rgba(124,58,237,0.06); border-color: var(--accent); transform: translateY(-3px); }
 
      /* Sections General */
      .scroll-hint {
        position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
        display: flex; flex-direction: column; align-items: center; gap: 8px;
        opacity: 0; animation: fadeIn 1s ease 1.2s forwards;
        color: #9ca3af; font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase;
      }
      .scroll-line { width: 1px; height: 50px; background: linear-gradient(to bottom, rgba(124,58,237,0.4), transparent); animation: scrollPulse 2s ease-in-out infinite; }
      @keyframes scrollPulse { 0%,100%{ opacity:1; transform: scaleY(1); } 50%{ opacity:0.4; transform: scaleY(0.5); } }
 
      /* ── SECTION BASE ──────────────────────────────────────────────── */
      section { padding: 120px 24px; position: relative; z-index: 1; }
      .container { max-width: 1280px; margin: 0 auto; }
 
      .section-label {
        display: inline-flex; align-items: center; gap: 8px;
        color: var(--accent-2); font-size: 0.75rem; font-weight: 600;
        letter-spacing: 0.12em; text-transform: uppercase;
        margin-bottom: 16px;
      }
      .section-label::before { content:''; width: 24px; height: 1px; background: var(--accent-2); display: block; }
 
      .section-header { text-align: center; margin-bottom: 72px; }
      .section-header h2 {
        font-family: var(--font-display);
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 700; letter-spacing: -0.02em;
        color: #0f0a1e; margin-bottom: 16px;
      }
      .section-header p { color: var(--muted); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }
 
      /* ── CONNECTOR SECTION ─────────────────────────────────────────── */
      #connector { background: transparent; }
 
      .grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 24px;
      }
 
      .card {
        background: #ffffff;
        border: 1px solid #e9e4ff;
        border-radius: 24px;
        padding: 40px 36px;
        position: relative; overflow: hidden;
        transition: border-color 0.35s, transform 0.35s, box-shadow 0.35s;
        opacity: 0;
        transform: translateY(30px);
        box-shadow: 0 2px 16px rgba(124,58,237,0.05);
      }
      .card.visible { opacity: 1; transform: translateY(0); }
      .card::before {
        content: '';
        position: absolute; top: 0; left: 0; right: 0; height: 2px;
        background: linear-gradient(90deg, transparent, rgba(124,58,237,0.6), transparent);
        opacity: 0; transition: opacity 0.3s;
      }
      .card:hover { border-color: rgba(124,58,237,0.3); transform: translateY(-8px); box-shadow: 0 20px 50px rgba(124,58,237,0.12), 0 4px 20px rgba(0,0,0,0.06); }
      .card:hover::before { opacity: 1; }
 
      .card .icon { font-size: 2.2rem; margin-bottom: 20px; display: block; }
      .card h3 {
        font-family: var(--font-display); font-size: 1.2rem; font-weight: 700;
        color: #0f0a1e; margin-bottom: 12px;
      }
      .card p { color: var(--muted); font-size: 0.95rem; line-height: 1.7; }
 
      /* ── HOW TO USE ────────────────────────────────────────────────── */
      #how-to-use {
        background: linear-gradient(180deg, transparent 0%, rgba(124,58,237,0.02) 50%, transparent 100%);
      }
      .steps-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
 
      .step-item {
        display: flex; align-items: flex-start; gap: 24px;
        background: #ffffff;
        border: 1px solid #e9e4ff;
        border-radius: 20px;
        padding: 28px 32px;
        transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
        opacity: 0; transform: translateX(-20px);
        box-shadow: 0 2px 12px rgba(124,58,237,0.05);
      }
      .step-item.visible { opacity:1; transform: translateX(0); }
      .step-item:hover { border-color: rgba(124,58,237,0.3); transform: translateX(8px); box-shadow: 0 10px 40px rgba(124,58,237,0.1); }
 
      .step-num {
        width: 44px; height: 44px; flex-shrink: 0;
        background: linear-gradient(135deg, var(--accent), var(--accent-2));
        border-radius: 14px;
        display: flex; align-items: center; justify-content: center;
        font-family: var(--font-display); font-weight: 800; font-size: 1rem; color: white;
        box-shadow: 0 4px 20px var(--accent-glow);
      }
      .step-text { flex: 1; }
      .step-text strong { color: #0f0a1e; font-weight: 600; display: block; margin-bottom: 4px; font-size: 1rem; }
      .step-text span { color: var(--muted); font-size: 0.92rem; }
      .step-text em { color: var(--accent); font-style: normal; font-weight: 500; }
 
      /* ── REQUIREMENTS ──────────────────────────────────────────────── */
      .requirements-section { background: transparent; }
      .req-card {
        max-width: 800px; margin: 0 auto;
        background: #ffffff;
        border: 1px solid #e9e4ff;
        border-top: 3px solid var(--accent);
        border-radius: 24px;
        padding: 48px;
        font-size: 1.05rem; color: var(--muted); line-height: 1.8;
        text-align: center;
        box-shadow: 0 4px 24px rgba(124,58,237,0.07);
      }
      .req-card strong { color: #0f0a1e; }
 
      /* ── SERVICES ──────────────────────────────────────────────────── */
      #services { background: transparent; }
 
      /* ── PROCESS ───────────────────────────────────────────────────── */
      .process-section {
        background: linear-gradient(135deg, #faf8ff 0%, #f5f0ff 100%);
        border-top: 1px solid #e9e4ff;
        border-bottom: 1px solid #e9e4ff;
      }
      .process-steps {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
        position: relative;
      }
      .process-steps::after {
        content: '';
        position: absolute;
        top: 28px; left: 12.5%; right: 12.5%;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--accent), var(--accent-2), var(--accent), transparent);
        opacity: 0.3;
      }
      .step {
        text-align: center;
        padding: 20px;
        position: relative; z-index: 1;
        opacity: 0; transform: translateY(20px);
        transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
      }
      .step.visible { opacity: 1; transform: translateY(0); }
      .step-number {
        width: 56px; height: 56px;
        background: #ffffff;
        border: 2px solid rgba(124,58,237,0.25);
        border-radius: 50%;
        display: flex; align-items: center; justify-content: center;
        margin: 0 auto 20px;
        font-family: var(--font-display); font-weight: 800;
        font-size: 1.1rem; color: var(--accent);
        box-shadow: 0 4px 16px rgba(124,58,237,0.1);
        transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
      }
      .step:hover .step-number {
        background: linear-gradient(135deg, var(--accent), var(--accent-2));
        border-color: transparent; color: white;
        box-shadow: 0 0 30px var(--accent-glow);
      }
      .step h4 { font-family: var(--font-display); font-weight: 700; color: #0f0a1e; margin-bottom: 8px; }
      .step p { color: var(--muted); font-size: 0.9rem; }
 
      /* ── FAQ ───────────────────────────────────────────────────────── */
      #faq { background: transparent; }
      .faq-wrap { max-width: 800px; margin: 0 auto; }
      .faq-item {
        border-bottom: 1px solid #e9e4ff;
        overflow: hidden;
      }
      .faq-question {
        padding: 24px 0;
        cursor: pointer;
        display: flex; justify-content: space-between; align-items: center;
        font-family: var(--font-display); font-weight: 600;
        color: #0f0a1e; font-size: 1rem;
        transition: color 0.2s;
        user-select: none;
      }
      .faq-question:hover { color: var(--accent); }
      .faq-icon {
        width: 32px; height: 32px;
        border: 1px solid #e9e4ff;
        border-radius: 50%;
        display: flex; align-items: center; justify-content: center;
        flex-shrink: 0;
        font-size: 1.1rem; color: var(--accent);
        transition: transform 0.3s var(--ease-out-expo), background 0.3s, border-color 0.3s;
      }
      .faq-item.open .faq-icon { transform: rotate(45deg); background: var(--accent); border-color: var(--accent); color: white; }
      .faq-answer {
        max-height: 0; overflow: hidden;
        color: var(--muted); font-size: 0.95rem; line-height: 1.75;
        padding: 0;
        transition: max-height 0.45s var(--ease-out-expo), padding 0.35s;
      }
      .faq-item.open .faq-answer { max-height: 200px; padding: 0 0 24px; }
 
 @keyframes fadeUp {
        from { opacity:0; transform: translateY(30px); }
        to { opacity:1; transform: translateY(0); }
      }
      @keyframes fadeIn {
        from { opacity:0; }
        to { opacity:1; }
      }
      /* Contact Form */
      .contact-flex {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        background: var(--secondary);
        color: white;
        padding: 80px;
        border-radius: 30px;
      }
      .contact-form input,
      .contact-form textarea {
        width: 100%;
        padding: 15px;
        margin-bottom: 20px;
        border-radius: 10px;
        border: none;
        background: rgba(255, 255, 255, 0.1);
        color: white;
      }

      /* Footer */
      footer {
        background: #000;
        color: #888;
        padding: 80px 20px 40px;
      }
      .footer-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
        gap: 40px;
        max-width: 1200px;
        margin: 0 auto;
      }
      .footer-logo {
        color: white;
        font-weight: 800;
        font-size: 1.5rem;
        margin-bottom: 20px;
      }
      .footer-links h4 {
        color: white;
        margin-bottom: 20px;
      }
      .footer-links ul {
        list-style: none;
      }
      .footer-links li {
        margin-bottom: 12px;
      }
      .footer-links a {
        color: #888;
        text-decoration: none;
        cursor: pointer;
        transition: 0.3s;
      }
      .footer-links a:hover {
        color: var(--primary);
      }

      @media (max-width: 992px) {
        .contact-flex {
          grid-template-columns: 1fr;
          padding: 40px;
        }
        .footer-grid {
          grid-template-columns: 1fr 1fr;
        }
      }
      .contact-card {
    padding: 3rem 2rem;
    border-radius: 24px;
    width: full;
    text-align: left;
}

.logo-circle {
    width: 60px;
    height: 60px;
    background: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}

h1 { margin: 0; font-size: 1.8rem; }
.header p { color: #94a3b8; margin-top: 0.5rem; }

.info-section {
    margin: 2.5rem 0;
    text-align: left;
}

.label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748b;
    margin-bottom: 0.5rem;
}

.copy-box {
    background: rgba(0, 0, 0, 0.2);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: monospace;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

#copyBtn {
    background: transparent;
    border: 1px solid #3b82f6;
    color: #3b82f6;
    padding: 4px 10px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.7rem;
    text-transform: uppercase;
}

#copyBtn:hover {
    background: #3b82f6;
    color: white;
}

.main-button {
    display: block;
    background: #3b82f6;
    color: white;
    text-decoration: none;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 600;
}
     #main-view { position: relative; z-index: 1; }

.main-button:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.3);
}

.footer p {
    font-size: 0.8rem;
    color: #475569;
    margin-top: 2rem;
}