/* ==========================================================================
   广东源方科技有限公司 · 官网首页改版
   Yuanfang Tech — Homepage redesign
   设计基线：品牌蓝 #1668E3 + 青 #22C7EE + 薄荷 #2ED9A7，深色墨蓝 #0A1733
   保留原站资产与全部真实文案 / 链接 / 联系方式
   ========================================================================== */

:root{
  --ink-950:#071022;
  --ink-900:#0A1733;
  --ink-800:#10234A;
  --ink-700:#173261;
  --brand-700:#0F57C7;
  --brand-600:#1668E3;
  --brand-500:#2E88F7;
  --brand-400:#5AA6FF;
  --cyan-500:#22C7EE;
  --mint-400:#2ED9A7;

  --line:#E4EBF6;
  --line-strong:#D3DDEF;
  --surface:#FFFFFF;
  --bg:#F5F9FF;
  --banner:#E7EAF0;

  --text:#0E1D3B;
  --muted:#5C6E8C;
  --muted-2:#8796AF;

  --grad-brand:linear-gradient(100deg,#1668E3 0%,#2E88F7 46%,#22C7EE 100%);
  --grad-soft:linear-gradient(124deg,#DFE7FF 1.66%,#D7FFEC 95.3%);
  --grad-ink:linear-gradient(160deg,#0A1733 0%,#10234A 55%,#0E2C63 100%);

  --shadow-sm:0 1px 2px rgba(10,23,51,.05),0 2px 10px rgba(10,23,51,.05);
  --shadow-md:0 4px 14px rgba(10,23,51,.07),0 14px 36px rgba(10,23,51,.08);
  --shadow-lg:0 10px 26px rgba(10,23,51,.10),0 28px 72px rgba(10,23,51,.15);
  --shadow-brand:0 10px 24px rgba(22,104,227,.28),0 2px 6px rgba(22,104,227,.18);

  --radius-sm:10px;
  --radius:16px;
  --radius-lg:24px;
  --radius-xl:32px;

  --container:1200px;
  --gutter:clamp(20px,4vw,32px);
  --header-h:76px;
  --section-y:clamp(64px,9vw,112px);

  --font:"PingFang SC","Microsoft YaHei","Microsoft YaHei UI","Hiragino Sans GB",
        system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
  --font-num:"Segoe UI",-apple-system,Roboto,"Helvetica Neue",Arial,sans-serif;

  --ease:cubic-bezier(.22,.61,.36,1);
  --ease-out:cubic-bezier(.16,1,.3,1);
}

/* ---------- Reset / base ---------- */
*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  margin:0;
  font-family:var(--font);
  font-size:16px;
  line-height:1.7;
  color:var(--text);
  background:var(--surface);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overflow-x:clip;
}
img{max-width:100%;display:block}
/* Inline SVGs without width/height attributes default to 100%x100% per the
   SVG spec, so size every decorative icon explicitly and constrain the rest. */
svg{flex-shrink:0}
a{color:inherit;text-decoration:none}
ul,ol{margin:0;padding:0;list-style:none}
h1,h2,h3,h4{margin:0;font-weight:700;line-height:1.25;text-wrap:balance}
p{margin:0}
figure{margin:0}
button,input,textarea{font:inherit;color:inherit}
:focus-visible{outline:2px solid var(--brand-500);outline-offset:3px;border-radius:4px}
::selection{background:rgba(22,104,227,.18)}

.container{
  width:100%;
  max-width:var(--container);
  margin-inline:auto;
  padding-inline:var(--gutter);
}

/* Skip link */
.skip{
  position:absolute;left:16px;top:-60px;z-index:200;
  background:var(--ink-900);color:#fff;padding:10px 18px;
  border-radius:0 0 var(--radius-sm) var(--radius-sm);
  font-size:14px;transition:top .25s var(--ease);
}
.skip:focus{top:0}

/* ---------- Shared atoms ---------- */
.eyebrow{
  display:inline-flex;align-items:center;gap:8px;
  font-size:13px;font-weight:600;letter-spacing:.16em;
  text-transform:uppercase;color:var(--brand-600);
}
.eyebrow::before{
  content:"";width:26px;height:2px;border-radius:2px;
  background:var(--grad-brand);
}
.section{padding-block:var(--section-y);position:relative}
.section-head{max-width:760px;margin-bottom:clamp(36px,5vw,56px)}
.section-head.is-center{margin-inline:auto;text-align:center}
.section-head.is-center .eyebrow{justify-content:center}
.section-title{
  font-size:clamp(26px,3.4vw,40px);
  letter-spacing:-.01em;
  margin-top:14px;
}
.section-desc{
  margin-top:16px;color:var(--muted);
  font-size:clamp(14px,1.6vw,16px);line-height:1.85;
}
.section-head.is-center .section-desc{margin-inline:auto}

/* Buttons */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:9px;
  padding:14px 28px;border-radius:999px;border:1px solid transparent;
  font-size:15px;font-weight:600;line-height:1.2;
  cursor:pointer;white-space:nowrap;
  transition:transform .3s var(--ease),box-shadow .3s var(--ease),
             background-color .3s var(--ease),color .3s var(--ease),
             border-color .3s var(--ease);
}
.btn--primary{background:var(--grad-brand);color:#fff;box-shadow:var(--shadow-brand)}
.btn--primary:hover{transform:translateY(-2px);box-shadow:0 16px 34px rgba(22,104,227,.38)}
.btn--ghost{background:rgba(255,255,255,.7);border-color:var(--line-strong);color:var(--ink-800);backdrop-filter:blur(8px)}
.btn--ghost:hover{transform:translateY(-2px);background:#fff;border-color:var(--brand-400);color:var(--brand-600)}
.btn--light{background:#fff;color:var(--ink-900)}
.btn--light:hover{transform:translateY(-2px);box-shadow:0 14px 30px rgba(7,16,34,.22)}
.btn--outline-light{background:transparent;color:#fff;border-color:rgba(255,255,255,.34)}
.btn--outline-light:hover{transform:translateY(-2px);background:rgba(255,255,255,.1);border-color:rgba(255,255,255,.6)}
.btn__arrow{width:16px;height:16px;transition:transform .3s var(--ease)}
.btn:hover .btn__arrow{transform:translateX(4px)}
.btn--sm{padding:10px 20px;font-size:14px}

/* ---------- Scroll progress ---------- */
.progress{
  position:fixed;inset:0 0 auto 0;height:3px;z-index:140;
  background:transparent;pointer-events:none;
}
.progress__bar{
  height:100%;width:0;background:var(--grad-brand);
  box-shadow:0 0 12px rgba(46,136,247,.7);
  transition:width .1s linear;
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header{
  position:fixed;inset:0 0 auto 0;z-index:120;
  height:var(--header-h);
  transition:box-shadow .4s var(--ease),height .4s var(--ease);
}
/* The frosted layer lives on a ::before so .site-header stays a plain box.
   A backdrop-filter on the header itself would make it the containing block
   for the fixed mobile menu and collapse that menu to content height. */
.site-header::before{
  content:"";position:absolute;inset:0;z-index:-1;
  background:rgba(255,255,255,.72);
  backdrop-filter:blur(16px) saturate(160%);
  -webkit-backdrop-filter:blur(16px) saturate(160%);
  border-bottom:1px solid rgba(211,221,239,.55);
  transition:background-color .4s var(--ease),border-color .4s var(--ease);
}
.site-header.is-scrolled{
  height:64px;
  box-shadow:0 6px 28px rgba(10,23,51,.09);
}
.site-header.is-scrolled::before{
  background:rgba(255,255,255,.92);
  border-bottom-color:rgba(211,221,239,.8);
}
/* .container has no explicit height, so it must be told to fill the fixed
   header or .nav's height:100% is silently ignored and the nav never centres.
   .nav must also be told to fill the container: as a flex item it shrinks to
   its content, which leaves no free space for margin-left:auto and the links
   end up clustered next to the logo instead of pushed to the right. */
.site-header > .container{height:100%;display:flex;align-items:center}
.nav{
  height:100%;width:100%;
  display:flex;align-items:center;gap:28px;
}
.nav__brand{
  display:flex;align-items:center;gap:10px;flex-shrink:0;
}
.nav__brand img{height:38px;width:auto;transition:height .4s var(--ease)}
.site-header.is-scrolled .nav__brand img{height:32px}

.nav__menu{display:flex;align-items:center;gap:4px;margin-left:auto}
.menu-item{position:relative}
.menu-link{
  display:flex;align-items:center;gap:6px;
  padding:10px 18px;border-radius:999px;
  font-size:15.5px;font-weight:500;color:var(--ink-800);
  transition:color .25s var(--ease),background-color .25s var(--ease);
}
.menu-link:hover{color:var(--brand-600);background:rgba(22,104,227,.07)}
.menu-link.is-active{color:var(--brand-600);font-weight:600}
.menu-link__caret{
  width:9px;height:9px;border-right:2px solid currentColor;border-bottom:2px solid currentColor;
  transform:rotate(45deg) translateY(-2px);border-color:var(--muted-2);
  transition:transform .3s var(--ease),border-color .25s var(--ease);
}
.has-drop:hover .menu-link__caret,.has-drop:focus-within .menu-link__caret{transform:rotate(-135deg) translateY(-2px);border-color:var(--brand-500)}

/* Mega dropdown */
.drop{
  position:absolute;top:calc(100% + 14px);left:50%;transform:translateX(-50%);
  min-width:210px;
  background:rgba(255,255,255,.98);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow-lg);
  padding:10px;
  opacity:0;visibility:hidden;pointer-events:none;
  transform:translateX(-50%) translateY(10px);
  transition:opacity .28s var(--ease),transform .28s var(--ease),visibility .28s;
}
.has-drop:hover .drop,.has-drop:focus-within .drop{
  opacity:1;visibility:visible;pointer-events:auto;
  transform:translateX(-50%) translateY(0);
}
/* bridge so the pointer doesn't leave the trigger between menu and panel */
.drop::before{content:"";position:absolute;top:-16px;left:0;right:0;height:18px}
.drop__link{
  display:flex;align-items:center;gap:10px;
  padding:10px 14px;border-radius:10px;
  font-size:14.5px;color:var(--ink-800);
  transition:background-color .2s var(--ease),color .2s var(--ease),padding-left .2s var(--ease);
}
.drop__link::before{
  content:"";width:6px;height:6px;border-radius:50%;flex-shrink:0;
  background:var(--line-strong);transition:background-color .2s var(--ease),transform .2s var(--ease);
}
.drop__link:hover{background:linear-gradient(100deg,rgba(22,104,227,.09),rgba(46,222,160,.1));color:var(--brand-600);padding-left:18px}
.drop__link:hover::before{background:var(--grad-brand);background:var(--brand-500);transform:scale(1.5)}

.nav__cta{margin-left:14px;flex-shrink:0}

/* Mobile toggle */
.nav-toggle{
  display:none;position:relative;
  width:42px;height:42px;border:1px solid var(--line-strong);border-radius:12px;
  background:rgba(255,255,255,.7);cursor:pointer;margin-left:auto;
  align-items:center;justify-content:center;flex-direction:column;gap:5px;
}
.nav-toggle span{display:block;width:18px;height:2px;border-radius:2px;background:var(--ink-800);transition:transform .3s var(--ease),opacity .2s}
.nav-toggle[aria-expanded="true"] span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.nav-toggle[aria-expanded="true"] span:nth-child(2){opacity:0}
.nav-toggle[aria-expanded="true"] span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero{
  position:relative;
  margin-top:var(--header-h);
  background:var(--banner);
  overflow:hidden;
  isolation:isolate;
}
/* The image sits on its own layer so it can breathe (Ken Burns drift) and be
   pushed by the cursor independently of the grid and scrim overlays. */
.hero__media{
  position:absolute;inset:0;
  background-color:var(--banner);
  z-index:-2;
  transform:translate3d(var(--px,0px),var(--py,0px),0);
  will-change:transform;
}
.hero__media__img{
  position:absolute;inset:0;
  background-image:url("/static/upload/image/20250401/1743486601985293.png");
  background-size:cover;
  background-position:72% center;
  transform-origin:72% 50%;
  animation:hero-pan 30s var(--ease) infinite;
  will-change:transform;
}
/* {pboot:slide} can return several banners. JS adds .is-multi only when there
   really is more than one, so a single banner keeps the fallback above and a
   no-JS page still gets a background instead of the solid colour. */
.hero.is-multi .hero__media__img{opacity:0;transition:opacity 1.2s ease}
.hero.is-multi .hero__media__img.is-active{opacity:1}
/* Soft breathing light behind the isometric device — sells the "powered on" feel */
.hero__media__glow{
  position:absolute;inset:0;
  background:radial-gradient(34% 36% at 71% 55%,rgba(56,152,255,.42),rgba(56,152,255,0) 72%);
  animation:hero-glow 6.5s ease-in-out infinite;
}
/* A single light streak that rakes across the scene, then rests */
.hero__sweep{
  position:absolute;inset:0;z-index:-1;overflow:hidden;pointer-events:none;
}
/* Soft stops fake the blur instead of filter:blur(), which forces a
   re-rasterise of a large animating layer and stalls frame capture. */
.hero__sweep::before{
  content:"";position:absolute;top:-30%;left:0;width:54%;height:160%;
  background:linear-gradient(100deg,
    rgba(120,205,255,0) 0%,
    rgba(150,215,255,.06) 30%,
    rgba(150,215,255,.20) 44%,
    rgba(255,255,255,.38) 51%,
    rgba(150,215,255,.20) 58%,
    rgba(150,215,255,.06) 72%,
    rgba(120,205,255,0) 100%);
  transform:translate3d(-140%,0,0);
  animation:hero-sweep 11s var(--ease) 3s infinite;
}
/* Small motes drifting up through the illustration area only */
.hero__particles{
  position:absolute;inset:0;z-index:-1;overflow:hidden;pointer-events:none;
  -webkit-mask-image:linear-gradient(90deg,transparent 0%,transparent 36%,#000 72%);
          mask-image:linear-gradient(90deg,transparent 0%,transparent 36%,#000 72%);
}
.hero__particles span{
  position:absolute;left:var(--x);bottom:-12px;
  width:var(--s);height:var(--s);border-radius:50%;
  background:radial-gradient(circle at 35% 32%,rgba(214,240,255,.95),rgba(52,168,255,.42) 68%);
  box-shadow:0 0 10px 2px rgba(66,178,255,.42);
  opacity:0;
  animation:hero-rise var(--d) linear var(--delay) infinite;
  will-change:transform,opacity;
}
@keyframes hero-pan{
  0%,100%{transform:scale(1.07) translate3d(-1.1%,.5%,0)}
  50%{transform:scale(1.15) translate3d(1.1%,-.9%,0)}
}
@keyframes hero-glow{
  0%,100%{opacity:.45;transform:scale(.94)}
  50%{opacity:1;transform:scale(1.08)}
}
@keyframes hero-sweep{
  0%{transform:translate3d(-140%,0,0);opacity:0}
  8%{opacity:1}
  55%{opacity:1}
  62%,100%{transform:translate3d(320%,0,0);opacity:0}
}
@keyframes hero-rise{
  0%{transform:translate3d(0,0,0) scale(.4);opacity:0}
  10%{opacity:.9}
  55%{opacity:.6;transform:translate3d(var(--dx),-58vh,0) scale(1)}
  100%{transform:translate3d(calc(var(--dx) * -.7),-108vh,0) scale(.3);opacity:0}
}
.hero__scrim{
  position:absolute;inset:0;z-index:-1;
  background:
    linear-gradient(90deg,rgba(245,249,255,.99) 0%,rgba(245,249,255,.94) 34%,rgba(231,234,240,.35) 62%,rgba(231,234,240,0) 80%),
    linear-gradient(0deg,rgba(245,249,255,.85) 0%,rgba(245,249,255,0) 26%),
    radial-gradient(60% 80% at 78% 22%,rgba(34,199,238,.16),rgba(34,199,238,0) 62%);
}
.hero__grid{
  position:absolute;inset:0;z-index:-1;opacity:.5;
  background-image:
    linear-gradient(rgba(22,104,227,.05) 1px,transparent 1px),
    linear-gradient(90deg,rgba(22,104,227,.05) 1px,transparent 1px);
  background-size:54px 54px;
  -webkit-mask-image:linear-gradient(90deg,#000 0%,#000 38%,transparent 74%);
          mask-image:linear-gradient(90deg,#000 0%,#000 38%,transparent 74%);
}
.hero__inner{
  display:grid;
  grid-template-columns:minmax(0,50%) minmax(0,1fr);
  align-items:center;gap:44px;
  padding-block:clamp(84px,13vh,150px);
}
.hero__content{max-width:620px}
.hero__badge{
  display:inline-flex;align-items:center;gap:10px;
  padding:8px 16px;border-radius:999px;
  background:rgba(255,255,255,.86);
  border:1px solid var(--line);
  box-shadow:var(--shadow-sm);
  font-size:13.5px;font-weight:600;color:var(--ink-800);
  letter-spacing:.02em;
}
.hero__badge .dot{width:7px;height:7px;border-radius:50%;background:var(--mint-400);box-shadow:0 0 0 4px rgba(46,217,167,.18);animation:pulse 2.4s var(--ease) infinite}
.hero__badge em{font-style:normal;color:var(--brand-600)}
@keyframes pulse{0%,100%{box-shadow:0 0 0 4px rgba(46,217,167,.18)}50%{box-shadow:0 0 0 8px rgba(46,217,167,.05)}}

.hero__title{
  margin-top:26px;
  font-size:clamp(34px,4.6vw,58px);
  font-weight:800;letter-spacing:-.025em;line-height:1.16;
  color:var(--ink-900);
}
.hero__title .grad{
  background:var(--grad-brand);
  -webkit-background-clip:text;background-clip:text;
  -webkit-text-fill-color:transparent;color:transparent;
}
.hero__lead{
  margin-top:24px;
  font-size:clamp(15.5px,1.9vw,18px);
  line-height:1.95;color:var(--muted);
  max-width:560px;
  /* allow CJK runs to break so long sentences never overflow the hero column */
  overflow-wrap:anywhere;
}
.hero__actions{margin-top:36px;display:flex;flex-wrap:wrap;gap:14px}

/* Floating spec chips over the illustration */
.hero__chips{position:relative;height:100%;min-height:320px}
.chip{
  position:absolute;
  display:flex;align-items:center;gap:11px;
  background:rgba(255,255,255,.82);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border:1px solid rgba(255,255,255,.9);
  border-radius:16px;
  padding:12px 18px;
  box-shadow:var(--shadow-md);
  animation:float 7s var(--ease) infinite;
}
.chip__ic{
  width:38px;height:38px;border-radius:11px;flex-shrink:0;
  display:flex;align-items:center;justify-content:center;
  background:var(--grad-soft);color:var(--brand-600);
}
.chip__ic svg{width:20px;height:20px}
.chip__tx b{display:block;font-size:14px;font-weight:700;color:var(--ink-900);line-height:1.3}
.chip__tx span{font-size:12.5px;color:var(--muted)}
.chip--1{top:2%;right:2%;animation-delay:0s}
.chip--2{top:44%;right:26%;animation-delay:-2.3s}
.chip--3{bottom:0;right:6%;animation-delay:-4.6s}
@keyframes float{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-13px)}
}

/* ---------- Trust strip ---------- */
.trust{
  border-block:1px solid var(--line);
  background:linear-gradient(180deg,#fff,var(--bg));
}
.trust__grid{
  display:grid;grid-template-columns:repeat(4,1fr);
  padding-block:clamp(30px,4.2vw,46px);
}
.trust__item{
  display:flex;align-items:center;gap:16px;
  padding-inline:clamp(8px,2vw,28px);
}
.trust__item + .trust__item{border-left:1px solid var(--line)}
.trust__ic{
  width:52px;height:52px;border-radius:14px;flex-shrink:0;
  display:flex;align-items:center;justify-content:center;
  background:linear-gradient(140deg,rgba(22,104,227,.1),rgba(34,199,238,.1));
  border:1px solid rgba(22,104,227,.14);color:var(--brand-600);
}
.trust__ic svg{width:25px;height:25px}
.trust__num{
  font-family:var(--font-num);font-size:clamp(24px,2.8vw,32px);
  font-weight:800;letter-spacing:-.02em;line-height:1.1;
  background:var(--grad-brand);
  -webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent;
  font-variant-numeric:tabular-nums;
}
.trust__num.is-text{font-family:var(--font);font-size:clamp(18px,2vw,22px)}
.trust__lb{font-size:13.5px;color:var(--muted);margin-top:3px}

/* ==========================================================================
   Advantages  （原「源方科技」四卡片）
   ========================================================================== */
.adv{background:var(--surface)}
.adv__grid{display:grid;grid-template-columns:repeat(4,1fr);gap:22px}
.adv__card{
  position:relative;
  padding:38px 26px 32px;
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  background:#fff;
  text-align:center;
  overflow:hidden;
  transition:transform .45s var(--ease),box-shadow .45s var(--ease),border-color .45s var(--ease);
}
.adv__card::after{
  content:"";position:absolute;inset:0;
  background:var(--grad-soft);
  opacity:0;transition:opacity .45s var(--ease);
  -webkit-mask:linear-gradient(#000,#000);mask:linear-gradient(#000,#000);
}
.adv__card:hover{transform:translateY(-8px);box-shadow:var(--shadow-lg);border-color:rgba(46,136,247,.35)}
.adv__card:hover::after{opacity:.55}
.adv__card > *{position:relative;z-index:1}
.adv__fig{
  width:148px;height:148px;margin:0 auto 24px;
  display:flex;align-items:center;justify-content:center;
  border-radius:50%;
  background:radial-gradient(circle at 50% 42%,rgba(46,136,247,.12),rgba(231,234,240,.55) 70%,rgba(255,255,255,0) 72%);
  transition:transform .5s var(--ease);
}
.adv__card:hover .adv__fig{transform:translateY(-6px) scale(1.05)}
.adv__fig img{width:118px;height:118px;object-fit:contain;filter:drop-shadow(0 14px 22px rgba(10,23,51,.14))}
.adv__card h3{font-size:20px;color:var(--ink-900);margin-bottom:10px}
.adv__card p{font-size:14.5px;color:var(--muted);line-height:1.75}

/* ==========================================================================
   Products
   ========================================================================== */
.products{
  background:
    radial-gradient(70% 60% at 12% 0%,rgba(223,231,255,.75),rgba(223,231,255,0) 70%),
    radial-gradient(60% 55% at 90% 100%,rgba(215,255,236,.6),rgba(215,255,236,0) 70%),
    var(--bg);
}
.product-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:18px}
.product-card{
  position:relative;
  display:flex;flex-direction:column;
  padding:26px 20px 22px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow-sm);
  overflow:hidden;
  transition:transform .4s var(--ease),box-shadow .4s var(--ease),border-color .4s var(--ease);
}
.product-card::before{
  content:"";position:absolute;inset:0 0 auto 0;height:3px;
  background:var(--grad-brand);
  transform:scaleX(0);transform-origin:left;
  transition:transform .45s var(--ease);
}
.product-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-lg);border-color:rgba(46,136,247,.3)}
.product-card:hover::before{transform:scaleX(1)}
.product-card__ic{
  width:62px;height:62px;border-radius:15px;
  display:flex;align-items:center;justify-content:center;
  background:linear-gradient(140deg,rgba(22,104,227,.09),rgba(46,217,167,.09));
  border:1px solid rgba(22,104,227,.1);
  margin-bottom:18px;
  transition:transform .45s var(--ease),background .45s var(--ease);
}
.product-card__ic img{width:38px;height:38px;object-fit:contain}
.product-card:hover .product-card__ic{transform:scale(1.06) rotate(-3deg)}
.product-card h3{
  font-size:17.5px;font-weight:700;color:var(--ink-900);
  line-height:1.4;margin-bottom:9px;
  transition:color .3s var(--ease);
}
.product-card:hover h3{color:var(--brand-600)}
.product-card__desc{
  flex:1;font-size:14px;color:var(--muted);line-height:1.7;
}
.product-card__link{
  margin-top:16px;padding-top:14px;
  border-top:1px dashed var(--line);
  display:inline-flex;align-items:center;gap:7px;
  font-size:13.5px;font-weight:600;color:var(--brand-600);
}
.product-card__link svg{width:14px;height:14px;transition:transform .35s var(--ease)}
.product-card:hover .product-card__link svg{transform:translateX(5px)}

/* ==========================================================================
   Industries
   ========================================================================== */
.industries{
  position:relative;overflow:hidden;
  isolation:isolate;
  color:var(--text);
  background:
    radial-gradient(62% 58% at 88% 6%,rgba(46,136,247,.16),rgba(46,136,247,0) 64%),
    radial-gradient(54% 52% at 4% 92%,rgba(34,199,238,.11),rgba(34,199,238,0) 64%),
    linear-gradient(180deg,#F6FAFF 0%,#E8F1FF 100%);
}
.industries__scene{position:absolute;inset:0;pointer-events:none}
.industries__floor{
  position:absolute;left:-12%;right:-12%;bottom:-60px;height:300px;
  background-image:
    linear-gradient(rgba(22,104,227,.11) 1px,transparent 1px),
    linear-gradient(90deg,rgba(22,104,227,.11) 1px,transparent 1px);
  background-size:64px 64px;
  transform:perspective(640px) rotateX(62deg);
  transform-origin:50% 100%;
  -webkit-mask-image:linear-gradient(180deg,transparent 8%,#000 55%);
          mask-image:linear-gradient(180deg,transparent 8%,#000 55%);
}
.industries__globe{
  position:absolute;top:clamp(40px,5.6vw,82px);right:-24px;
  width:clamp(420px,44vw,640px);height:auto;
  /* the asset ships on a white plate; multiply lets the light section
     gradient read straight through instead of showing a hard rectangle */
  mix-blend-mode:multiply;
}
.industries .container{position:relative;z-index:1}
.industries .eyebrow{color:var(--brand-500)}
.industries .section-title{color:var(--ink-900)}
.industries .section-title .hl{
  background:var(--grad-brand);
  -webkit-background-clip:text;background-clip:text;
  -webkit-text-fill-color:transparent;color:transparent;
}
.industries .section-desc{color:var(--muted)}

.ind-grid{display:grid;grid-template-columns:repeat(6,1fr);gap:16px}
.ind-card{
  position:relative;
  padding:32px 16px 30px;
  border-radius:var(--radius);
  background:linear-gradient(180deg,#fff 0%,rgba(255,255,255,.74) 60%,rgba(231,241,255,.55) 100%);
  border:1px solid rgba(190,215,250,.85);
  box-shadow:0 6px 18px rgba(46,136,247,.07);
  text-align:center;
  transition:transform .4s var(--ease),box-shadow .4s var(--ease),border-color .4s var(--ease);
}
.ind-card:hover{
  transform:translateY(-8px);
  border-color:rgba(46,136,247,.5);
  box-shadow:0 22px 44px rgba(22,104,227,.18);
}
.ind-card__ic{
  position:relative;
  width:66px;height:66px;margin:0 auto 18px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  background:radial-gradient(circle at 50% 38%,rgba(255,255,255,.95),rgba(203,226,255,.9) 68%,rgba(168,208,255,.6) 100%);
  border:1px solid rgba(255,255,255,.9);
  color:var(--brand-600);
  box-shadow:0 0 0 7px rgba(46,136,247,.07),0 10px 22px rgba(46,136,247,.16);
  transition:transform .45s var(--ease),color .35s var(--ease);
}
.ind-card__ic svg{width:27px;height:27px}
.ind-card:hover .ind-card__ic{transform:translateY(-4px) scale(1.06);color:var(--brand-700)}
.ind-card h3{font-size:18px;font-weight:700;color:var(--ink-900);margin-bottom:7px}
.ind-card p{font-size:13px;color:var(--muted-2)}

.industries__tags{
  display:flex;align-items:center;justify-content:center;gap:18px;
  margin-top:clamp(30px,4.2vw,46px);
  font-size:14px;font-weight:600;letter-spacing:.08em;color:var(--brand-600);
}
.industries__tags em{font-style:normal;color:var(--brand-400);font-weight:400;margin:0 12px}
.industries__tags i{
  position:relative;flex:0 0 78px;height:1px;
  background:linear-gradient(90deg,rgba(22,104,227,0),rgba(22,104,227,.45));
}
.industries__tags i:last-child{background:linear-gradient(90deg,rgba(22,104,227,.45),rgba(22,104,227,0))}
.industries__tags i::after{
  content:"";position:absolute;top:50%;width:5px;height:5px;border-radius:50%;
  background:var(--brand-500);transform:translateY(-50%);
}
.industries__tags i:first-child::after{right:-3px}
.industries__tags i:last-child::after{left:-3px}

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta{padding-block:clamp(56px,8vw,92px)}
.cta__panel{
  position:relative;overflow:hidden;
  border-radius:var(--radius-xl);
  background:var(--grad-ink);
  padding:clamp(40px,6vw,72px) clamp(28px,6vw,72px);
  display:grid;grid-template-columns:minmax(0,1.35fr) minmax(0,1fr);
  align-items:center;gap:44px;
  box-shadow:0 24px 64px rgba(10,23,51,.22);
}
.cta__panel::before{
  content:"";position:absolute;inset:0;
  background:
    radial-gradient(50% 70% at 88% 12%,rgba(34,199,238,.3),transparent 62%),
    radial-gradient(40% 60% at 6% 92%,rgba(46,217,167,.18),transparent 60%);
  pointer-events:none;
}
.cta__panel > *{position:relative;z-index:1}
.cta__tag{
  display:inline-flex;align-items:center;gap:8px;
  font-size:13px;font-weight:600;letter-spacing:.14em;text-transform:uppercase;
  color:var(--cyan-500);
}
.cta__tag svg{width:15px;height:15px}
.cta__title{
  margin-top:14px;color:#fff;
  font-size:clamp(24px,3.2vw,36px);font-weight:800;letter-spacing:-.015em;line-height:1.3;
}
.cta__desc{margin-top:14px;color:rgba(222,234,252,.76);font-size:15px;line-height:1.85;max-width:520px}
.cta__list{display:flex;flex-direction:column;gap:16px}
.cta__line{
  display:flex;align-items:center;gap:14px;
  /* rows mix <a> and <button>; the UA stylesheet gives <button>
     text-align:center, which would centre the label under the wider value */
  text-align:left;
  padding:15px 20px;
  border-radius:var(--radius);
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.13);
  transition:background .3s var(--ease),border-color .3s var(--ease),transform .3s var(--ease);
}
.cta__line:hover{background:rgba(255,255,255,.12);border-color:rgba(255,255,255,.28);transform:translateX(4px)}
.cta__ic{
  width:42px;height:42px;border-radius:12px;flex-shrink:0;
  display:flex;align-items:center;justify-content:center;
  background:var(--grad-brand);color:#fff;
  box-shadow:0 6px 16px rgba(22,104,227,.4);
}
.cta__ic svg{width:20px;height:20px}
.cta__lb{display:block;font-size:12.5px;color:rgba(206,220,244,.72);letter-spacing:.04em}
.cta__vl{display:block;font-size:16px;font-weight:700;color:#fff;font-family:var(--font-num);letter-spacing:.01em}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer{background:var(--ink-950);color:rgba(214,226,246,.72);overflow:hidden}
.footer__top{
  display:grid;grid-template-columns:minmax(0,1.5fr) minmax(0,1.2fr) minmax(0,1fr) minmax(0,.85fr);
  gap:clamp(28px,4vw,52px);
  padding-block:clamp(52px,7vw,76px) clamp(38px,5vw,56px);
}
.footer__brand .nav__brand img{height:36px;filter:drop-shadow(0 2px 8px rgba(0,0,0,.4))}
.footer__brand h3{
  margin-top:18px;color:#fff;font-size:17px;font-weight:700;
}
.footer__brand p{margin-top:12px;font-size:14px;line-height:1.85;max-width:340px}
.footer h4{
  color:#fff;font-size:15px;font-weight:700;margin-bottom:20px;letter-spacing:.02em;
  position:relative;padding-bottom:12px;
}
.footer h4::after{content:"";position:absolute;left:0;bottom:0;width:28px;height:2.5px;border-radius:2px;background:var(--grad-brand)}
.foot-links{display:flex;flex-direction:column;gap:11px}
.foot-links a{
  display:inline-flex;align-items:center;gap:9px;
  font-size:14px;color:rgba(214,226,246,.66);
  transition:color .25s var(--ease),transform .25s var(--ease);
}
.foot-links a::before{content:"";width:5px;height:5px;border-radius:50%;background:rgba(90,166,255,.5);flex-shrink:0;transition:background-color .25s var(--ease)}
.foot-links a:hover{color:#fff;transform:translateX(3px)}
.foot-links a:hover::before{background:var(--cyan-500)}

.contact-list{display:flex;flex-direction:column;gap:16px}
.contact-item{display:flex;align-items:flex-start;gap:13px}
.contact-ic{
  width:38px;height:38px;border-radius:11px;flex-shrink:0;
  display:flex;align-items:center;justify-content:center;
  background:rgba(46,136,247,.14);color:var(--brand-400);
  border:1px solid rgba(90,166,255,.2);
}
.contact-ic svg{width:18px;height:18px}
.contact-lb{display:block;font-size:12.5px;color:rgba(170,190,220,.66);letter-spacing:.05em;margin-bottom:3px}
.contact-vl{display:block;font-size:14.5px;color:rgba(236,243,255,.92);font-family:var(--font-num);word-break:break-word}
a.contact-vl{transition:color .25s var(--ease)}
a.contact-vl:hover{color:var(--cyan-500)}

/* Kept left-aligned on purpose: h4::after anchors its underline at left:0 of
   the block, so centring the heading would leave the text floating to the
   middle while the accent sat at the column edge — and the QR card would sit
   in between, aligned with neither. Everything shares the left edge instead. */
.footer__qr{text-align:left}
.footer__qr figure{
  padding:11px;border-radius:16px;
  background:#fff;
  box-shadow:0 10px 28px rgba(0,0,0,.35);
  display:inline-block;
  transition:transform .35s var(--ease),box-shadow .35s var(--ease);
}
.footer__qr figure:hover{transform:translateY(-4px) scale(1.02);box-shadow:0 18px 40px rgba(0,0,0,.45)}
.footer__qr img{width:126px;height:126px;object-fit:cover;border-radius:8px}
/* The caption sits on the white QR card, so it needs dark text: the inherited
   footer colour (pale blue-grey) measured only ~1.3:1 contrast on white. */
.footer__qr figcaption{margin-top:13px;font-size:13.5px;text-align:center;color:#000}

.footer__bottom{
  border-top:1px solid rgba(255,255,255,.09);
  padding-block:24px;
  display:flex;align-items:center;justify-content:space-between;gap:14px;flex-wrap:wrap;
  font-size:13px;color:rgba(160,182,214,.62);
}
.footer__bottom a{color:rgba(160,182,214,.8);border-bottom:1px dashed rgba(160,182,214,.4);padding-bottom:1px;transition:color .25s var(--ease),border-color .25s var(--ease)}
.footer__bottom a:hover{color:var(--cyan-500);border-color:var(--cyan-500)}
.footer__bottom .sep{opacity:.4}

/* ==========================================================================
   Floating contact button
   ========================================================================== */
/* Bottom-right action stack: the contact pill and the back-to-top control.
   Both children stay position:relative so their pseudo/ring layers anchor
   to the button itself rather than to the stack. */
.fab-stack{
  position:fixed;right:26px;bottom:26px;z-index:110;
  display:flex;flex-direction:column;align-items:flex-end;gap:12px;
}
.fab{
  position:relative;
  display:flex;align-items:center;gap:11px;
  padding:13px 20px 13px 16px;border-radius:999px;
  background:var(--grad-brand);color:#fff;
  font-size:14.5px;font-weight:600;
  box-shadow:var(--shadow-brand);
  cursor:pointer;border:0;
  opacity:0;transform:translateY(24px) scale(.9);
  pointer-events:none;
  transition:opacity .45s var(--ease),transform .45s var(--ease),box-shadow .3s var(--ease);
}
.fab.is-visible{opacity:1;transform:translateY(0) scale(1);pointer-events:auto}
.fab:hover{box-shadow:0 16px 36px rgba(22,104,227,.42);transform:translateY(-3px) scale(1)}
.fab svg{width:19px;height:19px}
.fab::after{
  content:"";position:absolute;inset:0;border-radius:inherit;
  border:1.5px solid rgba(46,136,247,.55);
  animation:fab-ring 2.6s var(--ease) infinite;
}
@keyframes fab-ring{
  0%{opacity:.9;transform:scale(1)}
  70%,100%{opacity:0;transform:scale(1.45)}
}

/* Back to top, with a ring that tracks overall scroll progress so the
   control carries the same signal as the bar along the top of the page */
.to-top{
  position:relative;
  width:46px;height:46px;border-radius:50%;border:1px solid var(--line);
  background:rgba(255,255,255,.86);
  backdrop-filter:blur(12px) saturate(150%);
  -webkit-backdrop-filter:blur(12px) saturate(150%);
  display:flex;align-items:center;justify-content:center;
  color:var(--ink-800);cursor:pointer;
  box-shadow:var(--shadow-md);
  opacity:0;transform:translateY(14px) scale(.88);
  pointer-events:none;
  transition:opacity .4s var(--ease),transform .4s var(--ease),box-shadow .3s var(--ease),
             color .25s var(--ease),background-color .35s var(--ease),border-color .35s var(--ease);
}
.to-top.is-visible{opacity:1;transform:translateY(0) scale(1);pointer-events:auto}
.to-top:hover{
  color:#fff;background:var(--grad-brand);border-color:transparent;
  box-shadow:var(--shadow-brand);transform:translateY(-3px);
}
.to-top__ring{position:absolute;inset:0;width:100%;height:100%;transform:rotate(-90deg)}
.to-top__ring circle{fill:none;stroke-width:2.4}
.to-top__track{stroke:rgba(22,104,227,.16)}
.to-top__bar{
  stroke:var(--brand-500);stroke-linecap:round;
  stroke-dasharray:125.66;stroke-dashoffset:125.66;
  transition:stroke-dashoffset .1s linear,stroke .3s var(--ease);
}
.to-top:hover .to-top__bar{stroke:#fff}
.to-top__ic{width:19px;height:19px;transition:transform .4s var(--ease)}
.to-top:hover .to-top__ic{transform:translateY(-2px)}

/* ==========================================================================
   Inquiry modal
   ========================================================================== */
.modal{
  position:fixed;inset:0;z-index:150;
  display:grid;place-items:center;padding:22px;
  background:rgba(7,16,34,.6);
  backdrop-filter:blur(9px);
  -webkit-backdrop-filter:blur(9px);
  opacity:0;visibility:hidden;
  transition:opacity .35s var(--ease),visibility .35s;
}
.modal.is-open{opacity:1;visibility:visible}
.modal__panel{
  width:min(540px,100%);
  max-height:calc(100% - 44px);
  display:flex;flex-direction:column;
  background:#fff;
  border-radius:var(--radius-lg);
  box-shadow:0 30px 80px rgba(7,16,34,.45);
  overflow:hidden;
  transform:translateY(26px) scale(.965);
  opacity:0;
  transition:transform .45s var(--ease-out),opacity .35s var(--ease);
}
.modal.is-open .modal__panel{transform:none;opacity:1}
.modal__hd{
  position:relative;padding:26px 28px 20px;
  background:var(--grad-ink);color:#fff;overflow:hidden;
}
.modal__hd::before{
  content:"";position:absolute;inset:0;
  background:radial-gradient(60% 90% at 90% 0%,rgba(34,199,238,.32),transparent 62%);
}
.modal__hd > *{position:relative;z-index:1}
.modal__hd h2{font-size:21px;font-weight:800;letter-spacing:-.01em}
.modal__hd p{margin-top:7px;font-size:13.5px;color:rgba(214,230,250,.8)}
.modal__close{
  position:absolute;top:16px;right:16px;z-index:2;
  width:32px;height:32px;border-radius:50%;
  display:grid;place-items:center;cursor:pointer;
  background:rgba(255,255,255,.14);border:1px solid rgba(255,255,255,.2);
  color:#fff;transition:background .25s var(--ease),transform .3s var(--ease);
}
.modal__close:hover{background:rgba(255,255,255,.26);transform:rotate(90deg)}
.modal__close svg{width:15px;height:15px}

.modal form{padding:26px 28px 28px;overflow-y:auto}
/* The CMS form field list is admin-configured, so short fields share a row to
   keep the dialog from growing taller than the viewport. */
.field-row{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.field{margin-bottom:16px}
.field label{display:block;font-size:13.5px;font-weight:600;color:var(--ink-800);margin-bottom:7px}
.field label i{color:#E5484D;font-style:normal}
.field input,.field textarea{
  width:100%;padding:12px 15px;
  border:1.5px solid var(--line-strong);
  border-radius:12px;background:#FBFCFE;
  font-size:14.5px;line-height:1.6;
  transition:border-color .25s var(--ease),background .25s var(--ease),box-shadow .25s var(--ease);
}
.field textarea{min-height:96px;resize:vertical}
.field input::placeholder,.field textarea::placeholder{color:var(--muted-2)}
.field input:focus,.field textarea:focus{
  outline:none;border-color:var(--brand-500);background:#fff;
  box-shadow:0 0 0 4px rgba(46,136,247,.13);
}
.field.is-invalid input,.field.is-invalid textarea{border-color:#E5484D;background:#FFF7F7}
.field .err{display:none;margin-top:6px;font-size:12.5px;color:#E5484D}
.field.is-invalid .err{display:block}
.modal__foot{
  display:flex;align-items:center;justify-content:space-between;gap:14px;
  margin-top:6px;
}
.modal__foot .btn{flex:1}
.modal__foot small{font-size:12px;color:var(--muted-2);line-height:1.5}


/* ==========================================================================
   Scroll reveal
   ========================================================================== */
/* Only applied when JS is available, so the markup stays readable for
   crawlers and no-JS users */
html.js .reveal{opacity:0;transform:translateY(30px);transition:opacity .8s var(--ease-out),transform .8s var(--ease-out)}
html.js .reveal.is-in{opacity:1;transform:none}
.reveal[data-delay="1"]{transition-delay:.08s}
.reveal[data-delay="2"]{transition-delay:.16s}
.reveal[data-delay="3"]{transition-delay:.24s}
.reveal[data-delay="4"]{transition-delay:.32s}
html.js .stagger > *{opacity:0;transform:translateY(28px);transition:opacity .75s var(--ease-out),transform .75s var(--ease-out)}
html.js .stagger.is-in > *{opacity:1;transform:none}
.stagger.is-in > *:nth-child(1){transition-delay:.03s}
.stagger.is-in > *:nth-child(2){transition-delay:.09s}
.stagger.is-in > *:nth-child(3){transition-delay:.15s}
.stagger.is-in > *:nth-child(4){transition-delay:.21s}
.stagger.is-in > *:nth-child(5){transition-delay:.27s}
.stagger.is-in > *:nth-child(6){transition-delay:.33s}
.stagger.is-in > *:nth-child(n+7){transition-delay:.39s}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media screen and (max-width:1120px){
  .adv__grid{grid-template-columns:repeat(2,1fr)}
  .product-grid{grid-template-columns:repeat(4,1fr)}
  .ind-grid{grid-template-columns:repeat(3,1fr)}
}

@media screen and (max-width:900px){
  .hero__inner{grid-template-columns:1fr;padding-block:clamp(64px,9vw,96px) clamp(60px,8vw,84px)}
  .hero__media{background-position:50% 40%}
  .hero__scrim{background:
      linear-gradient(180deg,rgba(245,249,255,.82) 0%,rgba(245,249,255,.35) 42%,rgba(231,234,240,0) 70%),
      linear-gradient(0deg,rgba(245,249,255,.9) 0%,rgba(245,249,255,0) 30%)}
  .hero__content{max-width:660px}
  /* chips stay on tablet, repositioned away from the illustration */
  .chip--1{top:0;right:0}
  .chip--2{top:38%;right:9%}
  .chip--3{bottom:4px;right:0}
  .product-grid{grid-template-columns:repeat(3,1fr)}
  .cta__panel{grid-template-columns:1fr;gap:32px}
  .footer__top{grid-template-columns:1fr 1fr;gap:40px 32px}
  .footer__brand{grid-column:1/-1}
}

@media screen and (max-width:768px){
  :root{--header-h:66px}
  /* keep the mobile header a constant height so the full-height menu insets match */
  .site-header.is-scrolled{height:66px}
  .nav__menu{
    position:fixed;inset:var(--header-h) 0 0 0;
    z-index:130;
    flex-direction:column;align-items:stretch;gap:2px;
    margin:0;padding:20px var(--gutter) calc(24px + env(safe-area-inset-bottom));
    background:rgba(255,255,255,.98);
    backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);
    border-top:1px solid var(--line);
    box-shadow:0 26px 60px rgba(10,23,51,.16);
    overflow-y:auto;
    transform:translateX(102%);
    transition:transform .45s var(--ease);
  }
  .nav__menu.is-open{transform:none}
  .menu-link{padding:14px 16px;font-size:16px;border-radius:12px}
  .has-drop{display:flex;flex-wrap:wrap;align-items:center}
  .has-drop > .menu-link{flex:1}
  .has-drop .menu-link__caret{margin-left:0}
  .drop{
    position:static;transform:none;opacity:1;visibility:visible;pointer-events:auto;
    box-shadow:none;border:0;background:transparent;
    padding:2px 0 12px 12px;min-width:0;display:none;
    -webkit-mask-image:none;
  }
  .drop::before{display:none}
  .has-drop.is-open .drop{display:block;animation:dropIn .35s var(--ease-out)}
  .has-drop.is-open .menu-link__caret{transform:rotate(-135deg) translateY(-2px);border-color:var(--brand-500)}
  @keyframes dropIn{from{opacity:0;transform:translateY(-8px)}to{opacity:1;transform:none}}
  .drop__link{padding:11px 14px}
  .nav__cta{margin:16px 0 0;justify-content:center}
  .nav-toggle{display:flex}
  .nav__cta{display:none}

  .trust__grid{grid-template-columns:1fr 1fr;gap:22px 0}
  .trust__item{padding-inline:14px}
  .trust__item:nth-child(2){border-left:0}
  .trust__item:nth-child(3){border-left:0;border-top:1px solid var(--line);padding-top:22px}
  .trust__item:nth-child(4){border-top:1px solid var(--line);padding-top:22px}
  .product-grid{grid-template-columns:repeat(2,1fr);gap:14px}
  .ind-grid{grid-template-columns:1fr 1fr;gap:12px}
  .ind-card{padding:22px 14px}
  .ind-card__ic{width:52px;height:52px;margin-bottom:14px}
  .ind-card__ic svg{width:24px;height:24px}
  /* pushed mostly off-canvas so only the top-right corner shows; the sphere
     body would otherwise sit behind the title and muddy its contrast.
     no opacity — that would break the multiply blend above */
  .industries__globe{top:-4px;right:-44%;width:min(480px,104vw)}
  .industries__tags{gap:12px}
  .industries__tags i{flex:0 0 52px}
  .adv__grid{grid-template-columns:1fr;gap:16px}
  .adv__card{display:grid;grid-template-columns:110px 1fr;gap:18px;text-align:left;align-items:center}
  .adv__fig{margin:0;width:110px;height:110px}
  .adv__fig img{width:92px;height:92px}
  html.locked,html.locked body{overflow:hidden}
  .fab-stack{right:16px;bottom:16px;gap:10px}
  .fab span{display:none}
  .fab{width:52px;height:52px;justify-content:center;border-radius:50%;padding:0}
  .to-top{width:44px;height:44px}
}

@media screen and (max-width:520px){
  .product-grid{grid-template-columns:1fr}
  .ind-grid{grid-template-columns:1fr 1fr}
  .footer__top{grid-template-columns:1fr}
  .hero__actions{flex-direction:column;align-items:stretch}
  .hero__actions .btn{width:100%}
  .footer__bottom{justify-content:center;text-align:center}
  .modal__hd,.modal form{padding-inline:20px}
  .field-row{grid-template-columns:1fr}
  .modal__foot{flex-direction:column;align-items:stretch}
  .modal__foot small{text-align:center}
}

/* Reduced motion */
@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{animation-duration:.01ms !important;animation-iteration-count:1 !important;transition-duration:.01ms !important;scroll-behavior:auto !important}
  /* The hero layers must be fully static, not just near-instant: a 30s loop at
     .01ms still renders mid-animation and leaves the particles frozen half-way up. */
  .hero__media,.hero__media__img,.hero__media__glow,.hero__sweep::before,.hero__particles{animation:none !important;will-change:auto !important}
  .hero__particles span{animation:none !important;opacity:0 !important}
  .reveal,.stagger > *{opacity:1 !important;transform:none !important}
  html.js .reveal,html.js .stagger > *{opacity:1 !important;transform:none !important}
}
