    /* ============================================
       LANDING PAGE — SEPARATE NAMESPACE
       ============================================ */
    #view-landing {
      overflow-x: hidden;
    }

    /* Landing nav (NOT .topnav) */
    #view-landing .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 40px;
      background: rgba(255, 255, 255, 0.6);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      position: sticky;
      top: 0;
      z-index: 100;
    }

    #view-landing .nav .logo {
      font-weight: 800;
      font-size: 18px;
    }

    #view-landing .nav .nav-right {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    #view-landing .nav .nav-link {
      font-size: 14px;
      font-weight: 500;
      color: #9ca3af;
      text-decoration: none;
      transition: color 0.15s;
      padding: 0;
      border-radius: 0;
    }

    #view-landing .nav .nav-link:hover { color: #1c132c; }

    #view-landing .btn-connect {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 10px 24px;
      border-radius: 14px;
      background: linear-gradient(135deg, #1894E8, #9F72FF);
      color: #fff;
      font-size: 14px;
      font-weight: 600;
      border: none;
      cursor: pointer;
      text-decoration: none;
      transition: box-shadow 0.2s, transform 0.2s;
    }

    #view-landing .btn-connect:hover {
      transform: translateY(-1px);
      box-shadow: 0 4px 20px rgba(24, 148, 232, 0.35);
    }

    /* Hero */
    #view-landing .hero {
      text-align: center;
      padding: 80px 40px 60px;
      max-width: 1100px;
      margin: 0 auto;
    }

    #view-landing .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 20px;
      border-radius: 50px;
      background: #F1EBFF;
      font-size: 13px;
      font-weight: 600;
      color: #9F72FF;
      margin-bottom: 28px;
      animation: landingFadeInUp 0.5s ease both;
    }

    #view-landing .hero-title {
      font-size: clamp(40px, 6vw, 72px);
      font-weight: 800;
      line-height: 1.05;
      letter-spacing: -2px;
      margin-bottom: 20px;
      animation: landingFadeInUp 0.5s 0.08s ease both;
    }

    #view-landing .gradient-text {
      background: linear-gradient(135deg, #1894E8, #9F72FF);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    #view-landing .hero-subtitle {
      font-size: 18px;
      color: #6b7280;
      max-width: 520px;
      margin: 0 auto 36px;
      line-height: 1.6;
      animation: landingFadeInUp 0.5s 0.16s ease both;
    }

    #view-landing .hero-buttons {
      display: flex;
      justify-content: center;
      gap: 14px;
      margin-bottom: 64px;
      animation: landingFadeInUp 0.5s 0.24s ease both;
    }

    #view-landing .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 32px;
      border-radius: 16px;
      background: linear-gradient(135deg, #1894E8, #9F72FF);
      color: #fff;
      font-size: 16px;
      font-weight: 700;
      border: none;
      cursor: pointer;
      text-decoration: none;
      transition: box-shadow 0.2s, transform 0.2s;
    }

    #view-landing .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(24, 148, 232, 0.35);
    }

    #view-landing .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 32px;
      border-radius: 16px;
      background: transparent;
      color: #1c132c;
      font-size: 16px;
      font-weight: 600;
      border: 2px solid #e5e7eb;
      cursor: pointer;
      text-decoration: none;
      transition: border-color 0.2s, background 0.2s;
    }

    #view-landing .btn-ghost:hover {
      border-color: #1c132c;
      background: rgba(28, 19, 44, 0.03);
    }

    /* Landing cards */
    #view-landing .landing-cards {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      max-width: 640px;
      margin: 0 auto 80px;
      perspective: 1200px;
      animation: landingFadeInUp 0.6s 0.32s ease both;
    }

    #view-landing .landing-cards .card {
      background:
        linear-gradient(180deg, #ffffff 0%, #f8f9fc 100%) padding-box,
        linear-gradient(180deg, rgba(0,0,0,0.06), rgba(0,0,0,0.03)) border-box;
      border: 2px solid transparent;
      border-radius: 20px;
      padding: 32px;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
      animation: spin-border 3s linear infinite paused;
      transition:
        transform 0.25s cubic-bezier(0.33, 1, 0.68, 1),
        box-shadow 0.25s cubic-bezier(0.33, 1, 0.68, 1);
      text-decoration: none;
      color: inherit;
      display: block;
      font-family: inherit;
      text-align: left;
    }

    #view-landing .landing-cards .card::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 600'%3E%3Cfilter id='a'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23a)'/%3E%3C/svg%3E");
      background-repeat: repeat;
      background-size: 182px;
      opacity: 0.03;
      pointer-events: none;
      z-index: 0;
    }

    #view-landing .landing-cards .card::after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      opacity: 0;
      transition: opacity 0.3s ease;
      pointer-events: none;
      z-index: 0;
    }

    #view-landing .landing-cards .card-payin::after {
      background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(24, 148, 232, 0.06), transparent 40%);
    }

    #view-landing .landing-cards .card-payout::after {
      background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(159, 114, 255, 0.06), transparent 40%);
    }

    #view-landing .landing-cards .card:hover::after { opacity: 1; }
    #view-landing .landing-cards .card > * { position: relative; z-index: 1; }

    #view-landing .landing-cards .card-payin:hover {
      transform: translateY(-4px);
      box-shadow: 0 4px 12px rgba(24, 148, 232, 0.08), 0 16px 40px rgba(24, 148, 232, 0.12);
      background: linear-gradient(180deg, #ffffff 0%, #f8f9fc 100%) padding-box, conic-gradient(from var(--border-angle), #1894E8, #45b0f0, #9F72FF, #1894E8) border-box;
      animation-play-state: running;
    }

    #view-landing .landing-cards .card-payout:hover {
      transform: translateY(-4px);
      box-shadow: 0 4px 12px rgba(159, 114, 255, 0.08), 0 16px 40px rgba(159, 114, 255, 0.12);
      background: linear-gradient(180deg, #ffffff 0%, #f8f9fc 100%) padding-box, conic-gradient(from var(--border-angle), #9F72FF, #b99aff, #1894E8, #9F72FF) border-box;
      animation-play-state: running;
    }

    #view-landing .landing-cards .card-icon {
      width: 48px; height: 48px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 24px;
      transition: box-shadow 0.3s ease, transform 0.3s ease;
    }

    #view-landing .landing-cards .card-payin .card-icon {
      background: linear-gradient(135deg, #1894E8, #45b0f0);
      box-shadow: 0 4px 16px rgba(24, 148, 232, 0.25);
    }
    #view-landing .landing-cards .card-payin:hover .card-icon {
      box-shadow: 0 0 0 8px rgba(24, 148, 232, 0.08), 0 8px 24px rgba(24, 148, 232, 0.3);
      transform: scale(1.05);
    }
    #view-landing .landing-cards .card-payout .card-icon {
      background: linear-gradient(135deg, #9F72FF, #b99aff);
      box-shadow: 0 4px 16px rgba(159, 114, 255, 0.25);
    }
    #view-landing .landing-cards .card-payout:hover .card-icon {
      box-shadow: 0 0 0 8px rgba(159, 114, 255, 0.08), 0 8px 24px rgba(159, 114, 255, 0.3);
      transform: scale(1.05);
    }

    #view-landing .landing-cards .card-icon svg { width: 22px; height: 22px; }

    #view-landing .landing-cards .card-title {
      font-size: 19px; font-weight: 700; margin-bottom: 8px;
      color: #1c132c; letter-spacing: -0.3px;
    }
    #view-landing .landing-cards .card-desc {
      color: #9ca3af; font-size: 14px; line-height: 1.55; margin-bottom: 24px;
    }

    #view-landing .landing-cards .card-btn {
      display: inline-flex; align-items: center; gap: 6px;
      padding: 10px 22px; border-radius: 12px;
      font-size: 14px; font-weight: 600; font-family: 'JetBrains Mono', monospace;
      cursor: pointer; border: none; color: #fff;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    #view-landing .landing-cards .card-payin .card-btn { background: linear-gradient(135deg, #1894E8, #45b0f0); }
    #view-landing .landing-cards .card-payin .card-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(24, 148, 232, 0.35); }
    #view-landing .landing-cards .card-payout .card-btn { background: linear-gradient(135deg, #9F72FF, #b99aff); }
    #view-landing .landing-cards .card-payout .card-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(159, 114, 255, 0.35); }
    #view-landing .landing-cards .card-btn svg { width: 14px; height: 14px; transition: transform 0.2s ease; }
    #view-landing .landing-cards .card-btn:hover svg { transform: translateX(3px); }

    /* Flow section */
    #view-landing .flow-section {
      max-width: 1100px; margin: 0 auto; padding: 0 40px 80px; position: relative;
    }
    #view-landing .flow-section .section-title { margin-bottom: 48px; }

    #view-landing .flow-area {
      position: relative; height: 380px; margin: 0 auto; max-width: 960px;
    }

    #view-landing canvas.flow-canvas {
      position: absolute; top: 0; left: 0; width: 100%; height: 100%;
      pointer-events: none; z-index: 2;
    }

    #view-landing .flow-column {
      position: absolute; top: 50%; transform: translateY(-50%);
      display: flex; flex-direction: column; gap: 16px; z-index: 5;
    }
    #view-landing .flow-senders { left: 0; }
    #view-landing .flow-recipients { right: 0; }

    #view-landing .flow-node {
      display: flex; align-items: center; gap: 10px;
      padding: 12px 16px; background: #fff;
      border: 1px solid rgba(0,0,0,0.06); border-radius: 14px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.04); min-width: 160px;
      opacity: 0;
      transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.3s, box-shadow 0.3s;
    }
    #view-landing .flow-node.sender { transform: translateX(-30px); }
    #view-landing .flow-node.recipient { transform: translateX(30px); }
    #view-landing .flow-node.visible { opacity: 1; transform: translateX(0); }
    #view-landing .flow-node.receiving {
      border-color: rgba(159,114,255,0.5);
      box-shadow: 0 2px 16px rgba(159,114,255,0.15);
    }

    #view-landing .node-avatar { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
    #view-landing .node-info { display: flex; flex-direction: column; }
    #view-landing .node-name { font-size: 14px; font-weight: 600; color: #1c132c; line-height: 1.2; }
    #view-landing .node-chain { font-size: 11px; color: #9ca3af; font-weight: 500; }

    /* Hub */
    #view-landing .flow-hub {
      position: absolute; top: 50%; left: 50%;
      transform: translate(-50%, -50%); z-index: 10;
      opacity: 0; transition: opacity 0.6s ease 0.2s;
      cursor: pointer; user-select: none;
    }
    #view-landing .flow-hub.visible { opacity: 1; }

    #view-landing .hub-circle {
      width: 140px; height: 140px; border-radius: 50%; background: #fff;
      border: 2px solid transparent;
      background-image: linear-gradient(#fff, #fff), linear-gradient(135deg, #1894E8, #9F72FF);
      background-origin: border-box; background-clip: padding-box, border-box;
      box-shadow: 0 4px 24px rgba(24,148,232,0.1);
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      transition: box-shadow 0.3s; position: relative;
    }
    #view-landing .flow-hub:hover .hub-circle { box-shadow: 0 4px 32px rgba(24,148,232,0.2); }

    #view-landing .hub-dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: linear-gradient(135deg, #1894E8, #9F72FF); margin-bottom: 6px;
    }
    #view-landing .hub-label { font-size: 12px; font-weight: 700; color: #1c132c; }

    #view-landing .hub-pulse {
      position: absolute; top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 140px; height: 140px; border-radius: 50%;
      border: 2px solid rgba(24,148,232,0.25);
      opacity: 0; pointer-events: none;
    }

    @keyframes landingHubPulse {
      0% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
      100% { transform: translate(-50%, -50%) scale(1.6); opacity: 0; }
    }
    #view-landing .hub-pulse.active { animation: landingHubPulse 0.6s ease-out; }

    #view-landing .hub-ripple {
      position: absolute; top: 50%; left: 50%;
      transform: translate(-50%, -50%) scale(1);
      width: 140px; height: 140px; border-radius: 50%;
      border: 1.5px solid rgba(159,114,255,0.4);
      opacity: 0; pointer-events: none;
    }

    @keyframes landingRippleWave {
      0% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
      100% { transform: translate(-50%, -50%) scale(3); opacity: 0; }
    }

    #view-landing .hub-bubble {
      position: absolute; top: -44px; left: 50%; transform: translateX(-50%);
      padding: 6px 16px; border-radius: 10px; background: #fff; color: #1c132c;
      font-size: 13px; font-weight: 600; box-shadow: 0 2px 12px rgba(0,0,0,0.1);
      white-space: nowrap; opacity: 0; pointer-events: none;
      transition: opacity 0.4s ease;
      animation: landingBubbleBounce 2s ease-in-out infinite; z-index: 20;
    }
    #view-landing .hub-bubble::after {
      content: ''; position: absolute; bottom: -6px; left: 50%; transform: translateX(-50%);
      width: 0; height: 0; border-left: 6px solid transparent;
      border-right: 6px solid transparent; border-top: 6px solid #fff;
    }
    #view-landing .hub-bubble.visible { opacity: 1; }
    #view-landing .hub-bubble.hidden { opacity: 0; transition: opacity 0.3s ease; }

    @keyframes landingBubbleBounce {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50% { transform: translateX(-50%) translateY(-6px); }
    }

    /* Flow labels */
    #view-landing .flow-label {
      position: absolute; top: 10px; font-size: 11px; font-weight: 600;
      letter-spacing: 1.5px; text-transform: uppercase; z-index: 5;
      pointer-events: none; opacity: 0; transition: opacity 0.6s ease;
    }
    #view-landing .flow-label.visible { opacity: 1; }
    #view-landing .flow-label-in { left: 22%; color: rgba(24,148,232,0.45); }
    #view-landing .flow-label-out { right: 22%; color: rgba(159,114,255,0.45); }

    /* Flying tokens */
    #view-landing .flying-token {
      position: absolute; width: 32px; height: 32px; border-radius: 50%;
      background: #fff; display: flex; align-items: center; justify-content: center;
      pointer-events: none; z-index: 8; opacity: 0;
      will-change: transform, opacity; box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    }
    #view-landing .flying-token-icon { width: 22px; height: 22px; border-radius: 50%; object-fit: cover; }
    #view-landing .flying-token-label {
      position: absolute; bottom: -14px; left: 50%; transform: translateX(-50%);
      font-size: 8px; font-weight: 700; color: #6b7280; white-space: nowrap;
    }

    #view-landing .demo-label { text-align: center; margin-top: 16px; font-size: 12px; color: #b0b4bd; }

    /* Section labels/titles */
    #view-landing .section-label {
      text-align: center; font-size: 13px; font-weight: 600;
      text-transform: uppercase; letter-spacing: 0.12em; color: #9F72FF; margin-bottom: 10px;
    }
    #view-landing .section-title {
      text-align: center; font-size: clamp(24px, 3.5vw, 36px);
      font-weight: 800; letter-spacing: -1px; margin-bottom: 40px;
    }

    /* Features */
    #view-landing .features { max-width: 1000px; margin: 0 auto; padding: 0 40px 80px; }

    #view-landing .features-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
    }

    #view-landing .feature-card {
      background: linear-gradient(180deg, #ffffff 0%, #f8f9fc 100%) padding-box,
        linear-gradient(180deg, rgba(0,0,0,0.06), rgba(0,0,0,0.03)) border-box;
      border: 2px solid transparent; border-radius: 20px; padding: 28px;
      position: relative; overflow: hidden; cursor: default;
      animation: spin-border 3s linear infinite paused;
      transition: transform 0.25s cubic-bezier(0.33, 1, 0.68, 1), box-shadow 0.25s cubic-bezier(0.33, 1, 0.68, 1);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    }

    #view-landing .feature-card::before {
      content: ""; position: absolute; inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 600'%3E%3Cfilter id='a'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23a)'/%3E%3C/svg%3E");
      background-repeat: repeat; background-size: 182px; opacity: 0.03;
      pointer-events: none; z-index: 0;
    }

    #view-landing .feature-card::after {
      content: ""; position: absolute; inset: 0; border-radius: inherit;
      opacity: 0; transition: opacity 0.3s ease; pointer-events: none; z-index: 0;
    }

    #view-landing .feature-card:nth-child(1)::after { background: radial-gradient(500px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(159, 114, 255, 0.06), transparent 40%); }
    #view-landing .feature-card:nth-child(2)::after { background: radial-gradient(500px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(24, 148, 232, 0.06), transparent 40%); }
    #view-landing .feature-card:nth-child(3)::after { background: radial-gradient(500px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(98, 226, 164, 0.06), transparent 40%); }

    #view-landing .feature-card:hover::after { opacity: 1; }
    #view-landing .feature-card > * { position: relative; z-index: 1; }
    #view-landing .feature-card:hover { transform: translateY(-4px); animation-play-state: running; }

    #view-landing .feature-card:nth-child(1):hover {
      box-shadow: 0 4px 12px rgba(159, 114, 255, 0.08), 0 16px 40px rgba(159, 114, 255, 0.12);
      background: linear-gradient(180deg, #fff 0%, #f8f9fc 100%) padding-box, conic-gradient(from var(--border-angle), #9F72FF, #b99aff, #1894E8, #9F72FF) border-box;
    }
    #view-landing .feature-card:nth-child(2):hover {
      box-shadow: 0 4px 12px rgba(24, 148, 232, 0.08), 0 16px 40px rgba(24, 148, 232, 0.12);
      background: linear-gradient(180deg, #fff 0%, #f8f9fc 100%) padding-box, conic-gradient(from var(--border-angle), #1894E8, #45b0f0, #9F72FF, #1894E8) border-box;
    }
    #view-landing .feature-card:nth-child(3):hover {
      box-shadow: 0 4px 12px rgba(98, 226, 164, 0.08), 0 16px 40px rgba(98, 226, 164, 0.12);
      background: linear-gradient(180deg, #fff 0%, #f8f9fc 100%) padding-box, conic-gradient(from var(--border-angle), #62E2A4, #1894E8, #9F72FF, #62E2A4) border-box;
    }

    #view-landing .feature-icon {
      width: 44px; height: 44px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 20px; transition: box-shadow 0.3s, transform 0.3s;
    }
    #view-landing .feature-icon svg { width: 20px; height: 20px; }
    #view-landing .feature-icon.purple { background: linear-gradient(135deg, #9F72FF, #b99aff); box-shadow: 0 4px 16px rgba(159, 114, 255, 0.25); }
    #view-landing .feature-icon.blue { background: linear-gradient(135deg, #1894E8, #45b0f0); box-shadow: 0 4px 16px rgba(24, 148, 232, 0.25); }
    #view-landing .feature-icon.mint { background: linear-gradient(135deg, #62E2A4, #3dcea0); box-shadow: 0 4px 16px rgba(98, 226, 164, 0.25); }
    #view-landing .feature-card:hover .feature-icon { transform: scale(1.05); }
    #view-landing .feature-card:nth-child(1):hover .feature-icon { box-shadow: 0 0 0 8px rgba(159, 114, 255, 0.08), 0 8px 24px rgba(159, 114, 255, 0.3); }
    #view-landing .feature-card:nth-child(2):hover .feature-icon { box-shadow: 0 0 0 8px rgba(24, 148, 232, 0.08), 0 8px 24px rgba(24, 148, 232, 0.3); }
    #view-landing .feature-card:nth-child(3):hover .feature-icon { box-shadow: 0 0 0 8px rgba(98, 226, 164, 0.08), 0 8px 24px rgba(98, 226, 164, 0.3); }

    #view-landing .feature-title { font-size: 17px; font-weight: 700; margin-bottom: 8px; color: #1c132c; letter-spacing: -0.2px; }
    #view-landing .feature-desc { font-size: 13px; color: #9ca3af; line-height: 1.6; }

    /* Integrations */
    #view-landing .integrations { max-width: 700px; margin: 0 auto; padding: 0 40px 80px; text-align: center; }
    #view-landing .integrations-label { font-size: 13px; font-weight: 500; color: #b0b4bd; margin-bottom: 16px; }
    #view-landing .integrations-row { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
    #view-landing .integration-chip {
      padding: 8px 18px; border-radius: 50px; background: #fff;
      border: 1px solid #e5e7eb; font-size: 13px; font-weight: 600;
      color: #6b7280; transition: border-color 0.2s, transform 0.2s;
    }
    #view-landing .integration-chip:hover { border-color: #1894E8; color: #1894E8; transform: translateY(-2px); }

    /* CTA */
    #view-landing .cta { max-width: 1000px; margin: 0 auto; padding: 0 40px 80px; }
    #view-landing .cta-card {
      background: linear-gradient(135deg, #1894E8, #9F72FF); border-radius: 24px;
      padding: 56px 48px; text-align: center; color: #fff;
      position: relative; overflow: hidden;
    }
    #view-landing .cta-card::before {
      content: ""; position: absolute; top: -50%; right: -20%;
      width: 400px; height: 400px; border-radius: 50%;
      background: rgba(255, 255, 255, 0.06); pointer-events: none;
    }
    #view-landing .cta-title {
      font-size: clamp(24px, 3.5vw, 36px); font-weight: 800;
      letter-spacing: -1px; margin-bottom: 12px; position: relative;
    }
    #view-landing .cta-subtitle {
      font-size: 16px; opacity: 0.85; margin-bottom: 32px; position: relative;
    }
    #view-landing .btn-white {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 14px 32px; border-radius: 16px; background: #fff;
      color: #1c132c; font-size: 16px; font-weight: 700;
      border: none; cursor: pointer; text-decoration: none;
      transition: transform 0.2s, box-shadow 0.2s; position: relative;
    }
    #view-landing .btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15); }

    /* Footer */
    #view-landing .footer { background: #1c132c; padding: 36px 40px; color: #9ca3af; }
    #view-landing .footer-inner {
      max-width: 1000px; margin: 0 auto; display: flex; align-items: center;
      justify-content: space-between; flex-wrap: wrap; gap: 16px;
    }
    #view-landing .footer-logo { display: flex; align-items: center; gap: 6px; font-weight: 700; font-size: 14px; color: #fff; }
    #view-landing .footer-logo .dot { width: 7px; height: 7px; border-radius: 50%; background: linear-gradient(135deg, #1894E8, #9F72FF); }
    #view-landing .footer-text { font-size: 13px; }
    #view-landing .footer-badge { font-size: 12px; padding: 5px 14px; border-radius: 50px; background: rgba(255, 255, 255, 0.06); }

    /* Landing animation */
    @keyframes landingFadeInUp {
      from { opacity: 0; transform: translateY(24px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* Landing responsive */
    @media (max-width: 768px) {
      #view-landing .hero { padding: 48px 20px 40px; }
      #view-landing .hero-buttons { flex-direction: column; align-items: center; }
      #view-landing .features-grid { grid-template-columns: 1fr; }
      #view-landing .features, #view-landing .cta, #view-landing .integrations { padding-left: 20px; padding-right: 20px; }
      #view-landing .flow-section { padding-left: 20px; padding-right: 20px; }
      #view-landing .flow-area { height: 500px; }
      #view-landing .flow-node { min-width: 120px; padding: 10px 12px; }
      #view-landing .hub-circle { width: 80px; height: 80px; }
      #view-landing .nav { padding: 12px 20px; }
      #view-landing .nav .nav-link { display: none; }
      #view-landing .landing-cards { grid-template-columns: 1fr; }
      #view-landing .landing-cards .card { padding: 24px; }
      #view-landing .cta-card { padding: 40px 24px; }
      #view-landing .footer-inner { flex-direction: column; text-align: center; }
    }

