 *,
 *::before,
 *::after {
     box-sizing: border-box;
     margin: 0;
     padding: 0;
 }

 :root {
     --bg: #07070F;
     --bg1: #0C0C1A;
     --bg2: #111120;
     --bg3: #181828;
     --bg4: #1E1E30;
     --border: rgba(255, 255, 255, 0.06);
     --border2: rgba(255, 255, 255, 0.11);
     --border3: rgba(255, 255, 255, 0.18);
     --text: #EEEEF8;
     --text2: #8888AA;
     --text3: #44445A;
     --purple: #6C6CFF;
     --purple-dim: rgba(108, 108, 255, 0.13);
     --blue: #5B8EFF;
     --blue-dim: rgba(91, 142, 255, 0.14);
     --green: #00D68F;
     --green-dim: rgba(0, 214, 143, 0.13);
     --orange: #FF7043;
     --orange-dim: rgba(255, 112, 67, 0.13);
     --gold: #FFD000;
     --gold-dim: rgba(255, 208, 0, 0.12);
     --teal: #38BDF8;
     --teal-dim: rgba(56, 189, 248, 0.13);
     --pink: #F471B5;
     --pink-dim: rgba(244, 113, 181, 0.13);
 }

 html {
     scroll-behavior: smooth;
 }

 body {
     font-family: 'Outfit', sans-serif;
     background: var(--bg);
     color: var(--text);
     overflow-x: hidden;
     line-height: 1.5;
 }

 /* ── NOISE TEXTURE ── */
 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='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
     pointer-events: none;
     z-index: 1000;
     opacity: 0.4;
 }

 /* ── NAV ── */
 nav {
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     z-index: 100;
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 0 48px;
     height: 64px;
     background: rgba(7, 7, 15, 0.8);
     backdrop-filter: blur(20px);
     border-bottom: 1px solid var(--border);
 }

 .nav-logo {
     display: flex;
     align-items: center;
     gap: 10px;
     text-decoration: none;
 }

 .nav-logo-icon {
     width: 32px;
     height: 32px;
     background: var(--purple);
     border-radius: 9px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 16px;
     box-shadow: 0 0 20px rgba(108, 108, 255, 0.4);
 }

 .nav-logo-text {
     font-size: 18px;
     font-weight: 700;
     color: var(--text);
     letter-spacing: -0.3px;
 }

 .nav-links {
     display: flex;
     align-items: center;
     gap: 32px;
     list-style: none;
 }

 .nav-links a {
     color: var(--text2);
     text-decoration: none;
     font-size: 14px;
     font-weight: 500;
     transition: color 0.2s;
 }

 .nav-links a:hover {
     color: var(--text);
 }

 .nav-cta {
     background: var(--purple);
     color: #fff !important;
     padding: 8px 20px;
     border-radius: 8px;
     font-weight: 600 !important;
     font-size: 14px !important;
     transition: opacity 0.2s, transform 0.2s !important;
 }

 .nav-cta:hover {
     opacity: 0.9;
     transform: translateY(-1px);
 }

 /* ── HERO ── */
 .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;
 }

 .hero-glow {
     position: absolute;
     width: 800px;
     height: 800px;
     background: radial-gradient(circle, rgba(108, 108, 255, 0.15) 0%, transparent 70%);
     top: 50%;
     left: 50%;
     transform: translate(-50%, -60%);
     pointer-events: none;
 }

 .hero-glow-2 {
     position: absolute;
     width: 500px;
     height: 500px;
     background: radial-gradient(circle, rgba(0, 214, 143, 0.08) 0%, transparent 70%);
     bottom: 0;
     right: 15%;
     pointer-events: none;
 }

 .hero-badge {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     background: var(--purple-dim);
     border: 1px solid rgba(108, 108, 255, 0.25);
     color: var(--purple);
     font-size: 12px;
     font-weight: 600;
     letter-spacing: 0.5px;
     padding: 6px 14px;
     border-radius: 100px;
     margin-bottom: 32px;
     animation: fadeUp 0.6s ease both;
 }

 .hero-badge span {
     color: var(--green);
 }

 .hero h1 {
     font-size: clamp(42px, 7vw, 88px);
     font-weight: 900;
     line-height: 1.0;
     letter-spacing: -3px;
     margin-bottom: 24px;
     animation: fadeUp 0.6s 0.1s ease both;
 }

 .hero h1 em {
     font-style: normal;
     background: linear-gradient(135deg, var(--purple) 0%, var(--teal) 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
 }

 .hero-sub {
     font-size: clamp(16px, 2vw, 20px);
     color: var(--text2);
     max-width: 560px;
     line-height: 1.6;
     margin-bottom: 48px;
     font-weight: 400;
     animation: fadeUp 0.6s 0.2s ease both;
 }

 .hero-actions {
     display: flex;
     align-items: center;
     gap: 16px;
     flex-wrap: wrap;
     justify-content: center;
     animation: fadeUp 0.6s 0.3s ease both;
 }

 .btn-primary {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     background: var(--purple);
     color: #fff;
     padding: 14px 28px;
     border-radius: 12px;
     font-size: 15px;
     font-weight: 600;
     text-decoration: none;
     transition: transform 0.2s, box-shadow 0.2s;
     box-shadow: 0 4px 24px rgba(108, 108, 255, 0.35);
     font-family: 'Outfit', sans-serif;
 }

 .btn-primary:hover {
     transform: translateY(-2px);
     box-shadow: 0 8px 32px rgba(108, 108, 255, 0.5);
 }

 .btn-secondary {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     background: transparent;
     color: var(--text2);
     padding: 14px 28px;
     border-radius: 12px;
     font-size: 15px;
     font-weight: 500;
     text-decoration: none;
     border: 1px solid var(--border2);
     transition: border-color 0.2s, color 0.2s, transform 0.2s;
     font-family: 'Outfit', sans-serif;
 }

 .btn-secondary:hover {
     border-color: var(--border3);
     color: var(--text);
     transform: translateY(-2px);
 }

 .hero-social-proof {
     margin-top: 64px;
     display: flex;
     align-items: center;
     gap: 24px;
     color: var(--text3);
     font-size: 13px;
     animation: fadeUp 0.6s 0.4s ease both;
     flex-wrap: wrap;
     justify-content: center;
 }

 .proof-item {
     display: flex;
     align-items: center;
     gap: 6px;
 }

 .proof-dot {
     width: 6px;
     height: 6px;
     border-radius: 50%;
     background: var(--green);
     box-shadow: 0 0 8px var(--green);
 }

 /* ── SECTION COMMON ── */
 section {
     padding: 100px 24px;
 }

 .section-inner {
     max-width: 1100px;
     margin: 0 auto;
 }

 .section-tag {
     display: inline-block;
     font-size: 11px;
     font-weight: 700;
     letter-spacing: 1.5px;
     text-transform: uppercase;
     color: var(--purple);
     margin-bottom: 16px;
 }

 .section-title {
     font-size: clamp(28px, 4vw, 48px);
     font-weight: 800;
     letter-spacing: -1.5px;
     line-height: 1.1;
     margin-bottom: 16px;
 }

 .section-sub {
     font-size: 16px;
     color: var(--text2);
     max-width: 520px;
     line-height: 1.6;
 }

 /* ── HOW IT WORKS ── */
 .how-strip {
     background: var(--bg1);
     border-top: 1px solid var(--border);
     border-bottom: 1px solid var(--border);
     padding: 24px 0;
     overflow: hidden;
 }

 .how-track {
     display: flex;
     gap: 0;
     animation: marquee 30s linear infinite;
     white-space: nowrap;
 }

 .how-item {
     display: inline-flex;
     align-items: center;
     gap: 12px;
     padding: 0 40px;
     font-size: 14px;
     font-weight: 500;
     color: var(--text2);
     flex-shrink: 0;
 }

 .how-item-icon {
     font-size: 18px;
 }

 @keyframes marquee {
     from {
         transform: translateX(0);
     }

     to {
         transform: translateX(-50%);
     }
 }

 /* ── FLOW SECTION ── */
 .flow-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 2px;
     margin-top: 64px;
     background: var(--border);
     border: 1px solid var(--border);
     border-radius: 20px;
     overflow: hidden;
 }

 .flow-card {
     background: var(--bg1);
     padding: 40px 32px;
     position: relative;
     transition: background 0.3s;
 }

 .flow-card:hover {
     background: var(--bg2);
 }

 .flow-num {
     font-size: 11px;
     font-weight: 700;
     letter-spacing: 1px;
     color: var(--text3);
     text-transform: uppercase;
     margin-bottom: 20px;
 }

 .flow-icon {
     width: 48px;
     height: 48px;
     border-radius: 12px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 22px;
     margin-bottom: 20px;
 }

 .flow-card h3 {
     font-size: 18px;
     font-weight: 700;
     margin-bottom: 10px;
     letter-spacing: -0.3px;
 }

 .flow-card p {
     font-size: 14px;
     color: var(--text2);
     line-height: 1.6;
 }

 /* ── FEATURES BENTO ── */
 .bento {
     display: grid;
     grid-template-columns: repeat(12, 1fr);
     grid-template-rows: auto;
     gap: 12px;
     margin-top: 64px;
 }

 .bento-card {
     background: var(--bg2);
     border: 1px solid var(--border);
     border-radius: 16px;
     padding: 32px;
     transition: border-color 0.3s, transform 0.3s;
     overflow: hidden;
     position: relative;
 }

 .bento-card:hover {
     border-color: var(--border2);
     transform: translateY(-2px);
 }

 .bento-card.span-5 {
     grid-column: span 5;
 }

 .bento-card.span-7 {
     grid-column: span 7;
 }

 .bento-card.span-4 {
     grid-column: span 4;
 }

 .bento-card.span-8 {
     grid-column: span 8;
 }

 .bento-card.span-6 {
     grid-column: span 6;
 }

 .bento-card.span-12 {
     grid-column: span 12;
 }

 .bento-tag {
     display: inline-flex;
     align-items: center;
     gap: 6px;
     font-size: 11px;
     font-weight: 700;
     letter-spacing: 0.8px;
     text-transform: uppercase;
     padding: 4px 10px;
     border-radius: 6px;
     margin-bottom: 20px;
 }

 .bento-card h3 {
     font-size: 20px;
     font-weight: 700;
     margin-bottom: 10px;
     letter-spacing: -0.3px;
 }

 .bento-card p {
     font-size: 14px;
     color: var(--text2);
     line-height: 1.65;
 }

 .bento-emoji {
     font-size: 40px;
     margin-bottom: 20px;
     display: block;
 }

 .bento-glow {
     position: absolute;
     width: 200px;
     height: 200px;
     border-radius: 50%;
     top: -60px;
     right: -60px;
     pointer-events: none;
     filter: blur(60px);
     opacity: 0.4;
 }

 /* ── FEATURE LIST ── */
 .feat-list {
     display: flex;
     flex-direction: column;
     gap: 10px;
     margin-top: 16px;
 }

 .feat-item {
     display: flex;
     align-items: flex-start;
     gap: 10px;
     font-size: 13px;
     color: var(--text2);
     line-height: 1.5;
 }

 .feat-check {
     width: 16px;
     height: 16px;
     border-radius: 4px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 10px;
     flex-shrink: 0;
     margin-top: 1px;
 }

 /* ── FOCUS MODE HIGHLIGHT ── */
 .focus-section {
     background: linear-gradient(135deg, rgba(108, 108, 255, 0.05) 0%, transparent 60%);
     border-top: 1px solid var(--border);
     border-bottom: 1px solid var(--border);
 }

 .focus-inner {
     max-width: 1100px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 80px;
     align-items: center;
 }

 .focus-visual {
     background: var(--bg2);
     border: 1px solid var(--border);
     border-radius: 20px;
     padding: 32px;
     position: relative;
     overflow: hidden;
 }

 .focus-visual-glow {
     position: absolute;
     inset: 0;
     background: radial-gradient(circle at 50% 0%, rgba(108, 108, 255, 0.12) 0%, transparent 70%);
     pointer-events: none;
 }

 .overlay-mockup {
     background: #07070F;
     border: 1px solid rgba(255, 77, 77, 0.3);
     border-radius: 16px;
     padding: 32px 24px;
     text-align: center;
 }

 .overlay-chip {
     display: inline-block;
     background: rgba(255, 77, 77, 0.17);
     border: 1px solid rgba(255, 77, 77, 0.4);
     color: #FF4D4D;
     font-size: 11px;
     font-weight: 600;
     padding: 5px 12px;
     border-radius: 20px;
     margin-bottom: 20px;
 }

 .overlay-emoji {
     font-size: 40px;
     margin-bottom: 12px;
     display: block;
 }

 .overlay-title {
     font-size: 22px;
     font-weight: 800;
     letter-spacing: -0.5px;
     margin-bottom: 8px;
 }

 .overlay-sub {
     font-size: 13px;
     color: var(--text2);
     margin-bottom: 24px;
 }

 .overlay-divider {
     width: 40px;
     height: 1px;
     background: rgba(255, 255, 255, 0.1);
     margin: 0 auto 20px;
 }

 .overlay-hint {
     font-size: 11px;
     color: var(--text3);
 }

 /* ── PRICING ── */
 .pricing-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 16px;
     margin-top: 64px;
     max-width: 760px;
     margin-left: auto;
     margin-right: auto;
 }

 .pricing-card {
     background: var(--bg2);
     border: 1px solid var(--border);
     border-radius: 20px;
     padding: 36px 32px;
     position: relative;
     transition: transform 0.3s;
 }

 .pricing-card:hover {
     transform: translateY(-4px);
 }

 .pricing-card.featured {
     border-color: rgba(108, 108, 255, 0.4);
     background: linear-gradient(135deg, rgba(108, 108, 255, 0.08) 0%, var(--bg2) 60%);
 }

 .pricing-badge {
     position: absolute;
     top: -12px;
     left: 50%;
     transform: translateX(-50%);
     background: var(--purple);
     color: #fff;
     font-size: 11px;
     font-weight: 700;
     letter-spacing: 0.5px;
     padding: 4px 14px;
     border-radius: 20px;
     white-space: nowrap;
 }

 .pricing-name {
     font-size: 14px;
     font-weight: 600;
     color: var(--text2);
     text-transform: uppercase;
     letter-spacing: 1px;
     margin-bottom: 16px;
 }

 .pricing-price {
     font-size: 52px;
     font-weight: 900;
     letter-spacing: -3px;
     line-height: 1;
     margin-bottom: 4px;
 }

 .pricing-price sup {
     font-size: 20px;
     font-weight: 700;
     letter-spacing: 0;
     vertical-align: top;
     margin-top: 12px;
     display: inline-block;
 }

 .pricing-period {
     font-size: 13px;
     color: var(--text3);
     margin-bottom: 28px;
 }

 .pricing-divider {
     height: 1px;
     background: var(--border);
     margin-bottom: 24px;
 }

 .pricing-features {
     list-style: none;
     display: flex;
     flex-direction: column;
     gap: 12px;
     margin-bottom: 32px;
 }

 .pricing-features li {
     display: flex;
     align-items: center;
     gap: 10px;
     font-size: 14px;
     color: var(--text2);
 }

 .pricing-features li .check {
     color: var(--green);
     font-size: 14px;
     flex-shrink: 0;
 }

 .pricing-features li .cross {
     color: var(--text3);
     font-size: 14px;
     flex-shrink: 0;
 }

 .pricing-btn {
     display: block;
     text-align: center;
     padding: 13px;
     border-radius: 10px;
     font-size: 14px;
     font-weight: 600;
     text-decoration: none;
     transition: opacity 0.2s, transform 0.2s;
     font-family: 'Outfit', sans-serif;
 }

 .pricing-btn:hover {
     opacity: 0.85;
     transform: translateY(-1px);
 }

 .pricing-btn-free {
     background: var(--bg3);
     border: 1px solid var(--border2);
     color: var(--text);
 }

 .pricing-btn-pro {
     background: var(--purple);
     color: #fff;
     box-shadow: 0 4px 20px rgba(108, 108, 255, 0.3);
 }

 /* ── PLATFORMS ── */
 .platforms-row {
     display: flex;
     gap: 16px;
     margin-top: 64px;
     flex-wrap: wrap;
 }

 .platform-card {
     flex: 1;
     min-width: 200px;
     background: var(--bg2);
     border: 1px solid var(--border);
     border-radius: 16px;
     padding: 28px 24px;
     transition: border-color 0.3s, transform 0.3s;
 }

 .platform-card:hover {
     border-color: var(--border2);
     transform: translateY(-3px);
 }

 .platform-icon {
     font-size: 28px;
     margin-bottom: 16px;
     display: block;
 }

 .platform-card h4 {
     font-size: 15px;
     font-weight: 700;
     margin-bottom: 6px;
 }

 .platform-card p {
     font-size: 13px;
     color: var(--text2);
     line-height: 1.5;
 }

 /* ── TESTIMONIALS ── */
 .testimonials-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 12px;
     margin-top: 64px;
 }

 .testimonial-card {
     background: var(--bg2);
     border: 1px solid var(--border);
     border-radius: 16px;
     padding: 28px;
 }

 .testimonial-stars {
     color: var(--gold);
     font-size: 13px;
     margin-bottom: 14px;
     letter-spacing: 2px;
 }

 .testimonial-text {
     font-size: 14px;
     color: var(--text);
     line-height: 1.65;
     margin-bottom: 20px;
     font-style: italic;
 }

 .testimonial-author {
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .testimonial-avatar {
     width: 32px;
     height: 32px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 14px;
     font-weight: 700;
     flex-shrink: 0;
 }

 .testimonial-name {
     font-size: 13px;
     font-weight: 600;
 }

 .testimonial-role {
     font-size: 11px;
     color: var(--text3);
 }

 /* ── FAQ ── */
 .faq-list {
     max-width: 700px;
     margin: 64px auto 0;
     display: flex;
     flex-direction: column;
     gap: 2px;
     border: 1px solid var(--border);
     border-radius: 16px;
     overflow: hidden;
 }

 .faq-item {
     background: var(--bg2);
     border-bottom: 1px solid var(--border);
     cursor: pointer;
 }

 .faq-item:last-child {
     border-bottom: none;
 }

 .faq-q {
     padding: 20px 24px;
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 16px;
     font-size: 15px;
     font-weight: 600;
     user-select: none;
     transition: color 0.2s;
 }

 .faq-q:hover {
     color: var(--purple);
 }

 .faq-arrow {
     font-size: 12px;
     color: var(--text3);
     transition: transform 0.3s;
     flex-shrink: 0;
 }

 .faq-item.open .faq-arrow {
     transform: rotate(180deg);
 }

 .faq-a {
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.35s ease, padding 0.35s ease;
     font-size: 14px;
     color: var(--text2);
     line-height: 1.65;
     padding: 0 24px;
 }

 .faq-item.open .faq-a {
     max-height: 200px;
     padding: 0 24px 20px;
 }

 /* ── CTA FINAL ── */
 .cta-section {
     padding: 120px 24px;
     text-align: center;
     position: relative;
     overflow: hidden;
 }

 .cta-glow {
     position: absolute;
     width: 600px;
     height: 600px;
     background: radial-gradient(circle, rgba(108, 108, 255, 0.12) 0%, transparent 70%);
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     pointer-events: none;
 }

 .cta-section h2 {
     font-size: clamp(32px, 5vw, 64px);
     font-weight: 900;
     letter-spacing: -2px;
     line-height: 1.05;
     margin-bottom: 20px;
 }

 .cta-section p {
     font-size: 17px;
     color: var(--text2);
     margin-bottom: 48px;
     max-width: 480px;
     margin-left: auto;
     margin-right: auto;
     line-height: 1.6;
 }

 /* ── FOOTER ── */
 footer {
     border-top: 1px solid var(--border);
     padding: 48px 48px 32px;
 }

 .footer-inner {
     max-width: 1100px;
     margin: 0 auto;
 }

 .footer-top {
     display: flex;
     justify-content: space-between;
     align-items: flex-start;
     gap: 48px;
     flex-wrap: wrap;
     margin-bottom: 48px;
 }

 .footer-brand p {
     font-size: 13px;
     color: var(--text3);
     margin-top: 8px;
     max-width: 240px;
     line-height: 1.6;
 }

 .footer-links h5 {
     font-size: 12px;
     font-weight: 700;
     letter-spacing: 1px;
     text-transform: uppercase;
     color: var(--text3);
     margin-bottom: 16px;
 }

 .footer-links ul {
     list-style: none;
     display: flex;
     flex-direction: column;
     gap: 10px;
 }

 .footer-links a {
     font-size: 14px;
     color: var(--text2);
     text-decoration: none;
     transition: color 0.2s;
 }

 .footer-links a:hover {
     color: var(--text);
 }

 .footer-bottom {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding-top: 24px;
     border-top: 1px solid var(--border);
     font-size: 12px;
     color: var(--text3);
     flex-wrap: wrap;
     gap: 16px;
 }

 /* ── ANIMATIONS ── */
 @keyframes fadeUp {
     from {
         opacity: 0;
         transform: translateY(20px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .reveal {
     opacity: 0;
     transform: translateY(24px);
     transition: opacity 0.6s ease, transform 0.6s ease;
 }

 .reveal.visible {
     opacity: 1;
     transform: translateY(0);
 }

 /* ── RESPONSIVE ── */
 @media (max-width: 900px) {
     nav {
         padding: 0 20px;
     }

     .nav-links {
         display: none;
     }

     .flow-grid {
         grid-template-columns: 1fr;
     }

     .bento-card.span-5,
     .bento-card.span-7,
     .bento-card.span-4,
     .bento-card.span-8,
     .bento-card.span-6,
     .bento-card.span-12 {
         grid-column: span 12;
     }

     .focus-inner {
         grid-template-columns: 1fr;
         gap: 40px;
     }

     .pricing-grid {
         grid-template-columns: 1fr;
     }

     .testimonials-grid {
         grid-template-columns: 1fr;
     }

     .platforms-row {
         flex-direction: column;
     }

     footer {
         padding: 40px 20px 24px;
     }

     .footer-top {
         flex-direction: column;
         gap: 32px;
     }
 }