:root{--night-blue:#0a1628;--midnight:#1a2744;--midnight-light:#243354;--yellow:#f5c518;--yellow-hover:#e6b800;--yellow-light:#fde68a;--yellow-glow:rgba(245,197,24,.12);--white:#ffffff;--gray-50:#f8fafc;--gray-100:#f1f5f9;--gray-200:#e2e8f0;--gray-300:#cbd5e1;--gray-400:#94a3b8;--gray-500:#64748b;--gray-600:#475569;--gray-700:#334155;--gray-800:#1e293b;--radius:10px;--radius-sm:6px;--radius-lg:16px;--shadow-sm:0 1px 3px rgba(0,0,0,.08);--shadow:0 4px 12px rgba(0,0,0,.1);--shadow-lg:0 8px 30px rgba(0,0,0,.15);--font:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;--mono:"SFMono-Regular",Consolas,"Liberation Mono",Menlo,monospace;--max-w:1200px;--header-h:64px;--transition:cubic-bezier(.4,0,.2,1)}*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}html{scroll-behavior:smooth;-webkit-text-size-adjust:100%;scroll-padding-top:calc(var(--header-h) + 16px)}body{font-family:var(--font);line-height:1.7;color:var(--gray-800);background:var(--white);-webkit-font-smoothing:antialiased;overflow-x:hidden}img{max-width:100%;height:auto;display:block}a{color:var(--yellow);text-decoration:none;transition:color .2s var(--transition)}a:hover{color:var(--yellow-hover)}ul,ol{list-style:none}button{font:inherit;cursor:pointer;border:none;background:none}input,textarea,select{font:inherit}.shell{width:100%;max-width:var(--max-w);margin:0 auto;padding:0 20px}.site-header{position:sticky;top:0;z-index:100;background:rgba(10,22,40,.97);border-bottom:1px solid rgba(245,197,24,.15);backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);height:var(--header-h)}.site-header .shell{display:flex;align-items:center;height:100%;gap:8px}.logo{display:flex;align-items:center;gap:8px;font-weight:800;font-size:1.25rem;color:var(--white);text-decoration:none;flex-shrink:0}.logo:hover{color:var(--yellow)}.logo-mark{display:inline-flex;align-items:center;justify-content:center;width:36px;height:36px;border-radius:var(--radius-sm);background:var(--yellow);color:var(--night-blue);font-size:.85rem;font-weight:900;letter-spacing:0}.main-nav{display:flex;align-items:center;gap:2px;margin-left:auto}.main-nav a{display:flex;align-items:center;gap:4px;padding:6px 10px;border-radius:var(--radius-sm);font-size:.82rem;font-weight:500;color:var(--gray-300);transition:all .2s var(--transition);white-space:nowrap}.main-nav a:hover,.main-nav a.active{color:var(--yellow);background:rgba(245,197,24,.08)}.nav-icon{width:15px;height:15px;stroke:currentColor;stroke-width:1.8;fill:none;stroke-linecap:round;stroke-linejoin:round;flex-shrink:0}.header-actions{display:flex;align-items:center;gap:8px;margin-left:8px;flex-shrink:0}.btn{display:inline-flex;align-items:center;justify-content:center;gap:6px;min-height:44px;padding:10px 22px;border-radius:var(--radius);font-size:.9rem;font-weight:600;transition:all .25s var(--transition);text-decoration:none;cursor:pointer;border:none;line-height:1.3;text-align:center}.btn-primary{background:var(--yellow);color:var(--night-blue)}.btn-primary:hover{background:var(--yellow-hover);color:var(--night-blue);transform:translateY(-1px);box-shadow:0 4px 16px rgba(245,197,24,.35)}.btn-secondary{background:transparent;color:var(--yellow);border:1.5px solid var(--yellow)}.btn-secondary:hover{background:var(--yellow);color:var(--night-blue)}.btn-white{background:var(--white);color:var(--night-blue)}.btn-white:hover{background:var(--gray-100);transform:translateY(-1px)}.btn-icon{width:16px;height:16px;stroke:currentColor;stroke-width:2;fill:none;stroke-linecap:round;stroke-linejoin:round}.btn-sm{padding:7px 16px;font-size:.82rem}.btn-lg{padding:14px 32px;font-size:1rem}.mobile-menu{display:none;margin-left:auto}.mobile-menu summary{display:flex;flex-direction:column;justify-content:center;gap:5px;width:40px;height:40px;padding:8px;cursor:pointer;list-style:none}.mobile-menu summary::-webkit-details-marker{display:none}.mobile-menu summary span{display:block;height:2px;background:var(--gray-300);border-radius:2px;transition:all .25s var(--transition)}.mobile-menu[open] summary span:nth-child(1){transform:rotate(45deg) translate(5px,5px)}.mobile-menu[open] summary span:nth-child(2){opacity:0}.mobile-menu[open] summary span:nth-child(3){transform:rotate(-45deg) translate(5px,-5px)}.mobile-menu nav{position:absolute;top:var(--header-h);left:0;right:0;background:var(--night-blue);border-bottom:2px solid var(--yellow);padding:12px 20px 20px;display:flex;flex-direction:column;gap:4px;animation:menuSlide .25s var(--transition)}.mobile-menu nav a{display:flex;align-items:center;gap:8px;padding:12px 16px;border-radius:var(--radius-sm);color:var(--gray-300);font-weight:500}.mobile-menu nav a:hover{color:var(--yellow);background:rgba(245,197,24,.08)}@keyframes menuSlide{from{opacity:0;transform:translateY(-8px)}to{opacity:1;transform:translateY(0)}}.breadcrumb{padding:14px 0;font-size:.82rem;color:var(--gray-500)}.breadcrumb ol{display:flex;flex-wrap:wrap;align-items:center;gap:4px}.breadcrumb li{display:flex;align-items:center;gap:4px}.breadcrumb li+li::before{content:"›";color:var(--gray-400)}.breadcrumb a{color:var(--gray-500)}.breadcrumb a:hover{color:var(--yellow)}.breadcrumb .current{color:var(--gray-700);font-weight:600}.hero{padding:clamp(48px,8vw,96px) 0 clamp(40px,6vw,72px);background:var(--night-blue);color:var(--white);position:relative;overflow:hidden}.hero::after{content:"";position:absolute;inset:0;background:radial-gradient(ellipse at 70% 20%,rgba(245,197,24,.06) 0%,transparent 60%);pointer-events:none}.hero .shell{position:relative;z-index:1}.hero-grid{display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:center}.hero-eyebrow{display:inline-flex;align-items:center;gap:8px;font-size:.8rem;font-weight:600;color:var(--yellow);text-transform:uppercase;letter-spacing:.08em;margin-bottom:16px}.hero-eyebrow::before{content:"";width:8px;height:8px;border-radius:50%;background:var(--yellow);animation:pulse 2s infinite}@keyframes pulse{0%,100%{opacity:1}50%{opacity:.4}}.hero h1{font-size:clamp(1.8rem,4vw,3rem);font-weight:800;line-height:1.15;margin-bottom:20px;letter-spacing:0}.hero-wordmark{width:clamp(160px,24vw,260px);height:auto;margin:0 0 18px;display:block;filter:drop-shadow(0 8px 18px rgba(255,52,52,.3))}.hero-copy{font-size:clamp(.95rem,1.5vw,1.15rem);color:var(--gray-300);line-height:1.7;margin-bottom:28px;max-width:540px}.hero-actions{display:flex;flex-wrap:wrap;gap:12px;margin-bottom:32px}.hero-trust{display:flex;flex-direction:column;gap:10px}.hero-trust li{display:flex;align-items:flex-start;gap:8px;font-size:.9rem;color:var(--gray-300)}.hero-check{color:var(--yellow);font-weight:700;flex-shrink:0}.hero-visual{background:var(--midnight);border-radius:var(--radius-lg);padding:24px;border:1px solid rgba(245,197,24,.1);position:relative}.hero-visual::before{content:"";position:absolute;inset:-1px;border-radius:var(--radius-lg);background:linear-gradient(135deg,rgba(245,197,24,.2),transparent 50%);z-index:0;pointer-events:none}.hero-photo{padding:0;overflow:hidden;box-shadow:0 24px 80px rgba(0,0,0,.32)}.hero-photo img{position:relative;z-index:1;width:100%;aspect-ratio:16/10;object-fit:cover;object-position:center;border-radius:var(--radius-lg)}.hero-photo-label{position:absolute;left:18px;bottom:18px;z-index:2;display:inline-flex;align-items:center;padding:8px 12px;border-radius:var(--radius-sm);background:rgba(10,22,40,.78);color:var(--yellow);font-size:.78rem;font-weight:800;text-transform:uppercase;letter-spacing:.08em;backdrop-filter:blur(10px)}.window-bar{display:flex;gap:6px;padding-bottom:16px;position:relative;z-index:1}.window-bar span{width:10px;height:10px;border-radius:50%;background:var(--midnight-light)}.window-bar span:first-child{background:#ef4444}.window-bar span:nth-child(2){background:#f59e0b}.window-bar span:nth-child(3){background:#22c55e}.preview-body{position:relative;z-index:1}.preview-nav{display:flex;align-items:center;gap:12px;margin-bottom:20px}.preview-line{width:60px;height:8px;border-radius:4px;background:var(--yellow)}.preview-pill{width:48px;height:8px;border-radius:4px;background:var(--midnight-light)}.preview-hero-inner{display:flex;justify-content:space-between;align-items:center;margin-bottom:20px}.preview-title{width:65%;height:12px;border-radius:4px;background:var(--gray-400);margin-bottom:10px}.preview-copy-line{height:8px;border-radius:4px;background:var(--midnight-light);margin-bottom:8px}.preview-copy-line.short{width:60%}.preview-meter{width:72px;height:72px;border-radius:50%;border:4px solid var(--yellow);display:flex;align-items:center;justify-content:center;font-weight:900;color:var(--yellow);font-size:1.1rem}.preview-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:12px}.preview-card{height:56px;border-radius:var(--radius-sm);background:var(--midnight-light)}.section{padding:clamp(48px,8vw,88px) 0;content-visibility:auto;contain-intrinsic-size:1px 720px}.section-alt{background:var(--gray-50)}.section-dark{background:var(--night-blue);color:var(--white)}.section-dark .section-lead{color:var(--gray-300)}.section-midnight{background:var(--midnight);color:var(--white)}.section-midnight .section-lead{color:var(--gray-300)}.section-warm{background:linear-gradient(135deg,var(--night-blue),var(--midnight))}.section-warm,.section-warm *{color:var(--white)}.section-warm .section-lead{color:var(--gray-300)}.section-title{font-size:clamp(1.5rem,3vw,2.25rem);font-weight:800;line-height:1.2;margin-bottom:12px;letter-spacing:0}.section-dark .section-title,.section-warm .section-title,.section-midnight .section-title{color:var(--white)}.section-lead{font-size:clamp(.95rem,1.3vw,1.1rem);color:var(--gray-600);max-width:680px;line-height:1.7;margin-bottom:40px}.section-center{text-align:center}.section-center .section-lead{margin-left:auto;margin-right:auto}.trust-strip{background:var(--midnight);padding:28px 0;border-top:1px solid rgba(245,197,24,.08);border-bottom:1px solid rgba(245,197,24,.08)}.proof-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;text-align:center}.proof-value{display:block;font-size:clamp(1.4rem,2.5vw,2rem);font-weight:800;color:var(--yellow);letter-spacing:0}.proof-label{display:block;font-size:.8rem;color:var(--gray-400);margin-top:4px}.card-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}.card{min-width:0;background:var(--white);border:1px solid var(--gray-200);border-radius:var(--radius);padding:28px 24px;transition:all .3s var(--transition)}.card:hover{transform:translateY(-3px);box-shadow:var(--shadow-lg);border-color:var(--yellow)}.card-icon{display:inline-flex;align-items:center;justify-content:center;width:48px;height:48px;border-radius:var(--radius-sm);font-weight:800;font-size:.75rem;margin-bottom:16px;background:var(--yellow-glow);color:var(--yellow)}.card-icon.teal{background:rgba(20,184,166,.1);color:#14b8a6}.card-icon.amber{background:rgba(245,158,11,.1);color:#f59e0b}.card h3{font-size:1.05rem;font-weight:700;margin-bottom:8px;color:var(--night-blue)}.card p{font-size:.9rem;color:var(--gray-600);line-height:1.65}.section-dark .card{background:var(--midnight);border-color:rgba(245,197,24,.1)}.section-dark .card h3{color:var(--white)}.section-dark .card p{color:var(--gray-400)}.keyword-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;text-align:left}.keyword-card{display:flex;flex-direction:column;gap:8px;min-width:0;min-height:148px;padding:22px;border:1px solid var(--gray-200);border-radius:var(--radius);background:var(--white);color:var(--gray-700);transition:border-color .2s var(--transition),transform .2s var(--transition),box-shadow .2s var(--transition)}.keyword-card:hover{border-color:var(--yellow);color:var(--gray-700);transform:translateY(-2px);box-shadow:var(--shadow)}.keyword-card strong{color:var(--night-blue);font-size:1rem;line-height:1.3}.keyword-card span{font-size:.9rem;line-height:1.65;color:var(--gray-600)}.two-col{display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:center}.visual-panel{display:flex;flex-direction:column;gap:16px}.visual-card{background:var(--midnight);border:1px solid rgba(245,197,24,.1);border-radius:var(--radius);padding:24px}.visual-card strong{color:var(--yellow);display:block;margin-bottom:6px}.visual-card p{color:var(--gray-400);font-size:.9rem}.step-list{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;counter-reset:step}.step{min-width:0;background:var(--white);border:1px solid var(--gray-200);border-radius:var(--radius);padding:28px 24px;position:relative;transition:all .3s var(--transition)}.step:hover{border-color:var(--yellow);box-shadow:var(--shadow)}.step-number{display:inline-flex;align-items:center;justify-content:center;width:44px;height:44px;border-radius:50%;background:var(--yellow);color:var(--night-blue);font-weight:800;font-size:1.1rem;margin-bottom:16px}.step h3{font-size:1.05rem;font-weight:700;margin-bottom:8px;color:var(--night-blue)}.step p{font-size:.9rem;color:var(--gray-600);line-height:1.65}.section-warm .step,.section-dark .step{background:var(--midnight);border-color:rgba(245,197,24,.1)}.section-warm .step h3,.section-dark .step h3{color:var(--white)}.section-warm .step p,.section-dark .step p{color:var(--gray-400)}.feature-stack{display:flex;flex-direction:column;gap:24px}.feature-row{display:grid;grid-template-columns:1fr 1fr;gap:32px;align-items:center;min-width:0;background:var(--white);border:1px solid var(--gray-200);border-radius:var(--radius);padding:32px;transition:border-color .3s}.feature-row:hover{border-color:var(--yellow)}.feature-row h3{font-size:1.1rem;font-weight:700;margin-bottom:8px;color:var(--night-blue)}.feature-row p{font-size:.9rem;color:var(--gray-600);line-height:1.65}.feature-box{background:var(--gray-50);border-radius:var(--radius);padding:24px}.feature-metric{display:flex;align-items:baseline;gap:8px;margin-bottom:8px}.feature-metric strong{font-size:2rem;font-weight:800;color:var(--yellow)}.feature-metric span{font-size:.85rem;color:var(--gray-500)}.section-alt .feature-row{background:var(--white)}.faq-list{max-width:780px;margin:0 auto;display:flex;flex-direction:column;gap:8px}.faq-list details{background:var(--white);border:1px solid var(--gray-200);border-radius:var(--radius);transition:border-color .2s}.faq-list details[open]{border-color:var(--yellow)}.faq-list summary{padding:18px 24px;font-weight:600;font-size:.95rem;cursor:pointer;list-style:none;display:flex;align-items:center;justify-content:space-between;gap:16px;text-align:left;color:var(--night-blue)}.faq-list summary::-webkit-details-marker{display:none}.faq-list summary::after{content:"+";font-size:1.3rem;color:var(--yellow);font-weight:700;transition:transform .25s var(--transition)}.faq-list details[open] summary::after{content:"−"}.faq-list details p{padding:0 24px 18px;font-size:.9rem;color:var(--gray-600);line-height:1.7}.section-dark .faq-list details{background:var(--midnight);border-color:rgba(245,197,24,.1)}.section-dark .faq-list summary{color:var(--white)}.section-dark .faq-list details p{color:var(--gray-400)}.cta-band{background:linear-gradient(135deg,var(--midnight),var(--night-blue));border:1px solid rgba(245,197,24,.15);border-radius:var(--radius-lg);padding:clamp(32px,5vw,56px) clamp(24px,4vw,48px);display:flex;align-items:center;justify-content:space-between;gap:32px;flex-wrap:wrap}.cta-band h2{font-size:clamp(1.2rem,2.5vw,1.6rem);font-weight:800;color:var(--white);margin-bottom:8px}.cta-band p{color:var(--gray-400);font-size:.95rem;max-width:520px}.cta-actions{display:flex;flex-wrap:wrap;gap:12px}.newsletter-band{background:var(--gray-50);border:1px solid var(--gray-200);border-radius:var(--radius-lg);padding:clamp(28px,5vw,48px);display:grid;grid-template-columns:minmax(0,1fr) minmax(280px,420px);align-items:center;gap:28px}.newsletter-band h2{font-size:clamp(1.3rem,2.5vw,1.8rem);font-weight:800;line-height:1.2;color:var(--night-blue);margin-bottom:10px}.newsletter-band p{font-size:.95rem;color:var(--gray-600);line-height:1.7;max-width:680px}.newsletter-form{display:flex;gap:10px;width:100%}.newsletter-form input{min-width:0;flex:1;min-height:48px;padding:12px 14px;border:1.5px solid var(--gray-300);border-radius:var(--radius-sm);font-size:.95rem;color:var(--gray-800);background:var(--white)}.newsletter-form input:focus{outline:none;border-color:var(--yellow);box-shadow:0 0 0 3px var(--yellow-glow)}.newsletter-form button{min-height:48px;padding:12px 18px;border-radius:var(--radius-sm);background:var(--yellow);color:var(--night-blue);font-size:.92rem;font-weight:800;transition:background .2s var(--transition),transform .2s var(--transition)}.newsletter-form button:hover{background:var(--yellow-hover);transform:translateY(-1px)}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}.testimonial{min-width:0;background:var(--white);border:1px solid var(--gray-200);border-radius:var(--radius);padding:28px 24px;transition:all .3s var(--transition)}.testimonial:hover{border-color:var(--yellow);box-shadow:var(--shadow)}.testimonial p{font-size:.92rem;color:var(--gray-600);line-height:1.7;margin-bottom:16px}.testimonial strong{color:var(--night-blue);font-size:.95rem}.testimonial-meta{font-size:.8rem;color:var(--gray-500);margin-top:4px}.img-block{border-radius:var(--radius);overflow:hidden;background:var(--gray-100);border:1px solid var(--gray-200)}.img-block img{width:100%;display:block;aspect-ratio:4/3;object-fit:cover;object-position:center}.img-placeholder{display:flex;align-items:center;justify-content:center;min-height:220px;background:linear-gradient(135deg,var(--midnight),var(--night-blue));color:var(--yellow);font-weight:700;font-size:1rem;text-align:center;padding:24px}.content-body{max-width:820px}.content-body h2{font-size:clamp(1.3rem,2.5vw,1.75rem);font-weight:800;color:var(--night-blue);margin:40px 0 16px;line-height:1.25}.content-body h3{font-size:clamp(1.05rem,2vw,1.3rem);font-weight:700;color:var(--night-blue);margin:32px 0 12px;line-height:1.3}.content-body p{font-size:.95rem;color:var(--gray-700);line-height:1.8;margin-bottom:16px}.content-body ul,.content-body ol{margin:12px 0 20px 20px}.content-body ul{list-style:disc}.content-body ol{list-style:decimal}.content-body li{font-size:.93rem;color:var(--gray-700);line-height:1.7;margin-bottom:8px}.content-body a{color:var(--yellow);font-weight:500;text-decoration:underline;text-underline-offset:2px}.content-body a:hover{color:var(--yellow-hover)}.content-body blockquote{border-left:4px solid var(--yellow);padding:16px 20px;margin:20px 0;background:var(--yellow-glow);border-radius:0 var(--radius-sm) var(--radius-sm) 0}.content-body blockquote p{color:var(--gray-700);margin-bottom:0}.content-body table{width:100%;border-collapse:collapse;margin:20px 0;font-size:.9rem}.content-body th{background:var(--night-blue);color:var(--white);padding:12px 16px;text-align:left;font-weight:600}.content-body td{padding:12px 16px;border-bottom:1px solid var(--gray-200);color:var(--gray-700)}.content-body tr:hover td{background:var(--gray-50)}.check-list{margin:16px 0 24px}.check-list li{display:flex;align-items:flex-start;gap:10px;padding:6px 0;font-size:.93rem;color:var(--gray-700)}.check-list .check{color:var(--yellow);font-weight:700;flex-shrink:0;font-size:1rem}.tutorial-step{display:grid;grid-template-columns:48px 1fr;gap:20px;margin:28px 0;padding:24px;background:var(--gray-50);border-radius:var(--radius);border:1px solid var(--gray-200)}.tutorial-step:hover{border-color:var(--yellow)}.tutorial-num{width:48px;height:48px;border-radius:50%;background:var(--yellow);color:var(--night-blue);font-weight:800;font-size:1.2rem;display:flex;align-items:center;justify-content:center;flex-shrink:0}.tutorial-step h3{font-size:1.05rem;font-weight:700;color:var(--night-blue);margin-bottom:6px}.tutorial-step p{font-size:.9rem;color:var(--gray-600);line-height:1.7}.contact-form{max-width:600px}.form-group{margin-bottom:20px}.form-group label{display:block;font-size:.88rem;font-weight:600;color:var(--night-blue);margin-bottom:6px}.form-group input,.form-group textarea,.form-group select{width:100%;padding:12px 16px;border:1.5px solid var(--gray-300);border-radius:var(--radius-sm);font-size:.92rem;color:var(--gray-800);background:var(--white);transition:border-color .2s}.form-group input:focus,.form-group textarea:focus,.form-group select:focus{outline:none;border-color:var(--yellow);box-shadow:0 0 0 3px var(--yellow-glow)}.form-group textarea{resize:vertical;min-height:120px}.contact-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:20px;margin:32px 0}.contact-card{background:var(--white);border:1px solid var(--gray-200);border-radius:var(--radius);padding:24px;text-align:center;transition:all .3s var(--transition)}.contact-card:hover{border-color:var(--yellow);transform:translateY(-2px);box-shadow:var(--shadow)}.contact-card-icon{width:48px;height:48px;border-radius:50%;background:var(--yellow-glow);color:var(--yellow);display:inline-flex;align-items:center;justify-content:center;font-weight:800;font-size:1rem;margin-bottom:12px}.contact-card h3{font-size:1rem;font-weight:700;color:var(--night-blue);margin-bottom:6px}.contact-card p{font-size:.88rem;color:var(--gray-600)}.terms-body{counter-reset:terms-section}.terms-body h2{counter-increment:terms-section;counter-reset:terms-sub}.terms-body h2::before{content:counter(terms-section) ". ";color:var(--yellow)}.site-footer{background:var(--night-blue);color:var(--gray-400);padding:clamp(40px,6vw,72px) 0 0;border-top:2px solid var(--yellow)}.footer-grid{display:grid;grid-template-columns:1.5fr 1fr 1fr 1fr;gap:40px;padding-bottom:40px}.site-footer h2{color:var(--white);font-size:1.2rem;font-weight:800;margin-bottom:12px}.site-footer h3{color:var(--yellow);font-size:.9rem;font-weight:700;text-transform:uppercase;letter-spacing:.05em;margin-bottom:14px}.site-footer p{font-size:.88rem;line-height:1.7;margin-bottom:12px}.site-footer ul li{margin-bottom:8px}.site-footer ul a{color:var(--gray-400);font-size:.88rem}.site-footer ul a:hover{color:var(--yellow)}.footer-social{display:flex;gap:10px;margin-top:16px}.footer-social a{width:36px;height:36px;border-radius:50%;background:var(--midnight);color:var(--gray-400);display:inline-flex;align-items:center;justify-content:center;font-size:.75rem;font-weight:700;transition:all .2s}.footer-social a:hover{background:var(--yellow);color:var(--night-blue)}.footer-bottom{border-top:1px solid rgba(245,197,24,.1);padding:20px 0;display:flex;justify-content:space-between;flex-wrap:wrap;gap:12px;font-size:.8rem}@media(max-width:1024px){.hero-grid,.two-col{grid-template-columns:1fr;gap:32px}.hero-visual{max-width:500px}.card-grid,.step-list,.keyword-grid{grid-template-columns:repeat(2,1fr)}.newsletter-band{grid-template-columns:1fr}.feature-row{grid-template-columns:1fr}.footer-grid{grid-template-columns:1fr 1fr}}@media(max-width:960px){.main-nav{display:none}.header-actions{margin-left:auto;display:flex;gap:6px}.header-actions .btn{padding:6px 12px;font-size:.75rem}.mobile-menu{display:block;margin-left:0}}@media(max-width:768px){.card-grid,.step-list,.proof-grid,.keyword-grid{grid-template-columns:1fr}.cta-band{flex-direction:column;text-align:center}.cta-actions,.newsletter-form{width:100%;flex-direction:column}.cta-actions .btn,.newsletter-form button{width:100%}.footer-grid{grid-template-columns:1fr}.footer-bottom{flex-direction:column;text-align:center}.tutorial-step{grid-template-columns:1fr}.tutorial-num{margin:0 auto}.tutorial-step{text-align:center}.contact-grid{grid-template-columns:1fr}}@media(max-width:480px){.shell{padding:0 16px}.logo span:last-child{display:none}.hero h1{font-size:1.55rem}.hero-actions{flex-direction:column}.hero-actions .btn{width:100%;justify-content:center}.header-actions .btn{min-height:38px;padding:6px 10px;font-size:.72rem}.btn-lg{padding:12px 24px}}@media print{.site-header,.site-footer,.mobile-menu,.cta-band,.hero-visual,.btn{display:none!important}body{color:#000;background:#fff;font-size:11pt}.hero{background:#fff;color:#000;padding:20px 0}.section{padding:16px 0}a{color:#000;text-decoration:underline}}@media(prefers-reduced-motion:reduce){*,*::before,*::after{animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important;scroll-behavior:auto!important}}.seo-img{width:100%;height:auto;display:block;border-radius:var(--radius);background:linear-gradient(135deg,var(--midnight),var(--night-blue));transition:transform .35s var(--transition)}.img-block .seo-img{border-radius:0}.img-block:hover .seo-img{transform:scale(1.025)}.skip-link{position:absolute;top:-100%;left:16px;z-index:200;padding:8px 16px;background:var(--yellow);color:var(--night-blue);font-weight:700;border-radius:var(--radius-sm);font-size:.9rem}.skip-link:focus{top:8px}@keyframes fadeUp{from{opacity:0;transform:translateY(16px)}to{opacity:1;transform:translateY(0)}}.fade-up{animation:fadeUp .5s var(--transition) both}