/*
 * Shared SnapGo visual system
 * Mirrors the Home page palette across every inner page.
 */
:root{
  --sg-classic-lavender:#e6e6fa;
  --sg-light-lavender:#f3e8f5;
  --sg-white:#fffdfd;
  --sg-ink:#260033;
  --sg-english-purple:#7a2a91;
  --sg-magenta:#b72888;
  --sg-coral:#f23d72;
  --sg-copy:#5f496a;
  --sg-line:rgba(122,42,145,.14);
}

body.intro-pending{
  overflow:hidden !important;
}

.site-intro{
  position:fixed;
  z-index:99999;
  inset:0;
  display:grid;
  place-items:center;
  overflow:hidden;
  background:rgba(38,0,51,.28);
  backdrop-filter:blur(3px) saturate(.82);
  -webkit-backdrop-filter:blur(3px) saturate(.82);
  opacity:1;
  visibility:visible;
  transition:opacity .5s ease,visibility .5s ease;
}

.site-intro.is-closing{
  opacity:0;
  visibility:hidden;
  pointer-events:none;
}

.site-intro-card{
  position:relative;
  z-index:2;
  width:min(430px,82vw);
  overflow:hidden;
  border:2px solid #7a2a91;
  border-radius:28px;
  background:#fffdfd;
  box-shadow:8px 9px 0 #7a2a91,0 26px 60px rgba(38,0,51,.16);
  cursor:pointer;
}

.site-intro-video{
  position:relative;
  display:block;
  width:100%;
  height:auto;
  max-height:68vh;
  object-fit:contain;
  background:#fffdfd;
}

.site-intro-sound-hint{
  position:absolute;
  z-index:3;
  left:50%;
  bottom:14px;
  display:flex;
  align-items:center;
  gap:7px;
  padding:9px 12px;
  border:1px solid rgba(255,255,255,.42);
  border-radius:999px;
  background:rgba(38,0,51,.84);
  color:#fff;
  font-family:var(--font-body);
  font-size:.7rem;
  font-weight:800;
  white-space:nowrap;
  box-shadow:0 8px 22px rgba(38,0,51,.2);
  transform:translateX(-50%);
  backdrop-filter:blur(10px);
}

.site-intro-sound-hint[hidden]{
  display:none !important;
}

.site-intro-skip{
  position:absolute;
  z-index:4;
  bottom:clamp(18px,3vw,34px);
  border:1px solid rgba(255,255,255,.32);
  border-radius:999px;
  background:rgba(38,0,51,.64);
  color:#fff;
  font-family:var(--font-body);
  font-size:.75rem;
  font-weight:800;
  backdrop-filter:blur(12px);
}

.site-intro-skip{
  left:50%;
  padding:10px 14px;
  transform:translateX(-50%);
}

@media(max-width:640px){
  .site-intro-card{width:min(340px,82vw);border-radius:22px;box-shadow:6px 7px 0 #7a2a91,0 22px 48px rgba(38,0,51,.16);}
  .site-intro-video{max-height:62vh;}
  .site-intro-skip{bottom:16px;}
}

@media(prefers-reduced-motion:reduce){
  .site-intro{transition:none;}
}

body:is([data-page="home"],[data-page="why"],[data-page="menu"],[data-page="where"],[data-page="contact"]){
  color:var(--sg-copy);
  background:var(--sg-classic-lavender);
}

/* One header treatment on every route. */
body:is([data-page="home"],[data-page="why"],[data-page="menu"],[data-page="where"],[data-page="contact"]) .site-header{
  border-bottom:1px solid var(--sg-line) !important;
  background:rgba(255,253,253,.94) !important;
}

body:is([data-page="home"],[data-page="why"],[data-page="menu"],[data-page="where"],[data-page="contact"]) .nav-link::after{
  background:var(--sg-english-purple) !important;
}

body:is([data-page="home"],[data-page="why"],[data-page="menu"],[data-page="where"],[data-page="contact"]) .nav-cta .btn,
body:is([data-page="home"],[data-page="why"],[data-page="menu"],[data-page="where"],[data-page="contact"]) .mobile-menu .btn{
  border-color:var(--sg-ink) !important;
  background:var(--sg-magenta) !important;
  background-image:none !important;
  color:#fff !important;
  box-shadow:4px 5px 0 var(--sg-english-purple) !important;
}

/* Inner-page canvases follow Home: lavender hero, alternating light sections. */
#page-why,
#page-menu,
#page-where,
#page-contact{
  color:var(--sg-copy) !important;
  background-color:var(--sg-classic-lavender) !important;
  background-image:none !important;
}

#page-why .why-hero,
#page-menu .menu-hero,
#page-where .where-hero,
#page-contact .page-hero-small{
  border:0 !important;
  background-color:var(--sg-classic-lavender) !important;
}

#page-why .why-section,
#page-menu .menu-wall,
#page-menu .popular-section,
#page-contact .section,
#page-where .where-section{
  border-top:0 !important;
  border-bottom:0 !important;
  background-color:var(--sg-light-lavender) !important;
}

#page-why .why-section:nth-of-type(even),
#page-menu .stocking-lab,
#page-contact .section:nth-of-type(even),
#page-where .where-section:nth-of-type(even){
  background-color:var(--sg-classic-lavender) !important;
}

/*
 * Remove the disconnected dark/black bars and ornamental separators that sat
 * over section boundaries. Internal card decoration is left intact.
 */
#page-why .why-section::before,
#page-why .why-section::after,
#page-menu .popular-section::before,
#page-menu .popular-section::after,
#page-where .where-section::before,
#page-where .where-section::after,
#page-contact .section::before{
  display:none !important;
  content:none !important;
  border:0 !important;
  background:none !important;
  box-shadow:none !important;
}

/* Remove the same unnecessary section-top rule/marker from Home as well. */
#page-home .section[data-home-section]::before,
#page-home .section-bridge[data-home-section]::before,
#page-home .section[data-home-section] > .container::after,
#page-home .section-bridge[data-home-section] > .container::after{
  display:none !important;
  content:none !important;
  border:0 !important;
  background:none !important;
  box-shadow:none !important;
}

/* Shared typography and card surfaces. */
#page-why :is(h1,h2,h3),
#page-menu :is(h1,h2,h3),
#page-where :is(h1,h2,h3),
#page-contact :is(h1,h2,h3){
  color:var(--sg-ink);
}

#page-why :is(.why-ops-card,.why-problem-copy,.why-flow-card,.why-value-card,.why-city-card,.metric-card,.compare-table),
#page-menu :is(.menu-product,.popular-strip article),
#page-where :is(.industry-card--primary,.industry-card--secondary,.qual-card,.journey-step),
#page-contact :is(.form-card,.contact-info-card,.fit-card,.next-card){
  border-color:var(--sg-line) !important;
  background-color:var(--sg-white) !important;
  background-image:none !important;
  color:var(--sg-copy) !important;
  box-shadow:0 18px 46px rgba(38,0,51,.08) !important;
}

/* Home-style light message and final CTA panels. */
#page-why .why-promise,
#page-where .fit-banner{
  border:0 !important;
  background:var(--sg-classic-lavender) !important;
  color:var(--sg-ink) !important;
}

#page-where .fit-banner::after{
  display:none !important;
  content:none !important;
  background:none !important;
}

#page-where .fit-banner p{
  color:var(--sg-ink) !important;
  text-shadow:none !important;
}

#page-why .why-final,
#page-where .where-final{
  border:2px solid var(--sg-english-purple) !important;
  background:var(--sg-light-lavender) !important;
  background-image:none !important;
  box-shadow:8px 9px 0 var(--sg-english-purple) !important;
}

#page-why .why-final :is(h2,.lead),
#page-where .where-final :is(h2,.lead){
  color:var(--sg-ink) !important;
}

body:is([data-page="home"],[data-page="why"],[data-page="menu"],[data-page="where"],[data-page="contact"]) .site-footer{
  background:var(--sg-ink) !important;
  background-image:none !important;
}

/* ========== Where We Fit: finished page composition ========== */
#page-where .where-hero{
  padding:clamp(48px,5vw,72px) 0 !important;
  overflow:hidden;
}

#page-where .where-hero-grid{
  grid-template-columns:minmax(0,1fr) minmax(430px,.9fr) !important;
  align-items:center !important;
  gap:clamp(44px,5vw,76px) !important;
}

#page-where .where-hero h1{
  max-width:720px;
  margin:15px 0 18px !important;
  font-size:clamp(3.2rem,4.7vw,5.3rem) !important;
  line-height:.98 !important;
  letter-spacing:-.045em !important;
  text-wrap:balance;
}

#page-where .where-hero .lead{
  max-width:680px;
  color:var(--sg-copy) !important;
  font-size:clamp(1rem,1.15vw,1.15rem) !important;
  line-height:1.65 !important;
}

#page-where .where-pills{
  gap:10px !important;
  margin-top:26px !important;
}

#page-where .where-pill{
  padding:10px 14px !important;
  border-color:var(--sg-line) !important;
  background:rgba(255,253,253,.82) !important;
}

#page-where .where-visual{
  min-height:510px !important;
}

#page-where .fit-journey{
  width:min(535px,100%) !important;
  transform:scale(.88) !important;
}

#page-where .journey-step{
  border:1px solid rgba(122,42,145,.2) !important;
  background:rgba(255,253,253,.96) !important;
  box-shadow:0 14px 36px rgba(38,0,51,.12) !important;
}

#page-where .journey-step:hover,
#page-where .journey-step:focus-within{
  box-shadow:0 20px 44px rgba(38,0,51,.16) !important;
}

#page-where .step-number{
  border-color:var(--sg-english-purple) !important;
  background:var(--sg-magenta) !important;
  color:#fff !important;
  box-shadow:2px 3px 0 var(--sg-english-purple) !important;
}

#page-where .step-icon{
  border-color:rgba(122,42,145,.3) !important;
  background:var(--sg-light-lavender) !important;
  box-shadow:none !important;
}

#page-where .where-section{
  padding:clamp(58px,6vw,84px) 0 !important;
}

#page-where .where-section:not(.section-alt){
  background:var(--sg-light-lavender) !important;
}

#page-where .where-section.section-alt{
  background:var(--sg-classic-lavender) !important;
}

#page-where .machine-showcase{
  background:var(--sg-classic-lavender) !important;
}

#page-where .machine-showcase .section-head{
  margin-inline:auto;
  text-align:center;
}

#page-where .machine-showcase .section-head .lead{
  max-width:720px;
  margin:16px auto 0;
  color:var(--sg-copy);
}

#page-where .machine-showcase-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:clamp(18px,2.5vw,30px);
  align-items:stretch;
}

#page-where .machine-showcase-card{
  display:flex;
  min-width:0;
  flex-direction:column;
  margin:0;
  overflow:hidden;
  border:1px solid var(--sg-line);
  border-radius:28px;
  background:var(--sg-white);
  box-shadow:0 18px 44px rgba(38,0,51,.09);
  transition:transform .25s ease,box-shadow .25s ease;
}

#page-where .machine-showcase-card:hover{
  transform:translateY(-7px);
  box-shadow:0 26px 58px rgba(38,0,51,.14);
}

#page-where .machine-showcase-image{
  position:relative;
  display:grid;
  place-items:center;
  height:clamp(390px,36vw,540px);
  overflow:hidden;
  background:linear-gradient(180deg,#fff,var(--sg-light-lavender));
}

#page-where .machine-showcase-image::after{
  content:"";
  position:absolute;
  right:12%;
  bottom:5%;
  left:12%;
  height:24px;
  border-radius:50%;
  background:rgba(38,0,51,.13);
  filter:blur(13px);
}

#page-where .machine-showcase-image img{
  position:relative;
  z-index:1;
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center;
  transition:transform .35s ease;
}

#page-where .machine-showcase-card:hover img{
  transform:scale(1.025);
}

#page-where .machine-showcase-card figcaption{
  flex:1;
  padding:24px 24px 27px;
  border-top:1px solid var(--sg-line);
}

#page-where .machine-showcase-card figcaption > span{
  display:inline-flex;
  margin-bottom:10px;
  color:var(--sg-magenta);
  font-family:var(--font-mono);
  font-size:.7rem;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
}

#page-where .machine-showcase-card h3{
  margin:0 0 9px;
  color:var(--sg-ink) !important;
  font-size:clamp(1.35rem,1.8vw,1.75rem);
}

#page-where .machine-showcase-card p{
  margin:0;
  color:var(--sg-copy);
  font-size:.94rem;
  line-height:1.55;
}

#page-where .machine-showcase-note{
  max-width:820px;
  margin:24px auto 0;
  color:var(--sg-copy);
  font-size:.85rem;
  line-height:1.55;
  text-align:center;
}

#page-where .section-head{
  max-width:820px;
  margin-bottom:34px !important;
}

#page-where .section-head h2{
  margin-top:13px !important;
  color:var(--sg-ink) !important;
  font-size:clamp(2.25rem,3.5vw,3.75rem) !important;
  line-height:1.04 !important;
  letter-spacing:-.04em !important;
  text-wrap:balance;
}

#page-where .eyebrow{
  border:0 !important;
  background:var(--sg-english-purple) !important;
  color:#fff !important;
  box-shadow:none !important;
}

#page-where :is(.industry-primary-grid,.industry-secondary-grid,.qual-grid){
  gap:22px !important;
}

#page-where :is(.industry-card--primary,.industry-card--secondary,.qual-card){
  min-height:0 !important;
  padding:clamp(24px,2.6vw,32px) !important;
  border:1px solid var(--sg-line) !important;
  border-radius:24px !important;
  box-shadow:0 16px 38px rgba(38,0,51,.08) !important;
}

#page-where .industry-card--primary:nth-child(1){border-top:5px solid var(--sg-magenta) !important;}
#page-where .industry-card--primary:nth-child(2){border-top:5px solid var(--sg-english-purple) !important;}
#page-where .industry-card--primary:nth-child(3){border-top:5px solid var(--sg-coral) !important;}

#page-where :is(.industry-card--primary,.industry-card--secondary,.qual-card):hover{
  transform:translateY(-5px) !important;
  box-shadow:0 22px 48px rgba(38,0,51,.12) !important;
}

#page-where .card-icon,
#page-where .qual-icon{
  border-color:rgba(122,42,145,.25) !important;
  background:var(--sg-classic-lavender) !important;
  box-shadow:none !important;
}

#page-where .industry-card--primary h3,
#page-where .industry-card--secondary h3,
#page-where .qual-card h3{
  color:var(--sg-ink) !important;
}

#page-where .fit-banner{
  padding:clamp(52px,6vw,76px) 24px !important;
  background:var(--sg-classic-lavender) !important;
}

#page-where .fit-banner .container{
  max-width:1180px;
  padding:clamp(38px,5vw,64px) clamp(26px,6vw,76px);
  border:2px solid var(--sg-english-purple);
  border-radius:30px;
  background:var(--sg-light-lavender);
  box-shadow:8px 9px 0 var(--sg-english-purple);
  text-align:center;
}

#page-where .fit-banner-kicker{
  display:inline-flex;
  margin-bottom:18px;
  padding:8px 14px;
  border-radius:999px;
  background:var(--sg-english-purple);
  color:#fff;
  font-family:var(--font-mono);
  font-size:.7rem;
  font-weight:700;
  letter-spacing:.11em;
  line-height:1;
  text-transform:uppercase;
}

#page-where .fit-banner p{
  max-width:960px !important;
  margin:0 auto !important;
  color:var(--sg-ink) !important;
  font-size:clamp(2rem,3.3vw,3.65rem) !important;
  line-height:1.08 !important;
  letter-spacing:-.035em !important;
  text-wrap:balance;
}

#page-where .fit-banner .hi{
  color:var(--sg-magenta) !important;
  background:none !important;
  text-decoration:underline;
  text-decoration-color:rgba(183,40,136,.28);
  text-decoration-thickness:.14em;
  text-underline-offset:.08em;
}

#page-where .where-final{
  max-width:960px;
  margin-inline:auto;
  padding:clamp(42px,5vw,64px) clamp(24px,5vw,56px) !important;
  text-align:center;
}

#page-where .where-final h2{
  font-size:clamp(2.2rem,3.5vw,3.7rem) !important;
  line-height:1.05 !important;
}

#page-where .where-final .lead{
  color:var(--sg-copy) !important;
}

#page-where .where-final .btn{
  border-color:var(--sg-ink) !important;
  background:var(--sg-magenta) !important;
  color:#fff !important;
  box-shadow:5px 6px 0 var(--sg-english-purple) !important;
}

@media(max-width:1120px){
  #page-where .where-hero-grid{grid-template-columns:1fr !important;}
  #page-where .where-hero-copy{max-width:780px;}
  #page-where .where-visual{min-height:600px !important;}
}

@media(max-width:900px){
  #page-where .machine-showcase-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  #page-where .machine-showcase-card:last-child{
    grid-column:1 / -1;
    width:min(100%,calc(50% - 9px));
    justify-self:center;
  }
}

@media(max-width:720px){
  #page-where .where-hero{padding:36px 0 46px !important;}
  #page-where .where-hero h1{font-size:clamp(2.5rem,11vw,3.7rem) !important;}
  #page-where .where-visual{min-height:auto !important;}
  #page-where .fit-journey{transform:none !important;}
  #page-where .fit-banner{padding:42px 18px !important;}
  #page-where .fit-banner .container{padding:34px 20px;border-radius:24px;box-shadow:6px 7px 0 var(--sg-english-purple);}
  #page-where .fit-banner p{font-size:clamp(1.75rem,8.5vw,2.6rem) !important;}
}

@media(max-width:620px){
  #page-where .machine-showcase-grid{grid-template-columns:1fr;}
  #page-where .machine-showcase-card:last-child{
    grid-column:auto;
    width:100%;
  }
  #page-where .machine-showcase-image{height:min(128vw,520px);}
}

/* Generated branded scenes, derived from the supplied machine mockups. */
#page-where .where-hero-creative{
  position:relative;
  width:100%;
  margin:0;
  overflow:hidden;
  border:1px solid var(--sg-line);
  border-radius:30px;
  background:var(--sg-white);
  box-shadow:0 24px 58px rgba(38,0,51,.14);
  transform:rotate(1deg);
}

#page-where .where-hero-creative::after{
  content:"";
  position:absolute;
  inset:0;
  border:8px solid rgba(255,253,253,.48);
  border-radius:inherit;
  pointer-events:none;
}

#page-where .where-hero-creative img{
  display:block;
  width:100%;
  aspect-ratio:1.42;
  object-fit:cover;
  object-position:34% center;
}

#page-where .where-hero-creative figcaption{
  position:absolute;
  right:18px;
  bottom:16px;
  display:flex;
  align-items:center;
  gap:8px;
  padding:9px 13px;
  border-radius:999px;
  background:rgba(255,253,253,.9);
  color:var(--sg-ink);
  font-size:.72rem;
  font-weight:800;
  backdrop-filter:blur(10px);
}

#page-where .where-hero-creative figcaption span{
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--sg-magenta);
  box-shadow:0 0 0 4px rgba(183,40,136,.15);
}

#page-where .where-visual > .fit-journey{
  display:grid !important;
}

#page-where .placement-creative{
  position:relative;
  display:grid;
  grid-template-columns:minmax(0,1.25fr) minmax(300px,.75fr);
  align-items:stretch;
  max-width:1080px;
  margin:42px auto 0;
  overflow:hidden;
  border:2px solid var(--sg-english-purple);
  border-radius:30px;
  background:var(--sg-white);
  box-shadow:8px 9px 0 var(--sg-english-purple);
}

#page-where .placement-creative > img{
  display:block;
  width:100%;
  height:100%;
  min-height:390px;
  object-fit:cover;
  object-position:left center;
}

#page-where .placement-creative figcaption{
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:clamp(28px,4vw,46px);
  background:var(--sg-light-lavender);
}

#page-where .placement-kicker{
  display:inline-flex;
  align-items:center;
  align-self:flex-start;
  gap:9px;
  margin-bottom:18px;
  color:var(--sg-english-purple);
  font-family:var(--font-mono);
  font-size:.68rem;
  font-weight:700;
  letter-spacing:.1em;
  text-transform:uppercase;
}

#page-where .placement-kicker i{
  width:9px;
  height:9px;
  border-radius:50%;
  background:var(--sg-magenta);
  box-shadow:0 0 0 5px rgba(183,40,136,.14);
}

#page-where .placement-creative h3{
  margin:0 0 12px;
  color:var(--sg-ink) !important;
  font-size:clamp(2rem,3vw,3.15rem);
  line-height:1;
  letter-spacing:-.04em;
}

#page-where .placement-creative p{
  margin:0;
  color:var(--sg-copy);
  font-size:.98rem;
  line-height:1.6;
}

#page-where .placement-tags{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:22px;
}

#page-where .placement-tags span{
  padding:7px 10px;
  border:1px solid var(--sg-line);
  border-radius:999px;
  background:var(--sg-white);
  color:var(--sg-ink);
  font-size:.7rem;
  font-weight:800;
}

#page-home .campus-drop{
  display:block !important;
  width:100% !important;
  min-height:0 !important;
  margin:0 !important;
  padding:clamp(52px,6vw,76px) 0 !important;
  border:0 !important;
  border-radius:0 !important;
  background:var(--sg-classic-lavender) !important;
  box-shadow:none !important;
  overflow:hidden !important;
}

#page-home .campus-drop::before,
#page-home .campus-drop::after{
  display:none !important;
  content:none !important;
}

#page-home .campus-drop-inner{
  display:grid;
  grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);
  align-items:center;
  gap:clamp(34px,5vw,68px);
  width:min(1180px,calc(100% - 48px));
  margin:0 auto;
  padding:0;
}

#page-home .campus-drop-copy{
  width:100%;
  max-width:500px !important;
  text-align:left;
}

#page-home .campus-drop h2{
  max-width:500px;
  font-size:clamp(2.6rem,4.2vw,4.5rem) !important;
  line-height:1 !important;
  text-align:left;
}

#page-home .campus-drop p{
  max-width:500px;
  text-align:left;
}

#page-home .campus-machine-creative{
  position:relative;
  width:100%;
  max-width:590px;
  justify-self:end;
  margin:0;
  overflow:hidden;
  border:2px solid var(--sg-english-purple);
  border-radius:30px;
  background:var(--sg-white);
  box-shadow:9px 10px 0 var(--sg-english-purple);
}

#page-home .campus-machine-creative img{
  display:block;
  width:100%;
  height:360px !important;
  max-height:360px !important;
  aspect-ratio:auto !important;
  object-fit:cover;
  object-position:55% center;
}

#page-home .hero-video-machine{
  width:clamp(270px,17vw,330px) !important;
  top:50% !important;
  left:50% !important;
  transform:translate(-50%,-50%) !important;
}

#page-home .hero-visual{
  min-height:560px !important;
}

#page-contact .contact-visual{
  min-height:470px !important;
}

#page-contact .visit-card{
  width:min(350px,82%) !important;
  padding:16px !important;
}

#page-home .machine-intel-card{
  grid-template-columns:minmax(0,1fr) minmax(430px,.86fr) !important;
}

#page-home .machine-intel-visual{
  min-height:320px !important;
  padding:20px;
}

#page-home .intel-machine-creative{
  position:relative;
  z-index:2;
  width:min(100%,520px);
  margin:0;
  overflow:hidden;
  border:2px solid var(--sg-english-purple);
  border-radius:26px;
  background:var(--sg-light-lavender);
  box-shadow:7px 8px 0 var(--sg-english-purple),0 20px 45px rgba(38,0,51,.12);
  transform:rotate(-1deg);
}

#page-home .intel-machine-creative img{
  display:block;
  width:100%;
  height:auto !important;
  aspect-ratio:3/2;
  object-fit:cover;
  object-position:center;
}

#page-home .intel-machine-creative figcaption{
  position:absolute;
  right:14px;
  bottom:13px;
  display:flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,253,253,.92);
  color:var(--sg-ink);
  font-size:.68rem;
  font-weight:800;
  backdrop-filter:blur(10px);
}

#page-home .intel-machine-creative figcaption i{
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--sg-magenta);
  box-shadow:0 0 0 4px rgba(183,40,136,.15);
}

#page-home .intel-product{
  z-index:4 !important;
  width:72px !important;
  height:72px !important;
  border:1px solid rgba(122,42,145,.22) !important;
  box-shadow:0 14px 28px rgba(38,0,51,.14) !important;
}

#page-home .intel-product img{
  width:55px !important;
  height:55px !important;
}

#page-home .intel-product--one{left:-1% !important;top:0 !important;}
#page-home .intel-product--two{right:-1% !important;top:-2% !important;}
#page-home .intel-product--three{right:2% !important;bottom:0 !important;}

@media(max-width:1120px){
  #page-home .campus-drop-inner{grid-template-columns:1fr;}
  #page-home .campus-drop-copy{max-width:720px !important;margin-inline:auto;text-align:center;}
  #page-home .campus-drop h2,
  #page-home .campus-drop p{max-width:720px;text-align:center;}
  #page-home .campus-chip-row{justify-content:center;}
  #page-home .campus-machine-creative{width:min(720px,100%);justify-self:center;}
}

@media(max-width:720px){
  #page-where .where-hero-creative{border-radius:24px;transform:none;}
  #page-where .where-hero-creative img{aspect-ratio:1.15;object-position:36% center;}
  #page-where .where-hero-creative figcaption{right:12px;bottom:11px;font-size:.65rem;}
  #page-home .campus-drop{padding:42px 0 !important;}
  #page-home .campus-drop-inner{width:calc(100% - 32px);gap:28px;}
  #page-home .campus-machine-creative{border-radius:24px;box-shadow:6px 7px 0 var(--sg-english-purple);}
  #page-home .campus-machine-creative img{height:270px !important;max-height:270px !important;object-position:60% center;}
  #page-home .hero-visual{min-height:440px !important;}
  #page-home .hero-video-machine{width:min(56vw,250px) !important;}
  #page-contact .contact-visual{min-height:430px !important;}
  #page-where .placement-creative{grid-template-columns:1fr;border-radius:24px;box-shadow:6px 7px 0 var(--sg-english-purple);}
  #page-where .placement-creative > img{height:auto;min-height:0;aspect-ratio:16/9;object-position:center;}
  #page-where .placement-creative figcaption{padding:28px 22px 30px;}
}

@media(max-width:980px){
  #page-home .machine-intel-card{grid-template-columns:1fr !important;}
  #page-home .intel-machine-creative{width:min(620px,100%);transform:none;}
}

@media(max-width:620px){
  #page-home .machine-intel-visual{min-height:250px !important;padding:8px;}
  #page-home .intel-machine-creative{border-radius:20px;box-shadow:5px 6px 0 var(--sg-english-purple);}
  #page-home .intel-product{width:56px !important;height:56px !important;}
  #page-home .intel-product img{width:42px !important;height:42px !important;}
  #page-home .intel-machine-creative figcaption{right:9px;bottom:8px;font-size:.6rem;}
}
