@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800&family=Rubik:wght@500;600;700;800&display=swap");

:root {
  --cyan: #00aeef;
  --cyan-dark: #0090c8;
  --yellow: #ffb81c;
  --magenta: #e61e8c;
  --green: #21c48e;
  --red: #e31c23;
  --navy: #0b2e5b;
  --navy-mid: #123a6f;
  --navy-deep: #071e3d;
  --ink: #14233d;
  --muted: #5b6b82;
  --line: #d7e6f2;
  --paper: #ffffff;
  --soft: #f3fbff;
  --topbar: #d7f3fc;
  --shadow-sm: 0 1px 2px rgba(11, 46, 91, 0.06);
  --shadow-md: 0 8px 24px rgba(11, 46, 91, 0.08);
  --shadow-lg: 0 18px 40px rgba(11, 46, 91, 0.12);
  --radius: 18px;
  --wrap: 1200px;
  --header-h: 92px;
  --font-h: "Rubik", "Nunito Sans", sans-serif;
  --font-b: "Nunito Sans", sans-serif;
  --glass: rgba(255, 255, 255, 0.42);
  --glass-strong: rgba(255, 255, 255, 0.62);
  --glass-border: rgba(255, 255, 255, 0.72);
  --glass-blur: 18px;
  --neo: #e7f3fb;
  --neo-hi: #ffffff;
  --neo-lo: rgba(11, 46, 91, 0.14);
  --neo-out: 8px 8px 18px var(--neo-lo), -6px -6px 14px var(--neo-hi);
  --neo-in: inset 5px 5px 12px rgba(11, 46, 91, 0.08), inset -5px -5px 12px rgba(255, 255, 255, 0.9);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 168px;
  overflow-x: hidden;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-b);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(0, 174, 239, 0.12), transparent 50%),
    radial-gradient(900px 500px at 100% 20%, rgba(230, 30, 140, 0.06), transparent 46%),
    var(--neo);
  font-size: 16px;
  line-height: 1.55;
  min-height: 100vh;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font-family: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--navy);
  color: #fff;
  padding: 10px 16px;
  z-index: 100;
  border-radius: 8px;
}

.skip-link:focus {
  left: 12px;
}

.wrap {
  width: min(var(--wrap), calc(100% - 40px));
  margin-inline: auto;
}

.rainbow {
  width: 92px;
  height: 5px;
  border-radius: 99px;
  margin: 12px auto 0;
  background: linear-gradient(90deg, var(--cyan), var(--yellow), var(--magenta), var(--green));
}

/* ---------- Announcement + sticky chrome ---------- */
.sticky-stack {
  position: sticky;
  top: 0;
  z-index: 70;
}

.announce {
  background: linear-gradient(90deg, rgba(11, 46, 91, 0.92), rgba(0, 144, 200, 0.88), rgba(11, 46, 91, 0.92));
  color: #fff;
  overflow: hidden;
  position: relative;
  padding-right: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--neo-out);
}

.announce-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
  padding: 9px 0;
}

.announce:hover .announce-track {
  animation-play-state: paused;
}

.announce-seq {
  display: flex;
  align-items: center;
  gap: 36px;
  padding-right: 36px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.announce-seq span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.announce-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 3px rgba(255, 184, 28, 0.25);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.announce-close {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  display: grid;
  place-items: center;
  backdrop-filter: blur(8px);
}

.announce-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

body.announce-off .announce { display: none; }
body.announce-off { scroll-padding-top: 108px; }

/* ---------- Top bar ---------- */
.topbar {
  background: linear-gradient(180deg, rgba(215, 243, 252, 0.88), rgba(215, 243, 252, 0.7));
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  color: var(--navy);
  font-size: 13.5px;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 38px;
  flex-wrap: wrap;
  padding: 6px 0;
}

.topbar-left,
.topbar-right,
.topbar a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.topbar-right {
  gap: 18px;
  flex-wrap: wrap;
}

.topbar svg {
  flex-shrink: 0;
}

.ig-link {
  color: var(--navy);
}

.ig-link:hover {
  color: var(--magenta);
}

/* ---------- Header ---------- */
.site-header {
  background: rgba(231, 243, 251, 0.62);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--neo-out);
  z-index: 50;
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: var(--header-h);
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  min-width: 168px;
}

.logo-dots {
  display: flex;
  gap: 4px;
}

.dot {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 17px;
  display: grid;
  place-items: center;
  letter-spacing: -0.02em;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

.dot-d { background: var(--cyan); }
.dot-i1 { background: var(--yellow); }
.dot-g { background: var(--magenta); }
.dot-i2 { background: var(--green); }

.brand-name {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  color: var(--cyan);
  -webkit-text-stroke: 0.7px var(--navy);
  paint-order: stroke fill;
}

.brand-tag {
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--red);
  text-align: center;
  line-height: 1.2;
  max-width: 180px;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.nav a,
.nav-btn {
  background: none;
  border: 0;
  font-size: 15.5px;
  font-weight: 800;
  color: var(--ink);
  padding: 10px 12px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 44px;
  transition: color 200ms ease, background 200ms ease;
}

.nav a:hover,
.nav-btn:hover,
.nav a:focus-visible,
.nav-btn:focus-visible {
  color: var(--cyan-dark);
  background: var(--soft);
  outline: none;
}

.nav a.is-active {
  color: var(--cyan-dark);
  box-shadow: inset 0 -3px 0 var(--cyan);
  border-radius: 0;
  background: transparent;
}

.nav-item {
  position: relative;
}

.caret {
  width: 10px;
  height: 10px;
  transition: transform 200ms ease;
}

.nav-item:hover .caret,
.nav-item:focus-within .caret {
  transform: rotate(180deg);
}

.dropdown {
  position: absolute;
  top: calc(100% - 4px);
  left: 0;
  min-width: 220px;
  background: rgba(231, 243, 251, 0.78);
  backdrop-filter: blur(18px) saturate(170%);
  -webkit-backdrop-filter: blur(18px) saturate(170%);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 14px;
  box-shadow: var(--neo-out);
  padding: 8px;
  display: none;
  z-index: 20;
}

.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  display: grid;
}

.dropdown a {
  font-size: 14px;
  font-weight: 700;
  padding: 10px 12px;
  border-radius: 10px;
  justify-content: flex-start;
  box-shadow: none;
  min-height: 40px;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 4px;
}

.icon-btn {
  width: 44px;
  height: 44px;
  border: 0;
  background: rgba(231, 243, 251, 0.85);
  color: var(--navy);
  border-radius: 14px;
  display: grid;
  place-items: center;
  position: relative;
  box-shadow: var(--neo-out);
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: background 200ms ease, color 200ms ease, box-shadow 200ms ease;
}

.icon-btn:hover,
.icon-btn:focus-visible {
  background: rgba(255, 255, 255, 0.9);
  color: var(--cyan-dark);
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
  box-shadow: var(--neo-in);
}

.cart-count {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  display: grid;
  place-items: center;
}

.menu-toggle {
  display: none;
}

/* ---------- Hero / liquid glass ---------- */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 42px 0 28px;
  background:
    radial-gradient(900px 480px at 88% 12%, rgba(0, 174, 239, 0.16), transparent 58%),
    radial-gradient(640px 360px at 8% 88%, rgba(230, 30, 140, 0.08), transparent 62%),
    linear-gradient(180deg, #eef8ff 0%, #f7fcff 42%, #ffffff 100%);
}

.hero-blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.55;
  animation: floaty 9s ease-in-out infinite;
}

.blob-b { animation-delay: -3s; }
.blob-c { animation-delay: -6s; }

@keyframes floaty {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(12px, -16px, 0); }
}

.blob-a {
  width: 280px;
  height: 280px;
  right: 12%;
  top: -60px;
  background: rgba(0, 174, 239, 0.28);
}

.blob-b {
  width: 220px;
  height: 220px;
  left: 6%;
  bottom: -40px;
  background: rgba(33, 196, 142, 0.18);
}

.blob-c {
  width: 180px;
  height: 180px;
  left: 38%;
  top: 18%;
  background: rgba(255, 184, 28, 0.16);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.98fr 1.02fr;
  gap: 18px;
  align-items: center;
}

.hero-copy {
  padding: 12px 8px 12px 0;
}

.hero h1 {
  font-family: var(--font-h);
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.02;
  margin: 0 0 18px;
  letter-spacing: -0.035em;
  font-weight: 800;
  color: var(--navy);
}

.hero h1 .c-cyan { color: #00aeef; }
.hero h1 .c-magenta { color: var(--magenta); }
.hero h1 .c-green { color: var(--green); }

.hero-lead {
  font-size: 17px;
  color: #3a4d68;
  font-weight: 700;
  margin: 0 0 28px;
  max-width: 460px;
  line-height: 1.45;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 26px;
  border-radius: 10px;
  font-weight: 800;
  border: 0;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease, opacity 200ms ease;
}

.btn:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
}

.btn-navy {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 10px 20px rgba(11, 46, 91, 0.22);
}

.btn-navy:hover {
  background: var(--navy-mid);
  transform: translateY(-1px);
}

.btn-cyan {
  background: var(--cyan);
  color: #fff;
}

.btn-cyan:hover {
  background: var(--cyan-dark);
  transform: translateY(-1px);
}

.btn-ghost {
  background: #fff;
  color: var(--navy);
  border: 1.5px solid var(--line);
}

.btn-ghost:hover {
  border-color: var(--cyan);
  color: var(--cyan-dark);
}

.btn-shop {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 54px;
  padding: 8px 10px 8px 26px;
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.01em;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  cursor: pointer;
  background: linear-gradient(180deg, #1a4f8a 0%, #0b2e5b 55%, #071e3d 100%);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow:
    0 14px 30px rgba(11, 46, 91, 0.28),
    0 0 0 6px rgba(0, 174, 239, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.btn-shop::before {
  content: "";
  position: absolute;
  inset: 1px 8px auto 8px;
  height: 48%;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0));
  pointer-events: none;
  z-index: 0;
}

.btn-shop:hover {
  transform: translateY(-1px);
  box-shadow:
    0 18px 34px rgba(11, 46, 91, 0.32),
    0 0 0 7px rgba(0, 174, 239, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-shop:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
}

.btn-orb {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 6px 14px rgba(7, 30, 61, 0.18);
}

.hero-perks {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 34px;
  width: fit-content;
  max-width: 100%;
  flex-wrap: wrap;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--neo-out), inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.perk {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 800;
  color: var(--navy);
  padding: 6px 14px;
}

.perk + .perk {
  border-left: 1px solid rgba(11, 46, 91, 0.08);
}

.perk-ico {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 6px 14px rgba(11, 46, 91, 0.08);
}

.hero-visual {
  position: relative;
  min-height: 540px;
  height: 560px;
}

.glass-arch {
  position: absolute;
  left: 8%;
  right: 10%;
  top: 2%;
  height: 78%;
  border-radius: 50% 50% 18% 18% / 72% 72% 12% 12%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(180, 220, 240, 0.08) 55%, rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    inset 0 -20px 40px rgba(0, 174, 239, 0.06),
    0 20px 50px rgba(11, 46, 91, 0.08);
}

.glass-dais {
  position: absolute;
  width: 84%;
  height: 22%;
  left: 4%;
  bottom: 6%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.92), rgba(176, 220, 240, 0.45) 46%, rgba(120, 188, 220, 0.28));
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow:
    0 24px 40px rgba(11, 46, 91, 0.14),
    inset 0 8px 18px rgba(255, 255, 255, 0.7),
    inset 0 -10px 16px rgba(0, 140, 190, 0.12);
  transform: perspective(400px) rotateX(62deg);
  z-index: 2;
}

.glass-dais::after {
  content: "";
  position: absolute;
  left: 16%;
  right: 16%;
  top: 18%;
  height: 34%;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0));
}

.prop {
  position: absolute;
  object-fit: contain;
  filter: drop-shadow(0 16px 18px rgba(11, 46, 91, 0.18));
  pointer-events: none;
}

.prop-polo {
  width: 46%;
  left: 14%;
  bottom: 16%;
  z-index: 4;
}

.polo-mark {
  position: absolute;
  left: 32%;
  bottom: 46%;
  display: flex;
  gap: 2px;
  z-index: 5;
  transform: scale(0.42);
  transform-origin: left center;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.12));
}

.prop-cap {
  width: 27%;
  left: 26%;
  bottom: 44%;
  z-index: 6;
}

.prop-mug {
  width: 16%;
  left: 10%;
  bottom: 11%;
  z-index: 7;
}

.prop-cards {
  width: 22%;
  left: 30%;
  bottom: 8%;
  z-index: 7;
}

.prop-lanyard {
  width: 13%;
  left: 49%;
  bottom: 10%;
  z-index: 8;
}

.roll-banner {
  position: absolute;
  right: 2%;
  bottom: 10%;
  width: 29%;
  height: 78%;
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  filter: drop-shadow(0 18px 22px rgba(11, 46, 91, 0.22));
}

.banner-face {
  flex: 1;
  width: 100%;
  background: linear-gradient(180deg, #163a6e 0%, #0b2e5b 42%, #071e3d 100%);
  border-radius: 10px 10px 4px 4px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 18px 12px 16px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.banner-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.banner-logo .dot {
  width: 22px;
  height: 22px;
  font-size: 10px;
}

.banner-logo strong {
  font-family: var(--font-h);
  font-size: 9px;
  letter-spacing: 0.08em;
  color: #8fe3ff;
}

.banner-face ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  width: 100%;
}

.banner-face li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.swatch {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.12);
}

.sw-yellow { background: var(--yellow); }
.sw-cyan { background: var(--cyan); }
.sw-pink { background: var(--magenta); }
.sw-green { background: var(--green); }

.banner-base {
  width: 72%;
  height: 10px;
  margin-top: 2px;
  border-radius: 4px;
  background: linear-gradient(180deg, #2a2a2a, #111);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.25);
}

/* ---------- Sections ---------- */
.section {
  padding: 72px 0;
}

.section-head {
  text-align: center;
  margin-bottom: 40px;
}

.section-head h2 {
  font-family: var(--font-h);
  font-size: clamp(26px, 3vw, 34px);
  margin: 0;
  letter-spacing: 0.04em;
  font-weight: 800;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 18px;
}

.cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  transition: transform 200ms ease;
}

.cat-card:hover {
  transform: translateY(-4px);
}

.cat-thumb {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  border: 2px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 10px;
}

.cat-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cat-card span {
  font-size: 13.5px;
  font-weight: 800;
  text-align: center;
}

.view-all-dots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  width: 56px;
}

.view-all-dots i {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: block;
}

/* ---------- Feature tiles ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-card {
  border-radius: 22px;
  padding: 28px 22px 24px;
  min-height: 210px;
  color: var(--navy);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.62);
}

.feature-card h3 {
  font-family: var(--font-h);
  font-size: 18px;
  margin: 16px 0 8px;
  letter-spacing: 0.02em;
}

.feature-card p {
  margin: 0;
  font-weight: 700;
  color: var(--muted);
  font-size: 14.5px;
}

.f-blue {
  background: linear-gradient(160deg, rgba(0, 174, 239, 0.28), rgba(0, 174, 239, 0.08));
}
.f-yellow {
  background: linear-gradient(160deg, rgba(255, 184, 28, 0.34), rgba(255, 184, 28, 0.1));
}
.f-pink {
  background: linear-gradient(160deg, rgba(230, 30, 140, 0.26), rgba(230, 30, 140, 0.08));
}
.f-green {
  background: linear-gradient(160deg, rgba(33, 196, 142, 0.28), rgba(33, 196, 142, 0.08));
}

.f-ico {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.7);
}

/* ---------- Products ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.product-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(231, 243, 251, 0.5));
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-radius: 20px;
  box-shadow: var(--neo-out);
  border: 1px solid rgba(255, 255, 255, 0.7);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.product-media {
  height: 210px;
  background: linear-gradient(180deg, #f7fbfe, #fff);
  display: grid;
  place-items: center;
  padding: 18px;
}

.product-media img {
  max-height: 180px;
  object-fit: contain;
}

.product-body {
  padding: 8px 18px 20px;
  text-align: center;
}

.product-body h3 {
  font-family: var(--font-h);
  font-size: 17px;
  margin: 0 0 6px;
}

.price {
  color: var(--cyan-dark);
  font-weight: 800;
  margin: 0 0 14px;
}

.product-body .btn {
  width: 100%;
}

/* ---------- Print all ---------- */
.print-all {
  background: var(--soft);
}

.print-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px 12px;
}

.print-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 13.5px;
  text-align: center;
  color: var(--navy);
  transition: transform 200ms ease;
}

.print-item:hover {
  transform: translateY(-3px);
}

.print-thumb {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow-sm);
  border: 2px solid #e7f3fb;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 10px;
}

.print-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.more-orb {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: conic-gradient(var(--cyan), var(--yellow), var(--magenta), var(--green), var(--cyan));
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  box-shadow: var(--shadow-md);
}

.more-orb span {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy);
  display: grid;
  place-items: center;
  font-size: 12px;
}

/* ---------- Why choose ---------- */
.why {
  background: linear-gradient(180deg, #dff4fc, #eaf8fd);
  padding: 56px 0;
}

.why h2 {
  text-align: center;
  font-family: var(--font-h);
  margin: 0 0 36px;
  letter-spacing: 0.03em;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-item {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  font-weight: 800;
  color: var(--navy);
}

.why-ico {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--cyan);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 8px 16px rgba(0, 174, 239, 0.28);
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.15fr 0.9fr;
  gap: 36px;
  align-items: center;
}

.about-photo {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 280px;
}

.building-sign {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 10px 12px 8px;
  box-shadow: var(--shadow-md);
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
}

.about-copy h2 {
  font-family: var(--font-h);
  font-size: 30px;
  margin: 0 0 16px;
  letter-spacing: 0.02em;
}

.about-copy p {
  color: var(--muted);
  font-weight: 600;
  margin: 0 0 14px;
}

.value-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.value-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--navy);
}

.check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cyan);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

/* ---------- Liquid glass bands ---------- */
.lg-band {
  position: relative;
  padding: 28px 0 36px;
  background:
    radial-gradient(900px 280px at 50% 0%, rgba(255,255,255,.7), transparent 60%),
    linear-gradient(180deg, #eaf6ff 0%, #f4fbff 50%, #e8f4fc 100%);
}
.lg-band-2 { padding-top: 8px; }
.lg-band-3 { padding-bottom: 56px; }

.glass-shell {
  background: rgba(255,255,255,.28);
  backdrop-filter: blur(18px) saturate(170%);
  -webkit-backdrop-filter: blur(18px) saturate(170%);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 32px;
  padding: 28px 28px 24px;
  box-shadow: var(--neo-out), inset 0 1px 0 rgba(255,255,255,.9);
}

.cat-row {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.bubble {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 800;
  font-size: 13px;
  text-align: center;
  cursor: pointer;
  transition: transform 200ms ease;
}
.bubble:hover { transform: translateY(-4px); }

.bubble-disc {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 10px;
  background: linear-gradient(180deg, rgba(255,255,255,.9), rgba(231,243,251,.55));
  border: 1px solid rgba(255,255,255,.85);
  box-shadow: var(--neo-out), inset 0 8px 14px rgba(255,255,255,.65);
}
.bubble-disc img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.feat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.glass-feat {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 22px;
  min-height: 168px;
  padding: 22px 20px 18px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.35);
  box-shadow: var(--neo-out);
}
.glass-feat::before {
  content: "";
  position: absolute;
  inset: 1px 10px auto 10px;
  height: 42%;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.38), transparent);
  pointer-events: none;
  z-index: 0;
}
.glass-feat h3,
.glass-feat p,
.glass-feat .gf-ico { position: relative; z-index: 1; }
.glass-feat h3 {
  font-family: var(--font-h);
  font-size: 15.5px;
  margin: 12px 0 6px;
  letter-spacing: .03em;
}
.glass-feat p {
  margin: 0;
  font-size: 13.5px;
  font-weight: 650;
  color: rgba(255,255,255,.92);
  line-height: 1.4;
}
.gf-ico {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
}
.gf-blue { background: linear-gradient(160deg, #3ec4f5 0%, #1688c9 55%, #0b6aa8 100%); }
.gf-yellow { background: linear-gradient(160deg, #ffd056 0%, #f5a623 55%, #e08a12 100%); }
.gf-pink { background: linear-gradient(160deg, #f25aa8 0%, #e61e8c 55%, #c01474 100%); }
.gf-green { background: linear-gradient(160deg, #4ad6a6 0%, #21c48e 55%, #12986a 100%); }

.prod-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.prod-glass {
  background: linear-gradient(180deg, rgba(255,255,255,.72), rgba(232,244,255,.45));
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 26px;
  padding: 16px 16px 18px;
  text-align: center;
  box-shadow: var(--neo-out);
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.prod-glass:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 36px rgba(11,46,91,.12);
}
.prod-media {
  height: 168px;
  display: grid;
  place-items: center;
  margin-bottom: 8px;
}
.prod-media img { max-height: 150px; object-fit: contain; }
.prod-glass h3 {
  font-family: var(--font-h);
  font-size: 16px;
  margin: 0 0 4px;
  color: var(--navy);
}
.prod-glass .price {
  color: #1a7ec4;
  font-weight: 800;
  margin: 0 0 12px;
}
.btn-customise {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 44px;
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  background: linear-gradient(90deg, #2ea7e8, #0b4f9c);
  box-shadow: 0 8px 16px rgba(11,79,156,.22);
  border: 1px solid rgba(255,255,255,.25);
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.btn-customise:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 20px rgba(11,79,156,.28);
}

.print-head { margin: 36px 0 16px; }
.print-pill {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 8px;
  padding: 16px 18px 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,.62), rgba(232,244,255,.4));
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(255,255,255,.8);
  box-shadow: var(--neo-out);
}
.pico {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 800;
  color: var(--navy);
  text-align: center;
  cursor: pointer;
  transition: transform 200ms ease;
}
.pico:hover { transform: translateY(-3px); }
.pico-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #eef8fd;
  display: grid;
  place-items: center;
  box-shadow: var(--neo-out);
}
.more-dots {
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
}
.more-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
}
.more-dots i:nth-child(2) { background: var(--yellow); }
.more-dots i:nth-child(3) { background: var(--navy); }

.why-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 14px;
  border-radius: 28px;
  background: rgba(255,255,255,.32);
  backdrop-filter: blur(18px) saturate(170%);
  -webkit-backdrop-filter: blur(18px) saturate(170%);
  border: 1px solid rgba(255,255,255,.7);
  box-shadow: var(--neo-out);
  margin-bottom: 28px;
}
.why-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 18px;
  font-weight: 800;
  color: var(--navy);
  background: rgba(255,255,255,.45);
  border: 1px solid rgba(255,255,255,.7);
  box-shadow: 0 0 24px rgba(0,174,239,.12);
}
.why-ico {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: linear-gradient(180deg, #3ec4f5, #0b6aa8);
  box-shadow: 0 8px 16px rgba(11,106,168,.28);
}

.about-trio {
  display: grid;
  grid-template-columns: 1.05fr 1.15fr .85fr;
  gap: 18px;
  align-items: stretch;
}
.about-glass,
.values-glass {
  background: rgba(255,255,255,.4);
  backdrop-filter: blur(18px) saturate(170%);
  -webkit-backdrop-filter: blur(18px) saturate(170%);
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 28px;
  box-shadow: var(--neo-out);
}
.about-glass { padding: 26px 24px; }
.about-glass h2 {
  font-family: var(--font-h);
  font-size: 22px;
  margin: 0 0 14px;
  color: var(--navy);
  letter-spacing: .02em;
}
.about-glass p {
  color: #3a4d68;
  font-weight: 650;
  margin: 0 0 12px;
}
.btn-shop-sm { min-height: 46px; padding: 6px 8px 6px 18px; font-size: 14px; margin-top: 8px; }
.values-glass {
  list-style: none;
  margin: 0;
  padding: 22px 18px;
  display: grid;
  align-content: center;
  gap: 16px;
}
.values-glass li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--navy);
  font-size: 14.5px;
}
.news-copy {
  font-size: 13.5px;
  color: #c9daf0;
  font-weight: 650;
  margin: 0 0 12px;
  line-height: 1.45;
}

.site-footer {
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 0;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, transparent, #9be7ff, #fff, #9be7ff, transparent);
  box-shadow: 0 0 18px rgba(155,231,255,.8);
}

/* ---------- Page hero ---------- */
.page-hero {
  background: linear-gradient(180deg, #e7f6fd, #fff);
  padding: 48px 0 28px;
  text-align: center;
}

.page-hero h1 {
  font-family: var(--font-h);
  margin: 0 0 8px;
  font-size: clamp(28px, 4vw, 42px);
}

.page-hero p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.crumbs {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 10px;
}

.crumbs a:hover {
  color: var(--cyan-dark);
}

/* ---------- Forms ---------- */
.form {
  display: grid;
  gap: 14px;
}

.form label {
  display: grid;
  gap: 6px;
  font-weight: 800;
  font-size: 14px;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 16px;
  background: #fff;
  color: var(--ink);
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.2);
}

.form-note {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}

.alert {
  display: none;
  padding: 12px 14px;
  border-radius: 10px;
  background: #e8faf2;
  color: #0d6b4a;
  font-weight: 800;
}

.alert.is-on {
  display: block;
}

.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: start;
}

.info-card {
  background: var(--soft);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid #e3f2fb;
}

.info-card h3 {
  margin: 0 0 12px;
  font-family: var(--font-h);
}

.info-card p,
.info-card a {
  margin: 0 0 10px;
  font-weight: 700;
  color: var(--navy);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  color: #d7e6f5;
  padding: 56px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 0.9fr 0.9fr 1.1fr;
  gap: 28px;
  padding-bottom: 36px;
}

.footer-brand .brand-name {
  color: #8fe3ff;
  -webkit-text-stroke: 0.7px #041226;
}

.footer-brand .brand-tag {
  color: #ffb4b6;
}

.site-footer h4 {
  color: #fff;
  margin: 0 0 14px;
  font-family: var(--font-h);
  font-size: 16px;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.site-footer a {
  color: #c9daf0;
  font-weight: 650;
  font-size: 14.5px;
}

.site-footer a:hover {
  color: #fff;
}

.contact-lines {
  display: grid;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 700;
}

.contact-lines a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.news-form {
  display: flex;
  background: rgba(7, 20, 42, 0.65);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  overflow: hidden;
}

.news-form input {
  border: 0;
  padding: 12px 16px;
  flex: 1;
  min-width: 0;
  font-size: 14px;
  background: transparent;
  color: #fff;
}

.news-form input::placeholder { color: #9fb6d0; }

.news-form input:focus {
  outline: none;
}

.news-form button {
  background: transparent;
  color: #fff;
  border: 0;
  width: 46px;
  display: grid;
  place-items: center;
}

.news-form button:hover {
  color: var(--cyan);
}

.pay-row {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.pay {
  background: #fff;
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  padding: 6px 8px;
  border-radius: 6px;
  letter-spacing: 0.04em;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 0 18px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 700;
  color: #9fb6d0;
}

.footer-bottom strong {
  color: #fff;
  letter-spacing: 0.04em;
}

/* ---------- Overlays ---------- */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 30, 61, 0.45);
  backdrop-filter: blur(4px);
  display: none;
  z-index: 80;
}

.overlay.is-open {
  display: block;
}

.panel {
  position: fixed;
  z-index: 90;
  background: #fff;
  box-shadow: var(--shadow-xl, var(--shadow-lg));
}

.search-panel {
  top: 0;
  left: 0;
  right: 0;
  padding: 22px 0 28px;
  display: none;
}

.search-panel.is-open,
.drawer.is-open,
.account-panel.is-open {
  display: block;
}

.search-row {
  display: flex;
  gap: 10px;
}

.search-row input {
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 16px;
}

.search-row input:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.18);
}

.drawer {
  top: 0;
  right: 0;
  width: min(380px, 100%);
  height: 100%;
  padding: 22px;
  display: none;
}

.drawer h3,
.account-panel h3 {
  font-family: var(--font-h);
  margin: 0 0 12px;
}

.account-panel {
  top: 88px;
  right: 24px;
  width: min(340px, calc(100% - 32px));
  border-radius: 16px;
  padding: 20px;
  display: none;
  border: 1px solid var(--line);
}

.empty {
  color: var(--muted);
  font-weight: 700;
}

.mobile-nav {
  display: none;
}

/* ---------- Misc ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 500ms ease, transform 500ms ease;
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 80;
  background: linear-gradient(90deg, var(--cyan), var(--yellow), var(--magenta), var(--green));
  box-shadow: 0 0 12px rgba(0, 174, 239, 0.5);
}

.legal h2 {
  font-family: var(--font-h);
  font-size: 20px;
  margin: 28px 0 8px;
}

.legal p,
.legal li {
  color: var(--muted);
  font-weight: 600;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 1100px) {
  .cat-grid,
  .cat-row { grid-template-columns: repeat(4, 1fr); }
  .feature-grid,
  .product-grid,
  .prod-row,
  .feat-row { grid-template-columns: repeat(2, 1fr); }
  .print-grid { grid-template-columns: repeat(4, 1fr); }
  .print-pill { grid-template-columns: repeat(6, 1fr); border-radius: 28px; }
  .about-grid,
  .about-trio,
  .footer-grid,
  .two-col {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .why-bar { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
  }
  .nav { display: none; }
  .menu-toggle { display: grid; }
  .hero-grid,
  .about-grid,
  .about-trio,
  .why-grid,
  .why-bar,
  .two-col,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero { padding-top: 28px; }
  .hero-visual {
    min-height: 420px;
    height: 440px;
    margin-top: 8px;
  }
  .hero-perks {
    border-radius: 22px;
  }
  .perk + .perk {
    border-left: 0;
  }
  .mobile-nav {
    display: none;
    border-top: 1px solid var(--line);
    padding: 8px 20px 16px;
    background: #fff;
  }
  .mobile-nav.is-open { display: grid; gap: 4px; }
  .mobile-nav a,
  .mobile-nav details {
    font-weight: 800;
    padding: 10px 4px;
  }
  .mobile-nav summary {
    cursor: pointer;
    list-style: none;
  }
  .mobile-nav summary::-webkit-details-marker { display: none; }
}

@media (max-width: 640px) {
  .cat-grid,
  .cat-row,
  .print-grid,
  .product-grid,
  .feature-grid,
  .feat-row,
  .prod-row {
    grid-template-columns: 1fr 1fr;
  }
  .print-pill { grid-template-columns: repeat(3, 1fr); border-radius: 24px; }
  .topbar-inner { justify-content: center; text-align: center; }
  .topbar-right { justify-content: center; }
  .wrap { width: min(var(--wrap), calc(100% - 28px)); }
  .section { padding: 48px 0; }
  .glass-shell { padding: 18px 14px; border-radius: 22px; }
}
