/* =============================================
   Landing V2 – Full Page
   ============================================= */
*{box-sizing:border-box;margin:0;padding:0}

.v2-body{
  font-family:'Inter',-apple-system,BlinkMacSystemFont,sans-serif;
  background:#0a0a0a;color:#1a1a1a;overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}

/* =============================================
   NAVBAR
   ============================================= */
.v2-nav{position:fixed;top:0;left:0;right:0;z-index:9999;padding:0 2.5rem;transition:background .3s}
.v2-nav.scrolled{background:rgba(255,255,255,.92);backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px)}
.v2-nav.dark-mode{background:rgba(10,10,10,.85);backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px)}
.v2-nav-inner{max-width:1320px;margin:0 auto;display:flex;align-items:center;justify-content:space-between;height:64px}
.v2-nav-logo{display:flex;align-items:center;gap:.5rem;text-decoration:none}
.v2-nav-logo-icon{width:28px;height:28px}
.v2-nav-logo-text{font-weight:700;font-size:1.125rem;color:#1a1a1a;letter-spacing:-.02em;transition:color .3s}
.v2-nav.dark-mode .v2-nav-logo-text{color:#fff}
.v2-nav-logo-accent{font-weight:400;opacity:.7}
.v2-nav-links{display:flex;gap:2rem}
.v2-nav-links a{font-size:.875rem;font-weight:400;color:#6b7280;text-decoration:none;transition:color .2s}
.v2-nav-links a:hover{color:#1a1a1a}
.v2-nav.dark-mode .v2-nav-links a{color:#9ca3af}
.v2-nav.dark-mode .v2-nav-links a:hover{color:#fff}
.v2-nav-actions{display:flex;gap:.625rem}
.v2-nav-btn{display:inline-flex;align-items:center;padding:.5rem 1.25rem;font-size:.8125rem;font-weight:500;font-family:inherit;border-radius:6px;text-decoration:none;cursor:pointer;transition:all .2s}
.v2-nav-btn--outline{border:1px solid #d1d5db;color:#1a1a1a;background:transparent}
.v2-nav-btn--outline:hover{border-color:#9ca3af;background:#f9fafb}
.v2-nav.dark-mode .v2-nav-btn--outline{border-color:#4b5563;color:#e5e7eb}
.v2-nav.dark-mode .v2-nav-btn--outline:hover{border-color:rgba(91,108,240,.5);background:rgba(91,108,240,.06)}
.v2-nav-btn--filled{background:#0a0a0a;color:#fff;border:1px solid #0a0a0a}
.v2-nav-btn--filled:hover{background:#1f1f1f}
.v2-nav.dark-mode .v2-nav-btn--filled{background:#fff;color:#0a0a0a;border-color:#fff}
.v2-nav.dark-mode .v2-nav-btn--filled:hover{background:#e5e7eb}

.v2-nav-mobile-toggle{display:none;flex-direction:column;gap:4px;background:none;border:none;cursor:pointer;padding:4px}
.v2-nav-mobile-toggle span{display:block;width:20px;height:1.5px;background:#1a1a1a;transition:all .2s}
.v2-nav.dark-mode .v2-nav-mobile-toggle span{background:#fff}
.v2-nav-mobile-menu{display:none;flex-direction:column;padding:1rem 2.5rem 1.5rem;gap:.75rem;background:#fff;border-top:1px solid #f0f0f0}
.v2-nav.dark-mode .v2-nav-mobile-menu{background:#111;border-top-color:#222}
.v2-nav-mobile-menu a{font-size:.875rem;color:#6b7280;text-decoration:none}
.v2-nav.dark-mode .v2-nav-mobile-menu a{color:#9ca3af}
.v2-nav-mobile-actions{display:flex;gap:.5rem;margin-top:.5rem}

/* =============================================
   HERO
   ============================================= */
.v2-hero{position:relative;width:100%;height:200vh;overflow:visible}
.v2-hero-bg-dark,.v2-tile-grid,.v2-hero-content,.v2-hero-bottom{position:fixed;top:0;left:0;width:100%;height:100vh}

/* Dark hero background with marquee */
.v2-hero-bg-dark{background:#0a0a0a;z-index:0;display:flex;flex-direction:column;justify-content:center;align-items:stretch;overflow:hidden}

/* Marquee text styles */
.marquee-layer{white-space:nowrap;overflow:hidden;line-height:1.15;font-family:'Inter',sans-serif;font-weight:800;text-transform:uppercase;letter-spacing:-.03em}
.marquee-layer--white{color:rgba(255,255,255,.92)}
.marquee-layer--white-mid{color:rgba(255,255,255,.45)}
.marquee-layer--white-dim{color:rgba(255,255,255,.15)}
.marquee-layer--red{color:#ef4444}
.marquee-layer--red-dim{color:rgba(239,68,68,.25)}
.marquee-row-1,.marquee-row-3{font-size:clamp(2.5rem,5.5vw,5rem)}
.marquee-row-2{font-size:clamp(2rem,4.5vw,4rem)}
.marquee-row-4{font-size:clamp(3rem,7vw,6rem)}
.marquee-row-5,.marquee-row-7{font-size:clamp(1.5rem,3vw,2.5rem)}
.marquee-row-6,.marquee-row-8{font-size:clamp(1.5rem,3vw,2.5rem)}
.marquee-track{display:inline-flex;will-change:transform}
.marquee-track--left{animation:mq-left 30s linear infinite}
.marquee-track--right{animation:mq-right 30s linear infinite}
@keyframes mq-left{0%{transform:translateX(0)}100%{transform:translateX(-50%)}}
@keyframes mq-right{0%{transform:translateX(-50%)}100%{transform:translateX(0)}}

/* =============================================
   VIDEO SECTION (scrolls over the pinned marquee)
   ============================================= */
.v2-video-section{position:relative;z-index:2;background:#0a0a0a;padding:4rem 2rem 6rem}
.v2-video-wrap{max-width:960px;margin:0 auto;border-radius:12px;overflow:hidden;border:1px solid rgba(255,255,255,.08);box-shadow:0 0 80px rgba(91,108,240,.06)}
.v2-video-section .v2-video{width:100%;display:block}

/* Blue ambient glows */
.v2-hero-blue-glow{position:fixed;pointer-events:none;z-index:0;border-radius:50%}
.v2-hero-blue-glow--tl{top:-10%;left:-5%;width:45vw;height:45vw;background:radial-gradient(circle,rgba(91,108,240,.06) 0%,transparent 70%)}
.v2-hero-blue-glow--br{bottom:-10%;right:-5%;width:40vw;height:40vw;background:radial-gradient(circle,rgba(91,108,240,.05) 0%,transparent 70%)}

/* Tile grid */
.v2-tile-grid{z-index:1;display:grid;pointer-events:none;will-change:transform;background:#fff}
.v2-tile-wrapper{perspective:800px;overflow:visible}
.v2-tile{
  width:100%;height:100%;
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  will-change:transform,opacity,background;
  transform-style:preserve-3d;
  /* Backface visible so we see the "black back" during flip */
  backface-visibility:visible;
}

/* Hero content */
.v2-hero-content{z-index:2;display:flex;flex-direction:column;align-items:center;justify-content:center;pointer-events:none}
.v2-hero-title{font-weight:500;font-size:clamp(3.5rem,9vw,7.5rem);line-height:1.02;text-align:center;color:#1a1a1a;letter-spacing:-.04em}
.v2-hero-cta-wrap{position:relative;margin-top:2.5rem}
.v2-hero-cta{position:relative;z-index:1;display:inline-flex;align-items:center;gap:.5rem;padding:.8rem 1.75rem;background:#fff;color:#1a1a1a;border:1px solid rgba(0,0,0,.12);border-radius:100px;font-family:inherit;font-weight:500;font-size:.9375rem;text-decoration:none;pointer-events:auto;cursor:pointer;transition:all .25s}
.v2-hero-cta i{font-size:.8125rem;color:#4A58DB}
.v2-hero-cta:hover{background:#0a0a0a;color:#fff;border-color:#0a0a0a}
.v2-hero-cta:hover i{color:#7E8CF7}
.v2-hero-cta-glow{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:220px;height:90px;background:radial-gradient(ellipse,rgba(91,108,240,.15) 0%,rgba(239,68,68,.06) 50%,transparent 70%);border-radius:50%;pointer-events:none;z-index:0}

/* Bottom cards */
.v2-hero-bottom{z-index:2;display:flex;align-items:flex-end;justify-content:space-between;padding:0 3.5rem 2.5rem;pointer-events:none;height:100vh}
.v2-hero-card{max-width:320px;pointer-events:auto}
.v2-hero-card h3{font-weight:600;font-size:.9375rem;color:#1a1a1a;margin-bottom:.25rem;transition:color .3s}
.v2-hero-card p{font-weight:400;font-size:.8125rem;color:#9ca3af;line-height:1.5;transition:color .3s}
.v2-hero-scroll-indicator{position:absolute;bottom:1.5rem;left:50%;transform:translateX(-50%);color:#c9c9c9;animation:v2-bounce 2.5s ease-in-out infinite}
@keyframes v2-bounce{0%,100%{transform:translateX(-50%) translateY(0)}50%{transform:translateX(-50%) translateY(5px)}}

/* (video now lives inside hero bg) */

/* =============================================
   CAPABILITIES
   ============================================= */
.v2-capabilities{position:relative;z-index:2;background:#0a0a0a;padding:6rem 2rem;border-top:1px solid #1a1a1a}
.v2-cap-inner{max-width:1100px;margin:0 auto}
.v2-cap-heading{font-weight:500;font-size:clamp(2.5rem,6vw,4.5rem);color:#fff;letter-spacing:-.03em;margin-bottom:2rem}
.v2-cap-tabs{display:flex;gap:0;border-bottom:1px solid rgba(91,108,240,.15);margin-bottom:3rem;overflow-x:auto;position:relative}
.v2-cap-tab{padding:.75rem 1.25rem;background:none;border:none;border-bottom:2px solid transparent;color:#6b7280;font-family:inherit;font-size:.875rem;font-weight:400;cursor:pointer;white-space:nowrap;transition:color .3s ease}
.v2-cap-tab:hover{color:#d1d5db;border-bottom-color:rgba(91,108,240,.3)}
.v2-cap-tab.active{color:#fff;border-bottom-color:#5B6CF0}
/* Panel transition: separate out/in per element */
.v2-cap-content{position:relative;overflow:hidden}
.v2-cap-panel{display:none;gap:3rem;align-items:flex-start}
.v2-cap-panel.active{display:flex}
.v2-cap-panel--reverse.active{flex-direction:row-reverse}

/* Individual element animations */
.v2-cap-panel .v2-cap-text,
.v2-cap-panel .v2-cap-preview{
  opacity:1;transform:translateY(0);
  transition:opacity .35s cubic-bezier(.4,0,.2,1),transform .35s cubic-bezier(.4,0,.2,1);
}

/* Exiting state — each element slides down + fades out */
.v2-cap-panel.cap-exit .v2-cap-text{
  opacity:0;transform:translateY(-20px);transition-duration:.25s;
}
.v2-cap-panel.cap-exit .v2-cap-preview{
  opacity:0;transform:translateY(-14px);transition-duration:.25s;transition-delay:.06s;
}

/* Entering state — elements start below, then slide up into place */
.v2-cap-panel.cap-enter .v2-cap-text{
  opacity:0;transform:translateY(24px);
}
.v2-cap-panel.cap-enter .v2-cap-preview{
  opacity:0;transform:translateY(18px);
}

/* Entering active — staggered arrival */
.v2-cap-panel.cap-enter-active .v2-cap-text{
  opacity:1;transform:translateY(0);transition-duration:.4s;transition-delay:.05s;
}
.v2-cap-panel.cap-enter-active .v2-cap-preview{
  opacity:1;transform:translateY(0);transition-duration:.4s;transition-delay:.15s;
}
.v2-cap-text{flex:1;min-width:280px}
.v2-cap-text h3{font-weight:500;font-size:clamp(1.25rem,2.5vw,1.75rem);color:#fff;line-height:1.3;margin-bottom:1rem;letter-spacing:-.01em}
.v2-cap-text p{font-size:.875rem;color:#9ca3af;line-height:1.65}
.v2-cap-preview{flex:1.3;min-width:320px}
.v2-cap-screenshot{width:100%;border-radius:10px;border:1px solid #222;display:block}
.v2-cap-data-note{margin-top:.75rem;font-size:.8125rem;color:#6b7280;line-height:1.6}
.v2-cap-data-note a{color:#5B6CF0;text-decoration:underline;text-underline-offset:2px}

/* =============================================
   FAQ SECTION
   ============================================= */
.v2-faq{background:#0a0a0a;padding:6rem 2rem;position:relative;z-index:2}
.v2-faq-inner{max-width:800px;margin:0 auto}
.v2-faq-heading{font-weight:500;font-size:clamp(2rem,5vw,3.5rem);color:#fff;letter-spacing:-.03em;margin-bottom:3rem;text-align:center}
.v2-faq-list{display:flex;flex-direction:column;gap:0}
.v2-faq-item{border-bottom:1px solid rgba(255,255,255,.08)}
.v2-faq-item:first-child{border-top:1px solid rgba(255,255,255,.08)}
.v2-faq-question{width:100%;display:flex;align-items:center;justify-content:space-between;padding:1.25rem 0;background:none;border:none;color:#fff;font-family:inherit;font-size:1rem;font-weight:400;cursor:pointer;text-align:left;transition:color .2s}
.v2-faq-question:hover{color:#5B6CF0}
.v2-faq-icon{flex-shrink:0;transition:transform .3s ease}
.v2-faq-item.open .v2-faq-icon{transform:rotate(180deg)}
.v2-faq-answer{max-height:0;overflow:hidden;transition:max-height .4s ease,padding .4s ease}
.v2-faq-item.open .v2-faq-answer{max-height:300px;padding-bottom:1.25rem}
.v2-faq-answer p{font-size:.875rem;color:#9ca3af;line-height:1.7}
.v2-faq-answer a{color:#5B6CF0;text-decoration:underline;text-underline-offset:2px}

/* =============================================
   FOCUS SECTION
   ============================================= */
.v2-focus{position:relative;z-index:2;background:#0a0a0a;padding:8rem 2rem;overflow:hidden}
.v2-focus-bg-shapes{position:absolute;inset:0;overflow:hidden;pointer-events:none}
.v2-focus-shape{position:absolute}
/* Blue diamond shapes (left side) */
.v2-focus-shape--blue-1{left:-120px;top:0;width:400px;height:400px;background:rgba(91,108,240,.1);clip-path:polygon(50% 0%,100% 50%,50% 100%,0% 50%);transform:rotate(15deg)}
.v2-focus-shape--blue-2{left:-60px;top:25%;width:300px;height:300px;background:rgba(91,108,240,.06);clip-path:polygon(50% 0%,100% 50%,50% 100%,0% 50%);transform:rotate(-10deg)}
/* Red diamond shapes (right side) */
.v2-focus-shape--red-1{right:-120px;top:-5%;width:400px;height:400px;background:rgba(239,68,68,.08);clip-path:polygon(50% 0%,100% 50%,50% 100%,0% 50%);transform:rotate(-20deg)}
.v2-focus-shape--red-2{right:-60px;top:30%;width:280px;height:280px;background:rgba(239,68,68,.05);clip-path:polygon(50% 0%,100% 50%,50% 100%,0% 50%);transform:rotate(10deg)}

.v2-focus-inner{position:relative;max-width:900px;margin:0 auto;text-align:center}
.v2-focus-title{font-weight:400;font-size:clamp(2rem,5vw,3.5rem);color:#fff;line-height:1.15;margin-bottom:3.5rem;letter-spacing:-.02em}
.v2-focus-columns{display:flex;gap:3rem;justify-content:center}
.v2-focus-col{flex:1;max-width:380px;text-align:center}
.v2-focus-col h3{font-weight:600;font-size:1rem;color:#fff;margin-bottom:.75rem}
.v2-focus-col p{font-size:.8125rem;color:#9ca3af;line-height:1.6;margin-bottom:1.5rem}
.v2-focus-btn{display:inline-block;padding:.625rem 1.5rem;font-size:.8125rem;font-weight:500;font-family:inherit;border-radius:6px;text-decoration:none;transition:all .2s;border:1px solid #333;color:#e5e7eb;background:transparent}
.v2-focus-btn:hover{border-color:rgba(91,108,240,.4);background:rgba(91,108,240,.06)}
.v2-focus-btn--filled{background:#fff;color:#0a0a0a;border-color:#fff}
.v2-focus-btn--filled:hover{background:#e5e7eb}

/* =============================================
   TRUSTED BY
   ============================================= */
.v2-trusted{position:relative;z-index:2;background:#0a0a0a;border-top:1px solid #1a1a1a;padding:5rem 2rem}
.v2-trusted-inner{max-width:1100px;margin:0 auto;display:flex;align-items:flex-start;justify-content:center;gap:3rem}
.v2-trusted-group{flex:1;text-align:center}
.v2-trusted-divider{width:1px;background:#222;align-self:stretch;flex-shrink:0}
.v2-trusted-label{font-size:.6875rem;font-weight:500;color:#555;text-transform:uppercase;letter-spacing:.1em;margin-bottom:1.5rem}
.v2-trusted-logos{display:flex;justify-content:center;align-items:center;gap:1.25rem;flex-wrap:wrap}
.v2-trusted-logo-card{
  display:flex;align-items:center;justify-content:center;
  padding:.75rem 1.25rem;
  border:1px solid #1e1e1e;border-radius:8px;
  background:rgba(255,255,255,.02);
  transition:background .3s ease,border-color .3s ease,transform .3s ease;
}
.v2-trusted-logo-card:hover{
  background:rgba(91,108,240,.04);border-color:rgba(91,108,240,.25);transform:translateY(-2px);
}
.v2-trusted-logo{height:28px;width:auto;opacity:.6;filter:grayscale(1) brightness(1.5);transition:opacity .3s ease,filter .3s ease}
.v2-trusted-logo-card:hover .v2-trusted-logo{opacity:.9;filter:grayscale(.3) brightness(1.3)}

/* =============================================
   EXAM BOARDS (scrolling marquee)
   ============================================= */
.v2-boards{position:relative;z-index:2;background:#0a0a0a;border-top:1px solid #1a1a1a;padding:1.5rem 0;overflow:hidden}
.v2-boards-track{display:flex;gap:3rem;animation:boards-scroll 20s linear infinite;width:max-content}
.v2-boards-track span{font-size:.875rem;font-weight:600;color:#2a2a2a;letter-spacing:.08em;text-transform:uppercase;white-space:nowrap}
@keyframes boards-scroll{0%{transform:translateX(0)}100%{transform:translateX(-50%)}}

/* =============================================
   FINAL CTA
   ============================================= */
.v2-final-cta{position:relative;z-index:2;background:#fff;padding:8rem 2rem;text-align:center}
.v2-final-title{font-weight:500;font-size:clamp(3rem,8vw,7rem);color:#0a0a0a;line-height:1;letter-spacing:-.04em;margin-bottom:2.5rem}
.v2-final-buttons{display:flex;justify-content:center;gap:.75rem}
.v2-final-btn{display:inline-flex;align-items:center;padding:.75rem 2rem;font-size:.9375rem;font-weight:500;font-family:inherit;border-radius:6px;text-decoration:none;transition:all .2s}
.v2-final-btn--outline{border:1px solid #d1d5db;color:#1a1a1a;background:transparent}
.v2-final-btn--outline:hover{border-color:rgba(91,108,240,.5);background:rgba(91,108,240,.04)}
.v2-final-btn--filled{background:#0a0a0a;color:#fff;border:1px solid #0a0a0a}
.v2-final-btn--filled:hover{background:#1f1f1f}

/* =============================================
   FOOTER (meritfirst-style 3-col with dividers)
   ============================================= */
.v2-footer{position:relative;z-index:2;background:#111;border-top:1px solid #1a1a1a;padding:4rem 2.5rem 0}
.v2-footer-inner{max-width:1100px;margin:0 auto;display:grid;grid-template-columns:1.5fr 1fr 1fr;gap:0}
.v2-footer-brand{padding-right:2rem;border-right:1px solid #1e1e1e}
.v2-footer-col-group{padding-left:2.5rem;border-right:1px solid #1e1e1e;display:flex;flex-direction:column;gap:2rem}
.v2-footer-col-group:last-child{border-right:none}
.v2-footer-tagline{font-size:.8125rem;color:#6b7280;line-height:1.5;margin-top:.75rem;margin-bottom:1.25rem}
.v2-footer-demo-btn{display:inline-block;padding:.5rem 1.25rem;font-size:.75rem;font-weight:500;font-family:inherit;border:1px solid #333;border-radius:6px;color:#e5e7eb;text-decoration:none;transition:all .2s}
.v2-footer-demo-btn:hover{border-color:#5B6CF0;background:rgba(91,108,240,.06);color:#fff}
.v2-footer-col h4{font-size:.6875rem;font-weight:500;color:#6b7280;text-transform:uppercase;letter-spacing:.06em;margin-bottom:1rem}
.v2-footer-col a{display:block;font-size:.8125rem;color:#9ca3af;text-decoration:none;margin-bottom:.5rem;transition:color .2s}
.v2-footer-col a:hover{color:#e5e7eb}
.v2-footer-socials{display:flex;gap:.75rem}
.v2-footer-socials a{color:#6b7280;transition:color .2s;display:block;margin-bottom:0}
.v2-footer-socials a:hover{color:#e5e7eb}
.v2-footer-bottom{max-width:1100px;margin:3rem auto 0;padding:1.5rem 0;border-top:1px solid #1e1e1e;font-size:.75rem;color:#4b5563}

/* =============================================
   BOTTOM STATIC BANNER ("Lock In today")
   ============================================= */
.v2-bottom-banner{background:#111;padding:3rem 2rem;text-align:center;overflow:hidden}
.v2-bottom-banner-text{font-family:'Inter',sans-serif;font-weight:800;font-size:clamp(5rem,14vw,12rem);color:#fff;letter-spacing:-.05em;line-height:1;white-space:nowrap}

/* =============================================
   SCROLL-REVEAL ANIMATIONS
   ============================================= */
.v2-reveal{opacity:0;transform:translateY(32px);transition:opacity .7s cubic-bezier(.4,0,.2,1),transform .7s cubic-bezier(.4,0,.2,1)}
.v2-reveal.visible{opacity:1;transform:translateY(0)}
.v2-reveal-delay-1{transition-delay:.1s}
.v2-reveal-delay-2{transition-delay:.2s}
.v2-reveal-delay-3{transition-delay:.3s}

/* Staggered children reveal */
.v2-reveal-children > *{opacity:0;transform:translateY(20px);transition:opacity .5s cubic-bezier(.4,0,.2,1),transform .5s cubic-bezier(.4,0,.2,1)}
.v2-reveal-children.visible > *:nth-child(1){transition-delay:.05s}
.v2-reveal-children.visible > *:nth-child(2){transition-delay:.1s}
.v2-reveal-children.visible > *:nth-child(3){transition-delay:.15s}
.v2-reveal-children.visible > *:nth-child(4){transition-delay:.2s}
.v2-reveal-children.visible > *:nth-child(5){transition-delay:.25s}
.v2-reveal-children.visible > *{opacity:1;transform:translateY(0)}
/* Only apply stagger when parent is visible */
.v2-reveal-children:not(.visible) > *{opacity:0;transform:translateY(20px)}

/* Enhanced button hover micro-interactions */
.v2-hero-cta{transition:all .3s cubic-bezier(.4,0,.2,1);transform:translateY(0)}
.v2-hero-cta:hover{transform:translateY(-2px);box-shadow:0 4px 24px rgba(91,108,240,.18)}
.v2-hero-cta:active{transform:translateY(0);transition-duration:.1s}

.v2-focus-btn{transition:all .3s cubic-bezier(.4,0,.2,1);transform:translateY(0)}
.v2-focus-btn:hover{transform:translateY(-2px);box-shadow:0 4px 20px rgba(91,108,240,.1)}
.v2-focus-btn:active{transform:translateY(0);transition-duration:.1s}

.v2-final-btn{transition:all .3s cubic-bezier(.4,0,.2,1);transform:translateY(0)}
.v2-final-btn:hover{transform:translateY(-2px);box-shadow:0 4px 20px rgba(91,108,240,.1)}
.v2-final-btn:active{transform:translateY(0);transition-duration:.1s}

.v2-nav-btn{transition:all .25s cubic-bezier(.4,0,.2,1)}
.v2-nav-btn:active{transform:scale(.97);transition-duration:.1s}

/* Card hover lift */
.v2-hero-card{transition:transform .3s ease,box-shadow .3s ease}
.v2-hero-card:hover{transform:translateY(-3px);box-shadow:0 4px 16px rgba(91,108,240,.08)}

/* Focus columns hover */
.v2-focus-col{transition:transform .35s cubic-bezier(.4,0,.2,1)}
.v2-focus-col:hover{transform:translateY(-4px)}

/* Trusted logo cards handled in main trusted section */

/* Screenshot image hover */
.v2-cap-screenshot{transition:transform .4s cubic-bezier(.4,0,.2,1),box-shadow .4s ease,border-color .4s ease}
.v2-cap-screenshot:hover{transform:scale(1.02);box-shadow:0 8px 40px rgba(91,108,240,.12);border-color:rgba(91,108,240,.25)}


/* =============================================
   RESPONSIVE — TABLET (≤ 768px)
   ============================================= */
@media(max-width:768px){
  /* --- Nav --- */
  .v2-nav{padding:0 1.25rem}
  .v2-nav-links,.v2-nav-actions{display:none}
  .v2-nav-mobile-toggle{display:flex}
  .v2-nav-mobile-menu{display:flex;padding:0 1.25rem;gap:0;max-height:0;overflow:hidden;opacity:0;transition:max-height .35s cubic-bezier(.4,0,.2,1),opacity .25s ease,padding .35s ease,gap .35s ease}
  .v2-nav-mobile-menu.open{max-height:400px;opacity:1;padding:1rem 1.25rem 1.5rem;gap:.75rem}
  .v2-nav-mobile-menu a{padding:.375rem 0;font-size:.9375rem}
  .v2-nav-mobile-actions{display:flex;gap:.5rem;margin-top:.75rem}
  .v2-nav-mobile-actions .v2-nav-btn{flex:1;justify-content:center;padding:.625rem 1rem;font-size:.875rem;min-height:44px}

  /* --- Hero --- */
  .v2-hero{height:180vh}
  .v2-hero-title{font-size:clamp(2.5rem,11vw,4rem)}
  .v2-hero-cta-wrap{margin-top:2rem}
  .v2-hero-cta{padding:.75rem 1.5rem;font-size:.875rem;min-height:48px}
  .v2-hero-cta-glow{width:180px;height:70px}
  .v2-hero-bottom{display:none}
  .v2-hero-scroll-indicator{display:none}
  .v2-hero-blue-glow--tl{width:60vw;height:60vw}
  .v2-hero-blue-glow--br{width:50vw;height:50vw}

  /* --- Marquee --- */
  .marquee-row-1,.marquee-row-3{font-size:clamp(1.5rem,7vw,2.5rem)}
  .marquee-row-2{font-size:clamp(1.25rem,5.5vw,2rem)}
  .marquee-row-4{font-size:clamp(1.75rem,8vw,3rem)}
  .marquee-row-5,.marquee-row-6,.marquee-row-7,.marquee-row-8{font-size:clamp(1rem,4vw,1.5rem)}

  /* --- Video --- */
  .v2-video-section{padding:2rem 1rem 4rem}
  .v2-video-wrap{border-radius:8px}

  /* --- Capabilities --- */
  .v2-capabilities{padding:4rem 1.25rem}
  .v2-cap-heading{font-size:clamp(2rem,7vw,3rem);margin-bottom:1.5rem}
  .v2-cap-tabs{gap:0;margin-bottom:2rem;-webkit-overflow-scrolling:touch;scrollbar-width:none;-ms-overflow-style:none;
    mask-image:linear-gradient(to right,transparent,#000 8px,#000 calc(100% - 24px),transparent);
    -webkit-mask-image:linear-gradient(to right,transparent,#000 8px,#000 calc(100% - 24px),transparent);
  }
  .v2-cap-tabs::-webkit-scrollbar{display:none}
  .v2-cap-tab{padding:.625rem 1rem;font-size:.8125rem;min-height:44px}
  .v2-cap-panel.active{flex-direction:column;gap:1.5rem}
  .v2-cap-panel--reverse.active{flex-direction:column}
  .v2-cap-text{min-width:0}
  .v2-cap-text h3{font-size:1.125rem}
  .v2-cap-text p{font-size:.8125rem}
  .v2-cap-preview{min-width:0;width:100%}
  .v2-cap-screenshot{border-radius:8px}

  /* --- Focus --- */
  .v2-focus{padding:5rem 1.25rem}
  .v2-focus-title{font-size:clamp(1.75rem,6vw,2.5rem);margin-bottom:2.5rem}
  .v2-focus-columns{flex-direction:column;gap:2.5rem}
  .v2-focus-col{max-width:100%}
  .v2-focus-col p{font-size:.8125rem;margin-bottom:1.25rem}
  .v2-focus-btn{min-height:44px;padding:.75rem 1.5rem;font-size:.875rem}
  .v2-focus-shape--blue-1{left:-180px;width:300px;height:300px}
  .v2-focus-shape--blue-2{left:-100px;width:220px;height:220px}
  .v2-focus-shape--red-1{right:-180px;width:300px;height:300px}
  .v2-focus-shape--red-2{right:-100px;width:200px;height:200px}

  /* --- Trusted --- */
  .v2-trusted{padding:3.5rem 1.25rem}
  .v2-trusted-inner{flex-direction:column;gap:2.5rem}
  .v2-trusted-divider{width:100%;height:1px;align-self:auto}
  .v2-trusted-logos{gap:.75rem}
  .v2-trusted-logo-card{padding:.5rem .875rem}
  .v2-trusted-logo{height:22px}

  /* --- Exam Boards --- */
  .v2-boards{padding:1.25rem 0}

  /* --- Final CTA --- */
  .v2-final-cta{padding:5rem 1.25rem}
  .v2-final-title{font-size:clamp(2.5rem,10vw,4.5rem);margin-bottom:2rem}
  .v2-final-btn{min-height:48px;padding:.75rem 1.75rem;font-size:.875rem}

  /* --- Footer --- */
  .v2-footer{padding:3rem 1.25rem 0}
  .v2-footer-inner{grid-template-columns:1fr;gap:0}
  .v2-footer-brand{border-right:none;padding-right:0;padding-bottom:2rem;border-bottom:1px solid #1e1e1e}
  .v2-footer-col-group{padding-left:0;border-right:none;border-bottom:1px solid #1e1e1e;padding-bottom:2rem;padding-top:1.5rem}
  .v2-footer-col-group:last-child{border-bottom:none}
  .v2-footer-demo-btn{min-height:44px;display:inline-flex;align-items:center}
  .v2-footer-bottom{margin:2rem auto 0;padding:1.25rem 0}

  /* --- Bottom banner --- */
  .v2-bottom-banner{padding:2rem 1rem}
  .v2-bottom-banner-text{font-size:clamp(3rem,13vw,7rem)}

  /* --- Disable hover effects on touch (use active instead) --- */
  .v2-hero-card:hover{transform:none;box-shadow:none}
  .v2-focus-col:hover{transform:none}
  .v2-cap-screenshot:hover{transform:none;box-shadow:none;border-color:#222}
  .v2-trusted-logo-card:hover{background:rgba(255,255,255,.02);border-color:#1e1e1e;transform:none}

  /* Touch-friendly active states */
  .v2-hero-cta:active{background:#0a0a0a;color:#fff;border-color:#0a0a0a;box-shadow:0 0 20px rgba(91,108,240,.2)}
  .v2-focus-btn:active{border-color:rgba(91,108,240,.4);background:rgba(91,108,240,.06)}
  .v2-focus-btn--filled:active{background:#d1d5db}
  .v2-final-btn--outline:active{border-color:rgba(91,108,240,.5);background:rgba(91,108,240,.04)}
  .v2-final-btn--filled:active{background:#1f1f1f}
  .v2-nav-btn:active{transform:scale(.97)}
  .v2-footer-demo-btn:active{border-color:#5B6CF0;background:rgba(91,108,240,.06)}
}

/* =============================================
   RESPONSIVE — PHONE (≤ 480px)
   ============================================= */
@media(max-width:480px){
  /* --- Hero --- */
  .v2-hero{height:160vh}
  .v2-hero-title{font-size:clamp(2rem,10vw,2.75rem)}
  .v2-hero-cta{padding:.7rem 1.25rem;font-size:.8125rem}
  .v2-hero-bottom{padding:0 1rem 1.25rem;gap:.75rem}
  .v2-hero-card h3{font-size:.875rem}
  .v2-hero-card p{font-size:.75rem}

  /* --- Capabilities --- */
  .v2-capabilities{padding:3rem 1rem}
  .v2-cap-heading{font-size:1.75rem}
  .v2-cap-tab{padding:.5rem .75rem;font-size:.75rem}
  .v2-cap-text h3{font-size:1rem}

  /* --- FAQ --- */
  .v2-faq{padding:3rem 1rem}
  .v2-faq-heading{font-size:1.5rem;margin-bottom:2rem}

  /* --- Focus --- */
  .v2-focus{padding:4rem 1rem}
  .v2-focus-title{font-size:1.5rem;margin-bottom:2rem}

  /* --- Final CTA --- */
  .v2-final-cta{padding:4rem 1rem}
  .v2-final-title{font-size:clamp(2rem,11vw,3.5rem)}
  .v2-final-buttons{flex-direction:column;align-items:stretch;gap:.5rem;max-width:280px;margin:0 auto}
  .v2-final-btn{justify-content:center}

  /* --- Footer --- */
  .v2-footer{padding:2.5rem 1rem 0}
  .v2-footer-tagline{font-size:.75rem}

  /* --- Bottom banner --- */
  .v2-bottom-banner-text{font-size:clamp(2.5rem,12vw,5rem)}

  /* --- Trusted --- */
  .v2-trusted{padding:3rem 1rem}
  .v2-trusted-logo{height:18px}
  .v2-trusted-logo-card{padding:.5rem .625rem}
}
