
:root {
  --sapphire: #061A40;
  --sapphire-2: #0A4CA0;
  --black-chrome: #050505;
  --chrome: #101820;
  --ice: #D9E2EC;
  --neon: #F8FDFF;
  --blue: #1F8BFF;
  --blue-2: #00B2FF;
  --muted: #AEBCCA;
  --glass: rgba(248, 253, 255, 0.075);
  --glass-strong: rgba(248, 253, 255, 0.13);
  --border: rgba(248, 253, 255, 0.18);
  --shadow: 0 30px 80px rgba(0,0,0,.34);
  --radius-lg: 30px;
  --radius-md: 22px;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--neon);
  background:
    radial-gradient(circle at 10% 10%, rgba(31,139,255,.25), transparent 35%),
    radial-gradient(circle at 82% 32%, rgba(248,253,255,.18), transparent 30%),
    linear-gradient(135deg, #061A40 0%, #050505 44%, #0a1220 72%, #D9E2EC 110%);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
a:hover { color: var(--neon); }
img { max-width: 100%; display: block; }
p { color: rgba(248,253,255,.78); margin: 0 0 1rem; }
h1, h2, h3, h4 { line-height: 1.05; letter-spacing: -.04em; margin: 0; }
h1 { font-size: clamp(3rem, 8vw, 3.8rem); }
h2 { font-size: clamp(2.15rem, 4vw, 4rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.8rem); }
small { color: rgba(248,253,255,.66); }
.container { width: min(var(--max), calc(100% - 36px)); margin: 0 auto; }
.skip-link { position: absolute; top: -100px; left: 18px; background: var(--neon); color: var(--sapphire); padding: .75rem 1rem; border-radius: 999px; z-index: 1000; }
.skip-link:focus { top: 18px; }
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(5,5,5,.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(248,253,255,.1);
}
.nav { height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { display:flex; align-items:center; gap:12px; font-weight: 900; letter-spacing: -.04em; }
.logo-mark { width: 48px; height: 48px; border-radius: 15px; display:grid; place-items:center; overflow:hidden; padding:4px; background: linear-gradient(135deg, rgba(6,26,64,.98), rgba(5,5,5,.92), rgba(217,226,236,.28)); box-shadow: 0 12px 30px rgba(31,139,255,.22); border: 1px solid rgba(248,253,255,.16); }
.logo-mark img { width: 100%; height: 100%; object-fit: contain; border-radius: 11px; }
.logo-mark svg { width: 24px; height: 24px; }
.logo > span:last-child { display: block; font-size: 1.02rem; color: var(--neon); font-weight: 900; letter-spacing: -.03em; }
.logo > span:last-child span { display: block; font-size: .72rem; color: rgba(248,253,255,.62); font-weight: 650; letter-spacing: .06em; text-transform: uppercase; }
.nav-links { display:flex; align-items:center; gap: 24px; color: rgba(248,253,255,.76); font-weight: 700; font-size: .94rem; }
.nav-links a { position: relative; }
.nav-links a:after { content:""; position:absolute; left:0; right:0; bottom:-8px; height:2px; background: var(--blue); transform: scaleX(0); transform-origin:left; transition: .25s ease; }
.nav-links a:hover:after, .nav-links a[aria-current="page"]:after { transform: scaleX(1); }
.nav-actions { display:flex; align-items:center; gap: 10px; }
.burger { display:none; width: 46px; height: 46px; border:1px solid var(--border); border-radius: 14px; background: rgba(248,253,255,.08); color: var(--neon); cursor:pointer; }
.burger span { display:block; width: 22px; height: 2px; margin: 5px auto; background: var(--neon); border-radius: 999px; transition:.2s ease; }
.burger[aria-expanded="true"] span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2){ opacity:0; }
.burger[aria-expanded="true"] span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }
.btn { display:inline-flex; align-items:center; justify-content:center; gap:.6rem; border:1px solid rgba(248,253,255,.18); border-radius: 999px; padding: .92rem 1.25rem; font-weight: 900; transition: .22s ease; cursor:pointer; }
.btn-primary { color: #F8FDFF; background: linear-gradient(135deg, #0A4CA0, #00B2FF); box-shadow: 0 18px 40px rgba(31,139,255,.24); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 24px 55px rgba(31,139,255,.32); }
.btn-ghost { background: rgba(248,253,255,.06); color: var(--neon); }
.btn-ghost:hover { background: rgba(248,253,255,.12); transform: translateY(-2px); }
.pill { display:inline-flex; align-items:center; gap:.55rem; border:1px solid var(--border); border-radius:999px; padding:.55rem .85rem; background: rgba(248,253,255,.08); color: rgba(248,253,255,.84); font-weight:800; font-size:.84rem; }
.dot { width:8px; height:8px; border-radius:999px; background:var(--blue-2); box-shadow:0 0 18px var(--blue-2); }
.section { padding: 108px 0; position: relative; overflow: hidden; }
.section-tight { padding: 74px 0; }
.section-alt { background: rgba(5,5,5,.22); border-top:1px solid rgba(248,253,255,.08); border-bottom:1px solid rgba(248,253,255,.08); }
.section-ice { background: linear-gradient(135deg, rgba(217,226,236,.96), rgba(248,253,255,.98)); color: var(--sapphire); }
.section-ice p, .section-ice small { color: rgba(6,26,64,.74); }
.hero { min-height: calc(100vh - 78px); display: grid; align-items: center; padding: 64px 0 86px; background: linear-gradient(135deg, rgba(6,26,64,.96), rgba(5,5,5,.82) 45%, rgba(217,226,236,.18)); }
.hero-grid { display:grid; grid-template-columns: 1fr .92fr; gap: 58px; align-items:center; }
.hero-copy { max-width: 720px; }
.eyebrow { color: var(--ice); font-weight:900; text-transform:uppercase; letter-spacing:.16em; font-size:.82rem; margin-bottom: 1.1rem; }
.hero h1 strong, .accent-text { background: linear-gradient(90deg, var(--neon), var(--ice), var(--blue-2)); -webkit-background-clip:text; background-clip:text; color: transparent; }
.lead { font-size: clamp(1.06rem, 1.6vw, .28rem); color: rgba(248,253,255,.78); max-width: 720px; margin-top: 1.35rem; }
.hero-actions { display:flex; flex-wrap:wrap; gap:14px; margin-top: 2rem; }
.trust-row { display:grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 2.4rem; max-width: 680px; }
.trust-item { padding: 14px 16px; border:1px solid var(--border); background: rgba(248,253,255,.07); border-radius: 18px; }
.trust-item b { display:block; font-size:1.22rem; }
.trust-item span { color: rgba(248,253,255,.65); font-size:.9rem; }
.hero-media { position:relative; }
.hero-media img { border-radius: 38px; box-shadow: var(--shadow); border: 1px solid rgba(248,253,255,.15); }
.float-badge { position:absolute; right: -12px; bottom: 40px; width: 178px; padding: 18px; border-radius: 24px; background: linear-gradient(135deg, rgba(6,26,64,.96), rgba(31,139,255,.92)); box-shadow: var(--shadow); border:1px solid rgba(248,253,255,.2); }
.float-badge b { font-size: 2rem; line-height:1; }
.section-head { text-align:center; margin: 0 auto 52px; max-width: 830px; }
.section-head p { margin-top: 1rem; }
.grid-3 { display:grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display:grid; grid-template-columns: repeat(2, 1fr); gap: 42px; align-items:center; }
.card { border:1px solid var(--border); background: linear-gradient(135deg, rgba(248,253,255,.105), rgba(248,253,255,.045)); border-radius: var(--radius-lg); padding: 30px; box-shadow: 0 20px 60px rgba(0,0,0,.13); }
.card:hover { border-color: rgba(31,139,255,.45); transform: translateY(-2px); transition:.22s ease; }
.icon { width: 52px; height:52px; border-radius: 16px; display:grid; place-items:center; margin-bottom: 22px; background: linear-gradient(135deg, rgba(31,139,255,.95), rgba(248,253,255,.18)); box-shadow: 0 14px 30px rgba(31,139,255,.16); }
.icon svg { width:26px; height:26px; }
.card ul, .rich-list { margin: 18px 0 0; padding: 0; list-style: none; display:grid; gap: 10px; }
.card li, .rich-list li { color: rgba(248,253,255,.74); padding-left: 25px; position:relative; }
.card li:before, .rich-list li:before { content:""; width: 7px; height:7px; border-radius:999px; background: var(--blue-2); position:absolute; left:0; top:.72em; box-shadow:0 0 18px rgba(0,178,255,.72); }
.solution-media { position:relative; }
.solution-media img { border-radius: 34px; box-shadow: var(--shadow); border:1px solid rgba(248,253,255,.15); }
.check-list { display:grid; gap: 20px; margin-top: 30px; }
.check { display:grid; grid-template-columns: 42px 1fr; gap: 14px; align-items:start; }
.check .tick { width: 42px; height:42px; border-radius:999px; display:grid; place-items:center; background: linear-gradient(135deg, #0A4CA0, #00B2FF); color: #fff; font-weight: 900; }
.check b { display:block; }
.results { display:grid; grid-template-columns: .95fr 1fr; gap: 50px; align-items:center; }
.results img { border-radius: 32px; box-shadow: var(--shadow); border: 1px solid rgba(248,253,255,.14); }
.quote { padding: 26px 0 26px 28px; border-left: 4px solid var(--blue-2); }
.quote + .quote { border-top:1px solid rgba(248,253,255,.1); }
.quote b { display:block; font-size:1.35rem; margin-bottom: .45rem; }
.stats { display:grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat { text-align:center; padding: 24px 16px; border-radius: 24px; background: rgba(248,253,255,.07); border:1px solid rgba(248,253,255,.1); }
.stat b { display:block; font-size: clamp(2rem, 4vw, 3.2rem); line-height:1; background:linear-gradient(90deg,#00B2FF,#F8FDFF); -webkit-background-clip:text; background-clip:text; color:transparent; }
.stat span { display:block; color: rgba(248,253,255,.68); margin-top: .5rem; }
.long-copy { max-width: 930px; margin: 0 auto; }
.long-copy p { font-size: 1.03rem; }
.form-wrap { display:grid; grid-template-columns: minmax(0, .9fr) minmax(320px, .65fr); gap: 42px; align-items:start; }
.form-card { border: 1px solid rgba(248,253,255,.18); background: linear-gradient(135deg, rgba(248,253,255,.12), rgba(248,253,255,.055)); border-radius: 32px; padding: 30px; box-shadow: var(--shadow); }
.form-grid { display:grid; gap: 16px; }
label { display:grid; gap: 8px; color: rgba(248,253,255,.88); font-weight: 800; font-size: .93rem; }
input, select, textarea { width:100%; border:1px solid rgba(248,253,255,.16); border-radius: 16px; padding: 14px 15px; color: var(--neon); background: rgba(248,253,255,.08); outline: none; font: inherit; }
select option { color: #061A40; }
textarea { min-height: 136px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: rgba(31,139,255,.85); box-shadow: 0 0 0 4px rgba(31,139,255,.16); }
.form-note { font-size:.82rem; color: rgba(248,253,255,.62); text-align:center; margin-top: 14px; }
.info-stack { display:grid; gap: 18px; }
.info-box { border:1px solid var(--border); background: rgba(248,253,255,.08); border-radius: 26px; padding: 26px; }
.info-box p { margin-bottom:.45rem; }
.footer { background: #07101e; border-top:1px solid rgba(248,253,255,.1); padding: 60px 0 38px; }
.footer-grid { display:grid; grid-template-columns: 1.3fr .8fr .8fr .8fr; gap: 38px; }
.footer a { display:block; color: rgba(248,253,255,.68); margin:.58rem 0; }
.footer a:hover { color: var(--neon); }
.footer-bottom { margin-top: 44px; padding-top: 24px; border-top:1px solid rgba(248,253,255,.12); display:grid; grid-template-columns: .7fr 1fr; gap: 30px; color: rgba(248,253,255,.56); font-size:.88rem; }
.page-hero { padding: 96px 0 62px; background: linear-gradient(135deg, rgba(6,26,64,.94), rgba(5,5,5,.86), rgba(217,226,236,.15)); border-bottom:1px solid rgba(248,253,255,.08); }
.page-hero .lead { max-width: 900px; }
.breadcrumbs { display:flex; gap: 8px; color: rgba(248,253,255,.64); margin-bottom: 22px; flex-wrap: wrap; }
.breadcrumbs a { color: rgba(248,253,255,.78); }
.rich-content { max-width: 980px; margin: 0 auto; }
.rich-content h2 { margin: 2rem 0 1rem; }
.rich-content h3 { margin: 1.7rem 0 .8rem; }
.rich-content p, .rich-content li { color: rgba(248,253,255,.78); }
.rich-content ul { margin: 0 0 1.2rem; }
.table-wrap { overflow:auto; border:1px solid var(--border); border-radius: 26px; background: rgba(248,253,255,.06); }
table { width:100%; border-collapse: collapse; min-width: 720px; }
th, td { padding: 18px; text-align:left; border-bottom:1px solid rgba(248,253,255,.1); vertical-align: top; }
th { color: var(--neon); background: rgba(248,253,255,.08); }
td { color: rgba(248,253,255,.74); }
.masonry { column-count: 3; column-gap: 22px; }
.pin { display:inline-block; width:100%; margin: 0 0 22px; border-radius: 28px; overflow:hidden; background: rgba(248,253,255,.08); border:1px solid rgba(248,253,255,.13); break-inside: avoid; box-shadow: 0 24px 54px rgba(0,0,0,.2); }
.pin:nth-child(2n) img { aspect-ratio: 4/5; object-fit: cover; }
.pin img { width:100%; aspect-ratio: 4/3; object-fit: cover; }
.pin figcaption { padding: 18px; color: rgba(248,253,255,.72); }
.cta-band { border:1px solid rgba(248,253,255,.17); background: linear-gradient(135deg, rgba(6,26,64,.92), rgba(31,139,255,.28)); border-radius: 34px; padding: clamp(28px, 5vw, 54px); display:grid; grid-template-columns: 1fr auto; gap: 24px; align-items:center; box-shadow: var(--shadow); }
.faq { display:grid; gap: 14px; }
details { border:1px solid var(--border); border-radius: 22px; background: rgba(248,253,255,.07); padding: 18px 22px; }
summary { cursor:pointer; font-weight:900; }
details p { margin-top: 12px; }
.map-image { border-radius: 32px; border:1px solid rgba(248,253,255,.16); box-shadow: var(--shadow); overflow:hidden; }
.cookie-banner { position: fixed; left: 18px; right: 18px; bottom: 18px; z-index: 200; display:none; }
.cookie-banner.is-visible { display:block; animation: cookieIn .45s ease both; }
.cookie-inner { max-width: 980px; margin:0 auto; display:grid; grid-template-columns: 1fr auto; gap: 20px; align-items:center; border:1px solid rgba(248,253,255,.24); background: rgba(5,5,5,.92); color: var(--neon); padding: 20px; border-radius: 24px; box-shadow: var(--shadow); backdrop-filter: blur(18px); }
.cookie-actions { display:flex; gap: 10px; flex-wrap: wrap; }
@keyframes cookieIn { from { opacity:0; transform: translateY(20px); } to { opacity:1; transform: translateY(0); } }
.alert-modal { position: fixed; inset:0; display:none; place-items:center; z-index:250; background: rgba(5,5,5,.68); padding: 24px; }
.alert-modal.is-visible { display:grid; }
.alert-box { width:min(520px, 100%); border:1px solid rgba(248,253,255,.24); border-radius: 32px; padding: 34px; background: linear-gradient(135deg, rgba(6,26,64,.98), rgba(5,5,5,.96)); box-shadow: var(--shadow); text-align:center; transform: scale(.86); opacity:0; }
.alert-modal.is-visible .alert-box { animation: pop .38s cubic-bezier(.2,.8,.2,1) forwards; }
.alert-check { width: 76px; height:76px; border-radius:999px; margin: 0 auto 20px; display:grid; place-items:center; background: linear-gradient(135deg,#0A4CA0,#00B2FF); box-shadow: 0 0 54px rgba(31,139,255,.35); }
@keyframes pop { to { transform: scale(1); opacity:1; } }
@media (max-width: 980px) {
  .nav-links { position: fixed; inset: 78px 14px auto 14px; display: none; flex-direction: column; align-items: stretch; gap: 0; background: rgba(5,5,5,.96); border:1px solid rgba(248,253,255,.14); border-radius: 24px; padding: 12px; box-shadow: var(--shadow); }
  .nav-links.is-open { display:flex; animation: cookieIn .25s ease both; }
  .nav-links a { padding: 14px 12px; border-radius: 14px; }
  .nav-links a:hover { background: rgba(248,253,255,.08); }
  .nav-actions .btn { display:none; }
  .burger { display:block; }
  .hero-grid, .grid-2, .results, .form-wrap, .footer-bottom, .cta-band { grid-template-columns: 1fr; }
  .grid-3, .stats, .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-row { grid-template-columns: 1fr; }
  .float-badge { right: 18px; }
  .masonry { column-count: 2; }
}
@media (max-width: 640px) {
  .section { padding: 72px 0; }
  .hero { padding-top: 36px; }
  .grid-3, .stats, .footer-grid { grid-template-columns: 1fr; }
  .masonry { column-count: 1; }
  .cookie-inner { grid-template-columns: 1fr; }
  .hero-actions, .cookie-actions { flex-direction: column; }
  .btn { width:100%; }
  h1 { font-size: clamp(2.55rem, 14vw, 4rem); }
  .logo { font-size:.92rem; }
  .logo > span:last-child span { display:none; }
}



.service-thumb {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid rgba(248,253,255,.16);
  margin: -6px 0 22px;
  box-shadow: 0 18px 44px rgba(0,0,0,.18);
  transition: transform .65s cubic-bezier(.2,.8,.2,1), filter .65s ease;
}
.card:hover .service-thumb {
  transform: scale(1.025);
  filter: saturate(1.1) contrast(1.05);
}

/* Premium motion layer: subtle, SEO-safe, accessible animations */
body:before {
  content: "";
  position: fixed;
  inset: -20%;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle at 20% 20%, rgba(0,178,255,.16), transparent 28%),
    radial-gradient(circle at 80% 15%, rgba(248,253,255,.10), transparent 24%),
    radial-gradient(circle at 62% 84%, rgba(10,76,160,.18), transparent 30%);
  animation: atelierAurora 16s ease-in-out infinite alternate;
  filter: blur(2px);
}
.hero { overflow: hidden; isolation: isolate; }
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    linear-gradient(115deg, transparent 0%, rgba(248,253,255,.08) 22%, transparent 44%),
    radial-gradient(circle at 70% 30%, rgba(0,178,255,.20), transparent 38%);
  background-size: 220% 220%, 100% 100%;
  animation: heroSheen 9s ease-in-out infinite;
}
.hero-copy .eyebrow,
.hero-copy h1,
.hero-copy .lead,
.hero-actions,
.trust-row .trust-item {
  opacity: 0;
  transform: translateY(22px);
  animation: heroCopyIn .8s cubic-bezier(.2,.8,.2,1) forwards;
}
.hero-copy h1 { animation-delay: .08s; }
.hero-copy .lead { animation-delay: .18s; }
.hero-actions { animation-delay: .28s; }
.trust-row .trust-item:nth-child(1) { animation-delay: .38s; }
.trust-row .trust-item:nth-child(2) { animation-delay: .48s; }
.trust-row .trust-item:nth-child(3) { animation-delay: .58s; }
.hero-media img,
.solution-media img,
.results img,
.map-image img {
  object-fit: cover;
  transition: transform .65s cubic-bezier(.2,.8,.2,1), filter .65s ease, box-shadow .65s ease;
}
.hero-media img {
  aspect-ratio: 3/2;
  animation: imageRise .95s cubic-bezier(.2,.8,.2,1) .22s both;
}
.solution-media img,
.results img,
.map-image img { aspect-ratio: 3/2; }
.hero-media:hover img,
.solution-media:hover img,
.results:hover img,
.map-image:hover img {
  transform: scale(1.025) translateY(-3px);
  filter: saturate(1.08) contrast(1.04);
}
.hero-media:after,
.solution-media:after,
.results > :first-child:after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 38px;
  background: linear-gradient(120deg, transparent 0%, rgba(248,253,255,.18) 42%, transparent 62%);
  transform: translateX(-140%);
  animation: imageGlint 7.5s ease-in-out infinite;
}
.hero-media:after { border-radius: 38px; }
.solution-media:after { border-radius: 34px; }
.float-badge { animation: floatBadge 4.8s ease-in-out infinite; }
.logo-mark { animation: logoPulse 5.5s ease-in-out infinite; }
.card,
.pin,
.stat,
.info-box,
.form-card,
.quote,
.table-wrap,
.rich-content,
.cta-band,
details,
.section-head,
.check,
.results img,
.solution-media img,
.map-image {
  will-change: transform, opacity;
}
.reveal {
  opacity: 0;
  transform: translateY(34px) scale(.985);
  transition: opacity .75s cubic-bezier(.2,.8,.2,1), transform .75s cubic-bezier(.2,.8,.2,1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.reveal.reveal-left { transform: translateX(-34px) scale(.985); }
.reveal.reveal-right { transform: translateX(34px) scale(.985); }
.reveal.reveal-left.is-visible,
.reveal.reveal-right.is-visible { transform: translateX(0) scale(1); }
.grid-3 > .card:nth-child(2),
.stats > .stat:nth-child(2),
.masonry .pin:nth-child(2) { transition-delay: .08s; }
.grid-3 > .card:nth-child(3),
.stats > .stat:nth-child(3),
.masonry .pin:nth-child(3) { transition-delay: .16s; }
.stats > .stat:nth-child(4),
.masonry .pin:nth-child(4) { transition-delay: .24s; }
.masonry .pin:nth-child(5) { transition-delay: .32s; }
.masonry .pin:nth-child(6) { transition-delay: .40s; }
.card,
.pin,
.stat,
.info-box,
details {
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease, background .28s ease;
}
.card:hover,
.info-box:hover,
details:hover {
  transform: translateY(-6px);
  border-color: rgba(0,178,255,.55);
  box-shadow: 0 28px 68px rgba(0,0,0,.24), 0 0 42px rgba(31,139,255,.12);
}
.stat:hover { transform: translateY(-5px) scale(1.02); }
.pin { transform: translateZ(0); }
.pin img { transition: transform .7s cubic-bezier(.2,.8,.2,1), filter .7s ease; }
.pin:hover img { transform: scale(1.055); filter: saturate(1.12) contrast(1.05); }
.btn-primary { position: relative; overflow: hidden; }
.btn-primary:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, rgba(248,253,255,.42) 45%, transparent 60%);
  transform: translateX(-130%);
  transition: transform .62s ease;
}
.btn-primary:hover:after { transform: translateX(130%); }
.burger { transition: transform .22s ease, background .22s ease, border-color .22s ease; }
.burger:hover { transform: translateY(-2px); border-color: rgba(0,178,255,.6); background: rgba(31,139,255,.18); }
.nav-links.is-open { animation: mobileMenuIn .24s cubic-bezier(.2,.8,.2,1) both; }
.alert-check { animation: checkGlow 1.6s ease-in-out infinite alternate; }
.alert-box h2 { animation: heroCopyIn .35s ease .08s both; }
.alert-box p { animation: heroCopyIn .35s ease .14s both; }
input, select, textarea { transition: border-color .22s ease, box-shadow .22s ease, background .22s ease, transform .22s ease; }
input:focus, select:focus, textarea:focus { transform: translateY(-1px); background: rgba(248,253,255,.105); }
@keyframes atelierAurora {
  0% { transform: translate3d(-1%, -1%, 0) rotate(0deg) scale(1); opacity: .82; }
  100% { transform: translate3d(1.5%, 1%, 0) rotate(4deg) scale(1.05); opacity: 1; }
}
@keyframes heroSheen {
  0%, 100% { background-position: -120% 0, 0 0; opacity: .72; }
  50% { background-position: 130% 0, 0 0; opacity: 1; }
}
@keyframes heroCopyIn {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes imageRise {
  from { opacity: 0; transform: translateY(24px) scale(.965); filter: blur(8px) saturate(.8); }
  to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0) saturate(1); }
}
@keyframes imageGlint {
  0%, 32%, 100% { transform: translateX(-140%); opacity: 0; }
  45% { opacity: .8; }
  62% { transform: translateX(140%); opacity: 0; }
}
@keyframes floatBadge {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}
@keyframes logoPulse {
  0%, 100% { box-shadow: 0 12px 30px rgba(31,139,255,.22); }
  50% { box-shadow: 0 16px 42px rgba(0,178,255,.42); }
}
@keyframes mobileMenuIn {
  from { opacity: 0; transform: translateY(-10px) scale(.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes checkGlow {
  from { transform: scale(1); box-shadow: 0 0 38px rgba(31,139,255,.28); }
  to { transform: scale(1.045); box-shadow: 0 0 74px rgba(0,178,255,.45); }
}

@media (prefers-reduced-motion: reduce) {
  *, *:before, *:after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
