/** Shopify CDN: Minification failed

Line 1343:2 Unexpected "<"
Line 8088:8 Expected identifier but found whitespace
Line 8609:0 Unexpected "<"
Line 15363:13 Expected identifier but found whitespace
Line 15363:26 Unexpected "!"
Line 16518:0 Unexpected "<"
Line 17773:0 Unexpected "<"
Line 22194:0 Unexpected "}"
Line 22833:0 Unexpected "<"
Line 23103:0 Unexpected "<"

**/
 
 
 
 :root {
      --c-black:       #000000;
      --c-white:       #FFFFFF;
      --c-yellow:      #F5E642;
      --c-gray-50:     #FAFAFA;
      --c-gray-100:    #F5F5F5;
      --c-gray-150:    #EFEFEF;
      --c-gray-200:    #E4E4E4;
      --c-gray-300:    #D1D5DB;
      --c-gray-400:    #9CA3AF;
      --c-gray-600:    #6B7280;
      --c-gray-700:    #374151;
      --c-gray-800:    #1F2937;
      --c-gray-900:    #111111;
      /* Product lines */
      --c-glass:       #60C4DC;
      --c-glass-dark:  #1E9BBF;
      --c-glass-pale:  #EBF8FC;
      --c-core:        #02C39A;
      --c-core-dark:   #0D9488;
      --c-core-pale:   #E6FBF5;
      --c-link:        #EA580C;
      --c-link-dark:   #C2410C;
      --c-link-pale:   #FEF3EC;
      /* Layout */
      --font:          'Inter', system-ui, -apple-system, sans-serif;
      --max-w:         1280px;
      --nav-h:         64px;
      --radius-sm:     6px;
      --radius-md:     12px;
      --radius-lg:     20px;
      --radius-xl:     28px;
    }


    
    /* ════════════════════════════════════════════
       RESET & BASE
    ════════════════════════════════════════════ */
    *,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { font-family: var(--font); color: var(--c-black); background: var(--c-white); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
    img { display: block; max-width: 100%; }
    a { text-decoration: none; color: inherit; }
    button { cursor: pointer; font-family: inherit; }
    ul { list-style: none; }
    .container { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }
    @media(max-width:768px) { .container { padding: 0 20px; } }

    /* Shared tags/badges */
    .tag { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; padding: 4px 12px; border-radius: 99px; }
    .tag--glass  { background: var(--c-glass-pale);  color: var(--c-glass-dark); }
    .tag--core   { background: var(--c-core-pale);   color: var(--c-core-dark); }
    .tag--link   { background: var(--c-link-pale);   color: var(--c-link-dark); }
    .tag--new    { background: var(--c-yellow);       color: var(--c-black); }
    .tag--dark   { background: rgba(255,255,255,.15); color: #fff; }

    /* Buttons */
    .btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-size: 14px; font-weight: 600; letter-spacing: .02em; padding: 14px 28px; border-radius: 99px; border: none; transition: all .2s ease; }
    .btn--black  { background: var(--c-black); color: var(--c-white); }
    .btn--black:hover { background: var(--c-gray-900); transform: translateY(-1px); }
    .btn--outline { background: transparent; color: var(--c-black); border: 1.5px solid var(--c-gray-300); }
    .btn--outline:hover { border-color: var(--c-black); }
    .btn--glass  { background: var(--c-glass); color: var(--c-white); }
    .btn--glass:hover { background: var(--c-glass-dark); transform: translateY(-1px); }
    .btn--core   { background: var(--c-core);  color: var(--c-white); }
    .btn--core:hover  { background: var(--c-core-dark); transform: translateY(-1px); }
    .btn--link-color  { background: var(--c-link);  color: var(--c-white); }
    .btn--link-color:hover { background: var(--c-link-dark); transform: translateY(-1px); }
    .btn--yellow { background: var(--c-yellow); color: var(--c-black); }
    .btn--yellow:hover { opacity: .9; transform: translateY(-1px); }
    .btn--sm     { font-size: 13px; padding: 10px 20px; }

    /* Section label */
    .section-label { font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--c-gray-400); display: flex; align-items: center; gap: 8px; }
    .section-label::before { content: ''; display: inline-block; width: 6px; height: 6px; background: currentColor; border-radius: 50%; }

/* ════════════════════════════════════════════
   ANNOUNCEMENT BAR
   Shopify: sections/announcement-bar.liquid
════════════════════════════════════════════ */
.announcement {
  background: var(--c-black);
  color: var(--c-white);
  padding: 10px 0;
  text-align: center;
}

.announcement p {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .02em;
  line-height: 1.4;
}

.announcement a {
  color: var(--c-yellow);
  text-decoration: underline;
  margin-left: 10px;
  font-weight: 600;
}

.announcement a:hover {
  opacity: .85;
}

/* MOBILE */
@media screen and (max-width: 749px) {
  .announcement {
    padding: 8px 12px;
  }

  .announcement p {
    font-size: 11px;
    line-height: 1.45;
  }

  .announcement a {
    display: inline-block;
    margin-left: 6px;
  }
}

@media screen and (max-width: 749px) {
  .announcement {
    padding: 8px 12px;
  }

  .announcement p {
    font-size: 11px;
    line-height: 1.45;
  }

  .announcement a {
    display: block;
    margin: 4px 0 0;
  }
}

/* ════════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════════ */


:root {
  --nav-text: #111;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 10px 0;
  background: transparent;
}

.nav__inner {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex: 0 0 auto;
}

.nav__logo img {
  height: 30px;
  width: auto;
  display: block;
}

.nav__logo-text {
  font-size: 18px;
  font-weight: 700;
  color: var(--nav-text);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: rgba(17,17,17,0.75);
  transition: background .25s ease, color .25s ease, transform .25s ease;
}

.nav__link:hover {
  color: #111;
  background: rgba(255,255,255,0.35);
  transform: translateY(-1px);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #111;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(0,0,0,0.06);
}

.nav__checkbox {
  display: none;
}

.nav__toggle {
  width: 42px;
  height: 42px;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.06);
  background: rgba(255,255,255,0.55);
  cursor: pointer;
  padding: 0;
}

.nav__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #111;
  transition: transform .25s ease, opacity .25s ease;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 999;
  padding: 10px 0;
  background: transparent;
}

.nav__inner {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav__logo img {
  height: 30px;
  width: auto;
  display: block;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: rgba(17,17,17,0.75);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #111;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(0,0,0,0.06);
}

.nav__toggle {
  width: 42px;
  height: 42px;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.06);
  background: rgba(255,255,255,0.55);
  cursor: pointer;
  padding: 0;
}

.nav__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #111;
  transition: transform .25s ease, opacity .25s ease;
}

.nav__mobile {
  display: none;
}

@media (max-width: 989px) {
  .nav__links {
    display: none;
  }

  .nav__toggle {
    display: inline-flex;
  }

  .nav__mobile {
    display: block;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height .3s ease, opacity .25s ease, margin-top .25s ease;
    margin-top: 0;
  }

  .nav.is-open .nav__mobile {
    max-height: 420px;
    opacity: 1;
    margin-top: 10px;
  }

  .nav__mobile-menu {
    background: rgba(255,255,255,0.88);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 18px;
    padding: 8px;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.10);
  }

  .nav__mobile-link {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 0 14px;
    border-radius: 14px;
    text-decoration: none;
    color: #111;
    font-size: 15px;
    font-weight: 500;
    background: transparent;
  }

  .nav__mobile-link + .nav__mobile-link {
    margin-top: 4px;
  }

  .nav__mobile-link:hover,
  .nav__mobile-link:active {
    background: rgba(255,255,255,0.5);
  }

  .nav.is-open .nav__toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav.is-open .nav__toggle span:nth-child(2) {
    opacity: 0;
  }

  .nav.is-open .nav__toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}


/* =========================================================
   NS HERO — Samsung / Apple style
   Full replacement for hero section
========================================================= */

.hero {
  --hero-bg: #05070c;
  --hero-bg-2: #0a0e15;
  --hero-text: #ffffff;
  --hero-muted: rgba(255,255,255,0.72);
  --hero-soft: rgba(255,255,255,0.5);
  --hero-line: rgba(255,255,255,0.12);
  --hero-glass: rgba(255,255,255,0.08);
  --hero-glass-border: rgba(255,255,255,0.12);
  --hero-blue: #4da3ff;
  --hero-blue-2: #006dff;
  --hero-green: #2ee48b;
  --hero-yellow: #ffc84d;
  --hero-purple: #b26dff;

  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 42px 0 24px;
  background:
    radial-gradient(circle at 78% 30%, rgba(58,131,255,0.18), transparent 24%),
    radial-gradient(circle at 72% 68%, rgba(0,214,255,0.12), transparent 28%),
    linear-gradient(180deg, var(--hero-bg) 0%, var(--hero-bg-2) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(5,7,12,0.95) 0%,
      rgba(5,7,12,0.82) 28%,
      rgba(5,7,12,0.34) 58%,
      rgba(5,7,12,0.04) 76%,
      rgba(5,7,12,0) 100%
    );
  pointer-events: none;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  align-items: center;
  gap: 20px;
  min-height: 82vh;
}

.hero__content {
  max-width: 560px;
  padding: 8px 0;
}

.hero__eyebrow {
  margin-bottom: 14px;
}

.hero .section-label {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  border: 0px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  color: var(--hero-blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero__title {
  margin: 0 0 16px;
  color: var(--hero-text);
  font-size: clamp(56px, 7vw, 104px);
  line-height: 0.9;
  letter-spacing: -0.055em;
  font-weight: 800;
}

.hero__title span {
  color: #0000008e; /* 👈 pure black */
  text-shadow: none; /* remove glow if any */
}

.ns-hero-slide__desc{
  font-size:clamp(24px,2vw,34px);
  line-height:1.35;
  font-weight:600;
  letter-spacing:-0.02em;
  max-width:22ch;

  color:#fff;

  text-shadow:
    0 1px 2px rgba(0,0,0,.28),
    0 3px 10px rgba(0,0,0,.18);

  margin:0 0 28px;
}

/* make each phrase stack */
.ns-hero-slide__desc br{
 display:block;
 content:"";
 margin-top:.18em;
}

@media (max-width:768px){
 .ns-hero-slide__desc{
   font-size:22px;
   line-height:1.4;
   max-width:18ch;
 }
}

.ns-hero-slide__content{
background:linear-gradient(
90deg,
rgba(0,0,0,.32),
rgba(0,0,0,.08),
transparent
);
padding:28px 34px;
border-radius:28px;
backdrop-filter:blur(1px);
}

.hero__specs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 24px;
}

.hero__spec {
  position: relative;
  padding-top: 14px;
}

.hero__spec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--hero-line);
}

.hero__spec-val {
  margin-bottom: 6px;
  color: #fff;
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.hero__spec-lbl {
  color: var(--hero-soft);
  font-size: 11px;
  line-height: 1.3;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
}

.hero .btn:hover {
  transform: translateY(-1px);
}

.hero .btn--glass {
  color: #fff;
  border: 0;
  background: linear-gradient(135deg, var(--hero-blue), var(--hero-blue-2));
  box-shadow: 0 10px 28px rgba(0,109,255,0.24);
}

.hero .btn--glass:hover {
  box-shadow: 0 14px 34px rgba(0,109,255,0.34);
}

.hero .btn--outline {
  color: #fff;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.14);
}

.hero .btn--outline:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.22);
}

/* VISUAL SIDE */
.hero__visual {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__visual-img {
  display: block;
  width: min(980px, 122%);
  max-width: none;
  height: auto;
  object-fit: contain;
  transform: translateX(44px);
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  filter: none !important;
}

/* CLEAN OVERLAY */
.hero__overlay {
  position: absolute;
  left: 50%;
  bottom: 7%;
  transform: translateX(-50%);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  width: min(92%, 700px);
  z-index: 3;
}

.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--hero-glass);
  border: 0px solid var(--hero-glass-border);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  flex: 0 0 8px;
}

.dot--glass {
  background: var(--hero-blue);
  box-shadow: 0 0 12px rgba(77,163,255,0.6);
}

.dot--green {
  background: var(--hero-green);
  box-shadow: 0 0 12px rgba(46,228,139,0.5);
}

.dot--yellow {
  background: var(--hero-yellow);
  box-shadow: 0 0 12px rgba(255,200,77,0.5);
}

.dot--gaming {
  background: var(--hero-purple);
  box-shadow: 0 0 12px rgba(178,109,255,0.6);
}

/* hide old floating system if still in file */
.hero__floating,
.hero__visual-overlay {
  display: none !important;
}

/* TABLET */
@media (max-width: 1200px) {
  .hero__visual {
    min-height: 560px;
  }

  .hero__visual-img {
    width: min(860px, 116%);
    transform: translateX(18px);
  }
}

/* MOBILE */
@media (max-width: 990px) {
  .hero {
    padding: 24px 0 10px;
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(5,7,12,0.18) 0%, rgba(5,7,12,0) 100%);
  }

  .hero__grid {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 10px;
  }

  .hero__content {
    max-width: 100%;
    order: 1;
  }

  .hero__visual {
    order: 0;
    min-height: 400px;
  }

  .hero__visual-img {
    width: min(660px, 118%);
    transform: none;
  }

  .hero__overlay {
    position: static;
    transform: none;
    margin-top: 12px;
    width: 100%;
  }

  .hero__specs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 16px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 18px 0 6px;
  }

  .hero__title {
    font-size: clamp(40px, 13vw, 64px);
    line-height: 0.94;
  }

  .hero__desc {
    font-size: 14px;
    line-height: 1.62;
    margin-bottom: 18px;
  }

  .hero__visual {
    min-height: 300px;
  }

  .hero__visual-img {
    width: 122%;
  }

  .hero__pill {
    font-size: 10px;
    padding: 7px 10px;
    min-height: 34px;
  }

  .hero .btn {
    min-height: 42px;
    padding: 0 16px;
    font-size: 12px;
  }

  .hero__spec-val {
    font-size: 18px;
  }

  .hero__spec-lbl {
    font-size: 10px;
  }
}

/* ════════════════════════════════════════════
   TRUST BAR
   Shopify: sections/ns-trust-bar.liquid
════════════════════════════════════════════ */
.trust {
  position: relative;
  background: var(--c-gray-100);
  border-top: 1px solid var(--c-gray-200);
  border-bottom: 1px solid var(--c-gray-200);
  padding: 20px 0;
}

.trust__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.trust__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 28px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--c-gray-600);
  border-right: 1px solid var(--c-gray-200);
  white-space: nowrap;
}

.trust__item:last-child {
  border-right: none;
}

.trust__icon {
  font-size: 15px;
  flex-shrink: 0;
}

/* TABLET */
@media (max-width: 989px) {
  .trust {
    padding: 16px 0;
  }

  .trust__item {
    padding: 8px 18px;
    font-size: 11px;
  }
}

/* MOBILE - SCROLLABLE */
@media (max-width: 768px) {
  .trust {
    padding: 14px 0;
    overflow: hidden;
  }

  .trust__inner {
    display: flex;
    flex-wrap: nowrap !important;
    justify-content: flex-start;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .trust__inner::-webkit-scrollbar {
    display: none;
  }

  .trust__item {
    flex: 0 0 auto;
    scroll-snap-align: start;
    border-right: none;
    padding: 9px 14px;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    font-size: 10px;
    letter-spacing: .06em;
  }

  .trust__icon {
    font-size: 13px;
  }

  /* edge fade for premium look */
  .trust::before,
  .trust::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 18px;
    z-index: 2;
    pointer-events: none;
  }

  .trust::before {
    left: 0;
    background: linear-gradient(to right, var(--c-gray-100), transparent);
  }

  .trust::after {
    right: 0;
    background: linear-gradient(to left, var(--c-gray-100), transparent);
  }
}

    /* ════════════════════════════════════════════
       PRODUCT GRID
       Shopify: sections/ns-product-grid.liquid
    ════════════════════════════════════════════ */
    .products { padding: 100px 0; background: var(--c-white); }
    .products__head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 52px; }
    .products__title { font-size: clamp(28px, 3vw, 40px); font-weight: 800; letter-spacing: -.02em; line-height: 1.1; }
    .products__sub { font-size: 15px; color: var(--c-gray-600); margin-top: 8px; max-width: 360px; }
    .products__view-all { font-size: 14px; font-weight: 600; color: var(--c-black); text-decoration: underline; text-underline-offset: 3px; white-space: nowrap; }

    .product-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 20px; }
    @media(max-width:1024px) { .product-grid { grid-template-columns: 1fr 1fr; } }
    @media(max-width:640px)  { .product-grid { grid-template-columns: 1fr; } }

    /* Featured card (Nano Glass) */
    .pcard { border-radius: var(--radius-xl); overflow: hidden; background: var(--c-white); border: 3px solid var(--c-gray-200); transition: box-shadow .25s, transform .25s; }
    .pcard:hover { box-shadow: 0 20px 60px rgba(0,0,0,.1); transform: translateY(-4px); }
    .pcard--featured { background: #60C4DC; border-color: transparent; color: white; }

    .pcard__image { width: 100%; aspect-ratio: 4/3; overflow: hidden; }
    .pcard--featured .pcard__image { aspect-ratio: 16/10; }
    .pcard__image img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .4s ease; }
    .pcard:hover .pcard__image img { transform: scale(1.04); }

    .pcard__image--dark { background: linear-gradient(135deg, #0A1628 0%, #0f2545 50%, #0e1e3d 100%); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
    .pcard__image--dark::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 40%, rgba(96,196,220,.25) 0%, transparent 65%); }

    .pcard__badges { position: absolute; top: 16px; left: 16px; display: flex; gap: 6px; flex-wrap: wrap; }
    .pcard__img-wrap { position: relative; }

    .pcard__body { padding: 24px; }
    .pcard--featured .pcard__body { padding: 28px; }
    .pcard__line { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
    .pcard__name { font-size: 22px; font-weight: 800; letter-spacing: -.01em; margin-bottom: 8px; }
    .pcard--featured .pcard__name { font-size: 28px; }
    .pcard__desc { font-size: 13.5px; color: var(--c-gray-600); line-height: 1.6; margin-bottom: 18px; }
    .pcard--featured .pcard__desc { color: rgba(255,255,255,.65); }
    .pcard__specs { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 22px; }
    .pcard__spec { font-size: 11.5px; font-weight: 600; background: var(--c-gray-100); color: var(--c-gray-700); padding: 5px 11px; border-radius: 99px; }
    .pcard--featured .pcard__spec { background: rgba(255,255,255,.1); color: rgba(255,255,255,.8); }
    .pcard__footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
    .pcard__price { font-size: 22px; font-weight: 800; letter-spacing: -.01em; }
    .pcard__price-sub { font-size: 12px; color: var(--c-gray-400); font-weight: 400; margin-top: 2px; }
    .pcard--featured .pcard__price-sub { color: rgba(255,255,255,.45); }

    /* ════════════════════════════════════════════
       NANO GLASS DEEP DIVE (SPEC TILES)
       Shopify: sections/ns-feature-specs.liquid
    ════════════════════════════════════════════ */
    .specs { padding: 100px 0; background: var(--c-gray-100); }
    .specs__head { text-align: center; margin-bottom: 64px; }
    .specs__title { font-size: clamp(28px, 3.5vw, 48px); font-weight: 800; letter-spacing: -.02em; line-height: 1.1; margin-bottom: 16px; }
    .specs__title span { color: var(--c-glass); }
    .specs__sub { font-size: 16px; color: var(--c-gray-600); max-width: 480px; margin: 0 auto; }

    .spec-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
    @media(max-width:960px)  { .spec-grid { grid-template-columns: repeat(2, 1fr); } }
    @media(max-width:480px)  { .spec-grid { grid-template-columns: 1fr; } }

    .spec-tile { background: var(--c-white); border-radius: var(--radius-lg); padding: 32px; transition: box-shadow .25s; }
    .spec-tile:hover { box-shadow: 0 12px 40px rgba(0,0,0,.07); }
    .spec-tile__icon { font-size: 24px; margin-bottom: 16px; width: 48px; height: 48px; background: var(--c-glass-pale); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; }
    .spec-tile__val { font-size: 44px; font-weight: 900; letter-spacing: -.03em; line-height: 1; margin-bottom: 6px; }
    .spec-tile__val .unit { font-size: 22px; font-weight: 500; }
    .spec-tile__val span.colored { color: var(--c-glass); }
    .spec-tile__label { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
    .spec-tile__desc { font-size: 13.5px; color: var(--c-gray-600); line-height: 1.6; }
    .spec-tile__bar { width: 40px; height: 3px; background: var(--c-glass); border-radius: 2px; margin-top: 20px; }
    .spec-tile--large { grid-column: span 2; }
    @media(max-width:960px) { .spec-tile--large { grid-column: span 1; } }

    /* ════════════════════════════════════════════
       FEATURE PANELS (SLIM / FLEX / SIGNAL / DURABILITY)
       Shopify: sections/ns-feature-panels.liquid
    ════════════════════════════════════════════ */
    .features { padding: 0; background: var(--c-white); }
    .feature-panel { display: grid; grid-template-columns: 1fr 1fr; min-height: 480px; overflow: hidden; border-top: 1px solid var(--c-gray-150); }
    .feature-panel:last-child { border-bottom: 1px solid var(--c-gray-150); }
    .feature-panel--reverse { direction: rtl; }
    .feature-panel--reverse > * { direction: ltr; }
    .feature-panel__img { overflow: hidden; }
    .feature-panel__img img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .6s ease; }
    .feature-panel:hover .feature-panel__img img { transform: scale(1.03); }
    .feature-panel__content { padding: 64px 56px; display: flex; flex-direction: column; justify-content: center; }
    .feature-panel__tag { margin-bottom: 16px; }
    .feature-panel__title { font-size: clamp(24px, 2.5vw, 36px); font-weight: 800; letter-spacing: -.02em; line-height: 1.15; margin-bottom: 16px; }
    .feature-panel__desc { font-size: 15px; color: var(--c-gray-600); line-height: 1.7; margin-bottom: 28px; max-width: 400px; }
    .feature-panel__stat { font-size: 13px; font-weight: 600; color: var(--c-gray-700); display: flex; align-items: center; gap: 6px; }
    .feature-panel__stat::before { content: ''; display: inline-block; width: 20px; height: 2px; background: var(--c-glass); border-radius: 1px; }

    @media(max-width:768px) {
      .feature-panel { grid-template-columns: 1fr; min-height: auto; }
      .feature-panel--reverse { direction: ltr; }
      .feature-panel__img { min-height: 260px; }
      .feature-panel__content { padding: 40px 24px; }
    }

    /* ════════════════════════════════════════════
       LIFESTYLE SECTION
       Shopify: sections/ns-lifestyle.liquid
    ════════════════════════════════════════════ */
    .lifestyle { padding: 100px 0; background: var(--c-gray-100); overflow: hidden; }
    .lifestyle__head { text-align: center; margin-bottom: 52px; }
    .lifestyle__title { font-size: clamp(28px, 3vw, 42px); font-weight: 800; letter-spacing: -.02em; line-height: 1.1; margin-bottom: 12px; }
    .lifestyle__sub { font-size: 15px; color: var(--c-gray-600); }

    .lifestyle-grid { display: grid; grid-template-columns: 1.3fr 0.7fr 1fr; grid-template-rows: 280px 280px; gap: 16px; }
    .lifestyle-item { border-radius: var(--radius-lg); overflow: hidden; position: relative; }
    .lifestyle-item img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .5s ease; }
    .lifestyle-item:hover img { transform: scale(1.04); }
    .lifestyle-item--tall { grid-row: span 2; }
    .lifestyle-item__label { position: absolute; bottom: 16px; left: 16px; background: rgba(0,0,0,.6); backdrop-filter: blur(8px); color: white; font-size: 12px; font-weight: 600; padding: 6px 14px; border-radius: 99px; }
    @media(max-width:768px) {
      .lifestyle-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
      .lifestyle-item--tall { grid-row: span 1; }
    }

    /* ════════════════════════════════════════════
       COMPARISON TABLE
       Shopify: sections/ns-comparison.liquid
    ════════════════════════════════════════════ */
    .compare { padding: 100px 0; background: var(--c-white); }
    .compare__head { text-align: center; margin-bottom: 56px; }
    .compare__title { font-size: clamp(28px, 3vw, 42px); font-weight: 800; letter-spacing: -.02em; line-height: 1.1; margin-bottom: 12px; }
    .compare__sub { font-size: 15px; color: var(--c-gray-600); }

    .compare-table { width: 100%; border-collapse: collapse; border-radius: var(--radius-xl); overflow: hidden; border: 1.5px solid var(--c-gray-200); }
    .compare-table th, .compare-table td { padding: 18px 24px; font-size: 14px; text-align: left; }
    .compare-table thead { background: var(--c-gray-900); color: white; }
    .compare-table th:first-child { width: 28%; font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--c-gray-400); }
    .compare-table th.th--glass { color: var(--c-glass); font-size: 13px; font-weight: 700; letter-spacing: 0; text-transform: none; }
    .compare-table th.th--core  { color: var(--c-core);  font-size: 13px; font-weight: 700; letter-spacing: 0; text-transform: none; }
    .compare-table th.th--link  { color: var(--c-link);  font-size: 13px; font-weight: 700; letter-spacing: 0; text-transform: none; }
    .compare-table tr { border-bottom: 1px solid var(--c-gray-150); }
    .compare-table tr:last-child { border-bottom: none; }
    .compare-table tr:nth-child(even) { background: var(--c-gray-50); }
    .compare-table td:first-child { font-weight: 600; color: var(--c-gray-700); }
    .compare-table td.highlight { font-weight: 700; color: var(--c-glass); }
    @media(max-width:640px) { .compare-table th, .compare-table td { padding: 14px 14px; font-size: 12px; } }

    /* ════════════════════════════════════════════
       WHO USES NANOSECOND (USE CASES)
       Shopify: sections/ns-use-cases.liquid
    ════════════════════════════════════════════ */
    .usecases { padding: 100px 0; background: var(--c-gray-100); }
    .usecases__head { text-align: center; margin-bottom: 56px; }
    .usecases__title { font-size: clamp(28px, 3vw, 42px); font-weight: 800; letter-spacing: -.02em; margin-bottom: 12px; }
    .usecases__sub { font-size: 15px; color: var(--c-gray-600); }

    .usecase-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
    @media(max-width:640px) { .usecase-grid { grid-template-columns: 1fr; } }
    .usecase-card { background: var(--c-white); border-radius: var(--radius-lg); overflow: hidden; border: 1.5px solid var(--c-gray-200); display: flex; flex-direction: column; transition: box-shadow .25s; }
    .usecase-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,.08); }
    .usecase-card__img { height: 200px; overflow: hidden; }
    .usecase-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
    .usecase-card:hover .usecase-card__img img { transform: scale(1.04); }
    .usecase-card__body { padding: 28px; flex: 1; }
    .usecase-card__icon { width: 42px; height: 42px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 16px; }
    .usecase-card__title { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
    .usecase-card__desc { font-size: 14px; color: var(--c-gray-600); line-height: 1.6; }

    /* ════════════════════════════════════════════
       REVIEWS
       Shopify: sections/ns-reviews.liquid (Judge.me)
    ════════════════════════════════════════════ */
    .reviews { padding: 100px 0; background: var(--c-white); }
    .reviews__head { text-align: center; margin-bottom: 56px; }
    .reviews__label { margin-bottom: 12px; justify-content: center; }
    .reviews__title { font-size: clamp(28px, 3vw, 40px); font-weight: 800; letter-spacing: -.02em; }
    .review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    @media(max-width:900px) { .review-grid { grid-template-columns: 1fr; } }
    .review-card { background: var(--c-gray-100); border-radius: var(--radius-lg); padding: 28px; }
    .review-stars { color: #F59E0B; font-size: 15px; letter-spacing: 1px; margin-bottom: 16px; }
    .review-text { font-size: 14px; color: var(--c-gray-700); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
    .review-text strong { color: var(--c-black); font-style: normal; }
    .review-meta { display: flex; align-items: center; gap: 10px; }
    .review-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--c-gray-200); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; flex-shrink: 0; }
    .review-name { font-size: 13px; font-weight: 600; }
    .review-product { font-size: 11.5px; color: var(--c-gray-400); font-weight: 500; }

/* ════════════════════════════════════════════
   NEWSLETTER
   Shopify: sections/ns-newsletter.liquid
════════════════════════════════════════════ */
.newsletter {
  background: var(--c-black);
  color: var(--c-white);
  padding: 100px 0;
}

.newsletter__inner {
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
}

.newsletter__label {
  margin-bottom: 20px;
  color: var(--c-gray-400);
  justify-content: center;
}

.newsletter__title {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.15;
  margin-bottom: 14px;
}

.newsletter__sub {
  font-size: 15px;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
  margin-bottom: 36px;
}

.newsletter__form {
  display: flex;
  gap: 10px;
  max-width: 440px;
  margin: 0 auto 16px;
}

.newsletter__input {
  flex: 1;
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.15);
  color: white;
  font-size: 14px;
  padding: 14px 18px;
  border-radius: 99px;
  outline: none;
  transition: border-color .2s;
  font-family: inherit;
}

.newsletter__input::placeholder {
  color: rgba(255,255,255,.35);
}

.newsletter__input:focus {
  border-color: var(--c-yellow);
}

.newsletter__fine {
  font-size: 12px;
  color: rgba(255,255,255,.3);
}

/* =========================================
   NEWSLETTER — APPLE MOBILE (COMPACT)
========================================= */
@media (max-width: 768px) {

  .newsletter {
    padding: 32px 0;
  }

  .newsletter__inner {
    padding: 0 14px;
  }

  .newsletter__label {
    margin-bottom: 6px;
    font-size: 10px;
    letter-spacing: .08em;
  }

  .newsletter__title {
    font-size: 20px;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
  }

  .newsletter__sub {
    font-size: 11px;
    line-height: 1.4;
    margin-bottom: 14px;
    opacity: 0.7;
  }

  /* FORM = slimmer + tighter */
  .newsletter__form {
    flex-direction: column;
    gap: 6px;
    margin-bottom: 10px;
  }

  .newsletter__input {
    font-size: 11px;
    padding: 10px 12px;
    border-radius: 999px;
  }

  /* 🔥 BUTTON (this is why it feels big) */
  .newsletter__form button,
  .newsletter__btn {
    font-size: 11px !important;
    padding: 10px 12px !important;
    min-height: 36px;
    border-radius: 999px;
  }

  .newsletter__fine {
    font-size: 9px;
    line-height: 1.35;
    opacity: 0.5;
  }
}

    /* ════════════════════════════════════════════
       FOOTER
       Shopify: sections/footer.liquid
    ════════════════════════════════════════════ */
    .footer { background: var(--c-gray-900); color: rgba(255,255,255,.7); padding: 72px 0 40px; }
    .footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 56px; }
    @media(max-width:900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
    @media(max-width:500px) { .footer__grid { grid-template-columns: 1fr; } }
    .footer__brand-logo { margin-bottom: 16px; }
    .footer__brand-logo img { height: 32px; width: auto; filter: brightness(0) invert(1); opacity: .9; }
    .footer__brand-desc { font-size: 13.5px; line-height: 1.7; max-width: 220px; color: rgba(255,255,255,.45); }
    .footer__col-title { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.9); margin-bottom: 20px; }
    .footer__links { display: flex; flex-direction: column; gap: 12px; }
    .footer__link { font-size: 13.5px; color: rgba(255,255,255,.5); transition: color .15s; }
    .footer__link:hover { color: rgba(255,255,255,.9); }
    .footer__bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 28px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
    .footer__copy { font-size: 13px; color: rgba(255,255,255,.3); }
    .footer__payments { display: flex; gap: 8px; align-items: center; }
    .payment-badge { background: rgba(255,255,255,.1); color: rgba(255,255,255,.5); font-size: 10px; font-weight: 700; letter-spacing: .08em; padding: 5px 10px; border-radius: 5px; border: 1px solid rgba(255,255,255,.1); }

    /* ════════════════════════════════════════════
       VIDEO SECTION — NANO GLASS INTRO FILM
       Shopify: sections/ns-video.liquid
    ════════════════════════════════════════════ */
    .video-section { background: var(--c-black); position: relative; overflow: hidden; }
    .video-section__header { text-align: center; padding: 72px 24px 40px; position: relative; z-index: 2; }
    .video-section__label { font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.4); display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 16px; }
    .video-section__label::before { content: ''; display: inline-block; width: 6px; height: 6px; background: var(--c-glass); border-radius: 50%; }
    .video-section__title { font-size: clamp(28px, 3.5vw, 52px); font-weight: 900; letter-spacing: -.03em; line-height: 1.05; color: var(--c-white); margin-bottom: 12px; }
    .video-section__title span { color: var(--c-glass); }
    .video-section__sub { font-size: 16px; color: rgba(255,255,255,.5); }

    .video-wrapper { position: relative; width: 100%; max-width: 1100px; margin: 0 auto; border-radius: var(--radius-xl); overflow: hidden; box-shadow: 0 40px 100px rgba(0,0,0,.6); }
    .video-wrapper video { width: 100%; display: block; }

    /* Sound toggle button */
    .video-sound-btn { position: absolute; bottom: 20px; right: 20px; z-index: 10; width: 44px; height: 44px; border-radius: 50%; background: rgba(0,0,0,.55); backdrop-filter: blur(8px); border: 1.5px solid rgba(255,255,255,.2); color: white; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background .2s; }
    .video-sound-btn:hover { background: rgba(0,0,0,.8); }
    .video-sound-btn svg { width: 18px; height: 18px; }

    /* Play/pause overlay (shows briefly on click) */
    .video-play-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; pointer-events: none; opacity: 0; transition: opacity .3s; }
    .video-play-overlay.flash { opacity: 1; }
    .video-play-icon { width: 72px; height: 72px; background: rgba(0,0,0,.5); backdrop-filter: blur(8px); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
    .video-play-icon svg { width: 28px; height: 28px; fill: white; margin-left: 4px; }

    .video-section__footer { text-align: center; padding: 36px 24px 72px; }
    .video-section__cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

    .video-container { padding: 0 32px; }
    @media(max-width:768px) { .video-container { padding: 0 16px; } .video-wrapper { border-radius: var(--radius-lg); } }
  </style>
</head>
<body>


:root {
  --alpha-button-background: 1;
  --alpha-button-border: 1;
  --alpha-link: 0.85;
  --alpha-badge-border: 0.1;
  --focused-base-outline: 0.2rem solid rgba(var(--color-foreground), 0.5);
  --focused-base-outline-offset: 0.3rem;
  --focused-base-box-shadow: 0 0 0 0.3rem rgb(var(--color-background)), 0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3);
}

.product-card-wrapper .card,
.contains-card--product {
  --border-radius: var(--product-card-corner-radius);
  --border-width: var(--product-card-border-width);
  --border-opacity: var(--product-card-border-opacity);
  --shadow-horizontal-offset: var(--product-card-shadow-horizontal-offset);
  --shadow-vertical-offset: var(--product-card-shadow-vertical-offset);
  --shadow-blur-radius: var(--product-card-shadow-blur-radius);
  --shadow-opacity: var(--product-card-shadow-opacity);
  --shadow-visible: var(--product-card-shadow-visible);
  --image-padding: var(--product-card-image-padding);
  --text-alignment: var(--product-card-text-alignment);
}

.collection-card-wrapper .card,
.contains-card--collection {
  --border-radius: var(--collection-card-corner-radius);
  --border-width: var(--collection-card-border-width);
  --border-opacity: var(--collection-card-border-opacity);
  --shadow-horizontal-offset: var(--collection-card-shadow-horizontal-offset);
  --shadow-vertical-offset: var(--collection-card-shadow-vertical-offset);
  --shadow-blur-radius: var(--collection-card-shadow-blur-radius);
  --shadow-opacity: var(--collection-card-shadow-opacity);
  --shadow-visible: var(--collection-card-shadow-visible);
  --image-padding: var(--collection-card-image-padding);
  --text-alignment: var(--collection-card-text-alignment);
}

.article-card-wrapper .card,
.contains-card--article {
  --border-radius: var(--blog-card-corner-radius);
  --border-width: var(--blog-card-border-width);
  --border-opacity: var(--blog-card-border-opacity);
  --shadow-horizontal-offset: var(--blog-card-shadow-horizontal-offset);
  --shadow-vertical-offset: var(--blog-card-shadow-vertical-offset);
  --shadow-blur-radius: var(--blog-card-shadow-blur-radius);
  --shadow-opacity: var(--blog-card-shadow-opacity);
  --shadow-visible: var(--blog-card-shadow-visible);
  --image-padding: var(--blog-card-image-padding);
  --text-alignment: var(--blog-card-text-alignment);
}

.contains-content-container,
.content-container {
  --border-radius: var(--text-boxes-radius);
  --border-width: var(--text-boxes-border-width);
  --border-opacity: var(--text-boxes-border-opacity);
  --shadow-horizontal-offset: var(--text-boxes-shadow-horizontal-offset);
  --shadow-vertical-offset: var(--text-boxes-shadow-vertical-offset);
  --shadow-blur-radius: var(--text-boxes-shadow-blur-radius);
  --shadow-opacity: var(--text-boxes-shadow-opacity);
  --shadow-visible: var(--text-boxes-shadow-visible);
}

.contains-media,
.global-media-settings {
  --border-radius: var(--media-radius);
  --border-width: var(--media-border-width);
  --border-opacity: var(--media-border-opacity);
  --shadow-horizontal-offset: var(--media-shadow-horizontal-offset);
  --shadow-vertical-offset: var(--media-shadow-vertical-offset);
  --shadow-blur-radius: var(--media-shadow-blur-radius);
  --shadow-opacity: var(--media-shadow-opacity);
  --shadow-visible: var(--media-shadow-visible);
}

/* base */

.page-width {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

body:has(.section-header .drawer-menu) .announcement-bar-section .page-width {
  max-width: 100%;
}

.page-width.drawer-menu {
  max-width: 100%;
}

.page-width-desktop {
  padding: 0;
  margin: 0 auto;
}

.utility-bar__grid.page-width {
  padding-left: 3rem;
  padding-right: 3rem;
}

@media screen and (min-width: 750px) {
  .page-width {
    padding: 0 5rem;
  }

  .header.page-width,
  .utility-bar__grid.page-width {
    padding-left: 3.2rem;
    padding-right: 3.2rem;
  }

  .page-width--narrow {
    padding: 0 9rem;
  }

  .page-width-desktop {
    padding: 0;
  }

  .page-width-tablet {
    padding: 0 5rem;
  }
}

@media screen and (min-width: 990px) {
  .header:not(.drawer-menu).page-width {
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .page-width--narrow {
    max-width: 72.6rem;
    padding: 0;
  }

  .page-width-desktop {
    max-width: var(--page-width);
    padding: 0 5rem;
  }
}

.isolate {
  position: relative;
  z-index: 0;
}

.section + .section {
  margin-top: var(--spacing-sections-mobile);
}

@media screen and (min-width: 750px) {
  .section + .section {
    margin-top: var(--spacing-sections-desktop);
  }
}

.element-margin-top {
  margin-top: 5rem;
}

@media screen and (min-width: 750px) {
  .element-margin {
    margin-top: calc(5rem + var(--page-width-margin));
  }
}

.background-secondary {
  background-color: rgba(var(--color-foreground), 0.04);
}

.grid-auto-flow {
  display: grid;
  grid-auto-flow: column;
}

.page-margin,
.shopify-challenge__container {
  margin: 7rem auto;
}

.rte-width {
  max-width: 82rem;
  margin: 0 auto 2rem;
}

.list-unstyled {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hidden {
  display: none !important;
}

.visually-hidden {
  position: absolute !important;
  overflow: hidden;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  word-wrap: normal !important;
}

.visually-hidden--inline {
  margin: 0;
  height: 1em;
}

.overflow-hidden {
  overflow: hidden;
}

.skip-to-content-link:focus {
  z-index: 9999;
  position: inherit;
  overflow: auto;
  width: auto;
  height: auto;
  clip: auto;
}

.full-width-link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
}

::selection {
  background-color: rgba(var(--color-foreground), 0.2);
}

.text-body {
  font-size: 1.5rem;
  letter-spacing: 0.06rem;
  line-height: calc(1 + 0.8 / var(--font-body-scale));
  font-family: var(--font-body-family);
  font-style: var(--font-body-style);
  font-weight: var(--font-body-weight);
}

h1,
h2,
h3,
h4,
h5,
.h0,
.h1,
.h2,
.h3,
.h4,
.h5 {
  font-family: var(--font-heading-family);
  font-style: var(--font-heading-style);
  font-weight: var(--font-heading-weight);
  letter-spacing: calc(var(--font-heading-scale) * 0.06rem);
  color: rgb(var(--color-foreground));
  line-height: calc(1 + 0.3 / max(1, var(--font-heading-scale)));
  word-break: break-word;
}

.hxxl {
  font-size: clamp(calc(var(--font-heading-scale) * 5.6rem), 14vw, calc(var(--font-heading-scale) * 7.2rem));
  line-height: 1.1;
}

.hxl {
  font-size: calc(var(--font-heading-scale) * 5rem);
  line-height: calc(1 + 0.3 / max(1, var(--font-heading-scale)));
}

@media only screen and (min-width: 750px) {
  .hxl {
    font-size: calc(var(--font-heading-scale) * 6.2rem);
  }
}

.h0 {
  font-size: calc(var(--font-heading-scale) * 4rem);
}

@media only screen and (min-width: 750px) {
  .h0 {
    font-size: calc(var(--font-heading-scale) * 5.2rem);
  }
}

h1,
.h1 {
  font-size: calc(var(--font-heading-scale) * 3rem);
}

@media only screen and (min-width: 750px) {
  h1,
  .h1 {
    font-size: calc(var(--font-heading-scale) * 4rem);
  }
}

h2,
.h2 {
  font-size: calc(var(--font-heading-scale) * 2rem);
}

@media only screen and (min-width: 750px) {
  h2,
  .h2 {
    font-size: calc(var(--font-heading-scale) * 2.4rem);
  }
}

h3,
.h3 {
  font-size: calc(var(--font-heading-scale) * 1.7rem);
}

@media only screen and (min-width: 750px) {
  h3,
  .h3 {
    font-size: calc(var(--font-heading-scale) * 1.8rem);
  }
}

h4,
.h4 {
  font-family: var(--font-heading-family);
  font-style: var(--font-heading-style);
  font-size: calc(var(--font-heading-scale) * 1.5rem);
}

h5,
.h5 {
  font-size: calc(var(--font-heading-scale) * 1.2rem);
}

@media only screen and (min-width: 750px) {
  h5,
  .h5 {
    font-size: calc(var(--font-heading-scale) * 1.3rem);
  }
}

h6,
.h6 {
  color: rgba(var(--color-foreground), 0.75);
  margin-block-start: 1.67em;
  margin-block-end: 1.67em;
}

blockquote {
  font-style: italic;
  color: rgba(var(--color-foreground), 0.75);
  border-left: 0.2rem solid rgba(var(--color-foreground), 0.2);
  padding-left: 1rem;
}

@media screen and (min-width: 750px) {
  blockquote {
    padding-left: 1.5rem;
  }
}

.caption {
  font-size: 1rem;
  letter-spacing: 0.07rem;
  line-height: calc(1 + 0.7 / var(--font-body-scale));
}

@media screen and (min-width: 750px) {
  .caption {
    font-size: 1.2rem;
  }
}

.caption-with-letter-spacing {
  font-size: 1rem;
  letter-spacing: 0.13rem;
  line-height: calc(1 + 0.2 / var(--font-body-scale));
  text-transform: uppercase;
}

.caption-with-letter-spacing--medium {
  font-size: 1.2rem;
  letter-spacing: 0.16rem;
}

.caption-with-letter-spacing--large {
  font-size: 1.4rem;
  letter-spacing: 0.18rem;
}

.caption-large,
.customer .field input,
.customer select,
.field__input,
.form__label,
.select__select {
  font-size: 1.3rem;
  line-height: calc(1 + 0.5 / var(--font-body-scale));
  letter-spacing: 0.04rem;
}

.color-foreground {
  color: rgb(var(--color-foreground));
}

table:not([class]) {
  table-layout: fixed;
  border-collapse: collapse;
  font-size: 1.4rem;
  border-style: hidden;
  box-shadow: 0 0 0 0.1rem rgba(var(--color-foreground), 0.2);
  /* draws the table border  */
}

table:not([class]) td,
table:not([class]) th {
  padding: 1em;
  border: 0.1rem solid rgba(var(--color-foreground), 0.2);
}

@media screen and (max-width: 749px) {
  .small-hide {
    display: none !important;
  }
}

@media screen and (min-width: 750px) and (max-width: 989px) {
  .medium-hide {
    display: none !important;
  }
}

@media screen and (min-width: 990px) {
  .large-up-hide {
    display: none !important;
  }
}

.left {
  text-align: left;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.uppercase {
  text-transform: uppercase;
}

.light {
  opacity: 0.7;
}

a:empty,
ul:empty,
dl:empty,
div:empty,
section:empty,
article:empty,
p:empty,
h1:empty,
h2:empty,
h3:empty,
h4:empty,
h5:empty,
h6:empty {
  display: none;
}

.link,
.customer a {
  cursor: pointer;
  display: inline-block;
  border: none;
  box-shadow: none;
  text-decoration: underline;
  text-underline-offset: 0.3rem;
  color: rgb(var(--color-link));
  background-color: transparent;
  font-size: 1.4rem;
  font-family: inherit;
}

.link--text {
  color: rgb(var(--color-foreground));
}

.link--text:hover {
  color: rgba(var(--color-foreground), 0.75);
}

.link-with-icon {
  display: inline-flex;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  text-decoration: none;
  margin-bottom: 4.5rem;
  white-space: nowrap;
}

.link-with-icon .icon {
  width: 1.5rem;
  margin-left: 1rem;
}

a:not([href]) {
  cursor: not-allowed;
}

.circle-divider::after {
  content: '\2022';
  margin: 0 1.3rem 0 1.5rem;
}

.circle-divider:last-of-type::after {
  display: none;
}

hr {
  border: none;
  height: 0.1rem;
  background-color: rgba(var(--color-foreground), 0.2);
  display: block;
  margin: 5rem 0;
}

@media screen and (min-width: 750px) {
  hr {
    margin: 7rem 0;
  }
}

.full-unstyled-link {
  text-decoration: none;
  color: currentColor;
  display: block;
}

.placeholder {
  background-color: rgba(var(--color-foreground), 0.04);
  color: rgba(var(--color-foreground), 0.55);
  fill: rgba(var(--color-foreground), 0.55);
}

details > * {
  box-sizing: border-box;
}

.break {
  word-break: break-word;
}

.visibility-hidden {
  visibility: hidden;
}

@media (prefers-reduced-motion) {
  .motion-reduce {
    transition: none !important;
    animation: none !important;
  }
}

:root {
  --duration-short: 100ms;
  --duration-default: 200ms;
  --duration-announcement-bar: 250ms;
  --duration-medium: 300ms;
  --duration-long: 500ms;
  --duration-extra-long: 600ms;
  --duration-extra-longer: 750ms;
  --duration-extended: 3s;
  --ease-out-slow: cubic-bezier(0, 0, 0.3, 1);
  --animation-slide-in: slideIn var(--duration-extra-long) var(--ease-out-slow) forwards;
  --animation-fade-in: fadeIn var(--duration-extra-long) var(--ease-out-slow);
}

.underlined-link,
.customer a,
.inline-richtext a {
  text-underline-offset: 0.3rem;
  text-decoration-thickness: 0.1rem;
  transition: text-decoration-thickness ease 100ms;
}

.underlined-link,
.customer a {
  color: rgba(var(--color-link), var(--alpha-link));
}

.inline-richtext a,
.rte.inline-richtext a {
  color: currentColor;
}

.underlined-link:hover,
.customer a:hover,
.inline-richtext a:hover {
  color: rgb(var(--color-link));
  text-decoration-thickness: 0.2rem;
}

.icon-arrow {
  width: 1.5rem;
}

h3 .icon-arrow,
.h3 .icon-arrow {
  width: calc(var(--font-heading-scale) * 1.5rem);
}

/* arrow animation */
.animate-arrow .icon-arrow path {
  transform: translateX(-0.25rem);
  transition: transform var(--duration-short) ease;
}

.animate-arrow:hover .icon-arrow path {
  transform: translateX(-0.05rem);
}

.svg-wrapper {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
}

.svg-wrapper > svg {
  height: 100%;
  width: 100%;
}

/* base-details-summary */
summary {
  cursor: pointer;
  list-style: none;
  position: relative;
}

summary .icon-caret {
  position: absolute;
  height: 0.6rem;
  right: 1.5rem;
  top: calc(50% - 0.2rem);
}

summary::-webkit-details-marker {
  display: none;
}

.disclosure-has-popup {
  position: relative;
}

.disclosure-has-popup[open] > summary::before {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: block;
  cursor: default;
  content: ' ';
  background: transparent;
}

.disclosure-has-popup > summary::before {
  display: none;
}

.disclosure-has-popup[open] > summary + * {
  z-index: 100;
}

@media screen and (min-width: 750px) {
  .disclosure-has-popup[open] > summary + * {
    z-index: 4;
  }

  .facets .disclosure-has-popup[open] > summary + * {
    z-index: 2;
  }
}

.placeholder-svg {
  height: 100%;
  width: 100%;
}

/* base-focus */
/*
  Focus ring - default (with offset)
*/

*:focus {
  outline: 0;
  box-shadow: none;
}

*:focus-visible {
  outline: var(--focused-base-outline);
  outline-offset: var(--focused-base-outline-offset);
  box-shadow: var(--focused-base-box-shadow);
}

/* Fallback - for browsers that don't support :focus-visible, a fallback is set for :focus */
.focused {
  outline: var(--focused-base-outline);
  outline-offset: var(--focused-base-outline-offset);
  box-shadow: var(--focused-base-box-shadow);
}

/*
  Focus ring - inset
*/

.focus-inset:focus-visible {
  outline: 0.2rem solid rgba(var(--color-foreground), 0.5);
  outline-offset: -0.2rem;
  box-shadow: 0 0 0.2rem 0 rgba(var(--color-foreground), 0.3);
}

.focused.focus-inset {
  outline: 0.2rem solid rgba(var(--color-foreground), 0.5);
  outline-offset: -0.2rem;
  box-shadow: 0 0 0.2rem 0 rgba(var(--color-foreground), 0.3);
}

/*
  Focus ring - none
*/

/* Dangerous for a11y - Use with care */
.focus-none {
  box-shadow: none !important;
  outline: 0 !important;
}

.focus-offset:focus-visible {
  outline: 0.2rem solid rgba(var(--color-foreground), 0.5);
  outline-offset: 1rem;
  box-shadow: 0 0 0 1rem rgb(var(--color-background)), 0 0 0.2rem 1.2rem rgba(var(--color-foreground), 0.3);
}

.focus-offset.focused {
  outline: 0.2rem solid rgba(var(--color-foreground), 0.5);
  outline-offset: 1rem;
  box-shadow: 0 0 0 1rem rgb(var(--color-background)), 0 0 0.2rem 1.2rem rgba(var(--color-foreground), 0.3);
}

/* component-title */
.title,
.title-wrapper-with-link {
  margin: 3rem 0 2rem;
}

.title-wrapper-with-link .title {
  margin: 0;
}

.title .link {
  font-size: inherit;
}

.title-wrapper {
  margin-bottom: 3rem;
}

.title-wrapper-with-link {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.title--primary {
  margin: 4rem 0;
}

.title-wrapper--self-padded-tablet-down,
.title-wrapper--self-padded-mobile {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media screen and (min-width: 750px) {
  .title-wrapper--self-padded-mobile {
    padding-left: 0;
    padding-right: 0;
  }
}

@media screen and (min-width: 990px) {
  .title,
  .title-wrapper-with-link {
    margin: 5rem 0 3rem;
  }

  .title--primary {
    margin: 2rem 0;
  }

  .title-wrapper-with-link {
    align-items: center;
  }

  .title-wrapper-with-link .title {
    margin-bottom: 0;
  }

  .title-wrapper--self-padded-tablet-down {
    padding-left: 0;
    padding-right: 0;
  }
}

.title-wrapper-with-link .link-with-icon {
  margin: 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.title-wrapper-with-link .link-with-icon .svg-wrapper {
  width: 1.5rem;
}

.title-wrapper-with-link a {
  margin-top: 0;
  flex-shrink: 0;
}

.title-wrapper--no-top-margin {
  margin-top: 0;
}

.title-wrapper--no-top-margin > .title {
  margin-top: 0;
}

.subtitle {
  font-size: 1.8rem;
  line-height: calc(1 + 0.8 / var(--font-body-scale));
  letter-spacing: 0.06rem;
  color: rgba(var(--color-foreground), 0.7);
}

.subtitle--small {
  font-size: 1.4rem;
  letter-spacing: 0.1rem;
}

.subtitle--medium {
  font-size: 1.6rem;
  letter-spacing: 0.08rem;
}

/* component-grid */
.grid {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding: 0;
  list-style: none;
  column-gap: var(--grid-mobile-horizontal-spacing);
  row-gap: var(--grid-mobile-vertical-spacing);
}

@media screen and (min-width: 750px) {
  .grid {
    column-gap: var(--grid-desktop-horizontal-spacing);
    row-gap: var(--grid-desktop-vertical-spacing);
  }
}

.grid:last-child {
  margin-bottom: 0;
}

.grid__item {
  width: calc(25% - var(--grid-mobile-horizontal-spacing) * 3 / 4);
  max-width: calc(50% - var(--grid-mobile-horizontal-spacing) / 2);
  flex-grow: 1;
  flex-shrink: 0;
}

@media screen and (min-width: 750px) {
  .grid__item {
    width: calc(25% - var(--grid-desktop-horizontal-spacing) * 3 / 4);
    max-width: calc(50% - var(--grid-desktop-horizontal-spacing) / 2);
  }
}

.grid--gapless.grid {
  column-gap: 0;
  row-gap: 0;
}

@media screen and (max-width: 749px) {
  .grid__item.slider__slide--full-width {
    width: 100%;
    max-width: none;
  }
}

.grid--1-col .grid__item {
  max-width: 100%;
  width: 100%;
}

.grid--3-col .grid__item {
  width: calc(33.33% - var(--grid-mobile-horizontal-spacing) * 2 / 3);
}

@media screen and (min-width: 750px) {
  .grid--3-col .grid__item {
    width: calc(33.33% - var(--grid-desktop-horizontal-spacing) * 2 / 3);
  }
}

.grid--2-col .grid__item {
  width: calc(50% - var(--grid-mobile-horizontal-spacing) / 2);
}

@media screen and (min-width: 750px) {
  .grid--2-col .grid__item {
    width: calc(50% - var(--grid-desktop-horizontal-spacing) / 2);
  }

  .grid--4-col-tablet .grid__item {
    width: calc(25% - var(--grid-desktop-horizontal-spacing) * 3 / 4);
  }

  .grid--3-col-tablet .grid__item {
    width: calc(33.33% - var(--grid-desktop-horizontal-spacing) * 2 / 3);
  }

  .grid--2-col-tablet .grid__item {
    width: calc(50% - var(--grid-desktop-horizontal-spacing) / 2);
  }
}

@media screen and (max-width: 989px) {
  .grid--1-col-tablet-down .grid__item {
    width: 100%;
    max-width: 100%;
  }

  .slider--tablet.grid--peek {
    margin: 0;
    width: 100%;
  }

  .slider--tablet.grid--peek .grid__item {
    box-sizing: content-box;
    margin: 0;
  }

  .slider.slider--tablet .scroll-trigger.animate--slide-in,
  .slider.slider--mobile .scroll-trigger.animate--slide-in {
    animation: none;
    opacity: 1;
    transform: inherit;
  }

  .scroll-trigger:not(.scroll-trigger--offscreen) .slider--tablet {
    animation: var(--animation-slide-in);
  }
}

@media screen and (min-width: 990px) {
  .grid--6-col-desktop .grid__item {
    width: calc(16.66% - var(--grid-desktop-horizontal-spacing) * 5 / 6);
    max-width: calc(16.66% - var(--grid-desktop-horizontal-spacing) * 5 / 6);
  }

  .grid--5-col-desktop .grid__item {
    width: calc(20% - var(--grid-desktop-horizontal-spacing) * 4 / 5);
    max-width: calc(20% - var(--grid-desktop-horizontal-spacing) * 4 / 5);
  }

  .grid--4-col-desktop .grid__item {
    width: calc(25% - var(--grid-desktop-horizontal-spacing) * 3 / 4);
    max-width: calc(25% - var(--grid-desktop-horizontal-spacing) * 3 / 4);
  }

  .grid--3-col-desktop .grid__item {
    width: calc(33.33% - var(--grid-desktop-horizontal-spacing) * 2 / 3);
    max-width: calc(33.33% - var(--grid-desktop-horizontal-spacing) * 2 / 3);
  }

  .grid--2-col-desktop .grid__item {
    width: calc(50% - var(--grid-desktop-horizontal-spacing) / 2);
    max-width: calc(50% - var(--grid-desktop-horizontal-spacing) / 2);
  }

  .slider.slider--desktop .scroll-trigger.animate--slide-in {
    animation: none;
    opacity: 1;
    transform: inherit;
  }

  .scroll-trigger:not(.scroll-trigger--offscreen) .slider--desktop {
    animation: var(--animation-slide-in);
  }
}

@media screen and (min-width: 990px) {
  .grid--1-col-desktop {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .grid--1-col-desktop .grid__item {
    width: 100%;
    max-width: 100%;
  }
}

@media screen and (max-width: 749px) {
  .grid--peek.slider--mobile {
    margin: 0;
    width: 100%;
  }

  .grid--peek.slider--mobile .grid__item {
    box-sizing: content-box;
    margin: 0;
  }

  .grid--peek .grid__item {
    min-width: 35%;
  }

  .grid--peek.slider .grid__item:first-of-type {
    margin-left: 1.5rem;
  }

  /* Fix to show some space at the end of our sliders in all browsers */
  .grid--peek.slider:after {
    margin-left: calc(-1 * var(--grid-mobile-horizontal-spacing));
  }

  .grid--2-col-tablet-down .grid__item {
    width: calc(50% - var(--grid-mobile-horizontal-spacing) / 2);
  }

  .slider--tablet.grid--peek.grid--2-col-tablet-down .grid__item,
  .grid--peek .grid__item {
    width: calc(50% - var(--grid-mobile-horizontal-spacing) - 3rem);
  }

  .slider--tablet.grid--peek.grid--1-col-tablet-down .grid__item,
  .slider--mobile.grid--peek.grid--1-col-tablet-down .grid__item {
    width: calc(100% - var(--grid-mobile-horizontal-spacing) - 3rem);
  }
}

@media screen and (min-width: 750px) and (max-width: 989px) {
  .slider--tablet.grid--peek .grid__item {
    width: calc(25% - var(--grid-desktop-horizontal-spacing) - 3rem);
  }

  .slider--tablet.grid--peek.grid--3-col-tablet .grid__item {
    width: calc(33.33% - var(--grid-desktop-horizontal-spacing) - 3rem);
  }

  .slider--tablet.grid--peek.grid--2-col-tablet .grid__item,
  .slider--tablet.grid--peek.grid--2-col-tablet-down .grid__item {
    width: calc(50% - var(--grid-desktop-horizontal-spacing) - 3rem);
  }

  .slider--tablet.grid--peek .grid__item:first-of-type {
    margin-left: 1.5rem;
  }

  .grid--2-col-tablet-down .grid__item {
    width: calc(50% - var(--grid-desktop-horizontal-spacing) / 2);
  }

  .grid--1-col-tablet-down.grid--peek .grid__item {
    width: calc(100% - var(--grid-desktop-horizontal-spacing) - 3rem);
  }
}

/* component-media */
.media {
  display: block;
  background-color: rgba(var(--color-foreground), 0.1);
  position: relative;
  overflow: hidden;
}

.media--transparent {
  background-color: transparent;
}

.media > *:not(.zoom):not(.deferred-media__poster-button),
.media model-viewer {
  display: block;
  max-width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.media > img {
  object-fit: cover;
  object-position: center center;
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.media--square {
  padding-bottom: 100%;
}

.media--portrait {
  padding-bottom: 125%;
}

.media--landscape {
  padding-bottom: 66.6%;
}

.media--cropped {
  padding-bottom: 56%;
}

.media--16-9 {
  padding-bottom: 56.25%;
}

.media--circle {
  padding-bottom: 100%;
  border-radius: 50%;
}

.media.media--hover-effect > img + img {
  opacity: 0;
}

@media screen and (min-width: 990px) {
  .media--cropped {
    padding-bottom: 63%;
  }
}

deferred-media {
  display: block;
}

/* component-button */
/* Button - default */

.button--secondary,
.button--tertiary {
  --color-button: var(--color-secondary-button);
  --color-button-text: var(--color-secondary-button-text);
}

.button--tertiary {
  --alpha-button-background: 0;
  --alpha-button-border: 0.2;
}

.button,
.shopify-challenge__button,
.customer button,
button.shopify-payment-button__button--unbranded {
  --shadow-horizontal-offset: var(--buttons-shadow-horizontal-offset);
  --shadow-vertical-offset: var(--buttons-shadow-vertical-offset);
  --shadow-blur-radius: var(--buttons-shadow-blur-radius);
  --shadow-opacity: var(--buttons-shadow-opacity);
  --shadow-visible: var(--buttons-shadow-visible);
  --border-offset: var(--buttons-border-offset); /* reduce radius edge artifacts */
  --border-opacity: calc(1 - var(--buttons-border-opacity));
  border-radius: var(--buttons-radius-outset);
  position: relative;
}

.button,
.shopify-challenge__button,
.customer button,
button.shopify-payment-button__button--unbranded {
  min-width: calc(12rem + var(--buttons-border-width) * 2);
  min-height: calc(4.5rem + var(--buttons-border-width) * 2);
}

.button,
.shopify-challenge__button,
.customer button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 0;
  padding: 0 3rem;
  cursor: pointer;
  font: inherit;
  font-size: 1.5rem;
  text-decoration: none;
  color: rgb(var(--color-button-text));
  transition: box-shadow var(--duration-short) ease;
  -webkit-appearance: none;
  appearance: none;
  background-color: rgba(var(--color-button), var(--alpha-button-background));
}

.button:before,
.shopify-challenge__button:before,
.customer button:before,
.shopify-payment-button__button--unbranded:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  border-radius: var(--buttons-radius-outset);
  box-shadow: var(--shadow-horizontal-offset) var(--shadow-vertical-offset) var(--shadow-blur-radius)
    rgba(var(--color-shadow), var(--shadow-opacity));
}

.button:after,
.shopify-challenge__button:after,
.customer button:after,
.shopify-payment-button__button--unbranded:after {
  content: '';
  position: absolute;
  top: var(--buttons-border-width);
  right: var(--buttons-border-width);
  bottom: var(--buttons-border-width);
  left: var(--buttons-border-width);
  z-index: 1;
  border-radius: var(--buttons-radius);
  box-shadow: 0 0 0 calc(var(--buttons-border-width) + var(--border-offset))
      rgba(var(--color-button-text), var(--border-opacity)),
    0 0 0 var(--buttons-border-width) rgba(var(--color-button), var(--alpha-button-background));
  transition: box-shadow var(--duration-short) ease;
}

.button:not([disabled]):hover::after,
.shopify-challenge__button:hover::after,
.customer button:hover::after,
.shopify-payment-button__button--unbranded:hover::after {
  --border-offset: 1.3px;
  box-shadow: 0 0 0 calc(var(--buttons-border-width) + var(--border-offset))
      rgba(var(--color-button-text), var(--border-opacity)),
    0 0 0 calc(var(--buttons-border-width) + 1px) rgba(var(--color-button), var(--alpha-button-background));
}

.button--secondary:after {
  --border-opacity: var(--buttons-border-opacity);
}

.button:focus-visible,
.button:focus,
.button.focused,
.shopify-payment-button__button--unbranded:focus-visible,
.shopify-payment-button__button--unbranded:focus {
  outline: 0;
  box-shadow: 0 0 0 0.3rem rgb(var(--color-background)), 0 0 0 0.5rem rgba(var(--color-foreground), 0.5),
    0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3);
}

.button:focus:not(:focus-visible):not(.focused),
.shopify-payment-button__button--unbranded:focus:not(:focus-visible):not(.focused) {
  box-shadow: inherit;
}

.button::selection,
.shopify-challenge__button::selection,
.customer button::selection {
  background-color: rgba(var(--color-button-text), 0.3);
}

.button,
.button-label,
.shopify-challenge__button,
.customer button {
  font-size: 1.5rem;
  letter-spacing: 0.1rem;
  line-height: calc(1 + 0.2 / var(--font-body-scale));
}

.button--tertiary {
  font-size: 1.2rem;
  padding: 1rem 1.5rem;
  min-width: calc(9rem + var(--buttons-border-width) * 2);
  min-height: calc(3.5rem + var(--buttons-border-width) * 2);
}

.button--small {
  padding: 1.2rem 2.6rem;
}

/* Shopify Accelerated Checkout */

shopify-accelerated-checkout {
  --shopify-accelerated-checkout-button-border-radius: var(--buttons-radius-outset);
  --shopify-accelerated-checkout-button-box-shadow: var(--shadow-horizontal-offset) var(--shadow-vertical-offset) var(--shadow-blur-radius)
  rgba(var(--color-shadow), var(--shadow-opacity));
}
shopify-accelerated-checkout-cart {
  --shopify-accelerated-checkout-button-border-radius: var(--buttons-radius-outset);
  --shopify-accelerated-checkout-button-box-shadow: var(--shadow-horizontal-offset) var(--shadow-vertical-offset) var(--shadow-blur-radius)
  rgba(var(--color-shadow), var(--shadow-opacity));
}


/* Button - other */

.button:disabled,
.button[aria-disabled='true'],
.button.disabled,
.customer button:disabled,
.customer button[aria-disabled='true'],
.customer button.disabled,
.quantity__button.disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.button--full-width {
  display: flex;
  width: 100%;
}

.button.loading {
  color: transparent;
  position: relative;
}

@media screen and (forced-colors: active) {
  .button.loading {
    color: rgb(var(--color-foreground));
  }
}

.button.loading > .loading__spinner {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  height: 100%;
  display: flex;
  align-items: center;
}

.button.loading > .loading__spinner .spinner {
  width: fit-content;
}

.button.loading > .loading__spinner .path {
  stroke: rgb(var(--color-button-text));
}

/* Button - social share */

.share-button {
  display: block;
  position: relative;
}

.share-button details {
  width: fit-content;
}

.share-button__button {
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  color: rgb(var(--color-link));
  margin-left: 0;
  padding-left: 0;
  min-height: 4.4rem;
}

details[open] > .share-button__fallback {
  animation: animateMenuOpen var(--duration-default) ease;
}

.share-button__button:hover {
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}

.share-button__button,
.share-button__fallback button {
  cursor: pointer;
  background-color: transparent;
  border: none;
}

.share-button__button .icon-share {
  height: 1.2rem;
  margin-right: 1rem;
  min-width: 1.3rem;
}

.share-button__fallback {
  display: flex;
  align-items: center;
  position: absolute;
  top: 3rem;
  left: 0.1rem;
  z-index: 3;
  width: 100%;
  min-width: max-content;
  border-radius: var(--inputs-radius);
  border: 0;
}

.share-button__fallback:after {
  pointer-events: none;
  content: '';
  position: absolute;
  top: var(--inputs-border-width);
  right: var(--inputs-border-width);
  bottom: var(--inputs-border-width);
  left: var(--inputs-border-width);
  border: 0.1rem solid transparent;
  border-radius: var(--inputs-radius);
  box-shadow: 0 0 0 var(--inputs-border-width) rgba(var(--color-foreground), var(--inputs-border-opacity));
  transition: box-shadow var(--duration-short) ease;
  z-index: 1;
}

.share-button__fallback:before {
  background: rgb(var(--color-background));
  pointer-events: none;
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: var(--inputs-radius-outset);
  box-shadow: var(--inputs-shadow-horizontal-offset) var(--inputs-shadow-vertical-offset)
    var(--inputs-shadow-blur-radius) rgba(var(--color-shadow), var(--inputs-shadow-opacity));
  z-index: -1;
}

.share-button__fallback button {
  width: 4.4rem;
  height: 4.4rem;
  padding: 0;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  right: var(--inputs-border-width);
}

.share-button__fallback button:hover {
  color: rgba(var(--color-foreground), 0.75);
}

.share-button__fallback button:hover .svg-wrapper {
  transform: scale(1.07);
}

.share-button__close:not(.hidden) + .share-button__copy {
  display: none;
}

.share-button__close,
.share-button__copy {
  background-color: transparent;
  color: rgb(var(--color-foreground));
}

.share-button__copy:focus-visible,
.share-button__close:focus-visible {
  background-color: rgb(var(--color-background));
  z-index: 2;
}

.share-button__copy:focus,
.share-button__close:focus {
  background-color: rgb(var(--color-background));
  z-index: 2;
}

.field:not(:focus-visible):not(.focused) + .share-button__copy:not(:focus-visible):not(.focused),
.field:not(:focus-visible):not(.focused) + .share-button__close:not(:focus-visible):not(.focused) {
  background-color: inherit;
}

.share-button__fallback .field:after,
.share-button__fallback .field:before {
  content: none;
}

.share-button__fallback .field {
  border-radius: 0;
  min-width: auto;
  min-height: auto;
  transition: none;
}

.share-button__fallback .field__input:focus,
.share-button__fallback .field__input:-webkit-autofill {
  outline: 0.2rem solid rgba(var(--color-foreground), 0.5);
  outline-offset: 0.1rem;
  box-shadow: 0 0 0 0.1rem rgb(var(--color-background)), 0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3);
}

.share-button__fallback .field__input {
  box-shadow: none;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  filter: none;
  min-width: auto;
  min-height: auto;
}

.share-button__fallback .field__input:hover {
  box-shadow: none;
}

.share-button__fallback .icon {
  width: 1.5rem;
  height: 1.5rem;
}

.share-button__message:not(:empty) {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-top: 0;
  padding: 0.8rem 0 0.8rem 1.5rem;
  margin: var(--inputs-border-width);
}

.share-button__message:not(:empty):not(.hidden) ~ * {
  display: none;
}

/* component-form */
.field__input,
.select__select,
.customer .field input,
.customer select {
  -webkit-appearance: none;
  appearance: none;
  background-color: rgb(var(--color-background));
  color: rgb(var(--color-foreground));
  font-family: var(--font-body-family);
  font-style: var(--font-body-style);
  font-weight: var(--font-body-weight);
  font-size: 1.6rem;
  width: 100%;
  box-sizing: border-box;
  transition: box-shadow var(--duration-short) ease;
  border-radius: var(--inputs-radius);
  height: 4.5rem;
  min-height: calc(var(--inputs-border-width) * 2);
  min-width: calc(7rem + (var(--inputs-border-width) * 2));
  position: relative;
  border: 0;
}

.field:before,
.select:before,
.customer .field:before,
.customer select:before,
.localization-form__select:before {
  pointer-events: none;
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: var(--inputs-radius-outset);
  box-shadow: var(--inputs-shadow-horizontal-offset) var(--inputs-shadow-vertical-offset)
    var(--inputs-shadow-blur-radius) rgba(var(--color-shadow), var(--inputs-shadow-opacity));
  z-index: -1;
}

.field:after,
.select:after,
.customer .field:after,
.customer select:after,
.localization-form__select:after {
  pointer-events: none;
  content: '';
  position: absolute;
  top: var(--inputs-border-width);
  right: var(--inputs-border-width);
  bottom: var(--inputs-border-width);
  left: var(--inputs-border-width);
  border: 0.1rem solid transparent;
  border-radius: var(--inputs-radius);
  box-shadow: 0 0 0 var(--inputs-border-width) rgba(var(--color-foreground), var(--inputs-border-opacity));
  transition: box-shadow var(--duration-short) ease;
  z-index: 1;
}

.select__select {
  font-family: var(--font-body-family);
  font-style: var(--font-body-style);
  font-weight: var(--font-body-weight);
  font-size: 1.2rem;
  color: rgba(var(--color-foreground), 0.75);
}

.field:hover.field:after,
.select:hover.select:after,
.select__select:hover.select__select:after,
.customer .field:hover.field:after,
.customer select:hover.select:after,
.localization-form__select:hover.localization-form__select:after {
  box-shadow: 0 0 0 calc(0.1rem + var(--inputs-border-width))
    rgba(var(--color-foreground), var(--inputs-border-opacity));
  outline: 0;
  border-radius: var(--inputs-radius);
}

.field__input:focus-visible,
.select__select:focus-visible,
.customer .field input:focus-visible,
.customer select:focus-visible,
.localization-form__select:focus-visible.localization-form__select:after {
  box-shadow: 0 0 0 calc(0.1rem + var(--inputs-border-width)) rgba(var(--color-foreground));
  outline: 0;
  border-radius: var(--inputs-radius);
}

.field__input:focus,
.select__select:focus,
.customer .field input:focus,
.customer select:focus,
.localization-form__select:focus.localization-form__select:after {
  box-shadow: 0 0 0 calc(0.1rem + var(--inputs-border-width)) rgba(var(--color-foreground));
  outline: 0;
  border-radius: var(--inputs-radius);
}

.localization-form__select:focus {
  outline: 0;
  box-shadow: none;
}

.text-area,
.select {
  display: flex;
  position: relative;
  width: 100%;
}

/* Select */

.select .svg-wrapper,
.customer select + .svg-wrapper {
  height: 0.6rem;
  width: 1rem;
  pointer-events: none;
  position: absolute;
  top: calc(50% - 0.2rem);
  right: 0;
}

.select__select,
.customer select {
  cursor: pointer;
  line-height: calc(1 + 0.6 / var(--font-body-scale));
  padding: 0 calc(var(--inputs-border-width) + 3rem) 0 2rem;
  margin: var(--inputs-border-width);
  min-height: calc(var(--inputs-border-width) * 2);
}

/* Field */

.field {
  position: relative;
  width: 100%;
  display: flex;
  transition: box-shadow var(--duration-short) ease;
}

.customer .field {
  display: flex;
}

.field--with-error {
  flex-wrap: wrap;
}

.field__input,
.customer .field input {
  flex-grow: 1;
  text-align: left;
  padding: 1.5rem;
  margin: var(--inputs-border-width);
  transition: box-shadow var(--duration-short) ease;
}

.field__label,
.customer .field label {
  font-size: 1.6rem;
  left: calc(var(--inputs-border-width) + 2rem);
  top: calc(1rem + var(--inputs-border-width));
  margin-bottom: 0;
  pointer-events: none;
  position: absolute;
  transition: top var(--duration-short) ease, font-size var(--duration-short) ease;
  color: rgba(var(--color-foreground), 0.75);
  letter-spacing: 0.1rem;
  line-height: 1.5;
}

.field__input:focus ~ .field__label,
.field__input:not(:placeholder-shown) ~ .field__label,
.field__input:-webkit-autofill ~ .field__label,
.customer .field input:focus ~ label,
.customer .field input:not(:placeholder-shown) ~ label,
.customer .field input:-webkit-autofill ~ label {
  font-size: 1rem;
  top: calc(var(--inputs-border-width) + 0.5rem);
  left: calc(var(--inputs-border-width) + 2rem);
  letter-spacing: 0.04rem;
}

.field__input:focus,
.field__input:not(:placeholder-shown),
.field__input:-webkit-autofill,
.customer .field input:focus,
.customer .field input:not(:placeholder-shown),
.customer .field input:-webkit-autofill {
  padding: 2.2rem 1.5rem 0.8rem 2rem;
  margin: var(--inputs-border-width);
}

.field__input::-webkit-search-cancel-button,
.customer .field input::-webkit-search-cancel-button {
  display: none;
}

.field__input::placeholder,
.customer .field input::placeholder {
  opacity: 0;
}

.field__button {
  align-items: center;
  background-color: transparent;
  border: 0;
  color: currentColor;
  cursor: pointer;
  display: flex;
  height: 4.4rem;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 4.4rem;
}

.field__button > .svg-wrapper {
  height: 2.5rem;
  width: 2.5rem;
}

.field__input:-webkit-autofill ~ .field__button,
.field__input:-webkit-autofill ~ .field__label,
.customer .field input:-webkit-autofill ~ label {
  color: rgb(0, 0, 0);
}

/* Text area */

.text-area {
  font-family: var(--font-body-family);
  font-style: var(--font-body-style);
  font-weight: var(--font-body-weight);
  min-height: 10rem;
  resize: none;
}

input[type='checkbox'] {
  display: inline-block;
  width: auto;
  margin-right: 0.5rem;
}

/* Form global */

.form__label {
  display: block;
  margin-bottom: 0.6rem;
}

.form__message {
  align-items: center;
  display: flex;
  font-size: 1.4rem;
  line-height: 1;
  margin-top: 1rem;
}

.form__message--large {
  font-size: 1.6rem;
}

.customer .field .form__message {
  font-size: 1.4rem;
  text-align: left;
}

.form__message .icon,
.customer .form__message .svg-wrapper {
  flex-shrink: 0;
  height: 1.3rem;
  margin-right: 0.5rem;
  width: 1.3rem;
}

.form__message--large .icon,
.customer .form__message .svg-wrapper {
  height: 1.5rem;
  width: 1.5rem;
  margin-right: 1rem;
}

.customer .field .form__message .svg-wrapper {
  align-self: start;
}

.form-status {
  margin: 0;
  font-size: 1.6rem;
}

.form-status-list {
  padding: 0;
  margin: 2rem 0 4rem;
}

.form-status-list li {
  list-style-position: inside;
}

.form-status-list .link::first-letter {
  text-transform: capitalize;
}

/* component-quantity */
.quantity {
  color: rgba(var(--color-foreground));
  position: relative;
  width: calc(14rem / var(--font-body-scale) + var(--inputs-border-width) * 2);
  display: flex;
  border-radius: var(--inputs-radius);
  min-height: calc((var(--inputs-border-width) * 2) + 4.5rem);
}

.quantity:after {
  pointer-events: none;
  content: '';
  position: absolute;
  top: var(--inputs-border-width);
  right: var(--inputs-border-width);
  bottom: var(--inputs-border-width);
  left: var(--inputs-border-width);
  border: 0.1rem solid transparent;
  border-radius: var(--inputs-radius);
  box-shadow: 0 0 0 var(--inputs-border-width) rgba(var(--color-foreground), var(--inputs-border-opacity));
  transition: box-shadow var(--duration-short) ease;
  z-index: 1;
}

.quantity:before {
  background: rgb(var(--color-background));
  pointer-events: none;
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: var(--inputs-radius-outset);
  box-shadow: var(--inputs-shadow-horizontal-offset) var(--inputs-shadow-vertical-offset)
    var(--inputs-shadow-blur-radius) rgba(var(--color-shadow), var(--inputs-shadow-opacity));
  z-index: -1;
}

.quantity__input {
  color: currentColor;
  font-family: var(--font-body-family);
  font-style: var(--font-body-style);
  font-weight: var(--font-body-weight);
  font-size: 1.6rem;
  font-weight: 500;
  opacity: 0.85;
  text-align: center;
  background-color: transparent;
  border: 0;
  padding: 0 0.5rem;
  width: 100%;
  flex-grow: 1;
  -webkit-appearance: none;
  appearance: none;
}

.quantity__button {
  width: calc(4.5rem / var(--font-body-scale));
  flex-shrink: 0;
  font-size: 1.8rem;
  border: 0;
  background-color: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(var(--color-foreground));
  padding: 0;
}

.quantity__button:first-child {
  margin-left: calc(var(--inputs-border-width));
}

.quantity__button:last-child {
  margin-right: calc(var(--inputs-border-width));
}

.quantity__button .svg-wrapper {
  width: 1rem;
  pointer-events: none;
}

.quantity__button:focus-visible,
.quantity__input:focus-visible {
  background-color: rgb(var(--color-background));
  z-index: 2;
}

.quantity__button:focus,
.quantity__input:focus {
  background-color: rgb(var(--color-background));
  z-index: 2;
}

.quantity__button:not(:focus-visible):not(.focused),
.quantity__input:not(:focus-visible):not(.focused) {
  box-shadow: inherit;
  background-color: inherit;
}

.quantity__input:-webkit-autofill,
.quantity__input:-webkit-autofill:hover,
.quantity__input:-webkit-autofill:active {
  box-shadow: 0 0 0 10rem rgb(var(--color-background)) inset !important;
  -webkit-box-shadow: 0 0 0 10rem rgb(var(--color-background)) inset !important;
}

.quantity__input::-webkit-outer-spin-button,
.quantity__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.quantity__input[type='number'] {
  -moz-appearance: textfield;
}

.quantity__rules {
  margin-top: 0.5rem;
  position: relative;
  font-size: 1.2rem;
}

.quantity__rules .caption {
  display: inline-block;
  margin-top: 0;
  margin-bottom: 0;
}

.quantity__rules .divider + .divider::before {
  content: '\2022';
  margin: 0 0.5rem;
}

.quantity__rules-cart {
  position: relative;
}

.product__info-container .loading__spinner:not(.hidden) ~ *,
.quantity__rules-cart .loading__spinner:not(.hidden) ~ * {
  visibility: hidden;
}

/* component-modal */
.modal__toggle {
  list-style-type: none;
}

.modal__toggle-close {
  display: none;
}

.modal__toggle-open {
  display: flex;
}

.modal__close-button.link {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0rem;
  height: 4.4rem;
  width: 4.4rem;
  background-color: transparent;
}

.modal__close-button .icon {
  width: 1.7rem;
  height: 1.7rem;
}

.modal__content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgb(var(--color-background));
  z-index: 4;
  display: flex;
  justify-content: center;
  align-items: center;
}

.media-modal {
  cursor: zoom-out;
}

.media-modal .deferred-media {
  cursor: initial;
}

/* component-cart-count-bubble */
.cart-count-bubble:empty {
  display: none;
}

.cart-count-bubble {
  position: absolute;
  background-color: rgb(var(--color-button));
  color: rgb(var(--color-button-text));
  height: 1.7rem;
  width: 1.7rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.9rem;
  bottom: 0.8rem;
  left: 2.2rem;
  line-height: calc(1 + 0.1 / var(--font-body-scale));
}

/* utility-bar */
.utility-bar {
  height: 100%;
}

.utility-bar--bottom-border {
  border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.08);
}

@media screen and (min-width: 990px) {
  .utility-bar--bottom-border-social-only {
    border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.08);
  }
}

.utility-bar__grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: 'announcements';
}

.utility-bar__grid .list-social {
  justify-content: flex-start;
  align-content: center;
  margin-left: -1.2rem;
  grid-area: social-icons;
}

@media screen and (max-width: 989px) {
  .utility-bar .utility-bar__grid .list-social {
    display: none;
  }
}

.utility-bar .list-social__item .icon {
  scale: 0.9;
}

@media screen and (min-width: 990px) {
  .utility-bar__grid--3-col {
    grid-template-columns: 3fr 4fr 3fr;
    grid-template-areas: 'social-icons announcements language-currency';
  }

  .utility-bar__grid--2-col {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: 'social-icons language-currency';
  }

  .announcement-bar.announcement-bar--one-announcement,
  .announcement-bar--one-announcement .announcement-bar__link {
    width: fit-content;
    margin: auto;
  }
}

.announcement-bar,
.announcement-bar__announcement {
  color: rgb(var(--color-foreground));
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-content: center;
  grid-area: announcements;
}

.announcement-bar .slider--everywhere {
  margin-bottom: 0;
  scroll-behavior: auto;
}

.utility-bar__grid .announcement-bar-slider {
  width: 100%;
}

.utility-bar__grid .announcement-bar-slider {
  width: 100%;
}

.announcement-bar-slider,
.announcement-bar-slider .slider {
  width: 100%;
}

.announcement-bar .slider-button--next {
  margin-right: -1.5rem;
  min-width: 44px;
}

.announcement-bar .slider-button--prev {
  margin-left: -1.5rem;
  min-width: 44px;
}

.announcement-bar .slider-button--next:focus-visible,
.announcement-bar .slider-button--prev:focus-visible,
.utility-bar .list-social__link:focus-visible {
  outline-offset: -0.3rem;
  box-shadow: 0 0 0 -0.2rem rgb(var(--color-foreground));
}

.localization-wrapper {
  grid-area: language-currency;
  align-self: center;
  display: flex;
  justify-content: flex-end;
}

.localization-wrapper .localization-selector + .disclosure__list-wrapper {
  animation: animateMenuOpen var(--duration-default) ease;
}

.utility-bar .localization-wrapper .disclosure .localization-form__select,
.utility-bar .localization-wrapper .disclosure__link {
  font-size: calc(var(--font-heading-scale) * 1.3rem);
}

@media screen and (min-width: 990px) {
  body:has(.section-header .header:not(.drawer-menu)) .utility-bar .page-width {
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .announcement-bar-slider {
    width: 60%;
  }

  .announcement-bar .slider-button {
    height: 3.8rem;
  }
}

.announcement-bar__link {
  display: flex;
  width: 100%;
  text-decoration: none;
  height: 100%;
  justify-content: center;
  align-items: center;
}

.announcement-bar__link:hover {
  text-decoration: underline;
}

.announcement-bar__link .icon-arrow {
  display: inline-block;
  pointer-events: none;
  margin-left: 0.8rem;
  vertical-align: middle;
  margin-bottom: 0.2rem;
}

.announcement-bar__message {
  text-align: center;
  padding: 1rem 0;
  margin: 0;
  letter-spacing: 0.1rem;
  min-height: 3.8rem;
}

.announcement-bar-slider--fade-in-next .announcement-bar__message,
.announcement-bar-slider--fade-in-previous .announcement-bar__message,
.announcement-bar-slider--fade-out-next .announcement-bar__message,
.announcement-bar-slider--fade-out-previous .announcement-bar__message {
  animation-duration: var(--duration-announcement-bar);
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

.announcement-bar-slider--fade-in-next .announcement-bar__message {
  --announcement-translate-from: -1.5rem;
  /* Prevent flicker */
  opacity: 0;
  animation-name: translateAnnouncementSlideIn;
  animation-delay: var(--duration-announcement-bar);
}

.announcement-bar-slider--fade-in-previous .announcement-bar__message {
  --announcement-translate-from: 1.5rem;
  /* Prevent flicker */
  opacity: 0;
  animation-name: translateAnnouncementSlideIn;
  animation-delay: var(--duration-announcement-bar);
}

.announcement-bar-slider--fade-out-next .announcement-bar__message {
  --announcement-translate-to: 1.5rem;
  animation-name: translateAnnouncementSlideOut;
}

.announcement-bar-slider--fade-out-previous .announcement-bar__message {
  --announcement-translate-to: -1.5rem;
  animation-name: translateAnnouncementSlideOut;
}

@keyframes translateAnnouncementSlideIn {
  0% {
    opacity: 0;
    transform: translateX(var(--announcement-translate-from));
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes translateAnnouncementSlideOut {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(var(--announcement-translate-to));
  }
}

/* section-header */
.section-header.shopify-section-group-header-group {
  z-index: 3;
}

.shopify-section-header-sticky {
  position: sticky;
  top: 0;
}

.shopify-section-header-hidden {
  top: calc(-1 * var(--header-height));
}

.shopify-section-header-hidden.menu-open {
  top: 0;
}

.section-header.animate {
  transition: top 0.15s ease-out;
}

.shopify-section-group-header-group {
  z-index: 4;
}

.section-header ~ .shopify-section-group-header-group {
  z-index: initial;
}

/* Main Header Layout */
.header-wrapper {
  display: block;
  position: relative;
  background-color: rgb(var(--color-background));
}

.header-wrapper--border-bottom {
  border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.08);
}

.header {
  display: grid;
  grid-template-areas: 'left-icons heading icons';
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
}

@media screen and (max-width: 749px) {
  .header--has-app {
    grid-template-columns: auto 1fr auto;
  }
}

@media screen and (min-width: 990px) {
  .header {
    grid-template-columns: 1fr auto 1fr;
  }

  .header--top-left,
  .header--middle-left:not(.header--has-menu) {
    grid-template-areas:
      'heading icons'
      'navigation navigation';
    grid-template-columns: 1fr auto;
  }

  .header--top-left.drawer-menu,
  .header--middle-left.drawer-menu {
    grid-template-areas: 'navigation heading icons';
    grid-template-columns: auto 1fr auto;
    column-gap: 1rem;
  }

  .header--middle-left {
    grid-template-areas: 'heading navigation icons';
    grid-template-columns: auto auto 1fr;
    column-gap: 2rem;
  }

  .header--middle-center:not(.drawer-menu) {
    grid-template-areas: 'navigation heading icons';
    grid-template-columns: 1fr auto 1fr;
    column-gap: 2rem;
  }

  .header--middle-center a.header__heading-link {
    text-align: center;
  }

  .header--top-center {
    grid-template-areas:
      'left-icons heading icons'
      'navigation navigation navigation';
  }

  .header--top-center.drawer-menu {
    grid-template-areas: 'left-icons heading icons';
    grid-template-columns: 1fr auto 1fr;
  }

  .header:not(.header--middle-left, .header--middle-center) .header__inline-menu {
    margin-top: 1.05rem;
  }
}

.header *[tabindex='-1']:focus {
  outline: none;
}

.header__heading {
  margin: 0;
  line-height: 0;
}

.header > .header__heading-link {
  line-height: 0;
}

.header__heading,
.header__heading-link {
  grid-area: heading;
  justify-self: center;
}

.header__heading-link {
  display: inline-block;
  padding: 0.75rem;
  text-decoration: none;
  word-break: break-word;
}

.header__heading-link:hover .h2 {
  color: rgb(var(--color-foreground));
}

.header__heading-link .h2 {
  line-height: 1;
  color: rgba(var(--color-foreground), 0.75);
}

.header__heading-logo {
  height: auto;
  max-width: 100%;
}

.header__heading-logo-wrapper {
  width: 100%;
  display: inline-block;
  transition: width 0.3s cubic-bezier(0.52, 0, 0.61, 0.99);
}

@media screen and (max-width: 989px) {
  .header__heading,
  .header__heading-link {
    text-align: center;
  }

  .header--mobile-left .header__heading,
  .header--mobile-left .header__heading-link {
    text-align: left;
    justify-self: start;
  }

  .header--mobile-left {
    grid-template-columns: auto 2fr 1fr;
  }
}

@media screen and (min-width: 990px) {
  .header--middle-left .header__heading-link,
  .header--top-left .header__heading-link {
    margin-left: -0.75rem;
  }

  .header__heading,
  .header__heading-link {
    justify-self: start;
  }

  .header--middle-center .header__heading-link,
  .header--middle-center .header__heading {
    justify-self: center;
    text-align: center;
  }

  .header--top-center .header__heading-link,
  .header--top-center .header__heading {
    justify-self: center;
    text-align: center;
  }
}

/* Header icons */
.header__icons {
  display: flex;
  grid-area: icons;
  justify-self: end;
  padding-right: 0.8rem;
}

.header__icons .shopify-app-block {
  max-width: 4.4rem;
  max-height: 4.4rem;
  overflow: hidden;
}

.header__icon:not(.header__icon--summary),
.header__icon span {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__icon {
  color: rgb(var(--color-foreground));
}

.header__icon span {
  height: 100%;
}

.header__icon .svg-wrapper {
  width: 44px;
  height: 44px;
}

.header__icon::after {
  content: none;
}

.header__icon:hover .icon,
.modal__close-button:hover .icon {
  transform: scale(1.07);
}

.header__icon .icon {
  height: 2rem;
  width: 2rem;
  fill: none;
  vertical-align: middle;
}

.header__icon,
.header__icon--cart .icon {
  height: 4.4rem;
  width: 4.4rem;
  padding: 0;
}

.header__icon--cart {
  position: relative;
  margin-right: -1.2rem;
}

.header__icon--menu[aria-expanded='true']::before {
  content: '';
  top: 100%;
  left: 0;
  height: calc(var(--viewport-height, 100vh) - (var(--header-bottom-position, 100%)));
  width: 100%;
  display: block;
  position: absolute;
  background: rgba(var(--color-foreground), 0.5);
}

.header__icon--account shop-user-avatar {
  --shop-avatar-size: 2.8rem;
}

details .header__icon-close {
  display: none;
}

details[open] .header__icon-close {
  display: inline-block;
}

account-icon {
  display: flex;
}

/* Search */
menu-drawer + .header__search {
  display: none;
}

.header > .header__search {
  grid-area: left-icons;
  justify-self: start;
}

.header--top-center.drawer-menu > .header__search {
  margin-left: 3.2rem;
}

.header--top-center header-drawer {
  grid-area: left-icons;
}

.header:not(.header--has-menu) * > .header__search {
  display: none;
}

.header__search {
  display: inline-flex;
  line-height: 0;
}

.header--top-center > .header__search {
  display: none;
}

.header--top-center * > .header__search {
  display: inline-flex;
}

@media screen and (min-width: 990px) {
  .header:not(.header--top-center) * > .header__search,
  .header--top-center > .header__search {
    display: inline-flex;
  }

  .header:not(.header--top-center) > .header__search,
  .header--top-center * > .header__search {
    display: none;
  }
}

details[open] > .search-modal {
  opacity: 1;
  animation: animateMenuOpen var(--duration-default) ease;
}

details[open] .modal-overlay {
  display: block;
}

details[open] .modal-overlay::after {
  position: absolute;
  content: '';
  background-color: rgb(var(--color-foreground), 0.5);
  top: 100%;
  left: 0;
  right: 0;
  height: 100vh;
}

.search-modal {
  opacity: 0;
  border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.08);
  min-height: calc(100% + var(--inputs-margin-offset) + (2 * var(--inputs-border-width)));
  height: 100%;
}

.search-modal__content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0 5rem 0 1rem;
  line-height: calc(1 + 0.8 / var(--font-body-scale));
  position: relative;
}

.search-modal__content-bottom {
  bottom: calc((var(--inputs-margin-offset) / 2));
}

.search-modal__content-top {
  top: calc((var(--inputs-margin-offset) / 2));
}

.search-modal__form {
  width: 100%;
}

.search-modal__close-button {
  position: absolute;
  right: 0.3rem;
}

@media screen and (min-width: 750px) {
  .search-modal__close-button {
    right: 1rem;
  }

  .search-modal__content {
    padding: 0 6rem;
  }
}

@media screen and (min-width: 990px) {
  .search-modal__form {
    max-width: 74.2rem;
  }

  .search-modal__close-button {
    position: initial;
    margin-left: 0.5rem;
  }
}

/* Header menu drawer */
.header__icon--menu .icon {
  display: block;
  position: absolute;
  opacity: 1;
  transform: scale(1);
  transition: transform 150ms ease, opacity 150ms ease;
}

details:not([open]) > .header__icon--menu .icon-close,
details[open] > .header__icon--menu .icon-hamburger {
  visibility: hidden;
  opacity: 0;
  transform: scale(0.8);
}

.js details[open]:not(.menu-opening) > .header__icon--menu .icon-close {
  visibility: hidden;
}

.js details[open]:not(.menu-opening) > .header__icon--menu .icon-hamburger {
  visibility: visible;
  opacity: 1;
  transform: scale(1.07);
}

.js details > .header__submenu {
  opacity: 0;
  transform: translateY(-1.5rem);
}

details[open] > .header__submenu {
  animation: animateMenuOpen var(--duration-default) ease;
  animation-fill-mode: forwards;
  z-index: 1;
}

@media (prefers-reduced-motion) {
  details[open] > .header__submenu {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Header menu */
.header__inline-menu {
  margin-left: -1.2rem;
  grid-area: navigation;
  display: none;
}

.header--top-center .header__inline-menu,
.header--top-center .header__heading-link {
  margin-left: 0;
}

@media screen and (min-width: 990px) {
  .header__inline-menu {
    display: block;
  }

  .header--top-center .header__inline-menu {
    justify-self: center;
  }

  .header--top-center .header__inline-menu > .list-menu--inline {
    justify-content: center;
  }

  .header--middle-left .header__inline-menu {
    margin-left: 0;
  }
}

.header__menu {
  padding: 0 1rem;
}

.header__menu-item {
  padding: 1.2rem;
  text-decoration: none;
  color: rgba(var(--color-foreground), 0.75);
}

.header__menu-item:hover {
  color: rgb(var(--color-foreground));
}

.header__menu-item span {
  transition: text-decoration var(--duration-short) ease;
}

.header__menu-item:hover span {
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}

details[open] > .header__menu-item {
  text-decoration: underline;
}

details[open]:hover > .header__menu-item {
  text-decoration-thickness: 0.2rem;
}

details[open] > .header__menu-item .icon-caret {
  transform: rotate(180deg);
}

.header__active-menu-item {
  transition: text-decoration-thickness var(--duration-short) ease;
  color: rgb(var(--color-foreground));
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}

.header__menu-item:hover .header__active-menu-item {
  text-decoration-thickness: 0.2rem;
}

.header__submenu {
  transition: opacity var(--duration-default) ease, transform var(--duration-default) ease;
}

.global-settings-popup,
.header__submenu.global-settings-popup {
  border-radius: var(--popup-corner-radius);
  border-color: rgba(var(--color-foreground), var(--popup-border-opacity));
  border-style: solid;
  border-width: var(--popup-border-width);
  box-shadow: var(--popup-shadow-horizontal-offset) var(--popup-shadow-vertical-offset) var(--popup-shadow-blur-radius)
    rgba(var(--color-shadow), var(--popup-shadow-opacity));
  z-index: -1;
}

.header__submenu.list-menu {
  padding: 1rem 0;
}

.header__submenu .header__submenu {
  background-color: rgba(var(--color-foreground), 0.03);
  padding: 1rem 0;
  margin: 1rem 0;
}

.header__submenu .header__menu-item:after {
  right: 2rem;
}

.header__submenu .header__menu-item {
  justify-content: space-between;
  padding: 0.8rem 2rem;
}

.header__submenu .header__menu-item:hover {
  text-decoration-line: underline;
}

.header__menu-item .icon-caret {
  right: 0.8rem;
}

.header__submenu .icon-caret {
  flex-shrink: 0;
  margin-left: 1rem;
  position: static;
}

header-menu > details,
details-disclosure > details {
  position: relative;
}

@keyframes animateMenuOpen {
  0% {
    opacity: 0;
    transform: translateY(-1.5rem);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.overflow-hidden-mobile,
.overflow-hidden-tablet,
.overflow-hidden-desktop {
  overflow: hidden;
}

@media screen and (min-width: 750px) {
  .overflow-hidden-mobile {
    overflow: auto;
  }
}

@media screen and (min-width: 990px) {
  .overflow-hidden-tablet {
    overflow: auto;
  }
}

.badge {
  border: 1px solid transparent;
  border-radius: var(--badge-corner-radius);
  display: inline-block;
  font-size: 1.2rem;
  letter-spacing: 0.1rem;
  line-height: 1;
  padding: 0.5rem 1.3rem 0.6rem 1.3rem;
  text-align: center;
  background-color: rgb(var(--color-badge-background));
  border-color: rgba(var(--color-badge-border), var(--alpha-badge-border));
  color: rgb(var(--color-badge-foreground));
  word-break: break-word;
}

.gradient {
  background: rgb(var(--color-background));
  background: var(--gradient-background);
  background-attachment: fixed;
}

@media screen and (forced-colors: active) {
  .icon {
    color: CanvasText;
    fill: CanvasText !important;
  }

  .icon-close-small path {
    stroke: CanvasText;
  }
}

.ratio {
  display: flex;
  position: relative;
  align-items: stretch;
}

.ratio::before {
  content: '';
  width: 0;
  height: 0;
  padding-bottom: var(--ratio-percent);
}

.content-container {
  border-radius: var(--text-boxes-radius);
  border: var(--text-boxes-border-width) solid rgba(var(--color-foreground), var(--text-boxes-border-opacity));
  position: relative;
}

.content-container:after {
  content: '';
  position: absolute;
  top: calc(var(--text-boxes-border-width) * -1);
  right: calc(var(--text-boxes-border-width) * -1);
  bottom: calc(var(--text-boxes-border-width) * -1);
  left: calc(var(--text-boxes-border-width) * -1);
  border-radius: var(--text-boxes-radius);
  box-shadow: var(--text-boxes-shadow-horizontal-offset) var(--text-boxes-shadow-vertical-offset)
    var(--text-boxes-shadow-blur-radius) rgba(var(--color-shadow), var(--text-boxes-shadow-opacity));
  z-index: -1;
}

.content-container--full-width:after {
  left: 0;
  right: 0;
  border-radius: 0;
}

@media screen and (max-width: 749px) {
  .content-container--full-width-mobile {
    border-left: none;
    border-right: none;
    border-radius: 0;
  }
  .content-container--full-width-mobile:after {
    display: none;
  }
}

.global-media-settings {
  position: relative;
  border: var(--media-border-width) solid rgba(var(--color-foreground), var(--media-border-opacity));
  border-radius: var(--media-radius);
  overflow: visible !important;
  background-color: rgb(var(--color-background));
}

.global-media-settings:after {
  content: '';
  position: absolute;
  top: calc(var(--media-border-width) * -1);
  right: calc(var(--media-border-width) * -1);
  bottom: calc(var(--media-border-width) * -1);
  left: calc(var(--media-border-width) * -1);
  border-radius: var(--media-radius);
  box-shadow: var(--media-shadow-horizontal-offset) var(--media-shadow-vertical-offset) var(--media-shadow-blur-radius)
    rgba(var(--color-shadow), var(--media-shadow-opacity));
  z-index: -1;
  pointer-events: none;
}

.global-media-settings--no-shadow {
  overflow: hidden !important;
}

.global-media-settings--no-shadow:after {
  content: none;
}

.global-media-settings img,
.global-media-settings iframe,
.global-media-settings model-viewer,
.global-media-settings video,
.global-media-settings .placeholder-svg {
  border-radius: calc(var(--media-radius) - var(--media-border-width));
}

.content-container--full-width,
.global-media-settings--full-width,
.global-media-settings--full-width img,
.global-media-settings--full-width video,
.global-media-settings--full-width iframe,
.global-media-settings--full-width .placeholder-svg {
  border-radius: 0;
  border-left: none;
  border-right: none;
}

/* check for flexbox gap in older Safari versions */
@supports not (inset: 10px) {
  .grid {
    margin-left: calc(-1 * var(--grid-mobile-horizontal-spacing));
  }

  .grid__item {
    padding-left: var(--grid-mobile-horizontal-spacing);
    padding-bottom: var(--grid-mobile-vertical-spacing);
  }

  @media screen and (min-width: 750px) {
    .grid {
      margin-left: calc(-1 * var(--grid-desktop-horizontal-spacing));
    }

    .grid__item {
      padding-left: var(--grid-desktop-horizontal-spacing);
      padding-bottom: var(--grid-desktop-vertical-spacing);
    }
  }

  .grid--gapless .grid__item {
    padding-left: 0;
    padding-bottom: 0;
  }

  @media screen and (min-width: 749px) {
    .grid--peek .grid__item {
      padding-left: var(--grid-mobile-horizontal-spacing);
    }
  }

  .product-grid .grid__item {
    padding-bottom: var(--grid-mobile-vertical-spacing);
  }

  @media screen and (min-width: 750px) {
    .product-grid .grid__item {
      padding-bottom: var(--grid-desktop-vertical-spacing);
    }
  }
}

.font-body-bold {
  font-weight: var(--font-body-weight-bold);
}

/* outline and border styling for Windows High Contrast Mode */
@media (forced-colors: active) {
  .button,
  .shopify-challenge__button,
  .customer button {
    border: transparent solid 1px;
  }

  .button:focus-visible,
  .button:focus,
  .button.focused,
  .shopify-payment-button__button--unbranded:focus-visible,
  .shopify-payment-button [role='button']:focus-visible,
  .shopify-payment-button__button--unbranded:focus,
  .shopify-payment-button [role='button']:focus {
    outline: solid transparent 1px;
  }

  .field__input:focus,
  .select__select:focus,
  .customer .field input:focus,
  .customer select:focus,
  .localization-form__select:focus.localization-form__select:after {
    outline: transparent solid 1px;
  }

  .localization-form__select:focus {
    outline: transparent solid 1px;
  }
}

.rte:after {
  clear: both;
  content: '';
  display: block;
}

.rte > *:first-child {
  margin-top: 0;
}

.rte > *:last-child {
  margin-bottom: 0;
}

.rte table {
  table-layout: fixed;
}

@media screen and (min-width: 750px) {
  .rte table td {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }
}

.rte img {
  height: auto;
  max-width: 100%;
  border: var(--media-border-width) solid rgba(var(--color-foreground), var(--media-border-opacity));
  border-radius: var(--media-radius);
  box-shadow: var(--media-shadow-horizontal-offset) var(--media-shadow-vertical-offset) var(--media-shadow-blur-radius)
    rgba(var(--color-shadow), var(--media-shadow-opacity));
  margin-bottom: var(--media-shadow-vertical-offset);
}

.rte ul,
.rte ol {
  list-style-position: inside;
  padding-left: 2rem;
}

.rte li {
  list-style: inherit;
}

.rte li:last-child {
  margin-bottom: 0;
}

.rte a {
  color: rgba(var(--color-link), var(--alpha-link));
  text-underline-offset: 0.3rem;
  text-decoration-thickness: 0.1rem;
  transition: text-decoration-thickness var(--duration-short) ease;
}

.rte a:hover {
  color: rgb(var(--color-link));
  text-decoration-thickness: 0.2rem;
}

.rte blockquote {
  display: inline-flex;
}

.rte blockquote > * {
  margin: -0.5rem 0 -0.5rem 0;
}

/* Image mask global styles */

.shape--mask {
  display: block;
  height: 0;
  width: 0;
}

.shape--arch {
  clip-path: url('#Shape-Arch');
}

.shape--blob {
  clip-path: polygon(var(--shape--blob-1));
}

.shape--chevronleft {
  clip-path: polygon(100% 0%, 85% 50%, 100% 100%, 15% 100%, 0% 50%, 15% 0%);
}

.shape--chevronright {
  clip-path: polygon(85% 0%, 100% 50%, 85% 100%, 0% 100%, 15% 50%, 0% 0%);
}

.shape--circle {
  clip-path: circle(closest-side);
}

.shape--diamond {
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.shape--parallelogram {
  clip-path: polygon(15% 0, 100% 0%, 85% 100%, 0% 100%);
}

.shape--round {
  clip-path: ellipse(45% 45% at 50% 50%);
}

/* Fixed background */
.animate--fixed {
  clip-path: inset(0);
}

.animate--fixed > img:not(.zoom):not(.deferred-media__poster-button),
.animate--fixed > svg:not(.zoom):not(.deferred-media__poster-button) {
  position: fixed;
  height: 100vh;
}

/* Zoom in image on scroll */
.animate--zoom-in {
  --zoom-in-ratio: 1;
}

.animate--zoom-in > img,
.animate--zoom-in > .svg-wrapper {
  transition: scale var(--duration-short) linear;
  scale: var(--zoom-in-ratio);
}

/* Animations */

@media (prefers-reduced-motion: no-preference) {
  .animate--ambient > img,
  .animate--ambient > .svg-wrapper {
    animation: animateAmbient 30s linear infinite;
  }

  @keyframes animateAmbient {
    0% {
      transform: rotate(0deg) translateX(1em) rotate(0deg) scale(1.2);
    }
    100% {
      transform: rotate(360deg) translateX(1em) rotate(-360deg) scale(1.2);
    }
  }

  .scroll-trigger.animate--fade-in,
  .scroll-trigger.animate--slide-in {
    opacity: 0.01;
  }

  .scroll-trigger.animate--slide-in {
    transform: translateY(2rem);
  }

  .scroll-trigger:not(.scroll-trigger--offscreen).animate--fade-in {
    opacity: 1;
    animation: var(--animation-fade-in);
  }

  .scroll-trigger:not(.scroll-trigger--offscreen).animate--slide-in {
    animation: var(--animation-slide-in);
    animation-delay: calc(var(--animation-order) * 75ms);
  }

  .scroll-trigger.scroll-trigger--design-mode.animate--fade-in,
  .scroll-trigger.scroll-trigger--design-mode.animate--slide-in,
  .scroll-trigger.scroll-trigger--design-mode .slider,
  .scroll-trigger:not(.scroll-trigger--offscreen).scroll-trigger--cancel {
    opacity: 1;
    animation: none;
    transition: none;
    transform: none;
  }

  .scroll-trigger.scroll-trigger--design-mode.animate--slide-in {
    transform: translateY(0);
  }

  @keyframes slideIn {
    from {
      transform: translateY(2rem);
      opacity: 0.01;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  @keyframes fadeIn {
    from {
      opacity: 0.01;
    }
    to {
      opacity: 1;
    }
  }
}

/* Element Hovers: Vertical Lift, 3d Lift */

@media (prefers-reduced-motion: no-preference) and (hover: hover) {
  .animate--hover-3d-lift .card-wrapper .card--card,
  .animate--hover-3d-lift .card-wrapper .card--standard .card__inner,
  .animate--hover-3d-lift .button:not(.button--tertiary),
  .animate--hover-3d-lift .shopify-challenge__button,
  .animate--hover-3d-lift .customer button,
  .animate--hover-3d-lift .shopify-payment-button__button,
  .animate--hover-3d-lift .deferred-media .deferred-media__poster-button {
    transition: transform var(--duration-long) ease, box-shadow var(--duration-long) ease;
    transform-origin: center;
  }

  .animate--hover-3d-lift .card-wrapper:hover .card--card,
  .animate--hover-3d-lift .card-wrapper:hover .card--standard .card__inner,
  .animate--hover-3d-lift .button:not(.button--tertiary):not([disabled]):hover,
  .animate--hover-3d-lift .shopify-challenge__button:not([disabled]):hover,
  .animate--hover-3d-lift .customer button:not([disabled]):hover,
  .animate--hover-3d-lift .shopify-payment-button__button:hover,
  .animate--hover-3d-lift .deferred-media:hover .deferred-media__poster-button {
    transition: transform var(--duration-extended) ease, box-shadow var(--duration-long) ease; /* Slow the card transition speed while hover is active. */
    transform: rotate(1deg);
    box-shadow: -1rem -1rem 1rem -1rem rgba(0, 0, 0, 0.05), 1rem 1rem 1rem -1rem rgba(0, 0, 0, 0.05),
      0 0 0.5rem 0 rgba(255, 255, 255, 0), 0 2rem 3.5rem -2rem rgba(0, 0, 0, 0.5);
  }

  .animate--hover-3d-lift .deferred-media:hover .deferred-media__poster-button {
    transform: translate(-50%, -50%) scale(1.05); /* Apply a specialized transform to the video play button. */
  }

  .animate--hover-3d-lift .collage__item .card-wrapper:hover .card--card,
  .animate--hover-3d-lift .collage__item .card-wrapper:hover .card--standard .card__inner {
    transform: rotate(0.5deg); /* Less intense rotation for collage items. */
  }

  .animate--hover-3d-lift .product-grid .grid__item:hover,
  .animate--hover-3d-lift .collection-list .grid__item:hover,
  .animate--hover-3d-lift .collage__item:hover,
  .animate--hover-3d-lift .blog-articles .article:hover,
  .animate--hover-3d-lift .complementary-slide li:hover {
    z-index: 2; /* Make sure the hovered card is the topmost card. */
  }

  .animate--hover-3d-lift .product-grid {
    isolation: isolate; /* Ensure z-index changes here don't negatively effect other UI stacking. */
  }

  .animate--hover-3d-lift .card-wrapper .card--shape.card--standard:not(.card--text) .card__inner {
    box-shadow: none;
    transition: transform var(--duration-long) ease, filter var(--duration-long) ease;
  }

  .animate--hover-3d-lift .card-wrapper:hover .card--shape.card--standard:not(.card--text) .card__inner {
    transition: transform calc(2 * var(--duration-extended)) ease, filter var(--duration-long) ease; /* Slow the card transition speed while hover is active. */
    filter: drop-shadow(0rem 2rem 2rem rgba(0, 0, 0, 0.15)) drop-shadow(0rem 1rem 1rem rgba(0, 0, 0, 0.15));
  }

  .animate--hover-3d-lift .card-wrapper:hover .card--card:after,
  .animate--hover-3d-lift .card-wrapper:hover .card--standard .card__inner:after,
  .animate--hover-3d-lift
    .card-wrapper:hover
    .card--shape.card--standard:not(.card--text)
    .card__inner
    .card__media:before {
    background-image: var(--easter-egg);
    background-size: 250px 250px;
    mix-blend-mode: color-dodge;
    pointer-events: none;
    z-index: 2;
  }

  .animate--hover-3d-lift
    .card-wrapper:hover
    .card--shape.card--standard:not(.card--text)
    .card__inner
    .card__media:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }

  .animate--hover-3d-lift .card-wrapper .card--card:before,
  .animate--hover-3d-lift .card-wrapper .card--standard .card__media:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
    transition: background-position calc(2 * var(--duration-extended)) ease, opacity var(--duration-default) ease;
    mix-blend-mode: overlay;
    background-size: 400% 100%;
    background-position: 90% 0;
    background-repeat: no-repeat;
    background-image: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0) 45%,
      rgba(255, 255, 255, 1) 50%,
      rgba(255, 255, 255, 0) 55%
    );
  }

  .animate--hover-3d-lift .card-wrapper:hover .card--card:before,
  .animate--hover-3d-lift .card-wrapper:hover .card--standard .card__media:after {
    opacity: 0.2;
    transition: background-position 6s ease, opacity var(--duration-long) ease;
    background-position: left;
    z-index: 2;
  }

  :root {
    --easter-egg: none;
    --sparkle: url('./sparkle.gif');
  }

  .animate--hover-vertical-lift .button:not(.button--tertiary),
  .animate--hover-vertical-lift .shopify-challenge__button,
  .animate--hover-vertical-lift .customer button,
  .animate--hover-vertical-lift .shopify-payment-button__button {
    transition: transform var(--duration-default) var(--ease-out-slow);
  }

  .animate--hover-vertical-lift .card-wrapper .card--card,
  .animate--hover-vertical-lift .card-wrapper .card--standard .card__inner {
    transition: transform var(--duration-medium) var(--ease-out-slow);
  }

  .animate--hover-vertical-lift .card-wrapper:hover .card--card,
  .animate--hover-vertical-lift .card-wrapper:hover .card--standard .card__inner {
    transform: translateY(-0.75rem);
  }

  .animate--hover-vertical-lift .card-wrapper:active .card--card,
  .animate--hover-vertical-lift .card-wrapper:active .card--standard .card__inner {
    transform: translateY(-0.5rem);
  }

  .animate--hover-vertical-lift .button:not(.button--tertiary):not([disabled]):hover,
  .animate--hover-vertical-lift .shopify-challenge__button:not([disabled]):hover,
  .animate--hover-vertical-lift .customer button:not([disabled]):hover,
  .animate--hover-vertical-lift .shopify-payment-button__button:hover {
    transform: translateY(-0.25rem);
  }

  .animate--hover-vertical-lift .button:not(.button--tertiary):not([disabled]):active,
  .animate--hover-vertical-lift .shopify-challenge__button:not([disabled]):active,
  .animate--hover-vertical-lift .customer button:not([disabled]):active,
  .animate--hover-vertical-lift .shopify-payment-button__button:active {
    transform: translateY(0);
  }

  .animate--hover-vertical-lift .button:not([disabled]):hover:after,
  .animate--hover-vertical-lift .customer button:not([disabled]):hover:after,
  .animate--hover-vertical-lift .shopify-payment-button__button:not([disabled]):hover:after {
    --border-offset: 0.3px; /* Default is 1.3px as defined above in this file. This removes 1px to prevent the border from growing on buttons when this effect is on.  */
    box-shadow: 0 0 0 calc(var(--buttons-border-width) + var(--border-offset))
        rgba(var(--color-button-text), var(--border-opacity)),
      0 0 0 var(--buttons-border-width) rgba(var(--color-button), var(--alpha-button-background));
  }

  .animate--hover-vertical-lift .button:not([disabled]).button--secondary:hover:after {
    --border-offset: 0px; /* Prevent the border from growing on buttons when this effect is on. */
  }
}

/* Loading spinner */
.loading__spinner {
  position: absolute;
  z-index: 1;
  width: 1.8rem;
}

.loading__spinner {
  width: 1.8rem;
  display: inline-block;
}

.spinner {
  animation: rotator 1.4s linear infinite;
}

@keyframes rotator {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(270deg);
  }
}

.path {
  stroke-dasharray: 280;
  stroke-dashoffset: 0;
  transform-origin: center;
  stroke: rgb(var(--color-foreground));
  animation: dash 1.4s ease-in-out infinite;
}

@media screen and (forced-colors: active) {
  .path {
    stroke: CanvasText;
  }
}

@keyframes dash {
  0% {
    stroke-dashoffset: 280;
  }
  50% {
    stroke-dashoffset: 75;
    transform: rotate(135deg);
  }
  100% {
    stroke-dashoffset: 280;
    transform: rotate(450deg);
  }
}

.loading__spinner:not(.hidden) + .cart-item__price-wrapper,
.loading__spinner:not(.hidden) ~ cart-remove-button {
  opacity: 50%;
}

.loading__spinner:not(.hidden) ~ cart-remove-button {
  pointer-events: none;
  cursor: default;
}

/* Progress bar */
.progress-bar-container {
  width: 100%;
  margin: auto;
}

.progress-bar {
  height: 0.13rem;
  width: 100%;
}

.progress-bar-value {
  width: 100%;
  height: 100%;
  background-color: rgb(var(--color-foreground));
  animation: indeterminateAnimation var(--duration-extra-longer) infinite ease-in-out;
  transform-origin: 0;
}

.progress-bar .progress-bar-value {
  display: block;
}

@keyframes indeterminateAnimation {
  0% {
    transform: translateX(-20%) scaleX(0);
  }
  40% {
    transform: translateX(30%) scaleX(0.7);
  }
  100% {
    transform: translateX(100%) scaleX(0);
  }
}

.pcard--featured .pcard__name,
.pcard--featured .pcard__price,
.pcard--featured .pcard__line,
.pcard--featured .pcard__footer,
.pcard--featured .pcard__body {
  color: #ffffff !important;
}

/* ════════════════════════════════════════════
   NS NEWSLETTER — Apple-style hero look
════════════════════════════════════════════ */

:root {
  --c-black: #000000;
  --c-white: #ffffff;
  --c-yellow: #F5E642;
  --c-gray-100: #f5f5f5;
  --c-gray-150: #efefef;
  --c-gray-200: #e5e5e5;
  --c-gray-400: #9ca3af;
  --c-gray-500: #8b8b8b;
  --c-gray-600: #6b7280;
  --c-gray-700: #374151;
  --c-glass: #60c4dc;
  --c-glass-dark: #1e9bbf;
}

/* keep your existing button if already added */
.btn--yellow {
  background: var(--c-yellow);
  color: var(--c-black);
  border: none;
}

.btn--yellow:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(245, 230, 66, 0.22);
}

/* section */
.newsletter {
  position: relative;
  padding: 120px 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(96,196,220,.14) 0%, rgba(96,196,220,0) 38%),
    linear-gradient(180deg, #0b0b0d 0%, #000000 100%);
  color: var(--c-white);
  overflow: hidden;
}

.newsletter::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.06) 0%, transparent 28%),
    radial-gradient(circle at 80% 20%, rgba(96,196,220,.10) 0%, transparent 24%);
  pointer-events: none;
}

.newsletter .page-width {
  position: relative;
  z-index: 2;
}

.newsletter__inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  padding: 64px 40px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255,255,255,.06) 0%, rgba(255,255,255,.03) 100%);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow:
    0 24px 80px rgba(0,0,0,.35),
    inset 0 1px 0 rgba(255,255,255,.08);
}

.newsletter__label {
  justify-content: center;
  margin-bottom: 20px;
  color: rgba(255,255,255,.55);
}

.newsletter__title {
  font-size: clamp(40px, 6vw, 76px);
  line-height: .98;
  letter-spacing: -.045em;
  font-weight: 900;
  margin: 0 0 18px;
  color: var(--c-white);
}

.newsletter__title span {
  color: var(--c-glass);
}

.newsletter__sub {
  max-width: 620px;
  margin: 0 auto 34px;
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.65;
  color: rgba(255,255,255,.68);
}

.newsletter__form-wrap {
  margin: 0;
}

.newsletter__form {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 10px 40px rgba(0,0,0,.25);
}

.newsletter__input {
  flex: 1 1 auto;
  min-width: 0;
  height: 56px;
  padding: 0 22px;
  border: none;
  outline: none;
  background: transparent;
  color: var(--c-white);
  font-size: 15px;
  border-radius: 999px;
  box-shadow: none;
}

.newsletter__input::placeholder {
  color: rgba(255,255,255,.42);
}

.newsletter__input:focus {
  background: rgba(255,255,255,.03);
}

.newsletter__btn {
  flex: 0 0 auto;
  min-height: 56px;
  padding: 0 24px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .01em;
  border-radius: 999px;
  white-space: nowrap;
}

.newsletter__fine {
  margin-top: 16px;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255,255,255,.42);
}

.newsletter__success {
  margin-top: 16px;
  color: #86efac;
  font-size: 14px;
  font-weight: 600;
}

.newsletter__error {
  margin-top: 16px;
  color: #fca5a5;
  font-size: 13px;
}

.newsletter__error ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* mobile */
@media (max-width: 768px) {
  .newsletter {
    padding: 84px 0;
  }

  .newsletter__inner {
    padding: 36px 20px;
    border-radius: 24px;
  }

  .newsletter__form {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    border-radius: 24px;
    padding: 12px;
  }

  .newsletter__input,
  .newsletter__btn {
    width: 100%;
  }

  .newsletter__btn {
    justify-content: center;
  }
}

/* REMOVE GLASS CONTAINER */
.newsletter__inner {
  background: none !important;
  border: none !important;
  backdrop-filter: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

/* =========================
   LOGO SIZE
========================= */

/* Desktop logo */
.header__heading-logo {
  max-height: 64px !important; /* change 56 → 64 / 72 if you want bigger */
  width: auto !important;
}

/* Mobile logo */
@media (max-width: 768px) {
  .header__heading-logo {
    max-height: 42px !important;
  }
}

/* =========================
   CENTER NAV MENU
========================= */

.header {
  display: grid !important;
  grid-template-columns: 1fr auto 1fr !important;
  align-items: center !important;
}

/* Logo (left) */
.header__heading {
  justify-self: start;
}

/* Menu (center) */
.header__inline-menu {
  justify-self: center;
}

/* Icons (right) */
.header__icons {
  justify-self: end;
}

.header__inline-menu .list-menu {
  gap: 28px; /* spacing between menu items */
}

.header__menu-item {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.header-wrapper {
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.85) !important;
  border-bottom: 1px solid #eee;
}

/* ════════════════════════════════════════════
   APPLE-STYLE HEADER — Shopify Dawn
════════════════════════════════════════════ */

/* header shell */
.shopify-section-header-sticky,
.header-wrapper {
  background: rgba(255, 255, 255, 0.82) !important;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.header-wrapper--border-bottom {
  border-bottom: 1px solid rgba(0,0,0,0.06) !important;
}

/* layout */
.header {
  min-height: 76px !important;
  display: grid !important;
  grid-template-columns: 1fr auto 1fr !important;
  align-items: center !important;
  column-gap: 24px;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* left = logo */
.header__heading,
.header__heading-link {
  justify-self: start !important;
  align-self: center !important;
}

/* center = menu */
.header__inline-menu {
  justify-self: center !important;
  align-self: center !important;
  margin: 0 auto !important;
}

/* right = icons */
.header__icons {
  justify-self: end !important;
  align-self: center !important;
  padding-right: 0 !important;
}

/* bigger logo */
.header__heading-logo-wrapper {
  display: flex;
  align-items: center;
}

.header__heading-logo {
  max-height: 52px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain;
}

/* if your logo still looks small, change 42 to 48 or 52 */

/* center menu spacing */
.header__inline-menu .list-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

/* menu item style */
.header__menu-item,
.list-menu__item {
  position: relative;
  padding: 8px 0 !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  letter-spacing: 0.01em;
  color: rgba(0,0,0,0.78) !important;
  text-decoration: none !important;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.header__menu-item:hover,
.list-menu__item:hover {
  color: #000 !important;
  opacity: 1;
}

/* clean active state */
.header__active-menu-item {
  color: #000 !important;
  text-decoration: none !important;
}

/* subtle underline animation */
.header__menu-item::after,
.list-menu__item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 1.5px;
  background: #000;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s ease;
  opacity: 0.9;
}

.header__menu-item:hover::after,
.list-menu__item:hover::after,
.header__active-menu-item::after {
  transform: scaleX(1);
}

/* icons */
.header__icon,
.header__icon--cart,
.header__icon--account {
  color: rgba(0,0,0,0.8) !important;
  transition: transform 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.header__icon:hover,
.header__icon--cart:hover,
.header__icon--account:hover {
  color: #000 !important;
  transform: translateY(-1px);
}

/* cart bubble */
.cart-count-bubble {
  background: #000 !important;
  color: #fff !important;
  box-shadow: none !important;
}

/* remove weird default spacing */
.header__heading-link {
  padding: 0 !important;
  margin: 0 !important;
  text-decoration: none !important;
}

/* desktop page width feel */
.header.page-width,
.header-wrapper .page-width {
  max-width: 1440px;
}

/* make announcement + header combo cleaner if used */
.shopify-section-group-header-group {
  z-index: 30;
}

/* mobile */
@media screen and (max-width: 989px) {
  .header {
    min-height: 68px !important;
    grid-template-columns: auto 1fr auto !important;
    column-gap: 10px;
  }

  .header__heading {
    justify-self: center !important;
  }

  .header__heading-logo {
    max-height: 34px !important;
  }

  .header__inline-menu {
    display: none !important;
  }

  .header__icons {
    gap: 0.4rem !important;
  }
}

/* =========================================
   NS PRODUCT PAGE STORY SECTIONS
========================================= */

:root {
  --c-black: #000000;
  --c-white: #FFFFFF;
  --c-yellow: #F5E642;
  --c-gray-50: #FAFAFA;
  --c-gray-100: #F5F5F5;
  --c-gray-150: #EFEFEF;
  --c-gray-200: #E4E4E4;
  --c-gray-300: #D1D5DB;
  --c-gray-400: #9CA3AF;
  --c-gray-600: #6B7280;
  --c-gray-700: #374151;
  --c-gray-800: #1F2937;
  --c-gray-900: #111111;
  --c-glass: #60C4DC;
  --c-glass-dark: #1E9BBF;
  --c-glass-pale: #EBF8FC;
  --c-core: #02C39A;
  --c-core-dark: #0D9488;
  --c-core-pale: #E6FBF5;
  --c-link: #EA580C;
  --c-link-dark: #C2410C;
  --c-link-pale: #FEF3EC;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

.ns-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 768px) {
  .ns-wrap {
    padding: 0 20px;
  }
}

.ns-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
}
.ns-tag--glass { background: var(--c-glass-pale); color: var(--c-glass-dark); }
.ns-tag--core  { background: var(--c-core-pale); color: var(--c-core-dark); }
.ns-tag--link  { background: var(--c-link-pale); color: var(--c-link-dark); }

.ns-pdp {
  padding: 96px 0;
  background: var(--c-white);
}

.ns-pdp--gray {
  background: var(--c-gray-100);
}

.ns-pdp__head {
  text-align: center;
  margin-bottom: 56px;
}

.ns-pdp__title {
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -.03em;
  font-weight: 900;
  margin: 0 0 14px;
}

.ns-pdp__sub {
  font-size: 16px;
  line-height: 1.7;
  color: var(--c-gray-600);
  max-width: 700px;
  margin: 0 auto;
}

.ns-pdp__title span.ns-accent-glass { color: var(--c-glass); }
.ns-pdp__title span.ns-accent-core { color: var(--c-core-dark); }
.ns-pdp__title span.ns-accent-link { color: var(--c-link-dark); }

.ns-spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 44px;
}
@media (max-width: 900px) {
  .ns-spec-grid {
    grid-template-columns: 1fr;
  }
}

.ns-spec {
  background: var(--c-white);
  border: 1.5px solid var(--c-gray-200);
  border-radius: var(--radius-xl);
  padding: 28px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.ns-spec:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 50px rgba(0,0,0,.08);
}

.ns-spec__value {
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.03em;
  margin-bottom: 8px;
}
.ns-spec__label {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}
.ns-spec__desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-gray-600);
}

.ns-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 460px;
  border-top: 1px solid var(--c-gray-150);
}
.ns-feature:last-child {
  border-bottom: 1px solid var(--c-gray-150);
}
.ns-feature--reverse {
  direction: rtl;
}
.ns-feature--reverse > * {
  direction: ltr;
}
@media (max-width: 900px) {
  .ns-feature,
  .ns-feature--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
}

.ns-feature__media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}
.ns-feature__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 54px 48px;
}
@media (max-width: 768px) {
  .ns-feature__content {
    padding: 32px 20px;
  }
}

.ns-feature__title {
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.12;
  letter-spacing: -.02em;
  font-weight: 800;
  margin: 14px 0;
}
.ns-feature__desc {
  font-size: 15px;
  line-height: 1.75;
  color: var(--c-gray-600);
  max-width: 460px;
}
.ns-feature__stat {
  margin-top: 20px;
  font-size: 13px;
  font-weight: 700;
  color: var(--c-gray-700);
}

.ns-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 44px;
}
@media (max-width: 768px) {
  .ns-cards {
    grid-template-columns: 1fr;
  }
}

.ns-card {
  background: var(--c-white);
  border: 1.5px solid var(--c-gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.ns-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}
.ns-card__body {
  padding: 26px;
}
.ns-card__title {
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 10px;
}
.ns-card__desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-gray-600);
}

.ns-cta-band {
  margin-top: 44px;
  border-radius: var(--radius-xl);
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.ns-cta-band--glass {
  background: linear-gradient(135deg, #0A1628 0%, #0f2545 100%);
  color: #fff;
}
.ns-cta-band--core {
  background: linear-gradient(135deg, #E6FBF5 0%, #F7FFFC 100%);
}
.ns-cta-band--link {
  background: linear-gradient(135deg, #FEF3EC 0%, #FFF9F6 100%);
}
.ns-cta-band__title {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -.02em;
}
.ns-cta-band__desc {
  font-size: 14px;
  line-height: 1.7;
  opacity: .8;
  max-width: 620px;
}

.ns-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.ns-btn--glass {
  background: var(--c-glass);
  color: #fff;
}
.ns-btn--core {
  background: var(--c-core);
  color: #fff;
}
.ns-btn--link {
  background: var(--c-link);
  color: #fff;
}

/* =========================================
   NS ABOUT PAGE
========================================= */

.ns-about-hero {
  padding: 120px 0 88px;
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}

.ns-about-hero__inner {
  max-width: 900px;
}

.ns-about-hero__title {
  font-size: clamp(42px, 6vw, 78px);
  line-height: .96;
  letter-spacing: -.045em;
  font-weight: 900;
  margin: 18px 0 22px;
}

.ns-about-hero__title span {
  color: var(--c-glass);
}

.ns-about-hero__sub {
  max-width: 640px;
  font-size: 18px;
  line-height: 1.75;
  color: var(--c-gray-600);
}

.ns-about-story {
  padding: 88px 0;
  background: #fff;
}

.ns-about-story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

.ns-about-story__visual img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 28px;
  display: block;
}

.ns-about-title {
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.08;
  letter-spacing: -.03em;
  font-weight: 850;
  margin: 14px 0 18px;
}

.ns-about-copy {
  font-size: 15px;
  line-height: 1.8;
  color: var(--c-gray-600);
  max-width: 580px;
  margin-bottom: 18px;
}

.ns-about-principles {
  padding: 96px 0;
  background: var(--c-gray-100);
}

.ns-about-head {
  margin-bottom: 36px;
}

.ns-about-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ns-about-card {
  background: #fff;
  border: 1.5px solid var(--c-gray-200);
  border-radius: 28px;
  padding: 32px 28px;
  transition: transform .24s ease, box-shadow .24s ease;
}

.ns-about-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 55px rgba(0,0,0,.08);
}

.ns-about-card__num {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--c-gray-400);
  margin-bottom: 18px;
}

.ns-about-card__title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 10px;
}

.ns-about-card__text {
  font-size: 14px;
  line-height: 1.8;
  color: var(--c-gray-600);
}

.ns-about-family {
  padding: 96px 0;
  background: #fff;
}

.ns-about-family__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ns-about-family__item {
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1.5px solid var(--c-gray-200);
  border-radius: 28px;
  padding: 28px;
  background: #fff;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.ns-about-family__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 55px rgba(0,0,0,.08);
  border-color: var(--c-gray-300);
}

.ns-about-family__item h3 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.02em;
  margin: 18px 0 10px;
}

.ns-about-family__item p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--c-gray-600);
}

.ns-about-cta {
  padding: 96px 0 120px;
  background: #fff;
}

.ns-about-cta__inner {
  background: linear-gradient(135deg, #0A1628 0%, #0f2545 100%);
  color: #fff;
  border-radius: 32px;
  padding: 40px 38px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.ns-about-cta__title {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
  letter-spacing: -.03em;
  font-weight: 900;
  margin: 14px 0 12px;
}

.ns-about-cta__text {
  max-width: 620px;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,.72);
}

.ns-about-cta__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn--outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.24);
}

.btn--outline-white:hover {
  border-color: #fff;
}

@media (max-width: 990px) {
  .ns-about-story__grid,
  .ns-about-cards,
  .ns-about-family__grid {
    grid-template-columns: 1fr;
  }

  .ns-about-story__visual img {
    height: 360px;
  }
}

@media (max-width: 768px) {
  .ns-about-hero {
    padding: 88px 0 64px;
  }

  .ns-about-story,
  .ns-about-principles,
  .ns-about-family,
  .ns-about-cta {
    padding: 72px 0;
  }

  .ns-about-cta {
    padding-bottom: 92px;
  }

  .ns-about-cta__inner {
    padding: 28px 20px;
    border-radius: 24px;
  }
}
.ns-about-cta__title {
  color: #ffffff !important;
}

/* =========================================
   NS CONTACT + FAQ PAGES
========================================= */

.ns-page-hero {
  padding: 120px 0 84px;
  background:
    radial-gradient(circle at 85% 12%, rgba(96,196,220,.10) 0%, transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}

.ns-page-hero__inner {
  max-width: 900px;
}

.ns-page-hero__title {
  font-size: clamp(42px, 6vw, 78px);
  line-height: .96;
  letter-spacing: -.045em;
  font-weight: 900;
  margin: 18px 0 22px;
  color: #000;
}

.ns-page-hero__title span {
  color: var(--c-glass);
}

.ns-page-hero__sub {
  max-width: 650px;
  font-size: 18px;
  line-height: 1.75;
  color: var(--c-gray-600);
}

.ns-page-title {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
  letter-spacing: -.03em;
  font-weight: 850;
  margin: 14px 0 18px;
}

.ns-page-copy {
  font-size: 15px;
  line-height: 1.8;
  color: var(--c-gray-600);
  max-width: 580px;
}

.ns-contact-main,
.ns-faq-main {
  padding: 92px 0;
  background: #fff;
}

/* Contact */
.ns-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: start;
}

.ns-contact-cards {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.ns-contact-card {
  background: #fff;
  border: 1.5px solid var(--c-gray-200);
  border-radius: 24px;
  padding: 24px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.ns-contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 50px rgba(0,0,0,.07);
  border-color: var(--c-gray-300);
}

.ns-contact-card__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-gray-400);
  margin-bottom: 10px;
}

.ns-contact-card__value {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 8px;
}

.ns-contact-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--c-gray-600);
}

.ns-contact-form-wrap {
  background: var(--c-gray-100);
  border: 1.5px solid var(--c-gray-200);
  border-radius: 28px;
  padding: 28px;
}

.ns-contact-form {
  margin: 0;
}

.ns-form-row {
  margin-bottom: 14px;
}

.ns-input,
.ns-textarea {
  width: 100%;
  border: 1.5px solid var(--c-gray-200);
  background: #fff;
  color: #000;
  border-radius: 18px;
  padding: 16px 18px;
  font-size: 14px;
  line-height: 1.5;
  outline: none;
  box-shadow: none;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.ns-input:focus,
.ns-textarea:focus {
  border-color: rgba(96,196,220,.65);
  box-shadow: 0 0 0 4px rgba(96,196,220,.10);
}

.ns-textarea {
  min-height: 160px;
  resize: vertical;
}

.ns-form-success,
.ns-form-error {
  margin-bottom: 14px;
  padding: 14px 16px;
  border-radius: 16px;
  font-size: 14px;
}

.ns-form-success {
  background: #ecfdf3;
  color: #027a48;
}

.ns-form-error {
  background: #fef3f2;
  color: #b42318;
}

/* FAQ */
.ns-faq-wrap {
  max-width: 980px;
}

.ns-faq-group + .ns-faq-group {
  margin-top: 56px;
}

.ns-faq-item {
  border-top: 1px solid var(--c-gray-200);
  padding: 18px 0;
}

.ns-faq-item:last-child {
  border-bottom: 1px solid var(--c-gray-200);
}

.ns-faq-item summary {
  list-style: none;
  cursor: pointer;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 750;
  letter-spacing: -.02em;
  color: #000;
  position: relative;
  padding-right: 32px;
}

.ns-faq-item summary::-webkit-details-marker {
  display: none;
}

.ns-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 24px;
  line-height: 1;
  color: var(--c-gray-400);
  transition: transform .18s ease, color .18s ease;
}

.ns-faq-item[open] summary::after {
  content: "–";
  color: #000;
}

.ns-faq-answer {
  padding-top: 14px;
  max-width: 780px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--c-gray-600);
}

/* CTA */
.ns-page-cta {
  padding: 0 0 110px;
  background: #fff;
}

.ns-page-cta__inner {
  background: linear-gradient(135deg, #0A1628 0%, #0f2545 100%);
  color: #fff;
  border-radius: 32px;
  padding: 40px 38px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.ns-page-cta__title {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
  letter-spacing: -.04em;
  font-weight: 900;
  margin: 14px 0 12px;
  color: #fff;
}

.ns-page-cta__text {
  max-width: 620px;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,.72);
}

.ns-page-cta__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* High-tech polish recommendations */
.ns-page-hero__title,
.ns-page-title,
.ns-page-cta__title {
  text-wrap: balance;
}

.ns-contact-card,
.ns-contact-form-wrap,
.ns-page-cta__inner {
  box-shadow: 0 12px 40px rgba(0,0,0,.04);
}

.ns-contact-card,
.ns-contact-form-wrap {
  backdrop-filter: saturate(120%);
}

@media (max-width: 990px) {
  .ns-contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .ns-page-hero {
    padding: 88px 0 64px;
  }

  .ns-contact-main,
  .ns-faq-main {
    padding: 72px 0;
  }

  .ns-page-cta {
    padding-bottom: 92px;
  }

  .ns-page-cta__inner,
  .ns-contact-form-wrap {
    padding: 24px 20px;
    border-radius: 24px;
  }

  .ns-faq-item summary {
    font-size: 18px;
  }
}

/* =========================================
   HIGH-TECH GLOBAL POLISH
========================================= */

.section-label {
  letter-spacing: .18em;
}

.ns-page-hero__title,
.ns-about-hero__title,
.hero__title {
  letter-spacing: -.05em;
}

.ns-page-hero,
.ns-about-hero {
  position: relative;
  overflow: hidden;
}

.ns-page-hero::after,
.ns-about-hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -30% auto;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(96,196,220,.10) 0%, rgba(96,196,220,0) 70%);
  pointer-events: none;
  filter: blur(10px);
}

.ns-contact-card:hover,
.ns-about-card:hover,
.ns-about-family__item:hover {
  transform: translateY(-4px);
}

.btn,
.ns-input,
.ns-textarea {
  transition: all .22s ease;
}

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

.container,
.page-width {
  max-width: 1320px;
}

/* =========================================
   NS INFO / PROGRAM PAGES
========================================= */

.ns-info-hero {
  padding: 120px 0 84px;
  background:
    radial-gradient(circle at 85% 12%, rgba(96,196,220,.10) 0%, transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}

.ns-info-hero__inner {
  max-width: 920px;
}

.ns-info-hero__title {
  font-size: clamp(42px, 6vw, 76px);
  line-height: .96;
  letter-spacing: -.045em;
  font-weight: 900;
  margin: 18px 0 22px;
  color: #000;
}

.ns-info-hero__title span {
  color: var(--c-glass);
}

.ns-info-hero__sub {
  max-width: 680px;
  font-size: 18px;
  line-height: 1.75;
  color: var(--c-gray-600);
}

.ns-info-main {
  padding: 92px 0;
  background: #fff;
}

.ns-info-head {
  margin-bottom: 34px;
}

.ns-info-title {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
  letter-spacing: -.03em;
  font-weight: 850;
  margin: 14px 0 18px;
}

.ns-info-copy {
  font-size: 15px;
  line-height: 1.8;
  color: var(--c-gray-600);
  max-width: 720px;
}

.ns-info-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 32px;
  align-items: start;
}

.ns-info-stack {
  display: grid;
  gap: 18px;
}

.ns-info-card {
  background: #fff;
  border: 1.5px solid var(--c-gray-200);
  border-radius: 28px;
  padding: 28px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.ns-info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 50px rgba(0,0,0,.07);
  border-color: var(--c-gray-300);
}

.ns-info-card__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-gray-400);
  margin-bottom: 12px;
}

.ns-info-card__title {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 10px;
  color: #000;
}

.ns-info-card__text,
.ns-info-card ul li {
  font-size: 14px;
  line-height: 1.8;
  color: var(--c-gray-600);
}

.ns-info-card ul {
  margin: 10px 0 0;
  padding-left: 18px;
}

.ns-info-side {
  display: grid;
  gap: 18px;
}

.ns-info-side__panel {
  background: var(--c-gray-100);
  border: 1.5px solid var(--c-gray-200);
  border-radius: 28px;
  padding: 28px;
}

.ns-info-side__panel h3 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.02em;
  margin: 0 0 10px;
}

.ns-info-side__panel p,
.ns-info-side__panel li {
  font-size: 14px;
  line-height: 1.8;
  color: var(--c-gray-600);
}

.ns-info-side__panel ul {
  margin: 10px 0 0;
  padding-left: 18px;
}

.ns-info-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.ns-info-feature {
  background: #fff;
  border: 1.5px solid var(--c-gray-200);
  border-radius: 28px;
  padding: 28px;
}

.ns-info-feature__num {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-gray-400);
  margin-bottom: 16px;
}

.ns-info-feature h3 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 10px;
}

.ns-info-feature p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--c-gray-600);
}

.ns-info-cta {
  padding: 0 0 110px;
  background: #fff;
}

.ns-info-cta__inner {
  background: linear-gradient(135deg, #0A1628 0%, #0f2545 100%);
  color: #fff;
  border-radius: 32px;
  padding: 40px 38px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.ns-info-cta__title {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
  letter-spacing: -.04em;
  font-weight: 900;
  margin: 14px 0 12px;
  color: #fff;
}

.ns-info-cta__text {
  max-width: 620px;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,.72);
}

.ns-info-cta__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 990px) {
  .ns-info-grid,
  .ns-info-feature-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .ns-info-hero {
    padding: 88px 0 64px;
  }

  .ns-info-main {
    padding: 72px 0;
  }

  .ns-info-cta {
    padding-bottom: 92px;
  }

  .ns-info-card,
  .ns-info-side__panel,
  .ns-info-feature,
  .ns-info-cta__inner {
    border-radius: 24px;
    padding: 24px 20px;
  }
}

/* =========================================
   NS SHOP ALL PAGE
========================================= */

.ns-shop-hero {
  padding: 118px 0 78px;
  background:
    radial-gradient(circle at 85% 10%, rgba(96,196,220,.10) 0%, transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}

.ns-shop-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

.ns-shop-hero__title {
  font-size: clamp(42px, 6vw, 80px);
  line-height: .96;
  letter-spacing: -.05em;
  font-weight: 900;
  margin: 18px 0 20px;
}

.ns-shop-hero__title span {
  color: var(--c-glass);
}

.ns-shop-hero__sub {
  max-width: 620px;
  font-size: 18px;
  line-height: 1.75;
  color: var(--c-gray-600);
}

.ns-shop-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.ns-shop-hero__visual {
  position: relative;
  min-height: 560px;
  border-radius: 32px;
  overflow: hidden;
  background: var(--c-gray-100);
}

.ns-shop-hero__visual img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  display: block;
}

.ns-shop-hero__pills {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.ns-shop-infographic {
  padding: 0 0 88px;
  background: #fff;
}

.ns-shop-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.ns-shop-stat {
  background: #fff;
  border: 1.5px solid var(--c-gray-200);
  border-radius: 28px;
  padding: 26px 24px;
}

.ns-shop-stat__value {
  font-size: 40px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.04em;
  color: #000;
  margin-bottom: 8px;
}

.ns-shop-stat__label {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 8px;
}

.ns-shop-stat__text {
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--c-gray-600);
}

.ns-shop-icons {
  padding: 88px 0;
  background: var(--c-gray-100);
}

.ns-shop-head {
  margin-bottom: 34px;
}

.ns-shop-title {
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.08;
  letter-spacing: -.03em;
  font-weight: 850;
  margin: 14px 0 14px;
}

.ns-shop-copy {
  max-width: 700px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--c-gray-600);
}

.ns-shop-icons__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ns-shop-icon-card {
  background: #fff;
  border: 1.5px solid var(--c-gray-200);
  border-radius: 28px;
  padding: 28px;
  transition: transform .22s ease, box-shadow .22s ease;
}

.ns-shop-icon-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 55px rgba(0,0,0,.08);
}

.ns-shop-icon-card__icon {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--c-gray-100);
  color: #000;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.ns-shop-icon-card h3 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 10px;
}

.ns-shop-icon-card p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--c-gray-600);
}

.ns-shop-products {
  padding: 96px 0;
  background: #fff;
}

.ns-shop-product-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 20px;
}

.ns-shop-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  border: 3px solid var(--c-gray-200);
  transition: transform .24s ease, box-shadow .24s ease;
}

.ns-shop-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 55px rgba(0,0,0,.08);
}

.ns-shop-card--featured {
  background:rgb(126, 201, 220);
  border-color: transparent;
  color: #fff;
}

.ns-shop-card__media {
  position: relative;
}

.ns-shop-card__media img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.ns-shop-card--featured .ns-shop-card__media img {
  height: 360px;
}

.ns-shop-card__badges {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.ns-shop-card__body {
  padding: 26px;
}

.ns-shop-card__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-gray-400);
  margin-bottom: 10px;
}

.ns-shop-card--featured .ns-shop-card__eyebrow {
  color: rgba(255,255,255,.48);
}

.ns-shop-card__title {
  font-size: 28px;
  font-weight: 850;
  letter-spacing: -.02em;
  margin-bottom: 10px;
}

.ns-shop-card__title--core {
  color: var(--c-core-dark);
}

.ns-shop-card__title--link {
  color: var(--c-link-dark);
}

.ns-shop-card--featured .ns-shop-card__title {
  color: #fff;
}

.ns-shop-card__desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--c-gray-600);
  margin-bottom: 18px;
}

.ns-shop-card--featured .ns-shop-card__desc {
  color: rgba(255,255,255,.68);
}

.ns-shop-card__specs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.ns-shop-card__specs span {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--c-gray-100);
  color: var(--c-gray-700);
  font-size: 11.5px;
  font-weight: 700;
}

.ns-shop-card--featured .ns-shop-card__specs span {
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.82);
}

.ns-shop-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.ns-shop-card__price {
  font-size: 22px;
  font-weight: 850;
  letter-spacing: -.02em;
}

.ns-shop-card__cta {
  font-size: 14px;
  font-weight: 700;
}

.ns-shop-compare {
  padding: 88px 0;
  background: var(--c-gray-100);
}

.ns-shop-compare__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ns-shop-compare__item {
  background: #fff;
  border: 1.5px solid var(--c-gray-200);
  border-radius: 28px;
  padding: 28px;
}

.ns-shop-compare__item h3 {
  font-size: 24px;
  font-weight: 850;
  letter-spacing: -.02em;
  margin-bottom: 10px;
}

.ns-shop-compare__item p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--c-gray-600);
}

.ns-shop-cta {
  padding: 96px 0 120px;
  background: #fff;
}

.ns-shop-cta__inner {
  background: linear-gradient(135deg, #0A1628 0%, #0f2545 100%);
  color: #fff;
  border-radius: 32px;
  padding: 40px 38px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.ns-shop-cta__title {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
  letter-spacing: -.04em;
  font-weight: 900;
  margin: 14px 0 12px;
  color: #fff;
}

.ns-shop-cta__text {
  max-width: 620px;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,.72);
}

.ns-shop-cta__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .ns-shop-hero__grid,
  .ns-shop-product-grid,
  .ns-shop-stats,
  .ns-shop-icons__grid,
  .ns-shop-compare__grid {
    grid-template-columns: 1fr 1fr;
  }

  .ns-shop-card--featured {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .ns-shop-hero {
    padding: 88px 0 64px;
  }

  .ns-shop-hero__grid,
  .ns-shop-stats,
  .ns-shop-icons__grid,
  .ns-shop-product-grid,
  .ns-shop-compare__grid {
    grid-template-columns: 1fr;
  }

  .ns-shop-infographic,
  .ns-shop-icons,
  .ns-shop-products,
  .ns-shop-compare,
  .ns-shop-cta {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .ns-shop-card--featured {
    grid-column: span 1;
  }

  .ns-shop-hero__visual,
  .ns-shop-hero__visual img {
    min-height: 360px;
  }

  .ns-shop-cta {
    padding-bottom: 92px;
  }

  .ns-shop-stat,
  .ns-shop-icon-card,
  .ns-shop-card__body,
  .ns-shop-compare__item,
  .ns-shop-cta__inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .ns-shop-cta__inner {
    border-radius: 24px;
    padding-top: 28px;
    padding-bottom: 28px;
  }
}

/* NS SHOP ALL HIGH-TECH POLISH */
.ns-shop-hero__title,
.ns-shop-title,
.ns-shop-cta__title {
  text-wrap: balance;
}

.ns-shop-icon-card,
.ns-shop-stat,
.ns-shop-card,
.ns-shop-compare__item {
  box-shadow: 0 10px 35px rgba(0,0,0,.03);
}

.ns-shop-card__media img,
.ns-shop-hero__visual img {
  transition: transform .5s ease;
}

.ns-shop-card:hover .ns-shop-card__media img,
.ns-shop-hero__visual:hover img {
  transform: scale(1.03);
}

/* =========================================
   NS EXPANDED PRODUCT PAGES
========================================= */

.ns-xp {
  background: #fff;
}

.ns-xp__section {
  padding: 96px 0;
}

.ns-xp__section--gray {
  background: var(--c-gray-100);
}

.ns-xp__head {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 48px;
}

.ns-xp__title {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: -.04em;
  font-weight: 900;
  margin: 14px 0 14px;
}

.ns-xp__sub {
  font-size: 15px;
  line-height: 1.8;
  color: var(--c-gray-600);
  max-width: 720px;
  margin: 0 auto;
}

.ns-xp__title .glass { color: var(--c-glass); }
.ns-xp__title .core  { color: var(--c-core-dark); }
.ns-xp__title .link  { color: var(--c-link-dark); }

/* infographic / spec tiles */
.ns-xp-spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.ns-xp-spec {
  background: #fff;
  border: 1.5px solid var(--c-gray-200);
  border-radius: 24px;
  padding: 28px;
  transition: transform .22s ease, box-shadow .22s ease;
}

.ns-xp-spec:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 42px rgba(0,0,0,.07);
}

.ns-xp-spec__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 22px;
  background: var(--c-gray-100);
}

.ns-xp-spec__value {
  font-size: 40px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.04em;
  margin-bottom: 8px;
}

.ns-xp-spec__value .unit {
  font-size: 20px;
  font-weight: 500;
}

.ns-xp-spec__label {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 10px;
}

.ns-xp-spec__desc {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--c-gray-600);
}

.ns-xp-spec__bar {
  width: 42px;
  height: 3px;
  border-radius: 2px;
  margin-top: 18px;
}

.ns-xp-spec--glass .ns-xp-spec__icon { background: var(--c-glass-pale); }
.ns-xp-spec--glass .ns-xp-spec__value { color: var(--c-glass); }
.ns-xp-spec--glass .ns-xp-spec__bar { background: var(--c-glass); }

.ns-xp-spec--core .ns-xp-spec__icon { background: var(--c-core-pale); }
.ns-xp-spec--core .ns-xp-spec__value { color: var(--c-core-dark); }
.ns-xp-spec--core .ns-xp-spec__bar { background: var(--c-core-dark); }

.ns-xp-spec--link .ns-xp-spec__icon { background: var(--c-link-pale); }
.ns-xp-spec--link .ns-xp-spec__value { color: var(--c-link-dark); }
.ns-xp-spec--link .ns-xp-spec__bar { background: var(--c-link-dark); }

/* feature panels */
.ns-xp-panels {
  display: grid;
  gap: 0;
}

.ns-xp-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  border-top: 1px solid var(--c-gray-150);
  overflow: hidden;
}

.ns-xp-panel:last-child {
  border-bottom: 1px solid var(--c-gray-150);
}

.ns-xp-panel--reverse {
  direction: rtl;
}
.ns-xp-panel--reverse > * {
  direction: ltr;
}

.ns-xp-panel__media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.ns-xp-panel:hover .ns-xp-panel__media img {
  transform: scale(1.03);
}

.ns-xp-panel__content {
  padding: 60px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ns-xp-panel__title {
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 850;
  letter-spacing: -.03em;
  line-height: 1.12;
  margin: 14px 0 16px;
}

.ns-xp-panel__desc {
  font-size: 15px;
  line-height: 1.75;
  color: var(--c-gray-600);
  max-width: 440px;
  margin-bottom: 24px;
}

.ns-xp-panel__stat {
  font-size: 13px;
  font-weight: 700;
  color: var(--c-gray-700);
}

/* compare / icon cards */
.ns-xp-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ns-xp-mini {
  background: #fff;
  border: 1.5px solid var(--c-gray-200);
  border-radius: 24px;
  padding: 28px;
}

.ns-xp-mini__icon {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
  background: var(--c-gray-100);
}

.ns-xp-mini h3 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 10px;
}

.ns-xp-mini p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--c-gray-600);
}

/* use case cards */
.ns-xp-use-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.ns-xp-use {
  background: #fff;
  border: 1.5px solid var(--c-gray-200);
  border-radius: 24px;
  overflow: hidden;
}

.ns-xp-use img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.ns-xp-use__body {
  padding: 24px;
}

.ns-xp-use__title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 10px;
}

.ns-xp-use__text {
  font-size: 14px;
  line-height: 1.8;
  color: var(--c-gray-600);
}

/* comparison strip */
.ns-xp-compare {
  overflow-x: auto;
  border: 1.5px solid var(--c-gray-200);
  border-radius: 24px;
  background: #fff;
}

.ns-xp-compare table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.ns-xp-compare th,
.ns-xp-compare td {
  padding: 18px 22px;
  font-size: 14px;
  text-align: left;
}

.ns-xp-compare thead {
  background: var(--c-gray-900);
  color: #fff;
}

.ns-xp-compare th:first-child,
.ns-xp-compare td:first-child {
  font-weight: 700;
  color: var(--c-gray-700);
  background: #fff;
}

.ns-xp-compare thead th:first-child {
  color: var(--c-gray-400);
  background: var(--c-gray-900);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 11px;
}

.ns-xp-compare tr {
  border-bottom: 1px solid var(--c-gray-150);
}

.ns-xp-compare tr:nth-child(even) {
  background: var(--c-gray-50);
}

@media (max-width: 990px) {
  .ns-xp-spec-grid,
  .ns-xp-mini-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ns-xp-panel {
    grid-template-columns: 1fr;
  }

  .ns-xp-panel--reverse {
    direction: ltr;
  }

  .ns-xp-use-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .ns-xp__section {
    padding: 72px 0;
  }

  .ns-xp-spec-grid,
  .ns-xp-mini-grid {
    grid-template-columns: 1fr;
  }

  .ns-xp-panel__content {
    padding: 36px 20px;
  }
}

/* PRODUCT INFO POLISH */
.product__info-container .product__title h1 {
  letter-spacing: -0.04em;
  font-weight: 900;
}

.product__info-container .price {
  font-weight: 800;
}

.product__info-container .product__text {
  color: #6b7280;
  line-height: 1.75;
}

.product__info-container .accordion summary {
  font-weight: 700;
  letter-spacing: -0.01em;
}

.product__info-container ul {
  padding-left: 18px;
}

.product__info-container li {
  margin-bottom: 6px;
  color: #4b5563;
}

/* PRODUCT INFO — APPLE STYLE SPACING */
.product__info-container {
  max-width: 520px;
}

.product__info-container .product__title h1 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: .98;
  letter-spacing: -0.045em;
  font-weight: 900;
  margin-bottom: 10px;
}

.product__info-container .price {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-top: 10px;
  margin-bottom: 18px;
}

.product__info-container .product-form__buttons,
.product__info-container .product-form {
  margin-top: 18px;
}

.product__info-container .accordion {
  margin-top: 10px;
}

.product__info-container .accordion summary {
  font-weight: 700;
  letter-spacing: -0.01em;
}

.product__info-container .product__description,
.product__info-container .product__text,
.product__info-container p {
  color: #6b7280;
  line-height: 1.75;
}

/* ICON HIGHLIGHT ROW */
.ns-pi-icons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 22px 0 24px;
}

.ns-pi-icon {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 14px;
  border: 1.5px solid #e5e7eb;
  border-radius: 18px;
  background: #fff;
}

.ns-pi-icon__symbol {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  background: #f5f5f5;
  color: #111;
  flex: 0 0 42px;
}

.ns-pi-icon__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.ns-pi-icon__text strong {
  font-size: 14px;
  font-weight: 800;
  color: #111;
}

.ns-pi-icon__text span {
  font-size: 12px;
  color: #6b7280;
  margin-top: 4px;
}

/* PRODUCT COLOR ACCENTS */
.ns-pi-icons--glass .ns-pi-icon__symbol {
  background: #ebf8fc;
  color: #1e9bbf;
}

.ns-pi-icons--core .ns-pi-icon__symbol {
  background: #e6fbf5;
  color: #0d9488;
}

.ns-pi-icons--link .ns-pi-icon__symbol {
  background: #fef3ec;
  color: #c2410c;
}

@media (max-width: 768px) {
  .ns-pi-icons {
    grid-template-columns: 1fr;
  }

  .product__info-container .product__title h1 {
    font-size: 34px;
  }
}

.nav__logo img {
  height: 72px;
  width: auto;
}

.footer__logo {
  height: 60px;
}

.ns-performance{
  background: #fff;
  color: #111;
  padding: 110px 0;
}

.ns-section-head{
  max-width: 760px;
  margin-bottom: 34px;
}

.ns-section-head h2{
  font-size: clamp(3.8rem, 6vw, 7rem);
  line-height: .98;
  margin: 10px 0 14px;
  color: #0a0f18;
}

.ns-section-head p{
  font-size: 1.7rem;
  color: rgba(10,15,24,.7);
}

.ns-performance .ns-metric{
  background: #f6f8fc;
  border: 1px solid rgba(10,15,24,.08);
  box-shadow: none;
}

.ns-performance .ns-metric__value{
  color: #0a0f18;
}

.ns-performance .ns-metric__label{
  color: rgba(10,15,24,.65);
}

.ns-thin{
  padding: 110px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f6f8fc 100%);
}

.ns-thin__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

.ns-thin__copy h2{
  font-size: clamp(3.6rem, 5vw, 6.6rem);
  margin: 10px 0 16px;
  color: #0a0f18;
}

.ns-thin__copy p{
  color: rgba(10,15,24,.7);
  font-size: 1.7rem;
}

.ns-thin__points{
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.ns-thin__points > div{
  padding: 18px 20px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(10,15,24,.07);
}

.ns-thin__points strong{
  display: block;
  font-size: 1.6rem;
  color: #0a0f18;
}

.ns-thin__points span{
  color: rgba(10,15,24,.66);
  display: block;
  margin-top: 4px;
}

.ns-thin__visual{
  padding: 34px;
  border-radius: 30px;
  background: #0a0f18;
  box-shadow: 0 24px 80px rgba(0,0,0,.16);
}

.ns-cable{
  border-radius: 999px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  padding: 18px 22px;
}

.ns-cable + .ns-cable{
  margin-top: 18px;
}

.ns-cable--nano{
  background: linear-gradient(90deg, #4e9dff 0%, #8ad0ff 100%);
  min-height: 52px;
}

.ns-cable--generic{
  background: rgba(255,255,255,.16);
  min-height: 90px;
}

@media (max-width: 989px){
  .ns-thin__grid{
    grid-template-columns: 1fr;
  }
}

/* =========================
   PRODUCT PAGE
========================= */

.product{
  background: #fff;
  color: #0a0f18;
}

.product__media-wrapper,
.product__info-wrapper{
  padding-top: 44px;
  padding-bottom: 44px;
}

.product__title{
  font-size: clamp(3.8rem, 5vw, 6.2rem);
  line-height: .96;
  color: #0a0f18;
}

.product__text,
.product__description,
.product .product__description p{
  color: rgba(10,15,24,.72);
  font-size: 1.65rem;
}

.product-form__input input[type='radio'] + label,
.product-form__input input[type='checkbox'] + label{
  border-radius: 999px !important;
  border: 1px solid rgba(10,15,24,.12) !important;
  background: #fff !important;
  padding: 12px 18px !important;
}

.product-form__input input[type='radio']:checked + label{
  background: #0a0f18 !important;
  color: #fff !important;
  border-color: #0a0f18 !important;
}

.product-form__submit{
  min-height: 54px !important;
  border-radius: 999px !important;
  font-weight: 800 !important;
}

.product__info-container .price{
  font-size: 2.4rem;
  color: #0a0f18;
  font-weight: 800;
}

/* product rich blocks */
.ns-product-block{
  margin-top: 28px;
  padding: 28px;
  border-radius: 24px;
  background: #f7f9fc;
  border: 1px solid rgba(10,15,24,.07);
}

.ns-spec-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
}

.ns-spec-grid div{
  padding: 16px 18px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(10,15,24,.06);
}

.ns-spec-grid strong{
  display: block;
  color: #0a0f18;
  margin-bottom: 5px;
}

.ns-spec-grid span{
  color: rgba(10,15,24,.65);
}

@media (max-width: 768px){
  .ns-spec-grid{
    grid-template-columns: 1fr;
  }
}

.faq-section,
.policy-page,
.contact-hero{
  background: #fff;
  color: #0a0f18;
  padding: 90px 0;
}

.faq-item{
  background: #f8f9fc;
  border: 1px solid rgba(10,15,24,.06);
  border-radius: 20px;
  margin-bottom: 14px;
  box-shadow: none;
  overflow: hidden;
}

.faq-item summary{
  cursor: pointer;
  list-style: none;
  padding: 20px 22px;
  font-size: 1.7rem;
  font-weight: 700;
  color: #0a0f18;
}

.faq-item .faq-answer{
  padding: 0 22px 20px;
  color: rgba(10,15,24,.68);
}

.collection-hero{
  padding: 90px 0 34px;
  background: #05070b;
  color: #fff;
}

.collection-hero h1{
  font-size: clamp(4.2rem, 7vw, 7.6rem);
  margin: 10px 0 14px;
}

.collection-hero p{
  max-width: 720px;
  color: rgba(255,255,255,.72);
}

.card-wrapper .card{
  border-radius: 24px !important;
  overflow: hidden;
  border: 1px solid rgba(10,15,24,.07);
  background: linear-gradient(180deg, #fff 0%, #f7f9fc 100%);
}

.card__information{
  padding: 22px !important;
}

.card__heading{
  font-size: 2rem !important;
  color: #0a0f18 !important;
}

.card-information,
.card-information *{
  color: rgba(10,15,24,.68) !important;
}



/* ==========================================
   NANOSECOND PAGE UPGRADE SYSTEM
========================================== */

.ns-wrap{
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 768px){
  .ns-wrap{
    padding: 0 20px;
  }
}

.ns-dark{
  background:
    radial-gradient(circle at top right, rgba(85,160,255,.14), transparent 24%),
    radial-gradient(circle at top left, rgba(255,255,255,.06), transparent 18%),
    linear-gradient(180deg, #05070b 0%, #0b1220 100%);
  color: #fff;
}

.ns-light{
  background: #fff;
  color: #0b1220;
}

.ns-label{
  display: inline-block;
  font-size: 1.15rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: #7dc3ff;
  margin-bottom: 12px;
}

.ns-title{
  font-size: clamp(4rem, 7vw, 8rem);
  line-height: .95;
  letter-spacing: -0.04em;
  margin: 0 0 16px;
}

.ns-sub{
  font-size: 1.8rem;
  line-height: 1.7;
  color: rgba(255,255,255,.72);
  max-width: 760px;
}

.ns-light .ns-sub{
  color: rgba(11,18,32,.68);
}

.ns-section{
  padding: 110px 0;
}

.ns-grid{
  display: grid;
  gap: 20px;
}

.ns-grid-2{
  grid-template-columns: 1fr 1fr;
}

.ns-grid-3{
  grid-template-columns: repeat(3,minmax(0,1fr));
}

.ns-grid-4{
  grid-template-columns: repeat(4,minmax(0,1fr));
}

@media (max-width: 989px){
  .ns-grid-2,
  .ns-grid-3,
  .ns-grid-4{
    grid-template-columns: 1fr;
  }
}

.ns-card{
  border-radius: 28px;
  padding: 28px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 20px 70px rgba(0,0,0,.28);
}

.ns-light .ns-card{
  background: #f7f9fc;
  border: 1px solid rgba(11,18,32,.08);
  box-shadow: none;
}

.ns-metric{
  padding: 26px 24px;
  border-radius: 24px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
}

.ns-light .ns-metric{
  background: #f7f9fc;
  border: 1px solid rgba(11,18,32,.08);
}

.ns-metric__value{
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: .95;
  font-weight: 900;
  color: inherit;
}

.ns-metric__label{
  margin-top: 8px;
  color: rgba(255,255,255,.68);
  font-size: 1.35rem;
}

.ns-light .ns-metric__label{
  color: rgba(11,18,32,.65);
}

.ns-split{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 34px;
  align-items: center;
}

@media (max-width: 989px){
  .ns-split{
    grid-template-columns: 1fr;
  }
}

.ns-button-row{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.ns-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease;
}

.ns-btn:hover{
  transform: translateY(-2px);
}

.ns-btn--solid{
  background: #fff;
  color: #05070b;
}

.ns-btn--ghost{
  background: rgba(255,255,255,.05);
  color: #fff;
  border: 1px solid rgba(255,255,255,.14);
}

.ns-light .ns-btn--ghost{
  color: #0b1220;
  background: #fff;
  border: 1px solid rgba(11,18,32,.12);
}

.ns-kicker-list{
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.ns-kicker-item{
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
}

.ns-light .ns-kicker-item{
  background: #fff;
  border: 1px solid rgba(11,18,32,.08);
}

.ns-kicker-item strong{
  display: block;
  margin-bottom: 4px;
  font-size: 1.6rem;
}

.ns-compare-bar{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-radius: 999px;
  padding: 18px 22px;
  color: #fff;
}

.ns-compare-bar--nano{
  background: linear-gradient(90deg, #4d9dff 0%, #8ed2ff 100%);
  min-height: 54px;
}

.ns-compare-bar--generic{
  background: rgba(255,255,255,.16);
  min-height: 92px;
}

.ns-light .ns-compare-bar--generic{
  background: #dfe6f0;
  color: #0b1220;
}

.ns-feature-icon{
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(125,195,255,.14);
  color: #7dc3ff;
  font-size: 2rem;
  margin-bottom: 14px;
}

.ns-divider{
  height: 1px;
  background: rgba(255,255,255,.08);
  margin: 28px 0;
}

.ns-light .ns-divider{
  background: rgba(11,18,32,.08);
}

/* ===== Nanosecond About Page Fix ===== */

.ns-label {
  color: #0A84FF;
}

.ns-metric__value {
  color: /* ===== Nanosecond About Page Fix ===== */

.ns-label {
  color: #60C4DC !important;
}

.ns-metric__value {
  color: #5FB3FF60;
  text-shadow: 0 0 12px rgba(95,179,255,0.4);
}

.ns-btn--solid {
  background: linear-gradient(135deg, #0A84FF, #5FB3FF);
  color: #ffffff;
  border-radius: 999px;
  font-weight: 600;
  padding: 14px 28px;
  box-shadow: 0 10px 30px rgba(10,132,255,0.3);
};
}

.ns-btn--solid {
  background: linear-gradient(135deg, #0A84FF, #5FB3FF);
  color: #ffffff;
  border-radius: 999px;
  font-weight: 600;
  padding: 14px 28px;
  box-shadow: 0 10px 30px rgba(10,132,255,0.3);
}

/* ===== Nanosecond Metric Glow ===== */

.ns-metric__value {
  color: #60c4dc !important;
  text-shadow: 0 0 10px rgba(96,196,220,0.35),
               0 0 20px rgba(96,196,220,0.25);
}

/* ===== HOMEPAGE GLOBAL UPGRADE ===== */
.hero,
.video-section,
.lifestyle,
.compare,
.usecases {
  position: relative;
  overflow: hidden;
}

.hero,
.video-section,
.lifestyle,
.compare,
.usecases {
  padding-top: 110px !important;
  padding-bottom: 110px !important;
}

@media screen and (max-width: 749px) {
  .hero,
  .video-section,
  .lifestyle,
  .compare,
  .usecases {
    padding-top: 72px !important;
    padding-bottom: 72px !important;
  }
}

.hero::before,
.video-section::before,
.compare::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 20%, rgba(96,196,220,0.10), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(95,179,255,0.08), transparent 24%);
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 48%, #f5f9fc 100%);
}

.hero__content {
  max-width: 760px;
  position: relative;
  z-index: 2;
}

.hero__title {
  font-size: clamp(56px, 8vw, 104px) !important;
  line-height: 0.92 !important;
  letter-spacing: -0.05em !important;
  font-weight: 700 !important;
}

.hero__title span {
  color: #60c4dc;
  text-shadow: 0 0 18px rgba(96,196,220,0.18);
}

.hero__desc {
  max-width: 620px;
  font-size: 19px !important;
  line-height: 1.65 !important;
  color: rgba(11,18,32,0.74) !important;
}

.hero__actions {
  gap: 14px;
  flex-wrap: wrap;
}

.hero__specs {
  margin-top: 34px !important;
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px !important;
}

.hero__spec {
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(11,18,32,0.08);
  backdrop-filter: blur(10px);
  border-radius: 22px;
  padding: 20px 18px;
  box-shadow: 0 18px 50px rgba(15,23,42,0.06);
}

.hero__spec-val {
  font-size: 28px !important;
  font-weight: 700 !important;
  letter-spacing: -0.04em;
  color: #60c4dc !important;
}

.hero__spec-lbl {
  color: rgba(11,18,32,0.62) !important;
  font-size: 12px !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media screen and (max-width: 989px) {
  .hero__specs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 749px) {
  .hero__specs {
    grid-template-columns: 1fr;
  }
}

/* ===== HERO VISUAL ===== */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__visual::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(96,196,220,0.22), transparent 65%);
  filter: blur(8px);
  z-index: 0;
}

.hero__visual-img {
  position: relative;
  z-index: 1;
  border-radius: 28px;
  box-shadow: 0 40px 90px rgba(10,20,40,0.16);
  transform: scale(1.02);
}

.hero__visual-overlay {
  position: absolute;
  z-index: 2;
  bottom: 24px;
  left: 24px;
  right: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero__pill {
  background: rgba(11,18,32,0.72);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 12px;
  letter-spacing: 0.05em;
}

/* ===== LIFESTYLE GRID ===== */
.lifestyle-grid {
  gap: 18px !important;
}

.lifestyle-item {
  position: relative;
  overflow: hidden;
  border-radius: 28px !important;
  background: #0b1220;
  box-shadow: 0 22px 60px rgba(15,23,42,0.10);
}

.lifestyle-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.lifestyle-item:hover img {
  transform: scale(1.05);
}

.lifestyle-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.48), rgba(0,0,0,0.04) 55%, transparent);
}

.lifestyle-item__label {
  position: absolute;
  left: 20px;
  bottom: 18px;
  z-index: 2;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

/* ===== COMPARISON TABLE ===== */
.compare {
  background: linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
}

.compare__title {
  font-size: clamp(38px, 5vw, 64px) !important;
  letter-spacing: -0.04em;
}

.compare-table {
  width: 100%;
  border-collapse: separate !important;
  border-spacing: 0 12px !important;
}

.compare-table thead th {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: rgba(11,18,32,0.58);
  border: none !important;
  padding-bottom: 12px !important;
}

.compare-table tbody tr {
  background: rgba(255,255,255,0.88);
  box-shadow: 0 14px 36px rgba(15,23,42,0.06);
}

.compare-table tbody td {
  padding: 20px 18px !important;
  border-top: 1px solid rgba(11,18,32,0.06) !important;
  border-bottom: 1px solid rgba(11,18,32,0.06) !important;
}

.compare-table tbody td:first-child {
  border-left: 1px solid rgba(11,18,32,0.06) !important;
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
}

.compare-table tbody td:last-child {
  border-right: 1px solid rgba(11,18,32,0.06) !important;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
}

/* ===== USE CASE CARDS ===== */
.usecase-grid {
  gap: 18px !important;
}

.usecase-card {
  border-radius: 26px !important;
  overflow: hidden;
  border: 1px solid rgba(11,18,32,0.08);
  background: rgba(255,255,255,0.88);
  box-shadow: 0 18px 50px rgba(15,23,42,0.07);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.usecase-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(15,23,42,0.12);
}

.usecase-card__img img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.usecase-card__body {
  padding: 24px !important;
}

.usecase-card__title {
  font-size: 24px !important;
  letter-spacing: -0.03em;
}

.usecase-card__desc {
  color: rgba(11,18,32,0.68) !important;
  line-height: 1.7;
}

/* ===== BUTTON SYSTEM ===== */
.btn,
.button,
.ns-btn--solid {
  border-radius: 999px !important;
  padding: 14px 26px !important;
  font-weight: 600 !important;
  letter-spacing: -0.01em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.btn:hover,
.button:hover,
.ns-btn--solid:hover {
  transform: translateY(-2px);
}

.btn--black {
  background: linear-gradient(135deg, #0b1220, #162033) !important;
  color: #fff !important;
  box-shadow: 0 14px 34px rgba(11,18,32,0.18);
}

.btn--outline {
  border: 1px solid rgba(11,18,32,0.14) !important;
  background: rgba(255,255,255,0.72) !important;
  color: #0b1220 !important;
  backdrop-filter: blur(8px);
}

/* ===== HEADER ===== */
.nav {
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(11,18,32,0.06);
}

.nav__inner {
  min-height: 80px;
}

.nav__link {
  font-size: 15px;
  color: rgba(11,18,32,0.78) !important;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.nav__link:hover {
  color: #60c4dc !important;
}

.nav__cta {
  border-radius: 999px !important;
}

/* ===== APPLE-STYLE ALTERNATING IMAGE SECTIONS ===== */

.lifestyle {
  padding: 120px 0 !important;
  background: #ffffff;
}

.lifestyle-grid {
  display: flex !important;
  flex-direction: column !important;
  gap: 28px !important;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
}

.lifestyle-item {
  display: grid !important;
  grid-template-columns: 1.15fr 0.85fr !important;
  align-items: stretch !important;
  min-height: 560px;
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(180deg, #f7fafc 0%, #eef4f8 100%);
  box-shadow: 0 24px 80px rgba(15,23,42,0.08);
  position: relative;
}

/* alternate every 2nd block */
.lifestyle-item:nth-child(even) {
  grid-template-columns: 0.85fr 1.15fr !important;
}

/* image area */
.lifestyle-item img {
  width: 100% !important;
  height: 100% !important;
  min-height: 560px;
  object-fit: cover !important;
  object-position: center center !important;
  display: block;
}

/* text area */
.lifestyle-item__content,
.lifestyle-item__text,
.lifestyle-item__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 64px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
}

/* if your theme only has label text overlay, this helps */
.lifestyle-item__label {
  display: inline-block;
  position: static !important;
  margin-bottom: 18px;
  color: #60c4dc;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}

/* headings inside lifestyle cards */
.lifestyle-item h2,
.lifestyle-item h3,
.lifestyle-item__title {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: #0b1220;
  margin: 0 0 18px;
}

/* paragraph text */
.lifestyle-item p,
.lifestyle-item__desc {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(11,18,32,0.72);
  max-width: 520px;
  margin: 0;
}

/* reverse content order on even rows if markup places image first */
.lifestyle-item:nth-child(even) img {
  order: 2;
}
.lifestyle-item:nth-child(even) .lifestyle-item__content,
.lifestyle-item:nth-child(even) .lifestyle-item__text,
.lifestyle-item:nth-child(even) .lifestyle-item__body {
  order: 1;
}

/* premium image edge softness */
.lifestyle-item img {
  filter: saturate(1.02) contrast(1.01);
}

/* mobile */
@media screen and (max-width: 989px) {
  .lifestyle-grid {
    padding: 0 20px;
  }

  .lifestyle-item,
  .lifestyle-item:nth-child(even) {
    grid-template-columns: 1fr !important;
    min-height: auto;
  }

  .lifestyle-item img,
  .lifestyle-item:nth-child(even) img {
    order: 1;
    min-height: 320px;
  }

  .lifestyle-item__content,
  .lifestyle-item__text,
  .lifestyle-item__body,
  .lifestyle-item:nth-child(even) .lifestyle-item__content,
  .lifestyle-item:nth-child(even) .lifestyle-item__text,
  .lifestyle-item:nth-child(even) .lifestyle-item__body {
    order: 2;
    padding: 36px 24px;
  }
}

<div class="lifestyle-item">
  <img src="YOUR-IMAGE.jpg" alt="Gaming setup with NanoGlass">
  <div class="lifestyle-item__content">
    <div class="lifestyle-item__label">For Gaming</div>
    <h3 class="lifestyle-item__title">Built for cleaner next-gen setups.</h3>
    <p class="lifestyle-item__desc">
      Ultra-slim optical fibre HDMI designed for high refresh-rate displays, cleaner routing, and a more premium setup experience.
    </p>
  </div>
</div>

/* ===== LIFESTYLE — LIGHT PREMIUM (FIX DARK CONTAINER) ===== */

.lifestyle {
  background: #ffffff;
}

/* main card */
.lifestyle-item {
  background: #ffffff !important; /* 🔥 force white */
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(11,18,32,0.06);
  box-shadow: 0 20px 60px rgba(15,23,42,0.06); /* lighter shadow */
}

/* text side — very light tint */
.lifestyle-item__content {
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    rgba(96,196,220,0.03) 100%
  ) !important;
}

/* remove dark overlay from before */
.lifestyle-item::after {
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.15),
    rgba(0,0,0,0.02) 60%,
    transparent
  ) !important;
}

/* reduce glow intensity */
.lifestyle-item::before {
  opacity: 0.5;
}

/* image cleaner (less heavy contrast) */
.lifestyle-item img {
  filter: brightness(1.02) contrast(1.02);
}

/* soften text colors */
.lifestyle-item__title {
  color: #0b1220;
}

.lifestyle-item__desc {
  color: rgba(11,18,32,0.65);
}

/* =========================
   QUICK COMPARE COLORS
========================= */

/* Nano Glass */
.ns-shop-compare__item:nth-child(1) {
  border-top: 3px solid #60c4dc;
}

.ns-shop-compare__item:nth-child(1) h3 {
  color: #60c4dc;
}

/* NanoCore */
.ns-shop-compare__item:nth-child(2) {
  border-top: 3px solid #02C39A;
}

.ns-shop-compare__item:nth-child(2) h3 {
  color: #02C39A;
}

/* NanoLink */
.ns-shop-compare__item:nth-child(3) {
  border-top: 3px solid #EA580C;
}

.ns-shop-compare__item:nth-child(3) h3 {
  color: #EA580C;
}

/* ===== 404 PAGE ===== */

.ns-404 {
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
}

.ns-404__wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* text side */
.ns-404__label {
  font-size: 14px;
  letter-spacing: 0.18em;
  color: rgba(11,18,32,0.5);
  margin-bottom: 16px;
}

.ns-404__title {
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}

.ns-404__title span {
  color: #60c4dc;
  text-shadow: 0 0 18px rgba(96,196,220,0.25);
}

.ns-404__desc {
  font-size: 18px;
  color: rgba(11,18,32,0.65);
  max-width: 520px;
  margin-bottom: 28px;
  line-height: 1.6;
}

.ns-404__actions {
  display: flex;
  gap: 12px;
}

/* visual side */
.ns-404__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ns-404__visual img {
  max-width: 420px;
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(15,23,42,0.12);
  position: relative;
  z-index: 2;
}

/* glow */
.ns-404__glow {
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(96,196,220,0.25), transparent 70%);
  filter: blur(10px);
  z-index: 1;
}

/* mobile */
@media (max-width: 749px) {
  .ns-404__wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .ns-404__actions {
    justify-content: center;
  }
}

.spec-tile__val--stack {
  font-size: 28px;
  line-height: 1.3;
}

.spec-tile__sub {
  font-size: 28px;
  font-weight: 500;
  color: inherit;
}

.spec-tile__icon {
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
}

/* NanoGlass CTA (primary button) */
.btn--glass {
  background: linear-gradient(135deg, var(--c-glass), #007aff);
  color: #fff;
  border: none;
  box-shadow: 0 8px 24px rgba(0,122,255,0.25);
  transition: all 0.3s ease;
}

/* Hover (premium lift) */
.btn--glass:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,122,255,0.35);
}

/* Active (press feel) */
.btn--glass:active {
  transform: translateY(0);
  box-shadow: 0 6px 18px rgba(0,122,255,0.2);
}

.btn--outline {
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
}

.btn--outline:hover {
  border-color: #fff;
  color: #fff;
}

.hero {
  min-height: 88vh; /* 👈 not full screen */
  display: flex;
  align-items: center;
}

.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__visual-img {
  max-height: 420px; /* 👈 key control */
  width: auto;
  object-fit: contain;
}

.hero__content {
  padding: 20px 0;
}

.hero__title {
  font-size: 56px; /* slightly smaller */
  line-height: 1.05;
  margin-bottom: 14px;
}

.hero__desc {
  font-size: 14px;
  margin-bottom: 18px;
  max-width: 420px;
}

/* Specs tighter */
.hero__specs {
  gap: 16px;
  margin-bottom: 20px;
}

.hero__spec-val {
  font-size: 18px;
}

.hero__spec-lbl {
  font-size: 11px;
}

.hero__visual-overlay {
  gap: 8px;
}

.hero__pill {
  font-size: 10px;
  padding: 4px 8px;
}

.hero {
  padding-top: 40px;
  padding-bottom: 40px;
}

.hero {
  position: relative;
  padding: 36px 0 28px;
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: 40px;
  min-height: 78vh;
}

.hero__content {
  max-width: 560px;
  justify-self: start;
}

.hero__eyebrow {
  margin-bottom: 12px;
}

.hero__title {
  margin: 0 0 14px;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.hero__title span {
  color: var(--c-glass);
}

.hero__desc {
  max-width: 500px;
  margin: 0 0 22px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,0.72);
}

.hero__specs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 22px;
}

.hero__spec {
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.hero__spec-val {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
}

.hero__spec-lbl {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.58);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  width: 100%;
}

.hero__visual-img {
  display: block;
  width: 100%;
  max-width: 560px;   /* bigger again */
  max-height: 500px;  /* still controlled */
  height: auto;
  object-fit: contain;
}

.hero__visual-overlay {
  position: absolute;
  right: 0;
  bottom: 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  max-width: 320px;
}

.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  font-size: 11px;
  color: #fff;
}

@media (max-width: 990px) {
  .hero {
    padding: 24px 0 18px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 20px;
    min-height: auto;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__visual {
    order: -1;
  }

  .hero__visual-img {
    max-width: 440px;
    max-height: 360px;
  }

  .hero__specs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero__visual-overlay {
    position: static;
    justify-content: center;
    max-width: 100%;
    margin-top: 12px;
  }
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}

/* keep text normal */
.hero__content {
  max-width: 520px;
  position: relative;
  z-index: 2;
}

.hero__title {
  color: #111111 !important;  /* force black */
}

.hero__desc strong {
  color: #333333;     /* dark grey (not pure black) */
  font-weight: 700;   /* bold */
}

/* TABLE HEADER BASE */
.compare-table th {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 18px 12px;
  background: transparent;
  border: none;
  position: relative;
  transition: all 0.3s ease;
}

/* NanoGlass */
.compare-table th:nth-child(2) {
  color: var(--c-glass);
}

/* NanoCore */
.compare-table th:nth-child(3) {
  color: var(--c-core);
}

/* NanoLink */
.compare-table th:nth-child(4) {
  color: var(--c-link);
}

.compare-table th::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 6px;
  width: 0%;
  height: 2px;
  transform: translateX(-50%);
  transition: all 0.35s ease;
  opacity: 0.8;
}

/* colored underline */
.compare-table th:nth-child(2)::after {
  background: var(--c-glass);
}
.compare-table th:nth-child(3)::after {
  background: var(--c-core);
}
.compare-table th:nth-child(4)::after {
  background: var(--c-link);
}

/* animate on hover */
.compare-table th:hover::after {
  width: 60%;
}

/* =========================
   NANOSCOND PRODUCT PAGE UI
   NanoGlass / NanoCore / NanoLink
========================= */

:root{
  --ns-black:#0b0b0f;
  --ns-text:#111318;
  --ns-muted:#666c78;
  --ns-line:#e8ebf0;
  --ns-white:#ffffff;
  --ns-bg:#f6f7fb;

  --c-glass:#60C4DC;   /* NanoGlass */
  --c-core:#02C39A;    /* NanoCore */
  --c-link:#EA580C;    /* NanoLink */

  --radius-xl:28px;
  --radius-lg:22px;
  --radius-md:16px;

  --shadow-soft:0 10px 30px rgba(10,18,40,.06);
  --shadow-card:0 20px 60px rgba(10,18,40,.08);

  --max:1280px;
}

.ns-product-page,
.ns-product-page *{
  box-sizing:border-box;
}

.ns-product-page{
  font-family:Inter, sans-serif;
  color:var(--ns-text);
  background:#fff;
}

.ns-wrap{
  max-width:var(--max);
  margin:0 auto;
  padding:0 28px;
}

@media (max-width:768px){
  .ns-wrap{
    padding:0 18px;
  }
}

/* section spacing */
.ns-section{
  padding:88px 0;
}

@media (max-width:768px){
  .ns-section{
    padding:64px 0;
  }
}

.ns-section--soft{
  background:linear-gradient(180deg,#fafbff 0%, #f4f6fb 100%);
}

.ns-section--dark{
  background:linear-gradient(180deg,#0c1018 0%, #0f1623 100%);
  color:#fff;
}

.ns-kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 14px;
  border:1px solid rgba(0,0,0,.08);
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
  background:rgba(255,255,255,.75);
  backdrop-filter:blur(10px);
}

.ns-kicker--glass{ color:var(--c-glass); }
.ns-kicker--core{ color:var(--c-core); }
.ns-kicker--link{ color:var(--c-link); }

.ns-title{
  margin:18px 0 16px;
  font-size:clamp(36px, 6vw, 72px);
  line-height:.96;
  letter-spacing:-.04em;
  font-weight:900;
}

.ns-title span.glass{ color:var(--c-glass); }
.ns-title span.core{ color:var(--c-core); }
.ns-title span.link{ color:var(--c-link); }

.ns-sub{
  max-width:760px;
  font-size:18px;
  line-height:1.7;
  color:var(--ns-muted);
}

.ns-section--dark .ns-sub{
  color:rgba(255,255,255,.72);
}

/* HERO */
.ns-hero{
  position:relative;
  overflow:hidden;
  padding:84px 0 40px;
  background:
    radial-gradient(circle at 20% 10%, rgba(91,140,255,.12), transparent 30%),
    radial-gradient(circle at 80% 20%, rgba(0,184,148,.08), transparent 28%),
    linear-gradient(180deg,#ffffff 0%, #f7f9fd 100%);
}

.ns-hero__grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:42px;
  align-items:center;
}

@media (max-width:980px){
  .ns-hero__grid{
    grid-template-columns:1fr;
  }
}

.ns-hero__desc{
  margin:0 0 26px;
  max-width:640px;
  font-size:18px;
  line-height:1.75;
  color:var(--ns-muted);
}

.ns-hero__meta{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin:0 0 28px;
}

.ns-chip{
  padding:11px 16px;
  border-radius:999px;
  font-size:13px;
  font-weight:700;
  border:1px solid rgba(17,19,24,.08);
  background:rgba(255,255,255,.8);
  backdrop-filter:blur(10px);
}

.ns-chip--glass{ color:var(--c-glass); }
.ns-chip--core{ color:var(--c-core); }
.ns-chip--link{ color:var(--c-link); }

.ns-hero__media{
  position:relative;
}

.ns-hero__image{
  width:100%;
  display:block;
  object-fit:contain;
  border-radius:30px;
}

.ns-hero__stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-top:24px;
}

@media (max-width:600px){
  .ns-hero__stats{
    grid-template-columns:1fr;
  }
}

.ns-stat{
  padding:22px 20px;
  border-radius:22px;
  background:#fff;
  border:1px solid var(--ns-line);
  box-shadow:var(--shadow-soft);
}

.ns-stat__num{
  font-size:34px;
  line-height:1;
  font-weight:900;
  letter-spacing:-.04em;
  margin-bottom:8px;
}

.ns-stat__label{
  font-size:13px;
  font-weight:700;
  color:var(--ns-muted);
  text-transform:uppercase;
  letter-spacing:.08em;
}

.ns-stat__num.glass{ color:var(--c-glass); }
.ns-stat__num.core{ color:var(--c-core); }
.ns-stat__num.link{ color:var(--c-link); }

/* SPEC GRID */
.ns-spec-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  margin-top:34px;
}

@media (max-width:980px){
  .ns-spec-grid{
    grid-template-columns:1fr;
  }
}

.ns-spec{
  background:#fff;
  border:1px solid var(--ns-line);
  border-radius:26px;
  padding:30px;
  box-shadow:var(--shadow-soft);
}

.ns-spec__value{
  font-size:48px;
  line-height:1;
  font-weight:900;
  letter-spacing:-.05em;
  margin-bottom:10px;
}

.ns-spec__label{
  font-size:18px;
  font-weight:800;
  margin-bottom:10px;
}

.ns-spec__desc{
  font-size:15px;
  line-height:1.75;
  color:var(--ns-muted);
}

/* FEATURE SPLIT */
.ns-feature-stack{
  display:grid;
  gap:26px;
}

.ns-feature{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
  align-items:center;
  background:#fff;
  border:1px solid var(--ns-line);
  border-radius:30px;
  padding:26px;
  box-shadow:var(--shadow-card);
}

.ns-feature--reverse .ns-feature__media{
  order:2;
}
.ns-feature--reverse .ns-feature__content{
  order:1;
}

@media (max-width:980px){
  .ns-feature{
    grid-template-columns:1fr;
  }
  .ns-feature--reverse .ns-feature__media,
  .ns-feature--reverse .ns-feature__content{
    order:initial;
  }
}

.ns-feature__media img{
  width:100%;
  display:block;
  border-radius:24px;
  object-fit:cover;
}

.ns-feature__eyebrow{
  display:inline-block;
  margin-bottom:12px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.ns-feature__eyebrow.glass{ color:var(--c-glass); }
.ns-feature__eyebrow.core{ color:var(--c-core); }
.ns-feature__eyebrow.link{ color:var(--c-link); }

.ns-feature__title{
  margin:0 0 12px;
  font-size:clamp(28px, 4vw, 44px);
  line-height:1.03;
  letter-spacing:-.04em;
}

.ns-feature__desc{
  margin:0 0 16px;
  font-size:16px;
  line-height:1.8;
  color:var(--ns-muted);
}

.ns-feature__stat{
  display:inline-flex;
  padding:10px 14px;
  border-radius:999px;
  background:#f5f7fb;
  border:1px solid var(--ns-line);
  font-size:13px;
  font-weight:700;
}

/* CARDS */
.ns-card-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  margin-top:24px;
}

@media (max-width:980px){
  .ns-card-grid{
    grid-template-columns:1fr;
  }
}

.ns-card{
  background:#fff;
  border:1px solid var(--ns-line);
  border-radius:24px;
  overflow:hidden;
  box-shadow:var(--shadow-soft);
}

.ns-card img{
  width:100%;
  height:260px;
  object-fit:cover;
  display:block;
}

.ns-card__body{
  padding:22px;
}

.ns-card__title{
  margin:0 0 10px;
  font-size:22px;
  line-height:1.1;
  letter-spacing:-.03em;
}

.ns-card__text{
  margin:0;
  font-size:15px;
  line-height:1.75;
  color:var(--ns-muted);
}

/* USE CASES */
.ns-use-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:22px;
  margin-top:26px;
}

@media (max-width:980px){
  .ns-use-grid{
    grid-template-columns:1fr;
  }
}

.ns-use{
  background:#fff;
  border:1px solid var(--ns-line);
  border-radius:24px;
  overflow:hidden;
  box-shadow:var(--shadow-soft);
}

.ns-use img{
  width:100%;
  height:300px;
  object-fit:cover;
  object-position:center bottom;
  display:block;
}

.ns-use__body{
  padding:24px;
}

.ns-use__title{
  font-size:22px;
  font-weight:800;
  margin-bottom:10px;
  letter-spacing:-.03em;
}

.ns-use__text{
  font-size:15px;
  line-height:1.75;
  color:var(--ns-muted);
}

/* COMPARE TABLE */
.ns-compare{
  margin-top:34px;
  border-radius:28px;
  overflow:hidden;
  border:1px solid var(--ns-line);
  background:#fff;
  box-shadow:var(--shadow-card);
}

.ns-compare table{
  width:100%;
  border-collapse:collapse;
}

.ns-compare th,
.ns-compare td{
  padding:18px 16px;
  border-bottom:1px solid var(--ns-line);
  text-align:left;
  vertical-align:top;
  font-size:15px;
  line-height:1.6;
}

.ns-compare thead th{
  font-size:14px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  background:#f8f9fc;
}

.ns-compare tbody tr:last-child td{
  border-bottom:none;
}

.ns-compare thead th:first-child{
  color:#111;
}

.ns-compare__glass{
  color:var(--c-glass) !important;
}

.ns-compare__core{
  color:var(--c-core) !important;
}

.ns-compare__link{
  color:var(--c-link) !important;
}

.ns-dot{
  display:inline-flex;
  width:10px;
  height:10px;
  border-radius:999px;
  margin-right:8px;
  vertical-align:middle;
}

.ns-dot--glass{ background:var(--c-glass); }
.ns-dot--core{ background:var(--c-core); }
.ns-dot--link{ background:var(--c-link); }

/* CTA */
.ns-cta{
  border-radius:32px;
  overflow:hidden;
  padding:42px;
  background:
    radial-gradient(circle at top left, rgba(91,140,255,.18), transparent 28%),
    radial-gradient(circle at bottom right, rgba(0,184,148,.14), transparent 28%),
    linear-gradient(135deg,#101521 0%, #60C4DC 100%);
  color:#fff;
}

.ns-cta__title{
  margin:0 0 12px;
  font-size:clamp(30px,4vw,52px);
  line-height:1;
  letter-spacing:-.04em;
}

.ns-cta__text{
  max-width:720px;
  margin:0;
  font-size:16px;
  line-height:1.8;
  color:rgba(255,255,255,.74);
}

/* utility */
.ns-accent-glass{ color:var(--c-glass); }
.ns-accent-core{ color:var(--c-core); }
.ns-accent-link{ color:var(--c-link); }

.ns-title span.link{
  color:var(--c-link);
  font-weight:900;
  font-size:1em;
  line-height:inherit;
  letter-spacing:inherit;
  display:inline;
  transform:none;
}

.ns-title span{
  text-decoration:none !important;
}

.ns-title a{
  text-decoration:none !important;
  color:inherit;
}

/* Remove underline from NanoLink key words */
.ns-title span.link,
.ns-use__title span.link,
.ns-product-page span.link{
  text-decoration:none !important;
  border-bottom:none !important;
}

.ns-title a,
.ns-title a span.link{
  text-decoration:none !important;
  border-bottom:none !important;
  color:inherit;
}

/* =========================================
   NANOCORE — FINAL COLOR SYSTEM (#02C39A)
========================================= */

:root {
  --nc-black: #0a0a0a;
  --nc-white: #ffffff;

  /* 🔥 YOUR FINAL BRAND COLOR */
  --nc-accent: #02C39A;

  /* soft + UI layers */
  --nc-accent-soft: rgba(2,195,154,0.12);
  --nc-accent-border: rgba(2,195,154,0.25);

  /* darker tone for text */
  --nc-accent-strong: #019e7d;

  /* neutrals */
  --nc-gray: #5f6670;
  --nc-border: rgba(10,10,10,0.08);
  --nc-bg-soft: #f7f9fb;

  /* glow (subtle premium) */
  --nc-glow: 0 0 30px rgba(2,195,154,0.18);
}

.collection .card:hover {
  border-color: var(--nc-accent-border);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08), var(--nc-glow);
}

.collection .card__media {
  background:
    radial-gradient(circle at top right, var(--nc-accent-soft), transparent 40%),
    linear-gradient(180deg, var(--nc-bg-soft) 0%, #ffffff 100%);
}

.collection .title-wrapper-with-link .link {
  color: var(--nc-accent);
}

.collection .quick-add__submit,
.collection .button {
  background: var(--nc-black);
  color: var(--nc-white);
}

.collection .quick-add__submit:hover,
.collection .button:hover {
  background: var(--nc-accent);
  color: #ffffff;
}

/* =========================================================
   NANOLINK PRODUCT PAGE — CLEAN WHITE VERSION
   No colored background blocks
   No underline on 40G / 2000 / Shielded
========================================================= */

.ns-product-page--nanolink {
  --ns-bg: #ffffff;
  --ns-bg-soft: #fafafa;
  --ns-text: #0f1115;
  --ns-text-soft: #666c78;
  --ns-border: rgba(15, 17, 21, 0.08);
  --ns-shadow: 0 18px 60px rgba(15, 17, 21, 0.06);
  --ns-radius-xl: 28px;
  --ns-radius-lg: 22px;
  --ns-radius-md: 18px;
  --ns-link: #EA580C;
  --ns-max: 1240px;
  --ns-font: "Inter", sans-serif;

  color: var(--ns-text);
  background: var(--ns-bg);
  font-family: var(--ns-font);
}

.ns-product-page--nanolink,
.ns-product-page--nanolink * {
  box-sizing: border-box;
}

.ns-product-page--nanolink img {
  display: block;
  width: 100%;
  max-width: 100%;
}

.ns-product-page--nanolink a,
.ns-product-page--nanolink a:hover,
.ns-product-page--nanolink a:focus,
.ns-product-page--nanolink a:active {
  text-decoration: none !important;
}

.ns-product-page--nanolink .ns-wrap {
  width: min(calc(100% - 40px), var(--ns-max));
  margin: 0 auto;
}

.ns-product-page--nanolink .ns-section {
  padding: 96px 0;
}

.ns-product-page--nanolink .ns-section--soft {
  background: #ffffff;
}

.ns-product-page--nanolink .ns-section--final {
  padding-top: 110px;
  padding-bottom: 120px;
}

.ns-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, .75);
    backdrop-filter: blur(10px);
}

.ns-product-page--nanolink .ns-kicker--link {
  color: #EA580C;
  background: #ffffff;
  border: 1px solid rgba(245, 179, 1, 0.25);
}

.ns-product-page--nanolink .ns-title {
  margin: 18px 0 18px;
  font-size: clamp(34px, 6vw, 72px);
  line-height: 0.96;
  letter-spacing: -0.04em;
  font-weight: 800;
  color: var(--ns-text);
}

.ns-product-page--nanolink .ns-title .link {
  color: var(--ns-link);
  text-decoration: none !important;
}

.ns-product-page--nanolink .ns-sub {
  max-width: 760px;
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 1.75;
  color: var(--ns-text-soft);
}

.ns-product-page--nanolink .ns-sub strong {
  color: var(--ns-text);
  font-weight: 700;
}

.ns-product-page--nanolink .ns-sub--center {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.ns-product-page--nanolink .ns-final {
  text-align: center;
}

/* HERO */
.ns-product-page--nanolink .ns-hero {
  padding: 64px 0 96px;
  background: #ffffff;
}

.ns-product-page--nanolink .ns-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: center;
}

.ns-product-page--nanolink .ns-hero__content {
  max-width: 640px;
}

.ns-product-page--nanolink .ns-hero__media {
  position: relative;
}

.ns-product-page--nanolink .ns-hero__image {
  width: 100%;
  border-radius: 32px;
  background: #fff;
  box-shadow: var(--ns-shadow);
  border: 1px solid rgba(15, 17, 21, 0.05);
  object-fit: cover;
}

.ns-product-page--nanolink .ns-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
  margin-bottom: 28px;
}

.ns-product-page--nanolink .ns-chip {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  border: 1px solid var(--ns-border);
  background: #ffffff;
  color: var(--ns-text);
}

.ns-product-page--nanolink .ns-chip--link {
  color: var(--ns-text);
  background: #ffffff;
  border-color: rgba(15, 17, 21, 0.08);
}

.ns-product-page--nanolink .ns-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 14px;
}

.ns-product-page--nanolink .ns-stat {
  padding: 24px 22px;
  background: #ffffff;
  border: 1px solid var(--ns-border);
  border-radius: var(--ns-radius-lg);
  box-shadow: 0 12px 30px rgba(15, 17, 21, 0.04);
}

.ns-product-page--nanolink .ns-stat__num {
  margin-bottom: 8px;
  font-size: 28px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--ns-link);
  text-decoration: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
}

.ns-product-page--nanolink .ns-stat__num.link,
.ns-product-page--nanolink .ns-stat__num a,
.ns-product-page--nanolink .ns-stat__num span {
  color: var(--ns-link);
  text-decoration: none !important;
  border-bottom: none !important;
}

.ns-product-page--nanolink .ns-stat__label {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ns-text-soft);
  font-weight: 500;
}

/* SPEC GRID */
.ns-product-page--nanolink .ns-spec-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.ns-product-page--nanolink .ns-spec {
  padding: 28px 24px;
  background: #ffffff;
  border: 1px solid var(--ns-border);
  border-radius: var(--ns-radius-lg);
  box-shadow: 0 12px 30px rgba(15, 17, 21, 0.04);
}

.ns-product-page--nanolink .ns-spec__value {
  margin-bottom: 10px;
  font-size: 30px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--ns-link);
  text-decoration: none !important;
}

.ns-product-page--nanolink .ns-accent-link {
  color: var(--ns-link);
  text-decoration: none !important;
}

.ns-product-page--nanolink .ns-spec__label {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 700;
  color: var(--ns-text);
}

.ns-product-page--nanolink .ns-spec__desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--ns-text-soft);
}

/* CARD GRID */
.ns-product-page--nanolink .ns-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 40px;
}

.ns-product-page--nanolink .ns-card {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--ns-border);
  border-radius: var(--ns-radius-xl);
  box-shadow: var(--ns-shadow);
}

.ns-product-page--nanolink .ns-card img {
  aspect-ratio: 1.1 / 0.9;
  object-fit: cover;
}

.ns-product-page--nanolink .ns-card__body {
  padding: 24px;
}

.ns-product-page--nanolink .ns-card__title {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 750;
  color: var(--ns-text);
}

.ns-product-page--nanolink .ns-card__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--ns-text-soft);
}

/* USE GRID */
.ns-product-page--nanolink .ns-use-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.ns-product-page--nanolink .ns-use {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--ns-border);
  border-radius: var(--ns-radius-xl);
  box-shadow: var(--ns-shadow);
}

.ns-product-page--nanolink .ns-use img {
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
}

.ns-product-page--nanolink .ns-use__body {
  padding: 24px;
}

.ns-product-page--nanolink .ns-use__title {
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 750;
  color: var(--ns-text);
}

.ns-product-page--nanolink .ns-use__text {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ns-text-soft);
}

/* COMPARE TABLE */
.ns-product-page--nanolink .ns-compare {
  margin-top: 40px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--ns-border);
  border-radius: 24px;
  box-shadow: var(--ns-shadow);
}

.ns-product-page--nanolink .ns-compare table {
  width: 100%;
  border-collapse: collapse;
}

.ns-product-page--nanolink .ns-compare th,
.ns-product-page--nanolink .ns-compare td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(15, 17, 21, 0.06);
  font-size: 14px;
  line-height: 1.6;
}

.ns-product-page--nanolink .ns-compare th {
  background: #fcfcfc;
  color: var(--ns-text);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ns-product-page--nanolink .ns-compare tbody tr:last-child td {
  border-bottom: 0;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .ns-product-page--nanolink .ns-hero__grid,
  .ns-product-page--nanolink .ns-spec-grid,
  .ns-product-page--nanolink .ns-card-grid {
    grid-template-columns: 1fr;
  }

  .ns-product-page--nanolink .ns-hero__content {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .ns-product-page--nanolink .ns-wrap {
    width: min(calc(100% - 24px), var(--ns-max));
  }

  .ns-product-page--nanolink .ns-section,
  .ns-product-page--nanolink .ns-hero {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .ns-product-page--nanolink .ns-title {
    font-size: 40px;
    line-height: 1.02;
  }

  .ns-product-page--nanolink .ns-sub {
    font-size: 16px;
    line-height: 1.7;
  }

  .ns-product-page--nanolink .ns-hero__stats,
  .ns-product-page--nanolink .ns-use-grid {
    grid-template-columns: 1fr;
  }

  .ns-product-page--nanolink .ns-stat,
  .ns-product-page--nanolink .ns-spec,
  .ns-product-page--nanolink .ns-card__body,
  .ns-product-page--nanolink .ns-use__body {
    padding: 20px;
  }

  .ns-product-page--nanolink .ns-compare {
    overflow-x: auto;
  }

  .ns-product-page--nanolink .ns-compare table {
    min-width: 760px;
  }
}

/* =========================================================
   NANOLINK / NANOCORE STYLE COLLECTION
   NANOCORE COLLECTION PAGE
========================================================= */

.ns-core-collection {
  --core-bg: #ffffff;
  --core-soft: #f7f8f8;
  --core-text: #101317;
  --core-text-soft: #66707a;
  --core-border: rgba(16, 19, 23, 0.08);
  --core-shadow: 0 20px 60px rgba(16, 19, 23, 0.07);
  --core-green: #02C39A;
  --core-green-dark: #01997a;
  --core-radius-xl: 30px;
  --core-radius-lg: 24px;
  --core-radius-md: 18px;
  --core-max: 1280px;
  --core-font: "Inter", sans-serif;

  background: var(--core-bg);
  color: var(--core-text);
  font-family: var(--core-font);
  padding: 40px 0 110px;
}

.ns-core-collection *,
.ns-core-collection *::before,
.ns-core-collection *::after {
  box-sizing: border-box;
}

.ns-core-collection img {
  display: block;
  width: 100%;
  max-width: 100%;
}

.ns-core-collection a {
  text-decoration: none;
}

.ns-core-wrap {
  width: min(calc(100% - 40px), var(--core-max));
  margin: 0 auto;
}

/* HERO */
.ns-core-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 52px;
  align-items: center;
  padding: 40px 0 70px;
}

.ns-core-kicker {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(2, 195, 154, 0.22);
  color: var(--core-green-dark);
  background: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.ns-core-title {
  margin: 0 0 18px;
  font-size: clamp(38px, 6vw, 74px);
  line-height: 0.95;
  letter-spacing: -0.05em;
  font-weight: 800;
  color: var(--core-text);
}

.ns-core-title span {
  color: var(--core-green);
}

.ns-core-sub {
  max-width: 680px;
  margin: 0;
  font-size: 18px;
  line-height: 1.8;
  color: var(--core-text-soft);
}

.ns-core-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.ns-core-chips span {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--core-border);
  color: var(--core-text);
  font-size: 13px;
  font-weight: 600;
}

.ns-core-hero__media img {
  border-radius: 34px;
  background: #fff;
  border: 1px solid rgba(16, 19, 23, 0.06);
  box-shadow: var(--core-shadow);
  object-fit: cover;
}



/* FEATURE STRIP */
.ns-core-feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 0 0 90px;
}

.ns-core-feature {
  padding: 24px 22px;
  border: 1px solid var(--core-border);
  border-radius: var(--core-radius-lg);
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(16, 19, 23, 0.04);
}

.ns-core-feature strong {
  display: block;
  margin-bottom: 8px;
  font-size: 24px;
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: var(--core-green);
}

.ns-core-feature span {
  display: block;
  font-size: 14px;
  line-height: 1.6;
  color: var(--core-text-soft);
}

/* HEADING */
.ns-core-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.ns-core-heading h2 {
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 800;
  color: var(--core-text);
}

.ns-core-heading p {
  margin: 0;
  font-size: 17px;
  line-height: 1.8;
  color: var(--core-text-soft);
}

/* GRID */
.ns-core-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.ns-core-card {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--core-border);
  border-radius: var(--core-radius-xl);
  box-shadow: var(--core-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ns-core-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 70px rgba(16, 19, 23, 0.1);
}

.ns-core-card__image img {
  aspect-ratio: 1.12 / 0.95;
  object-fit: cover;
}

.ns-core-card__body {
  padding: 24px;
}

.ns-core-card__eyebrow {
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--core-green-dark);
}

.ns-core-card h3 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 760;
  color: var(--core-text);
}

.ns-core-card p {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--core-text-soft);
}

.ns-core-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--core-text);
  color: #ffffff !important;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.2s ease;
}

.ns-core-btn:hover {
  background: var(--core-green);
  color: #ffffff !important;
}

/* BOTTOM */
.ns-core-bottom {
  max-width: 840px;
  margin: 100px auto 0;
  text-align: center;
}

.ns-core-bottom h2 {
  margin: 0 0 16px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.ns-core-bottom p {
  margin: 0;
  font-size: 17px;
  line-height: 1.85;
  color: var(--core-text-soft);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .ns-core-hero,
  .ns-core-grid {
    grid-template-columns: 1fr;
  }

  .ns-core-feature-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .ns-core-wrap {
    width: min(calc(100% - 24px), var(--core-max));
  }

  .ns-core-collection {
    padding: 24px 0 80px;
  }

  .ns-core-hero {
    gap: 28px;
    padding: 22px 0 52px;
  }

  .ns-core-title {
    font-size: 42px;
    line-height: 1.02;
  }

  .ns-core-sub,
  .ns-core-heading p,
  .ns-core-bottom p {
    font-size: 16px;
    line-height: 1.75;
  }

  .ns-core-feature-strip,
  .ns-core-grid {
    grid-template-columns: 1fr;
  }

  .ns-core-card__body,
  .ns-core-feature {
    padding: 20px;
  }

  .ns-core-card h3 {
    font-size: 22px;
  }
}

.ns-thin {
  padding: 100px 0;
}

.ns-thin__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}

.ns-thin__copy h2 {
  margin: 14px 0 18px;
}

.ns-thin__copy p {
  margin: 0 0 28px;
  font-size: 16px;
  line-height: 1.7;
  color: #5f5f5f;
  max-width: 560px;
}

.ns-thin__points {
  display: grid;
  gap: 18px;
}

.ns-thin__points div {
  display: grid;
  gap: 6px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.ns-thin__points strong {
  font-size: 17px;
  font-weight: 600;
  color: #111;
}

.ns-thin__points span {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

.ns-thin__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ns-thin__image {
  width: 100%;
  max-width: 560px;
  display: block;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

@media (max-width: 990px) {
  .ns-thin__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .ns-thin__visual {
    order: 2;
  }

  .ns-thin__copy {
    order: 1;
  }

  .ns-thin__image {
    max-width: 100%;
  }
}

/* Remove any background / box look */
.ns-thin__visual {
  background: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* Make image feel clean + floating (Apple style) */
.ns-thin__image {
  width: 100%;
  max-width: 620px;
  display: block;
  border-radius: 0; /* remove rounded box look */
  box-shadow: none; /* remove container feel */
  background: transparent;
}



/* FEATURE PANEL (your ns-feature / panels section) */
.ns-feature-panels,
.ns-feature {
  padding: 60px 0 !important;
}

.ns-feature__grid {
  gap: 32px !important;
}

.ns-feature__item {
  padding: 24px !important;
}

/* text tighter */
.ns-feature__item h3 {
  margin-bottom: 8px;
}

.ns-feature__item p {
  margin: 0;
  line-height: 1.5;
}

.ns-thin {
  padding: 60px 0 !important;
}

.ns-thin__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px; /* reduced from 56 */
  align-items: center;
}

/* TEXT tighter */
.ns-thin__copy p {
  margin-bottom: 18px;
}

/* IMAGE FIX */
.ns-thin__image {
  width: 100%;
  max-width: 420px; /* smaller = more premium */
  margin: 0 auto;
  display: block;
  object-fit: contain;
}

/* remove empty feel */
.ns-thin__visual {
  display: flex;
  justify-content: center;
}

.ns-compare {
  padding: 10px 0;
}

.ns-title {
  margin: 10px 0 10px;
}

.ns-compare-table {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.ns-compare-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  padding: 18px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  align-items: center;
}

.ns-compare-row div {
  font-size: 14px;
}

/* HEADER */
.ns-head {
  font-weight: 600;
  padding-bottom: 20px;
}

.nano {
  color: #60c4dc; /* your Nanosecond blue */
  font-weight: 600;
}

.normal {
  color: #888;
}

/* mobile */
@media (max-width: 768px) {
  .ns-compare-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

.ns-compare {
  padding: 70px 0;
}

.ns-title {
  margin: 10px 0 36px;
}

/* TABLE */
.ns-compare-table {
  display: grid;
  border-top: 1px solid rgba(0,0,0,0.08);
}

/* ROW */
.ns-compare-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

/* LEFT LABEL */
.ns-compare-row .label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: #111;
}

/* ICON STYLE */
.ns-compare-row .icon {
  font-size: 18px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.04);
  border-radius: 8px;
}

/* VALUES */
.nano {
  color: #60c4dc;
  font-weight: 600;
}

.normal {
  color: #888;
}

/* MOBILE */
@media (max-width: 768px) {
  .ns-compare-row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 16px 0;
  }
}

.ns-compare {
  padding: 72px 0;
}

.ns-title {
  margin: 10px 0 12px;
}

.ns-compare-intro {
  max-width: 760px;
  margin: 0 0 26px;
  font-size: 15px;
  line-height: 1.7;
  color: #6a6a6a;
}

/* toggle look */
.ns-compare-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  margin-bottom: 28px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 999px;
  background: #f7f7f7;
}

.ns-compare-toggle span {
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: #666;
  transition: all 0.28s ease;
}

.ns-compare-toggle .is-active {
  background: #111;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

/* column titles */
.ns-compare-head {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr;
  gap: 24px;
  align-items: end;
  margin-bottom: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.ns-compare-head__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a8a8a;
}

.ns-compare-head__item {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.ns-compare-head__item--nano {
  color: #60c4dc;
}

.ns-compare-head__item--normal {
  color: #7b7b7b;
}

/* table */
.ns-compare-table {
  display: grid;
  gap: 10px;
}

/* rows */
.ns-compare-row {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

/* left labels */
.ns-compare-row .label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 22px 0;
  font-size: 15px;
  font-weight: 600;
  color: #111;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.ns-compare-row .icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #60c4dc;
  font-size: 18px;
  line-height: 1;
}

/* cards */
.ns-compare-row .nano,
.ns-compare-row .normal {
  position: relative;
  padding: 20px 20px 18px;
  border-radius: 22px;
  border: 1px solid rgba(0,0,0,0.07);
  background: #fff;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

/* default text */
.ns-compare-row .nano strong,
.ns-compare-row .normal strong {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
  line-height: 1.4;
}

.ns-compare-row .nano span,
.ns-compare-row .normal span {
  display: block;
  font-size: 13px;
  line-height: 1.65;
  color: #6f6f6f;
}

/* NanoGlass highlight */
.ns-compare-row .nano {
  border-color: rgba(96,196,220,0.25);
  background: linear-gradient(180deg, rgba(96,196,220,0.08) 0%, rgba(255,255,255,1) 100%);
}

.ns-compare-row:hover .nano {
  transform: translateY(-2px);
  border-color: rgba(96,196,220,0.45);
  box-shadow: 0 18px 40px rgba(96,196,220,0.10);
}

.ns-compare-row:hover .normal {
  border-color: rgba(0,0,0,0.10);
  box-shadow: 0 14px 30px rgba(0,0,0,0.04);
}

/* thickness area */
.ns-thickness {
  display: grid;
  gap: 12px;
}

.ns-thickness__meta strong {
  margin-bottom: 4px;
}

.ns-bar {
  height: 10px;
  width: 100%;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(0,0,0,0.08);
}

.ns-bar span {
  display: block;
  height: 100%;
  border-radius: 999px;
}

.ns-bar--nano span {
  background: linear-gradient(90deg, #60c4dc 0%, #8bd7e8 100%);
}

.ns-bar--normal span {
  background: linear-gradient(90deg, #8c8c8c 0%, #b3b3b3 100%);
}

/* slightly tighter section spacing overall */
@media (min-width: 990px) {
  .shopify-section {
    margin: 0 !important;
  }
}

/* mobile */
@media (max-width: 989px) {
  .ns-compare {
    padding: 56px 0;
  }

  .ns-compare-head {
    display: none;
  }

  .ns-compare-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0 0 8px;
  }

  .ns-compare-row .label {
    padding: 10px 0 0;
    border-bottom: none;
  }

  .ns-compare-row .nano,
  .ns-compare-row .normal {
    padding: 18px;
  }

  .ns-compare-toggle {
    margin-bottom: 20px;
  }
}

/* FEATURE PANEL ICON / IMAGE SIZE */
.ns-feature__icon,
.ns-feature__img,
.ns-feature__item img {
  width: 36px !important;
  height: 36px !important;
  object-fit: contain;
}

/* if some are svg */
.ns-feature__item svg {
  width: 36px !important;
  height: 36px !important;
}

.ns-feature-panels {
  padding: 64px 0;
}

.ns-feature-panels__top {
  max-width: 760px;
  margin-bottom: 28px;
}

.ns-feature-panels__title {
  margin: 10px 0 12px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: #111;
}

.ns-feature-panels__intro {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: #6d6d6d;
}

.ns-feature-panels__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.ns-feature-panel {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 18px;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 24px;
  background: #fff;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.ns-feature-panel:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0,0,0,0.05);
  border-color: rgba(96,196,220,0.20);
}

.ns-feature-panel__media {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ns-feature-panel__media img,
.ns-feature-panel__media svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.ns-feature-panel__content {
  min-width: 0;
}

.ns-feature-panel__eyebrow {
  display: inline-block;
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #60c4dc;
}

.ns-feature-panel__content h3 {
  margin: 0 0 6px;
  font-size: 18px;
  line-height: 1.35;
  color: #111;
}

.ns-feature-panel__content p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.7;
  color: #6f6f6f;
}

@media (max-width: 989px) {
  .ns-feature-panels {
    padding: 52px 0;
  }

  .ns-feature-panels__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .ns-feature-panel {
    padding: 18px 16px;
    border-radius: 20px;
  }

  .ns-feature-panel__media {
    width: 34px;
    height: 34px;
  }

  .ns-feature-panel__content h3 {
    font-size: 17px;
  }
}

.ns-feature-panels {
  padding: 60px 0;
}

.ns-feature-panels__top {
  max-width: 760px;
  margin-bottom: 26px;
}

.ns-feature-panels__title {
  margin: 10px 0 12px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: #111;
}

.ns-feature-panels__intro {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: #6d6d6d;
}

.ns-feature-panels__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.ns-feature-panel {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 18px;
  border-radius: 22px;
  border: 1px solid rgba(0,0,0,0.06);
  background: #fff;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.ns-feature-panel:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(0,0,0,0.05);
}

.ns-feature-panel__media {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ns-feature-panel__media img,
.ns-feature-panel__media svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.ns-feature-panel__content {
  min-width: 0;
}

.ns-feature-panel__eyebrow {
  display: inline-block;
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ns-feature-panel__content h3 {
  margin: 0 0 6px;
  font-size: 17px;
  line-height: 1.35;
  color: #111;
}

.ns-feature-panel__content p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.68;
  color: #6f6f6f;
}

/* common cards */
.ns-feature-panel--common {
  background: #fff;
  border-color: rgba(0,0,0,0.06);
}

.ns-feature-panel--common .ns-feature-panel__eyebrow {
  color: #8a8a8a;
}

/* NanoGlass */
.ns-feature-panel--nanoglass {
  border-color: rgba(96,196,220,0.22);
  background: linear-gradient(180deg, rgba(96,196,220,0.10) 0%, #ffffff 100%);
}

.ns-feature-panel--nanoglass .ns-feature-panel__eyebrow {
  color: #60c4dc;
}

.ns-feature-panel--nanoglass:hover {
  border-color: rgba(96,196,220,0.4);
  box-shadow: 0 16px 34px rgba(96,196,220,0.12);
}

/* NanoCore */
.ns-feature-panel--nanocore {
  border-color: rgba(2,195,154,0.22);
  background: linear-gradient(180deg, rgba(2,195,154,0.09) 0%, #ffffff 100%);
}

.ns-feature-panel--nanocore .ns-feature-panel__eyebrow {
  color: #02C39A;
}

.ns-feature-panel--nanocore:hover {
  border-color: rgba(2,195,154,0.38);
  box-shadow: 0 16px 34px rgba(2,195,154,0.10);
}

/* NanoLink */
/* change #f5b700 if you already have a NanoLink brand color */
.ns-feature-panel--nanolink {
  border-color: rgba(245,183,0,0.24);
  background: linear-gradient(180deg, rgba(234, 88, 12, 0.22) 0%, #ffffff 100%);
}

.ns-feature-panel--nanolink .ns-feature-panel__eyebrow {
  color: #EA580C;
}

.ns-feature-panel--nanolink:hover {
  border-color: rgba(245,183,0,0.42);
  box-shadow: 0 16px 34px rgba(245,183,0,0.12);
}

@media (max-width: 989px) {
  .ns-feature-panels {
    padding: 52px 0;
  }

  .ns-feature-panels__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .ns-feature-panel {
    padding: 16px;
    border-radius: 20px;
  }

  .ns-feature-panel__media {
    width: 34px;
    height: 34px;
  }

  .ns-feature-panel__content h3 {
    font-size: 16px;
  }
}

.ns-family {
  padding: 68px 0;
}

.ns-family__top {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 28px;
}

.ns-family__title {
  margin: 10px 0 12px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #111;
}

.ns-family__intro {
  max-width: 700px;
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: #6d6d6d;
}

.ns-family__view-all {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 999px;
  color: #111;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.28s ease;
}

.ns-family__view-all:hover {
  background: #111;
  color: #fff;
  border-color: #111;
}

.ns-family__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.ns-family-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-radius: 28px;
  border: 1px solid rgba(0,0,0,0.06);
  overflow: hidden;
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.ns-family-card:hover {
  transform: translateY(-3px);
}

.ns-family-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 18px 20px 0;
}

.ns-family-card__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a8a8a;
}

.ns-family-card__pill {
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(0,0,0,0.05);
  color: #111;
}

.ns-family-card__media {
  padding: 18px 20px 0;
}

.ns-family-card__media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 22px;
}

.ns-family-card__body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 18px 20px 20px;
}

.ns-family-card__body h3 {
  margin: 0 0 8px;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #111;
}

.ns-family-card__body p {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.72;
  color: #666;
}

.ns-family-card__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.ns-family-card__specs span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(0,0,0,0.05);
  color: #111;
}

.ns-family-card__bottom {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
}

.ns-family-card__price {
  font-size: 16px;
  font-weight: 700;
  color: #111;
}

.ns-family-card__note {
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.5;
  color: #7b7b7b;
}

.ns-family-card__button {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.28s ease;
}

/* NanoGlass */
.ns-family-card--glass {
  border-color: rgba(96,196,220,0.22);
  background: linear-gradient(180deg, rgba(96,196,220,0.09) 0%, #ffffff 42%);
}

.ns-family-card--glass:hover {
  border-color: rgba(96,196,220,0.40);
  box-shadow: 0 20px 40px rgba(96,196,220,0.12);
}

.ns-family-card--glass .ns-family-card__pill,
.ns-family-card--glass .ns-family-card__specs span {
  background: rgba(96,196,220,0.12);
  color: #2f91a8;
}

.ns-family-card--glass .ns-family-card__button {
  background: #60c4dc;
  color: #fff;
}

/* NanoCore */
.ns-family-card--core {
  border-color: rgba(2,195,154,0.22);
  background: linear-gradient(180deg, rgba(2,195,154,0.08) 0%, #ffffff 42%);
}

.ns-family-card--core:hover {
  border-color: rgba(2,195,154,0.38);
  box-shadow: 0 20px 40px rgba(2,195,154,0.10);
}

.ns-family-card--core .ns-family-card__pill,
.ns-family-card--core .ns-family-card__specs span {
  background: rgba(2,195,154,0.12);
  color: #028a6f;
}

.ns-family-card--core .ns-family-card__button {
  background: #02C39A;
  color: #fff;
}

/* NanoLink */
.ns-family-card--link {
  border-color: rgba(234,88,12,0.22);
  background: linear-gradient(180deg, rgba(234,88,12,0.08) 0%, #ffffff 42%);
}

.ns-family-card--link:hover {
  border-color: rgba(234,88,12,0.40);
  box-shadow: 0 20px 40px rgba(234,88,12,0.12);
}

.ns-family-card--link .ns-family-card__pill,
.ns-family-card--link .ns-family-card__specs span {
  background: rgba(234,88,12,0.12);
  color: #c94d0a;
}

.ns-family-card--link .ns-family-card__button {
  background: #EA580C;
  color: #fff;
}

.ns-family-card__button:hover {
  filter: brightness(0.96);
}

@media (max-width: 989px) {
  .ns-family {
    padding: 54px 0;
  }

  .ns-family__top {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 22px;
  }

  .ns-family__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .ns-family-card {
    border-radius: 24px;
  }

  .ns-family-card__body h3 {
    font-size: 24px;
  }

  .ns-family-card__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

.ns-hero {
  padding: 96px 0 82px;
  background: #fff;
  overflow: hidden;
}

.ns-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: center;
  gap: 28px;
  min-height: 72vh;
}

.ns-hero__copy {
  max-width: 520px;
}

.ns-hero__eyebrow {
  margin-bottom: 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #60c4dc;
}

.ns-hero__title {
  margin: 0 0 16px;
  font-size: clamp(48px, 6vw, 84px);
  line-height: 0.92;
  letter-spacing: -0.055em;
  font-weight: 700;
  color: #111;
}

.ns-hero__desc {
  margin: 0 0 28px;
  max-width: 470px;
  font-size: 15.5px;
  line-height: 1.8;
  color: #6b6b6b;
}

.ns-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.ns-hero__button {
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.ns-hero__button--primary {
  background: #111;
  color: #fff;
}

.ns-hero__button--primary:hover {
  background: #000;
}

.ns-hero__button--secondary {
  color: #111;
  border: 1px solid rgba(0,0,0,0.1);
  background: transparent;
}

.ns-hero__button--secondary:hover {
  background: #f7f7f7;
}

.ns-hero__specs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, auto));
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.ns-hero__specs div {
  display: grid;
  gap: 4px;
}

.ns-hero__specs strong {
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  color: #111;
}

.ns-hero__specs span {
  font-size: 12px;
  line-height: 1.5;
  color: #7a7a7a;
}

.ns-hero__media {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ns-hero__image {
  width: 100%;
  max-width: 620px;
  display: block;
  object-fit: contain;
  will-change: transform;
  transform: translate3d(0,0,0) scale(1.02);
  transition: transform 0.18s linear;
}

/* extra premium white space on larger screens */
@media (min-width: 1200px) {
  .ns-hero {
    padding-top: 112px;
    padding-bottom: 92px;
  }

  .ns-hero__grid {
    gap: 36px;
  }

  .ns-hero__image {
    max-width: 680px;
  }
}

@media (max-width: 989px) {
  .ns-hero {
    padding: 58px 0 50px;
  }

  .ns-hero__grid {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 26px;
  }

  .ns-hero__copy {
    max-width: 100%;
  }

  .ns-hero__title {
    font-size: 44px;
  }

  .ns-hero__desc {
    font-size: 15px;
    max-width: 100%;
  }

  .ns-hero__actions {
    margin-bottom: 26px;
  }

  .ns-hero__specs {
    grid-template-columns: repeat(2, minmax(0, auto));
    gap: 16px 18px;
  }

  .ns-hero__image {
    max-width: 460px;
  }
}

.ns-hero-switch {
  padding: 78px 0 64px;
  background: #fff;
  overflow: hidden;
}

.ns-hero-switch__nav {
  display: inline-flex;
  gap: 8px;
  padding: 6px;
  margin-bottom: 26px;
  border-radius: 999px;
  background: #f5f5f5;
  border: 1px solid rgba(0,0,0,0.07);
}

.ns-hero-switch__tab {
  min-height: 44px;
  padding: 0 18px;
  border: none;
  border-radius: 999px;
  background: transparent;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  color: #666;
}

/* inactive colored text */
.ns-hero-switch__tab.is-glass { color: #60c4dc; }
.ns-hero-switch__tab.is-core  { color: #02C39A; }
.ns-hero-switch__tab.is-link  { color: #EA580C; }

/* active colored buttons */
.ns-hero-switch__tab.is-active.is-glass {
  background: #60c4dc;
  color: #fff;
  box-shadow: 0 10px 22px rgba(96,196,220,0.22);
}

.ns-hero-switch__tab.is-active.is-core {
  background: #02C39A;
  color: #fff;
  box-shadow: 0 10px 22px rgba(2,195,154,0.20);
}

.ns-hero-switch__tab.is-active.is-link {
  background: #EA580C;
  color: #fff;
  box-shadow: 0 10px 22px rgba(234,88,12,0.20);
}

.ns-hero-switch__panel {
  display: none;
}

.ns-hero-switch__panel.is-active {
  display: block;
  animation: nsHeroFade 0.35s ease;
}

@keyframes nsHeroFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ns-hero-switch__grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 28px;
  min-height: 66vh;
}

/* per panel accent */
.theme-glass { --hero-accent: #60c4dc; }
.theme-core  { --hero-accent: #02C39A; }
.theme-link  { --hero-accent: #EA580C; }

.ns-hero-switch__copy {
  max-width: 560px;
}

.ns-hero-switch__eyebrow {
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hero-accent);
}

.ns-hero-switch__title {
  margin: 0 0 14px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.95;
  letter-spacing: -0.05em;
  font-weight: 700;
  color: #111;
}

.ns-hero-switch__desc {
  margin: 0 0 22px;
  max-width: 500px;
  font-size: 15.5px;
  line-height: 1.8;
  color: #666;
}

.ns-hero-switch__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.ns-hero-switch__button {
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.ns-hero-switch__button--primary {
  background: var(--hero-accent);
  color: #fff;
}

.ns-hero-switch__button--primary:hover {
  filter: brightness(0.96);
}

.ns-hero-switch__button--secondary {
  color: #111;
  border: 1px solid rgba(0,0,0,0.10);
  background: transparent;
}

.ns-hero-switch__button--secondary:hover {
  background: #f7f7f7;
}

.ns-hero-switch__specs {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 18px;
  padding-top: 22px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.ns-hero-switch__specs div {
  display: grid;
  gap: 4px;
}

.ns-hero-switch__specs strong {
  font-size: 18px;
  font-weight: 700;
  color: #111;
}

.ns-hero-switch__specs span {
  font-size: 12px;
  color: #777;
}

.ns-hero-switch__media {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ns-hero-switch__image {
  width: 100%;
  max-width: 560px;
  display: block;
  object-fit: contain;
}

/* optional subtle product tint */
.theme-glass .ns-hero-switch__image {}
.theme-core .ns-hero-switch__image {}
.theme-link .ns-hero-switch__image {}

@media (min-width: 1200px) {
  .ns-hero-switch {
    padding-top: 92px;
    padding-bottom: 72px;
  }

  .ns-hero-switch__image {
    max-width: 620px;
  }
}

@media (max-width: 989px) {
  .ns-hero-switch {
    padding: 56px 0 46px;
  }

  .ns-hero-switch__nav {
    display: flex;
    width: 100%;
    overflow-x: auto;
    margin-bottom: 20px;
  }

  .ns-hero-switch__grid {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 24px;
  }

  .ns-hero-switch__copy {
    max-width: 100%;
  }

  .ns-hero-switch__title {
    font-size: 42px;
  }

  .ns-hero-switch__specs {
    grid-template-columns: repeat(2, auto);
    gap: 16px 18px;
  }

  .ns-hero-switch__image {
    max-width: 440px;
  }
}

.ns-hero-switch__image {
  max-width: 400px;
}

.ns-policy {
  padding: 72px 0;
  background: #fff;
}

.ns-policy__container {
  max-width: 880px;
}

.ns-policy__header {
  margin-bottom: 40px;
}

.ns-policy__header h1 {
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -0.04em;
  margin: 0 0 12px;
  color: #111;
}

.ns-policy__header p {
  font-size: 16px;
  color: #6b6b6b;
  line-height: 1.7;
  margin: 0;
}

.ns-policy__block {
  margin-bottom: 42px;
}

.ns-policy__block h2 {
  font-size: 22px;
  margin-bottom: 16px;
  color: #111;
}

.ns-policy__card {
  padding: 18px 0;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.ns-policy__card:last-child {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.ns-policy__card h3 {
  font-size: 16px;
  margin: 0 0 6px;
  color: #111;
}

.ns-policy__card p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.7;
  color: #666;
}

.ns-policy__card a {
  color: #111;
  text-decoration: underline;
}

/* spacing balance */
@media (max-width: 989px) {
  .ns-policy {
    padding: 52px 0;
  }

  .ns-policy__header h1 {
    font-size: 36px;
  }
}

.ns-policy {
  padding: 72px 0;
  background: #fff;
}

.ns-policy__container {
  max-width: 880px;
}

.ns-policy__header {
  margin-bottom: 40px;
}

.ns-policy__header h1 {
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -0.04em;
  margin: 0 0 12px;
  color: #111;
}

.ns-policy__header p {
  font-size: 16px;
  color: #6b6b6b;
  line-height: 1.7;
  margin: 0;
}

.ns-policy__block {
  margin-bottom: 42px;
}

.ns-policy__block h2 {
  font-size: 22px;
  margin-bottom: 16px;
  color: #111;
}

.ns-policy__card {
  padding: 18px 0;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.ns-policy__card:last-child {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.ns-policy__card h3 {
  font-size: 16px;
  margin: 0 0 6px;
  color: #111;
}

.ns-policy__card p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.7;
  color: #666;
}

.ns-policy__card a {
  color: #111;
  text-decoration: underline;
}

@media (max-width: 989px) {
  .ns-policy {
    padding: 52px 0;
  }

  .ns-policy__header h1 {
    font-size: 36px;
  }
}

.features--glass {
  padding: 44px 0 48px;
  background: #fff;
}

.features__head {
  max-width: 760px;
  margin: 0 auto 22px;
  text-align: center;
}

.features__title {
  margin: 10px 0 10px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: #111;
}

.features__sub {
  max-width: 700px;
  margin: 0 auto;
  font-size: 14.5px;
  line-height: 1.72;
  color: #6a6a6a;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 18px 16px;
  border-radius: 22px;
  border: 1px solid rgba(96,196,220,0.20);
  background: linear-gradient(180deg, rgba(96,196,220,0.09) 0%, #ffffff 100%);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-2px);
  border-color: rgba(96,196,220,0.38);
  box-shadow: 0 16px 30px rgba(96,196,220,0.10);
}

.feature-card__dot {
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: 50%;
  background: #60c4dc;
  flex: 0 0 auto;
  box-shadow: 0 0 0 6px rgba(96,196,220,0.10);
}

.feature-card__body {
  min-width: 0;
}

.feature-card__tag {
  display: inline-block;
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #60c4dc;
}

.feature-card__body h3 {
  margin: 0 0 6px;
  font-size: 18px;
  line-height: 1.32;
  letter-spacing: -0.02em;
  color: #111;
}

.feature-card__body p {
  margin: 0 0 8px;
  font-size: 13.5px;
  line-height: 1.68;
  color: #666;
}

.feature-card__stat {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: #2f91a8;
}

@media (max-width: 989px) {
  .features--glass {
    padding: 36px 0 40px;
  }

  .features__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .features__head {
    margin-bottom: 18px;
  }

  .feature-card {
    padding: 16px;
    border-radius: 18px;
  }

  .feature-card__body h3 {
    font-size: 17px;
  }
}

/* =========================
   NANOSSECOND PRODUCT SYSTEM
   Samsung-style / tighter / younger
========================= */

:root {
  --ns-text: #0b0d12;
  --ns-muted: #5f6673;
  --ns-line: rgba(11, 13, 18, 0.08);
  --ns-bg: #ffffff;
  --ns-soft: #f6f8fb;
  --ns-radius-xl: 28px;
  --ns-radius-lg: 22px;
  --ns-radius-md: 18px;
  --ns-shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.06);
  --ns-shadow-card: 0 8px 24px rgba(15, 23, 42, 0.05);

  --ns-blue: #60C4DC;
  --ns-blue-deep: #1e9bbf;

  --ns-green: #02C39A;
  --ns-green-deep: #0d9488;

  --ns-silver: #EA580C;
  --ns-silver-deep: #c2410c;

  --ns-max: 1240px;
}

.ns-product {
  color: var(--ns-text);
  background: var(--ns-bg);
  font-family: Inter, sans-serif;
}

.ns-product * {
  box-sizing: border-box;
}

.ns-wrap {
  max-width: var(--ns-max);
  margin: 0 auto;
  padding: 0 20px;
}

.ns-section {
  padding: 52px 0;
}

@media (max-width: 749px) {
  .ns-section {
    padding: 34px 0;
  }

  .ns-wrap {
    padding: 0 14px;
  }
}

/* ===== Theme colors per page ===== */
.ns-product--nanoglass {
  --accent: var(--ns-blue);
  --accent-deep: var(--ns-blue-deep);
  --accent-soft: rgba(96, 196, 220, 0.10);
}

.ns-product--nanocore {
  --accent: var(--ns-green);
  --accent-deep: var(--ns-green-deep);
  --accent-soft: rgba(2, 195, 154, 0.10);
}

.ns-product--nanolink {
  --accent: var(--ns-silver);
  --accent-deep: var(--ns-silver-deep);
  --accent-soft: rgba(234,88,12,0.08);
}

/* ===== Hero ===== */
.ns-hero {
  padding: 34px 0 24px;
}

.ns-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
  align-items: stretch;
}

@media (max-width: 989px) {
  .ns-hero__grid {
    grid-template-columns: 1fr;
  }
}

.ns-hero__copy,
.ns-hero__media {
  border-radius: var(--ns-radius-xl);
  overflow: hidden;
}

.ns-hero__copy {
  background:
    radial-gradient(circle at top left, var(--accent-soft) 0%, rgba(255,255,255,0) 45%),
    linear-gradient(180deg, #ffffff 0%, #f9fbfd 100%);
  border: 1px solid var(--ns-line);
  padding: 32px 30px 28px;
  box-shadow: var(--ns-shadow-soft);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 520px;
}

@media (max-width: 749px) {
  .ns-hero__copy {
    min-height: auto;
    padding: 22px 18px 20px;
  }
}

.ns-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.ns-title {
  margin: 0 0 12px;
  font-size: clamp(34px, 5vw, 66px);
  line-height: 0.94;
  letter-spacing: -0.05em;
  font-weight: 800;
}

.ns-title .accent {
  color: var(--accent);
}

.ns-subtitle {
  margin: 0 0 14px;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.45;
  color: var(--ns-text);
  font-weight: 600;
  max-width: 60ch;
}

.ns-desc {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ns-muted);
  max-width: 62ch;
}

.ns-hero__specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
  margin-top: 22px;
}

@media (max-width: 749px) {
  .ns-hero__specs {
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 10px;
    margin-top: 18px;
  }
}

.ns-mini-stat {
  padding: 14px 14px 12px;
  border-radius: 18px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(11,13,18,0.06);
  backdrop-filter: blur(10px);
}

.ns-mini-stat strong {
  display: block;
  font-size: 18px;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 6px;
  color: var(--ns-text);
}

.ns-mini-stat span {
  display: block;
  font-size: 12.5px;
  line-height: 1.35;
  color: var(--ns-muted);
}

.ns-hero__media {
  min-height: 520px;
  position: relative;
  background:
    radial-gradient(circle at top right, var(--accent-soft) 0%, rgba(255,255,255,0) 36%),
    linear-gradient(180deg, #f6f8fb 0%, #eef2f6 100%);
  border: 1px solid var(--ns-line);
  box-shadow: var(--ns-shadow-soft);
}

@media (max-width: 749px) {
  .ns-hero__media {
    min-height: 360px;
  }
}

.ns-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== Section headings ===== */
.ns-head {
  margin-bottom: 18px;
}

.ns-overline {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.ns-h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.ns-copy {
  max-width: 68ch;
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ns-muted);
}

/* ===== Compact quick spec row ===== */
.ns-quickspecs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0,1fr));
  gap: 12px;
}

@media (max-width: 989px) {
  .ns-quickspecs {
    grid-template-columns: repeat(3, minmax(0,1fr));
  }
}

@media (max-width: 749px) {
  .ns-quickspecs {
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 10px;
  }
}

.ns-chip {
  background: #fff;
  border: 1px solid var(--ns-line);
  border-radius: 18px;
  padding: 16px 14px;
  box-shadow: var(--ns-shadow-card);
  min-height: 84px;
}

.ns-chip strong {
  display: block;
  font-size: 16px;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}

.ns-chip span {
  font-size: 12.5px;
  line-height: 1.4;
  color: var(--ns-muted);
}

/* ===== Feature cards ===== */
.ns-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 14px;
}

@media (max-width: 989px) {
  .ns-grid-4 {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
}

@media (max-width: 749px) {
  .ns-grid-4 {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.ns-card {
  background: #fff;
  border: 1px solid var(--ns-line);
  border-radius: 24px;
  padding: 22px 18px 20px;
  box-shadow: var(--ns-shadow-card);
}

.ns-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-size: 18px;
  font-weight: 800;
}

.ns-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.ns-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--ns-muted);
}

/* ===== Split section ===== */
.ns-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 989px) {
  .ns-split {
    grid-template-columns: 1fr;
  }
}

.ns-panel {
  border: 1px solid var(--ns-line);
  border-radius: 26px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--ns-shadow-card);
}

.ns-panel__media {
  min-height: 320px;
  background:
    radial-gradient(circle at top right, var(--accent-soft) 0%, rgba(255,255,255,0) 35%),
    linear-gradient(180deg, #f7f9fc 0%, #eef2f6 100%);
}

.ns-panel__media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  display: block;
  object-fit: cover;
}

.ns-panel__body {
  padding: 22px 20px;
}

.ns-panel__body h3 {
  margin: 0 0 8px;
  font-size: 28px;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.ns-panel__body p {
  margin: 0;
  color: var(--ns-muted);
  font-size: 14px;
  line-height: 1.7;
}

/* ===== Compare / why choose ===== */
.ns-compare {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
}

@media (max-width: 989px) {
  .ns-compare {
    grid-template-columns: 1fr;
  }
}

.ns-compare__box,
.ns-choose__box {
  border: 1px solid var(--ns-line);
  border-radius: 26px;
  padding: 24px 22px;
  background: #fff;
  box-shadow: var(--ns-shadow-card);
}

.ns-compare__box h3,
.ns-choose__box h3 {
  margin: 0 0 12px;
  font-size: 26px;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.ns-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.ns-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--ns-muted);
  font-size: 14px;
  line-height: 1.6;
}

.ns-list li::before {
  content: "";
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.ns-cta-line {
  margin-top: 16px;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 700;
  color: var(--ns-text);
}

/* ===== FAQ ===== */
.ns-faq {
  display: grid;
  gap: 12px;
}

.ns-faq details {
  border: 1px solid var(--ns-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--ns-shadow-card);
  padding: 0 18px;
}

.ns-faq summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--ns-text);
}

.ns-faq summary::-webkit-details-marker {
  display: none;
}

.ns-faq details p {
  margin: 0 0 16px;
  color: var(--ns-muted);
  font-size: 14px;
  line-height: 1.7;
}

/* ===== Final CTA ===== */
.ns-final {
  border-radius: 30px;
  padding: 30px 24px;
  background:
    radial-gradient(circle at top left, var(--accent-soft) 0%, rgba(255,255,255,0) 42%),
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
  border: 1px solid var(--ns-line);
  box-shadow: var(--ns-shadow-card);
  text-align: center;
}

.ns-final h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.ns-final p {
  margin: 0 auto;
  max-width: 60ch;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ns-muted);
}

/* ===== Tighten Shopify default product page spacing ===== */
.product__info-wrapper,
.product__media-wrapper {
  padding-top: 0 !important;
}

.product__title {
  margin-bottom: 8px !important;
}

.product__text,
.product__description {
  margin-top: 10px !important;
}

.shopify-section .page-width {
  padding-left: 2rem;
  padding-right: 2rem;
}

@media (max-width: 749px) {
  .shopify-section .page-width {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }
}

.ns-subnav__logo {
  display: block;
  max-height: 28px;
  width: auto;
  object-fit: contain;
}

.ns-subnav__fallback {
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* =========================
   FULL WIDTH FEATURE
   ========================= */

.ns-feature-full {
  width: 100%;
}

.ns-feature-full__item {
  position: relative;
  width: 100%;
  height: 850px;
  overflow: hidden;
}

.ns-feature-full__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* overlay text */
.ns-feature-full__overlay {
  position: absolute;
  left: 8%;
  bottom: 14%;
  max-width: 520px;
  color: #ffffff;
}

.ns-feature-full__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
  opacity: 0.75;
}

/* BIG samsung style title */
.ns-feature-full__overlay h2 {
  font-size: 44px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

/* description */
.ns-feature-full__overlay p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.85;
}

/* dark gradient for readability */
.ns-feature-full__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.65) 0%,
    rgba(0,0,0,0.2) 40%,
    rgba(0,0,0,0) 70%
  );
}

/* make text above overlay */
.ns-feature-full__overlay {
  position: absolute;
  z-index: 2;
}

/* mobile */
@media (max-width: 768px) {
  .ns-feature-full__item {
    height: 420px;
  }

  .ns-feature-full__overlay {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }

  .ns-feature-full__overlay h2 {
    font-size: 30px;
  }
}

.ns-feature-full__overlay h2 {
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

/* =========================
   NANOGLASS REFINED UI
   ========================= */

.ns-pdp--nanoglass{
  --ng-blue:#60c4dc;
  --ng-blue-deep:#1f8faa;
  --ng-ink:#0b0f14;
  --ng-text:#56606d;
  --ng-line:rgba(10,20,34,0.08);
  --ng-card:#ffffff;
  --ng-bg:#f7fbfd;
  --ng-shadow:0 18px 60px rgba(24, 53, 72, 0.10);
}

/* remove any weird extra space between header and subnav */
.shopify-section-group-header-group,
.section-header,
.header-wrapper,
.header{
  margin-bottom:0 !important;
  padding-bottom:0 !important;
}

.ns-pdp--nanoglass .shopify-section:has(.ns-subnav){
  margin-top:0 !important;
  padding-top:0 !important;
}

/* =========================
   SUB NAV
   ========================= */
.ns-subnav-wrap{
  position:sticky;
  top:0;
  z-index:30;
  margin-top:0 !important;
  padding-top:0 !important;
  backdrop-filter:blur(18px);
  background:rgba(9,12,16,0.92);
  border-bottom:1px solid rgba(255,255,255,0.06);
}

.ns-subnav{
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:18px;
  min-height:56px;
  padding:8px 20px !important;
  margin:0 !important;
}

.ns-subnav__product{
  display:flex;
  align-items:center;
  gap:0;
  font-size:20px;
  font-weight:800;
  letter-spacing:-0.04em;
  line-height:1;
  white-space:nowrap;
}

.ns-subnav__product .nano{
  color:#ffffff;
}

.ns-subnav__product .glass{
  color:var(--ng-blue);
}

.ns-subnav__links{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:22px;
  min-width:0;
}

.ns-subnav__links a{
  position:relative;
  color:rgba(255,255,255,0.82);
  text-decoration:none;
  font-size:13px;
  font-weight:700;
  letter-spacing:-0.01em;
  padding:4px 0;
  transition:0.22s ease;
}

.ns-subnav__links a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-7px;
  width:0;
  height:2px;
  border-radius:999px;
  background:var(--ng-blue);
  transition:width .22s ease;
}

.ns-core-style-subnav__links a:hover {
  color: var(--ng-blue) !important;
}

.ns-subnav__links a:hover::after,
.ns-subnav__links a.is-active::after{
  width:100%;
}

.ns-buy{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:38px;
  padding:0 16px;
  border-radius:999px;
  background:#ffffff;
  color:#000000;
  text-decoration:none;
  font-size:12px;
  font-weight:800;
  letter-spacing:-0.01em;
  transition:.22s ease;
}

.ns-buy:hover{
  background:var(--ng-blue);
  color:#06252d;
  transform:translateY(-1px);
}

/* tighten hero closer to subnav */
.ns-pdp--nanoglass .ns-hero{
  position:relative;
  overflow:hidden;
  padding:18px 0 24px !important;
  background:
    radial-gradient(circle at 82% 18%, rgba(96,196,220,0.22), transparent 26%),
    radial-gradient(circle at 72% 40%, rgba(96,196,220,0.14), transparent 32%),
    linear-gradient(180deg, #fafdff 0%, #f4fbfd 100%);
}

/* animated soft glow in background */
.ns-pdp--nanoglass .ns-hero::before,
.ns-pdp--nanoglass .ns-hero::after{
  content:"";
  position:absolute;
  border-radius:999px;
  pointer-events:none;
  filter:blur(40px);
  opacity:.9;
  z-index:0;
}

.ns-pdp--nanoglass .ns-hero::before{
  width:340px;
  height:340px;
  right:-40px;
  top:20px;
  background:radial-gradient(circle, rgba(96,196,220,0.34) 0%, rgba(96,196,220,0.10) 38%, transparent 72%);
  animation:ngGlowFloat 8s ease-in-out infinite;
}

.ns-pdp--nanoglass .ns-hero::after{
  width:220px;
  height:220px;
  left:38%;
  bottom:-40px;
  background:radial-gradient(circle, rgba(96,196,220,0.18) 0%, rgba(96,196,220,0.05) 42%, transparent 74%);
  animation:ngGlowFloat2 10s ease-in-out infinite;
}

@keyframes ngGlowFloat{
  0%,100%{transform:translate3d(0,0,0) scale(1);}
  50%{transform:translate3d(-14px,10px,0) scale(1.06);}
}
@keyframes ngGlowFloat2{
  0%,100%{transform:translate3d(0,0,0) scale(1);}
  50%{transform:translate3d(12px,-10px,0) scale(1.08);}
}

/* =========================
   HERO LAYOUT
   ========================= */
.ns-pdp--nanoglass .ns-hero__grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:1fr 1.08fr;
  gap:34px;
  align-items:center;
}

.ns-pdp--nanoglass .ns-hero__content{
  position:relative;
  z-index:2;
}

.ns-pdp--nanoglass .ns-title-xl,
.ns-pdp--nanoglass h1{
  margin:0 0 16px;
  font-size:clamp(48px, 7vw, 88px);
  line-height:0.94;
  letter-spacing:-0.06em;
  color:#0a0f14;
}

/* remove border / box / outline around “See the Light” */
.ns-pdp--nanoglass .ns-title-xl span,
.ns-pdp--nanoglass h1 span,
.ns-pdp--nanoglass .glass-word,
.ns-pdp--nanoglass .see-light,
.ns-pdp--nanoglass .hero__title span{
  color:var(--ng-blue-deep) !important;
  border:0 !important;
  outline:0 !important;
  box-shadow:none !important;
  background:none !important;
  padding:0 !important;
  border-radius:0 !important;
}

/* in case title itself had border */
.ns-pdp--nanoglass .ns-title-xl,
.ns-pdp--nanoglass .hero__title{
  border:0 !important;
  outline:0 !important;
  box-shadow:none !important;
  background:transparent !important;
}

.ns-pdp--nanoglass .ns-hero__desc{
  max-width:610px;
  margin:0 0 22px;
  font-size:18px;
  line-height:1.75;
  color:var(--ng-text);
}

/* remove pill overlay / pills completely */
.ns-pdp--nanoglass .ns-pills,
.ns-pdp--nanoglass .ns-pill,
.ns-pdp--nanoglass .ns-hero__overlay,
.ns-pdp--nanoglass .ns-stat{
  display:none !important;
}

/* hero media redesigned larger and clearer for videos/images */
.ns-pdp--nanoglass .ns-hero__media{
  position:relative;
  min-height:640px;
  border-radius:34px;
  overflow:hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.68), rgba(255,255,255,0.34)),
    linear-gradient(135deg, #effbff 0%, #e0f6fb 42%, #f8fdff 100%);
  border:1px solid rgba(96,196,220,0.18);
  box-shadow:0 26px 80px rgba(20,54,70,0.14);
}

.ns-pdp--nanoglass .ns-hero__media::before{
  content:"";
  position:absolute;
  inset:auto auto 12% -8%;
  width:280px;
  height:280px;
  border-radius:999px;
  background:radial-gradient(circle, rgba(96,196,220,0.26), transparent 68%);
  filter:blur(26px);
  animation:ngGlowFloat 9s ease-in-out infinite;
  z-index:0;
}

.ns-pdp--nanoglass .ns-hero__media::after{
  content:"";
  position:absolute;
  inset:14px;
  border-radius:26px;
  border:1px solid rgba(255,255,255,0.56);
  pointer-events:none;
  z-index:2;
}

.ns-pdp--nanoglass .ns-hero__media img,
.ns-pdp--nanoglass .ns-hero__media video,
.ns-pdp--nanoglass .ns-hero__media iframe{
  position:relative;
  z-index:1;
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* optional small floating caption instead of pills */
.ns-pdp--nanoglass .ns-hero__caption{
  position:absolute;
  left:22px;
  bottom:22px;
  z-index:3;
  padding:14px 16px;
  border-radius:18px;
  background:rgba(255,255,255,0.72);
  backdrop-filter:blur(12px);
  border:1px solid rgba(255,255,255,0.7);
  box-shadow:0 10px 30px rgba(14,38,52,0.10);
  max-width:280px;
}

.ns-pdp--nanoglass .ns-hero__caption strong{
  display:block;
  font-size:14px;
  color:#07131a;
  margin-bottom:4px;
}

.ns-pdp--nanoglass .ns-hero__caption span{
  display:block;
  font-size:12px;
  color:#58707a;
  line-height:1.5;
}

/* =========================
   REVIEW / USER PREVIEW
   ========================= */
.ns-pdp--nanoglass .ns-reserve-grid{
  display:grid;
  grid-template-columns:repeat(12, 1fr);
  gap:18px;
}

.ns-pdp--nanoglass .ns-reserve{
  grid-column:span 4;
  position:relative;
  min-height:460px;
  padding:18px;
  border-radius:28px;
  background:linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
  border:1px solid rgba(10,20,34,0.07);
  box-shadow:0 16px 50px rgba(12,30,46,0.09);
  overflow:hidden;
  display:flex;
  flex-direction:column;
}

.ns-pdp--nanoglass .ns-reserve small{
  font-size:11px;
  font-weight:800;
  letter-spacing:.14em;
  color:var(--ng-blue-deep);
  margin-bottom:10px;
}

.ns-pdp--nanoglass .ns-reserve h4{
  margin:0 0 8px;
  font-size:25px;
  line-height:1.05;
  letter-spacing:-0.04em;
  color:#0b1015;
}

.ns-pdp--nanoglass .ns-reserve p{
  margin:0 0 16px;
  color:#5c6672;
  font-size:15px;
  line-height:1.65;
}

.ns-pdp--nanoglass .ns-placeholder{
  position:relative;
  flex:1;
  min-height:270px;
  border-radius:22px;
  overflow:hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(96,196,220,0.25), transparent 28%),
    linear-gradient(180deg, #eefafe 0%, #dff5fb 100%);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#3e6d78;
  font-size:13px;
  font-weight:700;
  border:1px solid rgba(96,196,220,0.15);
}

.ns-pdp--nanoglass .ns-placeholder img,
.ns-pdp--nanoglass .ns-placeholder video,
.ns-pdp--nanoglass .ns-placeholder iframe{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* featured big review card */
.ns-pdp--nanoglass .ns-reserve:first-child{
  grid-column:span 8;
  min-height:520px;
}

.ns-pdp--nanoglass .ns-reserve:first-child .ns-placeholder{
  min-height:360px;
}

/* =========================
   THICKNESS COMPARISON
   ========================= */
.ns-thin{
  position:relative;
  padding:42px 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(96,196,220,0.12), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f5fbfd 100%);
}

.ns-thin__wrap{
  display:grid;
  grid-template-columns:1fr 1.08fr;
  gap:24px;
  align-items:center;
}

.ns-thin__intro{
  max-width:560px;
}

.ns-thin__kicker{
  display:inline-block;
  margin-bottom:10px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--ng-blue-deep);
}

.ns-thin__title{
  margin:0 0 12px;
  font-size:clamp(34px, 5vw, 58px);
  line-height:0.98;
  letter-spacing:-0.05em;
  color:#0c1014;
}

.ns-thin__title span{
  color:var(--ng-blue);
}

.ns-thin__text{
  margin:0;
  font-size:17px;
  line-height:1.75;
  color:#58626f;
}

.ns-thin__visual{
  position:relative;
  padding:28px;
  border-radius:30px;
  background:linear-gradient(180deg, #fbfeff 0%, #edf8fb 100%);
  border:1px solid rgba(96,196,220,0.15);
  box-shadow:0 18px 60px rgba(18,45,62,0.10);
  overflow:hidden;
}

.ns-thin__visual::before{
  content:"";
  position:absolute;
  width:260px;
  height:260px;
  right:-40px;
  top:-40px;
  border-radius:999px;
  background:radial-gradient(circle, rgba(96,196,220,0.18), transparent 70%);
  filter:blur(24px);
}

.ns-thin-bars{
  position:relative;
  z-index:1;
  display:grid;
  gap:26px;
}

.ns-thin-bar{
  display:grid;
  grid-template-columns:120px 1fr auto;
  gap:18px;
  align-items:center;
}

.ns-thin-bar__label{
  font-size:13px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#0e161d;
}

.ns-thin-bar__track{
  position:relative;
  height:20px;
  border-radius:999px;
  background:rgba(8,20,28,0.08);
  overflow:hidden;
}

.ns-thin-bar__fill{
  position:absolute;
  inset:0 auto 0 0;
  border-radius:999px;
}

.ns-thin-bar--nano .ns-thin-bar__fill{
  width:31.6%;
  background:linear-gradient(90deg, #60c4dc 0%, #84d8ea 100%);
  box-shadow:0 0 22px rgba(96,196,220,0.45);
}

.ns-thin-bar--standard .ns-thin-bar__fill{
  width:100%;
  background:linear-gradient(90deg, #15191f 0%, #525b66 100%);
}

.ns-thin-bar__value{
  font-size:26px;
  font-weight:900;
  line-height:1;
  letter-spacing:-0.04em;
  color:#0b1015;
}

.ns-thin-notes{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-top:22px;
}

.ns-thin-note{
  padding:14px 14px 13px;
  border-radius:18px;
  background:rgba(255,255,255,0.74);
  border:1px solid rgba(255,255,255,0.8);
  backdrop-filter:blur(10px);
}

.ns-thin-note strong{
  display:block;
  margin-bottom:4px;
  font-size:15px;
  color:#091018;
}

.ns-thin-note span{
  display:block;
  font-size:12px;
  color:#66717d;
  line-height:1.55;
}

/* =========================
   MOBILE
   ========================= */
@media (max-width: 989px){
  .ns-subnav{
    grid-template-columns:1fr;
    gap:10px;
    padding:10px 14px !important;
  }

  .ns-subnav__product,
  .ns-subnav__right{
    justify-content:center;
  }

  .ns-subnav__links{
    justify-content:flex-start;
    flex-wrap:nowrap;
    overflow-x:auto;
    scrollbar-width:none;
  }

  .ns-subnav__links::-webkit-scrollbar{
    display:none;
  }

  .ns-pdp--nanoglass .ns-hero{
    padding:12px 0 18px !important;
  }

  .ns-pdp--nanoglass .ns-hero__grid,
  .ns-thin__wrap{
    grid-template-columns:1fr;
    gap:20px;
  }

  .ns-pdp--nanoglass .ns-hero__media{
    min-height:420px;
    border-radius:26px;
  }

  .ns-pdp--nanoglass .ns-reserve-grid{
    grid-template-columns:1fr;
  }

  .ns-pdp--nanoglass .ns-reserve,
  .ns-pdp--nanoglass .ns-reserve:first-child{
    grid-column:auto;
    min-height:auto;
  }

  .ns-pdp--nanoglass .ns-placeholder,
  .ns-pdp--nanoglass .ns-reserve:first-child .ns-placeholder{
    min-height:260px;
  }

  .ns-thin-bar{
    grid-template-columns:1fr;
    gap:10px;
  }

  .ns-thin-notes{
    grid-template-columns:1fr;
  }
}

/* =========================
   HARD RESET HERO TITLE BOX
   ========================= */
.ns-pdp--nanoglass .ns-title-xl,
.ns-pdp--nanoglass .ns-hero__copy .ns-title-xl,
.ns-pdp--nanoglass h1.ns-title-xl{
  display:block !important;
  margin:0 0 16px !important;
  padding:0 !important;
  background:transparent !important;
  background-image:none !important;
  border:none !important;
  outline:none !important;
  box-shadow:none !important;
  border-radius:0 !important;
  text-decoration:none !important;
  -webkit-text-stroke:0 !important;
  color:#0b0f14 !important;
  font-size:clamp(48px, 7vw, 88px) !important;
  line-height:.94 !important;
  letter-spacing:-0.06em !important;
}

.ns-pdp--nanoglass .ns-title-xl::before,
.ns-pdp--nanoglass .ns-title-xl::after,
.ns-pdp--nanoglass .ns-hero__copy .ns-title-xl::before,
.ns-pdp--nanoglass .ns-hero__copy .ns-title-xl::after{
  content:none !important;
  display:none !important;
  background:none !important;
  border:none !important;
  box-shadow:none !important;
}

/* optional: make only “Light.” blue */
.ns-pdp--nanoglass .ns-title-xl .light-word{
  color:#60C4DC !important;
  background:none !important;
  border:none !important;
  box-shadow:none !important;
  padding:0 !important;
}

/* =========================
   REVIEW WALL - 5 COLUMNS
   ========================= */
.ns-pdp--nanoglass .ng-review-wall{
  padding:54px 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(96,196,220,0.10), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
}

.ns-pdp--nanoglass .ng-review-head{
  max-width:820px;
  margin:0 0 24px;
}

.ns-pdp--nanoglass .ng-review-grid{
  display:grid;
  grid-template-columns:repeat(5, minmax(0,1fr));
  gap:16px;
}

.ns-pdp--nanoglass .ng-review-card{
  min-width:0;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  min-height:520px;
  border-radius:26px;
  padding:18px;
  background:linear-gradient(180deg, #ffffff 0%, #f5fbfd 100%);
  border:0px solid rgba(10,20,34,0.08);
  box-shadow:0 14px 40px rgba(14,34,50,0.08);
  overflow:hidden;
}

.ns-pdp--nanoglass .ng-review-top{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.ns-pdp--nanoglass .ng-review-stars{
  font-size:14px;
  letter-spacing:2px;
  color:#60c4dc;
  font-weight:800;
}

.ns-pdp--nanoglass .ng-review-title{
  margin:0;
  font-size:24px;
  line-height:1.02;
  letter-spacing:-0.04em;
  color:#0b1015;
}

.ns-pdp--nanoglass .ng-review-text{
  margin:0;
  font-size:14px;
  line-height:1.7;
  color:#5e6975;
}

.ns-pdp--nanoglass .ng-review-user{
  margin-top:4px;
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#1f8faa;
}

.ns-pdp--nanoglass .ng-review-media{
  position:relative;
  margin-top:18px;
  min-height:220px;
  border-radius:20px;
  overflow:hidden;
  background:
    radial-gradient(circle at 70% 20%, rgba(96,196,220,0.25), transparent 30%),
    linear-gradient(180deg, #eefafe 0%, #def4fa 100%);
  border:0px solid rgba(96,196,220,0.16);
}

.ns-pdp--nanoglass .ng-review-media img,
.ns-pdp--nanoglass .ng-review-media video,
.ns-pdp--nanoglass .ng-review-media iframe{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.ns-pdp--nanoglass .ng-review-media.is-video::after{
  content:"VIDEO";
  position:absolute;
  top:12px;
  right:12px;
  z-index:2;
  padding:7px 10px;
  border-radius:999px;
  background:rgba(255,255,255,0.84);
  backdrop-filter:blur(8px);
  font-size:11px;
  font-weight:800;
  color:#0e1820;
  letter-spacing:.08em;
}

@media (max-width: 1400px){
  .ns-pdp--nanoglass .ng-review-grid{
    grid-template-columns:repeat(3, minmax(0,1fr));
  }
}

@media (max-width: 989px){
  .ns-pdp--nanoglass .ng-review-grid{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }
}

@media (max-width: 700px){
  .ns-pdp--nanoglass .ng-review-grid{
    grid-template-columns:1fr;
  }

  .ns-pdp--nanoglass .ng-review-card{
    min-height:auto;
  }

  .ns-pdp--nanoglass .ng-review-media{
    min-height:240px;
  }
}

/* =========================
   THICKNESS IMAGE SECTION
   ========================= */
.ns-pdp--nanoglass .ng-thickness{
  position:relative;
  padding:56px 0;
  background:
    radial-gradient(circle at 78% 20%, rgba(96,196,220,0.14), transparent 24%),
    linear-gradient(180deg, #fbfeff 0%, #f4fbfd 100%);
}

.ns-pdp--nanoglass .ng-thickness__wrap{
  display:grid;
  grid-template-columns:.92fr 1.08fr;
  gap:24px;
  align-items:center;
}

.ns-pdp--nanoglass .ng-thickness__copy{
  max-width:560px;
}

.ns-pdp--nanoglass .ng-thickness__title{
  margin:0 0 12px;
  font-size:clamp(34px, 5vw, 58px);
  line-height:.98;
  letter-spacing:-0.05em;
  color:#0c1014;
}

.ns-pdp--nanoglass .ng-thickness__title span{
  color:#60c4dc;
}

.ns-pdp--nanoglass .ng-thickness__text{
  margin:0 0 18px;
  font-size:17px;
  line-height:1.75;
  color:#59636f;
}

.ns-pdp--nanoglass .ng-thickness__points{
  display:grid;
  gap:12px;
}

.ns-pdp--nanoglass .ng-thickness__point{
  padding:14px 16px;
  border-radius:18px;
  background:rgba(255,255,255,0.75);
  border:0px solid rgba(10,20,34,0.07);
  backdrop-filter:blur(10px);
}

.ns-pdp--nanoglass .ng-thickness__point strong{
  display:block;
  margin-bottom:4px;
  font-size:15px;
  color:#091018;
}

.ns-pdp--nanoglass .ng-thickness__point span{
  display:block;
  font-size:13px;
  color:#66717d;
  line-height:1.6;
}

.ns-pdp--nanoglass .ng-thickness__media{
  position:relative;
  border-radius:30px;
  overflow:hidden;
  background:linear-gradient(180deg,#fafeff 0%, #edf8fb 100%);
  border:0px solid rgba(96,196,220,0.14);
  box-shadow:0 18px 60px rgba(16,42,58,0.10);
  min-height:440px;
}

.ns-pdp--nanoglass .ng-thickness__media::before{
  content:"";
  position:absolute;
  width:260px;
  height:260px;
  right:-50px;
  top:-50px;
  border-radius:999px;
  background:radial-gradient(circle, rgba(96,196,220,0.18), transparent 70%);
  filter:blur(25px);
  animation:ngFloatGlow 8s ease-in-out infinite;
  z-index:1;
  pointer-events:none;
}

.ns-pdp--nanoglass .ng-thickness__media img{
  position:relative;
  z-index:2;
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

@keyframes ngFloatGlow{
  0%,100%{transform:translate3d(0,0,0) scale(1);}
  50%{transform:translate3d(-12px,10px,0) scale(1.06);}
}

@media (max-width: 989px){
  .ns-pdp--nanoglass .ng-thickness__wrap{
    grid-template-columns:1fr;
  }

  .ns-pdp--nanoglass .ng-thickness__media{
    min-height:320px;
  }
}

/* =========================
   NANOGLASS THINNESS — OVERLAP + COUNT UP + LIGHT BEAM
   ========================= */

.ns-pdp--nanoglass .ng-thickness{
  position:relative;
  overflow:hidden;
  padding:100px 0 60px;
  background:
    radial-gradient(circle at 82% 18%, rgba(96,196,220,0.16), transparent 20%),
    linear-gradient(180deg, #fbfeff 0%, #f3fbfd 100%);
}

.ns-pdp--nanoglass .ng-thickness .ns-shell{
  max-width:min(1700px, calc(100vw - 40px));
}

/* ===== TOP LAYOUT ===== */
.ns-pdp--nanoglass .ng-thickness__top{
  position:relative;
}

/* IMAGE */
.ns-pdp--nanoglass .ng-thickness__media{
  position:relative;
  width:100%;
  min-height:640px;
  border-radius:38px;
  overflow:hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.5), rgba(255,255,255,0.2)),
    linear-gradient(135deg, #eefafe 0%, #dff5fb 45%, #fafdff 100%);
  border:1px solid rgba(96,196,220,0.16);
  box-shadow:0 30px 100px rgba(16,43,58,0.12);
}

.ns-pdp--nanoglass .ng-thickness__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* light beam animation */
.ns-pdp--nanoglass .ng-thickness__beam{
  position:absolute;
  top:-10%;
  left:-18%;
  width:28%;
  height:120%;
  pointer-events:none;
  z-index:2;
  opacity:.7;
  background:linear-gradient(
    90deg,
    rgba(255,255,255,0) 0%,
    rgba(170,238,255,0.10) 20%,
    rgba(140,223,247,0.32) 48%,
    rgba(255,255,255,0.62) 50%,
    rgba(140,223,247,0.28) 52%,
    rgba(170,238,255,0.10) 78%,
    rgba(255,255,255,0) 100%
  );
  filter:blur(10px);
  transform:skewX(-18deg);
  mix-blend-mode:screen;
  animation:ngBeamSweep 7.5s ease-in-out infinite;
}

@keyframes ngBeamSweep{
  0%{
    transform:translateX(-18%) skewX(-18deg);
    opacity:0;
  }
  12%{
    opacity:.75;
  }
  50%{
    opacity:.9;
  }
  88%{
    opacity:.55;
  }
  100%{
    transform:translateX(430%) skewX(-18deg);
    opacity:0;
  }
}

/* FLOATING TEXT — LEFT BOTTOM */
.ns-pdp--nanoglass .ng-thickness__copy{
  position:absolute;
  left:28px;
  bottom:28px;
  top:auto;
  transform:none;
  max-width:500px;
  z-index:3;
  padding:30px 32px;
  border-radius:26px;
  background:rgba(255,255,255,0.72);
  backdrop-filter:blur(16px);
  border:0px solid rgba(255,255,255,0.7);
  box-shadow:0 18px 60px rgba(14,38,52,0.12);
}

/* TEXT */
.ns-pdp--nanoglass .ng-thickness__eyebrow{
  font-size:12px;
  font-weight:800;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:#4aaeca;
  margin-bottom:12px;
}

.ns-pdp--nanoglass .ng-thickness__title{
  margin:0 0 12px;
  font-size:clamp(46px, 5vw, 76px);
  line-height:0.92;
  letter-spacing:-0.065em;
  color:#0a1016;
}

.ns-pdp--nanoglass .ng-thickness__title span{
  color:#60c4dc;
}

.ns-pdp--nanoglass .ng-thickness__text{
  font-size:16px;
  line-height:1.75;
  color:#5b6672;
}

/* ===== STATS BELOW IMAGE ===== */
.ns-pdp--nanoglass .ng-thickness__stats{
  margin-top:40px;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:20px;
}

.ns-pdp--nanoglass .ng-thickness__stat{
  padding:34px 28px 28px;
  border-radius:28px;
  background:rgba(255,255,255,0.6);
  backdrop-filter:blur(12px);
  border:0px solid rgba(255,255,255,0.7);
  box-shadow:0 12px 40px rgba(14,38,52,0.08);
  text-align:left;
}

.ns-pdp--nanoglass .ng-thickness__stat-num{
  display:block;
  font-size:clamp(64px, 6vw, 80px);
  font-weight:750;
  line-height:0.85;
  letter-spacing:-0.08em;
  margin-bottom:12px;
  color:#0b1015;
}

.ns-pdp--nanoglass .ng-thickness__stat:first-child .ng-thickness__stat-num{
  color:#60c4dc;
}

.ns-pdp--nanoglass .ng-thickness__stat-copy strong{
  display:block;
  font-size:16px;
  margin-bottom:6px;
  color:#0c1218;
}

.ns-pdp--nanoglass .ng-thickness__stat-copy span{
  font-size:13px;
  color:#6a7480;
  line-height:1.6;
}

/* ===== MOBILE ===== */
@media (max-width: 989px){
  .ns-pdp--nanoglass .ng-thickness{
    padding:60px 0;
  }

  .ns-pdp--nanoglass .ng-thickness__copy{
    position:absolute;
    left:16px;
    right:16px;
    bottom:16px;
    max-width:none;
    padding:22px 20px;
    border-radius:20px;
  }

  .ns-pdp--nanoglass .ng-thickness__media{
    min-height:360px;
    border-radius:26px;
  }

  .ns-pdp--nanoglass .ng-thickness__stats{
    grid-template-columns:1fr;
  }

  .ns-pdp--nanoglass .ng-thickness__stat-num{
    font-size:clamp(48px, 12vw, 72px);
  }

  .ns-pdp--nanoglass .ng-thickness__beam{
    width:42%;
    left:-28%;
  }
}

.ns-subnav__product{
  display:inline-flex;
  align-items:center;
  gap:0 !important;
  letter-spacing:-0.04em;
  white-space:nowrap;
}

.ns-subnav__product .nano,
.ns-subnav__product .glass{
  margin:0 !important;
  padding:0 !important;
}

.ns-subnav__product{
  display:inline-flex;
  align-items:center;
  gap:0 !important;
  white-space:nowrap;
  font-size:20px;
  font-weight:800;
  letter-spacing:-0.04em;
  line-height:1;
  text-decoration:none;
}

.ns-subnav__product .nano{
  color:#ffffff;
  margin:0;
  padding:0;
}

.ns-subnav__product .glass{
  color:#60c4dc;
  margin:0;
  padding:0;
  transition:
    color .25s ease,
    text-shadow .25s ease,
    filter .25s ease,
    transform .25s ease;
}

/* hover on whole product name */
.ns-subnav__product:hover .glass{
  color:#8fe6f7;
  text-shadow:
    0 0 8px rgba(96,196,220,0.45),
    0 0 18px rgba(96,196,220,0.35),
    0 0 34px rgba(96,196,220,0.22);
  filter:brightness(1.08);
  transform:translateY(-0.5px);
}

/* =========================
   GLOBAL BORDER CLEANUP
   ========================= */

/* remove most borders */
*,
*::before,
*::after{
  border-color:transparent !important;
}

/* remove Shopify default section borders */
.shopify-section,
.section,
.card,
.product,
.collection,
.grid__item{
  border:none !important;
}

/* remove input borders */
input,
textarea,
select{
  border:1px solid rgba(0,0,0,0.08) !important;
  box-shadow:none !important;
}

/* remove table borders */
table,
th,
td{
  border:none !important;
}

/* remove hr lines */
hr{
  display:none !important;
}

/* =========================
   HERO — CLEAN / BORDERLESS
   ========================= */

.ns-pdp--nanoglass .hero{
  background:none !important;
  border:none !important;
  box-shadow:none !important;
  padding:0 !important;
}

/* remove overlay if exists */
.hero::before,
.hero::after{
  display:none !important;
}

/* image should be edge-to-edge */
.hero img{
  border-radius:0 !important;
  box-shadow:none !important;
}

/* premium soft border (glass style) */
.glass,
.ns-card,
.ng-thickness__stat,
.review-card{
  border:1px solid rgba(255,255,255,0.25);
  backdrop-filter:blur(10px);
}

/* remove container feel */
.container,
.ns-shell{
  background:none !important;
  box-shadow:none !important;
  border:none !important;
}

/* remove section separators */
section{
  border:none !important;
}

/* remove subtle dividers */
[class*="divider"],
[class*="border"]{
  display:none !important;
}

.ns-subnav-wrap{
  border-bottom:none !important;
  background:rgba(9,12,16,0.9);
  backdrop-filter:blur(20px);
}

.ns-sports-hero {
  position: relative;
  width: 100%;
  min-height: 760px;
  overflow: hidden;
  background: #000;
}

.ns-sports-hero__media {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.ns-sports-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* dark gradient on all 4 sides */
.ns-sports-hero__shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(to right,
      rgba(0,0,0,0.78) 0%,
      rgba(0,0,0,0.18) 22%,
      rgba(0,0,0,0.18) 78%,
      rgba(0,0,0,0.74) 100%),
    linear-gradient(to bottom,
      rgba(0,0,0,0.62) 0%,
      rgba(0,0,0,0.08) 20%,
      rgba(0,0,0,0.10) 76%,
      rgba(0,0,0,0.72) 100%);
}

/* content block */
.ns-sports-hero__content {
  position: relative;
  z-index: 5;
  max-width: 760px;
  padding: 110px 7vw 110px;
  color: #fff;
}

.ns-sports-hero__content::before {
  content: "";
  position: absolute;
  inset: -30px -34px;
  z-index: -1;
  background: rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 28px;
  box-shadow:
    0 20px 60px rgba(0,0,0,0.28),
    0 0 50px rgba(96,196,220,0.10),
    inset 0 0 30px rgba(255,255,255,0.03);
}

.ns-sports-hero__eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.74);
}

.ns-sports-hero__title {
  margin: 0 0 16px;
  font-size: clamp(42px, 7vw, 88px);
  line-height: 0.96;
  font-weight: 700;
  letter-spacing: -0.045em;
  color: #fff;
  text-shadow: 0 8px 28px rgba(0,0,0,0.40);
}

.ns-sports-hero__text {
  margin: 0;
  max-width: 620px;
  font-size: clamp(16px, 1.45vw, 21px);
  line-height: 1.6;
  font-weight: 400;
  color: rgba(255,255,255,0.88);
  text-shadow: 0 4px 18px rgba(0,0,0,0.34);
}

/* EXACT light beam placement for this image */
.ns-sports-hero__beam {
  position: absolute;
  left: 37%;
  top: 25.5%;
  width: 31%;
  height: 12px;
  z-index: 4;
  pointer-events: none;
  transform: rotate(14deg);
  transform-origin: center center;
  overflow: visible;
}

/* faint cable glow */
.ns-sports-hero__beam::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(96,196,220,0.00) 0%,
    rgba(96,196,220,0.10) 25%,
    rgba(96,196,220,0.18) 50%,
    rgba(96,196,220,0.10) 75%,
    rgba(96,196,220,0.00) 100%
  );
  box-shadow:
    0 0 8px rgba(96,196,220,0.35),
    0 0 18px rgba(96,196,220,0.18);
  opacity: 0.95;
}

/* moving hot beam */
.ns-sports-hero__beam::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -22%;
  width: 120px;
  height: 12px;
  transform: translateY(-50%);
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.00) 0%,
    rgba(255,255,255,0.35) 20%,
    rgba(255,255,255,1.00) 45%,
    rgba(170,240,255,0.96) 58%,
    rgba(96,196,220,0.76) 72%,
    rgba(255,255,255,0.00) 100%
  );
  box-shadow:
    0 0 8px rgba(255,255,255,0.95),
    0 0 18px rgba(255,255,255,0.66),
    0 0 34px rgba(96,196,220,0.88),
    0 0 64px rgba(96,196,220,0.44);
  animation: nsSportsBeam 2.8s linear infinite;
}

/* extra glow halo */
.ns-sports-hero__beam {
  filter: drop-shadow(0 0 8px rgba(96,196,220,0.22));
}

@keyframes nsSportsBeam {
  0% {
    left: -28%;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50% {
    left: 42%;
    opacity: 1;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}

/* mobile */
@media screen and (max-width: 768px) {
  .ns-sports-hero {
    min-height: 580px;
  }

  .ns-sports-hero__content {
    padding: 74px 22px 74px;
    max-width: 100%;
  }

  .ns-sports-hero__content::before {
    inset: -18px;
    border-radius: 22px;
  }

  .ns-sports-hero__title {
    margin-bottom: 14px;
  }

  .ns-sports-hero__text {
    font-size: 15px;
    line-height: 1.55;
  }

  .ns-sports-hero__beam {
    left: 35%;
    top: 28%;
    width: 42%;
    height: 10px;
    transform: rotate(16deg);
  }

  .ns-sports-hero__beam::after {
    width: 84px;
    height: 10px;
  }
}



/* =========================
   NANOSCOND HOMEPAGE V3
   Premium tech storefront
========================= */

.ns-home-v3{
  --glass:#60C4DC;
  --core:#02C39A;
  --link:#EA580C;
  --text:#111827;
  --muted:#667085;
  --line:#e5e7eb;
  --soft:#f8fafc;
  --card:#ffffff;
  --radius:28px;
  --shadow:0 20px 50px rgba(17,24,39,.07);
  background:#fff;
  color:var(--text);
}

.ns-wrap{
  width:min(1440px, calc(100% - 56px));
  margin:0 auto;
}

.ns-home-v3 section{
  padding:84px 0;
}

.ns-eyebrow{
  display:inline-block;
  margin-bottom:14px;
  font-size:12px;
  font-weight:700;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:#6b7280;
}

.ns-section-head{
  margin-bottom:30px;
}

.ns-section-head--center{
  text-align:center;
}

.ns-section-head h2{
  margin:0;
  font-size:clamp(34px,5vw,60px);
  line-height:.96;
  letter-spacing:-.05em;
}

.ns-hero-v3{
  padding-top:64px;
  padding-bottom:96px;
  background:
    radial-gradient(circle at top right, rgba(96,196,220,.10), transparent 24%),
    linear-gradient(180deg,#ffffff 0%, #f8fbfd 100%);
}

.ns-hero-v3__content{
  max-width:900px;
  padding:48px 0 0;
}

.ns-hero-v3 h1{
  margin:0 0 18px;
  font-size:clamp(54px,8vw,110px);
  line-height:.9;
  letter-spacing:-.07em;
}

.ns-hero-v3 p{
  max-width:760px;
  margin:0 0 28px;
  font-size:18px;
  line-height:1.8;
  color:var(--muted);
}

.ns-hero-v3__actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.ns-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 22px;
  border-radius:999px;
  text-decoration:none;
  font-weight:700;
  font-size:14px;
  transition:all .25s ease;
}

.ns-btn:hover{
  transform:translateY(-1px);
}

.ns-btn--dark{
  background:#111827;
  color:#fff;
  border:1px solid #111827;
}

.ns-btn--light{
  background:#fff;
  color:#111827;
  border:1px solid #d1d5db;
}

/* COLLECTIONS */
.ns-collection-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.ns-collection-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:28px;
  box-shadow:var(--shadow);
}

.ns-collection-card__line{
  width:48px;
  height:4px;
  border-radius:999px;
  margin-bottom:20px;
}

.ns-collection-card h3{
  margin:0 0 10px;
  font-size:34px;
  letter-spacing:-.04em;
}

.ns-collection-card p{
  margin:0 0 16px;
  color:var(--muted);
  line-height:1.75;
}

.ns-collection-card a{
  text-decoration:none;
  font-weight:700;
  color:#111827;
}

.ns-glass .ns-collection-card__line,
.ns-review-card.ns-glass .ns-review-card__product{
  background:var(--glass);
}

.ns-core .ns-collection-card__line,
.ns-review-card.ns-core .ns-review-card__product{
  background:var(--core);
}

.ns-link .ns-collection-card__line,
.ns-review-card.ns-link .ns-review-card__product{
  background:var(--link);
}

.ns-collection-card.ns-glass h3{color:var(--glass);}
.ns-collection-card.ns-core h3{color:var(--core);}
.ns-collection-card.ns-link h3{color:var(--link);}

/* CONFIDENCE */
.ns-confidence{
  background:#f8fafc;
}

.ns-confidence-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
}

.ns-confidence-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  padding:24px;
  position: relative;
  overflow: hidden;
  transition:
    transform .35s cubic-bezier(.22,1,.36,1),
    box-shadow .35s cubic-bezier(.22,1,.36,1),
    border-color .35s ease,
    background .35s ease;
}

/* subtle glass light sweep */
.ns-confidence-card::before{
  content:"";
  position:absolute;
  inset:-1px;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0) 35%,
    rgba(255,255,255,0.55) 50%,
    rgba(255,255,255,0) 65%,
    rgba(255,255,255,0) 100%
  );
  transform: translateX(-140%);
  transition: transform .8s cubic-bezier(.22,1,.36,1);
  pointer-events:none;
}

/* desktop hover animation */
@media screen and (min-width: 750px) {
  .ns-confidence-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(15,23,42,0.08);
    border-color: rgba(15,23,42,0.06);
    background: #ffffff;
  }

  .ns-confidence-card:hover::before{
    transform: translateX(140%);
  }

  .ns-confidence-card h3,
  .ns-confidence-card p{
    transition:
      transform .35s cubic-bezier(.22,1,.36,1),
      color .25s ease;
  }

  .ns-confidence-card:hover h3{
    transform: translateY(-1px);
  }

  .ns-confidence-card:hover p{
    transform: translateY(-1px);
    color:#475569;
  }
}

.ns-confidence-card h3{
  margin:0 0 10px;
  font-size:22px;
  letter-spacing:-.03em;
}

.ns-confidence-card p{
  margin:0;
  color:var(--muted);
  line-height:1.7;
}

/* =========================
   CONFIDENCE - MOBILE COMPACT
========================= */
@media screen and (max-width: 749px) {

  .ns-confidence {
    padding: 20px 0 !important;
  }

  .ns-confidence-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
  }

  .ns-confidence-card {
    padding: 14px !important;
    border-radius: 16px !important;
  }

  .ns-confidence-card h3 {
    font-size: 14px !important;
    margin-bottom: 6px !important;
    letter-spacing: -0.02em;
  }

  .ns-confidence-card p {
    font-size: 11px !important;
    line-height: 1.45 !important;
  }

}

@media screen and (max-width: 749px) {

  .ns-confidence-card {
    box-shadow: 0 6px 14px rgba(0,0,0,0.04);
    border: none;
  }

}



/* SPOTLIGHT */
.ns-spotlight{
  background:#fff;
}

.ns-spotlight__grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  align-items:center;
}

.ns-spotlight__grid--reverse{
  grid-template-columns:1fr 1fr;
}

.ns-spotlight__text h2{
  margin:0 0 16px;
  font-size:clamp(36px,5vw,68px);
  line-height:.95;
  letter-spacing:-.05em;
}

.ns-spotlight__text p{
  margin:0 0 24px;
  max-width:560px;
  color:var(--muted);
  line-height:1.85;
  font-size:17px;
}

.ns-spotlight__media{
  min-height:520px;
  border-radius:32px;
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}

.ns-media-placeholder{
  height:100%;
  min-height:520px;
  display:grid;
  place-items:center;
  font-weight:700;
  color:#7c8798;
  background:linear-gradient(180deg,#fdfefe 0%, #f3f6f9 100%);
}

.ns-spotlight--glass .ns-eyebrow{color:var(--glass);}
.ns-spotlight--core .ns-eyebrow{color:var(--core);}
.ns-spotlight--link .ns-eyebrow{color:var(--link);}

/* =========================
   REVIEWS V4 - PREMIUM LAYOUT
========================= */

.ns-reviews-v3{
  background:#fff;
}

/* section head */
.ns-reviews-v3 .ns-section-head{
  margin:0 0 18px;
}

.ns-reviews-v3 .ns-section-head h2{
  margin:0;
  font-size:clamp(28px, 3vw, 40px);
  line-height:1.03;
  letter-spacing:-.04em;
}

/* desktop grid */
.ns-review-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
  align-items:stretch;
}

.ns-review-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  overflow:hidden;
  box-shadow:var(--shadow);
  display:flex;
  flex-direction:column;
  height:100%;
}

.ns-review-card__image{
  aspect-ratio: 4 / 3;
  background:#f3f4f6;
  overflow:hidden;
}

.ns-review-card__image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.ns-review-card__body{
  padding:18px;
  display:flex;
  flex-direction:column;
  gap:0;
  flex:1;
}

.ns-review-card__product{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  align-self:flex-start;
  min-height:28px;
  padding:0 11px;
  border-radius:999px;
  color:#fff;
  font-size:11px;
  font-weight:700;
  margin-bottom:10px;
}

.ns-review-card h3{
  margin:0 0 8px;
  font-size:20px;
  line-height:1.18;
  letter-spacing:-.03em;
}

.ns-review-card p{
  margin:0 0 10px;
  color:var(--muted);
  line-height:1.65;
  font-size:14px;
  flex:1;
}

.ns-review-card__name{
  color:#111827;
  font-size:13px;
  font-weight:700;
  margin-top:auto;
}

/* subtle premium hover */
@media (hover:hover) and (pointer:fine){
  .ns-review-card{
    transition:transform .28s ease, box-shadow .28s ease, border-color .28s ease;
  }

  .ns-review-card:hover{
    transform:translateY(-4px);
    box-shadow:0 18px 38px rgba(0,0,0,.08);
  }

  .ns-review-card__image img{
    transition:transform .8s ease;
  }

  .ns-review-card:hover .ns-review-card__image img{
    transform:scale(1.03);
  }
}

/* TABLET */
@media (max-width: 1100px){
  .ns-review-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:16px;
  }
}

/* MOBILE - APPLE STYLE HORIZONTAL SWIPE */
@media (max-width: 768px){

  .ns-reviews-v3{
    overflow:hidden;
  }

  .ns-reviews-v3 .ns-section-head{
    margin:0 0 12px !important;
  }

  .ns-reviews-v3 .ns-section-head h2{
    font-size:24px !important;
    line-height:1.05 !important;
  }

  /* make cards swipe horizontally */
  .ns-review-grid{
    display:grid !important;
    grid-auto-flow:column;
    grid-auto-columns:84%;
    grid-template-columns:none !important;
    gap:12px !important;
    overflow-x:auto;
    overflow-y:hidden;
    padding-bottom:4px;
    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
  }

  .ns-review-grid::-webkit-scrollbar{
    display:none;
  }

  .ns-review-card{
    scroll-snap-align:start;
    border-radius:18px !important;
    min-width:0;
  }

  .ns-review-card__image{
    aspect-ratio: 4 / 3;
  }

  .ns-review-card__body{
    padding:14px !important;
  }

  .ns-review-card__product{
    font-size:10px !important;
    min-height:24px !important;
    padding:0 10px !important;
    margin-bottom:8px !important;
  }

  .ns-review-card h3{
    font-size:16px !important;
    margin:0 0 6px !important;
    line-height:1.2;
  }

  .ns-review-card p{
    font-size:12px !important;
    line-height:1.5 !important;
    margin:0 0 8px !important;
  }

  .ns-review-card__name{
    font-size:11px !important;
  }
}

/* SMALL MOBILE */
@media (max-width: 480px){
  .ns-review-grid{
    grid-auto-columns:88%;
  }
}


/* Button hover updates */
.ns-btn--dark {
  background: #111827;
  color: #fff;
  border: 1px solid #111827;
}

.ns-btn--dark:hover {
  background: #60C4DC;
  border-color: #60C4DC;
  color: #ffffff;
}

.ns-btn--light:hover {
  background: #111827;
  color: #ffffff;
  border-color: #111827;
}

/* =========================
   FEATURED COLLECTIONS
   CLEAN EQUAL-CARD VERSION
========================= */
.ns-featured-collections {
  padding: 84px 0;
}

.ns-featured-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

/* Make the wrapper disappear visually so all 3 cards behave like siblings */
.ns-featured-grid__small {
  display: contents;
}

/* Reset size differences */
.ns-featured-card--large,
.ns-featured-card--small {
  grid-column: auto !important;
  grid-row: auto !important;
}

.ns-featured-card {
  position: relative;
  min-height: 420px;
  border-radius: 18px;
  overflow: hidden;
}

.ns-featured-card__media-wrap {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  color: inherit;
  text-decoration: none;
}

.ns-featured-card__media {
  position: absolute;
  inset: 0;
}

.ns-featured-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Slight dark gradient for readability */
.ns-featured-card__overlay {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 20px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.60) 0%,
    rgba(0, 0, 0, 0.28) 45%,
    rgba(0, 0, 0, 0.00) 100%
  );
}

.ns-featured-card__eyebrow {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.ns-split-title {
  margin: 0 0 8px;
  font-size: 30px;
  line-height: 1.05;
}

.ns-featured-card__overlay p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.45;
  max-width: 32ch;
}

.ns-featured-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  font-size: 12px;
  white-space: nowrap;
}

/* =========================
   TABLET
========================= */
@media screen and (max-width: 989px) {
  .ns-featured-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ns-featured-card,
  .ns-featured-card__media-wrap {
    min-height: 360px;
  }

  .ns-split-title {
    font-size: 24px;
  }

  .ns-featured-card__overlay p {
    font-size: 13px;
  }
}

/* =========================
   MOBILE
========================= */
@media screen and (max-width: 749px) {
  .ns-featured-collections {
    padding: 44px 0;
  }

  .ns-featured-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .ns-featured-card,
  .ns-featured-card__media-wrap {
    min-height: 280px;
    border-radius: 14px;
  }

  .ns-featured-card__overlay {
    padding: 14px;
  }

  .ns-featured-card__eyebrow {
    margin-bottom: 6px;
    font-size: 9px;
    letter-spacing: 1px;
  }

  .ns-split-title {
    margin-bottom: 6px;
    font-size: 18px !important;
    line-height: 1.08;
  }

  .ns-featured-card__overlay p {
    margin-bottom: 10px;
    font-size: 11px !important;
    line-height: 1.35;
    max-width: 26ch;
  }

  .ns-featured-card__button {
    min-height: 34px;
    padding: 0 10px;
    font-size: 10px !important;
  }
}

/* =========================
   FORCE WHITE TEXT (FEATURED CARDS)
========================= */

.ns-featured-card__overlay,
.ns-featured-card__overlay * {
  color: #ffffff !important;
}

/* Keep colored brand words (Glass/Core/Link) */
.ns-word-color--glass {
  color: #60C4DC !important;
}

.ns-word-color--core {
  color: #02C39A !important;
}

.ns-word-color--link {
  color: #EA580C !important;
}

/* =========================
   CATEGORY EXPLORE
========================= */
.ns-category-explore {
  padding: 84px 0;
}

.ns-category-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.ns-category-card {
  position: relative;
  min-height: 360px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(17,24,39,.07);
}

.ns-category-card a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #fff;
}

.ns-category-card__content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.62) 100%);
}

.ns-category-card__eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  opacity: .9;
}

.ns-category-card h3 {
  margin: 0 0 10px;
  font-size: clamp(34px, 5vw, 52px);
  line-height: .95;
  letter-spacing: -.04em;
}

.ns-category-card p {
  max-width: 520px;
  margin: 0 0 18px;
  color: rgba(255,255,255,.88);
  line-height: 1.75;
}

.ns-category-card__link {
  font-size: 14px;
  font-weight: 700;
}

.ns-category-card--hdmi {
  background:
    linear-gradient(180deg, rgba(96,196,220,.22), rgba(17,24,39,.62)),
    url("YOUR-HDMI-CATEGORY-IMAGE.jpg") center/cover no-repeat;
}

.ns-category-card--ethernet {
  background:
    linear-gradient(180deg, rgba(234,88,12,.18), rgba(17,24,39,.62)),
    url("YOUR-ETHERNET-CATEGORY-IMAGE.jpg") center/cover no-repeat;
}

@media (max-width: 768px) {
  .ns-category-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   SUBTLE TEXT BASE (APPLE STYLE)
========================= */

/* =========================
   USE CASE - LEFT BOTTOM POSITION
========================= */

.ns-slide__overlay {
  position: absolute;
  left: 20px;
  bottom: 20px;
  right: auto;           /* 🔥 important */
  max-width: 420px;
  z-index: 3;
}

  /* remove box */
  background: transparent !important;
  backdrop-filter: none !important;
  padding: 0 !important;
}

/* Small gradient just under text (NOT full box) */
.ns-slide__overlay::before {
  content: "";
  position: absolute;
  left: -12px;
  right: -12px;
  bottom: -10px;
  height: 120%;
  z-index: -1;

  background: linear-gradient(
    to top,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.25) 45%,
    rgba(0,0,0,0.00) 100%
  );

  border-radius: 12px;
  filter: blur(8px);
}
@media screen and (max-width: 749px) {

  .ns-slide__overlay {
    left: 12px;
    bottom: 12px;
    max-width: 75%;
  }

  .ns-slide__content {
    padding: 8px 10px;
    border-radius: 10px;
    background: rgba(0,0,0,0.4);
  }

  .ns-slide__overlay h3 {
    font-size: 14px !important;
  }

  .ns-slide__overlay p {
    font-size: 10px !important;
  }

  .ns-slide__btn {
    font-size: 9px !important;
    padding: 4px 10px !important;
  }
}

/* =========================
   BRAND COLOR GLOW
========================= */

.ns-slide--glass:hover {
  box-shadow: 0 0 40px rgba(96,196,220,0.25);
}

.ns-slide--core:hover {
  box-shadow: 0 0 40px rgba(2,195,154,0.25);
}

.ns-slide--link:hover {
  box-shadow: 0 0 40px rgba(234,88,12,0.25);
}

/* =========================
   HERO TEXT OVER IMAGE
========================= */

.ns-hero-overlay {
  position: relative;
  height: 88vh;
  min-height: 720px;
  overflow: hidden;
}

/* IMAGE */
.ns-hero-overlay__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.ns-hero-overlay__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* DARK GRADIENT (for readability) */
.ns-hero-overlay::after {
  background:
    linear-gradient(90deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.15) 40%, rgba(0,0,0,.05) 75%);
}

/* TEXT LAYER */
.ns-hero-overlay__content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
 align-items: flex-end;
  padding-bottom: 60px;
}

/* TEXT BLOCK */
.ns-hero-overlay__text {
  max-width: 640px;
  color: #fff;
}

/* TYPOGRAPHY */
.ns-hero-overlay__text h1 {
  margin: 0 0 18px;
  font-size: clamp(54px, 8vw, 110px);
  line-height: .9;
  letter-spacing: -.06em;
}

.ns-hero-overlay__text p {
  margin: 0 0 26px;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255,255,255,.85);
}

.ns-hero-overlay__text .ns-eyebrow {
  color: rgba(255,255,255,.75);
}

/* BUTTONS */
.ns-hero-overlay__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* FULL WIDTH FIX (VERY IMPORTANT) */
.ns-hero-overlay {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.ns-hero-overlay__bg img {
  transform: scale(1.02);
  animation: heroZoom 12s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.02); }
  to { transform: scale(1.08); }
}

/* Only the big title */
.ns-hero-overlay__text h1 {
  color: #ffffff !important;
}

/* HERO TEXT SHADOW (premium look) */
.ns-hero-overlay__text h1 {
  text-shadow:
    0 4px 12px rgba(0,0,0,0.25),
    0 8px 24px rgba(0,0,0,0.18);
}

.ns-hero-overlay__text p,
.ns-hero-overlay__text .ns-eyebrow {
  text-shadow:
    0 2px 8px rgba(0,0,0,0.18);
}

/* Move hero text further left */
.ns-hero-overlay__content .ns-wrap {
  width: 100%;
  max-width: none;
  padding-left: 40px; /* adjust: 20px / 60px / 80px */
}

/* Optional: fine-tune text position */
.ns-hero-overlay__text {
  margin-left: 0;
}

/* TEXT COLOR SPLIT */
.ns-white {
  color: #ffffff;
}

/* Product colors */
.ns-glass-text {
  color: #60C4DC;
}

.ns-core-text {
  color: #02C39A;
}

.ns-link-text {
  color: #EA580C;
}

/* =========================
   COLLECTION TITLE HOVER
========================= */
.ns-split-title {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  margin: 0 0 10px;
  line-height: 0.95;
  letter-spacing: -0.04em;
  flex-wrap: wrap;
}

.ns-word-white {
  color: #ffffff;
}

.ns-word-color {
  position: relative;
  display: inline-block;
  transform: translateX(0);
  transition:
    color 0.35s ease,
    text-shadow 0.35s ease,
    transform 0.45s cubic-bezier(.22,1,.36,1);
}

.ns-word-color--glass {
  color: #60C4DC;
}

.ns-word-color--core {
  color: #02C39A;
}

.ns-word-color--link {
  color: #EA580C;
}

/* hover on whole card - desktop only */
@media screen and (min-width: 750px) {
  .ns-featured-card:hover .ns-word-color--glass {
    transform: translateX(8px);
    text-shadow:
      0 0 10px rgba(96,196,220,.35),
      0 0 22px rgba(96,196,220,.22),
      0 10px 24px rgba(96,196,220,.12);
  }

  .ns-featured-card:hover .ns-word-color--core {
    transform: translateX(8px);
    text-shadow:
      0 0 10px rgba(2,195,154,.35),
      0 0 22px rgba(2,195,154,.22),
      0 10px 24px rgba(2,195,154,.12);
  }

  .ns-featured-card:hover .ns-word-color--link {
    transform: translateX(8px);
    text-shadow:
      0 0 10px rgba(234,88,12,.35),
      0 0 22px rgba(234,88,12,.22),
      0 10px 24px rgba(234,88,12,.12);
  }
}

/* =========================
   COLLECTION BUTTON HOVERS
========================= */
.ns-featured-card__button {
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease,
    color 0.25s ease;
}

/* desktop only */
@media screen and (min-width: 750px) {
  .ns-featured-card:hover .ns-featured-card__button--glass {
    background: #60C4DC;
    box-shadow: 0 10px 30px rgba(96,196,220,.28);
  }

  .ns-featured-card:hover .ns-featured-card__button--core {
    background: #02C39A;
    box-shadow: 0 10px 30px rgba(2,195,154,.28);
  }

  .ns-featured-card:hover .ns-featured-card__button--link {
    background: #EA580C;
    box-shadow: 0 10px 30px rgba(234,88,12,.28);
  }

  .ns-featured-card:hover .ns-featured-card__button {
    transform: translateY(-1px);
  }
}

/* =========================
   SPOTLIGHT SECTIONS
   Premium Apple / Samsung mobile-friendly version
========================= */

.ns-spotlight {
  position: relative;
  padding: 88px 0;
}

.ns-spotlight + .ns-spotlight {
  padding-top: 28px;
}

.ns-spotlight__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  align-items: center;
  gap: 40px;
}

.ns-spotlight__grid--reverse {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
}

.ns-spotlight__text {
  max-width: 520px;
  position: relative;
  z-index: 2;
}

.ns-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  opacity: 0.8;
}

.ns-spotlight__text h2 {
  margin: 0 0 14px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.ns-spotlight__text p {
  margin: 0 0 22px;
  max-width: 34ch;
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.82;
}

.ns-spotlight__media {
  position: relative;
  width: 100%;
}

.ns-spotlight__media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 22px;
}

/* premium button */
.ns-btn--dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

/* desktop hover only */
@media screen and (min-width: 750px) {
  .ns-spotlight__media img {
    transition: transform 0.8s ease, box-shadow 0.35s ease;
  }

  .ns-spotlight:hover .ns-spotlight__media img {
    transform: scale(1.015);
  }

  .ns-spotlight--glass:hover .ns-btn--dark {
    background: #60C4DC;
    border-color: #60C4DC;
    color: #fff;
    box-shadow: 0 12px 28px rgba(96,196,220,.22);
  }

  .ns-spotlight--core:hover .ns-btn--dark {
    background: #02C39A;
    border-color: #02C39A;
    color: #fff;
    box-shadow: 0 12px 28px rgba(2,195,154,.20);
  }

  .ns-spotlight--link:hover .ns-btn--dark {
    background: #EA580C;
    border-color: #EA580C;
    color: #fff;
    box-shadow: 0 12px 28px rgba(234,88,12,.20);
  }
}

/* space before Use Cases section */
.ns-spotlight:last-of-type {
  padding-bottom: 112px;
}

/* =========================
   TABLET
========================= */
@media screen and (max-width: 989px) {
  .ns-spotlight {
    padding: 72px 0;
  }

  .ns-spotlight__grid,
  .ns-spotlight__grid--reverse {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .ns-spotlight__text h2 {
    font-size: clamp(28px, 4vw, 42px);
  }

  .ns-spotlight__text p {
    font-size: 14px;
    max-width: 32ch;
  }

  .ns-spotlight:last-of-type {
    padding-bottom: 88px;
  }
}

/* =========================
   MOBILE - PREMIUM VERSION
========================= */
@media screen and (max-width: 749px) {
  .ns-spotlight {
    padding: 44px 0;
  }

  .ns-spotlight + .ns-spotlight {
    padding-top: 10px;
  }

  .ns-spotlight__grid,
  .ns-spotlight__grid--reverse {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* keep text and image in correct visual order */
  .ns-spotlight__grid > .ns-spotlight__text,
  .ns-spotlight__grid--reverse > .ns-spotlight__text {
    order: 1;
  }

  .ns-spotlight__grid > .ns-spotlight__media,
  .ns-spotlight__grid--reverse > .ns-spotlight__media {
    order: 2;
  }

  .ns-spotlight__text {
    max-width: 100%;
    padding-right: 4px;
  }

  .ns-eyebrow {
    margin-bottom: 8px;
    font-size: 9px;
    letter-spacing: 1.2px;
  }

  .ns-spotlight__text h2 {
    margin: 0 0 10px;
    font-size: 24px;
    line-height: 1.02;
    letter-spacing: -0.04em;
    text-wrap: balance;
  }

  .ns-spotlight__text p {
    margin: 0 0 14px;
    max-width: 28ch;
    font-size: 11px;
    line-height: 1.45;
    opacity: 0.82;
  }

  .ns-btn--dark {
    min-height: 34px !important;
    padding: 0 12px !important;
    font-size: 10px !important;
    border-radius: 999px;
    box-shadow: none !important;
    transform: none !important;
  }

  .ns-spotlight__media {
    margin-top: 2px;
  }

  .ns-spotlight__media img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 16px;
  }

  /* more space before Use Cases */
  .ns-spotlight:last-of-type {
    padding-bottom: 64px;
  }

  /* slight product tint, mobile-friendly */
  .ns-spotlight--glass .ns-eyebrow {
    color: #60C4DC;
  }

  .ns-spotlight--core .ns-eyebrow {
    color: #02C39A;
  }

  .ns-spotlight--link .ns-eyebrow {
    color: #EA580C;
  }
}

@media screen and (max-width: 749px) {
  .ns-spotlight__media img {
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
  }
}

/* =========================
   REAL CAROUSEL
========================= */
.ns-carousel {
  position: relative;
}

.ns-carousel__viewport {
  overflow: hidden;
  border-radius: 30px;
}

.ns-carousel__track {
  display: flex;
  transition: transform .6s cubic-bezier(.22,1,.36,1);
  will-change: transform;
}

.ns-slide {
  position: relative;
  min-width: 100%;
  height: 620px;
  overflow: hidden;
  flex: 0 0 100%;
}

.ns-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s ease;
}

.ns-slide:hover img {
  transform: scale(1.04);
}

.ns-slide__overlay {
  position: absolute;
  inset: 0;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  color: #fff;
  background: linear-gradient(180deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.10) 50%, rgba(0,0,0,.28) 100%);
}

.ns-slide__eyebrow {
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.ns-slide h3 {
  max-width: 360px;
  margin: 0 0 18px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: .95;
  letter-spacing: -.04em;
}

.ns-slide__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: #111827;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}

.ns-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  color: #111827;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(17,24,39,.12);
}

.ns-carousel__arrow--prev {
  left: 16px;
}

.ns-carousel__arrow--next {
  right: 16px;
}

@media (max-width: 768px) {
  .ns-slide {
    height: 460px;
  }

  .ns-carousel__arrow {
    width: 42px;
    height: 42px;
    font-size: 24px;
  }
}

/* USE CASE OVERLAY */
.ns-slide__overlay {
  position: absolute;
  inset: 0;
  padding: 30px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.ns-slide__content {
  max-width: 420px;
  padding: 22px 24px 24px;
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.40);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}

.ns-slide__eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.82);
}

.ns-slide__content h3 {
  margin: 0 0 16px;
  max-width: 320px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -.04em;
  color: #fff;
  text-shadow: 0 4px 14px rgba(0,0,0,.22);
}

.ns-slide__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.96);
  color: #111827 !important;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(0,0,0,0.22);
  transition: transform .25s ease, background .25s ease, color .25s ease;
}

.ns-slide__btn:hover {
  transform: translateY(-1px);
  background: #ffffff;
  color: #111827 !important;
}

/* =========================
   FIX BUTTON VISIBILITY
========================= */

.ns-slide__btn {
  margin-top: 8px;
  background: rgba(255,255,255,0.95);
  color: #111827;
  font-weight: 700;
  border-radius: 999px;

  /* add depth so it pops */
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* hover */
.ns-slide__btn:hover {
  background: #ffffff;
  transform: translateY(-1px);
}

/* =========================
   GLASS CONTENT BOX (BEST)
========================= */

.ns-slide__content {
  padding: 20px 24px;
  border-radius: 20px;

  background: rgba(0,0,0,0.42);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  max-width: 360px;
}

/* text */
.ns-slide__content h3 {
  margin: 0 0 12px;
  color: #fff;
}

.ns-slide__content .ns-slide__eyebrow {
  color: rgba(255,255,255,.8);
}

/* button */
.ns-slide__content .ns-slide__btn {
  margin-top: 8px;
  background: rgba(255,255,255,.95);
  color: #111827;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* Section spacing system */
.ns-section {
  margin: 80px 0;
}


/* =========================================
   NANOSCOND GLOBAL PREMIUM SYSTEM
   Samsung / Apple / Anker inspired
   Put at bottom of base.css
   ========================================= */

:root {
  --ns-page-max: 1320px;

  --ns-space-2xs: 8px;
  --ns-space-xs: 12px;
  --ns-space-sm: 16px;
  --ns-space-md: 24px;
  --ns-space-lg: 32px;
  --ns-space-xl: 48px;
  --ns-space-2xl: 72px;
  --ns-space-3xl: 96px;

  --ns-section-desktop: 88px;
  --ns-section-tablet: 68px;
  --ns-section-mobile: 52px;

  --ns-edge-desktop: 32px;
  --ns-edge-tablet: 24px;
  --ns-edge-mobile: 18px;

  --ns-radius-card: 24px;
  --ns-radius-card-mobile: 18px;

  --ns-text: #0b0f19;
  --ns-muted: #5f6b7a;
  --ns-line: rgba(10, 16, 30, 0.08);
  --ns-line-strong: rgba(10, 16, 30, 0.14);
  --ns-surface: #ffffff;
  --ns-surface-soft: #f7f9fc;
  --ns-shadow-soft: 0 12px 40px rgba(15, 23, 42, 0.06);
  --ns-shadow-hover: 0 18px 60px rgba(15, 23, 42, 0.10);

  --ns-blue: #60C4DC;
  --ns-green: #02C39A;
  --ns-orange: #EA580C;
}

/* page width */
.page-width,
.collection .page-width,
.product .page-width,
.main-page-title,
.shopify-section .page-width {
  width: min(var(--ns-page-max), calc(100% - 64px));
  margin-left: auto;
  margin-right: auto;
}

/* better global vertical rhythm */
.shopify-section:not(:first-child) {
  margin-top: 0;
}

/* dawn section wrappers */
.section,
.shopify-section-group-header-group,
.shopify-section-group-footer-group {
  margin: 0;
}

/* global typography */
body {
  color: var(--ns-text);
  letter-spacing: 0.01em;
}

h1, h2, h3, h4, h5 {
  color: var(--ns-text);
  letter-spacing: -0.03em;
  line-height: 1.02;
}

p, .rte, .caption-with-letter-spacing, .product__text {
  color: var(--ns-muted);
  line-height: 1.7;
}

/* buttons: cleaner premium look */
.button,
button,
.shopify-payment-button__button,
.button--primary,
.button--secondary {
  border-radius: 999px !important;
  min-height: 46px;
  padding: 0 18px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.button:hover,
button:hover,
.shopify-payment-button__button:hover,
.button--primary:hover,
.button--secondary:hover {
  transform: translateY(-1px);
  box-shadow: var(--ns-shadow-soft);
}

/* cards / tiles / media blocks */
.card,
.collection-list .card,
.product-card-wrapper .card,
.multicolumn-card,
.collapsible-content summary,
.blog__posts .article-card,
.jdgm-rev,
.jdgm-carousel-item__review-body {
  border-radius: var(--ns-radius-card) !important;
  border: 1px solid var(--ns-line);
  box-shadow: none;
}

/* inputs */
.field__input,
.select__select,
.customer input,
textarea {
  border-radius: 16px !important;
}

/* images */
.media,
.card__media,
.banner__media,
.global-media-settings {
  border-radius: 24px;
  overflow: hidden;
}

/* newsletter / footer polish */
.newsletter-form__field-wrapper,
.footer-block,
.footer__content-top {
  border-radius: 24px;
}

/* mobile system */
@media (max-width: 989px) {
  .page-width,
  .collection .page-width,
  .product .page-width,
  .main-page-title,
  .shopify-section .page-width {
    width: calc(100% - 40px);
  }
}

@media (max-width: 749px) {
  .page-width,
  .collection .page-width,
  .product .page-width,
  .main-page-title,
  .shopify-section .page-width {
    width: calc(100% - 24px);
  }

  h1 { font-size: clamp(32px, 9vw, 44px); }
  h2 { font-size: clamp(28px, 7vw, 36px); }
  h3 { font-size: clamp(20px, 5vw, 24px); }

  .button,
  button,
  .shopify-payment-button__button,
  .button--primary,
  .button--secondary {
    min-height: 44px;
    padding: 0 16px;
  }

  .media,
  .card__media,
  .banner__media,
  .global-media-settings {
    border-radius: 18px;
  }

  .card,
  .collection-list .card,
  .product-card-wrapper .card,
  .multicolumn-card,
  .jdgm-rev,
  .jdgm-carousel-item__review-body {
    border-radius: 18px !important;
  }
}

/* subtle premium hover */
a, button, .button {
  transition: all 0.25s ease;
}

/* cleaner link treatment */
a:not(.button) {
  text-decoration: none;
}

/* premium divider tone */
hr, .footer, .section-header, .shopify-section {
  border-color: rgba(10,16,30,0.06);
}

/* product accent examples */
.ns-hero-slide--glass .ns-hero-slide__title-product,
.ns-glass-accent { color: #60C4DC; }

.ns-hero-slide--core .ns-hero-slide__title-product,
.ns-core-accent { color: #02C39A; }

.ns-hero-slide--link .ns-hero-slide__title-product,
.ns-link-accent { color: #EA580C; }



/* =========================
   NANosecond Premium Header
========================= */
.ns-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  width: 100%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.ns-header__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 28px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.ns-header__logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.ns-header__logo img {
  display: block;
  height: 50px;
  width: auto;
}

.ns-header__desktop {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.ns-header__desktop a,
.ns-header__mobile a {
  position: relative;
  color: #000;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.ns-header__desktop a:hover,
.ns-header__mobile a:hover {
  opacity: 0.62;
}

.ns-header__desktop a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  background: #000;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.28s ease;
}

.ns-header__desktop a:hover::after {
  transform: scaleX(1);
}

/* Mobile toggle */
.ns-header__toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
}

.ns-header__toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: #000;
  border-radius: 999px;
  transition: transform 0.28s ease, opacity 0.22s ease;
}

.ns-header__mobile {
  display: none;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition:
    max-height 0.38s ease,
    opacity 0.28s ease,
    transform 0.28s ease;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  pointer-events: none;
}

.ns-header.is-open .ns-header__mobile {
  display: block;
  max-height: 420px;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@media screen and (min-width: 990px) {
  .ns-header__mobile {
    display: none !important;
    max-height: 0 !important;
    opacity: 0 !important;
    overflow: hidden !important;
    transform: translateY(-10px) !important;
    border-bottom: none !important;
    pointer-events: none !important;
  }
}

<script>
  document.addEventListener('DOMContentLoaded', function () {
    const header = document.querySelector('.ns-header');
    const toggle = document.querySelector('.ns-header__toggle');
    const mobileLinks = document.querySelectorAll('.ns-header__mobile a');

    if (!header || !toggle) return;

    toggle.addEventListener('click', function () {
      const isOpen = header.classList.toggle('is-open');
      toggle.setAttribute('aria-expanded', isOpen ? 'true' : 'false');
    });

    mobileLinks.forEach(link => {
      link.addEventListener('click', function () {
        header.classList.remove('is-open');
        toggle.setAttribute('aria-expanded', 'false');
      });
    });

    window.addEventListener('resize', function () {
      if (window.innerWidth >= 990) {
        header.classList.remove('is-open');
        toggle.setAttribute('aria-expanded', 'false');
      }
    });
  });
</script>


@media screen and (max-width: 749px) {
  .ns-hero-slide__title {
    font-size: 20px !important;
    line-height: 1.08 !important;
  }

  .ns-hero-slide__desc {
    font-size: 11px !important;
    line-height: 1.4 !important;
  }

  .ns-hero-slide__eyebrow {
    font-size: 9px !important;
  }

  .ns-hero-slide__btn {
    font-size: 10px !important;
    min-height: 36px !important;
    padding: 0 12px !important;
  }
}

/* =========================
   COLLECTION SECTION - MOBILE FONT FIX
   ========================= */
@media screen and (max-width: 749px) {

  .card__heading {
    font-size: 13px !important;
    font-weight: 600;
  }

  .card__information p {
    font-size: 10px !important;
  }

  .card__information {
    padding: 6px 4px !important;
  }
}



/* =========================
   GLOBAL SPACING REDUCTION
========================= */

/* reduce section spacing */
.ns-spotlight {
  padding: 48px 0 !important;
}

.ns-spotlight + .ns-spotlight {
  padding-top: 8px !important;
}

/* reduce gap between text + image */
.ns-spotlight__grid,
.ns-spotlight__grid--reverse {
  gap: 20px !important;
}

/* tighten text spacing */
.ns-spotlight__text h2 {
  margin-bottom: 10px !important;
}

.ns-spotlight__text p {
  margin-bottom: 14px !important;
}

/* reduce image spacing */
.ns-spotlight__media {
  margin-top: 0 !important;
}

/* reduce spacing before Use Cases */
.ns-spotlight:last-of-type {
  padding-bottom: 40px !important;
}

@media screen and (max-width: 749px) {

  .ns-spotlight {
    padding: 28px 0 !important;
  }

  .ns-spotlight + .ns-spotlight {
    padding-top: 4px !important;
  }

  .ns-spotlight__grid,
  .ns-spotlight__grid--reverse {
    gap: 2px !important;
  }

  .ns-spotlight__text h2 {
    margin-bottom: 6px !important;
  }

  .ns-spotlight__text p {
    margin-bottom: 10px !important;
  }

  .ns-spotlight__media img {
    border-radius: 14px;
  }

  /* tighter space before slider */
  .ns-spotlight:last-of-type {
    padding-bottom: 28px !important;
  }
}

/* =========================
   FIX HUGE GAP (REAL FIX)
========================= */

/* remove vertical whitespace between spotlight sections */
.ns-spotlight {
  padding: 24px 0 !important;
  margin: 0 !important;
}

/* remove extra stacking space */
.ns-spotlight + .ns-spotlight {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* kill grid gap (this is a BIG cause) */
.ns-spotlight__grid,
.ns-spotlight__grid--reverse {
  gap: 8px !important;
}

/* remove text spacing */
.ns-spotlight__text {
  margin: 0 !important;
  padding: 0 !important;
}

.ns-spotlight__text h2 {
  margin-bottom: 6px !important;
}

.ns-spotlight__text p {
  margin-bottom: 8px !important;
}

/* REMOVE hidden spacing under image */
.ns-spotlight__media {
  margin: 0 !important;
  padding: 0 !important;
  line-height: 0; /* 🔥 fixes image gap */
}

/* control image height (THIS fixes the big blank area) */
.ns-spotlight__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3; /* 🔥 key fix */
  object-fit: cover;
}

/* tighten space before Use Cases */
.ns-spotlight:last-of-type {
  padding-bottom: 16px !important;
}

@media screen and (max-width: 749px) {

  .ns-spotlight {
    padding: 18px 0 !important;
  }

  .ns-spotlight__grid,
  .ns-spotlight__grid--reverse {
    gap: 6px !important;
  }

  .ns-spotlight__text h2 {
    margin-bottom: 4px !important;
  }

  .ns-spotlight__text p {
    margin-bottom: 6px !important;
  }

  .ns-spotlight:last-of-type {
    padding-bottom: 12px !important;
  }
}

/* =========================
   ULTRA PREMIUM COMPACT
   Spotlight + Use Cases
========================= */

/* ---- Spotlight sections ---- */
.ns-spotlight {
  padding: 16px 0 !important;
  margin: 0 !important;
}

.ns-spotlight + .ns-spotlight {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

.ns-spotlight__grid,
.ns-spotlight__grid--reverse {
  display: grid;
  grid-template-columns: 1fr !important;
  gap: 6px !important;
  align-items: start !important;
}

.ns-spotlight__text,
.ns-spotlight__media {
  margin: 0 !important;
  padding: 0 !important;
}

.ns-spotlight__text {
  max-width: 100% !important;
}

.ns-eyebrow {
  margin-bottom: 4px !important;
  font-size: 8px !important;
  letter-spacing: 1.1px !important;
  line-height: 1 !important;
}

.ns-spotlight__text h2 {
  margin: 0 0 4px !important;
  font-size: 22px !important;
  line-height: 1.02 !important;
  letter-spacing: -0.04em !important;
}

.ns-spotlight__text p {
  margin: 0 0 8px !important;
  font-size: 11px !important;
  line-height: 1.38 !important;
  max-width: 28ch !important;
}

.ns-btn--dark {
  min-height: 32px !important;
  padding: 0 11px !important;
  font-size: 9.5px !important;
  line-height: 1 !important;
  border-radius: 999px !important;
  margin: 0 !important;
}

.ns-spotlight__media {
  line-height: 0 !important;
}

.ns-spotlight__media img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 4 / 3 !important;
  object-fit: cover !important;
  border-radius: 14px !important;
  margin: 0 !important;
}

/* remove extra gap before Use Cases */
.ns-spotlight:last-of-type {
  padding-bottom: 10px !important;
  margin-bottom: 0 !important;
}

/* ---- Use Cases section ---- */
.ns-moment-slider {
  padding-top: 10px !important;
  padding-bottom: 20px !important;
  margin: 0 !important;
}

.ns-moment-slider .ns-wrap {
  margin: 0 !important;
  padding-top: 0 !important;
}

.ns-section-head {
  margin: 0 0 10px !important;
  padding: 0 !important;
}

.ns-section-head .ns-eyebrow {
  margin-bottom: 4px !important;
  font-size: 8px !important;
  letter-spacing: 1.1px !important;
}

.ns-section-head h2 {
  margin: 0 !important;
  font-size: 22px !important;
  line-height: 1.04 !important;
  letter-spacing: -0.04em !important;
}

.ns-carousel {
  margin-top: 8px !important;
}

.ns-carousel__viewport,
.ns-carousel__track,
.ns-slide {
  margin: 0 !important;
}

.ns-slide {
  border-radius: 14px !important;
}

/* ---- Desktop keeps premium but tighter ---- */
@media screen and (min-width: 750px) {
  .ns-spotlight {
    padding: 30px 0 !important;
  }

  .ns-spotlight__grid,
  .ns-spotlight__grid--reverse {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr) !important;
    gap: 16px !important;
    align-items: center !important;
  }

  .ns-eyebrow {
    font-size: 10px !important;
    margin-bottom: 6px !important;
  }

  .ns-spotlight__text h2 {
    font-size: 34px !important;
    margin-bottom: 8px !important;
  }

  .ns-spotlight__text p {
    font-size: 13px !important;
    margin-bottom: 12px !important;
    max-width: 32ch !important;
  }

  .ns-btn--dark {
    min-height: 36px !important;
    padding: 0 14px !important;
    font-size: 11px !important;
  }

  .ns-spotlight__media img {
    border-radius: 18px !important;
  }

  .ns-spotlight:last-of-type {
    padding-bottom: 20px !important;
  }

  .ns-moment-slider {
    padding-top: 16px !important;
    padding-bottom: 34px !important;
  }

  .ns-section-head {
    margin-bottom: 12px !important;
  }

  .ns-section-head h2 {
    font-size: 34px !important;
  }
}

/* =========================
   SPOTLIGHT MOBILE GAP KILLER
========================= */
@media screen and (max-width: 749px) {
  .ns-spotlight,
  .ns-spotlight--glass,
  .ns-spotlight--core,
  .ns-spotlight--link {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
    margin: 0 !important;
    min-height: auto !important;
  }

  .ns-spotlight + .ns-spotlight {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  .ns-spotlight__grid,
  .ns-spotlight__grid--reverse {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    align-items: start !important;
  }

  /* force text first, image second on mobile */
  .ns-spotlight__text {
    order: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
    max-width: 100% !important;
  }

  .ns-spotlight__media {
    order: 2 !important;
    margin: 0 !important;
    padding: 0 !important;
    min-height: 0 !important;
    height: auto !important;
    line-height: 0 !important;
  }

  .ns-spotlight__media img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: auto !important;
    object-fit: cover !important;
    margin: 0 !important;
  }

  .ns-eyebrow {
    margin-bottom: 4px !important;
  }

  .ns-spotlight__text h2 {
    margin: 0 0 6px !important;
  }

  .ns-spotlight__text p {
    margin: 0 0 8px !important;
  }

  .ns-btn--dark {
    margin: 0 !important;
  }

  .ns-spotlight:last-of-type {
    padding-bottom: 12px !important;
  }

  .ns-moment-slider {
    padding-top: 12px !important;
    margin-top: 0 !important;
  }
}

/* =========================
   SPOTLIGHT MOBILE FIX (REAL FIX)
========================= */
@media screen and (max-width: 749px) {

  /* stack layout */
  .ns-spotlight__grid,
  .ns-spotlight__grid--reverse {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  /* remove HUGE gap cause */
  .ns-spotlight__media {
    min-height: 0 !important;   /* 🔥 MAIN FIX */
    height: auto !important;
    border-radius: 16px !important;
  }

  /* control image size */
  .ns-spotlight__media img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;  /* keeps clean ratio */
    object-fit: cover;
  }

  /* tighten text */
  .ns-spotlight__text h2 {
    margin-bottom: 8px !important;
    font-size: 24px !important;
    line-height: 1.05 !important;
  }

  .ns-spotlight__text p {
    margin-bottom: 12px !important;
    font-size: 12px !important;
    line-height: 1.5 !important;
  }

  /* reduce section spacing */
  .ns-spotlight {
    padding: 24px 0 !important;
  }

  /* remove extra spacing between sections */
  .ns-spotlight + .ns-spotlight {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  /* tighten button */
  .ns-btn--dark {
    font-size: 10px !important;
    padding: 6px 12px !important;
    min-height: 34px !important;
  }
}

/* =========================
   FORCE SAME IMAGE RATIO (MOBILE)
========================= */
@media screen and (max-width: 749px) {

  .ns-spotlight__media {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;   /* 🔥 change this if needed */
    overflow: hidden;
    border-radius: 16px;
  }

  .ns-spotlight__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;     /* 🔥 crops nicely */
  }

}

/* =========================
   SPOTLIGHT TYPOGRAPHY FIX
   Match site style (clean + tighter)
========================= */

/* Heading */
.ns-spotlight__text h2 {
  margin: 0 0 10px !important;
  font-size: clamp(28px, 3vw, 42px) !important; /* 🔥 reduced */
  line-height: 1.02 !important;
  letter-spacing: -0.04em !important;
}

/* Paragraph */
.ns-spotlight__text p {
  margin: 0 0 14px !important;
  font-size: 15px !important;
  line-height: 1.6 !important;
  max-width: 34ch !important;
  opacity: 0.85;
}

/* Eyebrow */
.ns-eyebrow {
  margin-bottom: 8px !important;
  font-size: 11px !important;
  letter-spacing: 1.4px !important;
}

/* tighten layout */
.ns-spotlight__grid {
  gap: 20px !important;
}

/* =========================
   FULL WIDTH SYSTEM
========================= */

/* remove container limit globally */
.ns-wrap {
  max-width: 100% !important;
  padding-left: 40px !important;
  padding-right: 40px !important;
}

/* remove Shopify/Dawn constraints if present */
.page-width,
.page-width--narrow {
  max-width: 100% !important;
  padding-left: 40px !important;
  padding-right: 40px !important;
}

/* =========================
   SPOTLIGHT CENTERED
========================= */

.ns-spotlight .ns-wrap {
  max-width: 1200px !important;  /* 👈 control width */
  margin: 0 auto !important;
}

/* =========================
   FULL BLEED SECTIONS
========================= */

.ns-moment-slider .ns-wrap,
.ns-featured-collections .ns-wrap,
.ns-confidence .ns-wrap {
  max-width: 100% !important;
  padding-left: 40px !important;
  padding-right: 40px !important;
}

@media screen and (max-width: 749px) {

  .ns-wrap,
  .page-width {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .ns-spotlight .ns-wrap {
    max-width: 100% !important; /* full width on mobile */
  }

}

/* =========================
   APPLE LAYOUT SYSTEM
   Full-bleed + centered spotlight
========================= */

/* ---------------------------------
   GLOBAL WIDTH SYSTEM
--------------------------------- */
:root {
  --ns-page-pad-desktop: 40px;
  --ns-page-pad-mobile: 16px;
  --ns-max-centered: 1200px;
  --ns-max-copy: 520px;
}

/* default containers become full-width by default */
.ns-wrap,
.page-width,
.page-width--narrow,
.shopify-section .page-width {
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: var(--ns-page-pad-desktop) !important;
  padding-right: var(--ns-page-pad-desktop) !important;
}

/* ---------------------------------
   FULL-BLEED SECTIONS
--------------------------------- */
.ns-featured-collections,
.ns-moment-slider,
.ns-confidence,
.ns-hero,
.ns-video,
.ns-trust-bar,
.ns-reviews,
.ns-lifestyle,
.ns-comparison,
.ns-use-cases,
.ns-product-grid {
  width: 100%;
}

.ns-featured-collections .ns-wrap,
.ns-moment-slider .ns-wrap,
.ns-confidence .ns-wrap,
.ns-hero .ns-wrap,
.ns-video .ns-wrap,
.ns-trust-bar .ns-wrap,
.ns-reviews .ns-wrap,
.ns-lifestyle .ns-wrap,
.ns-comparison .ns-wrap,
.ns-use-cases .ns-wrap,
.ns-product-grid .ns-wrap {
  max-width: 100% !important;
  padding-left: var(--ns-page-pad-desktop) !important;
  padding-right: var(--ns-page-pad-desktop) !important;
}

/* ---------------------------------
   SPOTLIGHT = CENTERED FEATURE BAND
--------------------------------- */
.ns-spotlight {
  width: 100%;
  background: #fff;
}

.ns-spotlight .ns-wrap {
  max-width: calc(var(--ns-max-centered) + (var(--ns-page-pad-desktop) * 2)) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: var(--ns-page-pad-desktop) !important;
  padding-right: var(--ns-page-pad-desktop) !important;
}

.ns-spotlight__grid,
.ns-spotlight__grid--reverse {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 24px;
}

.ns-spotlight__text {
  max-width: var(--ns-max-copy);
}

.ns-spotlight__media {
  width: 100%;
  min-height: 0 !important;
  height: auto !important;
}

.ns-spotlight__media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 22px;
}

/* ---------------------------------
   CLEAN APPLE SPACING RHYTHM
--------------------------------- */
.ns-featured-collections,
.ns-confidence,
.ns-spotlight,
.ns-moment-slider {
  padding-top: 48px;
  padding-bottom: 48px;
}

.ns-section-head {
  margin: 0 0 18px !important;
}

.ns-section-head .ns-eyebrow,
.ns-eyebrow {
  margin-bottom: 8px !important;
  line-height: 1;
}

.ns-spotlight__text h2 {
  margin: 0 0 10px !important;
  font-size: clamp(30px, 3vw, 44px) !important;
  line-height: 1.02 !important;
  letter-spacing: -0.04em !important;
}

.ns-spotlight__text p {
  margin: 0 0 14px !important;
  max-width: 34ch !important;
  font-size: 15px !important;
  line-height: 1.6 !important;
}

/* ---------------------------------
   BUTTON SCALE CONSISTENCY
--------------------------------- */
.ns-btn--dark,
.ns-featured-card__button,
.ns-slide__btn {
  border-radius: 999px;
}

/* ---------------------------------
   FEATURED COLLECTIONS
   stay full width
--------------------------------- */
.ns-featured-grid {
  width: 100%;
}

/* ---------------------------------
   USE CASES / CAROUSEL
   stay full width
--------------------------------- */
.ns-carousel,
.ns-carousel__viewport,
.ns-carousel__track {
  width: 100%;
}

/* ---------------------------------
   CONFIDENCE SECTION
--------------------------------- */
.ns-confidence-grid {
  width: 100%;
}

/* ---------------------------------
   DESKTOP LARGE
--------------------------------- */
@media screen and (min-width: 1200px) {
  .ns-featured-collections,
  .ns-confidence,
  .ns-spotlight,
  .ns-moment-slider {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .ns-spotlight__grid,
  .ns-spotlight__grid--reverse {
    gap: 28px;
  }
}

/* ---------------------------------
   TABLET
--------------------------------- */
@media screen and (max-width: 989px) {
  :root {
    --ns-page-pad-desktop: 24px;
    --ns-max-centered: 1100px;
  }

  .ns-featured-collections,
  .ns-confidence,
  .ns-spotlight,
  .ns-moment-slider {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .ns-spotlight__grid,
  .ns-spotlight__grid--reverse {
    gap: 16px;
  }

  .ns-spotlight__text h2 {
    font-size: clamp(26px, 4vw, 34px) !important;
  }

  .ns-spotlight__text p {
    font-size: 14px !important;
  }
}

/* ---------------------------------
   MOBILE
--------------------------------- */
@media screen and (max-width: 749px) {
  .ns-wrap,
  .page-width,
  .page-width--narrow,
  .shopify-section .page-width {
    padding-left: var(--ns-page-pad-mobile) !important;
    padding-right: var(--ns-page-pad-mobile) !important;
  }

  .ns-featured-collections .ns-wrap,
  .ns-moment-slider .ns-wrap,
  .ns-confidence .ns-wrap,
  .ns-spotlight .ns-wrap {
    padding-left: var(--ns-page-pad-mobile) !important;
    padding-right: var(--ns-page-pad-mobile) !important;
  }

  .ns-featured-collections,
  .ns-confidence,
  .ns-spotlight,
  .ns-moment-slider {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }

  .ns-spotlight .ns-wrap {
    max-width: 100% !important;
  }

  .ns-spotlight__grid,
  .ns-spotlight__grid--reverse {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  /* keep spotlight text first on mobile */
  .ns-spotlight__text {
    order: 1 !important;
    max-width: 100% !important;
  }

  .ns-spotlight__media {
    order: 2 !important;
  }

  .ns-spotlight__text h2 {
    font-size: 24px !important;
    margin-bottom: 6px !important;
  }

  .ns-spotlight__text p {
    font-size: 12px !important;
    margin-bottom: 10px !important;
    max-width: 40ch !important;
  }

  .ns-spotlight__media img {
    border-radius: 16px !important;
    aspect-ratio: 4 / 3;
  }

  .ns-section-head {
    margin-bottom: 12px !important;
  }
}

/* =========================
   CONFIDENCE - REMOVE EXTRA SPACE
========================= */

/* reduce section padding */
.ns-confidence {
  padding-top: 20px !important;
  padding-bottom: 24px !important;
}

/* tighten header spacing */
.ns-confidence .ns-section-head {
  margin-bottom: 12px !important;
}

/* eyebrow spacing */
.ns-confidence .ns-eyebrow {
  margin-bottom: 4px !important;
}

/* title spacing */
.ns-confidence h2 {
  margin-bottom: 10px !important;
}

/* remove extra space before next section */
.ns-confidence + * {
  margin-top: 0 !important;
}

@media screen and (max-width: 749px) {

  .ns-confidence {
    padding-top: 1px !important;
    padding-bottom: 1px !important;
  }

  .ns-confidence .ns-section-head {
    margin-bottom: 10px !important;
  }

  .ns-confidence h2 {
    margin-bottom: 8px !important;
  }

}

/* =========================
   REVIEWS - MOBILE TYPOGRAPHY FIX
========================= */
@media (max-width: 768px){

  /* section title */
  .ns-section-head h2,
  .ns-spotlight__text h2{
    font-size: 24px !important;   /* ↓ from 36px */
    line-height: 1.05 !important;
  }

  /* review card */
  .ns-review-card__body{
    padding: 14px !important;   /* ↓ from 24px */
  }

  /* product pill */
  .ns-review-card__product{
    font-size: 10px !important;
    min-height: 24px !important;
    padding: 0 10px !important;
    margin-bottom: 8px !important;
  }

  /* title */
  .ns-review-card h3{
    font-size: 16px !important;   /* ↓ from 24px */
    margin-bottom: 6px !important;
    line-height: 1.2;
  }

  /* description */
  .ns-review-card p{
    font-size: 12px !important;
    line-height: 1.5 !important;
    margin-bottom: 8px !important;
  }

  /* name */
  .ns-review-card__name{
    font-size: 11px !important;
  }

}

@media (max-width: 768px){

  .ns-review-grid{
    gap: 12px !important;
  }

  .ns-review-card{
    border-radius: 18px !important;
  }

}

/* =========================
   REMOVE GLASS BOX (APPLE STYLE)
========================= */

.ns-video-hero__content {
  pointer-events: auto;
  max-width: 520px;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;

  /* ❌ remove box */
  background: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: none !important;
  box-shadow: none !important;

  /* tighter spacing */
  padding: 0 !important;
}

.ns-video-hero__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(0,0,0,0.65) 0%,
      rgba(0,0,0,0.35) 30%,
      rgba(0,0,0,0.12) 55%,
      rgba(0,0,0,0.00) 75%
    ),
    linear-gradient(
      to right,
      rgba(0,0,0,0.35) 0%,
      rgba(0,0,0,0.15) 25%,
      rgba(0,0,0,0.00) 55%
    );
  z-index: 1;
}

.ns-video-hero__title {
  text-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.ns-video-hero__sub {
  text-shadow: 0 6px 20px rgba(0,0,0,0.25);
}
@media screen and (max-width: 749px) {

  .ns-video-hero__content {
    max-width: 90%;
    gap: 6px;
  }

}


/* =========================
   NS HEADER
========================= */
.ns-header {
  position: relative;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid rgba(17, 24, 39, 0.06);
  z-index: 100;
}

.ns-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
  padding: 0 24px;
}

.ns-header__logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.ns-header__logo img {
  display: block;
  height: 28px;
  width: auto;
}

.ns-header__desktop {
  display: flex;
  align-items: center;
  gap: 24px;
}

.ns-header__desktop a {
  text-decoration: none;
  color: #111827;
  font-size: 14px;
  line-height: 1;
}

.ns-header__toggle {
  display: none;
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.ns-header__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #111827;
  transition: transform .25s ease, opacity .25s ease;
}

.ns-header__mobile {
  display: none;
}

.ns-header__mobile-inner {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ns-header__mobile-inner a {
  display: block;
  padding: 14px 0;
  text-decoration: none;
  color: #111827;
  font-size: 14px;
  border-bottom: 1px solid rgba(17, 24, 39, 0.06);
}

/* =========================
   MOBILE
========================= */
@media screen and (max-width: 989px) {
  .ns-header__inner {
    min-height: 60px;
    padding: 0 16px;
  }

  .ns-header__logo img {
    height: 22px;
  }

  .ns-header__desktop {
    display: none;
  }

  .ns-header__toggle {
    display: inline-flex;
  }

  .ns-header__mobile {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid rgba(17, 24, 39, 0.06);
    border-bottom: 1px solid rgba(17, 24, 39, 0.06);
    padding: 0 16px;
    display: none;
  }

  .ns-header.is-open .ns-header__mobile {
    display: block;
  }

  .ns-header.is-open .ns-header__toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .ns-header.is-open .ns-header__toggle span:nth-child(2) {
    opacity: 0;
  }

  .ns-header.is-open .ns-header__toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

<script>
document.addEventListener('DOMContentLoaded', function () {
  const header = document.querySelector('.ns-header');
  const toggle = document.querySelector('.ns-header__toggle');

  if (!header || !toggle) return;

  toggle.addEventListener('click', function () {
    const isOpen = header.classList.toggle('is-open');
    toggle.setAttribute('aria-expanded', isOpen ? 'true' : 'false');
  });

  const mobileLinks = header.querySelectorAll('.ns-header__mobile a');
  mobileLinks.forEach(link => {
    link.addEventListener('click', function () {
      header.classList.remove('is-open');
      toggle.setAttribute('aria-expanded', 'false');
    });
  });

  window.addEventListener('resize', function () {
    if (window.innerWidth >= 990) {
      header.classList.remove('is-open');
      toggle.setAttribute('aria-expanded', 'false');
    }
  });
});
</script>

/* =========================
   LIFESTYLE SECTION
========================= */
.lifestyle {
  width: 100%;
}

.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.lifestyle-item {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
}

.lifestyle-item img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.lifestyle-item__content {
  padding: 18px;
}

.lifestyle-item__label {
  margin-bottom: 8px;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: #6b7280;
}

.lifestyle-item__title {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.lifestyle-item__desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #6b7280;
}

/* =========================
   TABLET
========================= */
@media screen and (max-width: 989px) {
  .lifestyle-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .lifestyle-item {
    border-radius: 20px;
  }

  .lifestyle-item__content {
    padding: 14px;
  }

  .lifestyle-item__title {
    font-size: 18px;
  }

  .lifestyle-item__desc {
    font-size: 13px;
    line-height: 1.55;
  }
}

/* =========================
   MOBILE
========================= */
@media screen and (max-width: 749px) {
  .lifestyle {
    padding: 0 !important;
  }

  .lifestyle-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .lifestyle-item {
    border-radius: 16px;
  }

  .lifestyle-item img {
    aspect-ratio: 4 / 3;
  }

  .lifestyle-item__content {
    padding: 12px;
  }

  .lifestyle-item__label {
    margin-bottom: 6px;
    font-size: 8px;
    letter-spacing: 1.1px;
  }

  .lifestyle-item__title {
    margin: 0 0 6px;
    font-size: 15px;
    line-height: 1.12;
  }

  .lifestyle-item__desc {
    font-size: 11px;
    line-height: 1.45;
  }
}

/* =========================
   LIFESTYLE SECTION
========================= */
.lifestyle {
  width: 100%;
}

.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.lifestyle-item {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
}

.lifestyle-item img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.lifestyle-item__content {
  padding: 18px;
}

.lifestyle-item__label {
  margin-bottom: 8px;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: #6b7280;
}

.lifestyle-item__title {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.lifestyle-item__desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #6b7280;
}

/* =========================
   TABLET
========================= */
@media screen and (max-width: 989px) {
  .lifestyle-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .lifestyle-item {
    border-radius: 20px;
  }

  .lifestyle-item__content {
    padding: 14px;
  }

  .lifestyle-item__title {
    font-size: 18px;
  }

  .lifestyle-item__desc {
    font-size: 13px;
    line-height: 1.55;
  }
}

/* =========================
   MOBILE
========================= */
@media screen and (max-width: 749px) {
  .lifestyle {
    padding: 0 !important;
  }

  .lifestyle-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .lifestyle-item {
    border-radius: 16px;
  }

  .lifestyle-item img {
    aspect-ratio: 4 / 3;
  }

  .lifestyle-item__content {
    padding: 12px;
  }

  .lifestyle-item__label {
    margin-bottom: 6px;
    font-size: 8px;
    letter-spacing: 1.1px;
  }

  .lifestyle-item__title {
    margin: 0 0 6px;
    font-size: 15px;
    line-height: 1.12;
  }

  .lifestyle-item__desc {
    font-size: 11px;
    line-height: 1.45;
  }
}

/* =========================================
NANOSECOND FOOTER — COMPACT / TIGHT
========================================= */

.ns-footer{
background:#0b0b0c;
color:rgba(255,255,255,.86);
border-top:1px solid rgba(255,255,255,.06);
}

.ns-footer__inner{
max-width:1280px;
margin:0 auto;
padding:26px 30px 10px; /* much tighter */
}

/* TOP */
.ns-footer__top{
display:grid;
grid-template-columns:1.35fr 1fr 1fr 1fr;
gap:20px;
align-items:start;
}

.ns-footer__brand{
max-width:280px;
}

.ns-footer__logo{
display:inline-flex;
align-items:center;
text-decoration:none;
margin-bottom:8px;
}

.ns-footer__logo img{
display:block;
height:34px; /* bigger logo */
width:auto;
filter:brightness(0) invert(1);
opacity:.98;
}

.ns-footer__brand-desc{
margin:0;
font-size:11px;
line-height:1.45;
color:rgba(255,255,255,.46);
max-width:28ch;
}

/* columns */
.ns-footer__title{
margin:0 0 8px;
font-size:9px;
line-height:1;
font-weight:800;
letter-spacing:.14em;
text-transform:uppercase;
color:rgba(255,255,255,.5);
}

.ns-footer__links{
list-style:none;
padding:0;
margin:0;
}

.ns-footer__links li + li{
margin-top:5px; /* tighter */
}

.ns-footer__link{
text-decoration:none;
color:rgba(255,255,255,.72);
font-size:12px;
line-height:1.25;
font-weight:500;
transition:.2s;
}

.ns-footer__link:hover{
color:#fff;
}

/* bottom */
.ns-footer__bottom{
margin-top:16px;
padding-top:10px;
border-top:1px solid rgba(255,255,255,.06);
display:flex;
align-items:center;
justify-content:space-between;
gap:12px;
}

.ns-footer__copy{
margin:0;
font-size:10px;
line-height:1.3;
color:rgba(255,255,255,.34);
}

.ns-footer__legal{
display:flex;
align-items:center;
gap:12px;
flex-wrap:wrap;
}

.ns-footer__legal-link{
text-decoration:none;
font-size:10px;
line-height:1.3;
color:rgba(255,255,255,.34);
transition:.2s;
}

.ns-footer__legal-link:hover{
color:rgba(255,255,255,.75);
}

/* tablet */
@media(max-width:989px){

.ns-footer__inner{
padding:20px 20px 8px;
}

.ns-footer__top{
grid-template-columns:1fr 1fr;
gap:18px 16px;
}

.ns-footer__brand{
grid-column:1/-1;
max-width:none;
}

}

/* mobile */
@media(max-width:749px){

.ns-footer__inner{
padding:16px 14px 8px;
}

.ns-footer__top{
grid-template-columns:1fr;
gap:14px; /* very tight */
}

.ns-footer__logo{
margin-bottom:6px;
}

.ns-footer__logo img{
height:30px;
}

.ns-footer__brand-desc{
font-size:10px;
line-height:1.35;
}

.ns-footer__title{
margin-bottom:6px;
font-size:8px;
}

.ns-footer__links li + li{
margin-top:4px;
}

.ns-footer__link{
font-size:11px;
line-height:1.2;
}

.ns-footer__bottom{
margin-top:12px;
padding-top:8px;
flex-direction:column;
align-items:flex-start;
gap:6px;
}

.ns-footer__copy,
.ns-footer__legal-link{
font-size:9px;
}

.ns-footer__legal{
gap:10px;
}

}

/* =========================================
   HERO SLIDER — APPLE MOTION + PER-SLIDE TEXT POSITION
========================================= */

/* base slide */
.ns-hero-slide {
  position: relative;
  overflow: hidden;
}

/* make sure media sits behind content */
.ns-hero-slide__media,
.ns-hero-slide__media picture,
.ns-hero-slide__media img {
  display: block;
  width: 100%;
  height: 100%;
}

.ns-hero-slide__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ns-hero-slide__media img {
  object-fit: cover;
  object-position: center center;
}

/* overlay layer */
.ns-hero-slide__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      to top,
      rgba(0,0,0,0.52) 0%,
      rgba(0,0,0,0.24) 28%,
      rgba(0,0,0,0.10) 48%,
      rgba(0,0,0,0.00) 72%
    ),
    linear-gradient(
      to right,
      rgba(0,0,0,0.24) 0%,
      rgba(0,0,0,0.10) 24%,
      rgba(0,0,0,0.00) 52%
    );
}

/* subtle Apple light sweep */
.ns-hero-slide__glow {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.ns-hero-slide__glow::before {
  content: "";
  position: absolute;
  top: -10%;
  bottom: -10%;
  left: -25%;
  width: 38%;
  background: linear-gradient(
    115deg,
    rgba(255,255,255,0.00) 0%,
    rgba(255,255,255,0.00) 32%,
    rgba(255,255,255,0.04) 44%,
    rgba(255,255,255,0.12) 50%,
    rgba(255,255,255,0.04) 56%,
    rgba(255,255,255,0.00) 68%,
    rgba(255,255,255,0.00) 100%
  );
  transform: translateX(-130%) skewX(-16deg);
  opacity: 0.75;
  mix-blend-mode: screen;
  animation: nsHeroSweep 8.5s ease-in-out infinite;
}

@keyframes nsHeroSweep {
  0% {
    transform: translateX(-130%) skewX(-16deg);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    transform: translateX(420%) skewX(-16deg);
    opacity: 0;
  }
}

/* content layer */
.ns-hero-slide__inner {
  position: relative;
  z-index: 3;
  min-height: inherit;
  display: flex;
  align-items: flex-end;
  padding: 40px;
}

.ns-hero-slide__content {
  max-width: 520px;
}

/* optional subtle entrance on active slide */
.ns-hero-slide__content {
  transform: translateY(10px);
  opacity: 0.98;
  transition: transform .55s ease, opacity .55s ease;
}

.ns-hero-slide.is-active .ns-hero-slide__content {
  transform: translateY(0);
  opacity: 1;
}

/* ---------------------------------
   DESKTOP — PER SLIDE POSITIONING
--------------------------------- */

/* NanoGlass — left bottom */
.ns-hero-slide--glass .ns-hero-slide__inner {
  justify-content: flex-start;
  align-items: flex-end;
}

.ns-hero-slide--glass .ns-hero-slide__content {
  max-width: 520px;
}

/* NanoCore — slightly higher left */
.ns-hero-slide--core .ns-hero-slide__inner {
  justify-content: flex-start;
  align-items: center;
}

.ns-hero-slide--core .ns-hero-slide__content {
  max-width: 500px;
  margin-top: 40px;
}

/* NanoLink — left bottom, slightly tighter */
.ns-hero-slide--link .ns-hero-slide__inner {
  justify-content: flex-start;
  align-items: flex-end;
}

.ns-hero-slide--link .ns-hero-slide__content {
  max-width: 500px;
}

/* tweak image focus per slide if needed */
.ns-hero-slide--glass .ns-hero-slide__media img {
  object-position: center center;
}

.ns-hero-slide--core .ns-hero-slide__media img {
  object-position: center center;
}

.ns-hero-slide--link .ns-hero-slide__media img {
  object-position: center center;
}

/* ---------------------------------
   MOBILE — tighter + consistent
--------------------------------- */
@media screen and (max-width: 768px) {
  .ns-hero-slide__inner {
    padding: 16px 14px;
    align-items: flex-end !important;
    justify-content: flex-start !important;
  }

  .ns-hero-slide__content {
    max-width: 86%;
    margin-top: 0 !important;
  }

  /* stronger fade for readability on mobile */
  .ns-hero-slide__overlay {
    background:
      linear-gradient(
        to top,
        rgba(0,0,0,0.68) 0%,
        rgba(0,0,0,0.34) 34%,
        rgba(0,0,0,0.12) 56%,
        rgba(0,0,0,0.00) 78%
      ),
      linear-gradient(
        to right,
        rgba(0,0,0,0.16) 0%,
        rgba(0,0,0,0.06) 22%,
        rgba(0,0,0,0.00) 48%
      );
  }

  /* smaller, softer sweep on mobile */
  .ns-hero-slide__glow::before {
    width: 44%;
    opacity: 0.45;
    animation-duration: 9.5s;
  }

  /* mobile image focus per slide */
  .ns-hero-slide--glass .ns-hero-slide__media img {
    object-position: center center;
  }

  .ns-hero-slide--core .ns-hero-slide__media img {
    object-position: center center;
  }

  .ns-hero-slide--link .ns-hero-slide__media img {
    object-position: center center;
  }
}

/* ns-core product 2 */
.ns-core-x {
  --core: #02C39A;
  --core-dark: #040707;
  --core-dark-2: #07110f;
  --core-dark-3: #0b1916;
  --core-dark-4: #0f211d;
  --core-text: #f8fbfb;
  --core-muted: rgba(255, 255, 255, 0.68);
  --core-muted-2: rgba(255, 255, 255, 0.5);
  --core-line: rgba(2, 195, 154, 0.14);
  --core-line-strong: rgba(2, 195, 154, 0.28);
  --core-glow: 0 0 32px rgba(2, 195, 154, 0.2);
  --core-shadow: 0 28px 90px rgba(0, 0, 0, 0.36);
  --core-radius-xl: 36px;
  --core-radius-lg: 30px;
  --core-radius-md: 24px;
  --core-transition: 0.35s cubic-bezier(.22,.61,.36,1);

  background:
    radial-gradient(circle at 10% 0%, rgba(2,195,154,0.10), transparent 24%),
    radial-gradient(circle at 90% 10%, rgba(2,195,154,0.06), transparent 20%),
    linear-gradient(180deg, #040707 0%, #09110f 100%);
  color: var(--core-text);
  font-family: Inter, sans-serif;
  overflow: hidden;
}

.ns-core-x * {
  box-sizing: border-box;
}

.ns-core-x img {
  display: block;
  width: 100%;
}

.ns-core-x__shell {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
}

.ns-core-x__section {
  position: relative;
  padding: 128px 0;
}

.ns-core-x__section--soft {
  background: linear-gradient(180deg, rgba(255,255,255,0.024), rgba(255,255,255,0.012));
}

.ns-core-x__section--panel {
  background:
    radial-gradient(circle at 50% 0%, rgba(2,195,154,0.08), transparent 26%),
    linear-gradient(180deg, rgba(255,255,255,0.015), rgba(255,255,255,0));
}

.ns-core-x__section--reserve {
  background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0.02));
}

.ns-core-x__eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  color: var(--core);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ns-core-x__section-head {
  max-width: 860px;
  margin-bottom: 64px;
}

.ns-core-x__section-head--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.ns-core-x__section-head h2 {
  margin: 0 0 14px;
  font-size: clamp(34px, 4vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  color: #fff;
}

.ns-core-x__section-head p {
  margin: 0;
  color: var(--core-muted);
  font-size: 17px;
  line-height: 1.82;
}

/* major section separation */
#ncx-collection,
#ncx-compare,
#ncx-specs {
  position: relative;
}

#ncx-collection {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.008), rgba(255,255,255,0));
  padding-top: 136px;
  padding-bottom: 150px;
}

#ncx-compare {
  background:
    radial-gradient(circle at 50% 0%, rgba(2,195,154,0.05), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.022), rgba(255,255,255,0.01));
  padding-top: 150px;
  padding-bottom: 150px;
}

#ncx-specs {
  background:
    linear-gradient(180deg, rgba(2,195,154,0.028), rgba(255,255,255,0.008));
  padding-top: 150px;
  padding-bottom: 140px;
}

#ncx-compare::before,
#ncx-specs::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1320px, calc(100% - 48px));
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.12),
    transparent
  );
}

#ncx-specs::before {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(2,195,154,0.18),
    transparent
  );
}

/* SUBNAV */
/* SUBNAV */
.ns-core-x__subnav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(5, 10, 9, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.ns-core-x__subnav-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.ns-core-x__brand {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.03em;
  flex: 0 0 auto;
}

.ns-core-x__brand strong {
  color: var(--core);
}

.ns-core-x__nav {
  display: flex;
  align-items: center;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex: 1 1 auto;
  min-width: 0;
}

.ns-core-x__nav::-webkit-scrollbar {
  display: none;
}

.ns-core-x__nav a {
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color var(--core-transition);
  flex: 0 0 auto;
}

.ns-core-x__nav a:hover {
  color: var(--core);
}

.ns-core-x__subnav-btn {
  text-decoration: none;
  color: #04110d;
  background: var(--core);
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(2,195,154,0.26);
  transition: transform var(--core-transition), box-shadow var(--core-transition), filter var(--core-transition);
  flex: 0 0 auto;
}

.ns-core-x__subnav-btn::after {
  content: "";
  position: absolute;
  top: -120%;
  left: -40%;
  width: 36%;
  height: 300%;
  transform: rotate(20deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.55), transparent);
  transition: transform 0.7s ease, left 0.7s ease;
}

.ns-core-x__subnav-btn:hover {
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 18px 46px rgba(2,195,154,0.30), 0 0 20px rgba(2,195,154,0.18);
  filter: brightness(1.03);
}

.ns-core-x__subnav-btn:hover::after {
  left: 120%;
}

@media (max-width: 989px) {
  .ns-core-x__subnav {
    top: 0;
  }

  .ns-core-x__subnav-inner {
    min-height: auto;
    padding: 12px 0 10px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    align-items: stretch;
  }

  .ns-core-x__brand {
    font-size: 17px;
    line-height: 1;
  }

  .ns-core-x__nav {
    gap: 18px;
    padding-bottom: 2px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .ns-core-x__nav a {
    font-size: 13px;
    scroll-snap-align: start;
    padding: 6px 0;
  }

  .ns-core-x__subnav-btn {
    display: none;
  }
}

/* HERO */
.ns-core-x__hero {
  padding: 50px 0 90px;
  position: relative;
}

.ns-core-x__hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}

.ns-core-x__hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(44px, 6vw, 96px);
  line-height: 0.94;
  letter-spacing: -0.065em;
  color: #fff;
}

.ns-core-x__hero-copy p {
  max-width: 720px;
  margin: 0 0 24px;
  color: var(--core-muted);
  font-size: 18px;
  line-height: 1.88;
}

.ns-core-x__hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.ns-core-x__hero-pills span {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid var(--core-line);
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.88);
  font-size: 13px;
  font-weight: 700;
}

.ns-core-x__hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.ns-core-x__hero-media {
  position: relative;
  min-height: 590px;
  border-radius: var(--core-radius-xl);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(2,195,154,0.08), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: var(--core-shadow);
}

.ns-core-x__hero-media picture,
.ns-core-x__hero-media img {
  width: 100%;
  height: 100%;
}

.ns-core-x__hero-media img {
  object-fit: cover;
}

.ns-core-x__hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 15%, rgba(2,195,154,0.12), transparent 20%),
    linear-gradient(135deg, rgba(255,255,255,0.05), transparent 25%);
  pointer-events: none;
  z-index: 2;
}

@media (max-width: 989px) {
  .ns-core-x__hero {
    padding: 20px 0 44px;
  }

  .ns-core-x__hero-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    align-items: start;
  }

  .ns-core-x__hero-copy {
    order: 1;
  }

  .ns-core-x__hero-media {
    order: 2;
    min-height: 320px;
    border-radius: 24px;
  }

  .ns-core-x__hero-copy h1 {
    margin: 0 0 14px;
    font-size: clamp(34px, 10vw, 52px);
    line-height: 0.98;
    letter-spacing: -0.055em;
    max-width: 10ch;
  }

  .ns-core-x__hero-copy p {
    margin: 0 0 18px;
    font-size: 15px;
    line-height: 1.72;
    max-width: 100%;
  }

  .ns-core-x__hero-pills {
    gap: 8px;
    margin-bottom: 20px;
  }

  .ns-core-x__hero-pills span {
    padding: 8px 11px;
    font-size: 11px;
    line-height: 1;
  }

  .ns-core-x__hero-actions {
    gap: 10px;
  }

  .ns-core-x__hero-actions .ns-core-x__btn {
    flex: 1 1 calc(50% - 5px);
    min-height: 46px;
    padding: 0 14px;
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .ns-core-x__hero {
    padding: 16px 0 38px;
  }

  .ns-core-x__hero-grid {
    gap: 18px;
  }

  .ns-core-x__hero-copy h1 {
    font-size: clamp(30px, 11vw, 42px);
    line-height: 0.98;
    letter-spacing: -0.05em;
  }

  .ns-core-x__hero-copy p {
    font-size: 14px;
    line-height: 1.68;
  }

  .ns-core-x__hero-media {
    min-height: 260px;
    border-radius: 22px;
  }

  .ns-core-x__hero-media picture,
  .ns-core-x__hero-media img {
    width: 100%;
    height: 100%;
  }

  .ns-core-x__hero-media img {
    object-fit: cover;
    object-position: center;
  }

  .ns-core-x__hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .ns-core-x__hero-pills span {
    font-size: 10px;
    padding: 8px 10px;
  }

  .ns-core-x__hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .ns-core-x__hero-actions .ns-core-x__btn {
    width: 100%;
    min-height: 44px;
    font-size: 12px;
    padding: 0 12px;
  }
}

@media (max-width: 480px) {
  .ns-core-x__hero-copy h1 {
    font-size: 32px;
  }

  .ns-core-x__hero-copy p {
    font-size: 13.5px;
  }

  .ns-core-x__hero-media {
    min-height: 220px;
    border-radius: 20px;
  }

  .ns-core-x__hero-actions {
    grid-template-columns: 1fr;
  }

  .ns-core-x__hero-actions .ns-core-x__btn {
    min-height: 44px;
  }
}

/* BUTTONS */
.ns-core-x__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  position: relative;
  overflow: hidden;
  transition:
    transform var(--core-transition),
    box-shadow var(--core-transition),
    border-color var(--core-transition),
    background var(--core-transition),
    color var(--core-transition),
    filter var(--core-transition);
}

.ns-core-x__btn::after {
  content: "";
  position: absolute;
  top: -120%;
  left: -45%;
  width: 28%;
  height: 300%;
  transform: rotate(20deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.58), transparent);
  transition: left 0.8s ease;
}

.ns-core-x__btn:hover {
  transform: translateY(-2px) scale(1.01);
  filter: brightness(1.05);
}

.ns-core-x__btn:hover::after {
  left: 125%;
}

.ns-core-x__btn--solid {
  background: var(--core);
  color: #04110d;
  box-shadow: 0 12px 36px rgba(2,195,154,0.26);
}

.ns-core-x__btn--solid:hover {
  box-shadow: 0 18px 46px rgba(2,195,154,0.32), 0 0 24px rgba(2,195,154,0.20);
}

.ns-core-x__btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid var(--core-line-strong);
}

.ns-core-x__btn--ghost:hover {
  border-color: rgba(2,195,154,0.36);
  box-shadow: 0 0 0 1px rgba(2,195,154,0.16) inset, 0 0 24px rgba(2,195,154,0.10);
}



/* METRICS */
.ns-core-x__metrics {
  padding: 0 0 36px;
}

.ns-core-x__metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.ns-core-x__metric {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.035),
    rgba(255,255,255,0.02)
  );
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
  transition:
    transform 0.35s cubic-bezier(.22,.61,.36,1),
    border-color 0.35s cubic-bezier(.22,.61,.36,1),
    box-shadow 0.35s cubic-bezier(.22,.61,.36,1),
    background 0.35s cubic-bezier(.22,.61,.36,1);
}

.ns-core-x__metric::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(2,195,154,0.16), transparent 34%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.ns-core-x__metric::after {
  content: "";
  position: absolute;
  top: -140%;
  left: -35%;
  width: 24%;
  height: 360%;
  transform: rotate(20deg);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.22),
    transparent
  );
  opacity: 0;
  transition:
    left 0.8s ease,
    opacity 0.35s ease;
  pointer-events: none;
}

.ns-core-x__metric:hover {
  transform: translateY(-6px);
  border-color: rgba(2,195,154,0.24);
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.05),
    rgba(2,195,154,0.035)
  );
  box-shadow:
    0 18px 40px rgba(0,0,0,0.22),
    0 0 24px rgba(2,195,154,0.10);
}

.ns-core-x__metric:hover::before {
  opacity: 1;
}

.ns-core-x__metric:hover::after {
  left: 120%;
  opacity: 1;
}

.ns-core-x__metric strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 20px;
  letter-spacing: -0.03em;
  transition:
    color 0.35s ease,
    transform 0.35s ease,
    text-shadow 0.35s ease;
}

.ns-core-x__metric span {
  color: var(--core-muted);
  font-size: 14px;
  line-height: 1.72;
  transition: color 0.35s ease;
}

.ns-core-x__metric:hover strong {
  color: var(--core);
  transform: translateY(-1px);
  text-shadow: 0 0 16px rgba(2,195,154,0.18);
}

.ns-core-x__metric:hover span {
  color: rgba(255,255,255,0.82);
}

@media (max-width: 989px) {

  .ns-core-x__metrics {
    padding: 0 0 28px;
  }

  .ns-core-x__metrics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .ns-core-x__metric {
    padding: 18px 16px;
    border-radius: 20px;
  }

  .ns-core-x__metric strong {
    font-size: 18px;
    margin-bottom: 6px;
  }

  .ns-core-x__metric span {
    font-size: 13px;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {

  .ns-core-x__metrics-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .ns-core-x__metric {
    padding: 16px;
  }

  .ns-core-x__metric strong {
    font-size: 17px;
  }

  .ns-core-x__metric span {
    font-size: 12.5px;
  }
}

/* STORY */
.ns-core-x__story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

.ns-core-x__story-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(34px, 4vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  color: #fff;
}

.ns-core-x__story-copy p {
  margin: 0 0 16px;
  color: var(--core-muted);
  font-size: 17px;
  line-height: 1.88;
}

.ns-core-x__story-media {
  min-height: 540px;
  border-radius: 34px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: var(--core-shadow);
}

.ns-core-x__story-media picture,
.ns-core-x__story-media img {
  width: 100%;
  height: 100%;
}

.ns-core-x__story-media img {
  object-fit: cover;
}

@media (max-width: 989px) {
  .ns-core-x__story-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: start;
  }

  .ns-core-x__story-copy {
    order: 1;
  }

  .ns-core-x__story-media {
    order: 2;
    min-height: 340px;
    border-radius: 24px;
  }

  .ns-core-x__story-copy h2 {
    margin: 0 0 14px;
    font-size: clamp(30px, 8vw, 44px);
    line-height: 1.02;
    letter-spacing: -0.05em;
  }

  .ns-core-x__story-copy p {
    margin: 0 0 14px;
    font-size: 15px;
    line-height: 1.72;
  }

  .ns-core-x__story-copy .ns-core-x__btn {
    margin-top: 6px;
    min-height: 46px;
    padding: 0 16px;
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .ns-core-x__story-grid {
    gap: 16px;
  }

  .ns-core-x__story-copy h2 {
    font-size: clamp(28px, 9vw, 36px);
    line-height: 1.03;
  }

  .ns-core-x__story-copy p {
    font-size: 14px;
    line-height: 1.68;
  }

  .ns-core-x__story-media {
    min-height: 260px;
    border-radius: 22px;
  }

  .ns-core-x__story-media picture,
  .ns-core-x__story-media img {
    width: 100%;
    height: 100%;
  }

  .ns-core-x__story-media img {
    object-fit: cover;
    object-position: center;
  }

  .ns-core-x__story-copy .ns-core-x__btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .ns-core-x__story-copy h2 {
    font-size: 30px;
  }

  .ns-core-x__story-copy p {
    font-size: 13.5px;
  }

  .ns-core-x__story-media {
    min-height: 220px;
    border-radius: 20px;
  }
}

/* PANEL STACK */

/* =========================
   USE CASES (MATCH SITE STYLE)
   ========================= */

.ns-core-usecases {
  padding: 140px 0;
}

.ns-core-usecases__head {
  max-width: 860px;
  margin: 0 auto 100px;
  text-align: center;
}

/* ROW BASE */
.ns-core-usecases__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 140px;
}

/* alternating */
.ns-core-usecases__row--reverse {
  direction: rtl;
}

.ns-core-usecases__row--reverse > * {
  direction: ltr;
}

/* IMAGE */
.ns-core-usecases__media {
  height: 520px;
  overflow: hidden;
  border-radius: 24px;
}

.ns-core-usecases__media picture,
.ns-core-usecases__media img {
  width: 100%;
  height: 100%;
}

.ns-core-usecases__media img {
  object-fit: cover;
  transition: transform 1s ease;
}

.ns-core-usecases__row:hover img {
  transform: scale(1.04);
}

/* COPY */
.ns-core-usecases__copy {
  max-width: 460px;
}

.ns-core-usecases__copy h3 {
  margin: 0 0 14px;
  font-size: clamp(28px, 3vw, 48px);
  line-height: 1.04;
  letter-spacing: -0.05em;
  color: #fff;
}

.ns-core-usecases__copy p {
  margin: 0;
  color: var(--core-muted);
  font-size: 17px;
  line-height: 1.82;
}

/* Mobile-friendly Use Cases */
@media (max-width:990px){
  .ns-usecases{
    padding:56px 16px !important;
  }

  .ns-usecases__header{
    text-align:left !important;
    padding:0 !important;
    margin:0 0 28px !important;
    background:none !important;
    backdrop-filter:none !important;
  }

  .ns-usecases__header h2{
    font-size:38px !important;
    line-height:1.05 !important;
    color:#fff !important;
  }

  .ns-usecase,
  .ns-usecase--reverse{
    display:flex !important;
    flex-direction:column !important;
    min-height:auto !important;
  }

  .ns-usecase__image{
    width:100% !important;
    height:260px !important;
    min-height:260px !important;
  }

  .ns-usecase__content{
    padding:26px 22px 30px !important;
  }

  .ns-usecase__content h3{
    font-size:32px !important;
    color:#fff !important;
  }

  .ns-usecase__content p{
    font-size:16.5px !important;
    color:#fff !important;
    max-width:100% !important;
  }
}

/* FEATURES */
.ns-core-x__feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.ns-core-x__feature-card {
  position: relative;
  padding: 26px 24px;
  min-height: 220px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.018));
  border: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
  transition:
    transform 0.35s cubic-bezier(.22,.61,.36,1),
    box-shadow 0.35s cubic-bezier(.22,.61,.36,1),
    border-color 0.35s ease,
    background 0.35s ease;
}

.ns-core-x__feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(2,195,154,0.18), transparent 35%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.ns-core-x__feature-card::after {
  content: "";
  position: absolute;
  top: -140%;
  left: -40%;
  width: 26%;
  height: 360%;
  transform: rotate(20deg);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.22),
    transparent
  );
  opacity: 0;
  transition:
    left 0.8s ease,
    opacity 0.35s ease;
  pointer-events: none;
}

.ns-core-x__feature-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow:
    0 25px 60px rgba(0,0,0,0.35),
    0 10px 30px rgba(0,0,0,0.25),
    0 0 28px rgba(2,195,154,0.18);
  border-color: rgba(2,195,154,0.22);
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.05),
      rgba(2,195,154,0.035)
    );
}

.ns-core-x__feature-card:hover::before {
  opacity: 1;
}

.ns-core-x__feature-card:hover::after {
  left: 120%;
  opacity: 1;
}

.ns-core-x__feature-card span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--core);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.ns-core-x__feature-card h3 {
  margin: 0 0 10px;
  font-size: clamp(24px, 2.3vw, 38px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  color: #fff;
  transition:
    color 0.35s ease,
    transform 0.35s ease,
    text-shadow 0.35s ease;
}

.ns-core-x__feature-card p {
  margin: 0;
  max-width: 95%;
  color: var(--core-muted);
  font-size: 15px;
  line-height: 1.72;
  transition: color 0.35s ease;
}

.ns-core-x__feature-card:hover h3 {
  color: var(--core);
  transform: translateY(-1px);
  text-shadow: 0 0 16px rgba(2,195,154,0.18);
}

.ns-core-x__feature-card:hover p {
  color: rgba(255,255,255,0.82);
}

@media (max-width: 989px) {
  .ns-core-x__feature-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .ns-core-x__feature-card {
    min-height: auto;
    padding: 20px 18px;
    border-radius: 22px;
  }

  .ns-core-x__feature-card span {
    margin-bottom: 10px;
    font-size: 10px;
    letter-spacing: 0.16em;
  }

  .ns-core-x__feature-card h3 {
    margin: 0 0 8px;
    font-size: clamp(22px, 5vw, 30px);
    line-height: 1.04;
  }

  .ns-core-x__feature-card p {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.65;
  }
}

@media (max-width: 768px) {
  .ns-core-x__feature-grid {
    gap: 12px;
  }

  .ns-core-x__feature-card {
    padding: 18px 16px;
    border-radius: 20px;
  }

  .ns-core-x__feature-card h3 {
    font-size: 22px;
  }

  .ns-core-x__feature-card p {
    font-size: 13.5px;
    line-height: 1.62;
  }
}

@media (max-width: 480px) {
  .ns-core-x__feature-card {
    padding: 16px 14px;
  }

  .ns-core-x__feature-card h3 {
    font-size: 20px;
  }

  .ns-core-x__feature-card p {
    font-size: 13px;
  }
}

/* BANNER */
.ns-core-x__banner {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 30px;
  align-items: center;
  padding: 26px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.018));
  border: 1px solid rgba(255,255,255,0.05);
}

.ns-core-x__banner-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.03;
  letter-spacing: -0.05em;
  color: #fff;
}

.ns-core-x__banner-copy p {
  margin: 0 0 20px;
  color: var(--core-muted);
  line-height: 1.86;
}

.ns-core-x__banner-media {
  min-height: 470px;
  border-radius: 28px;
  overflow: hidden;
}

.ns-core-x__banner-media picture,
.ns-core-x__banner-media img {
  width: 100%;
  height: 100%;
}

.ns-core-x__banner-media img {
  object-fit: cover;
}

@media (max-width: 989px) {

  .ns-core-x__banner {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 18px;
    border-radius: 24px;
  }

  .ns-core-x__banner-copy {
    order: 1;
  }

  .ns-core-x__banner-media {
    order: 2;
    min-height: 300px;
    border-radius: 20px;
  }

  .ns-core-x__banner-copy h2 {
    margin: 0 0 12px;
    font-size: clamp(28px, 6.5vw, 40px);
    line-height: 1.04;
    letter-spacing: -0.05em;
  }

  .ns-core-x__banner-copy p {
    margin: 0 0 16px;
    font-size: 15px;
    line-height: 1.7;
  }

  .ns-core-x__banner-copy .ns-core-x__btn {
    min-height: 46px;
    padding: 0 16px;
    font-size: 13px;
  }
}


/* COMPARE */
.ns-core-x__compare-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.ns-core-x__compare-card {
  padding: 32px 28px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,0.038), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.02);
}

.ns-core-x__compare-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
  letter-spacing: -0.03em;
  color: #fff;
}

.ns-core-x__compare-card p {
  margin: 0;
  color: var(--core-muted);
  line-height: 1.82;
}

@media (max-width: 989px) {
  .ns-core-x__compare-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 18px;
  }

  .ns-core-x__compare-card {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .ns-core-x__compare-label {
    margin-bottom: 10px;
    padding: 6px 10px;
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .ns-core-x__compare-card h3 {
    margin: 0 0 8px;
    font-size: 22px;
    line-height: 1.06;
  }

  .ns-core-x__compare-card p {
    font-size: 14px;
    line-height: 1.62;
  }

  .ns-core-x__spec-table {
    margin-top: 18px;
    border-radius: 22px;
  }

  .ns-core-x__spec-row {
    grid-template-columns: 1fr 1fr;
    gap: 10px 14px;
    padding: 16px 18px;
  }

  .ns-core-x__spec-row--head {
    display: none;
  }

  .ns-core-x__spec-row:not(.ns-core-x__spec-row--head) {
    font-size: 14px;
    line-height: 1.6;
  }
}

@media (max-width: 768px) {
  .ns-core-x__compare-grid {
    gap: 12px;
    margin-top: 16px;
  }

  .ns-core-x__compare-card {
    padding: 18px 16px;
    border-radius: 20px;
  }

  .ns-core-x__compare-label {
    font-size: 9.5px;
    margin-bottom: 8px;
  }

  .ns-core-x__compare-card h3 {
    font-size: 21px;
  }

  .ns-core-x__compare-card p {
    font-size: 13.5px;
    line-height: 1.58;
  }

  .ns-core-x__spec-table {
    margin-top: 16px;
    border-radius: 20px;
  }

  .ns-core-x__spec-row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 14px 16px;
  }

  .ns-core-x__spec-row:not(.ns-core-x__spec-row--head) {
    font-size: 13.5px;
    line-height: 1.55;
  }
}

@media (max-width: 480px) {
  .ns-core-x__compare-card {
    padding: 16px 14px;
  }

  .ns-core-x__compare-card h3 {
    font-size: 20px;
  }

  .ns-core-x__compare-card p {
    font-size: 13px;
  }

  .ns-core-x__spec-row {
    padding: 13px 14px;
  }

  .ns-core-x__spec-row:not(.ns-core-x__spec-row--head) {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .ns-core-x__compare-card,
  .ns-core-x__spec-table {
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.045);
  }
}

/* SPECS */
.ns-core-icons {
  position: relative;
  padding: 110px 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(2,195,154,0.08), transparent 24%),
    radial-gradient(circle at 85% 10%, rgba(2,195,154,0.05), transparent 22%),
    linear-gradient(180deg, #060909 0%, #0a1210 100%);
  overflow: hidden;
}

.ns-core-icons__shell {
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
}

.ns-core-icons__head {
  max-width: 760px;
  margin-bottom: 56px;
}

.ns-core-icons__eyebrow {
  display: inline-flex;
  margin-bottom: 16px;
  color: #02C39A;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ns-core-icons__head h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.ns-core-icons__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.ns-core-icons__item {
  position: relative;
  min-height: 320px;
  padding: 30px 24px 26px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.016));
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.02);
  overflow: hidden;
  transition:
    transform 0.35s cubic-bezier(.22,.61,.36,1),
    box-shadow 0.35s cubic-bezier(.22,.61,.36,1),
    border-color 0.35s ease,
    background 0.35s ease;
}

.ns-core-icons__item::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(2,195,154,0.18), transparent 34%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.ns-core-icons__item::after {
  content: "";
  position: absolute;
  top: -140%;
  left: -40%;
  width: 28%;
  height: 360%;
  transform: rotate(20deg);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.18),
    transparent
  );
  opacity: 0;
  transition: left 0.8s ease, opacity 0.35s ease;
  pointer-events: none;
}

.ns-core-icons__item:hover {
  transform: translateY(-8px);
  border-color: rgba(2,195,154,0.22);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(2,195,154,0.03));
  box-shadow:
    0 24px 60px rgba(0,0,0,0.35),
    0 0 28px rgba(2,195,154,0.14);
}

.ns-core-icons__item:hover::before {
  opacity: 1;
}

.ns-core-icons__item:hover::after {
  left: 120%;
  opacity: 1;
}

.ns-core-icons__icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: #ffffff;
  transition: transform 0.35s ease, color 0.35s ease, filter 0.35s ease;
}

.ns-core-icons__icon svg {
  width: 44px;
  height: 44px;
  display: block;
  fill: currentColor;
}

.ns-core-icons__item:hover .ns-core-icons__icon {
  color: #02C39A;
  transform: translateY(-2px) scale(1.04);
  filter: drop-shadow(0 0 12px rgba(2,195,154,0.2));
}

.ns-core-icons__item h3 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: clamp(24px, 2vw, 40px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  transition: color 0.35s ease, text-shadow 0.35s ease;
}

.ns-core-icons__item p {
  margin: 0;
  color: rgba(255,255,255,0.68);
  font-size: 16px;
  line-height: 1.65;
  max-width: 28ch;
  transition: color 0.35s ease;
}

.ns-core-icons__item:hover h3 {
  color: #02C39A;
  text-shadow: 0 0 16px rgba(2,195,154,0.16);
}

.ns-core-icons__item:hover p {
  color: rgba(255,255,255,0.84);
}

@media (max-width: 1200px) {
  .ns-core-icons__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .ns-core-icons {
    padding: 84px 0;
  }

  .ns-core-icons__shell {
    width: min(100%, calc(100% - 28px));
  }

  .ns-core-icons__head {
    margin-bottom: 34px;
  }

  .ns-core-icons__head h2 {
    font-size: 32px;
  }

  .ns-core-icons__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .ns-core-icons__item {
    min-height: auto;
    padding: 22px 18px;
    border-radius: 22px;
  }

  .ns-core-icons__icon {
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
  }

  .ns-core-icons__icon svg {
    width: 34px;
    height: 34px;
  }

  .ns-core-icons__item h3 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .ns-core-icons__item p {
    font-size: 14px;
    line-height: 1.6;
    max-width: 100%;
  }
}



/* FAQ */
.ns-core-x__faq {
  display: grid;
  gap: 14px;
}

.ns-core-x__faq-item {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.02);
}

.ns-core-x__faq-question {
  width: 100%;
  padding: 22px 24px;
  background: none;
  border: 0;
  color: #fff;
  text-align: left;
  font: inherit;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
}

.ns-core-x__faq-answer {
  display: none;
  padding: 0 24px 24px;
  color: var(--core-muted);
  line-height: 1.86;
}

.ns-core-x__faq-item.is-open .ns-core-x__faq-answer {
  display: block;
}

/* REVEAL */
.ns-core-x__panel,
.ns-core-x__feature-card,
.ns-core-x__product-card,
.ns-core-x__compare-card,
.ns-core-x__reserve-card,
.ns-core-x__metric {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.ns-core-x__panel.is-visible,
.ns-core-x__feature-card.is-visible,
.ns-core-x__product-card.is-visible,
.ns-core-x__compare-card.is-visible,
.ns-core-x__reserve-card.is-visible,
.ns-core-x__metric.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .ns-core-x__collection-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ns-core-x__compare-grid,
  .ns-core-x__metrics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 989px) {
  .ns-core-x__shell {
    width: min(100%, calc(100% - 28px));
  }

  .ns-core-x__subnav-inner {
    min-height: auto;
    padding: 14px 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .ns-core-x__subnav-btn {
    display: none;
  }

  .ns-core-x__hero {
    padding: 24px 0 56px;
  }

  .ns-core-x__hero-grid,
  .ns-core-x__story-grid,
  .ns-core-x__banner,
  .ns-core-x__panel,
  .ns-core-x__feature-grid {
    grid-template-columns: 1fr;
  }

  .ns-core-x__hero-media,
  .ns-core-x__story-media,
  .ns-core-x__banner-media,
  .ns-core-x__panel-media {
    min-height: 360px;
  }

  .ns-core-x__section,
  #ncx-collection,
  #ncx-compare,
  #ncx-specs {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .ns-core-x__spec-row {
    grid-template-columns: 1fr 1fr;
  }

  .ns-core-x__spec-row--head {
    display: none;
  }
}

@media (max-width: 768px) {
  .ns-core-x__collection-grid,
  .ns-core-x__compare-grid,
  .ns-core-x__reserve-grid,
  .ns-core-x__metrics-grid {
    grid-template-columns: 1fr;
  }

  .ns-core-x__hero-copy h1 {
    font-size: 42px;
    line-height: 0.98;
  }

  .ns-core-x__section-head h2,
  .ns-core-x__story-copy h2,
  .ns-core-x__banner-copy h2 {
    font-size: 32px;
  }

  .ns-core-x__panel-copy h3,
  .ns-core-x__product-body h3,
  .ns-core-x__feature-card h3 {
    font-size: 22px;
  }

  .ns-core-x__product-body p {
    min-height: auto;
  }

  .ns-core-x__feature-card,
  .ns-core-x__metric,
  .ns-core-x__compare-card,
  .ns-core-x__product-body,
  .ns-core-x__reserve-copy {
    padding: 22px;
  }

  .ns-core-x__spec-row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 16px 18px;
  }
}

@media (max-width: 989px) {

  /* ALL BUTTONS */
  .ns-core-x__btn {
    min-height: 48px;
    padding: 0 16px;
    font-size: 13px;
    border-radius: 999px;
  }

  /* HERO BUTTONS */
  .ns-core-x__hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .ns-core-x__hero-actions .ns-core-x__btn {
    width: 100%;
  }

  /* COLLECTION BUTTONS */
  .ns-core-x__product-actions {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .ns-core-x__btn--buy,
  .ns-core-x__btn--view {
    width: 100%;
    min-height: 46px;
    font-size: 13px;
  }

  /* make Buy Now stronger on mobile */
  .ns-core-x__btn--buy {
    box-shadow:
      0 10px 26px rgba(2,195,154,0.28),
      0 0 14px rgba(2,195,154,0.18);
  }

  /* VIEW button slightly softer */
  .ns-core-x__btn--view {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
  }
}


/* =========================
   SPLIT BANNER (TEXT + IMAGE)
   ========================= */

.ns-core-x__split-banner {
  width: 100%;
}

/* TEXT SECTION */
.ns-core-x__split-banner-text {
  padding: 120px 0 80px;
  text-align: center;
}

.ns-core-x__split-banner-inner {
  max-width: 720px;
  margin: 0 auto;
  color: #fff;
}

/* TITLE */
.ns-core-x__split-banner-inner h2 {
  margin: 0 0 14px;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  color: #fff;
}

/* BODY */
.ns-core-x__split-banner-inner p {
  margin: 0 0 22px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
}

/* BUTTON */
.ns-core-x__split-banner-inner .ns-core-x__btn {
  margin-top: 8px;
}

/* IMAGE SECTION */
.ns-core-x__split-banner-media {
  width: 100%;
  height: 620px;
  overflow: hidden;
}

.ns-core-x__split-banner-media picture,
.ns-core-x__split-banner-media img {
  width: 100%;
  height: 100%;
}

.ns-core-x__split-banner-media img {
  object-fit: cover;
  object-position: center bottom; /* keep product visible */
}

@media (max-width: 989px) {

  .ns-core-x__split-banner-text {
    padding: 80px 0 50px;
  }

  .ns-core-x__split-banner-inner h2 {
    font-size: clamp(28px, 8vw, 38px);
  }

  .ns-core-x__split-banner-inner p {
    font-size: 14px;
  }

  .ns-core-x__split-banner-media {
    height: 480px;
  }
}

@media (max-width: 480px) {

  .ns-core-x__split-banner-text {
    padding: 60px 0 40px;
  }

  .ns-core-x__split-banner-inner h2 {
    font-size: 26px;
  }

  .ns-core-x__split-banner-inner p {
    font-size: 13.5px;
  }

  .ns-core-x__split-banner-media {
    height: 400px;
  }

  .ns-core-x__split-banner-inner .ns-core-x__btn {
    width: 100%;
  }
}

/* GLOBAL SECTION SPACING CONTROL */
.ns-core-x__section,
.ns-core-usecases,
.ns-core-before-after,
.ns-core-compare-apple,
.ns-core-compare-glass {
  padding: 80px 0; /* ↓ from ~140–150 */
}

/* HERO / IMPORTANT */
.ns-core-x__hero,
.ns-core-x__hero-banner {
  padding: 100px 0 60px;
}

/* MAJOR SECTIONS */
.ns-core-x__section,
.ns-core-usecases,
.ns-core-before-after,
.ns-core-compare-apple {
  padding: 80px 0;
}

/* LIGHT / SMALL SECTIONS */
.ns-core-x__section--soft {
  padding: 60px 0;
}

.ns-core-x__section-head {
  margin-bottom: 40px; /* was ~60–80 */
}

.ns-core-usecases__row {
  margin-bottom: 80px; /* was ~140 */
}

.ns-core-compare-apple__head {
  margin-bottom: 40px;
}

@media (max-width: 989px) {

  .ns-core-x__section,
  .ns-core-usecases,
  .ns-core-before-after,
  .ns-core-compare-apple {
    padding: 60px 0;
  }

  .ns-core-x__section-head {
    margin-bottom: 30px;
  }
}

@media (max-width: 989px) {

  /* use cases / panels */
  .ns-core-usecases__media,
  .ns-core-x__panel-media,
  .ns-core-x__banner-media {
    height: 260px; /* was ~320–360 */
    border-radius: 16px;
  }

  /* tighter spacing under image */
  .ns-core-usecases__row {
    gap: 18px;
    margin-bottom: 60px; /* was ~80 */
  }
}

@media (max-width: 480px) {

  .ns-core-usecases__media,
  .ns-core-x__panel-media,
  .ns-core-x__banner-media {
    height: 220px;
  }

  .ns-core-usecases__row {
    margin-bottom: 50px;
  }
}

@media (max-width: 989px) {

  .ns-core-x__spec-table {
    margin-top: 10px; /* reduce gap from title */
    border-radius: 16px;
  }

  .ns-core-x__spec-row {
    padding: 12px 14px; /* was ~16–18 */
    gap: 6px;
  }

  .ns-core-x__spec-row:not(.ns-core-x__spec-row--head) {
    font-size: 13px;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {

  .ns-core-x__spec-row {
    padding: 10px 12px;
  }

  .ns-core-x__spec-row:not(.ns-core-x__spec-row--head) {
    font-size: 12.5px;
  }
}

@media (max-width: 989px) {

  /* reduce space around spec section */
  .ns-core-x__section--specs {
    padding: 50px 0;
  }

  /* reduce space around use cases */
  .ns-core-usecases {
    padding: 70px 0;
  }
}@media (max-width: 989px) {

  /* reduce space around spec section */
  .ns-core-x__section--specs {
    padding: 50px 0;
  }

  /* reduce space around use cases */
  .ns-core-usecases {
    padding: 70px 0;
  }
}

/* MOBILE SUB NAV */
@media (max-width: 989px) {

  .ns-core-x__subnav-inner {
    min-height: auto;
    padding: 10px 0 6px; /* ↓ tighter */
    gap: 2px;
  }

  .ns-core-x__brand {
    font-size: 16px;
  }

  .ns-core-x__nav {
    gap: 12px; /* ↓ tighter */
  }

  .ns-core-x__nav a {
    font-size: 12px;
    padding: 4px 0;
  }
}

/* HERO MOBILE SPACING */
@media (max-width: 989px) {

  .ns-core-x__hero {
    padding: 12px 0 28px; /* ↓ from ~40+ */
  }

  .ns-core-x__hero-grid {
    gap: 14px;
  }

  .ns-core-x__hero-copy h1 {
    margin-bottom: 10px;
  }

  .ns-core-x__hero-copy p {
    margin-bottom: 14px;
  }

  .ns-core-x__hero-pills {
    margin-bottom: 14px;
    gap: 6px;
  }

  .ns-core-x__hero-media {
    min-height: 240px; /* ↓ from ~320 */
    border-radius: 18px;
  }
}

@media (max-width: 480px) {

  .ns-core-x__hero {
    padding: 10px 0 24px;
  }

  .ns-core-x__hero-media {
    min-height: 200px;
  }

  .ns-core-x__hero-copy h1 {
    margin-bottom: 8px;
  }

  .ns-core-x__hero-copy p {
    margin-bottom: 12px;
  }
}


/* Hero headline */
.ns-hero-text h1{
font-size:clamp(54px,7vw,96px);
line-height:1.02;
letter-spacing:-0.04em;
font-weight:700;
text-shadow:
0 2px 8px rgba(0,0,0,.45),
0 10px 28px rgba(0,0,0,.25);
margin-bottom:18px;
}

/* Hero supporting text */
.ns-hero-text p{
font-size:clamp(20px,1.8vw,30px); /* bigger */
line-height:1.45;
letter-spacing:-0.015em;
font-weight:500; /* easier to read */
max-width:30ch; /* shorter line length */
color:rgba(255,255,255,.96);

text-shadow:
0 2px 4px rgba(0,0,0,.65),
0 8px 22px rgba(0,0,0,.35);

margin:0;
}

/* optional premium spacing */
.ns-hero-text{
max-width:650px;
}

/* mobile */
@media (max-width:768px){

.ns-hero-text h1{
font-size:clamp(38px,10vw,58px);
margin-bottom:12px;
}

.ns-hero-text p{
font-size:18px;
line-height:1.5;
max-width:24ch;
}

}

.ns-usecases{
  background:#050505;
  color:#fff;
  padding:96px 5vw;
  overflow:hidden;
}

.ns-usecases__header{
  max-width:860px;
  margin:0 auto 72px;
  text-align:center;
}

.ns-eyebrow{
color:#60C4DC;
font-weight:700;
}

.ns-usecases__header h2{
color:#ffffff;
font-size:clamp(44px,6vw,84px);
line-height:1.02;
letter-spacing:-0.045em;
font-weight:700;

text-shadow:
0 1px 3px rgba(0,0,0,.18); /* very subtle */
}

.ns-usecases__header p{
color:rgba(255,255,255,.95);
font-size:clamp(19px,1.5vw,24px);
font-weight:500;
line-height:1.55;
max-width:34ch;
margin:auto;
}

.ns-usecases__grid{
  display:flex;
  flex-direction:column;
  gap:34px;
  max-width:1320px;
  margin:0 auto;
}

.ns-usecase{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  align-items:center;
  min-height:520px;
  border-radius:34px;
  overflow:hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(96,196,220,.12), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.025));
  border:1px solid rgba(255,255,255,.09);
}

.ns-usecase--reverse{
  grid-template-columns:.85fr 1.15fr;
}

.ns-usecase--reverse .ns-usecase__image{
  order:2;
}

.ns-usecase--reverse .ns-usecase__content{
  order:1;
}

.ns-usecase__image{
  height:100%;
  min-height:520px;
  overflow:hidden;
}

.ns-usecase__image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transform:scale(1.02);
  transition:transform .8s ease;
}

.ns-usecase:hover .ns-usecase__image img{
  transform:scale(1.06);
}

.ns-usecase__content{
  padding:56px;
}

.ns-usecase__tag{
  display:inline-flex;
  margin-bottom:18px;
  padding:8px 14px;
  border-radius:999px;
  color:#60C4DC;
  background:rgba(96,196,220,.12);
  border:1px solid rgba(96,196,220,.26);
  font-size:13px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.ns-usecase__content h3{
  font-size:clamp(34px,4vw,62px);
  line-height:1.02;
  letter-spacing:-.045em;
  margin:0 0 20px;
}

.ns-usecase__content p{
  color:rgba(255,255,255,.72);
  font-size:clamp(17px,1.25vw,21px);
  line-height:1.55;
  max-width:520px;
  margin:0 0 28px;
}

.ns-usecase__pills{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.ns-usecase__pills span{
  padding:9px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  color:rgba(255,255,255,.86);
  font-size:13px;
  font-weight:600;
}

/* Mobile */
@media(max-width:768px){
  .ns-usecases{
    padding:68px 18px;
  }

  .ns-usecases__header{
    text-align:left;
    margin-bottom:38px;
  }

  .ns-usecase,
  .ns-usecase--reverse{
    grid-template-columns:1fr;
    min-height:auto;
    border-radius:28px;
  }

  .ns-usecase--reverse .ns-usecase__image,
  .ns-usecase--reverse .ns-usecase__content{
    order:initial;
  }

  .ns-usecase__image{
    min-height:300px;
    height:300px;
  }

  .ns-usecase__content{
    padding:30px 24px 34px;
  }

  .ns-usecase__content h3{
    font-size:34px;
  }

  .ns-usecase__content p{
    font-size:17px;
  }
}

/* Section intro paragraph */
.ns-usecases__header p{
color:rgba(255,255,255,.92);
}

/* Use case titles */
.ns-usecase__content h3{
color:#ffffff;
}

/* Main description text */
.ns-usecase__content p{
color:rgba(255,255,255,.95);
font-weight:500;
}

/* Pills text */
.ns-usecase__pills span{
color:#ffffff;
background:rgba(255,255,255,.12);
border:1px solid rgba(255,255,255,.18);
}


/* FORCE DARK THEME */
.ns-ng-apple {
  background: #05070b !important;
  color: #fff !important;
}

.ns-ng-apple .ns-section {
  background: #05070b !important;
}

.ns-ng-apple .ns-shell,
.ns-ng-apple .ns-head,
.ns-ng-apple .ns-title-lg,
.ns-ng-apple h1,
.ns-ng-apple h2,
.ns-ng-apple h3 {
  color: #fff !important;
}

.ns-ng-apple p {
  color: rgba(255,255,255,.68) !important;
}

/* NANOCORE STYLE SUB NAV */
.ns-core-style-subnav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 7, 11, .82);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.ns-core-style-subnav__inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.ns-core-style-subnav__title {
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -.02em;
  white-space: nowrap;
}

.ns-core-style-subnav__title span {
  color: #60c4dc;
}

.ns-core-style-subnav__links {
  display: flex;
  align-items: center;
  gap: 22px;
  overflow-x: auto;
  scrollbar-width: none;
}

.ns-core-style-subnav__links::-webkit-scrollbar {
  display: none;
}

.ns-core-style-subnav__links a {
  color: rgba(255,255,255,.62);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: .25s ease;
}

.ns-core-style-subnav__links a:hover,
.ns-core-style-subnav__links a.is-active {
  color: #fff;
}

.ns-core-style-subnav__buy {
  background: #60c4dc;
  color: #001018 !important;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 850 !important;
}

/* BUILT FOR EVERY SETUP — PREVIOUS STYLE */
.ns-usecases--previous {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 24px;
  align-items: stretch;
}

.ns-tabs {
  display: grid;
  gap: 12px;
}

.ns-tab {
  width: 100%;
  text-align: left;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.045);
  border-radius: 24px;
  padding: 22px;
  cursor: pointer;
  transition: .25s ease;
}

.ns-tab:hover,
.ns-tab.is-active {
  background: linear-gradient(135deg, rgba(96,196,220,.18), rgba(255,255,255,.06));
  border-color: rgba(96,196,220,.45);
  transform: translateY(-2px);
}

.ns-tab small {
  display: block;
  color: #60c4dc;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .12em;
  margin-bottom: 12px;
}

.ns-tab strong {
  display: block;
  color: #fff;
  font-size: 20px;
  letter-spacing: -.03em;
  margin-bottom: 8px;
}

.ns-tab span {
  display: block;
  color: rgba(255,255,255,.64);
  font-size: 14px;
  line-height: 1.55;
}

.ns-stage {
  position: relative;
  min-height: 560px;
  border-radius: 34px;
  overflow: hidden;
  background: #0a0f16;
  border: 1px solid rgba(255,255,255,.12);
}

.ns-stage-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}

.ns-stage-item.is-active {
  opacity: 1;
  pointer-events: auto;
}

.ns-stage-item picture,
.ns-stage-item img {
  width: 100%;
  height: 100%;
  display: block;
}

.ns-stage-item img {
  object-fit: cover;
}

.ns-stage-caption {
  position: absolute;
  left: 24px;
  bottom: 24px;
  color: #fff;
  background: rgba(0,0,0,.38);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 800;
}

/* REVIEWS NEW STYLE */
.ng-reviews-new {
  background:
    radial-gradient(circle at 15% 10%, rgba(96,196,220,.14), transparent 34%),
    #05070b !important;
}

.ng-review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.ng-review-card-new {
  min-height: 280px;
  border-radius: 28px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.085), rgba(255,255,255,.035));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 24px 80px rgba(0,0,0,.22);
}

.ng-review-stars {
  color: #60c4dc;
  font-size: 14px;
  letter-spacing: .08em;
  margin-bottom: 28px;
}

.ng-review-card-new h3 {
  color: #fff;
  font-size: 23px;
  line-height: 1.12;
  letter-spacing: -.035em;
  margin: 0 0 14px;
}

.ng-review-card-new p {
  color: rgba(255,255,255,.66) !important;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.ng-review-meta {
  margin-top: 28px;
  color: rgba(255,255,255,.9);
  font-size: 13px;
  font-weight: 800;
}

/* MOBILE */
@media screen and (max-width: 768px) {
  .ns-core-style-subnav__inner {
    width: calc(100% - 24px);
    min-height: auto;
    padding: 12px 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .ns-core-style-subnav__links {
    width: 100%;
    gap: 18px;
    padding-bottom: 2px;
  }

  .ns-usecases--previous {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .ns-stage {
    min-height: auto;
    aspect-ratio: 4 / 5;
    border-radius: 24px;
  }

  .ns-tab {
    border-radius: 20px;
    padding: 18px;
  }

  .ns-tab strong {
    font-size: 18px;
  }

  .ng-review-grid {
    grid-template-columns: 1fr;
  }

  .ng-review-card-new {
    min-height: auto;
    border-radius: 22px;
    padding: 24px;
  }
}



/* REMOVE ALL IMAGE FILTERS / DARK OVERLAYS ON NANOGLASS PAGE */
.ns-ng-apple img,
.ns-ng img,
.ns-section img,
.ns-stage img,
.ns-stage-item img,
.ns-usecase img,
.ng-review-card-new img {
  filter: none !important;
  opacity: 1 !important;
  mix-blend-mode: normal !important;
}

/* remove dark overlay layers */
.ns-ng-apple picture::before,
.ns-ng-apple picture::after,
.ns-ng-apple .ns-stage::before,
.ns-ng-apple .ns-stage::after,
.ns-ng-apple .ns-banner::before,
.ns-ng-apple .ns-banner::after,
.ns-ng-apple .ns-hero::before,
.ns-ng-apple .ns-hero::after,
.ns-ng-apple .ns-image::before,
.ns-ng-apple .ns-image::after,
.ns-ng-apple .ns-media::before,
.ns-ng-apple .ns-media::after {
  display: none !important;
  opacity: 0 !important;
  background: none !important;
}

/* REMOVE GAP BETWEEN SUB NAV + HERO */
.ns-core-style-subnav{
margin-bottom:0 !important;
border-bottom:none !important;
}

.ns-ng-hero,
.ns-hero,
#ng-overview{
margin-top:0 !important;
padding-top:0 !important;
}

.ns-ng-apple .ns-section:first-of-type{
padding-top:0 !important;
margin-top:0 !important;
}

/* if Dawn theme adds wrapper spacing */
.product__info-wrapper,
.shopify-section,
.main-product,
.product{
margin-top:0 !important;
padding-top:0 !important;
}

/* if hero has image radius causing visible gap */
.ns-ng-hero__media{
margin-top:0 !important;
border-top-left-radius:0 !important;
border-top-right-radius:0 !important;
}

/* ===== NANOGLASS SUB NAV REFINED ===== */

.ns-core-style-subnav{
background:rgba(5,7,11,.82);
backdrop-filter:blur(20px);
border-bottom:1px solid rgba(255,255,255,.08);
}

/* logo */
.ns-core-style-subnav__title{
color:#fff;
font-size:15px;
font-weight:800;
letter-spacing:-.02em;
}

.ns-core-style-subnav__title span{
color:#fff; /* "Nano" stays white */
}

/* make Glass blue */
.ns-core-style-subnav__title{
display:flex;
gap:0;
}

.ns-core-style-subnav__title::after{
content:"Glass";
color:#60C4DC;
}

/* if your HTML already has NanoGlass split spans use this instead:
.nano-word{color:#fff;}
.glass-word{color:#60C4DC;}
*/

/* nav links */
.ns-core-style-subnav__links a{
color:rgba(255,255,255,.65);
transition:all .28s ease;
}

.ns-core-style-subnav__links a:hover,
.ns-core-style-subnav__links a.is-active{
color:#60C4DC;
}

/* BUY NOW BUTTON */
.ns-core-style-subnav__buy{
background:#60C4DC;
color:#041016 !important;
border:1px solid #60C4DC;
padding:8px 15px;
border-radius:999px;
font-weight:800;
transition:all .28s ease;
box-shadow:
0 0 0 rgba(96,196,220,0);
}

.ns-core-style-subnav__buy:hover{
background:transparent;
color:#60C4DC !important;
border-color:#60C4DC;
box-shadow:
0 0 18px rgba(96,196,220,.18);
transform:translateY(-1px);
}

/* subtle blue underline hover */
.ns-core-style-subnav__links a{
position:relative;
}

.ns-core-style-subnav__links a:not(.ns-core-style-subnav__buy)::after{
content:"";
position:absolute;
left:0;
bottom:-6px;
width:0;
height:1px;
background:#60C4DC;
transition:.28s ease;
}

.ns-core-style-subnav__links a:not(.ns-core-style-subnav__buy):hover::after,
.ns-core-style-subnav__links a.is-active::after{
width:100%;
}

.nano-word{color:#fff;}
.glass-word{color:#60C4DC;}



/* NANOGASS PRODUCT CONTENT ONLY — HEADER SAFE 20260424 */

.ns-ng-apple{
  --ng-blue:#60C4DC;
  --ng-bg:#000;
  --ng-line:rgba(255,255,255,.12);
  --ng-muted:rgba(255,255,255,.66);
  background:#000!important;
  color:#fff!important;
  font-family:Inter,Arial,sans-serif;
  overflow:hidden;
}

.ns-ng-apple *,
.ns-ng-apple *:before,
.ns-ng-apple *:after{
  box-sizing:border-box;
}

.ns-ng-apple img{
  filter:none!important;
}

/* spacing */
.ns-ng-apple .ns-section,
.ns-ng-apple .ng-specs-pro,
.ns-ng-apple .ng-reviews{
  background:#000!important;
  padding:88px 0!important;
  margin:0!important;
}

.ns-ng-apple .ns-shell{
  width:min(1180px,92vw);
  margin:0 auto;
}

.ns-ng-apple .ns-head{
  max-width:760px;
  margin-bottom:32px!important;
}

.ns-ng-apple .ns-kicker{
  color:var(--ng-blue)!important;
  font-size:12px;
  font-weight:900;
  letter-spacing:.18em;
  text-transform:uppercase;
  margin-bottom:14px;
}

.ns-ng-apple .ns-title-lg{
  color:#fff!important;
  font-size:clamp(36px,5.4vw,76px);
  line-height:.92;
  letter-spacing:-.065em;
  font-weight:900;
  margin:0 0 16px!important;
}

.ns-ng-apple .ns-title-md{
  color:#fff!important;
  font-size:clamp(24px,3vw,42px);
  line-height:1.02;
  letter-spacing:-.045em;
  font-weight:900;
  margin:0 0 14px!important;
}

.ns-ng-apple p,
.ns-ng-apple .ns-card p,
.ns-ng-apple .ns-banner__content p,
.ns-ng-apple .ns-tab span,
.ns-ng-apple .ng-spec-card p,
.ns-ng-apple .ng-review-card-new p,
.ns-ng-apple .ns-faq__body{
  color:var(--ng-muted)!important;
  font-size:15px;
  line-height:1.65;
  letter-spacing:0;
}




/* ===============================
   1.9MM THICKNESS SECTION
=============================== */

.ng-thickness{
background:#000;
padding:110px 0;
position:relative;
overflow:hidden;
}

/* subtle blue glow */
.ng-thickness:before{
content:"";
position:absolute;
top:-20%;
right:-10%;
width:700px;
height:700px;
background:radial-gradient(
circle,
rgba(96,196,220,.10),
transparent 70%
);
pointer-events:none;
}

.ng-thickness .ns-shell{
max-width:1240px;
margin:auto;
padding:0 24px;
}

/* top row */
.ng-thickness__top{
display:grid;
grid-template-columns:1.1fr .9fr;
gap:56px;
align-items:center;
margin-bottom:50px;
}

/* image */
.ng-thickness__media{
overflow:hidden;
border-radius:34px;
background:
linear-gradient(
180deg,
rgba(255,255,255,.05),
rgba(255,255,255,.02)
);
}

.ng-thickness__media img{
display:block;
width:100%;
height:720px;
object-fit:cover;
}

/* copy */
.ng-thickness__eyebrow{
color:#60C4DC;
font-size:12px;
font-weight:800;
letter-spacing:.18em;
text-transform:uppercase;
margin-bottom:16px;
}

.ng-thickness__title{
font-size:clamp(46px,6vw,88px);
line-height:.92;
letter-spacing:-.06em;
font-weight:900;
color:#fff;
margin:0 0 22px;
}

.ng-thickness__title span{
color:#60C4DC;
}

.ng-thickness__text{
font-size:18px;
line-height:1.7;
color:rgba(255,255,255,.66);
max-width:520px;
margin:0;
}

/* stats */
.ng-thickness__stats{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:1px;
background:rgba(255,255,255,.10);
}

.ng-thickness__stat{
background:#05070b;
padding:44px 34px;
min-height:250px;
transition:.35s ease;
}

.ng-thickness__stat:hover{
background:#08111a;
}

.ng-thickness__stat-num{
display:block;
font-size:clamp(52px,7vw,90px);
line-height:.9;
font-weight:900;
letter-spacing:-.07em;
color:#fff;
margin-bottom:22px;
}

.ng-thickness__stat-copy strong{
display:block;
color:#fff;
font-size:22px;
line-height:1.1;
margin-bottom:12px;
letter-spacing:-.03em;
}

.ng-thickness__stat-copy span{
display:block;
color:rgba(255,255,255,.58);
line-height:1.65;
font-size:15px;
}

/* optional floating 1.9mm ghost */
.ng-thickness__media:after{
content:"1.9mm";
position:absolute;
right:6%;
bottom:7%;
font-size:clamp(80px,12vw,180px);
font-weight:900;
letter-spacing:-.08em;
color:rgba(255,255,255,.12);
text-shadow:0 0 60px rgba(96,196,220,.2);
pointer-events:none;
}

/* mobile */
@media(max-width:900px){

.ng-thickness{
padding:70px 0;
}

.ng-thickness__top{
grid-template-columns:1fr;
gap:30px;
}

.ng-thickness__media{
border-radius:22px;
}

.ng-thickness__media img{
height:auto;
}

.ng-thickness__title{
font-size:46px;
}

.ng-thickness__text{
font-size:15px;
}

.ng-thickness__stats{
grid-template-columns:1fr;
}

.ng-thickness__stat{
min-height:auto;
padding:34px 26px;
}

.ng-thickness__stat-num{
font-size:54px;
}

}

/* built for every setup */
/* BUILT FOR EVERY SETUP — READABLE HEADING + RECTANGLE LABEL */

#ng-scenarios{
  background:#000!important;
  padding:110px 0!important;
  color:#fff!important;
}

#ng-scenarios .ns-head{
  max-width:850px!important;
  margin-bottom:38px!important;
  position:relative;
  z-index:5;
}

#ng-scenarios .ns-kicker{
  color:#60C4DC!important;
  font-size:12px!important;
  font-weight:900!important;
  letter-spacing:.18em!important;
  text-transform:uppercase!important;
  margin-bottom:16px!important;
}

#ng-scenarios .ns-title-lg{
  color:#fff!important;
  font-size:clamp(42px,5.6vw,78px)!important;
  line-height:.95!important;
  letter-spacing:-.06em!important;
  font-weight:900!important;
  margin:0 0 18px!important;
  text-shadow:0 0 35px rgba(0,0,0,.8);
}

#ng-scenarios .ns-head p{
  color:rgba(255,255,255,.72)!important;
  font-size:17px!important;
  line-height:1.7!important;
  max-width:760px!important;
  margin:0!important;
}

/* layout */
#ng-scenarios .ns-usecases{
  display:grid!important;
  grid-template-columns:.9fr 1.1fr!important;
  gap:34px!important;
  align-items:stretch!important;
}

/* CLEAN AUTOPLAY — NO BORDER, NO GLOW */

#ng-scenarios .ns-tab{
background:transparent!important;
border:0!important;
border-bottom:1px solid rgba(255,255,255,.10)!important;
padding:28px 0!important;
padding-left:0!important;
transition:.3s ease;
}

/* remove active blue border */
#ng-scenarios .ns-tab.is-active{
border-left:none!important;
padding-left:0!important;
}

/* remove glowing line */
#ng-scenarios .ns-tab.is-active:before,
#ng-scenarios .ns-tab:before{
display:none!important;
content:none!important;
}

/* remove any glow */
#ng-scenarios .ns-tab,
#ng-scenarios .ns-tab strong{
box-shadow:none!important;
text-shadow:none!important;
}

/* active state only text color shift */
#ng-scenarios .ns-tab.is-active strong{
color:#60C4DC!important;
}

#ng-scenarios .ns-tab:hover strong{
color:#60C4DC!important;
}

/* optional subtle active opacity effect */
#ng-scenarios .ns-tab{
opacity:.72;
}

#ng-scenarios .ns-tab.is-active{
opacity:1;
}

/* remove stage glow if any */
#ng-scenarios .ns-stage:after{
background:
linear-gradient(
0deg,
rgba(0,0,0,.45),
transparent 48%
)!important;
}

/* MOBILE VERSION */
@media (max-width: 749px){

  #ng-scenarios{
    padding:64px 0!important;
  }

  #ng-scenarios .ns-head{
    max-width:100%!important;
    margin-bottom:28px!important;
    padding:0 20px!important;
    text-align:left!important;
  }

  #ng-scenarios .ns-kicker{
    font-size:11px!important;
    letter-spacing:.16em!important;
    margin-bottom:12px!important;
  }

  #ng-scenarios .ns-title-lg{
    font-size:clamp(34px,10vw,46px)!important;
    line-height:1!important;
    letter-spacing:-.045em!important;
    margin-bottom:14px!important;
  }

  #ng-scenarios .ns-head p{
    font-size:14.5px!important;
    line-height:1.65!important;
    max-width:100%!important;
  }

  #ng-scenarios .ns-usecases{
    display:flex!important;
    flex-direction:column!important;
    gap:26px!important;
  }

  #ng-scenarios .ns-tabs{
    order:2!important;
    padding:0 20px!important;
  }

  #ng-scenarios .ns-stage{
    order:1!important;
    width:100%!important;
    border-radius:0!important;
    overflow:hidden!important;
  }

  #ng-scenarios .ns-stage img{
    width:100%!important;
    height:auto!important;
    display:block!important;
    object-fit:cover!important;
  }

  #ng-scenarios .ns-stage:after{
    background:linear-gradient(
      0deg,
      rgba(0,0,0,.55),
      transparent 55%
    )!important;
  }

  #ng-scenarios .ns-tab{
    padding:20px 0!important;
    opacity:1!important;
  }

  #ng-scenarios .ns-tab strong{
    font-size:18px!important;
    line-height:1.2!important;
  }

  #ng-scenarios .ns-tab p{
    font-size:14px!important;
    line-height:1.55!important;
    color:rgba(255,255,255,.64)!important;
    margin-top:8px!important;
  }

  #ng-scenarios .ns-tab.is-active strong,
  #ng-scenarios .ns-tab:hover strong{
    color:#60C4DC!important;
  }
}


/* reviews */
/* SAMSUNG STYLE REVIEWS */
.ng-reviews-samsung{
  background:#000!important;
  color:#fff!important;
  padding:110px 0!important;
  overflow:hidden!important;
}

.ng-reviews-samsung .ng-reviews-head{
  max-width:900px!important;
  margin:0 auto 44px!important;
  padding:0 24px!important;
  text-align:center!important;
}

.ng-reviews-samsung .ns-kicker{
  color:#60C4DC!important;
  font-size:12px!important;
  font-weight:900!important;
  letter-spacing:.18em!important;
  text-transform:uppercase!important;
  margin-bottom:16px!important;
}

.ng-reviews-samsung h2{
  color:#fff!important;
  font-size:clamp(44px,5.8vw,82px)!important;
  line-height:.96!important;
  letter-spacing:-.06em!important;
  font-weight:900!important;
  margin:0 0 18px!important;
}

.ng-reviews-samsung .ng-reviews-head p{
  color:rgba(255,255,255,.68)!important;
  font-size:17px!important;
  line-height:1.65!important;
  max-width:680px!important;
  margin:0 auto!important;
}

.ng-review-scroll{
  display:flex!important;
  gap:18px!important;
  overflow-x:auto!important;
  scroll-snap-type:x mandatory!important;
  padding:0 6vw 18px!important;
  -webkit-overflow-scrolling:touch!important;
}

.ng-review-scroll::-webkit-scrollbar{
  height:6px!important;
}

.ng-review-scroll::-webkit-scrollbar-track{
  background:rgba(255,255,255,.08)!important;
}

.ng-review-scroll::-webkit-scrollbar-thumb{
  background:rgba(96,196,220,.65)!important;
  border-radius:999px!important;
}

.ng-review-card-new{
  flex:0 0 420px!important;
  scroll-snap-align:start!important;
  background:#111!important;
  border:1px solid rgba(255,255,255,.09)!important;
  border-radius:34px!important;
  padding:14px 14px 26px!important;
  overflow:hidden!important;
  box-shadow:none!important;
}

.ng-review-card-new picture,
.ng-review-card-new img{
  display:block!important;
  width:100%!important;
}

.ng-review-card-new img{
  aspect-ratio:16/10!important;
  object-fit:cover!important;
  border-radius:24px!important;
  margin-bottom:22px!important;
  background:#050505!important;
}

.ng-review-stars{
  color:#60C4DC!important;
  font-size:13px!important;
  letter-spacing:.14em!important;
  margin:0 12px 14px!important;
}

.ng-review-card-new h3{
  color:#fff!important;
  font-size:24px!important;
  line-height:1.1!important;
  letter-spacing:-.035em!important;
  font-weight:850!important;
  margin:0 12px 12px!important;
}

.ng-review-card-new p{
  color:rgba(255,255,255,.68)!important;
  font-size:15px!important;
  line-height:1.55!important;
  margin:0 12px 18px!important;
}

.ng-review-card-new span{
  display:inline-flex!important;
  margin:0 12px!important;
  color:#60C4DC!important;
  background:rgba(96,196,220,.1)!important;
  border:1px solid rgba(96,196,220,.22)!important;
  border-radius:999px!important;
  padding:8px 12px!important;
  font-size:11px!important;
  font-weight:800!important;
  letter-spacing:.08em!important;
  text-transform:uppercase!important;
}

/* MOBILE */
@media(max-width:749px){

  .ng-reviews-samsung{
    padding:72px 0!important;
  }

  .ng-reviews-samsung .ng-reviews-head{
    margin-bottom:30px!important;
    padding:0 22px!important;
  }

  .ng-reviews-samsung .ns-kicker{
    font-size:10px!important;
    letter-spacing:.14em!important;
    margin-bottom:12px!important;
  }

  .ng-reviews-samsung h2{
    font-size:clamp(34px,10vw,48px)!important;
    line-height:1!important;
    letter-spacing:-.045em!important;
    margin-bottom:14px!important;
  }

  .ng-reviews-samsung .ng-reviews-head p{
    font-size:14px!important;
    line-height:1.6!important;
  }

  .ng-review-scroll{
    gap:14px!important;
    padding:0 20px 16px!important;
  }

  .ng-review-card-new{
    flex:0 0 82vw!important;
    border-radius:28px!important;
    padding:12px 12px 22px!important;
  }

  .ng-review-card-new img{
    aspect-ratio:4/5!important;
    border-radius:20px!important;
    margin-bottom:18px!important;
  }

  .ng-review-stars{
    font-size:12px!important;
    margin:0 10px 12px!important;
  }

  .ng-review-card-new h3{
    font-size:21px!important;
    margin:0 10px 10px!important;
  }

  .ng-review-card-new p{
    font-size:14px!important;
    line-height:1.55!important;
    margin:0 10px 16px!important;
  }

  .ng-review-card-new span{
    margin:0 10px!important;
    font-size:10px!important;
    padding:7px 10px!important;
  }
}

/* FAQ — SAMSUNG STYLE */
/* FAQ FIX FOR YOUR CURRENT HTML */
#ng-faq{
  background:#000!important;
  color:#fff!important;
  padding:110px 0!important;
}

#ng-faq .ns-head{
  max-width:900px!important;
  margin:0 auto 46px!important;
  text-align:center!important;
  padding:0 24px!important;
}

#ng-faq .ns-kicker{
  color:#60C4DC!important;
  font-size:12px!important;
  font-weight:900!important;
  letter-spacing:.18em!important;
  text-transform:uppercase!important;
  margin-bottom:16px!important;
}

#ng-faq .ns-title-lg{
  color:#fff!important;
  font-size:clamp(44px,5.8vw,82px)!important;
  line-height:.96!important;
  letter-spacing:-.06em!important;
  font-weight:900!important;
  margin:0!important;
  text-align:center!important;
}

#ng-faq .ns-faq{
  max-width:980px!important;
  margin:0 auto!important;
  padding:0 24px!important;
  border-top:1px solid rgba(255,255,255,.14)!important;
}

#ng-faq .ns-faq__item{
  border-bottom:1px solid rgba(255,255,255,.14)!important;
}

#ng-faq .ns-faq__q{
  width:100%!important;
  background:transparent!important;
  border:0!important;
  color:#fff!important;
  text-align:left!important;
  padding:28px 0!important;
  font-size:22px!important;
  line-height:1.25!important;
  font-weight:850!important;
  letter-spacing:-.035em!important;
  cursor:pointer!important;
}

#ng-faq .ns-faq__q:after{
  content:"+"!important;
  float:right!important;
  color:#60C4DC!important;
  font-size:28px!important;
}

#ng-faq .ns-faq__item.is-open .ns-faq__q:after{
  content:"–"!important;
}

#ng-faq .ns-faq__body{
  display:none!important;
  color:rgba(255,255,255,.68)!important;
  font-size:16px!important;
  line-height:1.7!important;
  max-width:780px!important;
  padding:0 0 28px!important;
}

#ng-faq .ns-faq__item.is-open .ns-faq__body{
  display:block!important;
}

/* MOBILE */
@media(max-width:749px){
  #ng-faq{
    padding:72px 0!important;
  }

  #ng-faq .ns-head{
    margin-bottom:30px!important;
    padding:0 22px!important;
  }

  #ng-faq .ns-kicker{
    font-size:10px!important;
    letter-spacing:.14em!important;
    margin-bottom:12px!important;
  }

  #ng-faq .ns-title-lg{
    font-size:clamp(34px,10vw,48px)!important;
    line-height:1!important;
    letter-spacing:-.045em!important;
  }

  #ng-faq .ns-faq{
    padding:0 22px!important;
  }

  #ng-faq .ns-faq__q{
    font-size:18px!important;
    padding:22px 0!important;
  }

  #ng-faq .ns-faq__body{
    font-size:14px!important;
    line-height:1.65!important;
    padding:0 0 22px!important;
  }
}


  .ns-ng-apple .ns-overview-grid,
  .ns-ng-apple .ng-spec-grid{
    grid-template-columns:1fr;
  }

  .ns-ng-apple .ns-banner{
    min-height:auto;
    display:flex;
    flex-direction:column;
  }

  .ns-ng-apple .ns-banner picture,
  .ns-ng-apple .ns-banner img{
    height:auto;
  }

  .ns-ng-apple .ns-banner:after,
  .ns-ng-apple .ns-banner:first-child:before{
    display:none;
  }

  .ns-ng-apple .ns-banner__content{
    position:relative;
    left:auto;
    bottom:auto;
    width:100%;
    padding:28px 20px 48px!important;
    text-align:center;
    background:#000!important;
  }

  .ns-ng-apple .ns-usecases{
    grid-template-columns:1fr;
  }

  .ns-ng-apple .ns-stage{
    min-height:420px;
    order:-1;
  }

  .ns-ng-apple .ng-review-card-new{
    min-width:82vw;
  }
}

/* FORCE FEATURE GRID TOP/BOTTOM BREATHING SPACE */

.ns-ng-apple .ns-feature-panels,
.ns-ng-apple .ns-feature-grid,
.ns-ng-apple .ns-features,
.ns-ng-apple .ng-features,
.ns-ng-apple .ng-feature-grid{
  padding-top:80px!important;
  padding-bottom:80px!important;
  background:#000!important;
}

/* space between each feature row/card */
.ns-ng-apple .ns-feature-panels > *,
.ns-ng-apple .ns-feature-grid > *,
.ns-ng-apple .ns-features > *,
.ns-ng-apple .ng-features > *,
.ns-ng-apple .ng-feature-grid > *{
  margin-top:0!important;
}

/* add black breathing space after hero/banner */
.ns-ng-apple .ns-banner,
.ns-ng-apple .ns-hero,
.ns-ng-apple .ns-product-hero{
  margin-bottom:50px!important;
}

/* remove if too much */
.ns-ng-apple .ns-banner + .ns-feature-panels,
.ns-ng-apple .ns-banner + .ns-feature-grid,
.ns-ng-apple .ns-banner + .ns-features{
  margin-top:50px!important;
}

/* remove gap between Light-speed feature and thickness section */

.ns-banner-stack{
margin-bottom:0!important;
padding-bottom:0!important;
}

.ns-banner:last-child{
margin-bottom:0!important;
padding-bottom:0!important;
}

.ng-thickness{
margin-top:0!important;
padding-top:0!important; /* removes gap */
}

/* if Dawn adds spacing */
.ng-thickness.ns-anchor{
margin-top:-1px!important;
}

.ng-thickness__media{
position:relative;
}

/* MOBILE reduce confidence section spacing */
@media screen and (max-width: 768px){

/* section wrapper */
#shopify-section-template--main__confidence,
#shopify-section-template--confidence,
#ns-confidence,
.ns-confidence{
  margin:0 !important;
  padding:28px 0 !important;
}

/* kill Dawn section spacing */
.section,
.shopify-section{
  margin-bottom:0 !important;
}

/* inner wrapper */
#ns-confidence .ns-shell,
.ns-confidence .ns-shell{
  padding:0 18px !important;
}

/* heading spacing */
#ns-confidence .ns-head,
.ns-confidence .ns-head{
  margin-bottom:16px !important;
}

/* confidence cards */
#ns-confidence .ns-card,
.ns-confidence .ns-card{
  padding:16px !important;
}

/* grid spacing */
#ns-confidence .ns-grid,
.ns-confidence .ns-grid{
  gap:12px !important;
}

}

/* =========================
   WHY ULTRA THIN
   matches current homepage style
========================= */
/* =========================
WHY NANOSECOND
========================= */

.ns-why-thin{
width:100%;
background:#fff;
color:#111;
padding:48px 0;
font-family:Inter,sans-serif;
overflow:hidden;
}

.ns-why-wrap{
max-width:calc(var(--ns-max-centered,1180px) + (var(--ns-page-pad-desktop,36px) * 2));
margin:0 auto;
padding-left:var(--ns-page-pad-desktop,36px);
padding-right:var(--ns-page-pad-desktop,36px);
}

/* CENTERED HEAD */
.ns-why-head{
max-width:860px;
margin:0 auto 34px;
text-align:center;
}

.ns-why-kicker{
display:block;
color:#60C4DC;
font-size:12px;
font-weight:900;
letter-spacing:.18em;
text-transform:uppercase;
line-height:1;
margin:0 0 10px;
}

.ns-why-head h2{
margin:0 auto 14px;
max-width:8ich;
font-size:clamp(34px,4vw,52px);
line-height:.98;
letter-spacing:-.05em;
font-weight:900;
color:#111;
}

.ns-why-head p{
margin:0 auto;
max-width:52ch;
font-size:16px;
line-height:1.6;
color:rgba(0,0,0,.62);
}

/* GRID */
.ns-why-grid{
display:grid;
grid-template-columns:minmax(0,1fr) minmax(0,1.18fr);
gap:24px;
align-items:stretch;
}

/* CARDS */
.ns-why-copy,
.ns-why-media{
border-radius:24px;
background:#f6f6f6;
border:1px solid rgba(0,0,0,.06);
overflow:hidden;
}

.ns-why-copy{
padding:34px;
display:flex;
flex-direction:column;
justify-content:center;
background:
radial-gradient(circle at 82% 18%, rgba(96,196,220,.08), transparent 35%),
#f6f6f6;
}

.ns-why-copy span{
color:#60C4DC;
font-size:12px;
font-weight:900;
letter-spacing:.14em;
}

.ns-why-copy h3{
margin:14px 0 10px;
font-size:clamp(28px,3vw,42px);
line-height:1.02;
letter-spacing:-.045em;
font-weight:900;
color:#111;
}

.ns-why-copy p{
margin:0;
max-width:34ch;
font-size:15px;
line-height:1.6;
color:rgba(0,0,0,.62);
}

/* IMAGE PANEL */
.ns-why-media{
position:relative;
min-height:420px;
isolation:isolate;
}

.ns-why-media picture,
.ns-why-media img{
display:block;
width:100%;
height:100%;
}

.ns-why-media img{
object-fit:cover;
transform:scale(1.04);
transition:transform 1.2s ease;
}

/* subtle parallax */
.ns-why-media:hover img{
transform:scale(1.08) translateY(-8px);
}

/* samsung light sweep */
.ns-why-sweep{
position:absolute;
inset:-40%;
pointer-events:none;
z-index:2;

background:linear-gradient(
115deg,
transparent 34%,
rgba(255,255,255,.04) 42%,
rgba(255,255,255,.55) 49%,
rgba(96,196,220,.22) 53%,
rgba(255,255,255,.06) 58%,
transparent 68%
);

transform:translateX(-60%);
mix-blend-mode:screen;
animation:nsSweep 4.8s ease-in-out infinite;
}

@keyframes nsSweep{
0%{
transform:translateX(-65%);
opacity:0;
}
18%{
opacity:.85;
}
46%{
transform:translateX(70%);
opacity:.92;
}
70%{
opacity:0;
}
100%{
transform:translateX(70%);
opacity:0;
}
}

.ns-why-media:after{
content:"";
position:absolute;
inset:0;
pointer-events:none;
z-index:1;
background:
radial-gradient(circle at 72% 18%, rgba(96,196,220,.18), transparent 32%),
linear-gradient(180deg, transparent, rgba(0,0,0,.08));
}

/* LARGE DESKTOP */
@media(min-width:1200px){

.ns-why-thin{
padding-top:56px;
padding-bottom:56px;
}

.ns-why-grid{
gap:28px;
}

}

/* TABLET */
@media(max-width:989px){

.ns-why-thin{
padding-top:36px;
padding-bottom:36px;
}

.ns-why-grid{
gap:16px;
}

.ns-why-head h2{
font-size:clamp(28px,4vw,38px);
}

.ns-why-head p,
.ns-why-copy p{
font-size:14px;
}

.ns-why-media{
min-height:320px;
}

}

/* MOBILE */
@media(max-width:749px){

.ns-why-thin{
padding-top:24px !important;
padding-bottom:24px !important;
}

.ns-why-wrap{
padding-left:var(--ns-page-pad-mobile,16px);
padding-right:var(--ns-page-pad-mobile,16px);
}

.ns-why-head{
margin:0 auto 18px;
text-align:center;
}

.ns-why-kicker{
font-size:10px;
margin-bottom:6px;
}

.ns-why-head h2{
font-size:24px;
max-width:7ich;
margin:0 auto 8px;
line-height:1.02;
text-align:center;
}

.ns-why-head p{
font-size:12px;
max-width:30ch;
margin:0 auto;
text-align:center;
}

.ns-why-grid{
grid-template-columns:1fr;
gap:10px;
}

.ns-why-copy,
.ns-why-media{
border-radius:16px;
}

/* centered content card */
.ns-why-copy{
padding:18px;
text-align:center;
align-items:center;
justify-content:center;
}

.ns-why-copy span{
display:block;
width:100%;
text-align:center;
margin:0 auto 6px;
}

.ns-why-copy h3{
font-size:22px;
margin:10px auto 6px;
max-width:12ch;
text-align:center;
}

.ns-why-copy p{
font-size:12px;
max-width:20ich;
margin:0 auto;
text-align:center;
}

.ns-why-media{
min-height:auto;
aspect-ratio:4/3;
}

.ns-why-media img{
transform:scale(1.02);
}

.ns-why-media:hover img{
transform:scale(1.04);
}

.ns-why-sweep{
animation-duration:5.8s;
}

}

/* reduced motion */
@media (prefers-reduced-motion:reduce){

.ns-why-sweep{
animation:none;
opacity:0;
}

.ns-why-media img{
transition:none;
}

}

/* ===== HERO MOBILE: ultra low left + smaller blue kicker ===== */
@media (max-width:749px){

/* move text almost bottom-left */
.hero__content,
.ns-hero-slide__content{
position:absolute !important;
left:12px !important;
bottom:10px !important;
top:auto !important;
right:auto !important;
transform:none !important;
padding:0 !important;
margin:0 !important;
max-width:72% !important;
text-align:left !important;
z-index:20;
background:none !important;
}

/* headline tighter */
.hero__title{
font-size:38px !important;
line-height:.92 !important;
letter-spacing:-.06em !important;
margin:0 0 8px !important;
}

/* description smaller */
.ns-hero-slide__desc{
font-size:18px !important;
line-height:1.32 !important;
margin:0 0 12px !important;
max-width:24ch !important;
}

/* make blue "before text"/kicker smaller */
.hero .section-label,
.hero__eyebrow,
.ns-kicker{
font-size:8px !important;
letter-spacing:.14em !important;
padding:4px 8px !important;
margin-bottom:8px !important;
}

/* smaller blue dot before text */
.hero .section-label:before,
.section-label:before{
width:4px !important;
height:4px !important;
margin-right:5px !important;
}

/* optional buttons smaller */
.hero .btn{
min-height:36px !important;
padding:0 14px !important;
font-size:11px !important;
}

/* taller image so text sits low */
.hero__visual,
.hero__visual-img,
.hero img{
min-height:560px !important;
object-fit:cover;
object-position:center;
}

}

/* BIGGER LOGO + TYPE FOR ns-footer */
.ns-footer__logo img{
height:44px !important;   /* was ~30-34 */
width:auto !important;
}

.ns-footer__tagline{
font-size:13px !important;
line-height:1.5 !important;
max-width:32ch !important;
}

.ns-footer__promo{
font-size:9px !important;
padding:6px 10px !important;
}

.ns-footer__title{
font-size:10px !important;
letter-spacing:.14em !important;
margin-bottom:8px !important;
}

.ns-footer__links{
gap:6px !important;
}

.ns-footer__link{
font-size:12px !important;
line-height:1.3 !important;
}

.ns-footer__copy{
font-size:11px !important;
}

.ns-footer__legal-link{
font-size:11px !important;
}

/* mobile */
@media(max-width:749px){

.ns-footer__logo img{
height:38px !important;
}

.ns-footer__tagline{
font-size:12px !important;
}

.ns-footer__title{
font-size:9px !important;
}

.ns-footer__link{
font-size:11px !important;
}

.ns-footer__copy,
.ns-footer__legal-link{
font-size:10px !important;
}

}

/* REMOVE BOX LOOK + BLUE GLOW LINE */
.ng-review-card{
  background:transparent !important;
  border:0 !important;
  border-top:1px solid rgba(96,196,220,.55) !important;
  box-shadow:0 -10px 28px rgba(96,196,220,.18) !important;
  border-radius:0 !important;
}

.ng-review-card picture{
  border-radius:0 !important;
  background:transparent !important;
}

.ng-review-card img{
  border-radius:0 !important;
}

.ng-review-card:before,
.ng-review-card:after{
  display:none !important;
}

.ng-review-stars{
  color:#60C4DC !important;
  text-shadow:0 0 14px rgba(96,196,220,.55);
}

.nc-product__meta{
display:flex;
gap:8px;
flex-wrap:wrap;
margin-bottom:24px;
}

.nc-product__meta span{
display:inline-flex;
align-items:center;
justify-content:center;
min-height:30px;
padding:0 12px;
border-radius:999px;
background:rgba(2,195,154,.10);
color:#027f66;
font-size:12px;
font-weight:900;
letter-spacing:-.01em;
}

.nc-product__meta span:after{
display:none!important;
}

<style>
/* ===== FORCE CLEAN COMPARE / BEFORE-AFTER / FAQ OVERRIDE ===== */

/* SECTION BASE */
.nc-compare,
.nc-compare-section,
.nc-faq{
  background:#fff !important;
  color:#111 !important;
  padding:110px 0 !important;
  font-family:Inter,-apple-system,BlinkMacSystemFont,"SF Pro Display",Arial,sans-serif !important;
}

.nc-compare *,
.nc-compare-section *,
.nc-faq *{
  box-sizing:border-box !important;
}

/* CONTAINERS */
.nc-compare__shell,
.nc-compare-shell,
.nc-faq__shell{
  max-width:1280px !important;
  margin:0 auto !important;
  padding:0 clamp(18px,4vw,56px) !important;
}

/* HEADINGS */
.nc-compare__head,
.nc-compare-head,
.nc-faq__head{
  max-width:860px !important;
  margin:0 auto 56px !important;
  text-align:center !important;
}

.nc-compare__eyebrow,
.nc-compare-eyebrow,
.nc-faq__eyebrow{
  color:#02C39A !important;
  font-size:12px !important;
  font-weight:900 !important;
  letter-spacing:.18em !important;
  text-transform:uppercase !important;
  margin-bottom:16px !important;
}

.nc-compare h2,
.nc-compare-section h2,
.nc-faq h2{
  color:#111 !important;
  font-size:clamp(42px,5.6vw,78px) !important;
  line-height:.92 !important;
  letter-spacing:-.07em !important;
  font-weight:950 !important;
  margin:0 auto 18px !important;
}

.nc-compare p,
.nc-compare-section p,
.nc-faq p{
  color:#66717b !important;
  font-size:16px !important;
  line-height:1.65 !important;
}

/* COMPARE CARDS */
.nc-guide,
.nc-format-grid{
  display:grid !important;
  grid-template-columns:repeat(3,1fr) !important;
  gap:18px !important;
  margin-bottom:90px !important;
}

.nc-guide__item,
.nc-format-card{
  background:#f6f8f9 !important;
  border:none !important;
  border-radius:28px !important;
  padding:30px !important;
  min-height:230px !important;
  box-shadow:none !important;
  transition:.3s ease !important;
}

.nc-guide__item:hover,
.nc-format-card:hover{
  transform:translateY(-5px) !important;
  background:#eef3f2 !important;
}

.nc-guide__label,
.nc-format-label{
  display:inline-flex !important;
  padding:8px 12px !important;
  border-radius:999px !important;
  background:rgba(2,195,154,.12) !important;
  color:#027f66 !important;
  font-size:11px !important;
  font-weight:900 !important;
  letter-spacing:.12em !important;
  text-transform:uppercase !important;
  margin-bottom:22px !important;
}

.nc-guide__item h3,
.nc-format-card h3{
  color:#111 !important;
  font-size:clamp(28px,2.8vw,42px) !important;
  line-height:.96 !important;
  letter-spacing:-.055em !important;
  font-weight:950 !important;
  margin:0 0 12px !important;
}

/* BEFORE AFTER */
.nc-ba,
.nc-ba-grid{
  display:grid !important;
  grid-template-columns:1fr 1fr !important;
  gap:28px !important;
  align-items:start !important;
}

.nc-ba__copy,
.nc-ba-head{
  grid-column:1 / -1 !important;
  max-width:820px !important;
  margin:0 0 28px !important;
  position:static !important;
}

.nc-ba__visuals{
  display:contents !important;
}

.nc-ba__item,
.nc-ba-item{
  opacity:1 !important;
  transform:none !important;
}

.nc-ba__media,
.nc-ba-media{
  border-radius:28px !important;
  overflow:hidden !important;
  background:#f6f8f9 !important;
}

.nc-ba__media img,
.nc-ba-media img{
  width:100% !important;
  display:block !important;
  aspect-ratio:4/3 !important;
  object-fit:cover !important;
}

.nc-ba__tag,
.nc-ba-label{
  position:absolute !important;
  top:18px !important;
  left:18px !important;
  background:rgba(0,0,0,.72) !important;
  color:#fff !important;
  border-radius:999px !important;
  padding:8px 13px !important;
  font-size:11px !important;
  font-weight:900 !important;
  letter-spacing:.12em !important;
  text-transform:uppercase !important;
}

.nc-ba__tag--after,
.nc-ba-label--after{
  background:#02C39A !important;
}

.nc-ba__text,
.nc-ba-copy{
  padding:20px 4px 0 !important;
}

.nc-ba__text h3,
.nc-ba-copy h3{
  color:#111 !important;
  font-size:clamp(28px,3vw,44px) !important;
  line-height:.96 !important;
  letter-spacing:-.055em !important;
  font-weight:950 !important;
  margin:0 0 10px !important;
}

/* FAQ CLEAN */
.nc-faq__list{
  border-top:1px solid rgba(0,0,0,.12) !important;
}

.nc-faq__item{
  border-bottom:1px solid rgba(0,0,0,.12) !important;
}

.nc-faq__question{
  color:#111 !important;
  background:transparent !important;
  border:none !important;
  padding:26px 0 !important;
  font-size:clamp(22px,2.5vw,32px) !important;
  line-height:1.1 !important;
  letter-spacing:-.045em !important;
  font-weight:900 !important;
}

.nc-faq__answer-inner{
  color:#66717b !important;
  font-size:16px !important;
  line-height:1.7 !important;
}

/* MOBILE */
@media(max-width:900px){
  .nc-compare,
  .nc-compare-section,
  .nc-faq{
    padding:70px 0 !important;
  }

  .nc-compare__head,
  .nc-compare-head,
  .nc-faq__head{
    text-align:left !important;
    margin-bottom:38px !important;
  }

  .nc-guide,
  .nc-format-grid,
  .nc-ba,
  .nc-ba-grid{
    grid-template-columns:1fr !important;
    gap:18px !important;
  }

  .nc-guide,
  .nc-format-grid{
    margin-bottom:64px !important;
  }

  .nc-guide__item,
  .nc-format-card{
    min-height:auto !important;
    padding:24px 20px !important;
    border-radius:22px !important;
  }

  .nc-ba__copy,
  .nc-ba-head{
    margin-bottom:18px !important;
  }

  .nc-ba__media,
  .nc-ba-media{
    border-radius:22px !important;
  }

  .nc-faq__question{
    font-size:22px !important;
    padding:22px 0 !important;
  }
}
</style>

/* FORCE HERO + METRICS SPACING FIX */
.ns-core-x .ns-core-x__hero{
  padding-top:50px !important;
  padding-bottom:24px !important;
}

.ns-core-x .ns-core-x__hero-grid{
  gap:36px !important;
}

.ns-core-x .ns-core-x__metrics{
  padding-top:0 !important;
  padding-bottom:50px !important;
  margin-top:0 !important;
}

.ns-core-x .ns-core-x__metrics-grid{
  margin-top:0 !important;
}

@media(max-width:989px){
  .ns-core-x .ns-core-x__hero{
    padding-top:20px !important;
    padding-bottom:20px !important;
  }

  .ns-core-x .ns-core-x__hero-grid{
    gap:18px !important;
  }

  .ns-core-x .ns-core-x__metrics{
    padding-top:0 !important;
    padding-bottom:36px !important;
  }
}

@media(max-width:768px){
  .ns-core-x .ns-core-x__hero{
    padding-top:16px !important;
    padding-bottom:16px !important;
  }

  .ns-core-x .ns-core-x__metrics{
    padding-top:0 !important;
  }
}

/* FORCE METRICS TO SHOW */
.ns-core-x__metrics{
  display:block !important;
  visibility:visible !important;
  opacity:1 !important;
  height:auto !important;
  padding:28px 0 60px !important;
  background:#050706 !important;
  color:#fff !important;
}

.ns-core-x__metrics-grid{
  display:grid !important;
  grid-template-columns:repeat(4,1fr) !important;
  gap:14px !important;
  opacity:1 !important;
  visibility:visible !important;
}

.ns-core-x__metric{
  display:block !important;
  opacity:1 !important;
  visibility:visible !important;
  transform:none !important;
  background:rgba(255,255,255,.06) !important;
  border:1px solid rgba(255,255,255,.08) !important;
  border-radius:22px !important;
  padding:22px !important;
}

.ns-core-x__metric strong{
  display:block !important;
  color:#fff !important;
  font-size:18px !important;
  margin-bottom:8px !important;
}

.ns-core-x__metric span{
  display:block !important;
  color:rgba(255,255,255,.68) !important;
  font-size:14px !important;
}

@media(max-width:768px){
  .ns-core-x__metrics-grid{
    grid-template-columns:1fr !important;
  }
}

/* MINIMAL LINE METRICS */
.ns-core-x__metrics{
background:#050706;
padding:30px 0 70px;
}

.ns-core-x__metrics-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:34px;
border-top:1px solid rgba(255,255,255,.08);
padding-top:32px;
}

.ns-core-x__metric{
padding:0 24px 0 0;
border-right:1px solid rgba(255,255,255,.08);
background:none !important;
border-radius:0 !important;
box-shadow:none !important;
}

.ns-core-x__metric:last-child{
border-right:none;
padding-right:0;
}

.ns-core-x__metric strong{
display:block;
color:#fff;
font-size:28px;
line-height:1;
letter-spacing:-.04em;
font-weight:900;
margin-bottom:12px;
}

.ns-core-x__metric span{
display:block;
color:rgba(255,255,255,.62);
font-size:14px;
line-height:1.6;
max-width:220px;
}

/* subtle hover */
.ns-core-x__metric{
transition:.3s ease;
}

.ns-core-x__metric:hover{
transform:translateY(-4px);
}

@media(max-width:980px){

.ns-core-x__metrics{
padding:18px 0 48px;
}

.ns-core-x__metrics-grid{
grid-template-columns:repeat(2,1fr);
gap:26px;
}

.ns-core-x__metric:nth-child(2){
border-right:none;
}

}

@media(max-width:640px){

.ns-core-x__metrics-grid{
grid-template-columns:1fr;
gap:22px;
padding-top:22px;
}

.ns-core-x__metric{
border-right:none;
padding:0 0 18px;
border-bottom:1px solid rgba(255,255,255,.08);
}

.ns-core-x__metric:last-child{
border-bottom:none;
padding-bottom:0;
}

.ns-core-x__metric strong{
font-size:24px;
}

}

/* ===== CTA TOP LEFT OVERLAY ===== */

.nl-cta{
position:relative;
min-height:760px;
overflow:hidden;
}

.nl-cta__image{
position:relative;
height:760px;
}

.nl-cta__image img{
width:100%;
height:100%;
object-fit:cover;
display:block;
}

.nl-cta:after{
content:"";
position:absolute;
inset:0;
background:
linear-gradient(
90deg,
rgba(0,0,0,.82) 0%,
rgba(0,0,0,.38) 42%,
rgba(0,0,0,.08) 100%
),
linear-gradient(
180deg,
rgba(0,0,0,.35),
rgba(0,0,0,.05) 45%,
rgba(0,0,0,.55)
);
pointer-events:none;
z-index:1;
}

.nl-cta__content{
position:absolute;
top:70px;
left:60px;
z-index:3;
max-width:640px;
text-align:left;
}

.nl-kicker{
margin-bottom:14px;
color:#EA580C;
font-size:12px;
font-weight:900;
letter-spacing:.18em;
text-transform:uppercase;
}

.nl-title{
margin:0;
font-size:clamp(52px,6vw,92px);
line-height:.9;
letter-spacing:-.065em;
color:#fff;
}

.nl-title span{
color:#EA580C;
}

.nl-sub{
margin-top:18px;
max-width:520px;
color:rgba(255,255,255,.76);
font-size:18px;
line-height:1.65;
}

/* subtle hover zoom */
.nl-cta__image img{
transition:1s ease;
}

.nl-cta:hover img{
transform:scale(1.03);
}


/* ===== TABLET ===== */

@media(max-width:980px){

.nl-cta{
min-height:620px;
}

.nl-cta__image{
height:620px;
}

.nl-cta__content{
top:50px;
left:34px;
max-width:520px;
}

.nl-title{
font-size:58px;
}

.nl-sub{
font-size:16px;
}

}


/* ===== MOBILE ===== */

@media(max-width:768px){

.nl-cta{
min-height:auto;
}

.nl-cta__image{
height:auto;
}

.nl-desktop-img{
display:none;
}

.nl-mobile-img{
display:block;
width:100%;
height:auto;
object-fit:cover;
}

.nl-cta:after{
background:
linear-gradient(
180deg,
rgba(0,0,0,.58) 0%,
rgba(0,0,0,.16) 35%,
rgba(0,0,0,.74) 100%
);
}

.nl-cta__content{
top:26px;
left:18px;
right:18px;
max-width:none;
}

.nl-title{
font-size:38px;
line-height:.96;
}

.nl-sub{
margin-top:14px;
font-size:14px;
line-height:1.55;
max-width:290px;
}

}

/* small phones */
@media(max-width:480px){

.nl-cta__content{
top:20px;
left:14px;
right:14px;
}

.nl-title{
font-size:32px;
}

.nl-sub{
font-size:13px;
max-width:250px;
}

}

/* =========================
NANOLINK FULL MOBILE FIX
========================= */

@media(max-width:768px){

  .nl-page{
    overflow:hidden;
  }

  .nl-shell,
  .nl-why__shell{
    width:calc(100% - 28px)!important;
  }

  .nl-section,
  .nl-why{
    padding:64px 0!important;
  }

  .nl-title,
  .nl-why__head h2{
    font-size:clamp(36px,11vw,44px)!important;
    line-height:.95!important;
    letter-spacing:-.055em!important;
  }

  .nl-sub,
  .nl-copy p,
  .nl-why__head p{
    font-size:15px!important;
    line-height:1.6!important;
  }

  /* SUBNAV */
  .nl-subnav{
    position:relative!important;
  }

  .nl-subnav__inner{
    height:auto!important;
    padding:14px 0!important;
    flex-direction:column!important;
    align-items:flex-start!important;
  }

  .nl-links{
    width:100%!important;
    display:flex!important;
    overflow-x:auto!important;
    gap:14px!important;
    padding-bottom:6px!important;
  }

  .nl-links a{
    white-space:nowrap!important;
    font-size:12px!important;
  }

  /* HERO */
  .nl-hero{
    min-height:auto!important;
    display:block!important;
  }

  .nl-hero__image{
    position:relative!important;
    inset:auto!important;
  }

  .nl-hero__image img{
    height:auto!important;
    object-fit:contain!important;
  }

  .nl-hero:after{
    display:none!important;
  }

  .nl-hero__content{
    width:calc(100% - 28px)!important;
    max-width:none!important;
    padding:34px 0 58px!important;
    text-align:left!important;
  }

  .nl-hero__buttons{
    display:grid!important;
    grid-template-columns:1fr!important;
    gap:12px!important;
  }

  .nl-btn{
    width:100%!important;
  }

  /* TRUST */
  .nl-trust{
    grid-template-columns:1fr 1fr!important;
    gap:12px!important;
  }

  .nl-trust__item{
    padding:22px 16px!important;
    border-radius:20px!important;
  }

  .nl-trust__item strong{
    font-size:24px!important;
  }

  .nl-trust__item span{
    font-size:13px!important;
  }

  /* WHY WIRED */
  .nl-why__head{
    text-align:left!important;
    margin-bottom:28px!important;
  }

  .nl-why__image{
    margin:30px 0 26px!important;
  }

  .nl-why__image img{
    aspect-ratio:4/3!important;
  }

  .nl-why__points{
    grid-template-columns:1fr!important;
    gap:18px!important;
  }

  .nl-why__point{
    border-right:none!important;
    border-bottom:1px solid rgba(255,255,255,.10)!important;
    padding:0 0 18px!important;
  }

  .nl-why__point:last-child{
    border-bottom:none!important;
  }

  /* SPLIT SECTIONS */
  .nl-split,
  .nl-split--reverse{
    grid-template-columns:1fr!important;
    gap:30px!important;
  }

  .nl-split--reverse .nl-copy{
    order:1!important;
  }

  .nl-split--reverse .nl-card-img{
    order:2!important;
  }

  .nl-copy{
    text-align:left!important;
  }

  .nl-copy h2{
    font-size:38px!important;
  }

  .nl-card-img{
    border-radius:22px!important;
  }

  /* FEATURES + USE CASES */
  .nl-grid,
  .nl-usecases{
    grid-template-columns:1fr!important;
    gap:14px!important;
  }

  .nl-feature{
    min-height:auto!important;
    padding:26px 22px!important;
    border-radius:22px!important;
  }

  .nl-feature__icon{
    margin-bottom:34px!important;
  }

  .nl-usecase{
    border-radius:22px!important;
  }

  .nl-usecase__body{
    padding:22px!important;
  }

  /* SPECS */
  .nl-specs-wrap{
    border-radius:24px!important;
  }

  .nl-specs{
    border-radius:23px!important;
  }

  .nl-spec-row{
    grid-template-columns:1fr!important;
    text-align:left!important;
    padding:20px!important;
    gap:6px!important;
  }

  .nl-spec-row:hover{
    transform:none!important;
  }

  /* CTA */
  .nl-cta{
    min-height:auto!important;
    display:block!important;
  }

  .nl-cta__image{
    position:relative!important;
    inset:auto!important;
  }

  .nl-cta__image img{
    height:auto!important;
    object-fit:contain!important;
  }

  .nl-cta:after{
    display:none!important;
  }

  .nl-cta__content{
    position:relative!important;
    width:calc(100% - 28px)!important;
    max-width:none!important;
    padding:34px 0 64px!important;
    text-align:left!important;
  }
}

@media(max-width:480px){

  .nl-trust{
    grid-template-columns:1fr!important;
  }

  .nl-title,
  .nl-why__head h2{
    font-size:34px!important;
  }

  .nl-copy h2{
    font-size:34px!important;
  }

  .nl-cleanitem{
    grid-template-columns:38px 1fr!important;
    gap:12px!important;
  }

  .nl-cleanicon{
    width:38px!important;
    height:38px!important;
    border-radius:14px!important;
  }
}

/* STICKY SUBNAV — DESKTOP + MOBILE */
.ns-core-x__subnav{
  position:sticky !important;
  top:0 !important;
  z-index:999 !important;
  background:rgba(0,0,0,.86) !important;
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(255,255,255,.1);
}

.ns-core-x__subnav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  min-height:58px;
}

.ns-core-x__nav{
  display:flex;
  align-items:center;
  gap:22px;
}

.ns-core-x__subnav-btn{
  display:inline-flex !important;
  align-items:center;
  justify-content:center;
  white-space:nowrap;
  flex-shrink:0;
}

/* MOBILE FIX */
@media(max-width:768px){
  .ns-core-x__subnav{
    position:sticky !important;
    top:0 !important;
    z-index:999 !important;
  }

  .ns-core-x__subnav-inner{
    min-height:auto;
    padding:12px 14px;
    display:grid !important;
    grid-template-columns:1fr auto;
    gap:10px 14px;
    align-items:center;
  }

  .ns-core-x__brand{
    grid-column:1 / 2;
  }

  .ns-core-x__subnav-btn{
    grid-column:2 / 3;
    grid-row:1;
    display:inline-flex !important;
    font-size:12px;
    padding:8px 14px;
    border-radius:999px;
  }

  .ns-core-x__nav{
    grid-column:1 / 3;
    width:100%;
    display:flex !important;
    gap:16px;
    overflow-x:auto;
    white-space:nowrap;
    padding-bottom:4px;
    scrollbar-width:none;
  }

  .ns-core-x__nav::-webkit-scrollbar{
    display:none;
  }

  .ns-core-x__nav a{
    flex:0 0 auto;
    font-size:12px;
  }
}

/* MOVE HERO TEXT TOWARDS CENTER */
.ns-core-x__hero-copy{
  max-width:620px;
  margin-left:auto;     /* pushes it inward */
  margin-right:auto;    /* keeps it centered in its column */
}

/* optional: tighten layout so it feels more centered */
.ns-core-x__hero-grid{
  align-items:center;
}

/* DESKTOP — slight right shift (center-left feel) */
@media(min-width:768px){
  .ns-core-x__hero-copy{
    margin-left:6vw;   /* adjust: 4vw–10vw depending on taste */
    margin-right:auto;
  }
}

