:root{
  --bg:#f7fbff;
  --surface:#ffffff;
  --surface-2:#edf8ff;
  --text:#0d2635;
  --muted:#667b88;
  --line:rgba(13,38,53,.09);
  --primary:#1d9bf0;
  --primary-2:#4ac5ff;
  --primary-dark:#0878c8;
  --purple:#7b6cf2;
  --mint:#35c58a;
  --dark:#0c2534;
  --dark-2:#061a25;
  --shadow-sm:0 14px 38px rgba(13,38,53,.07);
  --shadow-md:0 25px 70px rgba(13,38,53,.12);
  --shadow-lg:0 45px 120px rgba(13,38,53,.18);
  --container:1180px;
}

*{box-sizing:border-box}

html{
  width:100%;
  max-width:100%;
  overflow-x:hidden;
  scroll-behavior:smooth;
}

body{
  margin:0;
  width:100%;
  max-width:100%;
  overflow-x:hidden;
  color:var(--text);
  background:var(--bg);
  font-family:"DM Sans",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

body.menu-open{overflow:hidden}

.site-page{width:100%;max-width:100%;overflow-x:hidden}

img{display:block;max-width:100%}
a{color:inherit;text-decoration:none}
button,input{font:inherit}
button{color:inherit}
svg{width:1em;height:1em;stroke-width:1.8}

p,a,span,strong,small{overflow-wrap:break-word}

.container{
  width:min(calc(100% - 40px),var(--container));
  margin-inline:auto;
}

h1,h2,h3,h4{
  margin:0;
  font-family:"Manrope","DM Sans",sans-serif;
  letter-spacing:-.05em;
}

h1{
  font-size:clamp(60px,7vw,94px);
  line-height:.93;
  font-weight:800;
}

h2{
  font-size:clamp(43px,5.2vw,72px);
  line-height:.98;
  font-weight:800;
}

h3{
  font-size:clamp(31px,3.6vw,50px);
  line-height:1.04;
}

p{
  margin:0;
  color:var(--muted);
  line-height:1.75;
}

.section-kicker{
  display:inline-block;
  margin-bottom:16px;
  color:var(--primary);
  font-size:11px;
  font-weight:800;
  letter-spacing:.15em;
  text-transform:uppercase;
}

.section-kicker-light{color:#9fddff}

.page-noise{
  position:fixed;
  z-index:999;
  inset:0;
  pointer-events:none;
  opacity:.025;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

.scroll-progress{
  position:fixed;
  z-index:110;
  left:0;
  right:0;
  top:0;
  height:2px;
  pointer-events:none;
}

.scroll-progress span{
  display:block;
  width:0;
  height:100%;
  background:linear-gradient(90deg,var(--primary),var(--primary-2),var(--purple));
}

/* buttons */
.btn{
  min-height:50px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  padding:0 21px;
  border:1px solid transparent;
  border-radius:999px;
  font-weight:700;
  transition:transform .2s ease,box-shadow .2s ease,background .2s ease,border-color .2s ease;
}

.btn-primary{
  color:#fff;
  background:linear-gradient(135deg,var(--primary),#22b0f7);
  box-shadow:0 15px 35px rgba(29,155,240,.24);
}

.btn-primary:hover{box-shadow:0 22px 46px rgba(29,155,240,.31)}

.btn-glass{
  background:rgba(255,255,255,.74);
  border-color:var(--line);
  box-shadow:0 10px 28px rgba(13,38,53,.04);
  backdrop-filter:blur(18px);
}

.btn-white{
  color:var(--dark);
  background:#fff;
  box-shadow:0 16px 40px rgba(0,0,0,.15);
}

.btn-large{
  min-height:60px;
  padding-inline:27px;
}

/* header */
.site-header{
  position:fixed;
  z-index:100;
  inset:0 0 auto 0;
  background:rgba(247,251,255,.55);
  border-bottom:1px solid transparent;
  backdrop-filter:blur(24px);
  transition:.25s ease;
}

.site-header.is-scrolled{
  background:rgba(255,255,255,.86);
  border-color:var(--line);
  box-shadow:0 12px 35px rgba(13,38,53,.05);
}

.header-inner{
  height:80px;
  display:flex;
  align-items:center;
  gap:28px;
}

.brand{
  display:inline-flex;
  align-items:center;
  gap:10px;
  flex:none;
  font-family:"Manrope";
  font-size:21px;
  font-weight:800;
  letter-spacing:-.035em;
}

.brand-mark{width:35px;height:35px}

.desktop-nav{
  display:flex;
  align-items:center;
  gap:31px;
  margin-left:auto;
}

.desktop-nav a{
  position:relative;
  color:#536d7a;
  font-size:14px;
  font-weight:700;
}

.desktop-nav a::after{
  content:"";
  position:absolute;
  left:0;
  right:100%;
  bottom:-7px;
  height:2px;
  background:var(--primary);
  border-radius:999px;
  transition:right .25s ease;
}

.desktop-nav a:hover::after{right:0}

.header-actions{display:flex;align-items:center;gap:10px}

.menu-button{
  width:45px;height:45px;
  display:none;
  place-items:center;
  border:1px solid var(--line);
  border-radius:50%;
  background:#fff;
  cursor:pointer;
}

.mobile-menu{display:none}

/* hero */
.hero{
  position:relative;
  min-height:980px;
  display:flex;
  align-items:center;
  padding:150px 0 90px;
  overflow:hidden;
  overflow:clip;
  background:
    radial-gradient(circle at 18% 28%,rgba(74,197,255,.12),transparent 27%),
    linear-gradient(180deg,#fcfeff,#f5fbff);
}

.hero-grid{
  position:absolute;
  inset:0;
  opacity:.17;
  pointer-events:none;
  background-image:
    linear-gradient(rgba(29,155,240,.18) 1px,transparent 1px),
    linear-gradient(90deg,rgba(29,155,240,.18) 1px,transparent 1px);
  background-size:52px 52px;
  mask-image:linear-gradient(90deg,transparent,#000 35%,#000 100%);
}

.hero-cursor-glow{
  position:absolute;
  width:520px;
  height:520px;
  border-radius:50%;
  pointer-events:none;
  transform:translate(-50%,-50%);
  background:radial-gradient(circle,rgba(29,155,240,.15),transparent 67%);
  filter:blur(8px);
  opacity:0;
  transition:opacity .25s ease;
}

.hero:hover .hero-cursor-glow{opacity:1}

.hero-aurora{
  position:absolute;
  border-radius:50%;
  filter:blur(20px);
  pointer-events:none;
}

.hero-aurora-a{
  width:600px;height:600px;
  right:-260px;top:100px;
  background:radial-gradient(circle,rgba(29,155,240,.21),transparent 68%);
}

.hero-aurora-b{
  width:420px;height:420px;
  left:-220px;bottom:120px;
  background:radial-gradient(circle,rgba(123,108,242,.13),transparent 68%);
}

.hero-layout{
  position:relative;
  z-index:4;
  display:grid;
  grid-template-columns:.96fr 1.04fr;
  align-items:center;
  gap:56px;
}

.hero-layout>*{min-width:0}

.hero-badge{
  width:fit-content;
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:27px;
  padding:9px 14px;
  color:#426676;
  background:rgba(255,255,255,.75);
  border:1px solid var(--line);
  border-radius:999px;
  box-shadow:0 10px 30px rgba(13,38,53,.04);
  backdrop-filter:blur(16px);
  font-size:12px;
  font-weight:700;
}

.live-dot{
  width:8px;height:8px;
  border-radius:50%;
  background:var(--mint);
  box-shadow:0 0 0 5px rgba(53,197,138,.12);
}

.hero-copy{position:relative;z-index:7}
.hero-copy h1{max-width:710px}

.hero-gradient{
  display:block;
  color:transparent;
  background:linear-gradient(100deg,var(--primary),#55caff 45%,#7f71f2 100%);
  -webkit-background-clip:text;
  background-clip:text;
}

.hero-lead{
  max-width:620px;
  margin-top:28px;
  font-size:18px;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:35px;
}

.hero-trust{
  display:flex;
  flex-wrap:wrap;
  gap:17px;
  margin-top:32px;
}

.hero-trust span{
  display:inline-flex;
  align-items:center;
  gap:7px;
  color:#78909b;
  font-size:11px;
  font-weight:700;
}

.hero-trust svg{color:var(--primary)}

.hero-visual{
  position:relative;
  width:100%;
  max-width:620px;
  min-height:705px;
  justify-self:end;
  perspective:1200px;
}

.orbit{
  position:absolute;
  border:1px solid rgba(29,155,240,.16);
  border-radius:50%;
}

.orbit-a{width:560px;height:560px;right:-5px;top:72px}
.orbit-b{width:430px;height:430px;right:60px;top:136px;border-style:dashed}
.orbit-c{width:310px;height:310px;right:120px;top:197px;border-color:rgba(123,108,242,.12)}

.hero-device-wrap{
  position:absolute;
  z-index:5;
  width:335px;
  height:670px;
  right:115px;
  top:10px;
  transform-style:preserve-3d;
  transition:transform .16s ease-out;
}

.device-shell{
  position:relative;
  overflow:hidden;
  background:#0a2433;
  border:8px solid #0a2433;
  border-radius:46px;
  box-shadow:0 45px 120px rgba(13,38,53,.24),0 12px 35px rgba(13,38,53,.09);
}

.device-shell::after{
  content:"";
  position:absolute;
  inset:0;
  border:1px solid rgba(255,255,255,.12);
  border-radius:36px;
  pointer-events:none;
}

.device-island{
  position:absolute;
  z-index:6;
  width:86px;
  height:25px;
  left:50%;
  top:7px;
  transform:translateX(-50%);
  background:#0a2433;
  border-radius:0 0 15px 15px;
}

.device-island span{
  position:absolute;
  width:30px;height:4px;
  left:50%;top:7px;
  transform:translateX(-50%);
  background:#294554;
  border-radius:999px;
}

.device-screen{
  width:100%;height:100%;
  overflow:hidden;
  background:#fff;
  border-radius:35px;
}

.device-screen img{
  width:100%;height:100%;
  object-fit:cover;
}

.hero-phone{width:100%;height:100%}

.device-shine{
  position:absolute;
  z-index:7;
  inset:0;
  border-radius:46px;
  pointer-events:none;
  background:linear-gradient(120deg,rgba(255,255,255,.18),transparent 26%,transparent 72%,rgba(255,255,255,.07));
  mix-blend-mode:screen;
}

.hero-chip{
  position:absolute;
  z-index:9;
  min-width:230px;
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px 16px;
  background:rgba(255,255,255,.83);
  border:1px solid rgba(13,38,53,.08);
  border-radius:18px;
  box-shadow:0 21px 58px rgba(13,38,53,.13);
  backdrop-filter:blur(20px);
  transition:translate .18s ease-out;
}

.hero-chip small,.hero-chip strong{display:block}
.hero-chip small{color:#8ba0aa;font-size:9px}
.hero-chip strong{margin-top:2px;font-size:11px}

.chip-icon{
  width:39px;height:39px;
  display:grid;
  place-items:center;
  flex:none;
  color:var(--primary);
  background:#e9f7ff;
  border-radius:12px;
}

.chip-one{left:-10px;top:124px}
.chip-two{right:-24px;top:300px}
.chip-three{left:12px;bottom:98px}

.hero-scroll-cue{
  position:absolute;
  z-index:5;
  left:50%;
  bottom:27px;
  display:flex;
  align-items:center;
  gap:10px;
  transform:translateX(-50%);
  color:#8ca0aa;
  font-size:8px;
  font-weight:800;
  letter-spacing:.14em;
}

.hero-scroll-cue div{
  width:30px;height:30px;
  display:grid;
  place-items:center;
  border:1px solid var(--line);
  border-radius:50%;
  background:#fff;
}

/* value rail */
.value-rail{padding:25px 0 80px;background:#fff}

.value-rail-inner{
  min-height:88px;
  display:flex;
  align-items:center;
  gap:30px;
  padding:20px 26px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  box-shadow:0 20px 60px rgba(13,38,53,.06);
}

.value-label{
  flex:none;
  color:#a2b0b7;
  font-size:9px;
  font-weight:800;
  letter-spacing:.14em;
}

.value-items{
  width:100%;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:15px;
}

.value-items span{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  color:#56717e;
  font-size:12px;
  font-weight:700;
}

.value-items svg{color:var(--primary)}

/* product stage */
.product-stage-section{
  padding:120px 0;
  background:
    radial-gradient(circle at 15% 30%,rgba(29,155,240,.08),transparent 25%),
    #f8fcff;
}

.product-stage-heading{
  max-width:760px;
  margin-bottom:50px;
}

.product-stage-heading p{margin-top:20px;font-size:16px}

.product-stage{
  overflow:hidden;
  background:#fff;
  border:1px solid var(--line);
  border-radius:40px;
  box-shadow:0 28px 90px rgba(13,38,53,.07);
}

.mode-switch{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  border-bottom:1px solid var(--line);
}

.mode-button{
  min-height:92px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  padding:16px 20px;
  background:#fff;
  border:0;
  border-right:1px solid var(--line);
  cursor:pointer;
  transition:background .25s ease,color .25s ease;
}

.mode-button:last-child{border-right:0}

.mode-button.is-active{
  color:var(--primary);
  background:linear-gradient(180deg,#f7fcff,#eef9ff);
}

.mode-icon{
  width:40px;height:40px;
  display:grid;
  place-items:center;
  color:inherit;
  background:#eef8fd;
  border-radius:12px;
}

.mode-button.is-active .mode-icon{background:#dff3ff}

.mode-button small,.mode-button strong{display:block;text-align:left}
.mode-button small{color:#a1b0b8;font-size:8px}
.mode-button strong{margin-top:1px;font-size:14px}

.mode-content{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  min-height:630px;
}

.mode-content>*{min-width:0}

.mode-copy{
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:55px;
}

.mode-kicker{
  display:flex;
  gap:8px;
  margin-bottom:24px;
  color:var(--primary);
  font-size:10px;
  font-weight:800;
  letter-spacing:.12em;
}

.mode-copy h3{max-width:520px;margin-bottom:19px}
.mode-copy>p{max-width:520px;font-size:15px}

.mode-points{
  display:grid;
  gap:10px;
  margin-top:25px;
}

.mode-points span{
  display:flex;
  align-items:center;
  gap:8px;
  color:#52707d;
  font-size:13px;
  font-weight:700;
}

.mode-points svg{color:var(--mint)}

.mode-visual{
  position:relative;
  min-height:630px;
  display:grid;
  place-items:center;
  overflow:hidden;
  background:
    radial-gradient(circle at 50% 50%,rgba(29,155,240,.13),transparent 42%),
    linear-gradient(145deg,#edf9ff,#fbfdff);
}

.mode-visual-aura{
  position:absolute;
  width:470px;height:470px;
  border:1px solid rgba(29,155,240,.14);
  border-radius:50%;
  box-shadow:0 0 0 65px rgba(29,155,240,.025),0 0 0 130px rgba(29,155,240,.012);
}

.mode-device-shell{
  position:relative;
  z-index:4;
  width:280px;
  height:560px;
  transition:opacity .2s ease,transform .35s cubic-bezier(.2,.8,.2,1);
}

.mode-device-shell.is-changing{opacity:.15;transform:scale(.96) rotate(-2deg)}
.mode-phone{width:100%;height:100%}

.mode-context-card{
  position:absolute;
  z-index:6;
  min-width:225px;
  display:flex;
  align-items:center;
  gap:11px;
  padding:13px 14px;
  background:rgba(255,255,255,.88);
  border:1px solid var(--line);
  border-radius:17px;
  box-shadow:0 20px 50px rgba(13,38,53,.11);
  backdrop-filter:blur(15px);
}

.context-top{left:7%;top:100px}
.context-bottom{right:5%;bottom:92px}

.context-icon{
  width:38px;height:38px;
  display:grid;
  place-items:center;
  flex:none;
  color:var(--primary);
  background:#eaf7ff;
  border-radius:12px;
}

.mode-context-card small,.mode-context-card strong{display:block}
.mode-context-card small{color:#8da1ab;font-size:8px}
.mode-context-card strong{margin-top:2px;font-size:10px}

/* flow */
.flow-section{padding:110px 0;background:#fff}
.flow-heading{max-width:760px;margin-bottom:58px}

.flow-track{
  position:relative;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

.flow-line{
  position:absolute;
  z-index:0;
  left:11%;
  right:11%;
  top:56px;
  height:2px;
  background:#e2edf2;
}

.flow-line span{
  display:block;
  width:0;
  height:100%;
  background:linear-gradient(90deg,var(--primary),var(--primary-2));
  transition:width .15s linear;
}

.flow-step{
  position:relative;
  z-index:2;
  text-align:center;
}

.flow-step>span{
  display:block;
  margin-bottom:12px;
  color:#a6b5bc;
  font-size:9px;
  font-weight:800;
}

.flow-node{
  width:66px;height:66px;
  display:grid;
  place-items:center;
  margin:0 auto 18px;
  color:var(--primary);
  background:#fff;
  border:1px solid #dcebf2;
  border-radius:19px;
  box-shadow:0 12px 28px rgba(13,38,53,.07);
}

.flow-step strong{display:block;font-family:"Manrope";font-size:16px}
.flow-step p{margin-top:5px;font-size:11px}

/* bento */
.bento-section{padding:115px 0;background:#f6fbff}

.bento-heading{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:70px;
  align-items:end;
  margin-bottom:48px;
}

.bento-heading>*{min-width:0}
.bento-heading p{max-width:500px;justify-self:end;font-size:15px}

.bento-grid{
  display:grid;
  grid-template-columns:repeat(12,1fr);
  gap:18px;
}

.bento-card{
  --mx:50%;
  --my:50%;
  position:relative;
  min-height:340px;
  grid-column:span 4;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  padding:29px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:30px;
  box-shadow:0 10px 36px rgba(13,38,53,.04);
  transform-style:preserve-3d;
  transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease;
}

.bento-card:hover{
  transform:translateY(-5px);
  border-color:rgba(29,155,240,.18);
  box-shadow:0 28px 70px rgba(13,38,53,.09);
}

.bento-large{
  grid-column:span 8;
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(290px,.95fr);
  align-items:center;
  gap:34px;
}

.bento-wide{
  grid-column:span 8;
  min-height:380px;
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(300px,.95fr);
  align-items:center;
  gap:36px;
}

.spotlight{
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity:0;
  background:radial-gradient(280px circle at var(--mx) var(--my),rgba(29,155,240,.11),transparent 66%);
  transition:opacity .2s ease;
}

.spotlight-card:hover .spotlight{opacity:1}

.bento-copy{
  position:relative;
  z-index:3;
  min-width:0;
}

.bento-icon{
  width:47px;height:47px;
  display:grid;
  place-items:center;
  margin-bottom:21px;
  color:var(--primary);
  background:#e9f7ff;
  border-radius:14px;
}

.bento-label{
  display:block;
  margin-bottom:10px;
  color:var(--primary);
  font-size:10px;
  font-weight:800;
  letter-spacing:.13em;
  text-transform:uppercase;
}

.bento-card h3{
  max-width:540px;
  margin-bottom:13px;
  font-size:clamp(27px,3vw,40px);
}

.bento-card p{font-size:13px}

.bento-visual{
  position:relative;
  z-index:3;
  min-width:0;
  margin-top:auto;
}

.notifications-visual{
  width:100%;
  max-width:390px;
  justify-self:end;
}

.notification-card{
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:12px;
  padding:16px;
  background:rgba(255,255,255,.96);
  border:1px solid var(--line);
  border-radius:18px;
  box-shadow:0 18px 44px rgba(13,38,53,.1);
}

.notification-back{
  margin:0 20px -9px;
  transform:scale(.96);
  opacity:.66;
}

.notification-card small,.notification-card strong{display:block}
.notification-card small{color:#8da1ab;font-size:8px}
.notification-card strong{margin-top:2px;font-size:11px}

.notification-status{
  width:9px;height:9px;
  background:var(--mint);
  border-radius:50%;
  box-shadow:0 0 0 5px rgba(53,197,138,.11);
}

.history-visual{
  display:grid;
  gap:10px;
  margin-top:26px;
}

.history-row{
  display:grid;
  grid-template-columns:auto 1fr;
  align-items:center;
  gap:11px;
  padding:11px 12px;
  background:#f7fbfd;
  border-radius:14px;
}

.history-dot{
  width:9px;height:9px;
  border-radius:50%;
  background:var(--mint);
  box-shadow:0 0 0 5px rgba(53,197,138,.09);
}

.history-dot-blue{background:var(--primary);box-shadow:0 0 0 5px rgba(29,155,240,.09)}
.history-dot-purple{background:var(--purple);box-shadow:0 0 0 5px rgba(123,108,242,.09)}

.history-row strong,.history-row small{display:block}
.history-row strong{font-size:10px}
.history-row small{margin-top:1px;color:#8ea1aa;font-size:8px}

.map-visual{
  height:125px;
  margin-top:25px;
  overflow:hidden;
  background:#eef7f8;
  border-radius:18px;
}

.map-line{
  position:absolute;
  height:7px;
  background:#fff;
  border-radius:999px;
}

.map-line-a{width:200px;left:-20px;top:55px;transform:rotate(10deg)}
.map-line-b{width:210px;right:-25px;top:55px;transform:rotate(-18deg)}
.map-line-c{width:120px;left:38%;top:50px;transform:rotate(72deg)}

.map-point{
  position:absolute;
  width:29px;height:29px;
  display:grid;
  place-items:center;
  color:#fff;
  background:var(--primary);
  border-radius:50%;
  box-shadow:0 10px 20px rgba(29,155,240,.22);
}

.map-point svg{width:14px;height:14px}
.map-point-a{left:60px;top:20px}
.map-point-b{right:58px;bottom:18px}
.map-point-c{left:52%;top:45px;background:var(--purple)}

.community-stack{
  width:100%;
  max-width:390px;
  justify-self:end;
}

.community-card-mini{
  display:grid;
  grid-template-columns:auto 1fr;
  gap:11px;
  padding:16px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:19px;
  box-shadow:0 18px 45px rgba(13,38,53,.09);
}

.mini-back{
  margin:0 22px -10px;
  transform:scale(.95);
  opacity:.58;
}

.mini-avatar{
  width:40px;height:40px;
  display:grid;
  place-items:center;
  color:#fff;
  background:linear-gradient(135deg,var(--purple),#9b8ff5);
  border-radius:50%;
  font-size:9px;
  font-weight:800;
}

.mini-avatar-blue{background:linear-gradient(135deg,var(--primary),#55caff)}

.community-card-mini strong,.community-card-mini small{display:block}
.community-card-mini strong{font-size:10px}
.community-card-mini small{margin-top:1px;color:#948ba0;font-size:7px}
.community-card-mini p{margin-top:9px;color:#526b78;font-size:9px;line-height:1.5}

.community-card-mini footer{
  display:flex;
  gap:12px;
  margin-top:9px;
}

.community-card-mini footer span{
  display:inline-flex;
  align-items:center;
  gap:4px;
  color:#91899d;
  font-size:7px;
  font-weight:700;
}

.saved-visual{
  display:grid;
  gap:8px;
  margin-top:25px;
}

.saved-visual span{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:11px 13px;
  background:#f7fbfd;
  border-radius:13px;
  color:#55717e;
  font-size:9px;
  font-weight:700;
}

.saved-visual svg{color:var(--primary)}

/* cinematic */
.cinematic-section{padding:115px 0;background:#fff}

.cinematic-card{
  position:relative;
  min-height:710px;
  display:grid;
  grid-template-columns:.92fr 1.08fr;
  align-items:center;
  gap:40px;
  overflow:hidden;
  padding:70px;
  color:#fff;
  background:
    radial-gradient(circle at 85% 18%,rgba(64,194,255,.34),transparent 31%),
    linear-gradient(145deg,#102e3f,#061a25);
  border-radius:50px;
}

.cinematic-card>*{min-width:0}

.cinematic-glow{
  position:absolute;
  width:520px;height:520px;
  right:-100px;top:40px;
  background:radial-gradient(circle,rgba(29,155,240,.23),transparent 68%);
}

.cinematic-copy{
  position:relative;
  z-index:6;
  max-width:530px;
}

.cinematic-copy h2{
  margin-bottom:22px;
  font-size:clamp(43px,4.8vw,66px);
}

.cinematic-copy p{color:#a7bec9;font-size:15px}
.cinematic-copy .btn{margin-top:30px}

.cinematic-devices{
  position:relative;
  align-self:stretch;
  min-height:540px;
}

.cinematic-ring{
  position:absolute;
  width:490px;height:490px;
  left:50%;top:50%;
  transform:translate(-50%,-50%);
  border:1px solid rgba(255,255,255,.1);
  border-radius:50%;
  box-shadow:0 0 0 70px rgba(255,255,255,.02),0 0 0 140px rgba(255,255,255,.012);
}

.cinematic-phone{
  position:absolute;
  width:250px;height:510px;
  border-width:7px;
  border-radius:38px;
}

.cinematic-phone .device-screen{border-radius:29px}

.phone-back{left:28px;top:72px;transform:rotate(-9deg);opacity:.78}
.phone-front{right:18px;top:8px;transform:rotate(6deg)}

/* faq */
.faq-section{padding:120px 0;background:#f7fbff}

.faq-layout{
  display:grid;
  grid-template-columns:.75fr 1.25fr;
  gap:92px;
}

.faq-layout>*{min-width:0}

.faq-copy{
  position:sticky;
  top:125px;
  align-self:start;
}

.faq-copy h2{margin-bottom:20px}
.faq-copy p{max-width:400px;font-size:14px}

.text-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-top:27px;
  color:var(--primary);
  font-weight:800;
}

.faq-list{border-top:1px solid var(--line)}
.faq-item{border-bottom:1px solid var(--line)}

.faq-question{
  width:100%;
  min-height:86px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:0;
  border:0;
  background:transparent;
  text-align:left;
  cursor:pointer;
  font-family:"Manrope";
  font-size:18px;
  font-weight:700;
}

.faq-plus{
  width:38px;height:38px;
  display:grid;
  place-items:center;
  flex:none;
  color:var(--primary);
  background:#e9f7ff;
  border-radius:50%;
  transition:transform .25s ease;
}

.faq-item.is-open .faq-plus{transform:rotate(45deg)}

.faq-answer{
  display:grid;
  grid-template-rows:0fr;
  transition:grid-template-rows .28s ease;
}

.faq-answer p{
  overflow:hidden;
  padding-right:45px;
  font-size:13px;
}

.faq-item.is-open .faq-answer{grid-template-rows:1fr}
.faq-item.is-open .faq-answer p{padding-bottom:28px}

/* download */
.download-section{padding:105px 0;background:#fff}

.download-card{
  position:relative;
  min-height:640px;
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  overflow:hidden;
  color:#fff;
  background:
    radial-gradient(circle at 82% 12%,rgba(75,200,255,.42),transparent 28%),
    linear-gradient(140deg,#0e2d3e,#061b27);
  border-radius:48px;
}

.download-card>*{min-width:0}

.download-copy{
  position:relative;
  z-index:5;
  padding:70px 0 70px 70px;
}

.download-brand{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:27px;
}

.download-brand img{width:46px;height:46px}
.download-brand small,.download-brand strong{display:block}
.download-brand small{color:#8fd7fa;font-size:8px;letter-spacing:.15em}
.download-brand strong{margin-top:2px;font-size:12px}

.download-copy h2{
  max-width:590px;
  margin-bottom:21px;
  font-size:clamp(43px,4.9vw,66px);
}

.download-copy>p{max-width:530px;color:#a7bdc8;font-size:14px}

.download-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:31px;
}

.store-button{
  min-height:60px;
  display:inline-flex;
  align-items:center;
  gap:11px;
  padding:10px 17px;
  color:#fff;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.16);
  border-radius:16px;
  transition:transform .2s ease,background .2s ease;
}

.store-button:hover{background:rgba(255,255,255,.13)}
.store-button>svg{width:24px;height:24px}

.store-button small,.store-button strong{display:block}
.store-button small{color:#9db8c5;font-size:7px;letter-spacing:.08em}
.store-button strong{margin-top:2px;font-size:13px}

.store-button-light{color:#153342;background:#fff;border-color:#fff}
.store-button-light small{color:#8298a2}

.download-visual{position:relative;align-self:stretch;min-height:640px}

.download-orb{
  position:absolute;
  width:470px;height:470px;
  right:5px;top:75px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:50%;
  box-shadow:0 0 0 70px rgba(255,255,255,.02),0 0 0 140px rgba(255,255,255,.012);
}

.download-phone{
  position:absolute;
  width:310px;height:620px;
  right:90px;bottom:-105px;
  transform:rotate(7deg);
}

/* footer */
.footer{
  padding:78px 0 27px;
  background:#fff;
  border-top:1px solid var(--line);
}

.footer-grid{
  display:grid;
  grid-template-columns:1.25fr .65fr .65fr 1fr;
  gap:54px;
}

.footer-grid>*{min-width:0}

.footer-brand p{
  max-width:310px;
  margin-top:17px;
  font-size:13px;
}

.footer-col{
  display:grid;
  align-content:start;
  gap:12px;
}

.footer-col strong{
  margin-bottom:4px;
  font-family:"Manrope";
  font-size:14px;
}

.footer-col a{color:#748a95;font-size:13px}
.footer-col a:hover{color:var(--primary)}

.footer-wow{
  position:relative;
  min-height:155px;
  overflow:hidden;
  display:flex;
  align-items:flex-end;
  padding:24px;
  color:#fff;
  background:var(--dark);
  border-radius:24px;
}

.footer-wow span{
  position:absolute;
  right:-15px;
  top:-30px;
  color:rgba(73,195,255,.13);
  font-family:"Manrope";
  font-size:95px;
  font-weight:800;
  letter-spacing:-.08em;
}

.footer-wow strong{
  position:relative;
  z-index:2;
  font-family:"Manrope";
  font-size:17px;
  line-height:1.25;
}

.footer-bottom{
  display:flex;
  justify-content:space-between;
  gap:20px;
  margin-top:60px;
  padding-top:23px;
  color:#91a1a9;
  border-top:1px solid var(--line);
  font-size:11px;
}

/* reveal */
.reveal{
  opacity:0;
  transform:translateY(22px);
  transition:opacity .7s ease,transform .7s ease;
}

.reveal-delay{transition-delay:.1s}

.reveal.is-visible{
  opacity:1;
  transform:none;
}

/* responsive */
@media(max-width:1050px){
  .desktop-nav,.desktop-only{display:none}
  .menu-button{display:grid;margin-left:auto}

  .mobile-menu{
    position:fixed;
    z-index:90;
    inset:80px 18px auto;
    display:grid;
    gap:4px;
    padding:12px;
    background:rgba(255,255,255,.97);
    border:1px solid var(--line);
    border-radius:20px;
    box-shadow:var(--shadow-lg);
    opacity:0;
    transform:translateY(-10px);
    pointer-events:none;
    transition:.2s ease;
  }

  .mobile-menu.is-open{
    opacity:1;
    transform:none;
    pointer-events:auto;
  }

  .mobile-menu a:not(.btn){padding:13px;border-radius:12px;font-weight:700}

  .hero-layout{grid-template-columns:1fr}
  .hero-copy{max-width:760px;margin-inline:auto;text-align:center}
  .hero-badge{margin-left:auto;margin-right:auto}
  .hero-actions,.hero-trust{justify-content:center}
  .hero-visual{justify-self:center;margin-top:10px}
  .hero-device-wrap{right:50%;transform:translateX(50%)}
  .chip-one{left:4%}
  .chip-two{right:3%}
  .chip-three{left:7%}

  .value-rail-inner{flex-direction:column;align-items:flex-start}
  .value-items{grid-template-columns:repeat(2,1fr)}

  .mode-content{grid-template-columns:1fr}
  .mode-copy{padding:45px}
  .mode-visual{min-height:610px}

  .bento-grid{grid-template-columns:repeat(2,1fr)}
  .bento-card,.bento-large,.bento-wide{grid-column:auto}
  .bento-large,.bento-wide{
    grid-column:span 2;
    grid-template-columns:1fr;
    row-gap:30px;
  }

  .notifications-visual,.community-stack{
    max-width:520px;
    justify-self:stretch;
  }

  .cinematic-card{
    min-height:990px;
    grid-template-columns:1fr;
    align-items:start;
  }

  .cinematic-devices{min-height:550px}
  .phone-back{left:18%}
  .phone-front{right:18%}

  .faq-layout{grid-template-columns:1fr;gap:48px}
  .faq-copy{position:static}

  .download-card{
    min-height:980px;
    grid-template-columns:1fr;
  }

  .download-copy{padding:60px 60px 0}
  .download-visual{min-height:545px}
  .download-phone{right:50%;transform:translateX(50%) rotate(6deg)}

  .footer-grid{grid-template-columns:1fr 1fr}
}

@media(max-width:700px){
  .container{width:min(calc(100% - 28px),var(--container))}
  h1{font-size:clamp(48px,14vw,66px)}
  h2{font-size:40px}
  h3{font-size:31px}

  .header-inner{height:70px}
  .mobile-menu{top:70px}

  .hero{
    min-height:auto;
    padding:118px 0 52px;
  }

  .hero-grid{background-size:38px 38px}
  .hero-cursor-glow{display:none}

  .hero-badge{
    max-width:100%;
    text-align:left;
    line-height:1.35;
  }

  .hero-lead{font-size:15px}

  .hero-actions{
    align-items:stretch;
    flex-direction:column;
  }

  .hero-actions .btn{width:100%}

  .hero-trust{gap:10px 14px}

  .hero-visual{
    min-height:540px;
    margin-top:15px;
  }

  .orbit-a{
    width:400px;height:400px;
    right:50%;top:70px;
    transform:translateX(50%);
  }

  .orbit-b{
    width:310px;height:310px;
    right:50%;top:115px;
    transform:translateX(50%);
  }

  .orbit-c{display:none}

  .hero-device-wrap{
    width:255px;height:510px;
    right:50%;top:7px;
    transform:translateX(50%) !important;
  }

  .device-shell{border-width:6px;border-radius:37px}
  .device-screen{border-radius:29px}

  .hero-chip{
    min-width:168px;
    max-width:185px;
    padding:10px 11px;
    border-radius:14px;
  }

  .chip-icon{width:32px;height:32px}
  .hero-chip small{font-size:7px}
  .hero-chip strong{font-size:9px;line-height:1.25}
  .chip-one{left:-2px;top:95px}
  .chip-two{right:-5px;top:235px}
  .chip-three{left:4px;bottom:68px}

  .hero-scroll-cue{display:none}

  .value-rail{padding-bottom:60px}
  .value-rail-inner{padding:20px}
  .value-items{grid-template-columns:1fr 1fr;gap:18px 10px}
  .value-items span{justify-content:flex-start;font-size:11px}

  .product-stage-section{padding:80px 0}
  .mode-switch{grid-template-columns:1fr}
  .mode-button{
    min-height:72px;
    justify-content:flex-start;
    border-right:0;
    border-bottom:1px solid var(--line);
  }
  .mode-button:last-child{border-bottom:0}

  .mode-copy{padding:30px 24px}
  .mode-visual{min-height:500px}
  .mode-device-shell{width:220px;height:440px}

  .mode-context-card{
    min-width:165px;
    max-width:190px;
    padding:10px 11px;
  }
  .context-top{left:3%;top:80px}
  .context-bottom{right:2%;bottom:70px}
  .mode-context-card strong{font-size:8px}

  .flow-section{padding:80px 0}
  .flow-track{grid-template-columns:1fr 1fr;gap:35px 15px}
  .flow-line{display:none}

  .bento-section{padding:80px 0}
  .bento-heading{grid-template-columns:1fr;gap:18px;margin-bottom:36px}
  .bento-heading p{justify-self:start;font-size:14px}

  .bento-grid{grid-template-columns:1fr}
  .bento-card,.bento-large,.bento-wide{
    grid-column:auto;
    display:flex;
    flex-direction:column;
    min-height:auto;
    padding:24px;
    border-radius:25px;
  }
  .bento-large,.bento-wide{row-gap:0}
  .bento-visual{width:100%;max-width:none;margin-top:27px}

  .cinematic-section{padding:80px 0}
  .cinematic-card{
    min-height:880px;
    padding:38px 24px;
    border-radius:34px;
  }
  .cinematic-copy h2{font-size:40px}
  .cinematic-devices{min-height:490px;margin-inline:-10px}
  .cinematic-phone{width:205px;height:420px}
  .phone-back{left:0;top:75px}
  .phone-front{right:0}
  .cinematic-ring{width:390px;height:390px}

  .faq-section{padding:80px 0}
  .faq-question{min-height:78px;font-size:15px}

  .download-section{padding:80px 0}
  .download-card{min-height:860px;border-radius:34px}
  .download-copy{padding:40px 24px 0}
  .download-copy h2{font-size:40px}
  .download-actions{align-items:stretch;flex-direction:column}
  .store-button{justify-content:center}
  .download-visual{min-height:450px}
  .download-phone{width:250px;height:500px;bottom:-110px}
  .download-orb{
    width:360px;height:360px;
    right:50%;top:65px;
    transform:translateX(50%);
  }

  .footer-grid{grid-template-columns:1fr;gap:36px}
  .footer-bottom{flex-direction:column;margin-top:45px}
}

@media(prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  .reveal{opacity:1;transform:none;transition:none}
  .hero-device-wrap,.hero-chip,.magnetic{transform:none!important;translate:none!important}
}

@supports(overflow:clip){
  html,body,.site-page{overflow-x:clip}
}


/* =========================================================
   WOW V4.1 — STORE CTA + VIDEO + TYPOGRAPHY + BENTO REFINEMENT
   ========================================================= */

/* Hero store CTAs */
.hero-store-actions {
  align-items: stretch;
}

.store-cta {
  min-height: 62px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  border-radius: 18px;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.store-cta > svg {
  width: 27px;
  height: 27px;
  flex: none;
}

.store-cta span,
.store-cta small,
.store-cta strong {
  display: block;
}

.store-cta small {
  margin-bottom: 1px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .12em;
}

.store-cta strong {
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  letter-spacing: -.025em;
}

.store-cta-dark {
  color: #fff;
  background: #0c2534;
  border-color: #0c2534;
  box-shadow: 0 14px 32px rgba(12, 37, 52, .14);
}

.store-cta-dark small {
  color: #97b0bd;
}

.store-cta-dark:hover {
  transform: translateY(-2px);
  background: #071c27;
  box-shadow: 0 20px 42px rgba(12, 37, 52, .2);
}

.video-open-button {
  min-width: 168px;
}

/* Larger hero supporting labels */
.hero-trust {
  gap: 20px 26px;
}

.hero-trust span {
  font-size: 14px;
  font-weight: 800;
  color: #536f7d;
}

.hero-trust svg {
  width: 18px;
  height: 18px;
}

/* Larger "Exopedia è" rail */
.value-rail-inner {
  min-height: 104px;
}

.value-label {
  font-size: 12px;
  color: #879aa4;
  letter-spacing: .16em;
}

.value-items span {
  font-size: 15px;
  font-weight: 800;
  color: #496774;
}

.value-items svg {
  width: 20px;
  height: 20px;
}

/* Bento cards: keep all copy aligned to top */
.bento-card,
.bento-large,
.bento-wide {
  align-items: stretch;
}

.bento-large,
.bento-wide {
  align-content: start;
}

.bento-large .bento-copy,
.bento-wide .bento-copy {
  align-self: start;
}

.bento-large .bento-visual,
.bento-wide .bento-visual {
  align-self: center;
}

.bento-card h3 {
  margin-top: 0;
}

.bento-card p {
  font-size: 15px;
  line-height: 1.68;
}

/* Promemoria and Community no longer look vertically centered */
.bento-large {
  padding-top: 29px;
}

.bento-wide {
  padding-top: 29px;
}

.notifications-visual {
  align-self: center;
  margin-top: 0;
}

.community-stack {
  align-self: center;
  margin-top: 0;
}

/* Larger internal content */
.notification-card {
  padding: 18px 18px;
}

.notification-card small {
  font-size: 10px;
}

.notification-card strong {
  font-size: 14px;
}

.notification-status {
  width: 11px;
  height: 11px;
}

.history-visual {
  gap: 12px;
}

.history-row {
  padding: 14px 14px;
}

.history-row strong {
  font-size: 12px;
}

.history-row small {
  margin-top: 2px;
  font-size: 10px;
}

.community-card-mini {
  padding: 18px;
}

.community-card-mini strong {
  font-size: 13px;
}

.community-card-mini small {
  margin-top: 2px;
  font-size: 9px;
}

.community-card-mini p {
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.55;
}

.community-card-mini footer span {
  font-size: 10px;
}

.mini-avatar {
  width: 44px;
  height: 44px;
  font-size: 10px;
}

.saved-visual {
  gap: 10px;
}

.saved-visual span {
  min-height: 48px;
  padding: 12px 14px;
  font-size: 12px;
}

/* Better, larger map */
.map-visual {
  height: 178px;
  margin-top: 26px;
  overflow: hidden;
  border-radius: 20px;
}

.map-surface {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(236, 247, 248, .9), rgba(226, 243, 247, .95));
  border: 1px solid rgba(13, 38, 53, .05);
  border-radius: 20px;
}

.map-block {
  position: absolute;
  background: rgba(214, 235, 231, .72);
  border-radius: 18px;
}

.map-block-a { width: 88px; height: 54px; left: 16px; top: 14px; }
.map-block-b { width: 110px; height: 48px; right: 15px; top: 18px; }
.map-block-c { width: 105px; height: 58px; left: 30px; bottom: 13px; }
.map-block-d { width: 88px; height: 62px; right: 26px; bottom: 12px; }

.map-street {
  position: absolute;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 0 0 1px rgba(13, 38, 53, .02);
}

.street-a {
  width: 130%;
  height: 10px;
  left: -15%;
  top: 46%;
  transform: rotate(-7deg);
}

.street-b {
  width: 110%;
  height: 9px;
  left: -5%;
  top: 50%;
  transform: rotate(22deg);
}

.street-c {
  width: 150px;
  height: 8px;
  left: 38%;
  top: 44%;
  transform: rotate(88deg);
}

.street-d {
  width: 110px;
  height: 8px;
  left: 17%;
  top: 30%;
  transform: rotate(48deg);
}

.map-point {
  z-index: 3;
  width: 34px;
  height: 34px;
}

.map-point svg {
  width: 16px;
  height: 16px;
}

.map-point-a { left: 19%; top: 25%; }
.map-point-b { right: 19%; bottom: 20%; }
.map-point-c { left: 54%; top: 23%; }

.map-place-card {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 10px;
  min-width: 170px;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateX(-50%);
  padding: 10px 12px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(13, 38, 53, .07);
  border-radius: 14px;
  box-shadow: 0 13px 30px rgba(13, 38, 53, .1);
  backdrop-filter: blur(12px);
}

.map-place-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: none;
  color: var(--primary);
  background: #e9f7ff;
  border-radius: 10px;
}

.map-place-card small,
.map-place-card strong {
  display: block;
}

.map-place-card small {
  color: #8da0aa;
  font-size: 8px;
}

.map-place-card strong {
  margin-top: 1px;
  font-size: 10px;
}

/* Video modal */
.video-modal {
  position: fixed;
  z-index: 500;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, visibility .25s ease;
}

.video-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 17, 24, .72);
  backdrop-filter: blur(12px);
}

.video-modal-dialog {
  position: relative;
  z-index: 2;
  width: min(100%, 980px);
  max-height: calc(100vh - 48px);
  overflow: auto;
  padding: 28px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 30px;
  box-shadow: 0 40px 120px rgba(0, 0, 0, .35);
  transform: translateY(18px) scale(.985);
  transition: transform .3s cubic-bezier(.2,.8,.2,1);
}

.video-modal.is-open .video-modal-dialog {
  transform: none;
}

.video-modal-close {
  position: absolute;
  z-index: 5;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #f7fbfd;
  cursor: pointer;
}

.video-modal-heading {
  padding-right: 56px;
  margin-bottom: 22px;
}

.video-modal-heading h2 {
  font-size: clamp(32px, 4vw, 48px);
}

.video-player-shell {
  position: relative;
  overflow: hidden;
  background: #071b26;
  border-radius: 22px;
  aspect-ratio: 16 / 9;
}

.video-player-shell video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.video-fallback {
  position: absolute;
  z-index: -1;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  color: #9bb2be;
  text-align: center;
  font-size: 13px;
}

/* Ensure body can't scroll when modal is open */
body.video-modal-open {
  overflow: hidden;
}

@media (max-width: 1050px) {
  .bento-large .bento-visual,
  .bento-wide .bento-visual {
    align-self: stretch;
  }
}

@media (max-width: 700px) {
  .hero-store-actions {
    width: 100%;
  }

  .hero-store-actions > * {
    width: 100%;
  }

  .store-cta {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-trust span {
    font-size: 13px;
  }

  .value-label {
    font-size: 11px;
  }

  .value-items span {
    font-size: 13px;
  }

  .bento-card p {
    font-size: 14px;
  }

  .notification-card strong {
    font-size: 13px;
  }

  .community-card-mini p {
    font-size: 11px;
  }

  .saved-visual span {
    font-size: 11px;
  }

  .map-visual {
    height: 190px;
  }

  .video-modal {
    padding: 12px;
  }

  .video-modal-dialog {
    padding: 20px;
    border-radius: 24px;
  }

  .video-modal-close {
    top: 12px;
    right: 12px;
  }

  .video-modal-heading {
    padding-right: 48px;
  }
}


/* =========================================================
   WOW V4.2 — COMPACT BENTO + LEGIBILITY PASS
   ========================================================= */

/* Store buttons: less "pill", more premium app badge */
.store-cta {
  min-height: 60px;
  border-radius: 10px;
  padding: 9px 17px;
}

.store-cta strong {
  font-size: 16px;
}

.store-cta small {
  font-size: 9px;
}

/* Global readability pass for formerly tiny interface labels */
.hero-badge {
  font-size: 14px;
}

.hero-chip small {
  font-size: 10px;
}

.hero-chip strong {
  font-size: 13px;
}

.mode-button small {
  font-size: 10px;
}

.mode-button strong {
  font-size: 16px;
}

.mode-kicker {
  font-size: 12px;
}

.mode-points span {
  font-size: 14px;
}

.mode-context-card small {
  font-size: 10px;
}

.mode-context-card strong {
  font-size: 12px;
  line-height: 1.35;
}

.flow-step > span {
  font-size: 10px;
}

.flow-step strong {
  font-size: 18px;
}

.flow-step p {
  font-size: 13px;
}

.bento-label {
  font-size: 11px;
}

.map-place-card small {
  font-size: 10px;
}

.map-place-card strong {
  font-size: 12px;
}

.faq-answer p {
  font-size: 15px;
}

.footer-col a {
  font-size: 14px;
}

.footer-brand p {
  font-size: 14px;
}

.footer-bottom {
  font-size: 12px;
}

.download-brand small {
  font-size: 9px;
}

.download-brand strong {
  font-size: 14px;
}

.store-button small {
  font-size: 8px;
}

.store-button strong {
  font-size: 14px;
}

/* ===== DENSE BENTO LAYOUT =====
   Row 1: Reminder 7 / History 5
   Row 2: Map 5 / Community 7
   Row 3: Favorites full width, compact
*/
.bento-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  align-items: stretch;
}

.bento-card {
  min-height: 310px;
}

.bento-large {
  grid-column: span 7;
  min-height: 310px;
  grid-template-columns: minmax(0, 1fr) minmax(245px, .86fr);
  gap: 26px;
}

.bento-large + .bento-card {
  grid-column: span 5;
  min-height: 310px;
}

/* Map card */
.bento-large + .bento-card + .bento-card {
  grid-column: span 5;
  min-height: 320px;
}

/* Community */
.bento-wide {
  grid-column: span 7;
  min-height: 320px;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .9fr);
  gap: 28px;
}

/* Favorites fills the last row instead of leaving 8 empty columns */
.bento-wide + .bento-card {
  grid-column: 1 / -1;
  min-height: 205px;
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: 38px;
}

.bento-wide + .bento-card .bento-visual {
  margin-top: 0;
}

.bento-wide + .bento-card .saved-visual {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  display: grid;
  gap: 12px;
  margin-top: 0;
}

.bento-wide + .bento-card .saved-visual span {
  min-height: 56px;
  font-size: 13px;
}

/* Reminder/community graphics become compact and top-aligned */
.bento-large,
.bento-wide {
  align-items: start;
}

.bento-large .bento-copy,
.bento-wide .bento-copy {
  align-self: start;
}

.bento-large .notifications-visual,
.bento-wide .community-stack {
  align-self: start;
  margin-top: 4px;
}

.notifications-visual {
  max-width: 350px;
}

.notification-back {
  margin: 0 14px -8px;
}

.community-stack {
  max-width: 355px;
}

.mini-back {
  margin: 0 16px -8px;
}

/* Slightly denser copy so visual whitespace is deliberate, not accidental */
.bento-card h3 {
  line-height: 1.08;
}

.bento-large h3,
.bento-wide h3 {
  font-size: clamp(28px, 2.65vw, 37px);
}

.bento-large p,
.bento-wide p {
  max-width: 430px;
}

/* More substantial map surface */
.map-visual {
  height: 198px;
}

.map-surface {
  border-radius: 18px;
}

.map-place-card {
  min-width: 185px;
  padding: 11px 13px;
}

/* Tablet */
@media (max-width: 1050px) {
  .bento-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bento-card,
  .bento-large,
  .bento-wide,
  .bento-large + .bento-card,
  .bento-large + .bento-card + .bento-card,
  .bento-wide + .bento-card {
    grid-column: auto;
  }

  .bento-large,
  .bento-wide,
  .bento-wide + .bento-card {
    grid-column: 1 / -1;
  }

  .bento-large,
  .bento-wide {
    grid-template-columns: minmax(0, 1fr) minmax(280px, .9fr);
    min-height: 290px;
  }

  .bento-wide + .bento-card {
    grid-template-columns: minmax(220px, .65fr) minmax(0, 1.35fr);
  }
}

/* Mobile */
@media (max-width: 700px) {
  .store-cta {
    border-radius: 10px;
  }

  .hero-badge {
    font-size: 13px;
  }

  .mode-button strong {
    font-size: 15px;
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-card,
  .bento-large,
  .bento-wide,
  .bento-large + .bento-card,
  .bento-large + .bento-card + .bento-card,
  .bento-wide + .bento-card {
    grid-column: auto;
    min-height: auto;
  }

  .bento-large,
  .bento-wide,
  .bento-wide + .bento-card {
    display: flex;
    flex-direction: column;
  }

  .bento-large .notifications-visual,
  .bento-wide .community-stack {
    margin-top: 26px;
  }

  .bento-wide + .bento-card .saved-visual {
    grid-template-columns: 1fr;
    width: 100%;
    margin-top: 26px;
  }

  .map-visual {
    height: 215px;
  }

  .footer-col a {
    font-size: 15px;
  }
}


/* =========================================================
   WOW V4.3 — BENTO REORDER + FULL-WIDTH MAP + VERTICAL TUNING
   ========================================================= */

/* Explicit bento placement */
.bento-reminder {
  grid-column: span 7;
  min-height: 310px;
}

.bento-history {
  grid-column: span 5;
  min-height: 310px;
}

.bento-favorites {
  grid-column: span 5;
  min-height: 320px;
}

.bento-community {
  grid-column: span 7;
  min-height: 320px;
}

/* Map becomes the full-width closing card */
.bento-map {
  grid-column: 1 / -1;
  min-height: 300px;
  display: grid;
  grid-template-columns: minmax(280px, .68fr) minmax(0, 1.32fr);
  align-items: center;
  gap: 42px;
}

.bento-map .bento-copy {
  align-self: center;
}

.bento-map .map-visual {
  width: 100%;
  height: 235px;
  margin-top: 0;
  align-self: center;
}

/* Favorites returns to the compact slot previously occupied by Map */
.bento-favorites {
  display: flex;
  flex-direction: column;
}

.bento-favorites .saved-visual {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  width: 100%;
  margin-top: 26px;
}

/* Override V4.2 last-row favorites rules */
.bento-wide + .bento-card,
.bento-community + .bento-map {
  grid-column: auto;
  min-height: initial;
  display: initial;
  grid-template-columns: initial;
  align-items: initial;
  gap: initial;
}

.bento-community + .bento-map {
  grid-column: 1 / -1;
  min-height: 300px;
  display: grid;
  grid-template-columns: minmax(280px, .68fr) minmax(0, 1.32fr);
  align-items: center;
  gap: 42px;
}

.bento-community + .bento-map .bento-visual {
  margin-top: 0;
}

/* Notifications and community previews sit a little lower,
   visually centered against title + subtitle rather than hugging the top */
.bento-reminder .notifications-visual {
  align-self: center;
  transform: translateY(16px);
}

.bento-community .community-stack {
  align-self: center;
  transform: translateY(14px);
}

/* Slightly more comfortable internal vertical centering */
.bento-reminder .notification-card > div,
.bento-community .community-card-mini > div:last-child {
  align-self: center;
}

.bento-reminder .notification-card strong,
.bento-reminder .notification-card small,
.bento-community .community-card-mini strong,
.bento-community .community-card-mini small,
.bento-community .community-card-mini p {
  line-height: 1.45;
}

/* Map details: use the new extra width */
.bento-map .map-surface {
  min-height: 235px;
}

.bento-map .map-block-a { width: 130px; height: 66px; left: 28px; top: 20px; }
.bento-map .map-block-b { width: 150px; height: 62px; right: 25px; top: 22px; }
.bento-map .map-block-c { width: 145px; height: 72px; left: 45px; bottom: 18px; }
.bento-map .map-block-d { width: 125px; height: 75px; right: 48px; bottom: 18px; }

.bento-map .map-place-card {
  min-width: 210px;
  padding: 12px 14px;
}

.bento-map .map-place-card small {
  font-size: 11px;
}

.bento-map .map-place-card strong {
  font-size: 14px;
}

/* Download store buttons fit gracefully when there are 3 */
.download-actions {
  align-items: stretch;
}

.download-actions .store-button {
  min-width: 170px;
}

@media (max-width: 1050px) {
  .bento-reminder,
  .bento-history,
  .bento-favorites,
  .bento-community {
    grid-column: 1 / -1;
  }

  .bento-reminder,
  .bento-community {
    grid-template-columns: minmax(0, 1fr) minmax(280px, .9fr);
  }

  .bento-map,
  .bento-community + .bento-map {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .bento-map .bento-copy {
    align-self: start;
  }

  .bento-map .map-visual {
    height: 260px;
  }
}

@media (max-width: 700px) {
  .bento-reminder,
  .bento-history,
  .bento-favorites,
  .bento-community,
  .bento-map,
  .bento-community + .bento-map {
    grid-column: auto;
    display: flex;
    flex-direction: column;
    min-height: auto;
  }

  .bento-reminder .notifications-visual,
  .bento-community .community-stack {
    transform: none;
    margin-top: 28px;
  }

  .bento-map .map-visual {
    height: 230px;
    margin-top: 28px;
  }

  .download-actions .store-button {
    width: 100%;
    min-width: 0;
  }
}


/* =========================================================
   WOW V4.4 — INTERACTIVE LOOPS + CATEGORY MAP
   ========================================================= */

/* Softer internal shadows */
.notification-card,
.community-card-mini {
  box-shadow: 0 8px 20px rgba(13, 38, 53, .055);
}

/* Infinite wheel loops */
.loop-visual {
  position: relative;
  overflow: visible;
  cursor: ns-resize;
  user-select: none;
}

.loop-viewport {
  position: relative;
  height: 178px;
  overflow: hidden;
  border-radius: 20px;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 10%, #000 90%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0, #000 10%, #000 90%, transparent 100%);
}

.loop-track {
  position: absolute;
  inset: 0 0 auto 0;
  display: grid;
  gap: 10px;
  transition: transform .42s cubic-bezier(.2,.8,.2,1);
  will-change: transform;
}

.loop-item {
  width: 100%;
  min-width: 0;
}

.loop-hint {
  position: absolute;
  right: 8px;
  bottom: -22px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #8da1aa;
  font-size: 10px;
  font-weight: 700;
  opacity: .66;
  pointer-events: none;
}

.loop-hint svg {
  width: 13px;
  height: 13px;
}

.notifications-visual.loop-visual,
.community-stack.loop-visual {
  transform: translateY(10px);
}

.notifications-visual .notification-card,
.community-stack .community-card-mini {
  margin: 0;
  transform: none;
  opacity: 1;
}

.notifications-visual .notification-card.is-secondary,
.community-stack .community-card-mini.is-secondary {
  opacity: .46;
  transform: scale(.965);
}

.notification-card,
.community-card-mini {
  transition: opacity .32s ease, transform .32s ease, box-shadow .2s ease;
}

/* Map filters */
.interactive-map {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 14px;
}

.map-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.map-chip {
  --cat: #708895;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  color: #58717d;
  background: #fff;
  border: 1px solid rgba(13, 38, 53, .09);
  border-radius: 11px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}

.map-chip:hover {
  transform: translateY(-1px);
}

.map-chip.is-active {
  color: var(--cat);
  background: color-mix(in srgb, var(--cat) 10%, white);
  border-color: color-mix(in srgb, var(--cat) 40%, transparent);
}

.chip-dot {
  width: 9px;
  height: 9px;
  flex: none;
  background: var(--cat);
  border-radius: 50%;
}

.chip-dot-all {
  background: conic-gradient(#e35d67 0 25%, #35a56b 25% 50%, #8a67df 50% 75%, #e69b2f 75% 100%);
}

.map-chip-vet { --cat: #e35d67; }
.map-chip-park { --cat: #35a56b; }
.map-chip-fair { --cat: #8a67df; }
.map-chip-shop { --cat: #e69b2f; }

.interactive-map .map-surface {
  min-height: 250px;
  overflow: hidden;
}

.map-block-e {
  position: absolute;
  width: 105px;
  height: 58px;
  left: 43%;
  top: 28px;
  background: rgba(214,235,231,.62);
  border-radius: 18px;
}

.street-e {
  width: 145px;
  height: 8px;
  right: 16%;
  top: 36%;
  transform: rotate(57deg);
}

.map-marker {
  --cat: var(--primary);
  position: absolute;
  z-index: 5;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
  color: #fff;
  background: var(--cat);
  border: 4px solid rgba(255,255,255,.94);
  border-radius: 50%;
  box-shadow: 0 9px 22px color-mix(in srgb, var(--cat) 24%, transparent);
  cursor: pointer;
  transform: scale(1);
  transition: transform .28s cubic-bezier(.2,.8,.2,1), opacity .24s ease, filter .24s ease, box-shadow .24s ease;
}

.map-marker svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

.marker-vet { --cat: #e35d67; }
.marker-park { --cat: #35a56b; }
.marker-fair { --cat: #8a67df; }
.marker-shop { --cat: #e69b2f; }

.map-marker.is-muted {
  filter: grayscale(1);
  opacity: .23;
  box-shadow: none;
  transform: scale(.82);
}

.map-marker.is-highlighted {
  z-index: 8;
  transform: scale(1.3);
  box-shadow:
    0 13px 30px color-mix(in srgb, var(--cat) 34%, transparent),
    0 0 0 8px color-mix(in srgb, var(--cat) 12%, transparent);
}

.map-marker:hover {
  z-index: 10;
  transform: scale(1.16);
}

.marker-vet-a { left: 14%; top: 22%; }
.marker-vet-b { right: 18%; top: 28%; }
.marker-park-a { left: 31%; bottom: 18%; }
.marker-park-b { right: 7%; bottom: 22%; }
.marker-fair-a { left: 49%; top: 18%; }
.marker-fair-b { left: 60%; bottom: 16%; }
.marker-shop-a { left: 7%; bottom: 18%; }
.marker-shop-b { right: 34%; top: 41%; }

.interactive-map .map-place-card {
  bottom: 12px;
}

@media (max-width: 1050px) {
  .loop-viewport {
    height: 184px;
  }

  .interactive-map .map-surface {
    min-height: 270px;
  }
}

@media (max-width: 700px) {
  .loop-viewport {
    height: 190px;
  }

  .notifications-visual.loop-visual,
  .community-stack.loop-visual {
    transform: none;
  }

  .map-chip {
    min-height: 34px;
    padding-inline: 10px;
    font-size: 11px;
  }

  .map-marker {
    width: 40px;
    height: 40px;
  }

  .map-marker svg {
    width: 18px;
    height: 18px;
  }

  .interactive-map .map-surface {
    min-height: 245px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .loop-track,
  .map-marker {
    transition: none;
  }
}


/* =========================================================
   WOW V4.5 — LARGER MAP / SAFE MARKER AREA
   ========================================================= */

/* More vertical room for the closing map card */
.bento-map,
.bento-community + .bento-map {
  min-height: 390px;
  grid-template-columns: minmax(280px, .62fr) minmax(0, 1.38fr);
  gap: 46px;
}

/* Bigger actual map, with enough room for enlarged active markers */
.bento-map .map-visual,
.bento-community + .bento-map .map-visual {
  height: 305px;
}

.bento-map .interactive-map,
.bento-community + .bento-map .interactive-map {
  align-self: center;
}

.bento-map .map-surface,
.bento-community + .bento-map .map-surface,
.interactive-map .map-surface {
  min-height: 255px;
}

/* Internal safe area: move edge markers inward so scale(1.3) never clips */
.marker-vet-a {
  left: 16%;
  top: 23%;
}

.marker-vet-b {
  right: 20%;
  top: 29%;
}

.marker-park-a {
  left: 32%;
  bottom: 21%;
}

.marker-park-b {
  right: 10%;
  bottom: 24%;
}

.marker-fair-a {
  left: 49%;
  top: 21%;
}

.marker-fair-b {
  left: 60%;
  bottom: 20%;
}

.marker-shop-a {
  left: 10%;
  bottom: 22%;
}

.marker-shop-b {
  right: 35%;
  top: 42%;
}

/* Give highlighted markers a little less aggressive halo near boundaries */
.map-marker.is-highlighted {
  box-shadow:
    0 12px 27px color-mix(in srgb, var(--cat) 30%, transparent),
    0 0 0 7px color-mix(in srgb, var(--cat) 11%, transparent);
}

/* More breathing room inside the visual map itself */
.interactive-map .map-surface {
  border-radius: 20px;
}

@media (max-width: 1050px) {
  .bento-map,
  .bento-community + .bento-map {
    min-height: auto;
  }

  .bento-map .map-visual,
  .bento-community + .bento-map .map-visual {
    height: 325px;
  }

  .interactive-map .map-surface {
    min-height: 275px;
  }
}

@media (max-width: 700px) {
  .bento-map .map-visual,
  .bento-community + .bento-map .map-visual {
    height: 285px;
  }

  .interactive-map .map-surface {
    min-height: 235px;
  }

  /* Extra mobile edge safety */
  .marker-vet-a { left: 17%; }
  .marker-vet-b { right: 17%; }
  .marker-park-b { right: 11%; }
  .marker-shop-a { left: 11%; }
}


/* =========================================================
   WOW V4.6 — LEFT-ALIGNED SECTION HEADINGS
   ========================================================= */

/* Make these headings start from the left edge of the container,
   like "Dentro Exopedia" */
.product-stage-heading,
.flow-heading {
  max-width: none;
  width: 100%;
  margin-bottom: 50px;
  text-align: left;
}

.product-stage-heading > *,
.flow-heading > * {
  justify-self: start;
  text-align: left;
}

.product-stage-heading p {
  max-width: 720px;
  margin-top: 20px;
}

.flow-heading h2,
.product-stage-heading h2 {
  max-width: 900px;
}

@media (max-width: 700px) {
  .product-stage-heading,
  .flow-heading {
    margin-bottom: 36px;
  }

  .product-stage-heading p {
    max-width: 100%;
  }
}


/* =========================================================
   WOW V4.7 — LEFT ALIGN REFINEMENT + TALLER LOOP AREAS
   ========================================================= */

/* Force the two section intro blocks to behave like standard left-aligned content */
.product-stage-heading,
.flow-heading {
  display: block;
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.product-stage-heading .section-kicker,
.product-stage-heading h2,
.product-stage-heading p,
.flow-heading .section-kicker,
.flow-heading h2,
.flow-heading p {
  display: block;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  text-align: left;
  justify-self: start;
}

.product-stage-heading h2,
.flow-heading h2 {
  max-width: 920px;
}

.product-stage-heading p {
  max-width: 760px;
}

/* Make Reminder and Community scroll visuals occupy much more of the card height */
.bento-reminder,
.bento-community {
  align-items: stretch;
}

.bento-reminder .notifications-visual,
.bento-community .community-stack {
  width: 100%;
  max-width: 370px;
  height: 100%;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bento-reminder .loop-visual,
.bento-community .loop-visual {
  align-self: stretch;
  margin-top: 0;
}

.bento-reminder .loop-viewport,
.bento-community .loop-viewport {
  flex: 1 1 auto;
  height: auto;
  min-height: 236px;
  display: flex;
  align-items: center;
}

.bento-reminder .loop-track,
.bento-community .loop-track {
  width: 100%;
}

.bento-reminder .loop-hint,
.bento-community .loop-hint {
  position: static;
  margin-top: 10px;
  align-self: flex-end;
}

/* Slightly larger cards internally so the expanded viewport breathes */
.bento-reminder {
  min-height: 330px;
}

.bento-community {
  min-height: 338px;
}

@media (max-width: 1050px) {
  .bento-reminder .notifications-visual,
  .bento-community .community-stack {
    max-width: 100%;
    min-height: 230px;
  }

  .bento-reminder .loop-viewport,
  .bento-community .loop-viewport {
    min-height: 220px;
  }
}

@media (max-width: 700px) {
  .product-stage-heading h2,
  .flow-heading h2,
  .product-stage-heading p {
    max-width: 100%;
  }

  .bento-reminder,
  .bento-community {
    min-height: auto;
  }

  .bento-reminder .notifications-visual,
  .bento-community .community-stack {
    min-height: 215px;
  }

  .bento-reminder .loop-viewport,
  .bento-community .loop-viewport {
    min-height: 205px;
  }

  .bento-reminder .loop-hint,
  .bento-community .loop-hint {
    margin-top: 8px;
  }
}


/* =========================================================
   WOW V4.8 — EXACT SECTION HEADING GRID + FULL-HEIGHT LOOPS
   ========================================================= */

/* These now use the exact same two-column visual system as "Dentro Exopedia". */
.product-stage-heading,
.flow-heading {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: end;
  gap: 70px;
  width: min(calc(100% - 40px), var(--container));
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 48px;
  text-align: left;
}

.product-stage-heading > div:first-child,
.flow-heading > div:first-child {
  min-width: 0;
  justify-self: stretch;
  text-align: left;
}

.product-stage-heading .section-kicker,
.product-stage-heading h2,
.flow-heading .section-kicker,
.flow-heading h2 {
  width: auto;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.product-stage-heading > p {
  max-width: 500px;
  margin: 0;
  justify-self: end;
  text-align: left;
  font-size: 15px;
}

.section-heading-spacer {
  min-height: 1px;
}

/* Let the interactive content use the ENTIRE vertical space of the card. */
.bento-reminder,
.bento-community {
  align-items: stretch;
}

.bento-reminder .notifications-visual,
.bento-community .community-stack {
  width: 100%;
  max-width: none;
  height: 100%;
  min-height: 0;
  align-self: stretch;
  margin-top: 0;
  transform: none;
  display: flex;
  flex-direction: column;
}

.bento-reminder .loop-viewport,
.bento-community .loop-viewport {
  flex: 1 1 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: 18px;
}

.bento-reminder .loop-track,
.bento-community .loop-track {
  width: 100%;
}

/* Keep the hint inside the visual without stealing height from the list. */
.bento-reminder .loop-hint,
.bento-community .loop-hint {
  position: absolute;
  right: 8px;
  bottom: 6px;
  z-index: 7;
  margin: 0;
  padding: 5px 8px;
  color: #78909b;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(13,38,53,.06);
  border-radius: 9px;
  backdrop-filter: blur(8px);
  opacity: .78;
}

/* Slightly taller cards so the full-height scrollers are visually useful. */
.bento-reminder,
.bento-community {
  min-height: 360px;
}

/* Their visual columns should literally stretch from card top padding to bottom padding. */
.bento-reminder {
  align-items: stretch;
}

.bento-community {
  align-items: stretch;
}

.bento-reminder .bento-copy,
.bento-community .bento-copy {
  align-self: start;
}

.bento-reminder .loop-visual,
.bento-community .loop-visual {
  align-self: stretch;
  height: 100%;
}

/* Make surrounding loop cards more visible now that the viewport is taller. */
.notifications-visual .loop-item.is-secondary,
.community-stack .loop-item.is-secondary {
  opacity: .58;
}

@media (max-width: 1050px) {
  .product-stage-heading,
  .flow-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-stage-heading > p {
    max-width: 650px;
    justify-self: start;
  }

  .section-heading-spacer {
    display: none;
  }

  .bento-reminder,
  .bento-community {
    min-height: 350px;
  }

  .bento-reminder .notifications-visual,
  .bento-community .community-stack {
    min-height: 0;
  }
}

@media (max-width: 700px) {
  .product-stage-heading,
  .flow-heading {
    width: min(calc(100% - 28px), var(--container));
    margin-bottom: 36px;
  }

  .bento-reminder,
  .bento-community {
    min-height: auto;
  }

  .bento-reminder .notifications-visual,
  .bento-community .community-stack {
    height: 290px;
    min-height: 290px;
    margin-top: 26px;
  }

  .bento-reminder .loop-viewport,
  .bento-community .loop-viewport {
    height: 100%;
  }
}


/* =========================================================
   WOW V4.9 — CENTER FLOW + TRUE FULL-HEIGHT LOOP COLUMNS
   ========================================================= */

/* FLOW: back to centered presentation */
.flow-heading {
  display: block;
  width: min(calc(100% - 40px), 760px);
  max-width: 760px;
  margin: 0 auto 58px;
  text-align: center;
}

.flow-heading > div:first-child {
  width: 100%;
  text-align: center;
}

.flow-heading .section-kicker,
.flow-heading h2 {
  width: 100%;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.flow-heading .section-heading-spacer {
  display: none;
}

/* Reminder + Community:
   the visual column now fills the entire usable card height */
.bento-reminder,
.bento-community {
  min-height: 390px;
  align-items: stretch;
}

.bento-reminder {
  grid-template-columns: minmax(0, 1fr) minmax(260px, .92fr);
}

.bento-community {
  grid-template-columns: minmax(0, 1fr) minmax(285px, .96fr);
}

/* The visual item stretches from card top padding to card bottom padding */
.bento-reminder .notifications-visual,
.bento-community .community-stack {
  position: relative;
  width: 100%;
  max-width: none;
  height: auto;
  min-height: 100%;
  align-self: stretch;
  justify-self: stretch;
  margin: 0;
  transform: none;
  overflow: hidden;
  border-radius: 20px;
}

/* The viewport literally covers the full visual column */
.bento-reminder .loop-viewport,
.bento-community .loop-viewport {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  overflow: hidden;
  border-radius: inherit;
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0,
    #000 7%,
    #000 93%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 0,
    #000 7%,
    #000 93%,
    transparent 100%
  );
}

/* Track uses full width and can travel across the whole column height */
.bento-reminder .loop-track,
.bento-community .loop-track {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
}

/* Hint floats above the list, without consuming vertical space */
.bento-reminder .loop-hint,
.bento-community .loop-hint {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 12;
  margin: 0;
}

/* More breathing room between list items */
.bento-reminder .loop-track,
.bento-community .loop-track {
  gap: 12px;
}

/* Internal cards can use more width */
.bento-reminder .notification-card,
.bento-community .community-card-mini {
  width: 100%;
}

/* Keep copy aligned at top while the loop fills the full opposite column */
.bento-reminder .bento-copy,
.bento-community .bento-copy {
  align-self: start;
}

@media (max-width: 1050px) {
  .flow-heading {
    width: min(calc(100% - 40px), 760px);
    margin-bottom: 50px;
  }

  .bento-reminder,
  .bento-community {
    min-height: 380px;
    grid-template-columns: minmax(0, 1fr) minmax(280px, .95fr);
  }
}

@media (max-width: 700px) {
  .flow-heading {
    width: min(calc(100% - 28px), 760px);
    margin-bottom: 40px;
  }

  .bento-reminder,
  .bento-community {
    min-height: auto;
    display: flex;
    flex-direction: column;
  }

  .bento-reminder .notifications-visual,
  .bento-community .community-stack {
    position: relative;
    width: 100%;
    height: 320px;
    min-height: 320px;
    margin-top: 28px;
  }

  .bento-reminder .loop-viewport,
  .bento-community .loop-viewport {
    position: absolute;
    inset: 0;
    height: 100%;
    min-height: 100%;
  }
}


/* =========================================================
   WOW V4.10 — TRUE EDGE-TO-EDGE VERTICAL LOOP
   ========================================================= */

/*
   Desktop: the loop column is taken out of the grid flow and anchored
   directly to the card's inner top/bottom edges. This removes any chance
   for its height to collapse to its content.
*/
@media (min-width: 1051px) {
  .bento-reminder,
  .bento-community {
    position: relative;
    display: block;
    min-height: 410px;
  }

  .bento-reminder .bento-copy,
  .bento-community .bento-copy {
    position: relative;
    z-index: 5;
    width: 48%;
    max-width: 48%;
  }

  .bento-reminder .notifications-visual,
  .bento-community .community-stack {
    position: absolute;
    z-index: 4;
    top: 29px;
    right: 29px;
    bottom: 29px;
    width: 43%;
    height: auto;
    min-height: 0;
    max-width: none;
    margin: 0;
    transform: none;
    overflow: hidden;
    border-radius: 20px;
  }

  .bento-community .community-stack {
    width: 45%;
  }

  .bento-reminder .loop-viewport,
  .bento-community .loop-viewport {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
  }
}

/*
   Tablet: keep the two-column grid, but force a definite full-height visual
   by stretching the grid item and removing percentage min-height ambiguity.
*/
@media (min-width: 701px) and (max-width: 1050px) {
  .bento-reminder,
  .bento-community {
    min-height: 390px;
    align-items: stretch;
  }

  .bento-reminder .notifications-visual,
  .bento-community .community-stack {
    position: relative;
    align-self: stretch;
    height: 100%;
    min-height: 332px;
    max-width: none;
    margin: 0;
    transform: none;
  }

  .bento-reminder .loop-viewport,
  .bento-community .loop-viewport {
    position: absolute;
    inset: 0;
    height: 100%;
    min-height: 0;
  }
}

/* More usable loop content height: no blank bottom zone. */
.bento-reminder .loop-track,
.bento-community .loop-track {
  gap: 12px;
  padding-bottom: 12px;
}

.bento-reminder .notification-card,
.bento-community .community-card-mini {
  flex: none;
}

/* Make faded neighbors readable instead of looking like empty decoration. */
.notifications-visual .loop-item.is-secondary,
.community-stack .loop-item.is-secondary {
  opacity: .66;
  transform: scale(.975);
}

/* Hide the wheel hint until hover so it doesn't cover a list item. */
.bento-reminder .loop-hint,
.bento-community .loop-hint {
  opacity: 0;
  transform: translateY(3px);
  transition: opacity .18s ease, transform .18s ease;
}

.bento-reminder .loop-visual:hover .loop-hint,
.bento-community .loop-visual:hover .loop-hint {
  opacity: .88;
  transform: none;
}

@media (max-width: 700px) {
  .bento-reminder .notifications-visual,
  .bento-community .community-stack {
    height: 360px;
    min-height: 360px;
  }

  .bento-reminder .loop-viewport,
  .bento-community .loop-viewport {
    height: 100%;
  }
}




/* =========================================================
   WOW V4.12 — UNIFIED SCROLL ANIMATION ENGINE
   One observer, one initial state, no conflict with `.reveal`.
   ========================================================= */

.fx-section {
  overflow: hidden;
  overflow: clip;
}

/* Only hide/move things when JS has explicitly enabled the FX engine.
   If JS fails, the whole site remains visible and usable. */
@media (prefers-reduced-motion: no-preference) {

  /* ---------------- HERO: page-load assembly ---------------- */
  html.fx-enabled .fx-hero-section:not(.fx-in) .hero-copy {
    opacity: 0;
    transform: translate3d(-70px, 18px, 0);
  }

  html.fx-enabled .fx-hero-section:not(.fx-in) .hero-visual {
    opacity: 0;
    transform: translate3d(85px, 20px, 0) scale(.94);
  }

  html.fx-enabled .fx-hero-section:not(.fx-in) .hero-chip {
    opacity: 0;
  }

  html.fx-enabled .fx-hero-section:not(.fx-in) .chip-one {
    transform: translate3d(-120px, -25px, 0) rotate(-6deg);
  }

  html.fx-enabled .fx-hero-section:not(.fx-in) .chip-two {
    transform: translate3d(120px, 8px, 0) rotate(6deg);
  }

  html.fx-enabled .fx-hero-section:not(.fx-in) .chip-three {
    transform: translate3d(-90px, 75px, 0) rotate(4deg);
  }

  .fx-hero-section .hero-copy,
  .fx-hero-section .hero-visual,
  .fx-hero-section .hero-chip {
    transition:
      opacity .72s ease,
      transform 1s cubic-bezier(.16,1,.3,1);
  }

  .fx-hero-section.fx-in .hero-copy,
  .fx-hero-section.fx-in .hero-visual,
  .fx-hero-section.fx-in .hero-chip {
    opacity: 1;
    transform: none;
  }

  .fx-hero-section.fx-in .hero-copy { transition-delay: .04s; }
  .fx-hero-section.fx-in .hero-visual { transition-delay: .12s; }
  .fx-hero-section.fx-in .chip-one { transition-delay: .34s; }
  .fx-hero-section.fx-in .chip-two { transition-delay: .43s; }
  .fx-hero-section.fx-in .chip-three { transition-delay: .52s; }

  /* ---------------- EXOPEDIA È ---------------- */
  html.fx-enabled .fx-value-section:not(.fx-in) .value-rail-inner {
    opacity: 0;
    transform: translate3d(0, 42px, 0) scale(.97);
  }

  html.fx-enabled .fx-value-section:not(.fx-in) .value-label,
  html.fx-enabled .fx-value-section:not(.fx-in) .value-items span {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }

  .fx-value-section .value-rail-inner {
    transition:
      opacity .6s ease,
      transform .85s cubic-bezier(.16,1,.3,1);
  }

  .fx-value-section .value-label,
  .fx-value-section .value-items span {
    transition:
      opacity .48s ease,
      transform .65s cubic-bezier(.16,1,.3,1);
  }

  .fx-value-section.fx-in .value-rail-inner,
  .fx-value-section.fx-in .value-label,
  .fx-value-section.fx-in .value-items span {
    opacity: 1;
    transform: none;
  }

  .fx-value-section.fx-in .value-label { transition-delay: .16s; }
  .fx-value-section.fx-in .value-items span:nth-child(1) { transition-delay: .22s; }
  .fx-value-section.fx-in .value-items span:nth-child(2) { transition-delay: .29s; }
  .fx-value-section.fx-in .value-items span:nth-child(3) { transition-delay: .36s; }
  .fx-value-section.fx-in .value-items span:nth-child(4) { transition-delay: .43s; }

  /* ---------------- PRODUCT STAGE ---------------- */
  html.fx-enabled .fx-product-stage:not(.fx-in) .product-stage-heading > div:first-child {
    opacity: 0;
    transform: translate3d(-85px,0,0);
  }

  html.fx-enabled .fx-product-stage:not(.fx-in) .product-stage-heading > p {
    opacity: 0;
    transform: translate3d(85px,0,0);
  }

  html.fx-enabled .fx-product-stage:not(.fx-in) .product-stage {
    opacity: 0;
    transform: translate3d(0,65px,0) scale(.965);
  }

  html.fx-enabled .fx-product-stage:not(.fx-in) .mode-button {
    opacity: 0;
    transform: translate3d(0,-32px,0);
  }

  html.fx-enabled .fx-product-stage:not(.fx-in) .mode-copy {
    opacity: 0;
    transform: translate3d(-65px,0,0);
  }

  html.fx-enabled .fx-product-stage:not(.fx-in) .mode-device-shell {
    opacity: 0;
    transform: translate3d(0,90px,0) scale(.9) rotate(-4deg);
  }

  html.fx-enabled .fx-product-stage:not(.fx-in) .context-top {
    opacity: 0;
    transform: translate3d(-90px,-15px,0);
  }

  html.fx-enabled .fx-product-stage:not(.fx-in) .context-bottom {
    opacity: 0;
    transform: translate3d(90px,25px,0);
  }

  .fx-product-stage .product-stage-heading > div:first-child,
  .fx-product-stage .product-stage-heading > p,
  .fx-product-stage .product-stage,
  .fx-product-stage .mode-button,
  .fx-product-stage .mode-copy,
  .fx-product-stage .mode-device-shell,
  .fx-product-stage .mode-context-card {
    transition:
      opacity .62s ease,
      transform .88s cubic-bezier(.16,1,.3,1);
  }

  .fx-product-stage.fx-in .product-stage-heading > div:first-child,
  .fx-product-stage.fx-in .product-stage-heading > p,
  .fx-product-stage.fx-in .product-stage,
  .fx-product-stage.fx-in .mode-button,
  .fx-product-stage.fx-in .mode-copy,
  .fx-product-stage.fx-in .mode-device-shell,
  .fx-product-stage.fx-in .mode-context-card {
    opacity: 1;
    transform: none;
  }

  .fx-product-stage.fx-in .product-stage-heading > p { transition-delay: .08s; }
  .fx-product-stage.fx-in .product-stage { transition-delay: .15s; }
  .fx-product-stage.fx-in .mode-button:nth-child(1) { transition-delay: .27s; }
  .fx-product-stage.fx-in .mode-button:nth-child(2) { transition-delay: .34s; }
  .fx-product-stage.fx-in .mode-button:nth-child(3) { transition-delay: .41s; }
  .fx-product-stage.fx-in .mode-copy { transition-delay: .34s; }
  .fx-product-stage.fx-in .mode-device-shell { transition-delay: .38s; }
  .fx-product-stage.fx-in .context-top { transition-delay: .52s; }
  .fx-product-stage.fx-in .context-bottom { transition-delay: .60s; }

  /* ---------------- FLOW ---------------- */
  html.fx-enabled .fx-flow-section:not(.fx-in) .flow-heading {
    opacity: 0;
    transform: translate3d(0,50px,0);
  }

  html.fx-enabled .fx-flow-section:not(.fx-in) .flow-line {
    opacity: 0;
    transform: scaleX(.08);
  }

  html.fx-enabled .fx-flow-section:not(.fx-in) .flow-step {
    opacity: 0;
    transform: translate3d(0,70px,0) scale(.88);
  }

  .fx-flow-section .flow-heading,
  .fx-flow-section .flow-step,
  .fx-flow-section .flow-line {
    transition:
      opacity .58s ease,
      transform .82s cubic-bezier(.16,1,.3,1);
  }

  .fx-flow-section .flow-line {
    transform-origin: left center;
  }

  .fx-flow-section.fx-in .flow-heading,
  .fx-flow-section.fx-in .flow-step {
    opacity: 1;
    transform: none;
  }

  .fx-flow-section.fx-in .flow-line {
    opacity: 1;
    transform: scaleX(1);
  }

  .fx-flow-section.fx-in .flow-step:nth-of-type(1) { transition-delay: .14s; }
  .fx-flow-section.fx-in .flow-step:nth-of-type(2) { transition-delay: .24s; }
  .fx-flow-section.fx-in .flow-step:nth-of-type(3) { transition-delay: .34s; }
  .fx-flow-section.fx-in .flow-step:nth-of-type(4) { transition-delay: .44s; }

  /* ---------------- DENTRO EXOPEDIA: PUZZLE ---------------- */
  html.fx-enabled .fx-bento-section:not(.fx-in) .bento-heading {
    opacity: 0;
    transform: translate3d(0,48px,0);
  }

  html.fx-enabled .fx-bento-section:not(.fx-in) .puzzle-piece {
    opacity: 0 !important;
    pointer-events: none;
  }

  html.fx-enabled .fx-bento-section:not(.fx-in) .puzzle-left {
    transform: translate3d(-120vw,-24px,0) rotate(-4deg) scale(.94) !important;
  }

  html.fx-enabled .fx-bento-section:not(.fx-in) .puzzle-top {
    transform: translate3d(20px,-78vh,0) rotate(3deg) scale(.94) !important;
  }

  html.fx-enabled .fx-bento-section:not(.fx-in) .puzzle-left-bottom {
    transform: translate3d(-110vw,48vh,0) rotate(4deg) scale(.94) !important;
  }

  html.fx-enabled .fx-bento-section:not(.fx-in) .puzzle-right {
    transform: translate3d(120vw,20px,0) rotate(4deg) scale(.94) !important;
  }

  html.fx-enabled .fx-bento-section:not(.fx-in) .puzzle-bottom {
    transform: translate3d(0,72vh,0) scale(.95) !important;
  }

  .fx-bento-section .bento-heading,
  .fx-bento-section .puzzle-piece {
    transition:
      opacity .62s ease,
      transform 1.08s cubic-bezier(.16,1,.3,1),
      box-shadow .22s ease,
      border-color .22s ease !important;
    will-change: transform, opacity;
  }

  .fx-bento-section.fx-in .bento-heading {
    opacity: 1;
    transform: none;
  }

  .fx-bento-section.fx-in .puzzle-piece {
    opacity: 1 !important;
    transform: translate3d(0,0,0) rotate(0) scale(1) !important;
    pointer-events: auto;
  }

  .fx-bento-section.fx-in [data-puzzle-order="1"] { transition-delay: .10s !important; }
  .fx-bento-section.fx-in [data-puzzle-order="2"] { transition-delay: .19s !important; }
  .fx-bento-section.fx-in [data-puzzle-order="3"] { transition-delay: .28s !important; }
  .fx-bento-section.fx-in [data-puzzle-order="4"] { transition-delay: .37s !important; }
  .fx-bento-section.fx-in [data-puzzle-order="5"] { transition-delay: .46s !important; }

  /* ---------------- CINEMATIC ---------------- */
  html.fx-enabled .fx-cinematic-section:not(.fx-in) .cinematic-card {
    opacity: 0;
    transform: translate3d(0,55px,0) scale(.97);
  }

  html.fx-enabled .fx-cinematic-section:not(.fx-in) .cinematic-copy {
    opacity: 0;
    transform: translate3d(-90px,0,0);
  }

  html.fx-enabled .fx-cinematic-section:not(.fx-in) .cinematic-ring {
    opacity: 0;
    transform: translate(-50%,-50%) scale(.52);
  }

  html.fx-enabled .fx-cinematic-section:not(.fx-in) .phone-back {
    opacity: 0;
    transform: translate3d(-160px,100px,0) rotate(-18deg) scale(.9);
  }

  html.fx-enabled .fx-cinematic-section:not(.fx-in) .phone-front {
    opacity: 0;
    transform: translate3d(160px,-70px,0) rotate(16deg) scale(.9);
  }

  .fx-cinematic-section .cinematic-card,
  .fx-cinematic-section .cinematic-copy,
  .fx-cinematic-section .cinematic-ring,
  .fx-cinematic-section .cinematic-phone {
    transition:
      opacity .65s ease,
      transform 1s cubic-bezier(.16,1,.3,1);
  }

  .fx-cinematic-section.fx-in .cinematic-card,
  .fx-cinematic-section.fx-in .cinematic-copy {
    opacity: 1;
    transform: none;
  }

  .fx-cinematic-section.fx-in .cinematic-ring {
    opacity: 1;
    transform: translate(-50%,-50%) scale(1);
  }

  .fx-cinematic-section.fx-in .phone-back {
    opacity: .78;
    transform: rotate(-9deg);
    transition-delay: .17s;
  }

  .fx-cinematic-section.fx-in .phone-front {
    opacity: 1;
    transform: rotate(6deg);
    transition-delay: .27s;
  }

  .fx-cinematic-section.fx-in .cinematic-copy { transition-delay: .08s; }
  .fx-cinematic-section.fx-in .cinematic-ring { transition-delay: .18s; }

  /* ---------------- FAQ ---------------- */
  html.fx-enabled .fx-faq-section:not(.fx-in) .faq-copy {
    opacity: 0;
    transform: translate3d(-90px,0,0);
  }

  html.fx-enabled .fx-faq-section:not(.fx-in) .faq-item {
    opacity: 0;
    transform: translate3d(90px,0,0);
  }

  .fx-faq-section .faq-copy,
  .fx-faq-section .faq-item {
    transition:
      opacity .56s ease,
      transform .8s cubic-bezier(.16,1,.3,1);
  }

  .fx-faq-section.fx-in .faq-copy,
  .fx-faq-section.fx-in .faq-item {
    opacity: 1;
    transform: none;
  }

  .fx-faq-section.fx-in .faq-item:nth-child(1) { transition-delay: .10s; }
  .fx-faq-section.fx-in .faq-item:nth-child(2) { transition-delay: .19s; }
  .fx-faq-section.fx-in .faq-item:nth-child(3) { transition-delay: .28s; }
  .fx-faq-section.fx-in .faq-item:nth-child(4) { transition-delay: .37s; }

  /* ---------------- DOWNLOAD ---------------- */
  html.fx-enabled .fx-download-section:not(.fx-in) .download-card {
    opacity: 0;
    transform: translate3d(0,65px,0) scale(.95);
    clip-path: inset(12% 6% 12% 6% round 48px);
  }

  html.fx-enabled .fx-download-section:not(.fx-in) .download-copy {
    opacity: 0;
    transform: translate3d(-75px,0,0);
  }

  html.fx-enabled .fx-download-section:not(.fx-in) .download-visual {
    opacity: 0;
    transform: translate3d(85px,90px,0) scale(.92);
  }

  .fx-download-section .download-card,
  .fx-download-section .download-copy,
  .fx-download-section .download-visual {
    transition:
      opacity .62s ease,
      transform 1s cubic-bezier(.16,1,.3,1),
      clip-path 1s cubic-bezier(.16,1,.3,1);
  }

  .fx-download-section.fx-in .download-card {
    opacity: 1;
    transform: none;
    clip-path: inset(0 round 48px);
  }

  .fx-download-section.fx-in .download-copy,
  .fx-download-section.fx-in .download-visual {
    opacity: 1;
    transform: none;
  }

  .fx-download-section.fx-in .download-copy { transition-delay: .12s; }
  .fx-download-section.fx-in .download-visual { transition-delay: .23s; }

  /* ---------------- FOOTER ---------------- */
  html.fx-enabled .fx-footer-section:not(.fx-in) .footer-brand,
  html.fx-enabled .fx-footer-section:not(.fx-in) .footer-col,
  html.fx-enabled .fx-footer-section:not(.fx-in) .footer-wow,
  html.fx-enabled .fx-footer-section:not(.fx-in) .footer-bottom {
    opacity: 0;
    transform: translate3d(0,42px,0);
  }

  .fx-footer-section .footer-brand,
  .fx-footer-section .footer-col,
  .fx-footer-section .footer-wow,
  .fx-footer-section .footer-bottom {
    transition:
      opacity .5s ease,
      transform .72s cubic-bezier(.16,1,.3,1);
  }

  .fx-footer-section.fx-in .footer-brand,
  .fx-footer-section.fx-in .footer-col,
  .fx-footer-section.fx-in .footer-wow,
  .fx-footer-section.fx-in .footer-bottom {
    opacity: 1;
    transform: none;
  }

  .fx-footer-section.fx-in .footer-brand { transition-delay: .04s; }
  .fx-footer-section.fx-in .footer-col:nth-of-type(1) { transition-delay: .12s; }
  .fx-footer-section.fx-in .footer-col:nth-of-type(2) { transition-delay: .20s; }
  .fx-footer-section.fx-in .footer-wow { transition-delay: .28s; }
  .fx-footer-section.fx-in .footer-bottom { transition-delay: .36s; }
}

/* On mobile: same idea, shorter travel. */
@media (max-width:700px) and (prefers-reduced-motion:no-preference) {
  html.fx-enabled .fx-bento-section:not(.fx-in) .puzzle-left,
  html.fx-enabled .fx-bento-section:not(.fx-in) .puzzle-left-bottom {
    transform: translate3d(-70px,55px,0) scale(.95) !important;
  }

  html.fx-enabled .fx-bento-section:not(.fx-in) .puzzle-right {
    transform: translate3d(70px,55px,0) scale(.95) !important;
  }

  html.fx-enabled .fx-bento-section:not(.fx-in) .puzzle-top {
    transform: translate3d(0,-70px,0) scale(.95) !important;
  }

  html.fx-enabled .fx-bento-section:not(.fx-in) .puzzle-bottom {
    transform: translate3d(0,80px,0) scale(.95) !important;
  }

  html.fx-enabled .fx-product-stage:not(.fx-in) .product-stage-heading > div:first-child,
  html.fx-enabled .fx-product-stage:not(.fx-in) .product-stage-heading > p {
    transform: translate3d(0,40px,0);
  }
}

/* Reduced motion: always final, fully visible state. */
@media (prefers-reduced-motion:reduce) {
  .fx-section *,
  .fx-section *::before,
  .fx-section *::after {
    animation: none !important;
    transition: none !important;
  }
}
