      :root {
          --bg-deep: #050015;
          --bg-mid: #0d0626;
          --bg-card: #150a30;
          --purple-deep: #5000a0;
          --purple: #7a1fc8;
          --magenta: #c419d6;
          --pink: #ff2dd1;
          --blue: #0050c8;
          --text: #f4eaff;
          --text-dim: #a89bc7;
          --text-body: #c8bedf;
          --border: rgba(196, 25, 214, 0.18);
      }

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

      html {
          scroll-behavior: smooth;
      }

      body {
          font-family: "Plus Jakarta Sans", system-ui, sans-serif;
          background: var(--bg-deep);
          color: var(--text);
          overflow-x: hidden;
          line-height: 1.6;
      }

      /* Background */
      .bg-orbs {
          position: fixed;
          inset: 0;
          z-index: 0;
          pointer-events: none;
          overflow: hidden;
      }

      .orb {
          position: absolute;
          border-radius: 50%;
          filter: blur(100px);
          opacity: 0.45;
          animation: float 20s ease-in-out infinite;
      }

      .orb-1 {
          width: 500px;
          height: 500px;
          background: var(--magenta);
          top: -100px;
          left: -150px;
      }

      .orb-2 {
          width: 600px;
          height: 600px;
          background: var(--purple);
          top: 40%;
          right: -200px;
          animation-delay: -7s;
      }

      .orb-3 {
          width: 400px;
          height: 400px;
          background: var(--blue);
          bottom: -100px;
          left: 30%;
          animation-delay: -14s;
      }

      @keyframes float {

          0%,
          100% {
              transform: translate(0, 0) scale(1);
          }

          33% {
              transform: translate(40px, -40px) scale(1.08);
          }

          66% {
              transform: translate(-30px, 30px) scale(0.95);
          }
      }

      .grid-overlay {
          position: fixed;
          inset: 0;
          z-index: 1;
          pointer-events: none;
          background-image:
              linear-gradient(rgba(196, 25, 214, 0.04) 1px, transparent 1px),
              linear-gradient(90deg, rgba(196, 25, 214, 0.04) 1px, transparent 1px);
          background-size: 60px 60px;
          mask-image: radial-gradient(ellipse 80% 60% at 50% 30%,
                  black,
                  transparent);
          -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%,
                  black,
                  transparent);
      }

      /* Nav */
      nav {
          position: relative;
          z-index: 10;
          padding: 24px 5%;
          display: flex;
          justify-content: space-between;
          align-items: center;
          backdrop-filter: blur(10px);
      }

      .nav-logo {
          display: flex;
          align-items: center;
          gap: 12px;
          text-decoration: none;
          cursor: pointer;
      }

      .nav-logo img {
          height: 60px;
          width: auto;
      }

      .nav-links {
          display: flex;
          gap: 28px;
          list-style: none;
      }

      .nav-links a {
          color: var(--text-dim);
          text-decoration: none;
          font-size: 14px;
          font-weight: 500;
          transition: color 0.3s;
          cursor: pointer;
      }

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

      .back-link {
          color: var(--text-dim);
          text-decoration: none;
          font-size: 14px;
          font-weight: 500;
          display: flex;
          align-items: center;
          gap: 6px;
          transition: color 0.3s;
          cursor: pointer;
      }

      .back-link:hover {
          color: var(--pink);
      }

      /* Page system */
      .page {
          display: none;
          animation: pageFade 0.4s ease-out;
      }

      .page.active {
          display: block;
      }

      @keyframes pageFade {
          from {
              opacity: 0;
              transform: translateY(10px);
          }

          to {
              opacity: 1;
              transform: translateY(0);
          }
      }

      /* HERO */
      .hero {
          position: relative;
          z-index: 5;
          padding: 60px 5% 120px;
          min-height: 90vh;
          display: grid;
          grid-template-columns: 1.1fr 1fr;
          gap: 60px;
          align-items: center;
          max-width: 1400px;
          margin: 0 auto;
      }

      .hero-badge {
          display: inline-flex;
          align-items: center;
          gap: 8px;
          padding: 8px 16px;
          background: rgba(196, 25, 214, 0.1);
          border: 1px solid var(--border);
          border-radius: 100px;
          font-size: 12px;
          font-weight: 600;
          letter-spacing: 1.5px;
          text-transform: uppercase;
          color: var(--pink);
          margin-bottom: 28px;
          animation: fadeUp 0.8s ease-out;
      }

      .hero-badge .dot {
          width: 6px;
          height: 6px;
          background: var(--pink);
          border-radius: 50%;
          box-shadow: 0 0 10px var(--pink);
          animation: pulse 2s infinite;
      }

      @keyframes pulse {

          0%,
          100% {
              opacity: 1;
          }

          50% {
              opacity: 0.4;
          }
      }

      .hero h1 {
          font-family: "Outfit", sans-serif;
          font-size: clamp(40px, 6vw, 72px);
          font-weight: 800;
          line-height: 1.05;
          letter-spacing: -0.03em;
          margin-bottom: 24px;
          animation: fadeUp 0.8s 0.1s ease-out backwards;
      }

      .hero h1 .gradient-text {
          background: linear-gradient(135deg,
                  #ffffff 0%,
                  #d4b3ff 30%,
                  var(--magenta) 60%,
                  var(--pink) 100%);
          -webkit-background-clip: text;
          background-clip: text;
          -webkit-text-fill-color: transparent;
          display: inline-block;
      }

      .hero p {
          font-size: 18px;
          color: var(--text-dim);
          max-width: 540px;
          margin-bottom: 40px;
          animation: fadeUp 0.8s 0.2s ease-out backwards;
      }

      .download-buttons {
          display: flex;
          gap: 16px;
          flex-wrap: wrap;
          animation: fadeUp 0.8s 0.3s ease-out backwards;
      }

      .download-btn {
          display: flex;
          align-items: center;
          gap: 12px;
          padding: 14px 24px;
          background: linear-gradient(135deg, #1a0a2e 0%, #2a0f4d 100%);
          border: 1px solid var(--border);
          border-radius: 14px;
          text-decoration: none;
          color: white;
          transition: all 0.3s;
          position: relative;
          overflow: hidden;
      }

      .download-btn::before {
          content: "";
          position: absolute;
          inset: 0;
          background: linear-gradient(135deg, var(--purple), var(--magenta));
          opacity: 0;
          transition: opacity 0.3s;
          z-index: 0;
      }

      .download-btn:hover {
          transform: translateY(-3px);
          box-shadow: 0 12px 40px rgba(196, 25, 214, 0.4);
          border-color: var(--magenta);
      }

      .download-btn:hover::before {
          opacity: 1;
      }

      .download-btn>* {
          position: relative;
          z-index: 1;
      }

      .download-btn svg {
          width: 32px;
          height: 32px;
          flex-shrink: 0;
      }

      .download-btn .btn-label {
          display: flex;
          flex-direction: column;
          text-align: left;
      }

      .download-btn .small {
          font-size: 11px;
          color: var(--text-dim);
          font-weight: 500;
      }

      .download-btn:hover .small {
          color: rgba(255, 255, 255, 0.85);
      }

      .download-btn .big {
          font-size: 16px;
          font-weight: 700;
          letter-spacing: 0.3px;
      }

      .hero-stats {
          display: flex;
          gap: 36px;
          margin-top: 56px;
          padding-top: 36px;
          border-top: 1px solid var(--border);
          animation: fadeUp 0.8s 0.4s ease-out backwards;
      }

      .stat-num {
          font-family: "Outfit", sans-serif;
          font-size: 28px;
          font-weight: 700;
          background: linear-gradient(135deg, var(--magenta), var(--pink));
          -webkit-background-clip: text;
          background-clip: text;
          -webkit-text-fill-color: transparent;
      }

      .stat-label {
          font-size: 12px;
          color: var(--text-dim);
          text-transform: uppercase;
          letter-spacing: 1.2px;
          margin-top: 4px;
      }

      /* Phone */
      .hero-visual {
          position: relative;
          display: flex;
          justify-content: center;
          align-items: center;
          animation: fadeIn 1.2s 0.3s ease-out backwards;
      }

      .phone {
          position: relative;
          width: 300px;
          height: 600px;
          background: linear-gradient(160deg, #1a0a2e, #050015);
          border-radius: 44px;
          border: 3px solid rgba(196, 25, 214, 0.3);
          box-shadow:
              0 0 80px rgba(196, 25, 214, 0.4),
              0 0 160px rgba(122, 31, 200, 0.25),
              inset 0 0 60px rgba(0, 0, 0, 0.5);
          overflow: hidden;
          animation: floatPhone 6s ease-in-out infinite;
      }

      @keyframes floatPhone {

          0%,
          100% {
              transform: translateY(0) rotate(-2deg);
          }

          50% {
              transform: translateY(-15px) rotate(-2deg);
          }
      }

      .phone::before {
          content: "";
          position: absolute;
          top: 14px;
          left: 50%;
          transform: translateX(-50%);
          width: 100px;
          height: 26px;
          background: #050015;
          border-radius: 16px;
          z-index: 5;
      }

      .phone-screen {
          padding: 60px 24px 30px;
          height: 100%;
          display: flex;
          flex-direction: column;
          align-items: center;
          text-align: center;
      }

      .phone-status {
          font-size: 11px;
          color: var(--pink);
          letter-spacing: 2px;
          text-transform: uppercase;
          margin-bottom: 30px;
          font-weight: 600;
      }

      .phone-avatar {
          width: 130px;
          height: 130px;
          border-radius: 50%;
          background: linear-gradient(135deg,
                  var(--purple),
                  var(--magenta),
                  var(--pink));
          margin-bottom: 24px;
          position: relative;
          box-shadow: 0 0 60px rgba(255, 45, 209, 0.5);
      }

      .phone-avatar::before,
      .phone-avatar::after {
          content: "";
          position: absolute;
          inset: -8px;
          border: 2px solid var(--magenta);
          border-radius: 50%;
          opacity: 0;
          animation: ripple 2.5s infinite;
      }

      .phone-avatar::after {
          animation-delay: 1.25s;
      }

      @keyframes ripple {
          0% {
              inset: -8px;
              opacity: 1;
          }

          100% {
              inset: -50px;
              opacity: 0;
          }
      }

      .phone-avatar svg {
          position: absolute;
          inset: 0;
          margin: auto;
          width: 60px;
          height: 60px;
          fill: white;
      }

      .phone-name {
          font-family: "Outfit", sans-serif;
          font-size: 22px;
          font-weight: 700;
          margin-bottom: 4px;
      }

      .phone-sub {
          font-size: 12px;
          color: var(--text-dim);
          margin-bottom: 30px;
      }

      .phone-timer {
          font-family: "Outfit", sans-serif;
          font-size: 28px;
          font-weight: 600;
          color: var(--pink);
          margin-bottom: 32px;
          letter-spacing: 1px;
      }

      .phone-controls {
          display: flex;
          gap: 16px;
          margin-top: auto;
          margin-bottom: 30px;
      }

      .ctrl {
          width: 50px;
          height: 50px;
          border-radius: 50%;
          background: rgba(255, 255, 255, 0.08);
          display: flex;
          align-items: center;
          justify-content: center;
          border: 1px solid rgba(255, 255, 255, 0.1);
      }

      .ctrl.end {
          background: linear-gradient(135deg, #ff2d6c, #c419d6);
          box-shadow: 0 4px 20px rgba(255, 45, 108, 0.5);
      }

      .ctrl svg {
          width: 20px;
          height: 20px;
          fill: white;
      }

      .float-bubble {
          position: absolute;
          background: linear-gradient(135deg,
                  rgba(196, 25, 214, 0.15),
                  rgba(122, 31, 200, 0.15));
          backdrop-filter: blur(10px);
          border: 1px solid var(--border);
          padding: 12px 16px;
          border-radius: 14px;
          font-size: 12px;
          color: white;
          display: flex;
          align-items: center;
          gap: 10px;
          animation: floatBubble 5s ease-in-out infinite;
      }

      .float-bubble .bubble-dot {
          width: 8px;
          height: 8px;
          border-radius: 50%;
          background: #2dff9c;
          box-shadow: 0 0 8px #2dff9c;
      }

      .bubble-1 {
          top: 15%;
          left: -10%;
          animation-delay: -1s;
      }

      .bubble-2 {
          top: 60%;
          right: -15%;
          animation-delay: -3s;
      }

      @keyframes floatBubble {

          0%,
          100% {
              transform: translateY(0);
          }

          50% {
              transform: translateY(-12px);
          }
      }

      @keyframes fadeUp {
          from {
              opacity: 0;
              transform: translateY(30px);
          }

          to {
              opacity: 1;
              transform: translateY(0);
          }
      }

      @keyframes fadeIn {
          from {
              opacity: 0;
              transform: scale(0.95);
          }

          to {
              opacity: 1;
              transform: scale(1);
          }
      }

      /* Features */
      .features {
          position: relative;
          z-index: 5;
          padding: 80px 5%;
          max-width: 1400px;
          margin: 0 auto;
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
          gap: 24px;
      }

      .feature-card {
          background: linear-gradient(160deg,
                  rgba(196, 25, 214, 0.06),
                  rgba(80, 0, 160, 0.04));
          border: 1px solid var(--border);
          border-radius: 20px;
          padding: 28px;
          transition: all 0.4s;
      }

      .feature-card:hover {
          transform: translateY(-6px);
          border-color: var(--magenta);
          box-shadow: 0 20px 50px rgba(196, 25, 214, 0.2);
      }

      .feature-icon {
          width: 48px;
          height: 48px;
          border-radius: 12px;
          background: linear-gradient(135deg, var(--purple), var(--magenta));
          display: flex;
          align-items: center;
          justify-content: center;
          margin-bottom: 16px;
      }

      .feature-icon svg {
          width: 24px;
          height: 24px;
          fill: white;
      }

      .feature-card h3 {
          font-family: "Outfit", sans-serif;
          font-size: 18px;
          font-weight: 700;
          margin-bottom: 8px;
      }

      .feature-card p {
          font-size: 14px;
          color: var(--text-dim);
      }

      /* Footer */
      footer {
          position: relative;
          z-index: 5;
          padding: 60px 5% 30px;
          border-top: 1px solid var(--border);
          margin-top: 60px;
      }

      .footer-grid {
          max-width: 1400px;
          margin: 0 auto;
          display: grid;
          grid-template-columns: 1.5fr 1fr 1fr;
          gap: 40px;
          margin-bottom: 40px;
      }

      .footer-col h4 {
          font-family: "Outfit", sans-serif;
          font-size: 13px;
          text-transform: uppercase;
          letter-spacing: 2px;
          color: var(--pink);
          margin-bottom: 18px;
          font-weight: 700;
      }

      .footer-col ul {
          list-style: none;
      }

      .footer-col li {
          margin-bottom: 10px;
      }

      .footer-col a {
          color: var(--text-dim);
          text-decoration: none;
          font-size: 14px;
          cursor: pointer;
          transition: color 0.3s;
      }

      .footer-col a:hover {
          color: var(--pink);
      }

      .footer-brand img {
          height: 60px;
          margin-bottom: 16px;
      }

      .footer-brand p {
          font-size: 13px;
          color: var(--text-dim);
          max-width: 320px;
      }

      .footer-contact p {
          font-size: 13px;
          color: var(--text-dim);
          margin-bottom: 8px;
      }

      .footer-contact a {
          color: var(--text-dim);
          text-decoration: none;
      }

      .footer-contact a:hover {
          color: var(--pink);
      }

      .footer-bottom {
          max-width: 1400px;
          margin: 0 auto;
          padding-top: 24px;
          border-top: 1px solid var(--border);
          display: flex;
          justify-content: space-between;
          flex-wrap: wrap;
          gap: 12px;
          font-size: 12px;
          color: var(--text-dim);
      }

      /* Policy Page Layout */
      .policy-header {
          position: relative;
          z-index: 5;
          padding: 80px 5% 40px;
          max-width: 900px;
          margin: 0 auto;
          text-align: center;
      }

      .policy-badge {
          display: inline-flex;
          align-items: center;
          gap: 8px;
          padding: 8px 16px;
          background: rgba(196, 25, 214, 0.1);
          border: 1px solid var(--border);
          border-radius: 100px;
          font-size: 11px;
          font-weight: 600;
          letter-spacing: 1.8px;
          text-transform: uppercase;
          color: var(--pink);
          margin-bottom: 24px;
      }

      .policy-header h1 {
          font-family: "Outfit", sans-serif;
          font-size: clamp(36px, 5vw, 56px);
          font-weight: 800;
          line-height: 1.1;
          letter-spacing: -0.02em;
          margin-bottom: 16px;
          background: linear-gradient(135deg,
                  #ffffff 0%,
                  #d4b3ff 60%,
                  var(--magenta) 100%);
          -webkit-background-clip: text;
          background-clip: text;
          -webkit-text-fill-color: transparent;
      }

      .policy-meta {
          font-size: 13px;
          color: var(--text-dim);
          letter-spacing: 1px;
      }

      .policy-content {
          position: relative;
          z-index: 5;
          max-width: 900px;
          margin: 0 auto;
          padding: 30px 5% 80px;
      }

      .policy-card {
          background: linear-gradient(160deg,
                  rgba(196, 25, 214, 0.05),
                  rgba(80, 0, 160, 0.03));
          border: 1px solid var(--border);
          border-radius: 24px;
          padding: 50px;
          backdrop-filter: blur(10px);
          line-height: 1.7;
      }

      .policy-card h2 {
          font-family: "Outfit", sans-serif;
          font-size: 26px;
          font-weight: 700;
          margin: 40px 0 16px;
          color: var(--text);
          position: relative;
          padding-left: 18px;
      }

      .policy-card h2:first-child {
          margin-top: 0;
      }

      .policy-card h2::before {
          content: "";
          position: absolute;
          left: 0;
          top: 8px;
          bottom: 8px;
          width: 4px;
          background: linear-gradient(180deg, var(--magenta), var(--pink));
          border-radius: 4px;
      }

      .policy-card h3 {
          font-family: "Outfit", sans-serif;
          font-size: 18px;
          font-weight: 600;
          margin: 28px 0 12px;
          color: var(--pink);
      }

      .policy-card p {
          color: var(--text-body);
          margin-bottom: 16px;
          font-size: 15px;
      }

      .policy-card ul,
      .policy-card ol {
          margin: 0 0 16px 0;
          padding-left: 22px;
      }

      .policy-card li {
          color: var(--text-body);
          margin-bottom: 10px;
          font-size: 15px;
      }

      .policy-card li::marker {
          color: var(--magenta);
      }

      .policy-card a {
          color: var(--pink);
          text-decoration: none;
          cursor: pointer;
          border-bottom: 1px dashed rgba(255, 45, 209, 0.4);
          transition: all 0.2s;
      }

      .policy-card a:hover {
          color: white;
          border-bottom-color: var(--pink);
      }

      .policy-card strong {
          color: var(--text);
          font-weight: 600;
      }

      .callout {
          background: linear-gradient(135deg,
                  rgba(196, 25, 214, 0.1),
                  rgba(122, 31, 200, 0.05));
          border-left: 3px solid var(--magenta);
          padding: 18px 22px;
          border-radius: 8px;
          margin: 20px 0;
      }

      .callout p:last-child {
          margin-bottom: 0;
      }

      .contact-block {
          background: linear-gradient(160deg,
                  rgba(255, 45, 209, 0.08),
                  rgba(80, 0, 160, 0.05));
          border: 1px solid var(--border);
          border-radius: 16px;
          padding: 28px;
          margin-top: 30px;
      }

      .contact-block h3 {
          margin-top: 0;
          color: var(--pink);
      }

      .policy-footer {
          position: relative;
          z-index: 5;
          padding: 40px 5%;
          border-top: 1px solid var(--border);
          text-align: center;
          font-size: 13px;
          color: var(--text-dim);
      }

      .policy-footer .policy-links {
          display: flex;
          justify-content: center;
          flex-wrap: wrap;
          gap: 24px;
          margin-bottom: 20px;
      }

      .policy-footer .policy-links a {
          color: var(--text-dim);
          text-decoration: none;
          cursor: pointer;
          transition: color 0.3s;
      }

      .policy-footer .policy-links a:hover {
          color: var(--pink);
      }

      /* Responsive */
      @media (max-width: 900px) {
          .hero {
              grid-template-columns: 1fr;
              padding: 30px 5% 80px;
              gap: 60px;
              text-align: center;
          }

          .hero p {
              margin-left: auto;
              margin-right: auto;
          }

          .hero-badge {
              margin-left: auto;
              margin-right: auto;
          }

          .download-buttons {
              justify-content: center;
          }

          .hero-stats {
              justify-content: center;
          }

          .nav-links {
              display: none;
          }

          .footer-grid {
              grid-template-columns: 1fr;
          }

          .phone {
              width: 260px;
              height: 520px;
          }
      }

      @media (max-width: 700px) {
          .policy-card {
              padding: 30px 24px;
          }

          .policy-header {
              padding: 50px 5% 30px;
          }

          .policy-card h2 {
              font-size: 22px;
          }
      }

      @media (max-width: 500px) {
          .hero h1 {
              font-size: 38px;
          }

          .hero-stats {
              gap: 20px;
          }

          .stat-num {
              font-size: 22px;
          }

          .download-btn {
              padding: 12px 18px;
          }

          .download-btn .big {
              font-size: 14px;
          }
      }

      .powered-by {
          margin: 0;
          font-size: 14px;
      }

      .powered-by .label {
          color: #6b7280;
      }

      .powered-by .company-name {
          color: #111827;
          font-weight: 600;
          margin-left: 4px;
      }