:root{
  --exc-bg:#070707;
  --exc-bg-2:#101010;
  --exc-panel:#151515;
  --exc-text:#f4f4f2;
  --exc-muted:#a8a8a4;
  --exc-line:rgba(255,255,255,.13);
  --exc-pink:#ff1d84;
  --exc-green:#00ff1a;
  --exc-max:1220px;
  --exc-radius:18px;
  --exc-shadow:0 18px 60px rgba(0,0,0,.35);
}

*{box-sizing:border-box}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  background:var(--exc-bg);
  color:var(--exc-text);
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  line-height:1.6;
}

a{color:inherit}

img{
  max-width:100%;
  height:auto;
}

.exc-shell{
  width:min(calc(100% - 40px),var(--exc-max));
  margin-inline:auto;
}

.exc-site-main{
  min-height:70vh;
}

.screen-reader-text{
  position:absolute;
  left:-9999px;
}


/* =========================================================
   FLOATING NAV
   ========================================================= */

.exc-floating-nav-wrap{
  position:fixed;
  z-index:9999;
  top:18px;
  left:0;
  right:0;
  pointer-events:none;
  transition:.25s ease;
}

.exc-floating-nav{
  width:min(calc(100% - 32px),1180px);
  min-height:70px;
  margin:auto;
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:28px;
  padding:12px 16px 12px 14px;
  border:1px solid rgba(255,255,255,.16);
  border-radius:22px;
  background:rgba(9,9,9,.74);
  backdrop-filter:blur(20px) saturate(125%);
  box-shadow:var(--exc-shadow);
  pointer-events:auto;
  transition:.25s ease;
}

.exc-floating-nav-wrap.is-scrolled{
  top:10px;
}

.exc-floating-nav-wrap.is-scrolled .exc-floating-nav{
  min-height:58px;
  background:rgba(7,7,7,.92);
  border-radius:17px;
}

.exc-brand{
  display:flex;
  align-items:center;
  gap:11px;
  text-decoration:none;
  font-weight:800;
  letter-spacing:.08em;
  font-size:.85rem;
  white-space:nowrap;
}

.exc-brand img{
  width:44px;
  height:44px;
  object-fit:contain;
}

.exc-floating-nav-wrap.is-scrolled .exc-brand img{
  width:36px;
  height:36px;
}

.exc-brand strong{
  font-weight:450;
  color:var(--exc-muted);
}

.exc-nav-links{
  justify-self:center;
}

.exc-menu{
  display:flex;
  gap:24px;
  list-style:none;
  margin:0;
  padding:0;
}

.exc-menu a{
  text-decoration:none;
  color:#d7d7d4;
  font-size:.91rem;
  font-weight:650;
}

.exc-menu a:hover{
  color:#fff;
}

.exc-menu li:nth-child(odd) a:hover{
  text-shadow:0 0 18px rgba(255,29,132,.6);
}

.exc-menu li:nth-child(even) a:hover{
  text-shadow:0 0 18px rgba(0,255,26,.45);
}

.exc-cart-link{
  display:flex;
  align-items:center;
  gap:8px;
  text-decoration:none;
  font-weight:750;
  font-size:.9rem;
  border:1px solid var(--exc-line);
  padding:9px 12px;
  border-radius:12px;
}

.exc-cart-count{
  min-width:22px;
  height:22px;
  border-radius:999px;
  display:inline-grid;
  place-items:center;
  background:#fff;
  color:#080808;
  font-size:.72rem;
}

.exc-menu-toggle{
  display:none;
  background:none;
  border:0;
  padding:7px;
  cursor:pointer;
}

.exc-menu-toggle span:not(.screen-reader-text){
  display:block;
  width:24px;
  height:2px;
  background:#fff;
  margin:5px 0;
}


/* =========================================================
   HERO
   ========================================================= */

.exc-hero{
  position:relative;
  overflow:hidden;
  min-height:820px;
  padding:190px 0 110px;
  display:flex;
  align-items:center;
  background:
    radial-gradient(circle at 75% 30%,rgba(0,255,26,.06),transparent 28%),
    radial-gradient(circle at 20% 70%,rgba(255,29,132,.06),transparent 32%),
    #080808;
}

.exc-grid-lines{
  position:absolute;
  inset:0;
  opacity:.22;
  pointer-events:none;
  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:36px 36px;
  mask-image:linear-gradient(to bottom,transparent 0%,#000 15%,#000 85%,transparent 100%);
}

.exc-hero-grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:70px;
  align-items:center;
}

.exc-eyebrow,
.exc-kicker{
  color:#c8c8c4;
  letter-spacing:.18em;
  font-size:.76rem;
  font-weight:800;
}

.exc-hero h1{
  max-width:800px;
  margin:14px 0 22px;
  font-size:clamp(3.8rem,7.5vw,7.8rem);
  line-height:.89;
  letter-spacing:-.055em;
}

.exc-hero p{
  max-width:600px;
  color:var(--exc-muted);
  font-size:1.12rem;
}

.exc-hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:32px;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.exc-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:0 20px;
  border-radius:12px;
  text-decoration:none;
  font-weight:800;
  letter-spacing:.025em;
  transition:
    transform .2s ease,
    box-shadow .2s ease,
    background .2s ease,
    border-color .2s ease;
}

.exc-btn-primary{
  background:#f5f5f2;
  color:#080808;
}

.exc-btn-ghost{
  border:1px solid rgba(255,255,255,.2);
  background:rgba(255,255,255,.03);
}


/* LED button base */

.exc-btn-led{
  position:relative;
  isolation:isolate;
  overflow:hidden;
  color:#fff;
  border:1px solid rgba(255,255,255,.18);
}


/* SHOP ECKSELLENT — PINK */

.exc-hero-actions .exc-btn-led:first-child{
  background:
    linear-gradient(
      135deg,
      rgba(255,29,132,.58),
      rgba(125,8,60,.88)
    );

  border-color:rgba(255,29,132,.9);

  box-shadow:
    0 0 18px rgba(255,29,132,.30),
    0 0 34px rgba(255,29,132,.12),
    inset 0 0 18px rgba(255,29,132,.15);
}


/* START CUSTOM PROJECT — GREEN */

.exc-hero-actions .exc-btn-led:last-child{
  background:
    linear-gradient(
      135deg,
      rgba(0,255,26,.45),
      rgba(0,75,12,.90)
    );

  border-color:rgba(0,255,26,.82);

  box-shadow:
    0 0 18px rgba(0,255,26,.25),
    0 0 34px rgba(0,255,26,.10),
    inset 0 0 18px rgba(0,255,26,.12);
}


/* HERO BUTTON HOVERS */

.exc-hero-actions .exc-btn-led:first-child:hover{
  transform:translateY(-2px);

  background:
    linear-gradient(
      135deg,
      rgba(255,29,132,.74),
      rgba(155,10,75,.94)
    );

  box-shadow:
    0 0 28px rgba(255,29,132,.52),
    0 0 48px rgba(255,29,132,.16),
    inset 0 0 22px rgba(255,29,132,.20);
}

.exc-hero-actions .exc-btn-led:last-child:hover{
  transform:translateY(-2px);

  background:
    linear-gradient(
      135deg,
      rgba(0,255,26,.60),
      rgba(0,105,18,.94)
    );

  box-shadow:
    0 0 28px rgba(0,255,26,.42),
    0 0 48px rgba(0,255,26,.14),
    inset 0 0 22px rgba(0,255,26,.17);
}


/* LED button used elsewhere, such as Let's Build It */

.exc-weird .exc-btn-led{
  background:
    linear-gradient(
      135deg,
      rgba(255,29,132,.38),
      rgba(20,20,20,.96) 46%,
      rgba(20,20,20,.96) 54%,
      rgba(0,255,26,.28)
    );

  border-color:rgba(255,255,255,.22);

  box-shadow:
    -8px -8px 24px rgba(255,29,132,.18),
    8px 8px 24px rgba(0,255,26,.15);
}

.exc-weird .exc-btn-led:hover{
  transform:translateY(-2px);

  box-shadow:
    -12px -12px 32px rgba(255,29,132,.28),
    12px 12px 32px rgba(0,255,26,.23);
}


/* =========================================================
   HERO LOGO
   ========================================================= */

.exc-hero-mark{
  position:relative;
  display:grid;
  place-items:center;
  min-height:520px;
  transform:translateX(-55px);
}

.exc-hero-mark img{
  width:720px;
  max-width:none;
  filter:drop-shadow(0 0 26px rgba(255,255,255,.03));
}

.exc-dimension{
  position:absolute;
  left:9%;
  right:9%;
  top:6%;
  height:18px;
  border-top:1px solid rgba(255,255,255,.22);
}

.exc-dimension:before,
.exc-dimension:after{
  content:"";
  position:absolute;
  top:-7px;
  width:1px;
  height:14px;
  background:rgba(255,255,255,.35);
}

.exc-dimension:before{
  left:0;
}

.exc-dimension:after{
  right:0;
}

.exc-dimension span{
  position:absolute;
  left:50%;
  transform:translate(-50%,-65%);
  background:#080808;
  padding:0 10px;
  font-size:.68rem;
  letter-spacing:.18em;
  color:#8e8e8b;
}

.exc-crosshair{
  position:absolute;
  width:34px;
  height:34px;
  right:8%;
  bottom:15%;
}

.exc-crosshair:before,
.exc-crosshair:after{
  content:"";
  position:absolute;
  background:rgba(255,255,255,.28);
}

.exc-crosshair:before{
  width:34px;
  height:1px;
  top:50%;
}

.exc-crosshair:after{
  height:34px;
  width:1px;
  left:50%;
}


/* =========================================================
   GENERAL SECTIONS
   ========================================================= */

.exc-section{
  padding:110px 0;
  background:#0a0a0a;
}

.exc-section-dark{
  background:#101010;
  border-top:1px solid var(--exc-line);
  border-bottom:1px solid var(--exc-line);
}

.exc-section-heading{
  max-width:760px;
  margin-bottom:48px;
}

.exc-section-heading h2,
.exc-weird h2,
.exc-page-header h1{
  margin:8px 0 14px;
  font-size:clamp(2.4rem,4vw,4.8rem);
  line-height:1;
  letter-spacing:-.045em;
}

.exc-section-heading p,
.exc-weird p{
  color:var(--exc-muted);
  font-size:1.08rem;
}

.exc-section-heading-row{
  max-width:none;
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:24px;
}

.exc-text-link{
  text-decoration:none;
  color:#d9d9d5;
  font-weight:700;
}


/* =========================================================
   CAPABILITY CARDS
   ========================================================= */

.exc-capability-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:22px;
}

.exc-card{
  position:relative;
  grid-column:span 2;
  min-height:260px;
  padding:28px;
  border:1px solid rgba(255,255,255,.13);
  border-radius:var(--exc-radius);

  background:
    linear-gradient(
      135deg,
      rgba(255,29,132,.055) 0%,
      rgba(255,29,132,.015) 35%,
      rgba(0,0,0,0) 50%,
      rgba(0,255,26,.015) 65%,
      rgba(0,255,26,.055) 100%
    ),
    #111;

  box-shadow:
    -8px -8px 28px rgba(255,29,132,.18),
    8px 8px 28px rgba(0,255,26,.14),
    inset 0 0 24px rgba(255,255,255,.015);

  overflow:hidden;

  transition:
    transform .25s ease,
    box-shadow .25s ease,
    border-color .25s ease;
}

.exc-card-wide{
  grid-column:span 3;
  min-height:280px;
}

.exc-card::before{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius:inherit;
  padding:1px;

  background:
    linear-gradient(
      135deg,
      rgba(255,29,132,.90) 0%,
      rgba(255,29,132,.25) 38%,
      rgba(255,255,255,.08) 50%,
      rgba(0,255,26,.25) 62%,
      rgba(0,255,26,.85) 100%
    );

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite:xor;
  mask-composite:exclude;

  pointer-events:none;
}

.exc-card::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;

  background:
    radial-gradient(circle at 0% 0%,rgba(255,29,132,.11),transparent 40%),
    radial-gradient(circle at 100% 100%,rgba(0,255,26,.09),transparent 40%);

  pointer-events:none;
}

.exc-card > *{
  position:relative;
  z-index:1;
}

.exc-card span{
  font-size:.72rem;
  color:#8d8d88;
  letter-spacing:.16em;
}

.exc-card h3{
  font-size:1.45rem;
  margin:70px 0 10px;
}

.exc-card p{
  color:var(--exc-muted);
  margin:0;
}

.exc-card:hover{
  transform:translateY(-4px);
  border-color:rgba(255,255,255,.20);

  box-shadow:
    -12px -12px 38px rgba(255,29,132,.28),
    12px 12px 38px rgba(0,255,26,.22),
    inset 0 0 30px rgba(255,255,255,.02);
}


/* =========================================================
   EXC ENGINEERING SECTION INDEXES
   ========================================================= */

.exc-section-index{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:24px;
  color:#62625f;
  font-size:.65rem;
  font-weight:800;
  letter-spacing:.20em;
}

.exc-section-index::after{
  content:"";
  display:block;
  width:84px;
  height:1px;

  background:
    linear-gradient(
      90deg,
      rgba(255,29,132,.65),
      rgba(255,255,255,.12) 50%,
      rgba(0,255,26,.55)
    );
}


/* =========================================================
   SHOP SHOWROOM
   ========================================================= */

.exc-shop-section{
  background:
    radial-gradient(circle at 0% 20%,rgba(255,29,132,.035),transparent 28%),
    radial-gradient(circle at 100% 80%,rgba(0,255,26,.03),transparent 30%),
    #090909;
}

.exc-shop-intro{
  max-width:660px;
  margin:10px 0 0;
  color:var(--exc-muted);
}


/* =========================================================
   HAVE SOMETHING WEIRD
   ========================================================= */

.exc-weird{
  background:
    radial-gradient(circle at 0% 0%,rgba(255,29,132,.035),transparent 30%),
    radial-gradient(circle at 100% 100%,rgba(0,255,26,.03),transparent 30%),
    #070707;

  border-top:1px solid var(--exc-line);
}

.exc-weird-panel{
  position:relative;

  display:grid;
  grid-template-columns:1fr 1fr;

  gap:80px;

  align-items:center;

  padding:54px;

  border:1px solid rgba(255,255,255,.14);
  border-radius:24px;

  background:
    linear-gradient(
      135deg,
      rgba(255,29,132,.055),
      rgba(15,15,15,.97) 38%,
      rgba(15,15,15,.97) 62%,
      rgba(0,255,26,.05)
    );

  box-shadow:
    -14px -14px 44px rgba(255,29,132,.17),
    14px 14px 44px rgba(0,255,26,.13);

  overflow:hidden;
}

.exc-weird-panel::before{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius:inherit;
  padding:1px;

  background:
    linear-gradient(
      135deg,
      rgba(255,29,132,.90),
      rgba(255,29,132,.18) 42%,
      rgba(255,255,255,.07) 50%,
      rgba(0,255,26,.18) 58%,
      rgba(0,255,26,.86)
    );

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite:xor;
  mask-composite:exclude;

  pointer-events:none;
}

.exc-weird-panel::after{
  content:"";
  position:absolute;
  inset:0;

  background:
    radial-gradient(circle at 0% 0%,rgba(255,29,132,.10),transparent 34%),
    radial-gradient(circle at 100% 100%,rgba(0,255,26,.08),transparent 34%);

  pointer-events:none;
}

.exc-weird-panel > *{
  position:relative;
  z-index:1;
}

.exc-weird p{
  white-space:normal;
  margin-bottom:26px;
}


/* =========================================================
   INNER PAGES
   ========================================================= */

.exc-page{
  padding:170px 0 100px;
  min-height:70vh;
}

.exc-page-shell{
  max-width:1050px;
}

.exc-page-header{
  margin-bottom:48px;
}

.exc-entry-content{
  font-size:1.04rem;
  color:#d7d7d3;
}

.exc-entry-content a{
  color:#fff;
}

.exc-post{
  padding:28px 0;
  border-bottom:1px solid var(--exc-line);
}


/* =========================================================
   FOOTER
   ========================================================= */

.exc-footer{
  padding:50px 0 34px;
  background:#050505;
  border-top:1px solid var(--exc-line);
}

.exc-footer-grid{
  display:grid;
  grid-template-columns:1fr auto auto;
  gap:40px;
  align-items:end;
}

.exc-footer-brand{
  font-weight:850;
  letter-spacing:.1em;
}

.exc-footer-brand strong{
  color:#8e8e8a;
  font-weight:450;
}

.exc-footer p,
.exc-footer-meta{
  color:#777771;
  font-size:.86rem;
}

.exc-footer-menu{
  display:flex;
  gap:18px;
  list-style:none;
  margin:0;
  padding:0;
}

.exc-footer-menu a{
  text-decoration:none;
  color:#aaa;
}


/* =========================================================
   WOOCOMMERCE
   ========================================================= */

.woocommerce ul.products{
  display:grid!important;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:22px;
  margin:0!important;
}

.woocommerce ul.products:before,
.woocommerce ul.products:after{
  display:none!important;
}

.woocommerce ul.products li.product{
  position:relative;
  width:auto!important;
  margin:0!important;
  padding:16px;

  border:1px solid rgba(255,255,255,.13);
  border-radius:18px;

  background:
    linear-gradient(
      135deg,
      rgba(255,29,132,.045),
      #111 38%,
      #111 62%,
      rgba(0,255,26,.04)
    );

  box-shadow:
    -7px -7px 24px rgba(255,29,132,.13),
    7px 7px 24px rgba(0,255,26,.10);

  overflow:hidden;

  transition:
    transform .25s ease,
    box-shadow .25s ease,
    border-color .25s ease;
}

.woocommerce ul.products li.product::before{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius:inherit;
  padding:1px;

  background:
    linear-gradient(
      135deg,
      rgba(255,29,132,.78),
      rgba(255,29,132,.14) 40%,
      rgba(255,255,255,.06) 50%,
      rgba(0,255,26,.14) 60%,
      rgba(0,255,26,.74)
    );

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite:xor;
  mask-composite:exclude;

  pointer-events:none;
}

.woocommerce ul.products li.product:hover{
  transform:translateY(-5px);

  border-color:rgba(255,255,255,.21);

  box-shadow:
    -12px -12px 34px rgba(255,29,132,.22),
    12px 12px 34px rgba(0,255,26,.17);
}

.woocommerce ul.products li.product img{
  position:relative;
  z-index:1;
  border-radius:12px;
  margin-bottom:14px!important;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product .price,
.woocommerce ul.products li.product .button{
  position:relative;
  z-index:1;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title{
  color:#fff;
  font-size:1rem!important;
}

.woocommerce ul.products li.product .price{
  color:#d8d8d4!important;
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button{
  background:#f2f2ee!important;
  color:#080808!important;
  border-radius:10px!important;
  font-weight:800!important;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error{
  background:#111!important;
  color:#eee!important;
  border-color:#333!important;
}


/* =========================================================
   TABLET / SMALL DESKTOP
   ========================================================= */

@media (max-width:980px){

  .exc-floating-nav{
    grid-template-columns:auto auto auto;
    gap:10px;
  }

  .exc-nav-links{
    display:none;
    position:absolute;
    top:74px;
    left:16px;
    right:16px;
    background:rgba(8,8,8,.98);
    border:1px solid var(--exc-line);
    border-radius:16px;
    padding:16px;
  }

  .exc-nav-links.is-open{
    display:block;
  }

  .exc-menu{
    flex-direction:column;
    gap:5px;
  }

  .exc-menu a{
    display:block;
    padding:12px 10px;
  }

  .exc-menu-toggle{
    display:block;
    justify-self:end;
  }

  .exc-brand span{
    display:none;
  }

  .exc-cart-link{
    justify-self:end;
  }

  .exc-hero{
    min-height:auto;
    padding-top:145px;
  }

  .exc-hero-grid{
    grid-template-columns:1fr;
    gap:40px;
    width:100%;
    margin:0 auto;
  }

  .exc-hero-copy{
    width:100%;
    margin:0 auto;
  }

  .exc-hero-mark{
    min-height:380px;
    transform:none;
    overflow:hidden;
    width:100%;
    margin:0 auto;
    padding:0 14px;
  }

  .exc-hero-mark img{
    width:100%!important;
    max-width:560px!important;
    height:auto;
    display:block;
    margin:0 auto;
  }

  .exc-capability-grid{
    grid-template-columns:1fr;
  }

  .exc-card,
  .exc-card-wide{
    grid-column:auto;
  }

  .exc-weird-panel{
    grid-template-columns:1fr;
    gap:32px;
    padding:38px;
  }

  .woocommerce ul.products{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .exc-footer-grid{
    grid-template-columns:1fr;
  }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width:620px):root{
  --exc-bg:#070707;
  --exc-bg-2:#101010;
  --exc-panel:#151515;
  --exc-text:#f4f4f2;
  --exc-muted:#a8a8a4;
  --exc-line:rgba(255,255,255,.13);
  --exc-pink:#ff1d84;
  --exc-green:#00ff1a;
  --exc-max:1220px;
  --exc-radius:18px;
  --exc-shadow:0 18px 60px rgba(0,0,0,.35);
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  background:var(--exc-bg);
  color:var(--exc-text);
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  line-height:1.6;
}

a{
  color:inherit;
}

img{
  max-width:100%;
  height:auto;
}

.exc-shell{
  width:min(calc(100% - 40px),var(--exc-max));
  margin-inline:auto;
}

.exc-site-main{
  min-height:70vh;
}

.screen-reader-text{
  position:absolute;
  left:-9999px;
}


/* =========================================================
   FLOATING NAV
   ========================================================= */

.exc-floating-nav-wrap{
  position:fixed;
  z-index:9999;
  top:18px;
  left:0;
  right:0;
  pointer-events:none;
  transition:.25s ease;
}

.exc-floating-nav{
  position:relative;

  width:min(calc(100% - 32px),1180px);
  min-height:70px;
  margin:auto;

  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:28px;

  padding:12px 16px 12px 14px;

  border:1px solid rgba(255,255,255,.16);
  border-radius:22px;

  background:
    linear-gradient(
      135deg,
      rgba(255,29,132,.055),
      rgba(9,9,9,.92) 35%,
      rgba(9,9,9,.92) 65%,
      rgba(0,255,26,.045)
    );

  backdrop-filter:blur(20px) saturate(125%);

  box-shadow:
    -9px -7px 28px rgba(255,29,132,.14),
    9px 7px 28px rgba(0,255,26,.11),
    0 18px 60px rgba(0,0,0,.40);

  pointer-events:auto;

  transition:
    min-height .25s ease,
    background .25s ease,
    border-radius .25s ease,
    box-shadow .25s ease;
}

.exc-floating-nav::before{
  content:"";

  position:absolute;
  inset:-1px;

  border-radius:inherit;
  padding:1px;

  background:
    linear-gradient(
      135deg,
      rgba(255,29,132,.72),
      rgba(255,29,132,.10) 38%,
      rgba(255,255,255,.05) 50%,
      rgba(0,255,26,.10) 62%,
      rgba(0,255,26,.68)
    );

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite:xor;
  mask-composite:exclude;

  pointer-events:none;
}

.exc-floating-nav-wrap.is-scrolled{
  top:10px;
}

.exc-floating-nav-wrap.is-scrolled .exc-floating-nav{
  min-height:58px;

  background:
    linear-gradient(
      135deg,
      rgba(255,29,132,.075),
      rgba(7,7,7,.96) 35%,
      rgba(7,7,7,.96) 65%,
      rgba(0,255,26,.065)
    );

  border-radius:17px;

  box-shadow:
    -10px -8px 34px rgba(255,29,132,.18),
    10px 8px 34px rgba(0,255,26,.14),
    0 18px 50px rgba(0,0,0,.48);
}


/* =========================================================
   NAV BRAND
   ========================================================= */

.exc-brand{
  position:relative;
  z-index:2;

  display:flex;
  align-items:center;
  gap:11px;

  text-decoration:none;

  font-weight:800;
  letter-spacing:.08em;
  font-size:.85rem;

  white-space:nowrap;
}

.exc-brand img{
  width:44px;
  height:44px;
  object-fit:contain;

  transition:
    width .25s ease,
    height .25s ease;
}

.exc-floating-nav-wrap.is-scrolled .exc-brand img{
  width:36px;
  height:36px;
}

.exc-brand-name{
  color:#f4f4f2;
}

.exc-brand strong{
  font-weight:450;
  color:var(--exc-muted);
}


/* PINK E */

.exc-brand-e{
  color:var(--exc-pink);

  text-shadow:
    0 0 10px rgba(255,29,132,.45),
    0 0 18px rgba(255,29,132,.20);
}


/* GREEN C */

.exc-brand-c{
  color:var(--exc-green);

  text-shadow:
    0 0 10px rgba(0,255,26,.38),
    0 0 18px rgba(0,255,26,.18);
}


/* =========================================================
   NAV LINKS
   ========================================================= */

.exc-nav-links{
  position:relative;
  z-index:2;
  justify-self:center;
}

.exc-menu{
  display:flex;
  gap:24px;

  list-style:none;

  margin:0;
  padding:0;
}

.exc-menu a{
  text-decoration:none;

  color:#d7d7d4;

  font-size:.91rem;
  font-weight:650;

  transition:
    color .2s ease,
    text-shadow .2s ease;
}

.exc-menu a:hover{
  color:#fff;
}

.exc-menu li:nth-child(odd) a:hover{
  text-shadow:
    0 0 18px rgba(255,29,132,.6);
}

.exc-menu li:nth-child(even) a:hover{
  text-shadow:
    0 0 18px rgba(0,255,26,.45);
}


/* =========================================================
   CART
   ========================================================= */

.exc-cart-link{
  position:relative;
  z-index:2;

  display:flex;
  align-items:center;
  gap:8px;

  text-decoration:none;

  font-weight:750;
  font-size:.9rem;

  border:1px solid rgba(255,255,255,.16);

  padding:9px 12px;

  border-radius:12px;

  background:
    linear-gradient(
      135deg,
      rgba(255,29,132,.04),
      rgba(255,255,255,.025) 50%,
      rgba(0,255,26,.04)
    );

  transition:
    border-color .2s ease,
    box-shadow .2s ease,
    transform .2s ease;
}

.exc-cart-link:hover{
  transform:translateY(-1px);

  border-color:rgba(255,255,255,.26);

  box-shadow:
    -5px -4px 15px rgba(255,29,132,.12),
    5px 4px 15px rgba(0,255,26,.10);
}

.exc-cart-count{
  min-width:22px;
  height:22px;

  border-radius:999px;

  display:inline-grid;
  place-items:center;

  background:#fff;
  color:#080808;

  font-size:.72rem;
}


/* =========================================================
   MOBILE MENU BUTTON
   ========================================================= */

.exc-menu-toggle{
  position:relative;
  z-index:2;

  display:none;

  background:none;
  border:0;

  padding:7px;

  cursor:pointer;
}

.exc-menu-toggle span:not(.screen-reader-text){
  display:block;

  width:24px;
  height:2px;

  background:#fff;

  margin:5px 0;
}


/* =========================================================
   HERO
   ========================================================= */

.exc-hero{
  position:relative;

  overflow:hidden;

  min-height:820px;

  padding:190px 0 110px;

  display:flex;
  align-items:center;

  background:
    radial-gradient(
      circle at 75% 30%,
      rgba(0,255,26,.06),
      transparent 28%
    ),

    radial-gradient(
      circle at 20% 70%,
      rgba(255,29,132,.06),
      transparent 32%
    ),

    #080808;
}

.exc-grid-lines{
  position:absolute;
  inset:0;

  opacity:.22;

  pointer-events:none;

  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:36px 36px;

  mask-image:
    linear-gradient(
      to bottom,
      transparent 0%,
      #000 15%,
      #000 85%,
      transparent 100%
    );
}

.exc-hero-grid{
  position:relative;
  z-index:1;

  display:grid;

  grid-template-columns:1.05fr .95fr;

  gap:70px;

  align-items:center;
}

.exc-eyebrow,
.exc-kicker{
  color:#c8c8c4;

  letter-spacing:.18em;

  font-size:.76rem;
  font-weight:800;
}

.exc-hero h1{
  max-width:800px;

  margin:14px 0 22px;

  font-size:clamp(3.8rem,7.5vw,7.8rem);

  line-height:.89;

  letter-spacing:-.055em;
}

.exc-hero p{
  max-width:600px;

  color:var(--exc-muted);

  font-size:1.12rem;
}

.exc-hero-actions{
  display:flex;

  gap:12px;

  flex-wrap:wrap;

  margin-top:32px;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.exc-btn{
  display:inline-flex;

  align-items:center;
  justify-content:center;

  min-height:50px;

  padding:0 20px;

  border-radius:12px;

  text-decoration:none;

  font-weight:800;

  letter-spacing:.025em;

  transition:
    transform .2s ease,
    box-shadow .2s ease,
    background .2s ease,
    border-color .2s ease;
}

.exc-btn-primary{
  background:#f5f5f2;
  color:#080808;
}

.exc-btn-ghost{
  border:1px solid rgba(255,255,255,.2);

  background:rgba(255,255,255,.03);
}

.exc-btn-led{
  position:relative;

  isolation:isolate;

  overflow:hidden;

  color:#fff;

  border:1px solid rgba(255,255,255,.18);
}


/* =========================================================
   SHOP ECKSELLENT BUTTON — PINK
   ========================================================= */

.exc-hero-actions .exc-btn-led:first-child{
  background:
    linear-gradient(
      135deg,
      rgba(255,29,132,.58),
      rgba(125,8,60,.88)
    );

  border-color:rgba(255,29,132,.9);

  box-shadow:
    0 0 18px rgba(255,29,132,.30),
    0 0 34px rgba(255,29,132,.12),
    inset 0 0 18px rgba(255,29,132,.15);
}


/* =========================================================
   START CUSTOM PROJECT BUTTON — GREEN
   ========================================================= */

.exc-hero-actions .exc-btn-led:last-child{
  background:
    linear-gradient(
      135deg,
      rgba(0,255,26,.45),
      rgba(0,75,12,.90)
    );

  border-color:rgba(0,255,26,.82);

  box-shadow:
    0 0 18px rgba(0,255,26,.25),
    0 0 34px rgba(0,255,26,.10),
    inset 0 0 18px rgba(0,255,26,.12);
}


/* =========================================================
   HERO BUTTON HOVERS
   ========================================================= */

.exc-hero-actions .exc-btn-led:first-child:hover{
  transform:translateY(-2px);

  background:
    linear-gradient(
      135deg,
      rgba(255,29,132,.74),
      rgba(155,10,75,.94)
    );

  box-shadow:
    0 0 28px rgba(255,29,132,.52),
    0 0 48px rgba(255,29,132,.16),
    inset 0 0 22px rgba(255,29,132,.20);
}

.exc-hero-actions .exc-btn-led:last-child:hover{
  transform:translateY(-2px);

  background:
    linear-gradient(
      135deg,
      rgba(0,255,26,.60),
      rgba(0,105,18,.94)
    );

  box-shadow:
    0 0 28px rgba(0,255,26,.42),
    0 0 48px rgba(0,255,26,.14),
    inset 0 0 22px rgba(0,255,26,.17);
}


/* =========================================================
   OTHER LED BUTTONS
   ========================================================= */

.exc-weird .exc-btn-led{
  background:
    linear-gradient(
      135deg,
      rgba(255,29,132,.38),
      rgba(20,20,20,.96) 46%,
      rgba(20,20,20,.96) 54%,
      rgba(0,255,26,.28)
    );

  border-color:rgba(255,255,255,.22);

  box-shadow:
    -8px -8px 24px rgba(255,29,132,.18),
    8px 8px 24px rgba(0,255,26,.15);
}

.exc-weird .exc-btn-led:hover{
  transform:translateY(-2px);

  box-shadow:
    -12px -12px 32px rgba(255,29,132,.28),
    12px 12px 32px rgba(0,255,26,.23);
}


/* =========================================================
   HERO LOGO
   ========================================================= */

.exc-hero-mark{
  position:relative;

  display:grid;

  place-items:center;

  min-height:520px;

  transform:translateX(-55px);
}

.exc-hero-mark img{
  width:720px;

  max-width:none;

  filter:
    drop-shadow(
      0 0 26px rgba(255,255,255,.03)
    );
}

.exc-dimension{
  position:absolute;

  left:9%;
  right:9%;
  top:6%;

  height:18px;

  border-top:
    1px solid rgba(255,255,255,.22);
}

.exc-dimension:before,
.exc-dimension:after{
  content:"";

  position:absolute;

  top:-7px;

  width:1px;
  height:14px;

  background:
    rgba(255,255,255,.35);
}

.exc-dimension:before{
  left:0;
}

.exc-dimension:after{
  right:0;
}

.exc-dimension span{
  position:absolute;

  left:50%;

  transform:
    translate(-50%,-65%);

  background:#080808;

  padding:0 10px;

  font-size:.68rem;

  letter-spacing:.18em;

  color:#8e8e8b;
}

.exc-crosshair{
  position:absolute;

  width:34px;
  height:34px;

  right:8%;
  bottom:15%;
}

.exc-crosshair:before,
.exc-crosshair:after{
  content:"";

  position:absolute;

  background:
    rgba(255,255,255,.28);
}

.exc-crosshair:before{
  width:34px;
  height:1px;

  top:50%;
}

.exc-crosshair:after{
  height:34px;
  width:1px;

  left:50%;
}


/* =========================================================
   GENERAL SECTIONS
   ========================================================= */

.exc-section{
  padding:110px 0;

  background:#0a0a0a;
}

.exc-section-dark{
  background:#101010;

  border-top:
    1px solid var(--exc-line);

  border-bottom:
    1px solid var(--exc-line);
}

.exc-section-heading{
  max-width:760px;

  margin-bottom:48px;
}

.exc-section-heading h2,
.exc-weird h2,
.exc-page-header h1{
  margin:8px 0 14px;

  font-size:
    clamp(2.4rem,4vw,4.8rem);

  line-height:1;

  letter-spacing:-.045em;
}

.exc-section-heading p,
.exc-weird p{
  color:var(--exc-muted);

  font-size:1.08rem;
}

.exc-section-heading-row{
  max-width:none;

  display:flex;

  justify-content:space-between;

  align-items:end;

  gap:24px;
}

.exc-text-link{
  text-decoration:none;

  color:#d9d9d5;

  font-weight:700;

  transition:
    color .2s ease,
    text-shadow .2s ease;
}

.exc-text-link:hover{
  color:#fff;

  text-shadow:
    -7px -5px 18px rgba(255,29,132,.35),
    7px 5px 18px rgba(0,255,26,.27);
}


/* =========================================================
   CAPABILITY CARDS
   ========================================================= */

.exc-capability-grid{
  display:grid;

  grid-template-columns:
    repeat(6,1fr);

  gap:22px;
}

.exc-card{
  position:relative;

  grid-column:span 2;

  min-height:260px;

  padding:28px;

  border:
    1px solid rgba(255,255,255,.13);

  border-radius:
    var(--exc-radius);

  background:
    linear-gradient(
      135deg,
      rgba(255,29,132,.055) 0%,
      rgba(255,29,132,.015) 35%,
      rgba(0,0,0,0) 50%,
      rgba(0,255,26,.015) 65%,
      rgba(0,255,26,.055) 100%
    ),
    #111;

  box-shadow:
    -8px -8px 28px rgba(255,29,132,.18),
    8px 8px 28px rgba(0,255,26,.14),
    inset 0 0 24px rgba(255,255,255,.015);

  overflow:hidden;

  transition:
    transform .25s ease,
    box-shadow .25s ease,
    border-color .25s ease;
}

.exc-card-wide{
  grid-column:span 3;

  min-height:280px;
}

.exc-card::before{
  content:"";

  position:absolute;

  inset:-1px;

  border-radius:inherit;

  padding:1px;

  background:
    linear-gradient(
      135deg,
      rgba(255,29,132,.90) 0%,
      rgba(255,29,132,.25) 38%,
      rgba(255,255,255,.08) 50%,
      rgba(0,255,26,.25) 62%,
      rgba(0,255,26,.85) 100%
    );

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite:xor;

  mask-composite:exclude;

  pointer-events:none;
}

.exc-card::after{
  content:"";

  position:absolute;

  inset:0;

  border-radius:inherit;

  background:
    radial-gradient(
      circle at 0% 0%,
      rgba(255,29,132,.11),
      transparent 40%
    ),

    radial-gradient(
      circle at 100% 100%,
      rgba(0,255,26,.09),
      transparent 40%
    );

  pointer-events:none;
}

.exc-card > *{
  position:relative;

  z-index:1;
}

.exc-card span{
  font-size:.72rem;

  color:#8d8d88;

  letter-spacing:.16em;
}

.exc-card h3{
  font-size:1.45rem;

  margin:70px 0 10px;
}

.exc-card p{
  color:var(--exc-muted);

  margin:0;
}

.exc-card:hover{
  transform:translateY(-4px);

  border-color:
    rgba(255,255,255,.20);

  box-shadow:
    -12px -12px 38px rgba(255,29,132,.28),
    12px 12px 38px rgba(0,255,26,.22),
    inset 0 0 30px rgba(255,255,255,.02);
}


/* =========================================================
   ENGINEERING SECTION INDEXES
   ========================================================= */

.exc-section-index{
  display:flex;

  align-items:center;

  gap:12px;

  margin-bottom:24px;

  color:#62625f;

  font-size:.65rem;

  font-weight:800;

  letter-spacing:.20em;
}

.exc-section-index::after{
  content:"";

  display:block;

  width:84px;
  height:1px;

  background:
    linear-gradient(
      90deg,
      rgba(255,29,132,.65),
      rgba(255,255,255,.12) 50%,
      rgba(0,255,26,.55)
    );
}


/* =========================================================
   SHOP SHOWROOM
   ========================================================= */

.exc-shop-section{
  background:
    radial-gradient(
      circle at 0% 20%,
      rgba(255,29,132,.035),
      transparent 28%
    ),

    radial-gradient(
      circle at 100% 80%,
      rgba(0,255,26,.03),
      transparent 30%
    ),

    #090909;
}

.exc-shop-intro{
  max-width:660px;

  margin:10px 0 0;

  color:var(--exc-muted);
}


/* =========================================================
   HAVE SOMETHING WEIRD
   ========================================================= */

.exc-weird{
  background:
    radial-gradient(
      circle at 0% 0%,
      rgba(255,29,132,.035),
      transparent 30%
    ),

    radial-gradient(
      circle at 100% 100%,
      rgba(0,255,26,.03),
      transparent 30%
    ),

    #070707;

  border-top:
    1px solid var(--exc-line);
}

.exc-weird-panel{
  position:relative;

  display:grid;

  grid-template-columns:1fr 1fr;

  gap:80px;

  align-items:center;

  padding:54px;

  border:
    1px solid rgba(255,255,255,.14);

  border-radius:24px;

  background:
    linear-gradient(
      135deg,
      rgba(255,29,132,.055),
      rgba(15,15,15,.97) 38%,
      rgba(15,15,15,.97) 62%,
      rgba(0,255,26,.05)
    );

  box-shadow:
    -14px -14px 44px rgba(255,29,132,.17),
    14px 14px 44px rgba(0,255,26,.13);

  overflow:hidden;
}

.exc-weird-panel::before{
  content:"";

  position:absolute;

  inset:-1px;

  border-radius:inherit;

  padding:1px;

  background:
    linear-gradient(
      135deg,
      rgba(255,29,132,.90),
      rgba(255,29,132,.18) 42%,
      rgba(255,255,255,.07) 50%,
      rgba(0,255,26,.18) 58%,
      rgba(0,255,26,.86)
    );

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite:xor;

  mask-composite:exclude;

  pointer-events:none;
}

.exc-weird-panel::after{
  content:"";

  position:absolute;

  inset:0;

  background:
    radial-gradient(
      circle at 0% 0%,
      rgba(255,29,132,.10),
      transparent 34%
    ),

    radial-gradient(
      circle at 100% 100%,
      rgba(0,255,26,.08),
      transparent 34%
    );

  pointer-events:none;
}

.exc-weird-panel > *{
  position:relative;

  z-index:1;
}

.exc-weird p{
  white-space:normal;

  margin-bottom:26px;
}


/* =========================================================
   INNER PAGES
   ========================================================= */

.exc-page{
  padding:170px 0 100px;

  min-height:70vh;
}

.exc-page-shell{
  max-width:1050px;
}

.exc-page-header{
  margin-bottom:48px;
}

.exc-entry-content{
  font-size:1.04rem;

  color:#d7d7d3;
}

.exc-entry-content a{
  color:#fff;
}

.exc-post{
  padding:28px 0;

  border-bottom:
    1px solid var(--exc-line);
}


/* =========================================================
   FOOTER
   ========================================================= */

.exc-footer{
  padding:50px 0 34px;

  background:#050505;

  border-top:
    1px solid var(--exc-line);
}

.exc-footer-grid{
  display:grid;

  grid-template-columns:
    1fr auto auto;

  gap:40px;

  align-items:end;
}

.exc-footer-brand{
  font-weight:850;

  letter-spacing:.1em;
}

.exc-footer-brand strong{
  color:#8e8e8a;

  font-weight:450;
}

.exc-footer p,
.exc-footer-meta{
  color:#777771;

  font-size:.86rem;
}

.exc-footer-menu{
  display:flex;

  gap:18px;

  list-style:none;

  margin:0;

  padding:0;
}

.exc-footer-menu a{
  text-decoration:none;

  color:#aaa;
}


/* =========================================================
   WOOCOMMERCE PRODUCT GRID
   ========================================================= */

.woocommerce ul.products{
  display:grid!important;

  grid-template-columns:
    repeat(4,minmax(0,1fr));

  gap:22px;

  margin:0!important;
}

.woocommerce ul.products:before,
.woocommerce ul.products:after{
  display:none!important;
}

.woocommerce ul.products li.product{
  position:relative;

  width:auto!important;

  margin:0!important;

  padding:16px;

  border:
    1px solid rgba(255,255,255,.13);

  border-radius:18px;

  background:
    linear-gradient(
      135deg,
      rgba(255,29,132,.045),
      #111 38%,
      #111 62%,
      rgba(0,255,26,.04)
    );

  box-shadow:
    -7px -7px 24px rgba(255,29,132,.13),
    7px 7px 24px rgba(0,255,26,.10);

  overflow:hidden;

  transition:
    transform .25s ease,
    box-shadow .25s ease,
    border-color .25s ease;
}

.woocommerce ul.products li.product::before{
  content:"";

  position:absolute;

  inset:-1px;

  border-radius:inherit;

  padding:1px;

  background:
    linear-gradient(
      135deg,
      rgba(255,29,132,.78),
      rgba(255,29,132,.14) 40%,
      rgba(255,255,255,.06) 50%,
      rgba(0,255,26,.14) 60%,
      rgba(0,255,26,.74)
    );

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite:xor;

  mask-composite:exclude;

  pointer-events:none;
}

.woocommerce ul.products li.product:hover{
  transform:translateY(-5px);

  border-color:
    rgba(255,255,255,.21);

  box-shadow:
    -12px -12px 34px rgba(255,29,132,.22),
    12px 12px 34px rgba(0,255,26,.17);
}

.woocommerce ul.products li.product img{
  position:relative;

  z-index:1;

  border-radius:12px;

  margin-bottom:14px!important;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product .price,
.woocommerce ul.products li.product .button{
  position:relative;

  z-index:1;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title{
  color:#fff;

  font-size:1rem!important;
}

.woocommerce ul.products li.product .price{
  color:#d8d8d4!important;
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button{
  background:#f2f2ee!important;

  color:#080808!important;

  border-radius:10px!important;

  font-weight:800!important;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error{
  background:#111!important;

  color:#eee!important;

  border-color:#333!important;
}


/* =========================================================
   TABLET / SMALL DESKTOP
   ========================================================= */

@media (max-width:980px){

  .exc-floating-nav{
    grid-template-columns:auto auto auto;

    gap:10px;
  }

  .exc-nav-links{
    display:none;

    position:absolute;

    top:74px;

    left:16px;
    right:16px;

    background:
      linear-gradient(
        135deg,
        rgba(255,29,132,.08),
        rgba(8,8,8,.98) 38%,
        rgba(8,8,8,.98) 62%,
        rgba(0,255,26,.07)
      );

    border:
      1px solid rgba(255,255,255,.16);

    border-radius:16px;

    padding:16px;

    box-shadow:
      -7px -7px 22px rgba(255,29,132,.12),
      7px 7px 22px rgba(0,255,26,.10);
  }

  .exc-nav-links.is-open{
    display:block;
  }

  .exc-menu{
    flex-direction:column;

    gap:5px;
  }

  .exc-menu a{
    display:block;

    padding:12px 10px;
  }

  .exc-menu-toggle{
    display:block;

    justify-self:end;
  }

  .exc-brand-name{
    display:none;
  }

  .exc-cart-link{
    justify-self:end;
  }

  .exc-hero{
    min-height:auto;

    padding-top:145px;
  }

  .exc-hero-grid{
    grid-template-columns:1fr;

    gap:40px;

    width:100%;

    margin:0 auto;
  }

  .exc-hero-copy{
    width:100%;

    margin:0 auto;
  }

  .exc-hero-mark{
    min-height:380px;

    transform:none;

    overflow:hidden;

    width:100%;

    margin:0 auto;

    padding:0 14px;
  }

  .exc-hero-mark img{
    width:100%!important;

    max-width:560px!important;

    height:auto;

    display:block;

    margin:0 auto;
  }

  .exc-capability-grid{
    grid-template-columns:1fr;
  }

  .exc-card,
  .exc-card-wide{
    grid-column:auto;
  }

  .exc-weird-panel{
    grid-template-columns:1fr;

    gap:32px;

    padding:38px;
  }

  .woocommerce ul.products{
    grid-template-columns:
      repeat(2,minmax(0,1fr));
  }

  .exc-footer-grid{
    grid-template-columns:1fr;
  }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width:620px){

  .exc-shell{
    width:calc(100% - 28px);

    max-width:none;

    margin-left:auto;
    margin-right:auto;
  }


  /* FLOATING NAV */

  .exc-floating-nav{
    width:calc(100% - 20px);
  }

  .exc-cart-link{
    font-size:0;

    padding:8px;
  }

  .exc-cart-count{
    font-size:.72rem;
  }


  /* HERO */

  .exc-hero{
    min-height:auto;

    padding:125px 0 70px;

    overflow:hidden;
  }

  .exc-hero .exc-shell{
    width:calc(100% - 28px);

    max-width:none;

    margin-left:auto;
    margin-right:auto;

    padding:0;
  }

  .exc-hero-grid{
    display:grid;

    grid-template-columns:1fr;

    justify-items:center;

    align-items:center;

    gap:34px;

    width:100%;

    max-width:100%;

    margin:0;

    padding:0;
  }

  .exc-hero-copy{
    width:100%;

    max-width:100%;

    margin:0;

    padding:0;

    text-align:center;
  }

  .exc-eyebrow{
    text-align:center;
  }

  .exc-hero h1{
    width:100%;

    max-width:100%;

    margin:14px auto 20px;

    font-size:
      clamp(2.8rem,13vw,4.2rem);

    line-height:.94;

    letter-spacing:-.045em;

    text-align:center;
  }

  .exc-hero p{
    width:100%;

    max-width:340px;

    margin-left:auto;
    margin-right:auto;

    text-align:center;
  }


  /* HERO BUTTONS */

  .exc-hero-actions{
    display:flex;

    flex-direction:column;

    align-items:stretch;

    gap:12px;

    width:min(100%,360px);

    margin:28px auto 0;

    padding:0;

    position:static;

    left:auto;
    right:auto;

    transform:none;
  }

  .exc-hero-actions .exc-btn{
    width:100%;

    margin:0;

    justify-content:center;

    text-align:center;
  }


  /* HERO LOGO */

  .exc-hero-mark{
    display:grid;

    place-items:center;

    width:100%;

    max-width:100%;

    min-height:0;

    margin:0;

    padding:0;

    transform:none;

    overflow:visible;
  }

  .exc-hero-mark img{
    display:block;

    width:min(92vw,500px)!important;

    max-width:100%!important;

    height:auto;

    margin:0 auto;
  }


  /* OTHER SECTIONS */

  .exc-section{
    padding:78px 0;
  }

  .exc-section-heading-row{
    display:block;
  }

  .exc-section-heading-row .exc-text-link{
    display:inline-block;

    margin-top:14px;
  }

  .exc-weird-panel{
    padding:28px 22px;

    border-radius:18px;
  }

  .woocommerce ul.products{
    grid-template-columns:1fr;
  }
}