:root{
  --bg:#06121f;
  --bg-2:#0a2342;
  --text:#f4f9ff;
  --muted:#a9bad0;
  --line:rgba(255,255,255,.12);
  --card:rgba(255,255,255,.07);
  --blue:#3ca7ff;
  --blue-2:#7ce3ff;
  --dark:#07111f;
  --radius:28px;
  --shadow:0 30px 80px rgba(0,0,0,.35);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  background:var(--bg);
  color:var(--text);
  overflow-x:hidden;
}
body.menu-open{overflow:hidden}
a{color:inherit;text-decoration:none}
.site-bg{
  position:fixed;
  inset:0;
  z-index:-2;
  background:
    radial-gradient(circle at 12% 15%, rgba(60,167,255,.25), transparent 30%),
    radial-gradient(circle at 80% 10%, rgba(124,227,255,.18), transparent 28%),
    linear-gradient(145deg, #06101d 0%, #071a31 50%, #0a2748 100%);
}
.site-bg:after{
  content:"";
  position:absolute;
  inset:0;
  background-image:linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px);
  background-size:44px 44px;
  mask-image:linear-gradient(to bottom,rgba(0,0,0,.85),rgba(0,0,0,.25));
}

.header{
  position:sticky;
  top:0;
  z-index:50;
  padding:18px clamp(20px,4vw,56px);
  backdrop-filter: blur(18px);
  background:rgba(6,18,31,.72);
  border-bottom:1px solid var(--line);
}
.nav{
  max-width:1180px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.brand{
  display:flex;
  align-items:center;
  min-width:max-content;
}
.brand-mark{
  width:44px;height:44px;border-radius:14px;
  display:grid;place-items:center;
  background:linear-gradient(135deg,var(--blue),var(--blue-2));
  color:#06121f;
  font-weight:900;
  box-shadow:0 12px 40px rgba(60,167,255,.25);
}
.brand strong{display:block;font-size:18px;letter-spacing:-.04em}
.brand small{display:block;color:var(--muted);font-size:11px;text-transform:uppercase;letter-spacing:.1em;margin-top:2px}
.brand-logo{height:54px;width:auto;display:block;object-fit:contain}
.nav-links{display:flex;align-items:center;gap:26px;color:var(--muted);font-size:14px;font-weight:600}
.nav-links a:hover{color:var(--text)}
.nav-cta{
  color:#07111f!important;
  background:var(--blue);
  padding:11px 17px;
  border-radius:999px;
}

.menu-btn{display:none;background:none;border:0;width:42px;height:42px;position:relative}
.menu-btn span{display:block;height:2px;background:var(--text);margin:7px 0;border-radius:9px}

.section{
  max-width:1180px;
  margin:0 auto;
  padding:96px clamp(20px,4vw,56px);
}
.compact{padding-top:36px;padding-bottom:36px}
.hero{
  min-height:calc(100vh - 82px);
  display:grid;
  grid-template-columns:minmax(0,1.1fr) minmax(320px,.9fr);
  gap:48px;
  align-items:center;
}
.eyebrow{
  color:var(--blue);
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.15em;
  font-size:12px;
  margin:0 0 20px;
}
h1,h2,h3,p{margin-top:0}
h1{
  font-size:clamp(46px,7vw,88px);
  line-height:.92;
  letter-spacing:-.08em;
  margin-bottom:28px;
}
h2{
  font-size:clamp(34px,4vw,58px);
  line-height:.98;
  letter-spacing:-.06em;
  margin-bottom:22px;
}
h3{font-size:21px;letter-spacing:-.03em}
.lead,.section-text,.opportunity-copy p,.founder p,.contact p{
  color:var(--muted);
  font-size:18px;
  line-height:1.7;
}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:34px}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  min-height:50px;padding:0 22px;border-radius:999px;
  border:1px solid var(--line);
  font-weight:800;
  cursor:pointer;
}
.btn.primary{background:var(--blue);color:#06121f;border-color:var(--blue)}
.btn.secondary{background:rgba(255,255,255,.06);color:var(--text)}
.btn.whatsapp{margin-top:26px;background:rgba(255,255,255,.06);color:var(--text);border-color:rgba(255,255,255,.18)}
.btn.whatsapp:before{content:'↗';margin-right:9px;color:var(--blue);font-weight:900}
.btn:hover{transform:translateY(-2px)}

.hero-card,.service-card,.opportunity-panel,.founder-card,.contact-form,.step{
  background:linear-gradient(180deg,rgba(255,255,255,.1),rgba(255,255,255,.045));
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.hero-card{
  padding:32px;
  min-height:460px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  transform:rotate(1.5deg);
}
.card-top{display:flex;align-items:center;gap:10px;color:var(--muted);font-weight:700;font-size:13px}
.live-dot{width:10px;height:10px;border-radius:50%;background:var(--blue);box-shadow:0 0 0 8px rgba(60,167,255,.12)}
.hero-card h2{font-size:46px;margin:40px 0 14px}
.hero-card p{color:var(--muted);line-height:1.6}
.metric-grid{
  display:grid;grid-template-columns:1fr 1fr;gap:14px;margin:24px 0;
}
.metric-grid div{
  border:1px solid var(--line);border-radius:20px;padding:18px;background:rgba(0,0,0,.12)
}
.metric-grid strong{display:block;color:var(--blue);font-size:22px;margin-bottom:7px}
.metric-grid span{color:var(--muted);font-size:13px}
.fake-chart{height:120px;display:flex;align-items:end;gap:13px;padding:14px;border:1px solid var(--line);border-radius:22px}
.fake-chart span{flex:1;border-radius:999px;background:linear-gradient(var(--blue),rgba(124,227,255,.2))}
.fake-chart span:nth-child(1){height:38%}
.fake-chart span:nth-child(2){height:64%}
.fake-chart span:nth-child(3){height:48%}
.fake-chart span:nth-child(4){height:82%}
.fake-chart span:nth-child(5){height:100%}

.logos{text-align:center;border-top:1px solid var(--line);border-bottom:1px solid var(--line)}
.logos p{color:var(--muted);font-weight:700}
.logo-marquee{
  overflow:hidden;
  width:100%;
  margin-top:22px;
  mask-image:linear-gradient(90deg,transparent,black 10%,black 90%,transparent);
}
.logo-track{
  display:flex;
  align-items:center;
  gap:28px;
  width:max-content;
  animation:logoSlide 34s linear infinite;
}
.logo-track img{
  height:42px;
  width:auto;
  max-width:180px;
  object-fit:contain;
  background:rgba(255,255,255,.92);
  border-radius:14px;
  padding:10px 18px;
  border:1px solid var(--line);
}
@keyframes logoSlide{
  from{transform:translateX(-50%)}
  to{transform:translateX(0)}
}

.split{
  display:grid;
  grid-template-columns:.9fr 1fr;
  gap:54px;
  align-items:start;
}
.cards{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.service-card{padding:26px;min-height:250px}
.service-card span,.step span{
  display:inline-grid;place-items:center;
  width:42px;height:42px;border-radius:14px;
  background:rgba(60,167,255,.14);
  color:var(--blue);
  font-weight:900;
  margin-bottom:28px;
}
.service-card p,.step p{color:var(--muted);line-height:1.6}

.opportunity{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:38px;
  align-items:center;
}
.opportunity-panel{padding:28px;display:grid;grid-template-columns:1fr 1fr;gap:20px;align-items:center}
.shirt{
  height:300px;
  border-radius:36px 36px 22px 22px;
  background:linear-gradient(135deg,var(--blue),var(--blue-2));
  position:relative;
  color:#06121f;
  display:grid;
  place-items:center;
  font-weight:900;
  letter-spacing:.08em;
  clip-path:polygon(22% 0,38% 0,50% 14%,62% 0,78% 0,100% 20%,88% 39%,82% 30%,82% 100%,18% 100%,18% 30%,12% 39%,0 20%);
}
.neck{position:absolute;top:0;width:70px;height:44px;border-radius:0 0 40px 40px;background:#07111f}
.sponsor{background:#06121f;color:var(--blue);padding:16px 22px;border-radius:12px}
.panel-note{color:var(--muted)}
.panel-note strong{color:var(--text)}
.panel-note li{margin:9px 0}

.process{text-align:center}
.steps{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  margin-top:38px;
  text-align:left;
}
.step{padding:24px}

.founder{
  display:grid;
  grid-template-columns:1fr 360px;
  gap:38px;
  align-items:center;
}
.founder-card{padding:18px;display:grid;grid-template-columns:140px 1fr;gap:22px;align-items:center}
.founder-photo{
  aspect-ratio:1/1;
  border-radius:22px;
  background:
    linear-gradient(135deg,rgba(60,167,255,.18),rgba(124,227,255,.08)),
    rgba(255,255,255,.06);
  border:1px dashed rgba(255,255,255,.28);
  display:grid;
  place-items:center;
  overflow:hidden;
}
.founder-photo span{color:var(--muted);font-weight:900;text-transform:uppercase;letter-spacing:.12em;font-size:12px}
.founder-photo img{width:100%;height:100%;object-fit:cover}
.founder-info span{color:var(--blue);font-weight:900;letter-spacing:.15em;font-size:12px}
.founder-info strong{display:block;font-size:34px;letter-spacing:-.05em;margin:16px 0 10px}
.founder-info small{color:var(--muted);font-weight:800;text-transform:uppercase;letter-spacing:.1em}

.contact{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:42px;
  align-items:start;
}
.contact-form{padding:28px;display:grid;gap:16px}
label{display:grid;gap:8px;color:var(--muted);font-weight:700;font-size:14px}
input,textarea{
  width:100%;
  background:rgba(0,0,0,.2);
  border:1px solid var(--line);
  border-radius:16px;
  padding:15px 16px;
  color:var(--text);
  font:inherit;
  outline:none;
}
input:focus,textarea:focus{border-color:rgba(60,167,255,.7)}
textarea{resize:vertical}

.footer{
  max-width:1180px;
  margin:0 auto;
  padding:28px clamp(20px,4vw,56px) 46px;
  color:var(--muted);
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-top:1px solid var(--line);
}
.footer a{font-weight:800;color:var(--blue)}

@media(max-width:960px){
  .hero,.split,.opportunity,.founder,.contact{grid-template-columns:1fr}
  .cards,.steps{grid-template-columns:repeat(2,1fr)}
  .hero{min-height:auto;padding-top:70px}
  .hero-card{transform:none}
}
@media(max-width:720px){
  .brand-logo{height:46px}

  .founder-card{grid-template-columns:1fr}
  .founder-photo{max-width:220px;width:100%}
  .logo-track img{height:38px}

  .menu-btn{display:block;z-index:60}
  .nav-links{
    position:fixed;
    inset:72px 16px auto 16px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    padding:20px;
    background:#07111f;
    border:1px solid var(--line);
    border-radius:22px;
  }
  .menu-open .nav-links{display:flex}
  .cards,.steps,.opportunity-panel{grid-template-columns:1fr}
  .section{padding-top:68px;padding-bottom:68px}
  h1{font-size:46px}
  h2{font-size:36px}
  .footer{flex-direction:column;align-items:flex-start;gap:14px}
}


.b3b-explain{
  display:grid;
  grid-template-columns:300px 1fr;
  gap:44px;
  align-items:center;
}
.b3b-badge{
  aspect-ratio:1/1;
  border-radius:40px;
  display:grid;
  place-items:center;
  font-size:72px;
  font-weight:950;
  letter-spacing:-.08em;
  color:#07111f;
  background:linear-gradient(135deg,var(--blue),var(--blue-2));
  box-shadow:var(--shadow);
}
@media(max-width:960px){
  .b3b-explain{grid-template-columns:1fr}
  .b3b-badge{max-width:260px}
}


.hero-visual-stack{
  position:relative;
  min-height:620px;
}
.hero-image-card{
  position:absolute;
  top:0;
  right:0;
  width:86%;
  height:360px;
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}
.hero-image-card img,
.visual-card img,
.opportunity-photo-strip img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.hero-image-card:after,
.visual-card:after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(6,18,31,.05),rgba(6,18,31,.82));
}
.image-overlay{
  position:absolute;
  left:24px;
  right:24px;
  bottom:22px;
  z-index:2;
}
.image-overlay span,
.visual-card span{
  display:block;
  color:var(--blue-2);
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:11px;
  margin-bottom:8px;
}
.image-overlay strong,
.visual-card strong{
  display:block;
  color:var(--text);
  font-size:22px;
  line-height:1.1;
  letter-spacing:-.04em;
}
.floating-card{
  position:absolute;
  left:0;
  bottom:0;
  width:78%;
  min-height:430px;
  z-index:3;
}

.wide-parallax{
  min-height:560px;
  margin:40px 0;
  display:grid;
  place-items:center;
  padding:90px clamp(20px,4vw,56px);
  position:relative;
  overflow:hidden;
  background-image:
    linear-gradient(90deg,rgba(6,18,31,.90),rgba(6,18,31,.48)),
    var(--parallax-img);
  background-size:cover;
  background-position:center;
  background-attachment:fixed;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.wide-parallax-content{
  width:min(1180px,100%);
  margin:0 auto;
}
.wide-parallax-content h2{
  max-width:760px;
}
.wide-parallax-content p:not(.eyebrow){
  max-width:640px;
  color:var(--muted);
  font-size:18px;
  line-height:1.7;
}

.visual-heading{
  max-width:860px;
  margin-bottom:34px;
}
.visual-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  grid-template-rows:280px 280px;
  gap:20px;
}
.visual-card{
  position:relative;
  overflow:hidden;
  border-radius:var(--radius);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  min-height:280px;
}
.visual-card.large{
  grid-row:span 2;
}
.visual-card div{
  position:absolute;
  left:24px;
  right:24px;
  bottom:22px;
  z-index:2;
}
.visual-card.large strong{
  font-size:34px;
}
.opportunity-photo-strip{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-top:18px;
}
.opportunity-photo-strip img{
  height:90px;
  border-radius:16px;
  border:1px solid var(--line);
}

@media(max-width:960px){
  .hero-visual-stack{min-height:760px}
  .hero-image-card{width:100%;height:330px}
  .floating-card{width:92%}
  .wide-parallax{background-attachment:scroll}
  .visual-grid{
    grid-template-columns:1fr;
    grid-template-rows:auto;
  }
  .visual-card.large{grid-row:auto}
}
@media(max-width:720px){
  .hero-visual-stack{min-height:auto;display:grid;gap:18px}
  .hero-image-card,
  .floating-card{
    position:relative;
    width:100%;
    inset:auto;
  }
  .hero-image-card{height:270px}
  .wide-parallax{
    min-height:460px;
    margin:20px 0;
  }
  .visual-card.large strong{font-size:24px}
}


.contact-simple{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:42px;
  align-items:center;
}
.contact-intro p:not(.eyebrow){
  color:var(--muted);
  font-size:18px;
  line-height:1.7;
}
.contact-options{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}
.contact-option{
  min-height:260px;
  padding:30px;
  border-radius:var(--radius);
  border:1px solid var(--line);
  background:linear-gradient(180deg,rgba(255,255,255,.10),rgba(255,255,255,.045));
  box-shadow:var(--shadow);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:28px;
  transition:transform .22s ease, border-color .22s ease, background .22s ease;
}
.contact-option:hover{
  transform:translateY(-6px);
  border-color:rgba(60,167,255,.55);
  background:linear-gradient(180deg,rgba(60,167,255,.16),rgba(255,255,255,.055));
}
.contact-icon{
  width:96px;
  height:96px;
  border-radius:28px;
  display:grid;
  place-items:center;
  background:rgba(255,255,255,.08);
  border:1px solid var(--line);
}
.mail-icon{
  background:linear-gradient(135deg,var(--blue),var(--blue-2));
  color:#07111f;
}
.mail-icon span{
  font-size:48px;
  line-height:1;
  font-weight:950;
}
.whatsapp-icon img{
  width:70px;
  height:70px;
  object-fit:contain;
  display:block;
}
.contact-option strong{
  display:block;
  font-size:24px;
  letter-spacing:-.04em;
  margin-bottom:8px;
}
.contact-option small{
  display:block;
  color:var(--muted);
  font-size:14px;
  line-height:1.4;
  word-break:break-word;
}

@media(max-width:960px){
  .contact-simple{
    grid-template-columns:1fr;
  }
}
@media(max-width:720px){
  .contact-options{
    grid-template-columns:1fr;
  }
  .contact-option{
    min-height:220px;
  }
}


/* Contact section override: no form */
.contact-simple.contact{
  grid-template-columns:.95fr 1.05fr;
}
@media(max-width:960px){
  .contact-simple.contact{
    grid-template-columns:1fr;
  }
}


/* Clean hero card: removes image overlap from the first fold */
.clean-hero-stack{
  min-height:auto;
  display:flex;
  align-items:center;
  justify-content:center;
}
.clean-hero-card{
  position:relative;
  inset:auto;
  width:100%;
  max-width:480px;
  min-height:500px;
  transform:none;
  z-index:1;
}
.clean-hero-card h2{
  font-size:52px;
}
.clean-hero-card p{
  font-size:17px;
  line-height:1.65;
}
@media(max-width:960px){
  .clean-hero-stack{
    min-height:auto;
  }
  .clean-hero-card{
    max-width:none;
    min-height:430px;
  }
}
@media(max-width:720px){
  .clean-hero-card{
    min-height:auto;
  }
}


/* Sebastián portrait */
.founder-photo{
  background:rgba(255,255,255,.06);
}
.founder-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center top;
  display:block;
}

/* Contact icons refinement */
.mail-icon svg{
  width:62px;
  height:62px;
  fill:none;
  stroke:#07111f;
  stroke-width:4.5;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.mail-icon svg path:first-child{
  fill:rgba(255,255,255,.08);
}
.whatsapp-icon{
  background:rgba(255,255,255,.94);
}
.whatsapp-icon img{
  width:74px;
  height:74px;
  object-fit:contain;
}


/* Logo marquee: clean, larger, no boxes */
.logo-marquee{
  padding:14px 0 10px;
}
.logo-track{
  gap:72px;
  animation:logoSlide 30s linear infinite;
}
.logo-track img{
  height:54px !important;
  width:auto;
  max-width:230px;
  object-fit:contain;
  background:transparent !important;
  border:0 !important;
  border-radius:0 !important;
  padding:0 !important;
  filter:none;
  box-shadow:none;
}

/* Scroll snap sections */
html{
  scroll-snap-type:y mandatory;
  scroll-padding-top:82px;
}
.snap-section{
  scroll-snap-align:start;
  scroll-snap-stop:always;
}
@media(max-width:960px){
  html{
    scroll-snap-type:none;
  }
}

/* Extra visual bands */
.image-band{
  min-height:620px;
  display:grid;
  place-items:center;
  padding:100px clamp(20px,4vw,56px);
  position:relative;
  overflow:hidden;
  background-image:
    linear-gradient(90deg,rgba(6,18,31,.94),rgba(6,18,31,.58),rgba(6,18,31,.88)),
    var(--band-img);
  background-size:cover;
  background-position:center;
  background-attachment:fixed;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.image-band-content{
  width:min(1180px,100%);
  margin:0 auto;
}
.image-band-content h2{
  max-width:820px;
}
.image-band-content p:not(.eyebrow){
  max-width:650px;
  color:var(--muted);
  font-size:18px;
  line-height:1.7;
}

/* Audience visual section */
.audience-band{
  max-width:1180px;
  margin:0 auto;
  padding:96px clamp(20px,4vw,56px);
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}
.audience-card{
  position:relative;
  min-height:520px;
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  display:flex;
  align-items:flex-end;
}
.audience-card img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.audience-card:after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(6,18,31,.08),rgba(6,18,31,.92));
}
.audience-card div{
  position:relative;
  z-index:2;
  padding:32px;
}
.audience-card h2{
  font-size:36px;
}
.audience-card p:not(.eyebrow){
  color:var(--muted);
  line-height:1.65;
}

/* Contact icon fixes */
.whatsapp-icon{
  background:transparent !important;
  border:0 !important;
}
.whatsapp-icon img{
  width:92px !important;
  height:92px !important;
  object-fit:contain;
  display:block;
}
.mail-icon svg{
  width:70px;
  height:70px;
}

/* Safer snap behavior on short viewports */
@media(max-height:760px){
  html{
    scroll-snap-type:none;
  }
}
@media(max-width:960px){
  .image-band{
    min-height:520px;
    background-attachment:scroll;
  }
  .audience-band{
    grid-template-columns:1fr;
  }
}
@media(max-width:720px){
  .logo-track{
    gap:48px;
  }
  .logo-track img{
    height:46px !important;
  }
  .audience-card{
    min-height:430px;
  }
}


/* Softer scrolling: natural movement, no forced reel-like jumps */
html{
  scroll-behavior:smooth;
  scroll-snap-type:none !important;
  scroll-padding-top:82px;
}
.snap-section{
  scroll-snap-align:none !important;
  scroll-snap-stop:normal !important;
}

/* Give sections a block feeling without trapping the scroll */
.section,
.image-band,
.wide-parallax,
.audience-band{
  scroll-margin-top:82px;
}

/* Smoother visual rhythm */
.section{
  padding-top:92px;
  padding-bottom:92px;
}
.compact{
  padding-top:54px;
  padding-bottom:54px;
}
.hero{
  min-height:calc(100vh - 82px);
}
.image-band,
.wide-parallax{
  min-height:560px;
}


/* Contact icons as provided PNGs */
.contact-icon{
  background:transparent !important;
  border:0 !important;
  width:104px;
  height:104px;
}
.contact-icon img{
  width:100%;
  height:100%;
  object-fit:contain;
  display:block;
}
.mail-icon,
.whatsapp-icon{
  background:transparent !important;
  border:0 !important;
}
.mail-icon svg,
.mail-icon span{
  display:none !important;
}
.mail-icon img,
.whatsapp-icon img{
  width:104px !important;
  height:104px !important;
  object-fit:contain;
}


/* Latest contact icons */
.contact-icon img{
  width:104px !important;
  height:104px !important;
  object-fit:contain;
  display:block;
}
.mail-icon,
.whatsapp-icon,
.contact-icon{
  background:transparent !important;
  border:0 !important;
}


/* Opportunity panel cleanup */
.opportunity-panel{
  grid-template-columns:.9fr 1.1fr;
  align-items:center;
}
.shirt{
  height:250px;
  max-width:230px;
  width:100%;
  margin:0 auto;
}
.opportunity-photo-strip{
  display:none !important;
}
@media(max-width:720px){
  .opportunity-panel{
    grid-template-columns:1fr;
  }
  .shirt{
    height:230px;
    max-width:220px;
  }
}


/* Smooth glide scroll configuration */
html{
  scroll-behavior:smooth;
  scroll-snap-type:none !important;
}
body{
  overscroll-behavior-y:none;
}
.snap-section{
  scroll-snap-align:none !important;
  scroll-snap-stop:normal !important;
}


/* Compact header on scroll */
.header{
  transition:padding .24s ease, background .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.header.is-compact{
  padding-top:8px;
  padding-bottom:8px;
  background:rgba(6,18,31,.92);
  box-shadow:0 18px 50px rgba(0,0,0,.28);
  border-bottom-color:rgba(255,255,255,.16);
}
.brand-logo{
  transition:height .24s ease, transform .24s ease;
}
.header.is-compact .brand-logo{
  height:42px;
}
.header.is-compact .nav-links{
  font-size:13px;
}
.header.is-compact .nav-cta{
  padding:9px 15px;
}

/* Image-led hero */
.image-led-hero{
  min-height:620px;
  display:grid;
  grid-template-columns:1fr;
  gap:18px;
  align-content:center;
}
.hero-photo-main{
  position:relative;
  min-height:470px;
  border-radius:34px;
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}
.hero-photo-main img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.hero-photo-main:after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg,rgba(6,18,31,.05),rgba(6,18,31,.86)),
    linear-gradient(90deg,rgba(6,18,31,.35),rgba(6,18,31,.05));
}
.hero-photo-overlay{
  position:absolute;
  left:30px;
  right:30px;
  bottom:28px;
  z-index:2;
}
.hero-photo-overlay span,
.hero-mini-card span{
  display:block;
  color:var(--blue-2);
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:12px;
  margin-bottom:10px;
}
.hero-photo-overlay strong{
  display:block;
  max-width:520px;
  font-size:36px;
  line-height:1;
  letter-spacing:-.06em;
}
.hero-mini-card{
  display:grid;
  grid-template-columns:130px 1fr;
  gap:18px;
  align-items:center;
  padding:14px;
  border-radius:24px;
  border:1px solid var(--line);
  background:linear-gradient(180deg,rgba(255,255,255,.10),rgba(255,255,255,.045));
  box-shadow:var(--shadow);
}
.hero-mini-card img{
  width:130px;
  height:100px;
  object-fit:cover;
  border-radius:18px;
  display:block;
  filter:brightness(.78);
}
.hero-mini-card p{
  color:var(--muted);
  line-height:1.55;
  margin:0;
}

/* Make first fold less text-heavy */
.hero-copy .lead{
  max-width:590px;
}
.hero-copy h1{
  max-width:760px;
}
@media(max-width:960px){
  .image-led-hero{
    min-height:auto;
  }
  .hero-photo-main{
    min-height:380px;
  }
}
@media(max-width:720px){
  .header.is-compact .brand-logo{
    height:38px;
  }
  .hero-photo-main{
    min-height:320px;
  }
  .hero-photo-overlay strong{
    font-size:28px;
  }
  .hero-mini-card{
    grid-template-columns:1fr;
  }
  .hero-mini-card img{
    width:100%;
    height:150px;
  }
}



/* Smooth anchor navigation helper */
html{
  scroll-behavior:smooth;
}
.section[id],
.logos[id]{
  scroll-margin-top:96px;
}

/* Editable shirt tool */
.opportunity-panel{
  grid-template-columns: 0.95fr 1.05fr;
  align-items:center;
  gap:28px;
}
.shirt-tool{
  display:grid;
  gap:18px;
  align-items:center;
}
.shirt-preview-wrap{
  display:grid;
  place-items:center;
  min-height:300px;
}
.export-shirt{
  height:260px !important;
  max-width:240px !important;
  width:100%;
  margin:0 auto;
  position:relative;
}
.editable-sponsor{
  min-width:120px;
  max-width:160px;
  text-align:center;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.shirt-controls{
  display:grid;
  gap:12px;
  max-width:320px;
  margin:0 auto;
  width:100%;
}
.shirt-controls label{
  color:var(--text);
  font-weight:800;
  letter-spacing:-.02em;
}
.shirt-controls input{
  width:100%;
  background:rgba(0,0,0,.22);
  border:1px solid var(--line);
  border-radius:16px;
  padding:14px 16px;
  color:var(--text);
  font:inherit;
  outline:none;
}
.shirt-controls input:focus{
  border-color:rgba(255,255,255,.34);
}
.shirt-download-btn{
  width:100%;
}
.panel-note-help{
  color:var(--muted);
  font-size:14px;
  line-height:1.5;
  margin-top:14px;
}
@media(max-width:960px){
  .opportunity-panel{
    grid-template-columns:1fr;
  }
  .shirt-controls{
    max-width:360px;
  }
}


/* Shirt editor simplified: no labels, no download */
.shirt-download-btn,
.panel-note-help{
  display:none !important;
}
.shirt-controls{
  margin-top:4px;
}
.shirt-controls input{
  text-align:center;
  font-weight:800;
  letter-spacing:.04em;
}


/* Final scroll behavior */
html{
  scroll-behavior:auto !important;
  scroll-snap-type:none !important;
}
body{
  overscroll-behavior-y:none;
}
.snap-section{
  scroll-snap-align:none !important;
  scroll-snap-stop:normal !important;
}
.section[id],
.logos[id]{
  scroll-margin-top:100px;
}



/* Expanded spacing and stronger section rhythm */
.section{
  padding-top:140px !important;
  padding-bottom:140px !important;
}
.compact{
  padding-top:100px !important;
  padding-bottom:100px !important;
}
.section + .section,
.section + .image-band,
.section + .wide-parallax,
.image-band + .section,
.wide-parallax + .section,
.logos + .section{
  margin-top:24px;
}

/* Larger brands section - almost full-screen */
.brands-showcase{
  min-height:100vh;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  gap:38px;
  padding-top:140px !important;
  padding-bottom:140px !important;
}
.brands-showcase p{
  color:var(--text);
  font-size:clamp(24px, 3vw, 40px);
  line-height:1.1;
  font-weight:900;
  letter-spacing:-.05em;
  margin:0;
}
.brands-showcase .logo-marquee{
  width:100%;
  margin-top:6px;
}
.brands-showcase .logo-track{
  gap:92px;
  animation-duration:28s;
}
.brands-showcase .logo-track img{
  height:88px !important;
  max-width:320px;
}
@media(max-width:960px){
  .section{
    padding-top:110px !important;
    padding-bottom:110px !important;
  }
  .brands-showcase{
    min-height:85vh;
    gap:28px;
  }
  .brands-showcase .logo-track{
    gap:64px;
  }
  .brands-showcase .logo-track img{
    height:68px !important;
    max-width:240px;
  }
}
@media(max-width:720px){
  .section{
    padding-top:92px !important;
    padding-bottom:92px !important;
  }
  .brands-showcase{
    min-height:80vh;
  }
  .brands-showcase p{
    font-size:30px;
  }
  .brands-showcase .logo-track{
    gap:48px;
  }
  .brands-showcase .logo-track img{
    height:52px !important;
    max-width:180px;
  }
}



/* Global spacious layout override */
.section{
  padding-top:170px !important;
  padding-bottom:170px !important;
}
.compact{
  padding-top:130px !important;
  padding-bottom:130px !important;
}

.hero{
  gap:88px !important;
}
.split,
.opportunity,
.contact,
.founder{
  gap:72px !important;
}
.cards{
  gap:28px !important;
}
.steps{
  gap:24px !important;
  margin-top:56px !important;
}
.visual-grid{
  gap:26px !important;
}
.audience-band{
  gap:30px !important;
  padding-top:140px !important;
  padding-bottom:140px !important;
}
.image-band,
.wide-parallax{
  min-height:680px !important;
  padding-top:140px !important;
  padding-bottom:140px !important;
}
.b3b-explain{
  gap:64px !important;
}
.opportunity-panel{
  gap:38px !important;
  padding:38px !important;
}
.hero-card,
.service-card,
.founder-card,
.contact-option,
.step{
  padding:32px !important;
}
.hero-mini-card{
  padding:18px !important;
  gap:22px !important;
}
.logo-marquee{
  margin-top:20px !important;
}
.logos{
  gap:42px !important;
}
.brands-showcase{
  min-height:100vh !important;
  gap:54px !important;
  padding-top:170px !important;
  padding-bottom:170px !important;
}
.brands-showcase p{
  margin-bottom:10px !important;
}
.section + .section,
.section + .image-band,
.section + .wide-parallax,
.image-band + .section,
.wide-parallax + .section,
.logos + .section,
.audience-band + .section{
  margin-top:48px !important;
}

@media(max-width:960px){
  .section{
    padding-top:135px !important;
    padding-bottom:135px !important;
  }
  .compact{
    padding-top:105px !important;
    padding-bottom:105px !important;
  }
  .hero{
    gap:54px !important;
  }
  .split,
  .opportunity,
  .contact,
  .founder{
    gap:48px !important;
  }
  .cards,
  .steps,
  .visual-grid,
  .audience-band{
    gap:22px !important;
  }
  .brands-showcase{
    gap:38px !important;
    min-height:88vh !important;
  }
  .image-band,
  .wide-parallax{
    min-height:560px !important;
  }
}

@media(max-width:720px){
  .section{
    padding-top:110px !important;
    padding-bottom:110px !important;
  }
  .compact{
    padding-top:88px !important;
    padding-bottom:88px !important;
  }
  .hero{
    gap:34px !important;
  }
  .split,
  .opportunity,
  .contact,
  .founder,
  .b3b-explain{
    gap:34px !important;
  }
  .cards,
  .steps,
  .visual-grid,
  .audience-band{
    gap:18px !important;
  }
  .brands-showcase{
    min-height:82vh !important;
    gap:28px !important;
  }
  .image-band,
  .wide-parallax{
    min-height:480px !important;
  }
}



/* Logo carousel: hover pause + clickable logos */
.logo-marquee:hover .logo-track{
  animation-play-state:paused !important;
}
.logo-track{
  animation-duration:46s !important;
}
.brands-showcase .logo-track{
  animation-duration:52s !important;
}
.logo-link{
  display:flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
  line-height:0;
  transition:transform .22s ease, opacity .22s ease;
}
.logo-link:hover{
  transform:scale(1.06);
  opacity:.9;
}
.logo-link img{
  display:block;
  pointer-events:none;
}



/* Mixed brand logos */
.logo-track{
  gap:82px !important;
}
.logo-link{
  min-width:190px;
  height:110px;
}
.logo-link img{
  max-height:86px !important;
  max-width:220px !important;
  width:auto !important;
  height:auto !important;
  object-fit:contain !important;
}
.brands-showcase .logo-link{
  min-width:230px;
  height:130px;
}
.brands-showcase .logo-link img{
  max-height:104px !important;
  max-width:260px !important;
}
@media(max-width:720px){
  .logo-track{
    gap:48px !important;
  }
  .logo-link{
    min-width:150px;
    height:82px;
  }
  .logo-link img{
    max-height:62px !important;
    max-width:170px !important;
  }
}



/* Bigger and tighter logo carousel */
.logo-track{
  gap:42px !important;
}
.logo-link{
  min-width:260px !important;
  height:140px !important;
}
.logo-link img{
  max-height:118px !important;
  max-width:260px !important;
  width:auto !important;
  height:auto !important;
  object-fit:contain !important;
}
.brands-showcase .logo-track{
  gap:52px !important;
}
.brands-showcase .logo-link{
  min-width:300px !important;
  height:170px !important;
}
.brands-showcase .logo-link img{
  max-height:138px !important;
  max-width:300px !important;
}
@media(max-width:960px){
  .logo-track{
    gap:32px !important;
  }
  .logo-link{
    min-width:220px !important;
    height:120px !important;
  }
  .logo-link img{
    max-height:96px !important;
    max-width:220px !important;
  }
  .brands-showcase .logo-track{
    gap:38px !important;
  }
  .brands-showcase .logo-link{
    min-width:250px !important;
    height:140px !important;
  }
  .brands-showcase .logo-link img{
    max-height:112px !important;
    max-width:250px !important;
  }
}
@media(max-width:720px){
  .logo-track{
    gap:24px !important;
  }
  .logo-link{
    min-width:170px !important;
    height:88px !important;
  }
  .logo-link img{
    max-height:72px !important;
    max-width:170px !important;
  }
  .brands-showcase .logo-track{
    gap:28px !important;
  }
  .brands-showcase .logo-link{
    min-width:190px !important;
    height:98px !important;
  }
  .brands-showcase .logo-link img{
    max-height:80px !important;
    max-width:190px !important;
  }
}



/* Massive logo sizing override */
.logo-track{
  gap:18px !important;
}
.logo-link{
  min-width:360px !important;
  height:190px !important;
}
.logo-link img{
  max-height:170px !important;
  max-width:340px !important;
  width:auto !important;
  height:auto !important;
  object-fit:contain !important;
}
.brands-showcase .logo-track{
  gap:22px !important;
}
.brands-showcase .logo-link{
  min-width:420px !important;
  height:230px !important;
}
.brands-showcase .logo-link img{
  max-height:205px !important;
  max-width:390px !important;
}

@media(max-width:960px){
  .logo-track{
    gap:14px !important;
  }
  .logo-link{
    min-width:280px !important;
    height:150px !important;
  }
  .logo-link img{
    max-height:132px !important;
    max-width:260px !important;
  }
  .brands-showcase .logo-track{
    gap:16px !important;
  }
  .brands-showcase .logo-link{
    min-width:320px !important;
    height:170px !important;
  }
  .brands-showcase .logo-link img{
    max-height:150px !important;
    max-width:300px !important;
  }
}

@media(max-width:720px){
  .logo-track{
    gap:12px !important;
  }
  .logo-link{
    min-width:210px !important;
    height:110px !important;
  }
  .logo-link img{
    max-height:96px !important;
    max-width:195px !important;
  }
  .brands-showcase .logo-track{
    gap:12px !important;
  }
  .brands-showcase .logo-link{
    min-width:230px !important;
    height:120px !important;
  }
  .brands-showcase .logo-link img{
    max-height:104px !important;
    max-width:215px !important;
  }
}



/* Extreme brand logo scale override */
.brands-showcase{
  gap:22px !important;
}
.brands-showcase .logo-marquee{
  margin-top:0 !important;
}
.brands-showcase .logo-track{
  gap:8px !important;
  animation-duration:58s !important;
  align-items:center !important;
}
.brands-showcase .logo-link{
  min-width:560px !important;
  width:560px !important;
  height:280px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
}
.brands-showcase .logo-link img{
  width:92% !important;
  height:92% !important;
  max-width:none !important;
  max-height:none !important;
  object-fit:contain !important;
}

/* Also enlarge non-fullscreen marquee state */
.logo-track{
  gap:10px !important;
}
.logo-link{
  min-width:420px !important;
  width:420px !important;
  height:210px !important;
}
.logo-link img{
  width:90% !important;
  height:90% !important;
  max-width:none !important;
  max-height:none !important;
  object-fit:contain !important;
}

@media(max-width:960px){
  .brands-showcase .logo-track{
    gap:6px !important;
  }
  .brands-showcase .logo-link{
    min-width:390px !important;
    width:390px !important;
    height:210px !important;
  }
  .logo-track{
    gap:8px !important;
  }
  .logo-link{
    min-width:300px !important;
    width:300px !important;
    height:160px !important;
  }
}

@media(max-width:720px){
  .brands-showcase .logo-track{
    gap:4px !important;
  }
  .brands-showcase .logo-link{
    min-width:260px !important;
    width:260px !important;
    height:135px !important;
  }
  .logo-track{
    gap:6px !important;
  }
  .logo-link{
    min-width:220px !important;
    width:220px !important;
    height:112px !important;
  }
}



/* Reduced spacing between huge logos */
.brands-showcase .logo-track{
  gap:0px !important;
}
.brands-showcase .logo-link{
  min-width:500px !important;
  width:500px !important;
  height:260px !important;
  margin:0 !important;
}
.brands-showcase .logo-link img{
  width:96% !important;
  height:96% !important;
}
.logo-track{
  gap:2px !important;
}
.logo-link{
  min-width:380px !important;
  width:380px !important;
  height:190px !important;
  margin:0 !important;
}
.logo-link img{
  width:94% !important;
  height:94% !important;
}

@media(max-width:960px){
  .brands-showcase .logo-track{
    gap:0px !important;
  }
  .brands-showcase .logo-link{
    min-width:350px !important;
    width:350px !important;
    height:185px !important;
  }
  .logo-track{
    gap:2px !important;
  }
  .logo-link{
    min-width:280px !important;
    width:280px !important;
    height:145px !important;
  }
}

@media(max-width:720px){
  .brands-showcase .logo-track{
    gap:0px !important;
  }
  .brands-showcase .logo-link{
    min-width:240px !important;
    width:240px !important;
    height:120px !important;
  }
  .logo-track{
    gap:2px !important;
  }
  .logo-link{
    min-width:210px !important;
    width:210px !important;
    height:106px !important;
  }
}



/* Real fix for logo spacing: remove huge fixed widths */
.brands-showcase .logo-track{
  gap: 0px !important;
}
.brands-showcase .logo-link{
  min-width: 0 !important;
  width: auto !important;
  flex: 0 0 auto !important;
  height: 250px !important;
  padding: 0 6px !important;
  margin: 0 !important;
}
.brands-showcase .logo-link img{
  width: auto !important;
  height: 200px !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain !important;
}

.logo-track{
  gap: 0px !important;
}
.logo-link{
  min-width: 0 !important;
  width: auto !important;
  flex: 0 0 auto !important;
  height: 180px !important;
  padding: 0 4px !important;
  margin: 0 !important;
}
.logo-link img{
  width: auto !important;
  height: 150px !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain !important;
}

@media(max-width:960px){
  .brands-showcase .logo-link{
    height: 185px !important;
    padding: 0 4px !important;
  }
  .brands-showcase .logo-link img{
    height: 145px !important;
  }
  .logo-link{
    height: 140px !important;
    padding: 0 3px !important;
  }
  .logo-link img{
    height: 110px !important;
  }
}

@media(max-width:720px){
  .brands-showcase .logo-link{
    height: 130px !important;
    padding: 0 2px !important;
  }
  .brands-showcase .logo-link img{
    height: 100px !important;
  }
  .logo-link{
    height: 105px !important;
    padding: 0 2px !important;
  }
  .logo-link img{
    height: 78px !important;
  }
}



/* Final logo carousel tweak: slightly faster + more spacing */
.brands-showcase .logo-track{
  gap: 10px !important;
  animation-duration: 44s !important;
}
.brands-showcase .logo-link{
  padding: 0 5px !important;
}
.logo-track{
  gap: 8px !important;
  animation-duration: 40s !important;
}
.logo-link{
  padding: 0 4px !important;
}

@media(max-width:960px){
  .brands-showcase .logo-track{
    gap: 8px !important;
    animation-duration: 40s !important;
  }
  .logo-track{
    gap: 6px !important;
    animation-duration: 36s !important;
  }
}

@media(max-width:720px){
  .brands-showcase .logo-track{
    gap: 6px !important;
    animation-duration: 34s !important;
  }
  .logo-track{
    gap: 4px !important;
    animation-duration: 30s !important;
  }
}



/* Brand carousel manual slider */
.brand-slider-control{
  width:min(760px, 82vw);
  margin:18px auto 0;
  opacity:.72;
  transition:opacity .2s ease;
}
.brand-slider-control:hover{
  opacity:1;
}
.brand-slider-control input[type="range"]{
  width:100%;
  appearance:none;
  -webkit-appearance:none;
  height:22px;
  background:transparent;
  cursor:pointer;
}
.brand-slider-control input[type="range"]::-webkit-slider-runnable-track{
  height:7px;
  border-radius:999px;
  background:linear-gradient(90deg,rgba(60,167,255,.9),rgba(124,227,255,.45));
  border:1px solid rgba(255,255,255,.16);
}
.brand-slider-control input[type="range"]::-webkit-slider-thumb{
  -webkit-appearance:none;
  appearance:none;
  width:28px;
  height:28px;
  margin-top:-11px;
  border-radius:50%;
  background:var(--blue);
  border:3px solid #f4f9ff;
  box-shadow:0 10px 30px rgba(0,0,0,.35);
}
.brand-slider-control input[type="range"]::-moz-range-track{
  height:7px;
  border-radius:999px;
  background:linear-gradient(90deg,rgba(60,167,255,.9),rgba(124,227,255,.45));
  border:1px solid rgba(255,255,255,.16);
}
.brand-slider-control input[type="range"]::-moz-range-thumb{
  width:24px;
  height:24px;
  border-radius:50%;
  background:var(--blue);
  border:3px solid #f4f9ff;
  box-shadow:0 10px 30px rgba(0,0,0,.35);
}
.logo-marquee.is-manual .logo-track{
  animation-play-state:paused !important;
  transform:translateX(var(--manual-logo-x, 0px)) !important;
}
@media(max-width:720px){
  .brand-slider-control{
    width:88vw;
    margin-top:8px;
  }
}



/* Shirt proportion fix: more realistic silhouette */
.shirt-preview-wrap{
  min-height:260px !important;
}
.export-shirt,
.shirt{
  width:220px !important;
  max-width:220px !important;
  height:205px !important;
  min-height:205px !important;
  aspect-ratio: 220 / 205 !important;
  margin:0 auto !important;
  position:relative !important;
  background:#67B9EE !important;
  clip-path:polygon(
    27% 6%,
    38% 6%,
    45% 18%,
    55% 18%,
    62% 6%,
    73% 6%,
    87% 28%,
    79% 45%,
    74% 35%,
    74% 100%,
    26% 100%,
    26% 35%,
    21% 45%,
    13% 28%
  ) !important;
}
.export-shirt .neck,
.shirt .neck{
  position:absolute !important;
  top:0 !important;
  left:50% !important;
  transform:translateX(-50%) !important;
  width:56px !important;
  height:32px !important;
  background:#06121f !important;
  border-bottom-left-radius:40px !important;
  border-bottom-right-radius:40px !important;
  border-top-left-radius:0 !important;
  border-top-right-radius:0 !important;
}
.export-shirt .sponsor,
.shirt .sponsor,
.editable-sponsor{
  position:absolute !important;
  left:50% !important;
  top:48% !important;
  transform:translate(-50%, -50%) !important;
  min-width:114px !important;
  max-width:132px !important;
  height:48px !important;
  padding:0 14px !important;
  border-radius:14px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  background:#06121f !important;
  color:#1B8FFF !important;
  font-weight:900 !important;
  font-size:14px !important;
  letter-spacing:.06em !important;
  text-transform:uppercase !important;
  white-space:nowrap !important;
  overflow:hidden !important;
  text-overflow:ellipsis !important;
}
@media(max-width:720px){
  .export-shirt,
  .shirt{
    width:200px !important;
    max-width:200px !important;
    height:186px !important;
    min-height:186px !important;
  }
  .export-shirt .sponsor,
  .shirt .sponsor,
  .editable-sponsor{
    min-width:106px !important;
    max-width:124px !important;
    height:44px !important;
    font-size:13px !important;
  }
}


/* Scroll unblock fix */
html{
  scroll-behavior:smooth !important;
  scroll-snap-type:none !important;
}
body{
  overflow-y:auto !important;
  overscroll-behavior-y:auto !important;
}
.snap-section{
  scroll-snap-align:none !important;
  scroll-snap-stop:normal !important;
}



/* Mac/Safari scroll safety: prevent scroll jank/freezing */
.wide-parallax,
.image-band{
  background-attachment:scroll !important;
}
.scroll-safe-apple .wide-parallax,
.scroll-safe-apple .image-band{
  background-attachment:scroll !important;
}
.scroll-safe-apple .parallax-card{
  transform:none !important;
  will-change:auto !important;
}
.scroll-safe-apple *{
  -webkit-overflow-scrolling:touch;
}
html,
body{
  overflow-x:hidden !important;
}
body{
  overflow-y:auto !important;
}
