* { margin:0; padding:0; box-sizing:border-box; }
body { font-family:'Arial', sans-serif; background: linear-gradient(-45deg, #667eea, #764ba2, #f093fb, #f5576c, #4facfe, #00f2fe); background-size:400% 400%; animation: gradientShift 120s linear infinite; overflow-x:hidden; }
@keyframes gradientShift { 0%{background-position:0% 50%;}50%{background-position:100% 50%;}100%{background-position:0% 50%;} }
.floating-orbs { position:fixed; top:0; left:0; width:100%; height:100%; pointer-events:none; z-index:1; contain: paint; }
.orb { position:absolute; border-radius:50%; background: radial-gradient(circle, rgba(255,255,255,0.08), transparent); animation: float 30s infinite linear; opacity:0.9; }
.orb:nth-child(1){ width:80px; height:80px; top:20%; left:10%; animation-delay:-3s; }
.orb:nth-child(2){ width:120px; height:120px; top:60%; right:15%; animation-delay:-9s; }
.orb:nth-child(3){ width:60px; height:60px; bottom:20%; left:20%; animation-delay:-14s; }
@keyframes float { 0%,100%{transform:translateY(0) rotate(0deg);}33%{transform:translateY(-8px) rotate(30deg);}66%{transform:translateY(6px) rotate(-30deg);} }
.navbar { position:fixed; top:0; width:100%; background:rgba(255,255,255,0.12); backdrop-filter:blur(12px); border-bottom:1px solid rgba(255,255,255,0.15); z-index:200; padding:1rem 2rem; transition:all .3s ease; }
.nav-content { max-width:1200px; margin:0 auto; display:flex; justify-content:space-between; align-items:center; }
.logo { font-size:1.8rem; font-weight:700; color:#fff; text-shadow:0 0 10px rgba(255,255,255,0.3); letter-spacing:.5px; display:flex; gap:.6rem; align-items:center; }
.logo span.badge { font-size:.65rem; padding:.25rem .5rem; border-radius:8px; background:rgba(76, 175, 80, 0.25); border:1px solid rgba(76,175,80,0.5); color:#c8facc; font-weight:600; text-transform:uppercase; letter-spacing:1px; }
.nav-links { display:flex; gap:2rem; }
.nav-links a { color:rgba(255,255,255,0.9); text-decoration:none; font-weight:500; position:relative; transition:.3s; }
.nav-links a:hover { color:#fff; text-shadow:0 0 10px rgba(255,255,255,0.5); }
.nav-links a::after { content:""; position:absolute; bottom:-5px; left:0; width:0; height:2px; background:#fff; transition:width .3s; }
.nav-links a:hover::after{ width:100%; }
.info-button { position:fixed; top:90px; right:25px; z-index:250; background:rgba(255,255,255,0.18); border:1px solid rgba(255,255,255,0.35); backdrop-filter:blur(10px); width:48px; height:48px; border-radius:14px; cursor:pointer; display:flex; align-items:center; justify-content:center; color:#fff; font-size:1.3rem; box-shadow:0 8px 25px -8px rgba(0,0,0,0.4); transition:.35s; }
.info-button:hover { transform:translateY(-4px) rotate(10deg); background:rgba(255,255,255,0.3); }
.hero { min-height:100vh; display:flex; align-items:center; justify-content:center; text-align:center; padding:2rem; position:relative; z-index:10; }
.hero-content { max-width:860px; opacity:0; animation: heroFadeIn 2s ease .5s forwards; }
@keyframes heroFadeIn { from { opacity:0; transform:translateY(50px);} to { opacity:1; transform:translateY(0);} }
.hero h1 { font-size:4rem; font-weight:300; color:#fff; margin-bottom:1.25rem; text-shadow:0 0 30px rgba(255,255,255,0.5); line-height:1.15; }
.hero-subtitle { font-size:1.35rem; color:rgba(255,255,255,0.9); margin-bottom:2rem; line-height:1.55; }
.hero-badges { display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; margin-bottom:2.5rem; }
.hero-badge { background:rgba(255,255,255,0.17); border:1px solid rgba(255,255,255,0.28); padding:.65rem 1.25rem; border-radius:25px; color:#fff; font-size:.85rem; backdrop-filter:blur(10px); font-weight:600; letter-spacing:.5px; display:flex; gap:.4rem; align-items:center; }
.hero-badge.green { border-color:rgba(76,175,80,0.6); background:rgba(76,175,80,0.25); color:#e9ffee; }
.cta-buttons { display:flex; gap:1.2rem; justify-content:center; flex-wrap:wrap; }
.cta-btn { background:rgba(255,255,255,0.2); border:2px solid rgba(255,255,255,0.35); color:#fff; padding:1.15rem 2.4rem; border-radius:50px; font-size:1.05rem; font-weight:600; cursor:pointer; transition:all .28s; backdrop-filter:blur(15px); text-decoration:none; display:inline-block; position:relative; overflow:hidden; }
.cta-btn::before { content:""; position:absolute; top:50%; left:50%; width:0; height:0; background:rgba(255,255,255,0.24); border-radius:50%; transform:translate(-50%,-50%); transition:.65s; }
.cta-btn:hover::before { width:280px; height:280px; }
.cta-btn:hover { background:rgba(255,255,255,0.32); border-color:rgba(255,255,255,0.65); transform:translateY(-3px); box-shadow:0 10px 30px rgba(0,0,0,0.18); }
.apps-section { background:rgba(0,0,0,0.1); backdrop-filter:blur(20px); padding:6rem 2rem; position:relative; z-index:10; }
.apps-container { max-width:1200px; margin:0 auto; }
.section-title { text-align:center; font-size:3rem; color:#fff; margin-bottom:1rem; font-weight:300; text-shadow:0 0 20px rgba(255,255,255,0.3); }
.section-subtitle { text-align:center; font-size:1.15rem; color:rgba(255,255,255,0.8); margin-bottom:4rem; max-width:620px; margin-left:auto; margin-right:auto; line-height:1.55; }
.apps-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(450px,1fr)); gap:3rem; margin-top:3rem; }
.app-card { background:rgba(255,255,255,0.12); backdrop-filter:blur(12px); border:1px solid rgba(255,255,255,0.22); border-radius:26px; padding:2.4rem; transition:.28s; position:relative; overflow:hidden; cursor:pointer; box-shadow:0 12px 30px -10px rgba(0,0,0,0.35); }
.app-card::before { content:""; position:absolute; top:-50%; left:-50%; width:200%; height:200%; background:linear-gradient(45deg, transparent, rgba(255,255,255,0.05), transparent); transform:rotate(-45deg); opacity:0; }
.app-card:hover { transform:translateY(-8px); background:rgba(255,255,255,0.18); border-color:rgba(255,255,255,0.45); box-shadow:0 22px 48px -10px rgba(0,0,0,0.35); }
.app-card:hover::before { animation:shine 1s ease-in-out; }
@keyframes shine { 0%{transform:translateX(-100%) translateY(-100%) rotate(-45deg); opacity:0;}50%{opacity:1;}100%{transform:translateX(100%) translateY(100%) rotate(-45deg); opacity:0;} }
.app-icon { font-size:3rem; margin-bottom:1.3rem; display:block; }
.app-title { font-size:1.85rem; color:#fff; margin-bottom:1rem; font-weight:600; }
.app-description { color:rgba(255,255,255,0.8); margin-bottom:1.45rem; line-height:1.55; }
.app-stats { display:flex; gap:2rem; margin-bottom:2rem; flex-wrap:wrap; }
.stat { text-align:center; flex:1; min-width:100px; }
.stat-number { font-size:1.75rem; font-weight:700; color:#4ade80; display:block; }
.stat-label { font-size:.85rem; color:rgba(255,255,255,0.75); letter-spacing:.5px; }
.app-btn { width:100%; background:linear-gradient(45deg, rgba(255,255,255,0.22), rgba(255,255,255,0.1)); border:2px solid rgba(255,255,255,0.34); color:#fff; padding:1rem; border-radius:15px; font-size:1rem; font-weight:600; cursor:pointer; transition:.28s; backdrop-filter:blur(10px); }
.app-btn:hover { background:linear-gradient(45deg, rgba(255,255,255,0.35), rgba(255,255,255,0.18)); border-color:rgba(255,255,255,0.55); transform:translateY(-3px); }
.science-section { padding:6rem 2rem; background:rgba(0,0,0,0.22); backdrop-filter:blur(30px); position:relative; z-index:10; }
.science-container { max-width:1000px; margin:0 auto; text-align:center; }
.science-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(250px,1fr)); gap:2rem; margin-top:3rem; }
.science-item { background:rgba(255,255,255,0.09); padding:2rem; border-radius:20px; border:1px solid rgba(255,255,255,0.12); backdrop-filter:blur(15px); transition:.28s; }
.science-item:hover { transform:translateY(-6px); background:rgba(255,255,255,0.15); }
.science-number { font-size:2.35rem; font-weight:700; color:#60a5fa; margin-bottom:.4rem; }
.science-label { color:#fff; font-weight:600; margin-bottom:.45rem; letter-spacing:.5px; }
.science-description { color:rgba(255,255,255,0.75); font-size:.9rem; line-height:1.4; }
.footer { background:rgba(0,0,0,0.34); backdrop-filter:blur(20px); padding:3.2rem 2rem 2.2rem; text-align:center; position:relative; z-index:10; }
.footer-content { max-width:800px; margin:0 auto; color:rgba(255,255,255,0.8); }
.footer-quote { font-size:1.05rem; font-style:italic; margin-bottom:2rem; color:rgba(255,255,255,0.92); }
.footer-links { display:flex; justify-content:center; gap:2rem; margin-bottom:2rem; flex-wrap:wrap; }
.footer-links a { color:rgba(255,255,255,0.7); text-decoration:none; font-size:.9rem; transition:.3s; }
.footer-links a:hover { color:#fff; text-shadow:0 0 10px rgba(255,255,255,0.5); }
.ad-slot { background:rgba(255,255,255,0.08); border:1px dashed rgba(255,255,255,0.25); border-radius:14px; padding:1rem; color:rgba(255,255,255,0.55); font-size:.75rem; text-align:center; letter-spacing:.5px; }
/* Modal Base */
.modal-overlay { position:fixed; inset:0; background:rgba(10,10,20,0.6); backdrop-filter:blur(12px); display:flex; align-items:center; justify-content:center; z-index:500; opacity:0; pointer-events:none; transition:.4s; }
.modal-overlay.active { opacity:1; pointer-events:auto; }
.modal { width:min(900px, 94vw); max-height:88vh; overflow:hidden; display:flex; flex-direction:column; background:rgba(255,255,255,0.15); border:1px solid rgba(255,255,255,0.3); border-radius:28px; backdrop-filter:blur(12px) saturate(150%); box-shadow:0 30px 70px -20px rgba(0,0,0,0.5); animation:popIn .6s ease; position:relative; }
@keyframes popIn { 0%{ transform:translateY(40px) scale(.92); opacity:0;} 100%{ transform:translateY(0) scale(1); opacity:1;} }
.modal-header { display:flex; justify-content:space-between; align-items:center; padding:1.25rem 1.7rem; border-bottom:1px solid rgba(255,255,255,0.15); }
.modal-header h3 { font-size:1.35rem; font-weight:600; color:#fff; letter-spacing:.5px; }
.close-btn { background:rgba(255,255,255,0.2); border:1px solid rgba(255,255,255,0.35); width:40px; height:40px; border-radius:12px; display:flex; align-items:center; justify-content:center; color:#fff; cursor:pointer; transition:.3s; font-size:1.1rem; }
.close-btn:hover { background:rgba(255,255,255,0.33); transform:rotate(12deg); }
.modal-content { padding:1.7rem 1.9rem 2.2rem; overflow-y:auto; scrollbar-width:thin; scrollbar-color:rgba(255,255,255,0.3) transparent; }
.modal-content::-webkit-scrollbar { width:6px; }
.modal-content::-webkit-scrollbar-track { background:transparent; }
.modal-content::-webkit-scrollbar-thumb { background:rgba(255,255,255,0.35); border-radius:20px; }

/* Make the Mandala modal occupy most of the viewport and keep the canvas square */
#mandalaModal .modal {
    width: min(1100px, 98vw);
    height: 92vh; /* near-full viewport height */
    max-height: none;
    display: flex;
    flex-direction: column;
}
#mandalaModal .modal-content {
    flex: 1 1 auto;
    padding: 0.8rem 1rem 1rem;
    overflow: hidden; /* remove internal scroll */
    display: flex;
    align-items: stretch; /* <-- important: let canvas container take full height */
    justify-content: center;
}
#mandalaModal .mandala-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}
/* Keep canvas square: choose the largest square that fits modal content area */
#mandalaModal .canvas-container {
    width: min(100%, 980px);
    max-width: 98%;
    height: calc(100% - 84px); /* leave room for header/tool rows */
    max-height: calc(100% - 84px);
    aspect-ratio: 1 / 1; /* keep square, but sized by explicit height */
    margin: 0 auto;
    border-radius: 14px;
}
#mandalaModal canvas#mandalaCanvas {
    width: 100% !important;
    height: 100% !important;
    display: block;
}

@media (max-width:520px){
    #mandalaModal .modal { height: 96vh; }
    #mandalaModal .canvas-container { width: min(100%, calc(96vh - 160px)); height: calc(96vh - 160px); }
}

/* Breathing Game */
.breathing-wrapper { display:flex; flex-direction:column; align-items:center; gap:1.6rem; }
.breathing-orb { width:260px; height:260px; border-radius:50%; background:radial-gradient(circle at 30% 30%, rgba(255,255,255,0.85), rgba(255,255,255,0.15)); box-shadow:0 0 0 12px rgba(255,255,255,0.12), 0 0 50px -10px rgba(255,255,255,0.5), inset 0 0 40px -10px rgba(255,255,255,0.7); display:flex; align-items:center; justify-content:center; position:relative; animation:pulse 12s ease-in-out infinite; }
@keyframes pulse { 0%,100%{ transform:scale(.82);} 50%{ transform:scale(1); } }
.breathing-phase { font-size:1.75rem; font-weight:600; letter-spacing:1px; color:#2f2f46; mix-blend-mode:overlay; text-shadow:0 2px 10px rgba(255,255,255,0.6); }
.breathing-controls { display:flex; flex-wrap:wrap; gap:1rem; justify-content:center; }
.chip { background:rgba(255,255,255,0.18); border:1px solid rgba(255,255,255,0.35); padding:.55rem 1rem; border-radius:14px; font-size:.8rem; letter-spacing:.5px; color:#fff; cursor:pointer; font-weight:600; transition:.28s; text-transform:uppercase; }
.chip.active, .chip:hover { background:rgba(255,255,255,0.35); }
.cycle-stat { display:flex; gap:2rem; justify-content:center; margin-top:.3rem; }
.cycle-stat div { color:#fff; font-size:.85rem; letter-spacing:.6px; }
.primary-btn { background:linear-gradient(120deg,#6366f1,#8b5cf6,#ec4899); border:none; color:#fff; padding:.9rem 1.55rem; border-radius:14px; cursor:pointer; font-weight:600; letter-spacing:.5px; font-size:.9rem; box-shadow:0 10px 30px -8px rgba(99,102,241,0.65); transition:.28s; position:relative; overflow:hidden; }
.primary-btn:hover { transform:translateY(-3px); box-shadow:0 18px 38px -12px rgba(99,102,241,0.75); }
.breathing-guide { max-width:560px; color:rgba(255,255,255,0.82); font-size:.9rem; line-height:1.5; text-align:center; }

/* Breathing modal: disable internal scrolling and make orb responsive to available space */
#breathingModal .modal {
    width: min(820px, 96vw);
    height: min(740px, 88vh);
}
#breathingModal .modal-content {
    display:flex;
    align-items:center;
    justify-content:center;
    padding:1rem;
    overflow: hidden; /* prevent inner scrollbar */
}
#breathingModal .breathing-wrapper {
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:1.2rem;
    width:100%;
    height: calc(100% - 48px); /* allow breathing content to grow, leaving header space */
    max-height: calc(100% - 48px);
}
/* make orb scale responsively but never overflow modal */
#breathingModal .breathing-orb {
    width: min(46vmin, 420px);
    height: min(46vmin, 420px);
    max-width: 92%;
    max-height: 92%;
}

@media (max-width:520px){
    #breathingModal .modal { height: 92vh; width: 96vw; }
    #breathingModal .breathing-orb { width: min(56vmin, 300px); height: min(56vmin, 300px); }
}

/* Mandala Drawing */
.mandala-wrapper { display:flex; flex-direction:column; gap:1.2rem; align-items:center; }
.canvas-container { position:relative; width:600px; max-width:90%; aspect-ratio:1/1; border-radius:30px; overflow:hidden; background:radial-gradient(circle at 50% 50%, rgba(255,255,255,0.3), rgba(255,255,255,0.05)); border:1px solid rgba(255,255,255,0.35); backdrop-filter:blur(20px); box-shadow:0 25px 50px -18px rgba(0,0,0,0.55); }
canvas#mandalaCanvas { width:100%; height:100%; cursor:crosshair; }
.tool-row { display:flex; flex-wrap:wrap; gap:.9rem; justify-content:center; }
.tool-row label { font-size:.65rem; letter-spacing:1px; font-weight:600; color:#fff; opacity:.8; text-transform:uppercase; }
.tool-row input[type=range] { width:120px; }
.color-palette { display:flex; gap:.4rem; flex-wrap:wrap; }
.color-swatch { width:30px; height:30px; border-radius:10px; cursor:pointer; border:2px solid rgba(255,255,255,0.6); box-shadow:0 0 0 4px rgba(255,255,255,0.2); transition:.28s; }
.color-swatch:hover, .color-swatch.active { transform:translateY(-4px) scale(1.05); box-shadow:0 12px 25px -8px rgba(0,0,0,0.55); }
.symmetry-select { background:rgba(255,255,255,0.18); border:1px solid rgba(255,255,255,0.4); color:#fff; padding:.55rem .9rem; border-radius:12px; font-weight:600; letter-spacing:.5px; cursor:pointer; }
.toolbar-actions { display:flex; gap:.7rem; flex-wrap:wrap; justify-content:center; }
.secondary-btn { background:rgba(255,255,255,0.15); border:1px solid rgba(255,255,255,0.4); color:#fff; padding:.65rem 1.1rem; border-radius:12px; font-size:.8rem; letter-spacing:.5px; font-weight:600; cursor:pointer; transition:.28s; }
.secondary-btn:hover { background:rgba(255,255,255,0.3); transform:translateY(-2px); }
.mandala-guide { max-width:620px; color:rgba(255,255,255,0.82); font-size:.85rem; line-height:1.5; text-align:center; margin-top:.4rem; }
/* Research Content */
.research-grid { display:grid; grid-template-columns:repeat(auto-fit, minmax(240px,1fr)); gap:1.3rem; margin:1.2rem 0 2rem; }
.research-card { background:rgba(255,255,255,0.14); border:1px solid rgba(255,255,255,0.32); padding:1rem 1.1rem 1.15rem; border-radius:18px; position:relative; overflow:hidden; }
.research-card h4 { font-size:.8rem; text-transform:uppercase; letter-spacing:1.1px; color:#fff; margin-bottom:.5rem; font-weight:700; }
.research-card p { font-size:.7rem; line-height:1.45; color:rgba(255,255,255,0.82); }
.citation { font-size:.6rem; opacity:.72; margin-top:.5rem; line-height:1.3; }
.highlight-stat { font-size:2.1rem; font-weight:700; background:linear-gradient(120deg,#60a5fa,#a78bfa,#f472b6); -webkit-background-clip:text; background-clip:text; color:transparent; margin-bottom:.2rem; letter-spacing:1px; }
.disclaimer { font-size:.6rem; line-height:1.3; opacity:.7; margin-top:1.2rem; }
/* Performance helpers for animated orbs and large background effects */
.orb-wrapper {
    position: absolute; /* wrappers are positioned inline via JS but provide a default */
    pointer-events: none;
    will-change: transform;
}
.orb {
    will-change: transform, opacity;
    /* ensure orbs are rendered on their own layer */
    transform: translateZ(0);
}

/* Provide a global low-motion utility class for aggressive reductions */
.low-motion body { animation: none !important; }
.low-motion .orb, .low-motion .breathing-orb, .low-motion .cta-btn::before, .low-motion .app-card::before { animation: none !important; }
.low-motion .app-card:hover, .low-motion .cta-btn:hover { transform: none !important; box-shadow: none !important; }
.low-motion .modal { transition: none !important; }
.low-motion .floating-orbs, .low-motion .orb { display:none !important; visibility:hidden !important; opacity:0 !important; }
.low-motion .navbar, .low-motion .modal, .low-motion .app-card, .low-motion .canvas-container { backdrop-filter: none !important; box-shadow: none !important; }
.low-motion .hero-content { animation: none !important; opacity:1 !important; transform:none !important; }

/* Prefer reduced motion: simplify or disable non-essential animations */
@media (prefers-reduced-motion: reduce) {
    :root { scroll-behavior: auto; }
    * {
        animation: none !important;
        transition: none !important;
    }
    /* Stop background gradient animation but retain color stops for visual appeal */
    body { animation: none; }
    .orb { animation: none; }
    .breathing-orb { animation: none; }
    .modal, .app-card, .cta-btn { transition: none; }
    .navbar, .modal, .app-card, .canvas-container { backdrop-filter: blur(6px); }
}

/* Optional: reduce heavy backdrop-filter/box-shadow intensity during scroll for lower-power devices.
   This uses a small media-query targeting devices likely to be mobile/low-power. */
@media (max-width: 900px) {
    .navbar, .modal, .app-card, .canvas-container { backdrop-filter: blur(8px); }
    .breathing-orb { box-shadow: 0 0 0 8px rgba(255,255,255,0.08), 0 0 30px -6px rgba(255,255,255,0.4), inset 0 0 24px -6px rgba(255,255,255,0.6); }
    .floating-orbs, .orb { display:none !important; visibility:hidden !important; opacity:0 !important; }
    .hero h1, .section-title, .logo { text-shadow: none !important; }
    .hero-subtitle, .app-title, .app-description, .stat-number { text-shadow: none !important; }
}

/* Small utility: shorten some long transitions to reduce paint work while keeping polish */
.cta-btn, .app-card, .primary-btn, .secondary-btn { transition-duration: 0.28s; }

/* End of performance helpers */
/* Responsive tweaks */
@media (max-width:768px){ .hero h1{font-size:2.55rem;} .section-title{font-size:2.25rem;} .apps-grid{grid-template-columns:1fr; gap:2.2rem;} .nav-links{display:none;} .cta-buttons{flex-direction:column; align-items:center;} .hero-badges{flex-direction:column; align-items:center;} .breathing-orb{width:210px; height:210px;} }
@media (max-width:520px){ .canvas-container{width:100%;} .modal{border-radius:22px;} }

/* Low-motion toggle button */
.motion-toggle { margin-left:1rem; background:rgba(255,255,255,0.09); border:1px solid rgba(255,255,255,0.18); color:#fff; padding:.4rem .7rem; border-radius:10px; cursor:pointer; font-size:.8rem; transition:.2s; }
.motion-toggle[aria-pressed="true"] { background:rgba(255,255,255,0.26); border-color:rgba(255,255,255,0.36); transform:translateY(-2px); }
.motion-toggle:focus { outline:2px solid rgba(99,102,241,0.6); outline-offset:2px; }

/* Performance: remove animations/transitions on interactive buttons to reduce repaint & jank
   Keep visual styling (gradients, colors) but make state changes instantaneous and non-animated. */
.cta-btn,
.cta-btn::before,
.primary-btn,
.secondary-btn,
.app-btn,
.motion-toggle,
.close-btn,
.info-button {
    transition: none !important;
    will-change: auto !important;
}

/* Disable the decorative ripple and hover transforms that trigger heavy paints */
.cta-btn::before { transition: none !important; width:0 !important; height:0 !important; opacity:0 !important; }
/* Prevent transforms on hover that trigger layout/paint; keep instant color changes */
.cta-btn:hover,
.primary-btn:hover,
.secondary-btn:hover,
.app-btn:hover,
.info-button:hover,
.motion-toggle[aria-pressed="true"] {
    transform: none !important;
    box-shadow: none !important;
}

/* Remove persistent box-shadows that are expensive on mobile; keep subtle static depth using borders only */
.primary-btn, .secondary-btn, .app-btn { box-shadow: none !important; }
.info-button { box-shadow: none !important; }

/* Keep accessible focus styles but avoid transition on focus ring */
:focus-visible { outline: 3px solid rgba(99,102,241,0.65); outline-offset:3px; transition: none !important; }

/* Optional: slightly increase contrast on pressed state without animation */
.cta-btn:active, .primary-btn:active, .secondary-btn:active, .app-btn:active { transform: none !important; filter: brightness(0.98); }

/* End overrides for reduced button animations */
