@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Manrope:wght@500;600;700;800&display=swap');

:root {
  --ink-950: #080608;
  --ink-900: #0d0a0d;
  --ink-850: #120e12;
  --ink-800: #191318;
  --ink-700: #261c23;
  --paper: #f8f3f5;
  --paper-muted: #b9afb5;
  --paper-subtle: #81777d;
  --pink-500: #ff2f86;
  --pink-400: #ff5b9d;
  --pink-700: #a90f55;
  --pink-soft: rgba(255, 47, 134, 0.14);
  --success: #83e9bb;
  --warning: #ffd27a;
  --danger: #ff8d99;
  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(255, 255, 255, 0.2);
  --surface: rgba(255, 255, 255, 0.045);
  --surface-strong: rgba(255, 255, 255, 0.075);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --radius-pill: 999px;
  --container: 1320px;
  --gutter: clamp(20px, 4vw, 52px);
  --space-section: clamp(92px, 11vw, 168px);
  --display: clamp(3.4rem, 7.2vw, 7.4rem);
  --h1: clamp(3rem, 6vw, 6.25rem);
  --h2: clamp(2.35rem, 4.5vw, 4.8rem);
  --h3: clamp(1.35rem, 2vw, 2rem);
  --body-lg: clamp(1.05rem, 1.5vw, 1.25rem);
  --ease: cubic-bezier(.2, .7, .2, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink-950);
  color: var(--paper);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.cart-open { overflow: hidden; }

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

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

button,
a { -webkit-tap-highlight-color: transparent; }

a { color: inherit; }

h1,
h2,
h3,
h4,
p { margin-top: 0; }

h1,
h2,
h3,
h4 {
  font-family: 'Manrope', sans-serif;
  line-height: 1.03;
  letter-spacing: -0.045em;
}

p { color: var(--paper-muted); }

::selection { background: var(--pink-500); color: white; }

:focus-visible {
  outline: 3px solid var(--pink-400);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 12px 16px;
  border-radius: var(--radius-pill);
  background: var(--paper);
  color: var(--ink-950);
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }

.container {
  width: min(calc(100% - var(--gutter) - var(--gutter)), var(--container));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--pink-400);
  font-family: 'Manrope', sans-serif;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: '';
  width: 34px;
  height: 1px;
  background: currentColor;
}

.section { padding-block: var(--space-section); }
.section-compact { padding-block: clamp(68px, 8vw, 108px); }
.section-dark { background: var(--ink-900); }
.section-soft {
  border-block: 1px solid var(--line);
  background-color: var(--ink-850);
  background-image: radial-gradient(circle at 82% 18%, rgba(255, 47, 134, .09), transparent 32%);
  color: var(--paper);
}
.section-soft p { color: var(--paper-muted); }

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .55fr);
  gap: 48px;
  align-items: end;
  margin-bottom: clamp(44px, 6vw, 78px);
}

.section-title {
  max-width: 14ch;
  margin-bottom: 0;
  font-size: var(--h2);
}

.section-lede {
  max-width: 48ch;
  margin-bottom: 0;
  font-size: var(--body-lg);
}

.text-pink { color: var(--pink-500); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  background: none;
  color: inherit;
  font-family: 'Manrope', sans-serif;
  font-size: .88rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}

.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0); }
.button-primary { background: var(--pink-500); color: white; box-shadow: 0 14px 34px rgba(255, 47, 134, .22); }
.button-primary:hover { background: var(--pink-400); }
.button-secondary { border-color: var(--line-strong); background: rgba(255,255,255,.04); }
.button-secondary:hover { border-color: var(--paper-muted); background: rgba(255,255,255,.08); }
.button-light { background: var(--paper); color: var(--ink-950); }
.button-light:hover { background: white; }
.button-block { width: 100%; }
.button[disabled] { opacity: .45; cursor: not-allowed; transform: none; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--paper);
  font-weight: 700;
  text-decoration: none;
}

.text-link::after { content: '↗'; transition: transform .2s ease; }
.text-link:hover::after { transform: translate(3px, -3px); }

/* Header */
.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background .25s ease, border-color .25s ease, padding .25s ease;
}

.site-header.is-scrolled {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 6, 8, .88);
  backdrop-filter: blur(20px);
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  min-height: 58px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: white;
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  object-fit: cover;
  box-shadow: 0 0 24px rgba(255, 47, 134, .18);
}

.site-header .brand {
  flex-direction: row-reverse;
  text-align: right;
}

.site-header .brand img {
  box-shadow:
    0 0 18px rgba(255, 255, 255, .48),
    0 0 38px rgba(255, 255, 255, .22);
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, .26));
}

.brand strong {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: .95rem;
  line-height: 1.1;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: var(--paper-subtle);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

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

.desktop-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 15px;
  border-radius: var(--radius-pill);
  color: var(--paper-muted);
  font-size: .86rem;
  font-weight: 600;
  text-decoration: none;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current='page'] { background: var(--surface); color: white; }

.products-menu { position: relative; }

.products-menu summary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 44px;
  padding: 0 15px;
  border-radius: var(--radius-pill);
  color: var(--paper-muted);
  font-size: .86rem;
  font-weight: 600;
  list-style: none;
  cursor: pointer;
}

.products-menu summary::-webkit-details-marker,
.mobile-products summary::-webkit-details-marker { display: none; }

.products-menu summary span {
  color: var(--paper-subtle);
  font-size: .9rem;
  transition: transform .2s ease;
}

.products-menu[open] summary,
.products-menu summary:hover,
.products-menu summary[aria-current='page'] { background: var(--surface); color: white; }

.products-menu[open] summary span { transform: rotate(180deg); }

.products-panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  width: min(680px, calc(100vw - 56px));
  padding: 18px;
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  background: rgba(18, 14, 18, .98);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .48);
  backdrop-filter: blur(22px);
  transform: translateX(-50%);
  transform-origin: top center;
}

.products-panel::before {
  content: '';
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 13px;
}

.products-panel-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 4px 4px 17px;
  border-bottom: 1px solid var(--line);
}

.products-panel-head div { display: grid; gap: 4px; }
.products-panel-head small,
.products-panel-copy small { color: var(--paper-subtle); font-size: .61rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.products-panel-head strong { font-family: 'Manrope', sans-serif; font-size: 1rem; }

.desktop-nav .products-panel-head > a {
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--line);
  color: white;
  font-size: .75rem;
}

.products-panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding-top: 12px;
}

.desktop-nav .products-panel-item {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  gap: 13px;
  align-items: center;
  min-height: 74px;
  padding: 8px;
  border: 1px solid transparent;
  border-radius: 15px;
  color: white;
}

.desktop-nav .products-panel-item:hover {
  border-color: var(--line);
  background: rgba(255, 255, 255, .055);
}

.products-panel-image {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  overflow: hidden;
  border-radius: 11px;
  border: 1px solid var(--line);
  background: var(--ink-700);
}

.products-panel-image img { width: 100%; height: 100%; object-fit: contain; }
.products-panel-copy { display: grid; gap: 5px; min-width: 0; }
.products-panel-copy strong { overflow: hidden; font-family: 'Manrope', sans-serif; font-size: .88rem; text-overflow: ellipsis; white-space: nowrap; }
.products-panel-arrow { color: var(--pink-400); font-size: .95rem; }

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

.icon-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  min-height: 46px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, .04);
  color: white;
  cursor: pointer;
}

.icon-button:hover { border-color: var(--line-strong); background: var(--surface-strong); }

.cart-count {
  display: inline-grid;
  place-items: center;
  min-width: 20px;
  height: 20px;
  margin-left: 7px;
  padding-inline: 5px;
  border-radius: var(--radius-pill);
  background: var(--pink-500);
  color: white;
  font-size: .66rem;
  font-weight: 800;
}

.menu-toggle { display: none; }

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: '';
  display: block;
  width: 19px;
  height: 1px;
  background: currentColor;
}

.menu-toggle span { margin-block: 5px; }

.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 190;
  border: 0;
  background: rgba(3, 2, 3, .72);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

.drawer-overlay.is-open { opacity: 1; pointer-events: auto; }

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  display: flex;
  flex-direction: column;
  width: min(430px, 94vw);
  border-left: 1px solid var(--line);
  background: var(--ink-850);
  box-shadow: var(--shadow);
  transform: translateX(105%);
  transition: transform .35s var(--ease);
}

.drawer.is-open { transform: translateX(0); }

.drawer-head,
.drawer-foot {
  flex: 0 0 auto;
  padding: 22px;
  border-bottom: 1px solid var(--line);
}

.drawer-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.drawer-head h2 { margin: 0; font-size: 1.2rem; }
.drawer-foot { border-top: 1px solid var(--line); border-bottom: 0; }
.drawer-body { flex: 1 1 auto; padding: 22px; overflow-y: auto; }

.mobile-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 62px;
  border-bottom: 1px solid var(--line);
  color: white;
  font-family: 'Manrope', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
}

.mobile-products { border-bottom: 1px solid var(--line); }

details.is-animating { will-change: height; }

[data-animated-details] > summary {
  user-select: none;
}

.mobile-products summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 62px;
  color: white;
  font-family: 'Manrope', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  list-style: none;
  cursor: pointer;
}

.mobile-products summary small,
.mobile-nav > a span { color: var(--paper-subtle); font-family: 'Inter', sans-serif; font-size: .72rem; font-weight: 700; letter-spacing: .1em; }
.mobile-products[open] summary { color: var(--pink-400); }

.mobile-products-list {
  display: grid;
  gap: 3px;
  padding: 3px 0 15px 14px;
}

.mobile-nav .mobile-products-list a {
  min-height: 48px;
  padding: 0 12px;
  border: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, .035);
  color: var(--paper-muted);
  font-size: .9rem;
}

.mobile-products-list a:hover { background: var(--surface); color: white; }
.mobile-products-list small { color: var(--paper-subtle); font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }

/* Hero */
.home-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 100svh;
  overflow: hidden;
  background: var(--ink-950);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .82;
}

.home-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8, 6, 8, .98) 0%, rgba(8, 6, 8, .88) 31%, rgba(8, 6, 8, .28) 66%, rgba(8, 6, 8, .2) 100%),
    linear-gradient(0deg, rgba(8, 6, 8, .9) 0%, transparent 43%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, .5fr);
  gap: 72px;
  align-items: end;
  width: min(calc(100% - var(--gutter) - var(--gutter)), var(--container));
  padding-top: 150px;
  padding-bottom: clamp(54px, 7vw, 88px);
}

.hero-copy { max-width: 830px; }

.hero-title {
  max-width: 10.5ch;
  margin-bottom: 28px;
  font-size: var(--display);
  line-height: .9;
  letter-spacing: -.075em;
}

.hero-title em { color: var(--pink-500); font-style: normal; }
.hero-title-long {
  max-width: 11.5ch;
  font-size: clamp(3.15rem, 5.7vw, 6.65rem);
}

.hero-lede {
  max-width: 53ch;
  margin-bottom: 34px;
  color: #d3c9cf;
  font-size: var(--body-lg);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-proof {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(8, 6, 8, .54);
  backdrop-filter: blur(18px);
}

.hero-proof strong { font-family: 'Manrope', sans-serif; font-size: 1.1rem; }
.hero-proof p { margin: 0; font-size: .9rem; }
.proof-row { display: flex; justify-content: space-between; gap: 18px; padding-top: 14px; border-top: 1px solid var(--line); }
.proof-row span { color: var(--paper-subtle); font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; }

.hero-index {
  position: absolute;
  right: var(--gutter);
  bottom: 22px;
  z-index: 2;
  color: rgba(255,255,255,.55);
  font-size: .68rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.ticker {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink-900);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 28s linear infinite;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 34px;
  min-height: 78px;
  padding-inline: 28px;
  color: var(--paper-muted);
  font-family: 'Manrope', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.ticker-item::after { content: '✦'; color: var(--pink-500); }
@keyframes ticker { to { transform: translateX(-50%); } }

/* Product cards */
.product-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 540px;
  padding: clamp(24px, 3vw, 38px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--ink-800);
  text-decoration: none;
  isolation: isolate;
}

.product-card:nth-child(1) { grid-column: span 7; }
.product-card:nth-child(2) { grid-column: span 5; }
.product-card:nth-child(3),
.product-card:nth-child(4),
.product-card:nth-child(5) { grid-column: span 4; min-height: 480px; }

.product-card::before {
  content: '';
  position: absolute;
  right: -24%;
  bottom: -48%;
  z-index: -1;
  width: 118%;
  height: 92%;
  border-radius: 50%;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 47, 134, .24) 0%,
    rgba(255, 47, 134, .16) 30%,
    rgba(255, 47, 134, .07) 54%,
    rgba(255, 47, 134, .02) 70%,
    transparent 84%
  );
  filter: blur(28px);
  opacity: .9;
  transform: translateZ(0);
  transition: transform .45s var(--ease), opacity .45s ease;
}

.product-card:hover::before {
  opacity: 1;
  transform: scale(1.16) translateY(-6%);
}
.product-card:hover .product-card-image { transform: scale(1.035) translateY(-5px); }

.product-card-top { display: flex; justify-content: space-between; gap: 18px; position: relative; z-index: 2; }
.product-number { color: var(--pink-400); font-size: .68rem; font-weight: 800; letter-spacing: .14em; }
.product-price { color: var(--paper-muted); font-size: .82rem; }

.product-card-image {
  width: 100%;
  height: 300px;
  margin-block: 18px;
  object-fit: contain;
  mix-blend-mode: normal;
  transition: transform .45s var(--ease);
}

.product-card-image-campaign {
  border: 1px solid rgba(255, 255, 255, .075);
  border-radius: var(--radius-md);
  background: var(--ink-900);
}

.product-card:nth-child(n+3) .product-card-image { height: 240px; }
.product-card-copy { position: relative; z-index: 2; margin-top: auto; }
.product-card h3 { margin-bottom: 10px; font-size: var(--h3); }
.product-card p { max-width: 42ch; margin-bottom: 0; font-size: .92rem; }
.product-card-arrow { position: absolute; right: 28px; bottom: 28px; display: grid; place-items: center; width: 48px; height: 48px; border: 1px solid var(--line); border-radius: 50%; background: rgba(0,0,0,.25); }

.product-card-light {
  background-color: var(--ink-800);
  background-image: radial-gradient(circle at 70% 42%, rgba(255, 47, 134, .13), transparent 34%);
  color: var(--paper);
}
.product-card-light p,
.product-card-light .product-price { color: var(--paper-muted); }
.product-card-light .product-card-arrow { border-color: var(--line); background: rgba(0,0,0,.25); }

.product-card-image-cover { object-fit: cover; border-radius: var(--radius-md); }

/* Story / editorial modules */
.editorial-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(44px, 8vw, 120px);
  align-items: center;
}

.editorial-copy h2 { max-width: 11ch; margin-bottom: 28px; font-size: var(--h2); }
.editorial-copy > p { max-width: 52ch; font-size: var(--body-lg); }

.editorial-visual {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--ink-800);
}

.editorial-visual img { width: 100%; height: 100%; min-height: 690px; object-fit: cover; }
.editorial-note { position: absolute; right: 24px; bottom: 24px; left: 24px; display: flex; justify-content: space-between; gap: 24px; padding: 22px; border: 1px solid var(--line); border-radius: var(--radius-md); background: rgba(8,6,8,.74); backdrop-filter: blur(18px); }
.editorial-note span { color: var(--paper-subtle); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; }
.editorial-note strong { max-width: 26ch; text-align: right; }

.stat-list { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 44px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat { padding: 24px 18px 24px 0; border-right: 1px solid var(--line); }
.stat:last-child { padding-left: 18px; border-right: 0; }
.stat strong { display: block; margin-bottom: 6px; font-family: 'Manrope', sans-serif; font-size: 1.55rem; }
.stat span { color: var(--paper-subtle); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; }

.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.process-card { min-height: 380px; padding: 42px clamp(24px, 4vw, 48px); border-right: 1px solid var(--line); }
.process-card:last-child { border-right: 0; }
.process-card .step { color: var(--pink-400); font-size: .72rem; font-weight: 800; letter-spacing: .14em; }
.process-card h3 { max-width: 12ch; margin: 100px 0 18px; font-size: clamp(1.7rem, 2.6vw, 2.5rem); }
.process-card p { max-width: 34ch; }

.support-banner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  min-height: 370px;
  padding: clamp(38px, 6vw, 78px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(130deg, var(--ink-800), #2b0e1d);
}

.support-banner::after { content: ''; position: absolute; right: -10%; bottom: -80%; width: 480px; height: 480px; border-radius: 50%; background: rgba(255,47,134,.3); filter: blur(70px); }
.support-banner > * { position: relative; z-index: 1; }
.support-banner h2 { max-width: 10ch; margin: 0; font-size: var(--h2); }

/* Bespoke home automation */
.automation-hero {
  position: relative;
  min-height: 100svh;
  padding: 158px 0 84px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 76% 22%, rgba(255, 47, 134, .16), transparent 27%),
    var(--ink-950);
}

.automation-hero::before {
  content: '';
  position: absolute;
  bottom: -220px;
  left: -180px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: rgba(255, 47, 134, .1);
  filter: blur(110px);
}

.automation-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .84fr) minmax(520px, 1.16fr);
  gap: clamp(48px, 7vw, 108px);
  align-items: center;
}

.automation-hero-copy h1 {
  max-width: 10ch;
  margin-bottom: 28px;
  font-size: clamp(3.7rem, 6vw, 7rem);
  line-height: .9;
  letter-spacing: -.075em;
}

.automation-hero-copy h1 em { color: var(--pink-500); font-style: normal; }
.automation-hero-copy > p { max-width: 53ch; margin-bottom: 34px; font-size: var(--body-lg); }

.automation-microproof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 38px 0 0;
  padding: 0;
  color: var(--paper-muted);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .06em;
  list-style: none;
  text-transform: uppercase;
}

.automation-microproof li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.automation-microproof li::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pink-500);
  box-shadow: 0 0 16px rgba(255, 47, 134, .65);
}

.automation-visual {
  position: relative;
  min-height: 660px;
}

.automation-visual figure { margin: 0; }

.automation-visual-main {
  position: absolute;
  inset: 0 0 72px 12%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--ink-800);
  box-shadow: var(--shadow);
}

.automation-visual-main::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 47%, rgba(8, 6, 8, .54));
}

.automation-visual-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
}

.automation-visual-tile {
  position: absolute;
  bottom: 0;
  width: 180px;
  height: 188px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  background: var(--ink-800);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .5);
}

.automation-visual-tile img { width: 100%; height: 100%; object-fit: cover; }
.automation-visual-light { left: 0; }
.automation-visual-control { left: 154px; bottom: 22px; }

.automation-visual-note {
  position: absolute;
  right: 22px;
  bottom: 94px;
  z-index: 2;
  display: grid;
  gap: 8px;
  max-width: 290px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(8, 6, 8, .72);
  backdrop-filter: blur(18px);
}

.automation-visual-note span,
.automation-system-grid article > span,
.automation-process-grid article > span {
  color: var(--pink-400);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.automation-visual-note strong { font-family: 'Manrope', sans-serif; line-height: 1.35; }

.automation-proof-band {
  border-bottom: 1px solid var(--line);
  background: var(--ink-900);
}

.automation-proof-band .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 42px);
  min-height: 84px;
  color: var(--paper-muted);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.automation-proof-band i { width: 5px; height: 5px; border-radius: 50%; background: var(--pink-500); }

.automation-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 56px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.automation-process-grid article {
  min-height: 410px;
  padding: 34px clamp(22px, 3vw, 38px);
  border-right: 1px solid var(--line);
}

.automation-process-grid article:last-child { border-right: 0; }
.automation-process-grid h3 { max-width: 11ch; margin: 112px 0 18px; font-size: clamp(1.55rem, 2.2vw, 2.25rem); }
.automation-process-grid p { margin: 0; font-size: .9rem; }

.automation-system-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 56px;
}

.automation-system-grid article {
  position: relative;
  min-height: 440px;
  padding: clamp(30px, 5vw, 58px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 90% 0, rgba(255, 47, 134, .15), transparent 33%),
    var(--ink-800);
}

.automation-system-grid h3 { max-width: 13ch; margin: 86px 0 18px; font-size: clamp(2rem, 3vw, 3.25rem); }
.automation-system-grid p { max-width: 50ch; }
.automation-system-grid ul { display: grid; gap: 9px; margin: 28px 0 0; padding: 0; color: var(--paper-muted); list-style: none; }
.automation-system-grid li { position: relative; padding-left: 18px; font-size: .87rem; }
.automation-system-grid li::before { content: ''; position: absolute; top: .67em; left: 0; width: 6px; height: 6px; border-radius: 50%; background: var(--pink-500); }

.automation-deliverables .editorial-copy h2 { max-width: 13ch; }

.automation-deliverable-list {
  display: grid;
  gap: 0;
  margin: 42px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.automation-deliverable-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.automation-deliverable-list li > span { color: var(--pink-400); font-size: .7rem; font-weight: 800; letter-spacing: .1em; }
.automation-deliverable-list strong { display: block; margin-bottom: 5px; font-family: 'Manrope', sans-serif; }
.automation-deliverable-list p { margin: 0; font-size: .85rem; }

.automation-consult {
  display: grid;
  grid-template-columns: .72fr 1.15fr;
  gap: clamp(50px, 9vw, 130px);
  align-items: start;
}

.automation-consult-copy { position: sticky; top: 128px; }
.automation-consult-copy h2 { max-width: 11ch; margin-bottom: 26px; font-size: var(--h2); }
.automation-consult-copy > p { max-width: 45ch; font-size: var(--body-lg); }
.automation-contact-note { display: grid; gap: 4px; margin-top: 38px; padding-top: 22px; border-top: 1px solid var(--line); }
.automation-contact-note span { color: var(--paper-subtle); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; }
.automation-contact-note a { width: fit-content; color: white; font-family: 'Manrope', sans-serif; font-size: 1.05rem; text-decoration-color: var(--pink-500); text-underline-offset: 5px; }
.automation-form { background: linear-gradient(145deg, var(--ink-800), #21121a); }

/* Footer */
.site-footer { border-top: 1px solid var(--line); background: #060506; }
.footer-main { display: grid; grid-template-columns: 1.2fr repeat(3, .55fr); gap: 52px; padding-block: 78px; }
.footer-brand p { max-width: 34ch; margin: 24px 0 28px; }
.footer-col h3 { margin-bottom: 18px; color: var(--paper-subtle); font-family: 'DM Sans', sans-serif; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; }
.footer-col a { display: block; width: fit-content; min-height: 36px; color: var(--paper-muted); font-size: .9rem; text-decoration: none; }
.footer-col a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; padding: 22px 0; border-top: 1px solid var(--line); color: var(--paper-subtle); font-size: .74rem; }

/* Inner page heroes */
.page-hero {
  position: relative;
  padding: 176px 0 86px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.page-hero::after { content: ''; position: absolute; top: -160px; right: -140px; width: 560px; height: 560px; border-radius: 50%; background: rgba(255,47,134,.18); filter: blur(100px); }
.page-hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr .48fr; gap: 52px; align-items: end; }
.page-hero h1 { max-width: 11ch; margin: 0; font-size: var(--h1); }
.page-hero p { margin-bottom: 0; font-size: var(--body-lg); }

.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; color: var(--paper-subtle); font-size: .75rem; }
.breadcrumbs a { text-decoration: none; }
.breadcrumbs a:hover { color: white; }

/* Shop */
.shop-toolbar { position: sticky; top: 78px; z-index: 20; border-bottom: 1px solid var(--line); background: rgba(8,6,8,.9); backdrop-filter: blur(18px); }
.toolbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 22px; min-height: 80px; }
.filter-chips { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; }
.filter-chip { flex: 0 0 auto; min-height: 42px; padding: 0 16px; border: 1px solid var(--line); border-radius: var(--radius-pill); background: transparent; color: var(--paper-muted); cursor: pointer; }
.filter-chip[aria-pressed='true'] { border-color: var(--pink-500); background: var(--pink-soft); color: white; }
.shop-count { flex: 0 0 auto; color: var(--paper-subtle); font-size: .78rem; }

.shop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.shop-card { display: flex; flex-direction: column; min-height: 580px; padding: 18px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--ink-800); }
.shop-card[hidden] { display: none; }
.shop-image { position: relative; display: grid; place-items: center; height: 350px; overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background-color: var(--ink-900); background-image: radial-gradient(circle at 50% 55%, #241722, var(--ink-900) 68%); }
.shop-image img { width: 86%; height: 86%; object-fit: contain; transition: transform .35s var(--ease); }
.shop-card:hover .shop-image img { transform: scale(1.035); }
.shop-badge { position: absolute; top: 14px; left: 14px; padding: 7px 10px; border-radius: var(--radius-pill); background: var(--ink-950); color: white; font-size: .62rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.shop-card-body { display: flex; flex: 1; flex-direction: column; padding: 24px 8px 6px; }
.shop-meta { display: flex; justify-content: space-between; gap: 16px; color: var(--paper-subtle); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.shop-card h2 { margin: 12px 0 10px; font-size: 1.45rem; }
.shop-card p { margin-bottom: 24px; font-size: .9rem; }
.shop-card-actions { display: flex; gap: 8px; margin-top: auto; }
.shop-card-actions .button { flex: 1; min-height: 46px; }

/* Product detail */
.product-hero { padding: 132px 0 70px; }
.product-layout { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(390px, .68fr); gap: clamp(42px, 7vw, 100px); align-items: start; }
.product-gallery { position: sticky; top: 104px; }
.product-stage { position: relative; display: grid; place-items: center; min-height: 660px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background-color: var(--ink-900); background-image: radial-gradient(circle at 50% 58%, #261720, var(--ink-900) 66%); }
.product-stage::after { content: ''; position: absolute; inset: auto 12% -26% 12%; height: 52%; border-radius: 50%; background: rgba(255,47,134,.24); filter: blur(58px); }
.product-stage img { position: relative; z-index: 1; width: 80%; height: 560px; object-fit: contain; }
.gallery-label { position: absolute; top: 22px; left: 22px; z-index: 2; color: var(--paper-subtle); font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.product-summary { padding-top: 12px; }
.product-summary h1 { max-width: 11ch; margin-bottom: 20px; font-size: clamp(2.8rem, 4.8vw, 5.15rem); }
.product-subtitle { font-size: var(--body-lg); }
.rating-line { display: flex; flex-wrap: wrap; gap: 12px; margin: 26px 0; color: var(--paper-muted); font-size: .82rem; }
.rating-line strong { color: white; }
.price-line { display: flex; align-items: baseline; gap: 12px; padding-block: 24px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.price-line strong { font-family: 'Manrope', sans-serif; font-size: 2rem; }
.price-line del { color: var(--paper-subtle); }
.price-line span { color: var(--success); font-size: .76rem; font-weight: 700; }
.choice-group { margin: 28px 0; }
.choice-label { display: flex; justify-content: space-between; gap: 16px; margin-bottom: 12px; font-size: .8rem; font-weight: 700; }
.choice-label span { color: var(--paper-subtle); font-weight: 400; }
.choice-row { display: flex; flex-wrap: wrap; gap: 8px; }
.choice { min-height: 46px; padding: 0 16px; border: 1px solid var(--line); border-radius: var(--radius-pill); background: transparent; color: var(--paper-muted); cursor: pointer; }
.choice[aria-pressed='true'] { border-color: var(--pink-500); background: var(--pink-soft); color: white; }
.purchase-actions { display: grid; grid-template-columns: 1fr auto; gap: 10px; }
.purchase-actions .button { min-height: 58px; }
.wish-button { width: 58px; padding: 0; }
.assurance-list { display: grid; gap: 12px; margin: 28px 0 0; padding: 0; list-style: none; color: var(--paper-muted); font-size: .82rem; }
.assurance-list li { display: flex; gap: 10px; }
.assurance-list li::before { content: '✓'; color: var(--pink-400); }

.product-installation-link {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.product-installation-link div { display: grid; gap: 3px; }
.product-installation-link span { color: var(--pink-400); font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.product-installation-link strong { font-family: 'Manrope', sans-serif; font-size: .88rem; }
.product-installation-link .button { min-height: 44px; padding-inline: 17px; font-size: .78rem; }

.product-anchor-bar {
  position: sticky;
  top: 78px;
  z-index: 18;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(8, 6, 8, .92);
  backdrop-filter: blur(18px);
}

.product-anchor-bar .container {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
}

.product-anchor-bar .container::-webkit-scrollbar { display: none; }

.product-anchor-bar a {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  min-height: 58px;
  padding: 0 16px;
  border-radius: var(--radius-pill);
  color: var(--paper-muted);
  font-size: .78rem;
  font-weight: 700;
  text-decoration: none;
}

.product-anchor-bar a:hover,
.product-anchor-bar a:focus-visible { color: white; background: var(--surface); }

.feature-band { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.feature-band article { min-height: 210px; padding: 36px; border-right: 1px solid var(--line); }
.feature-band article:last-child { border-right: 0; }
.feature-band span { color: var(--pink-400); font-size: .7rem; font-weight: 800; letter-spacing: .12em; }
.feature-band h3 { margin: 54px 0 0; font-size: 1.25rem; }

.product-video-section,
#overview,
#technical-specifications,
#questions,
#listing-sources { scroll-margin-top: 142px; }

.product-video-layout {
  display: grid;
  grid-template-columns: .62fr 1.38fr;
  gap: clamp(46px, 8vw, 116px);
  align-items: center;
}

.product-video-copy h2 { max-width: 11ch; margin-bottom: 24px; font-size: var(--h2); }
.product-video-copy > p { max-width: 46ch; font-size: var(--body-lg); }
.product-video-copy .video-note { margin-top: 28px; color: var(--paper-subtle); font-size: .76rem; }

.product-video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 47, 134, .14), transparent 48%),
    #030203;
  box-shadow: var(--shadow);
}

.product-video-frame video {
  width: 100%;
  height: 100%;
  background: #030203;
  object-fit: contain;
}

.spec-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 72px; }
.spec-grid h2 { position: sticky; top: 120px; align-self: start; font-size: var(--h2); }
.spec-list { margin: 0; }
.spec-row { display: grid; grid-template-columns: .65fr 1fr; gap: 24px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.spec-row dt { color: var(--paper-subtle); }
.spec-row dd { margin: 0; }

.technical-spec-head { margin-bottom: 56px; }
.technical-spec-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.technical-spec-list .spec-row {
  grid-template-columns: minmax(130px, .65fr) 1fr;
  align-items: baseline;
  padding: 24px 26px;
}

.technical-spec-list .spec-row:nth-child(odd) { border-right: 1px solid var(--line); }
.technical-spec-list .spec-row dt { font-size: .76rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.technical-spec-list .spec-row dd { color: var(--paper); }

.listing-source-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(40px, 8vw, 120px);
  align-items: end;
}

.listing-source-grid .section-title { max-width: 12ch; margin-top: 18px; }
.listing-source-grid .section-lede { margin-top: 22px; }
.listing-source-note {
  max-width: 70ch;
  margin-top: 28px;
  padding: 18px 20px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  color: var(--paper-muted);
  background: var(--surface);
}

.listing-source-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 86px;
  margin-inline: -14px;
  padding: 28px 68px 28px 14px;
  border-radius: var(--radius-sm);
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  transition: background-color .22s ease, color .22s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: rgba(255, 255, 255, .025); }
.faq-item summary:focus-visible { outline-offset: -2px; }
.faq-item summary::before,
.faq-item summary::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 16px;
  width: 15px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transform: translateY(-50%);
  transform-origin: center;
  transition: background-color .24s ease, opacity .24s ease, transform .3s cubic-bezier(.22, 1, .36, 1);
}
.faq-item summary::after { transform: translateY(-50%) rotate(90deg); }
.faq-item[open] summary,
.faq-item.is-opening summary { color: var(--paper); }
.faq-item[open] summary::before,
.faq-item.is-opening summary::before { background: var(--pink-400); }
.faq-item[open] summary::after,
.faq-item.is-opening summary::after {
  background: var(--pink-400);
  opacity: 0;
  transform: translateY(-50%) rotate(180deg);
}
.faq-item.is-closing summary::after {
  opacity: 1;
  transform: translateY(-50%) rotate(90deg);
}
.faq-answer { max-width: 72ch; padding: 0 54px 28px 0; }
.faq-answer p { margin: 0; }

/* Content, about, support */
.manifesto { display: grid; grid-template-columns: .55fr 1fr; gap: clamp(48px, 8vw, 120px); }
.manifesto-label { color: var(--pink-400); font-size: .72rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.manifesto-copy { font-family: 'Manrope', sans-serif; font-size: clamp(1.9rem, 3.6vw, 3.8rem); line-height: 1.2; letter-spacing: -.04em; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.journey-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.journey-grid .value-card { min-height: 310px; }
.value-card { min-height: 350px; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--ink-800); }
.value-card span { color: var(--pink-400); font-size: .72rem; letter-spacing: .12em; }
.value-card h3 { margin: 120px 0 16px; font-size: 1.55rem; }

.contact-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 24px; }
.contact-options { display: grid; gap: 14px; }
.contact-card { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--ink-800); }
.contact-card span { color: var(--pink-400); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; }
.contact-card h2 { margin: 40px 0 8px; font-size: 1.45rem; }
.contact-card p { margin-bottom: 18px; font-size: .9rem; }

.form-card { padding: clamp(28px, 5vw, 58px); border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--ink-800); }
.form-card h2 { margin-bottom: 10px; font-size: 2rem; }
.form-card > p { margin-bottom: 34px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 8px; }
.field-full { grid-column: 1 / -1; }
.field label { font-size: .8rem; font-weight: 700; }
.field small { color: var(--paper-subtle); font-size: .72rem; }
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 0 15px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: rgba(0,0,0,.22);
  color: white;
}
.field textarea { min-height: 140px; padding-block: 14px; resize: vertical; }
.field input::placeholder,
.field textarea::placeholder { color: #756b71; }
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--pink-400); outline: none; box-shadow: 0 0 0 3px var(--pink-soft); }
.field-error { min-height: 18px; color: var(--danger); font-size: .72rem; }
.form-status { min-height: 24px; margin: 18px 0; color: var(--paper-muted); font-size: .82rem; }
.form-status.is-success { color: var(--success); }
.form-status.is-error { color: var(--danger); }

/* Shared lock and handle installation */
.installation-hero {
  position: relative;
  min-height: 100svh;
  padding: 150px 0 88px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 76% 35%, rgba(255, 47, 134, .13), transparent 27%),
    var(--ink-950);
}

.installation-hero::after {
  content: '';
  position: absolute;
  right: -160px;
  bottom: -260px;
  width: 680px;
  height: 680px;
  border-radius: 50%;
  background: rgba(255, 47, 134, .08);
  filter: blur(120px);
}

.installation-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(540px, 1.2fr);
  gap: clamp(48px, 7vw, 110px);
  align-items: center;
}

.installation-hero-copy h1 {
  max-width: 10ch;
  margin-bottom: 28px;
  font-size: clamp(3.6rem, 6.2vw, 7rem);
  line-height: .9;
  letter-spacing: -.075em;
}

.installation-hero-copy > p { max-width: 48ch; margin-bottom: 34px; font-size: var(--body-lg); }

.installation-microproof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 38px 0 0;
  padding: 0;
  color: var(--paper-muted);
  font-size: .73rem;
  font-weight: 700;
  list-style: none;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.installation-microproof li { display: inline-flex; align-items: center; gap: 9px; }
.installation-microproof li::before { content: '✓'; color: var(--pink-400); }

.installation-hero-visual {
  position: relative;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 16px;
  min-height: 650px;
}

.installation-hero-product {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 52% 46%, rgba(255, 47, 134, .14), transparent 38%),
    var(--ink-800);
  box-shadow: var(--shadow);
}

.installation-hero-lock { align-self: start; height: 570px; }
.installation-hero-handle { align-self: end; height: 510px; }
.installation-hero-product img { width: 100%; height: calc(100% - 94px); object-fit: contain; padding: 24px; }
.installation-hero-product figcaption { position: absolute; right: 0; bottom: 0; left: 0; display: grid; gap: 4px; min-height: 94px; padding: 22px 24px; border-top: 1px solid var(--line); background: rgba(8, 6, 8, .84); backdrop-filter: blur(18px); }
.installation-hero-product figcaption span,
.installation-choice-card > div > span { color: var(--pink-400); font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.installation-hero-product figcaption strong { font-family: 'Manrope', sans-serif; font-size: 1.2rem; }

.installation-choice-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }

.installation-choice-card {
  display: grid;
  grid-template-columns: minmax(180px, .68fr) 1fr;
  gap: 30px;
  align-items: center;
  min-height: 390px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--ink-800);
  text-decoration: none;
  transition: border-color .25s ease, transform .3s var(--ease), background .25s ease;
}

.installation-choice-card:hover { border-color: var(--line-strong); background: var(--ink-700); transform: translateY(-4px); }
.installation-choice-image { height: 100%; min-height: 330px; border-radius: var(--radius-md); background: radial-gradient(circle, rgba(255, 47, 134, .12), transparent 58%), var(--ink-900); }
.installation-choice-image img { width: 100%; height: 100%; object-fit: contain; padding: 22px; }
.installation-choice-card h3 { max-width: 12ch; margin: 18px 0 14px; font-size: clamp(1.55rem, 2.3vw, 2.35rem); }
.installation-choice-card p { margin-bottom: 28px; font-size: .92rem; }
.installation-choice-card > div > strong { display: inline-flex; align-items: center; gap: 10px; font-family: 'Manrope', sans-serif; font-size: .82rem; }
.installation-choice-card i { color: var(--pink-400); font-style: normal; }

.installation-process-grid { grid-template-columns: repeat(3, 1fr); }

.installation-product-section { scroll-margin-top: 88px; }
.installation-product-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(460px, 1.1fr); gap: clamp(46px, 8vw, 120px); align-items: center; }
.installation-product-grid-reverse .installation-product-visual { order: 2; }
.installation-product-grid-reverse .installation-product-copy { order: 1; }

.installation-product-visual {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at center, rgba(255, 47, 134, .13), transparent 44%), var(--ink-800);
}

.installation-product-visual img { width: 100%; height: 650px; object-fit: contain; }
.installation-product-visual span { position: absolute; right: 20px; bottom: 20px; left: 20px; padding: 18px 20px; border: 1px solid var(--line); border-radius: var(--radius-md); background: rgba(8, 6, 8, .76); color: var(--paper-muted); font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; backdrop-filter: blur(16px); }
.installation-product-copy h2 { max-width: 11ch; margin-bottom: 24px; font-size: var(--h2); }
.installation-product-copy > p { max-width: 52ch; margin-bottom: 38px; font-size: var(--body-lg); }
.installation-detail-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; margin-bottom: 36px; }
.installation-detail-grid h3 { margin-bottom: 16px; font-size: 1rem; letter-spacing: -.02em; }
.installation-detail-grid ul { display: grid; gap: 11px; margin: 0; padding: 0; color: var(--paper-muted); font-size: .84rem; list-style: none; }
.installation-detail-grid li { position: relative; padding-left: 16px; }
.installation-detail-grid li::before { content: ''; position: absolute; top: .7em; left: 0; width: 5px; height: 5px; border-radius: 50%; background: var(--pink-400); }

.installation-request-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(30px, 6vw, 86px); align-items: start; }
.installation-request-copy { position: sticky; top: 124px; }
.installation-request-copy h2 { max-width: 10ch; margin-bottom: 24px; font-size: var(--h2); }
.installation-request-copy > p { max-width: 47ch; font-size: var(--body-lg); }
.installation-scope-note { margin: 32px 0 26px; padding: 20px 22px; border-left: 2px solid var(--pink-500); background: var(--surface); }
.installation-scope-note span { display: block; margin-bottom: 6px; color: white; font-family: 'Manrope', sans-serif; font-size: .78rem; font-weight: 700; }
.installation-scope-note p { margin: 0; font-size: .82rem; }
.optional-label { color: var(--paper-subtle); font-size: .68rem; font-weight: 500; }

/* Cart and checkout */
.cart-page-grid,
.checkout-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 24px; align-items: start; }
.cart-panel,
.summary-panel { padding: clamp(24px, 4vw, 38px); border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--ink-800); }
.summary-panel { position: sticky; top: 110px; }
.cart-line { display: grid; grid-template-columns: 92px 1fr auto; gap: 18px; align-items: center; padding: 20px 0; border-bottom: 1px solid var(--line); }
.cart-line img { width: 92px; height: 92px; border: 1px solid var(--line); border-radius: 14px; background: var(--ink-700); object-fit: contain; }
.cart-line h3 { margin: 0 0 6px; font-size: 1rem; }
.cart-line p { margin: 0; font-size: .76rem; }
.quantity-control { display: inline-flex; align-items: center; margin-top: 10px; border: 1px solid var(--line); border-radius: var(--radius-pill); }
.quantity-control button { width: 36px; height: 36px; border: 0; background: transparent; color: white; cursor: pointer; }
.quantity-control span { min-width: 28px; text-align: center; font-size: .78rem; }
.remove-item { display: block; margin-top: 8px; border: 0; background: transparent; color: var(--paper-subtle); font-size: .72rem; text-decoration: underline; cursor: pointer; }
.cart-price { align-self: start; font-weight: 700; }
.empty-cart { padding: 68px 20px; text-align: center; }
.empty-cart h2 { font-size: 2rem; }
.summary-row { display: flex; justify-content: space-between; gap: 20px; padding: 12px 0; color: var(--paper-muted); }
.summary-row.total { margin-top: 12px; padding-top: 20px; border-top: 1px solid var(--line); color: white; font-size: 1.1rem; font-weight: 700; }
.payment-note { margin: 18px 0 0; color: var(--paper-subtle); font-size: .72rem; text-align: center; }
.checkout-steps { display: flex; gap: 10px; margin-bottom: 28px; }
.checkout-step { display: flex; align-items: center; gap: 8px; color: var(--paper-subtle); font-size: .72rem; }
.checkout-step span { display: grid; place-items: center; width: 28px; height: 28px; border: 1px solid var(--line); border-radius: 50%; }
.checkout-step.is-active { color: white; }
.checkout-step.is-active span { border-color: var(--pink-500); background: var(--pink-soft); }

/* 404 */
.error-page { position: relative; display: grid; place-items: center; min-height: 100svh; padding: 140px 0 80px; overflow: hidden; text-align: center; }
.error-page::before { content: '404'; position: absolute; top: 50%; left: 50%; color: rgba(255,255,255,.025); font-family: 'Manrope', sans-serif; font-size: 44vw; font-weight: 800; letter-spacing: -.1em; transform: translate(-52%, -52%); }
.error-inner { position: relative; z-index: 1; max-width: 760px; }
.error-inner h1 { margin-bottom: 22px; font-size: var(--h1); }
.error-inner p { max-width: 54ch; margin: 0 auto 30px; font-size: var(--body-lg); }
.error-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }

/* Toast */
.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 300;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: min(380px, calc(100vw - 44px));
  padding: 16px 18px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  background: #241820;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity .25s ease, transform .25s var(--ease);
}
.toast.is-visible { opacity: 1; transform: translateY(0); }
.toast-mark { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; background: var(--pink-500); }
.toast p { margin: 0; color: white; font-size: .84rem; }

body.cart-open .toast {
  top: 88px;
  bottom: auto;
}

@media (max-width: 1080px) {
  .desktop-nav { display: none; }
  .nav-shell { grid-template-columns: 1fr auto; }
  .menu-toggle { display: inline-block; }
  .nav-shop-button { display: none; }
  .hero-content { grid-template-columns: minmax(0, 1fr) 320px; gap: 38px; }
  .product-card:nth-child(1), .product-card:nth-child(2) { grid-column: span 6; }
  .product-card:nth-child(3), .product-card:nth-child(4) { grid-column: span 6; }
  .product-card:nth-child(5) { grid-column: 4 / span 6; }
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .product-layout { grid-template-columns: 1fr 1fr; gap: 42px; }
  .product-stage { min-height: 560px; }
  .product-stage img { height: 470px; }
  .automation-hero-grid { grid-template-columns: minmax(0, .85fr) minmax(440px, 1.15fr); gap: 46px; }
  .automation-visual { min-height: 610px; }
  .automation-process-grid { grid-template-columns: repeat(2, 1fr); }
  .automation-process-grid article:nth-child(2) { border-right: 0; }
  .automation-process-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .installation-hero-grid { grid-template-columns: minmax(0, .8fr) minmax(440px, 1.2fr); gap: 46px; }
  .installation-hero-visual { min-height: 580px; }
  .installation-hero-lock { height: 510px; }
  .installation-hero-handle { height: 450px; }
  .installation-choice-card { grid-template-columns: 150px 1fr; gap: 22px; }
  .installation-product-grid { grid-template-columns: minmax(0, .85fr) minmax(420px, 1.15fr); gap: 48px; }
}

@media (max-width: 820px) {
  :root { --gutter: 22px; }
  .section-head,
  .page-hero-inner,
  .editorial-grid,
  .manifesto,
  .contact-grid,
  .cart-page-grid,
  .checkout-grid,
  .spec-grid { grid-template-columns: 1fr; }
  .section-head { gap: 22px; }
  .hero-content { grid-template-columns: 1fr; align-items: end; }
  .hero-proof { max-width: 430px; }
  .home-hero::before { background: linear-gradient(90deg, rgba(8,6,8,.97), rgba(8,6,8,.45)), linear-gradient(0deg, rgba(8,6,8,.94), transparent 58%); }
  .page-hero { padding-top: 142px; }
  .page-hero-inner { gap: 28px; }
  .product-card:nth-child(n) { grid-column: span 6; min-height: 500px; }
  .product-card:nth-child(5) { grid-column: 4 / span 6; }
  .process-grid { grid-template-columns: 1fr; }
  .process-card { min-height: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .process-card h3 { margin-top: 54px; }
  .footer-main { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .product-layout { grid-template-columns: 1fr; }
  .product-gallery { position: static; }
  .product-stage { min-height: 560px; }
  .product-video-layout { grid-template-columns: 1fr; }
  .product-video-copy h2 { max-width: 13ch; }
  .listing-source-grid { grid-template-columns: 1fr; align-items: start; }
  .listing-source-actions { justify-content: flex-start; }
  .technical-spec-list { grid-template-columns: 1fr; }
  .technical-spec-list .spec-row:nth-child(odd) { border-right: 0; }
  .feature-band { grid-template-columns: repeat(2, 1fr); }
  .feature-band article:nth-child(2) { border-right: 0; }
  .feature-band article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .spec-grid h2 { position: static; }
  .value-grid { grid-template-columns: 1fr; }
  .value-card { min-height: 280px; }
  .value-card h3 { margin-top: 78px; }
  .summary-panel { position: static; }
  .automation-hero { padding-top: 132px; }
  .automation-hero-grid,
  .automation-consult { grid-template-columns: 1fr; }
  .automation-hero-copy h1 { max-width: 9.5ch; }
  .automation-visual { min-height: 680px; }
  .automation-system-grid { grid-template-columns: 1fr; }
  .automation-consult-copy { position: static; }
  .installation-hero { min-height: auto; padding-top: 142px; }
  .installation-hero-grid,
  .installation-product-grid,
  .installation-request-grid { grid-template-columns: 1fr; }
  .installation-hero-visual { min-height: 620px; }
  .installation-choice-grid { grid-template-columns: 1fr; }
  .installation-choice-card { grid-template-columns: minmax(180px, .7fr) 1fr; }
  .installation-product-grid-reverse .installation-product-visual,
  .installation-product-grid-reverse .installation-product-copy { order: initial; }
  .installation-product-visual,
  .installation-product-visual img { min-height: 560px; height: 560px; }
  .installation-request-copy { position: static; }
}

@media (max-width: 620px) {
  :root { --display: clamp(3rem, 16vw, 4.6rem); --h1: clamp(2.75rem, 14vw, 4.3rem); --h2: clamp(2.2rem, 11vw, 3.45rem); }
  .site-header { padding: 10px 0; }
  .brand small { display: none; }
  .brand img { width: 38px; height: 38px; }
  .nav-actions { gap: 5px; }
  .icon-button { min-width: 44px; min-height: 44px; }
  .cart-label { display: none; }
  body.cart-open .toast { top: 76px; right: 12px; left: 12px; max-width: none; }
  .home-hero { min-height: 920px; }
  .hero-backdrop { object-position: 61% center; opacity: .7; }
  .home-hero::before { background: linear-gradient(180deg, rgba(8,6,8,.76) 0%, rgba(8,6,8,.32) 30%, rgba(8,6,8,.94) 67%, rgba(8,6,8,1) 100%); }
  .hero-content { align-content: end; min-height: 920px; padding-top: 110px; padding-bottom: 46px; }
  .hero-title { max-width: 9ch; }
  .hero-title-long { max-width: 10.5ch; font-size: clamp(2.75rem, 12.8vw, 4.05rem); }
  .hero-proof { padding: 18px; }
  .hero-index { display: none; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card:nth-child(n) { grid-column: auto; min-height: 500px; }
  .product-card-image { height: 260px; }
  .product-card:nth-child(n+3) .product-card-image { height: 250px; }
  .editorial-visual,
  .editorial-visual img { min-height: 540px; }
  .editorial-note { flex-direction: column; }
  .editorial-note strong { text-align: left; }
  .stat-list { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat:last-child { padding-left: 0; border-bottom: 0; }
  .support-banner { grid-template-columns: 1fr; min-height: 480px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 38px 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .toolbar-inner { align-items: flex-start; flex-direction: column; padding-block: 14px; }
  .shop-count { display: none; }
  .filter-chips { width: 100%; }
  .shop-grid { grid-template-columns: 1fr; }
  .shop-card { min-height: 560px; }
  .product-hero { padding-top: 108px; }
  .product-anchor-bar { top: 68px; }
  .product-anchor-bar a { min-height: 52px; padding-inline: 13px; }
  .product-stage { min-height: 470px; }
  .product-stage img { width: 92%; height: 390px; }
  .feature-band { grid-template-columns: 1fr; }
  .feature-band article { min-height: 160px; border-right: 0; border-bottom: 1px solid var(--line); }
  .feature-band article:last-child { border-bottom: 0; }
  .feature-band h3 { margin-top: 34px; }
  .spec-row { grid-template-columns: 1fr; gap: 8px; }
  .technical-spec-list .spec-row { grid-template-columns: 1fr; padding-inline: 0; }
  .product-video-frame { border-radius: var(--radius-md); }
  .form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .cart-line { grid-template-columns: 74px 1fr; }
  .cart-line img { width: 74px; height: 74px; }
  .cart-price { grid-column: 2; }
  .purchase-actions { grid-template-columns: 1fr auto; }
  .automation-hero { min-height: auto; padding: 116px 0 58px; }
  .automation-hero-copy h1 { font-size: clamp(3.1rem, 15vw, 4.45rem); }
  .automation-microproof { display: grid; }
  .automation-visual { min-height: 560px; margin-top: 18px; }
  .automation-visual-main { inset: 0 0 66px; }
  .automation-visual-main img { object-position: 67% center; }
  .automation-visual-tile { width: 142px; height: 150px; }
  .automation-visual-control { left: 116px; bottom: 16px; }
  .automation-visual-note { top: 18px; right: 12px; bottom: auto; max-width: 242px; padding: 16px; }
  .automation-proof-band .container { flex-wrap: wrap; gap: 10px 14px; min-height: 108px; padding-block: 22px; }
  .automation-proof-band i { display: none; }
  .automation-proof-band span { padding: 5px 9px; border: 1px solid var(--line); border-radius: var(--radius-pill); }
  .automation-process-grid { grid-template-columns: 1fr; }
  .automation-process-grid article { min-height: 310px; border-right: 0; border-bottom: 1px solid var(--line); }
  .automation-process-grid article:last-child { border-bottom: 0; }
  .automation-process-grid h3 { margin-top: 72px; }
  .automation-system-grid article { min-height: 420px; padding: 30px 24px; }
  .automation-system-grid h3 { margin-top: 72px; }
  .automation-deliverable-list li { grid-template-columns: 34px 1fr; gap: 12px; }
  .product-installation-link { grid-template-columns: 1fr; }
  .product-installation-link .button { width: 100%; }
  .installation-hero { padding: 116px 0 58px; }
  .installation-hero-copy h1 { font-size: clamp(3rem, 14.6vw, 4.4rem); }
  .installation-microproof { display: grid; }
  .installation-hero-visual { grid-template-columns: 1.05fr .95fr; min-height: 430px; margin-top: 18px; }
  .installation-hero-lock { height: 390px; }
  .installation-hero-handle { height: 340px; }
  .installation-hero-product img { height: calc(100% - 80px); padding: 10px; }
  .installation-hero-product figcaption { min-height: 80px; padding: 16px; }
  .installation-choice-card { grid-template-columns: 1fr; min-height: 0; }
  .installation-choice-image { min-height: 300px; }
  .installation-choice-card h3 { max-width: 14ch; }
  .installation-process-grid { grid-template-columns: 1fr; }
  .installation-detail-grid { grid-template-columns: 1fr; }
  .installation-product-visual,
  .installation-product-visual img { min-height: 430px; height: 430px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .ticker-track { animation: none; }
}
