html,
body{
  background:#050505 !important;
}

.index-page{
  min-height:100svh;
  color:#e8e8e8;
  background:
    radial-gradient(780px 460px at 18% 8%,rgba(154,135,185,.15),transparent 64%),
    radial-gradient(560px 360px at 88% 22%,rgba(208,208,208,.08),transparent 68%),
    linear-gradient(180deg,#050505 0%,#070707 48%,#050505 100%);
  overflow-x:hidden;
}

.index-page a{
  color:inherit;
  text-decoration:none;
}

.landing-header{
  position:sticky;
  top:12px;
  z-index:20;
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:18px;
  width:min(1180px,calc(100% - 32px));
  min-height:64px;
  margin:12px auto 0;
  padding:10px 12px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:12px;
  background:rgba(8,8,8,.78);
  box-shadow:0 18px 48px rgba(0,0,0,.38), inset 0 1px 0 rgba(255,255,255,.03);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
}

.landing-brand{
  display:inline-flex;
  align-items:baseline;
  gap:6px;
  min-width:0;
  padding:0 8px;
}

.landing-brand-mark{
  color:#f0f0f0;
  font-size:30px;
  font-style:italic;
  font-weight:900;
  line-height:.9;
}

.landing-brand-mark::after{
  content:"\00B0";
  margin-left:1px;
  color:#9f9f9f;
  font-size:.45em;
  vertical-align:super;
}

.landing-brand-text{
  color:#9f9f9f;
  font-size:17px;
  font-style:italic;
  font-weight:800;
}

.landing-nav{
  justify-self:center;
  display:flex;
  align-items:center;
  gap:6px;
  min-width:0;
  padding:4px;
  border:1px solid rgba(255,255,255,.06);
  border-radius:10px;
  background:#0a0a0a;
}

.landing-nav a,
.landing-header-cta,
.btn-main,
.btn-secondary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:40px;
  padding:0 14px;
  border-radius:8px;
  font-size:16px;
  font-style:italic;
  font-weight:850;
  line-height:1;
  transition:
    border-color .22s ease,
    background-color .22s ease,
    color .22s ease,
    transform .22s ease,
    box-shadow .22s ease;
}

.landing-nav a{
  color:#a8a8a8;
}

.landing-nav a:hover{
  color:#f0f0f0;
  background:#151515;
}

.landing-header-cta,
.btn-secondary{
  border:1px solid #2a2a2a;
  background:#141414;
  color:#e0e0e0;
}

.landing-header-cta:hover,
.btn-secondary:hover{
  border-color:#404040;
  background:#1c1c1c;
  color:#f5f5f5;
  transform:translateY(-1px);
}

.btn-main{
  position:relative;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.38);
  background:#d6d6d6;
  color:#171717;
  box-shadow:0 1px 0 rgba(255,255,255,.2) inset,0 12px 28px rgba(0,0,0,.32);
  isolation:isolate;
}

.btn-main::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  background:linear-gradient(120deg,transparent 0 34%,rgba(255,255,255,.34) 50%,transparent 66%);
  transform:translateX(-130%);
  transition:transform .62s cubic-bezier(.22,.8,.2,1);
}

.btn-main:hover{
  background:#eeeeee;
  transform:translateY(-1px);
}

.btn-main:hover::before{
  transform:translateX(130%);
}

.hero{
  position:relative;
  display:grid;
  align-items:center;
  min-height:calc(100svh - 88px);
  padding:clamp(74px,9vw,118px) max(18px,calc((100vw - 1180px)/2)) 44px;
  overflow:hidden;
}

.hero::after{
  content:"";
  position:absolute;
  inset:auto 0 0;
  height:140px;
  pointer-events:none;
  background:linear-gradient(180deg,transparent,#050505);
}

.hero-scene{
  position:absolute;
  inset:-90px -8% 0;
  pointer-events:none;
  opacity:.96;
  mask-image:linear-gradient(180deg,transparent 0,#000 10%,#000 84%,transparent 100%);
}

.hero-scene::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px);
  background-size:72px 72px;
  transform:perspective(840px) rotateX(58deg) translateY(-8%);
  transform-origin:50% 0;
  opacity:.38;
}

.scene-line{
  position:absolute;
  height:1px;
  border-radius:999px;
  background:linear-gradient(90deg,transparent,rgba(154,135,185,.75),rgba(235,235,235,.42),transparent);
  box-shadow:0 0 28px rgba(154,135,185,.25);
  transform-origin:center;
  animation:scene-drift 14s ease-in-out infinite alternate;
}

.scene-line-a{
  top:31%;
  left:14%;
  width:62%;
  transform:rotate(14deg);
}

.scene-line-b{
  top:52%;
  right:6%;
  width:58%;
  transform:rotate(-18deg);
  animation-delay:-5s;
}

.scene-line-c{
  bottom:21%;
  left:8%;
  width:74%;
  transform:rotate(5deg);
  animation-delay:-9s;
}

.scene-node{
  position:absolute;
  width:18px;
  height:18px;
  border:1px solid rgba(255,255,255,.22);
  border-radius:50%;
  background:#151515;
  box-shadow:
    0 0 0 8px rgba(154,135,185,.055),
    0 18px 36px rgba(0,0,0,.48),
    inset 0 1px 0 rgba(255,255,255,.12);
  animation:node-pulse 3.8s ease-in-out infinite alternate;
}

.scene-node-a{top:29%;left:23%}
.scene-node-b{top:45%;right:24%;animation-delay:-1.4s}
.scene-node-c{bottom:23%;left:42%;animation-delay:-2.2s}
.scene-node-d{top:20%;right:38%;animation-delay:-3s}

.scene-panel{
  position:absolute;
  border:1px solid rgba(255,255,255,.08);
  border-radius:12px;
  background:rgba(15,15,15,.72);
  box-shadow:0 24px 70px rgba(0,0,0,.42), inset 0 1px 0 rgba(255,255,255,.035);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  animation:panel-float 8s ease-in-out infinite alternate;
}

.scene-panel-chat{
  top:22%;
  right:13%;
  width:240px;
  padding:18px;
  display:grid;
  gap:11px;
}

.scene-panel-chat span{
  display:block;
  height:13px;
  border-radius:999px;
  background:#2c2c2c;
}

.scene-panel-chat span:nth-child(2){
  width:74%;
  margin-left:auto;
  background:rgba(154,135,185,.42);
}

.scene-panel-chat span:nth-child(3){
  width:58%;
}

.scene-panel-profile{
  bottom:18%;
  left:10%;
  width:230px;
  padding:16px;
  display:grid;
  grid-template-columns:54px 1fr;
  gap:10px 12px;
  animation-delay:-3s;
}

.scene-panel-profile i{
  grid-row:1 / span 2;
  width:54px;
  height:54px;
  border-radius:50%;
  background:linear-gradient(135deg,#d6d6d6,#9a87b9);
  box-shadow:0 12px 30px rgba(0,0,0,.38);
}

.scene-panel-profile span{
  height:13px;
  align-self:center;
  border-radius:999px;
  background:#2d2d2d;
}

.scene-panel-profile span:last-child{
  width:72%;
  background:#1f1f1f;
}

.scene-panel-match{
  right:25%;
  bottom:12%;
  width:156px;
  height:82px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  animation-delay:-5s;
}

.scene-panel-match b{
  width:30px;
  height:30px;
  border-radius:50%;
  background:#999;
}

.scene-panel-match b:nth-child(2){
  background:#9a87b9;
}

.scene-panel-match b:nth-child(3){
  background:#d6d6d6;
}

.hero-copy{
  position:relative;
  z-index:2;
  width:min(760px,100%);
}

.hero-kicker,
.section-head p,
.cta-band p{
  margin:0;
  color:#9f9f9f;
  font-size:17px;
  font-style:italic;
  font-weight:850;
  line-height:1.1;
}

.hero h1{
  margin:10px 0 0;
  color:#f5f5f5;
  font-size:clamp(66px,13vw,162px);
  font-style:italic;
  font-weight:900;
  letter-spacing:0;
  line-height:.82;
  text-shadow:0 24px 70px rgba(0,0,0,.58);
}

.hero-lead{
  width:min(620px,100%);
  margin:26px 0 0;
  color:#b8b8b8;
  font-size:clamp(20px,2.4vw,28px);
  font-weight:650;
  line-height:1.18;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:28px;
}

.hero-actions .btn-main,
.hero-actions .btn-secondary{
  min-height:48px;
  padding:0 20px;
  font-size:18px;
}

.hero-status{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:10px;
  width:min(880px,100%);
  margin-top:clamp(46px,8vw,92px);
}

.hero-status div,
.bento-card,
.flow-list article,
.cta-band{
  border:1px solid rgba(255,255,255,.08);
  border-radius:12px;
  background:rgba(16,16,16,.78);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.035);
}

.hero-status div{
  min-height:130px;
  padding:18px;
}

.hero-status span,
.card-index,
.flow-list span{
  color:#9a87b9;
  font-size:15px;
  font-style:italic;
  font-weight:900;
  line-height:1;
}

.hero-status strong{
  display:block;
  margin-top:22px;
  color:#ededed;
  font-size:26px;
  font-style:italic;
  font-weight:900;
  line-height:1;
}

.hero-status p,
.bento-card p,
.flow-list p{
  margin:8px 0 0;
  color:#9b9b9b;
  font-size:16px;
  font-weight:650;
  line-height:1.35;
}

.section-block{
  width:min(1180px,calc(100% - 32px));
  margin:0 auto;
  padding:88px 0 0;
}

.section-head{
  display:grid;
  gap:10px;
  margin-bottom:22px;
}

.section-head h2,
.cta-band h2{
  max-width:760px;
  margin:0;
  color:#f0f0f0;
  font-size:clamp(34px,6vw,66px);
  font-style:italic;
  font-weight:900;
  letter-spacing:0;
  line-height:.94;
}

.bento-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr .85fr;
  gap:12px;
}

.bento-card{
  position:relative;
  min-height:220px;
  padding:22px;
  overflow:hidden;
}

.bento-card::after{
  content:"";
  position:absolute;
  inset:auto -20% -45% 10%;
  height:180px;
  pointer-events:none;
  background:radial-gradient(closest-side,rgba(154,135,185,.14),transparent 72%);
}

.bento-card h3,
.flow-list h3{
  margin:22px 0 0;
  color:#ededed;
  font-size:30px;
  font-style:italic;
  font-weight:900;
  line-height:1;
}

.bento-card-large{
  grid-row:span 2;
  min-height:452px;
}

.bento-card-wide{
  grid-column:span 2;
  min-height:220px;
}

.mini-chat{
  position:absolute;
  left:22px;
  right:22px;
  bottom:22px;
  display:grid;
  gap:10px;
}

.mini-chat i{
  display:block;
  height:16px;
  border-radius:999px;
  background:#262626;
}

.mini-chat i:nth-child(2){
  width:72%;
  margin-left:auto;
  background:rgba(154,135,185,.48);
}

.mini-chat i:nth-child(3){
  width:54%;
}

.flow-list{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
}

.flow-list article{
  min-height:238px;
  padding:22px;
}

.flow-list span{
  display:grid;
  place-items:center;
  width:42px;
  height:42px;
  border-radius:50%;
  border:1px solid rgba(154,135,185,.36);
  background:rgba(154,135,185,.12);
}

.cta-band{
  display:grid;
  grid-template-columns:1fr auto;
  align-items:center;
  gap:22px;
  width:min(1180px,calc(100% - 32px));
  margin:88px auto 0;
  padding:26px;
  background:
    radial-gradient(520px 220px at 16% 22%,rgba(154,135,185,.16),transparent 66%),
    #101010;
}

.cta-band .btn-main{
  min-height:48px;
  padding:0 22px;
  font-size:18px;
}

.landing-footer{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  width:min(1180px,calc(100% - 32px));
  margin:32px auto 0;
  padding:28px 0 34px;
  color:#8f8f8f;
}

.landing-footer div{
  display:grid;
  gap:3px;
}

.landing-footer strong{
  color:#e8e8e8;
  font-size:24px;
  font-style:italic;
  font-weight:900;
  line-height:1;
}

.landing-footer nav{
  display:flex;
  flex-wrap:wrap;
  justify-content:flex-end;
  gap:14px;
}

.landing-footer a{
  color:#9f9f9f;
  font-size:15px;
  font-weight:750;
}

.landing-footer a:hover{
  color:#f0f0f0;
  text-decoration:underline;
}

@media (max-width:900px){
  .landing-header{
    grid-template-columns:1fr auto;
  }

  .landing-nav{
    display:none;
  }

  .hero{
    min-height:auto;
    padding-top:82px;
  }

  .scene-panel-chat{
    right:-18px;
  }

  .scene-panel-profile{
    left:-34px;
  }

  .hero-status,
  .bento-grid,
  .flow-list,
  .cta-band{
    grid-template-columns:1fr;
  }

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

  .cta-band{
    align-items:start;
  }

  .cta-band .btn-main{
    justify-self:start;
  }
}

@media (max-width:560px){
  .landing-header{
    width:calc(100% - 20px);
    top:8px;
    gap:8px;
  }

  .landing-header-cta{
    min-height:38px;
    padding:0 10px;
    font-size:15px;
  }

  .landing-brand-text{
    display:none;
  }

  .hero{
    padding-left:12px;
    padding-right:12px;
  }

  .hero h1{
    font-size:clamp(62px,23vw,112px);
  }

  .hero-lead{
    font-size:20px;
  }

  .hero-actions{
    display:grid;
  }

  .hero-actions .btn-main,
  .hero-actions .btn-secondary{
    width:100%;
  }

  .scene-panel-chat,
  .scene-panel-profile,
  .scene-panel-match{
    opacity:.34;
    transform:scale(.82);
  }

  .section-block,
  .cta-band,
  .landing-footer{
    width:calc(100% - 24px);
  }

  .landing-footer{
    align-items:flex-start;
    flex-direction:column;
  }

  .landing-footer nav{
    justify-content:flex-start;
  }
}

@media (prefers-reduced-motion:reduce){
  .scene-line,
  .scene-node,
  .scene-panel{
    animation:none;
  }

  .btn-main::before{
    transition:none;
  }
}

@keyframes scene-drift{
  from{
    opacity:.36;
    filter:blur(.2px);
  }
  to{
    opacity:.82;
    filter:blur(0);
  }
}

@keyframes node-pulse{
  from{
    transform:scale(.92);
    opacity:.68;
  }
  to{
    transform:scale(1.08);
    opacity:1;
  }
}

@keyframes panel-float{
  from{
    transform:translateY(0);
  }
  to{
    transform:translateY(-14px);
  }
}

/* ===== Redesign pass 2: compact hero + interactive signal field ===== */
.signal-canvas{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  opacity:.78;
  mix-blend-mode:screen;
}

.hero{
  min-height:min(760px,calc(100svh - 92px));
  align-content:center;
  padding-top:clamp(46px,5.4vw,72px);
  padding-bottom:32px;
}

.hero::after{
  height:92px;
}

.hero-scene{
  inset:0 -5% 0;
  opacity:.9;
  mask-image:linear-gradient(180deg,#000 0,#000 76%,transparent 100%);
}

.hero-scene::before{
  background-size:84px 84px;
  opacity:.22;
}

.scene-line{
  display:none;
}

.scene-node{
  opacity:.72;
}

.scene-panel{
  border-color:rgba(255,255,255,.075);
  background:rgba(15,15,15,.62);
}

.scene-panel-chat{
  top:24%;
  right:7%;
  width:280px;
}

.scene-panel-profile{
  left:3%;
  bottom:6%;
  width:250px;
}

.scene-panel-match{
  right:13%;
  bottom:5%;
}

.hero-copy{
  max-width:720px;
}

.hero h1{
  width:min(860px,100%);
  font-size:clamp(72px,9.2vw,126px);
  line-height:.84;
}

.hero h1 .kinetic-letter,
.hero h1 .kinetic-space{
  display:inline-block;
}

.hero h1 .kinetic-letter{
  transform:translate3d(0,var(--kinetic-y,0),0) rotate(var(--kinetic-r,0deg));
  transition:transform .42s cubic-bezier(.22,.8,.2,1), color .42s ease;
}

.hero h1 .kinetic-space{
  width:.26em;
}

.index-page.is-kinetic .hero h1 .kinetic-letter{
  animation:kinetic-title 1.7s cubic-bezier(.16,1,.3,1) both;
  animation-delay:calc(var(--i) * 34ms);
}

.hero-lead{
  max-width:560px;
  margin-top:20px;
  font-size:clamp(20px,1.9vw,25px);
}

.hero-actions{
  margin-top:24px;
}

.hero-status{
  width:min(980px,100%);
  gap:12px;
  margin-top:38px;
}

.hero-status a{
  min-height:122px;
  padding:18px;
  color:inherit;
  border:1px solid rgba(255,255,255,.08);
  border-radius:12px;
  background:rgba(16,16,16,.78);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.035);
  transition:transform .28s cubic-bezier(.22,.8,.2,1), border-color .28s ease, background-color .28s ease;
}

.hero-status a:hover{
  border-color:rgba(154,135,185,.34);
  background:rgba(20,20,20,.9);
  transform:translateY(-5px);
}

.hero-status div{
  min-height:0;
}

.section-block{
  scroll-margin-top:112px;
  padding-top:64px;
}

#features{
  padding-top:72px;
}

.section-head h2,
.cta-band h2{
  max-width:720px;
  font-size:clamp(34px,5.4vw,58px);
}

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

.bento-card-large{
  min-height:420px;
}

.flow-list article{
  min-height:218px;
}

.cta-band{
  margin-top:64px;
}

@supports (animation-timeline:view()){
  .bento-card,
  .flow-list article,
  .cta-band{
    animation:card-rise both;
    animation-timeline:view();
    animation-range:entry 12% cover 34%;
  }

  .scene-panel{
    animation:
      panel-float 8s ease-in-out infinite alternate,
      panel-scroll both linear;
    animation-timeline:auto, scroll(root);
  }
}

@media (max-width:900px){
  .hero{
    min-height:auto;
    padding-top:72px;
  }

  .hero-status{
    margin-top:32px;
  }

  .scene-panel-chat{
    right:-52px;
  }

  .scene-panel-profile{
    left:-72px;
  }
}

@media (max-width:560px){
  .hero h1{
    font-size:clamp(64px,21vw,100px);
  }

  .hero-status a{
    min-height:112px;
  }

  .section-block{
    padding-top:56px;
  }
}

@media (prefers-reduced-motion:reduce){
  .hero h1 .kinetic-letter,
  .index-page.is-kinetic .hero h1 .kinetic-letter,
  .bento-card,
  .flow-list article,
  .cta-band{
    animation:none;
    transform:none;
  }
}

@keyframes kinetic-title{
  0%{
    opacity:0;
    transform:translate3d(0,38px,0) rotate(-2.5deg);
  }
  100%{
    opacity:1;
    transform:translate3d(0,0,0) rotate(0deg);
  }
}

@keyframes card-rise{
  from{
    opacity:.28;
    transform:translateY(28px) scale(.985);
  }
  to{
    opacity:1;
    transform:translateY(0) scale(1);
  }
}

@keyframes panel-scroll{
  from{
    translate:0 0;
  }
  to{
    translate:0 54px;
  }
}

/* ===== Redesign pass 3: visible CTAs + scroll reactive atmosphere ===== */
.index-page{
  --pointer-x:50vw;
  --pointer-y:34vh;
  --scroll-px:0px;
  --signal-alpha:.18;
  position:relative;
  overflow-x:clip;
}

.index-page::before,
.index-page::after{
  content:"";
  position:fixed;
  inset:0;
  z-index:0;
  pointer-events:none;
}

.index-page::before{
  background:
    radial-gradient(360px 260px at var(--pointer-x) var(--pointer-y),rgba(216,216,216,.12),transparent 70%),
    radial-gradient(620px 420px at calc(var(--pointer-x) - 12vw) calc(var(--pointer-y) + 8vh),rgba(154,135,185,.16),transparent 72%),
    linear-gradient(115deg,transparent 0 41%,rgba(255,255,255,.035) 41.2%,transparent 41.5% 100%);
  opacity:.86;
  mix-blend-mode:screen;
}

.index-page::after{
  inset:-20% -10%;
  background:
    linear-gradient(90deg,rgba(255,255,255,.018) 1px,transparent 1px),
    linear-gradient(rgba(255,255,255,.014) 1px,transparent 1px),
    radial-gradient(circle at 12% 24%,rgba(154,135,185,var(--signal-alpha)),transparent 15%),
    radial-gradient(circle at 84% 74%,rgba(214,214,214,.08),transparent 18%);
  background-size:118px 118px,118px 118px,100% 100%,100% 100%;
  opacity:.72;
  transform:translate3d(0,calc(var(--scroll-px) * -.035),0);
}

main,
.landing-footer{
  position:relative;
  z-index:1;
}

.landing-header{
  z-index:20;
  animation:header-arrive .72s cubic-bezier(.16,1,.3,1) both;
}

.index-page .landing-header-cta,
.index-page .btn-secondary,
.index-page .hero-status a{
  color:#e8e8e8;
}

.index-page .btn-main,
.index-page .cta-band .btn-main,
.index-page .hero-actions .btn-main{
  color:#171717;
  text-shadow:none;
}

.index-page .btn-main:hover,
.index-page .cta-band .btn-main:hover,
.index-page .hero-actions .btn-main:hover{
  color:#101010;
}

.landing-nav a,
.landing-header-cta,
.btn-main,
.btn-secondary,
.hero-status a,
.bento-card,
.flow-list article,
.cta-band{
  will-change:translate,transform,box-shadow,border-color;
}

.landing-nav a:hover,
.landing-header-cta:hover,
.btn-main:hover,
.btn-secondary:hover{
  box-shadow:0 14px 34px rgba(0,0,0,.38),0 0 0 1px rgba(255,255,255,.03) inset;
}

.bento-card,
.flow-list article,
.cta-band{
  position:relative;
  overflow:hidden;
  transition:
    translate .32s cubic-bezier(.22,.8,.2,1),
    border-color .32s ease,
    box-shadow .32s ease,
    background-color .32s ease;
}

.bento-card::before,
.flow-list article::before,
.cta-band::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(115deg,transparent 0 42%,rgba(255,255,255,.055) 50%,transparent 58% 100%),
    radial-gradient(380px 220px at 72% 118%,rgba(154,135,185,.13),transparent 70%);
  opacity:.42;
  transform:translateX(calc(var(--scroll-px) * -.018));
}

.bento-card:hover,
.flow-list article:hover,
.cta-band:hover{
  translate:0 -6px;
  border-color:rgba(255,255,255,.16);
  background-color:rgba(18,18,18,.9);
  box-shadow:0 24px 70px rgba(0,0,0,.44),inset 0 1px 0 rgba(255,255,255,.045);
}

.section-block{
  position:relative;
}

.section-block::before{
  content:"";
  position:absolute;
  top:34px;
  left:-6%;
  width:112%;
  height:1px;
  pointer-events:none;
  background:linear-gradient(90deg,transparent,rgba(154,135,185,.3),rgba(238,238,238,.12),transparent);
  opacity:.52;
  transform:translateX(calc(var(--scroll-px) * -.025));
}

.flow-section::after{
  content:"";
  position:absolute;
  right:4%;
  top:18%;
  width:168px;
  height:168px;
  border:1px solid rgba(154,135,185,.14);
  border-radius:50%;
  pointer-events:none;
  background:radial-gradient(circle,rgba(232,232,232,.08) 0 6px,transparent 7px);
  box-shadow:0 0 52px rgba(154,135,185,.08);
  transform:translateY(calc(var(--scroll-px) * -.045));
}

.scene-panel-signal{
  right:12%;
  bottom:4%;
  width:148px;
  height:148px;
  display:grid;
  place-items:center;
  gap:0;
  overflow:hidden;
  border-radius:50%;
  background:
    radial-gradient(circle at 50% 50%,rgba(216,216,216,.2) 0 4px,transparent 5px),
    radial-gradient(circle,rgba(154,135,185,.2),transparent 62%),
    rgba(10,10,10,.58);
  animation-delay:-5s;
}

.scene-panel-signal .signal-ring,
.scene-panel-signal .signal-arc,
.scene-panel-signal i{
  position:absolute;
  display:block;
}

.scene-panel-signal .signal-ring{
  inset:19px;
  border:1px solid rgba(255,255,255,.13);
  border-radius:50%;
  box-shadow:0 0 32px rgba(154,135,185,.16) inset;
}

.scene-panel-signal .signal-arc{
  inset:30px;
  border:1px solid transparent;
  border-radius:50%;
  animation:signal-spin 10s linear infinite;
}

.scene-panel-signal .signal-arc-one{
  border-top-color:rgba(236,236,236,.46);
  border-right-color:rgba(154,135,185,.26);
}

.scene-panel-signal .signal-arc-two{
  inset:44px;
  border-bottom-color:rgba(154,135,185,.46);
  border-left-color:rgba(236,236,236,.2);
  animation-duration:7s;
  animation-direction:reverse;
}

.scene-panel-signal i{
  width:12px;
  height:12px;
  border-radius:50%;
  background:#efefef;
  box-shadow:0 0 22px rgba(255,255,255,.46),0 0 46px rgba(154,135,185,.34);
}

@media (max-width:900px){
  .scene-panel-signal{
    right:-34px;
    bottom:12%;
    width:112px;
    height:112px;
  }

  .flow-section::after{
    display:none;
  }
}

@media (max-width:560px){
  .index-page::after{
    background-size:86px 86px,86px 86px,100% 100%,100% 100%;
  }

  .scene-panel-signal{
    right:-42px;
    width:96px;
    height:96px;
  }
}

@media (prefers-reduced-motion:reduce){
  .landing-header,
  .scene-panel-signal .signal-arc{
    animation:none;
  }

  .index-page::after,
  .bento-card::before,
  .flow-list article::before,
  .cta-band::before,
  .section-block::before,
  .flow-section::after{
    transform:none;
  }
}

@keyframes header-arrive{
  from{
    opacity:1;
    box-shadow:0 8px 22px rgba(0,0,0,.28),inset 0 1px 0 rgba(255,255,255,.02);
  }
  to{
    opacity:1;
    box-shadow:0 18px 48px rgba(0,0,0,.38),inset 0 1px 0 rgba(255,255,255,.03);
  }
}

@keyframes signal-spin{
  to{
    transform:rotate(1turn);
  }
}
