@font-face {
  font-family: "Proxima Nova";
  src: url("assets/fonts/proxima-nova-light.ttf") format("truetype");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Rajdhani";
  src: url("assets/fonts/rajdhani-medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

:root {
  --black: #080a09;
  --ink: #111310;
  --paper: #f1eee6;
  --paper-2: #e7e3da;
  --white: #faf8f2;
  --muted: #8e918a;
  --line: rgba(17, 19, 16, 0.14);
  --line-light: rgba(255, 255, 255, 0.17);
  --lime: #d7ff38;
  --shell: min(1280px, calc(100vw - 80px));
  --ease: cubic-bezier(.2, .75, .25, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

::selection { color: var(--black); background: var(--lime); }

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 9999;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 12px 18px;
  margin: 0;
  clip: auto;
  color: var(--black);
  background: var(--lime);
}

.shell { width: var(--shell); margin-inline: auto; }
.section { padding: 150px 0; }

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 92px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 40px;
  color: var(--white);
  transition: height .35s var(--ease), background-color .35s ease, backdrop-filter .35s ease;
}

.site-header.is-scrolled {
  height: 72px;
  background: rgba(8, 10, 9, .82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.brand { position: relative; z-index: 1002; justify-self: start; width: 138px; height: 34px; overflow: hidden; }
.brand img,
.footer-brand img { width: 100%; height: 100%; object-fit: contain; object-position: left center; }

.desktop-nav { display: flex; align-items: center; gap: 38px; }
.desktop-nav a { position: relative; font-size: 12px; text-transform: uppercase; letter-spacing: .13em; }
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
}
.desktop-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.header-cta { justify-self: end; font-size: 12px; text-transform: uppercase; letter-spacing: .12em; }
.header-cta span { display: inline-block; margin-left: 10px; color: var(--lime); transition: transform .3s var(--ease); }
.header-cta:hover span { transform: translate(3px, -3px); }

.menu-toggle { display: none; position: relative; z-index: 1002; width: 44px; height: 44px; padding: 0; border: 0; background: none; }
.menu-toggle span { position: absolute; left: 8px; width: 28px; height: 1px; background: var(--white); transition: transform .3s var(--ease), top .3s var(--ease); }
.menu-toggle span:first-child { top: 17px; }
.menu-toggle span:last-child { top: 26px; }
.menu-open .menu-toggle span:first-child { top: 22px; transform: rotate(45deg); }
.menu-open .menu-toggle span:last-child { top: 22px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed;
  z-index: 1001;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 100dvh;
  display: grid;
  align-items: center;
  padding: 100px 28px 40px;
  color: var(--white);
  background-color: #080a09;
  background-image: radial-gradient(circle at 85% 15%, rgba(215,255,56,.08), transparent 28%);
  isolation: isolate;
  visibility: hidden;
  opacity: 0;
  transition: opacity .35s ease, visibility .35s ease;
}
.menu-open .site-header {
  height: 72px;
  background: #080a09;
  border-bottom: 0;
  backdrop-filter: none;
}
body.menu-open.product-page .site-header { background: #080a09; backdrop-filter: none; }
.menu-open .mobile-menu { visibility: visible; opacity: 1; }
.mobile-menu nav { display: grid; }
.mobile-menu a { display: flex; gap: 24px; align-items: baseline; padding: 18px 0; border-bottom: 1px solid var(--line-light); font-size: clamp(26px, 8vw, 46px); font-weight: 300; }
.mobile-menu a span { color: var(--lime); font-size: 10px; letter-spacing: .1em; }

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.hero-media,
.hero-shade,
.noise { position: absolute; inset: 0; }

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  animation: hero-in 1.4s var(--ease) both;
}

.hero-shade {
  background: linear-gradient(90deg, rgba(8,10,9,.97) 0%, rgba(8,10,9,.82) 30%, rgba(8,10,9,.25) 62%, rgba(8,10,9,.08) 100%);
}

.noise {
  pointer-events: none;
  opacity: .12;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
}

.hero-content { position: relative; z-index: 2; padding-top: 70px; }
.eyebrow { margin: 0 0 22px; color: var(--lime); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .2em; }
.eyebrow::before { content: ""; display: inline-block; width: 34px; height: 1px; margin: 0 13px 4px 0; background: currentColor; }

.hero h1,
.intro h2,
.section-head h2,
.contact h2,
.statement blockquote {
  margin: 0;
  font-size: clamp(58px, 7.7vw, 118px);
  font-weight: 300;
  line-height: .91;
  letter-spacing: -.055em;
}

.hero h1 { max-width: 940px; }
h1 em, h2 em, blockquote em { font-family: Georgia, "Times New Roman", serif; font-weight: 400; letter-spacing: -.045em; }
.hero h1 em { color: var(--lime); }

.hero-copy { max-width: 520px; margin: 34px 0 0; color: rgba(250,248,242,.67); font-size: 16px; line-height: 1.7; }
.hero-actions { display: flex; align-items: center; gap: 34px; margin-top: 40px; }

.button { display: inline-flex; align-items: center; justify-content: space-between; gap: 60px; min-width: 250px; padding: 18px 20px; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .14em; transition: background-color .3s ease, transform .3s var(--ease); }
.button:hover { transform: translateY(-3px); }
.button-lime { color: var(--black); background: var(--lime); }
.button span { font-size: 18px; }
.hero-product-cta {
  min-width: 292px;
  gap: 30px;
  padding: 7px 7px 7px 23px;
  color: var(--white);
  background: rgba(8, 10, 9, .58);
  border: 1px solid rgba(215, 255, 56, .52);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .2);
}
.hero-product-cta span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 48px;
  color: var(--black);
  background: var(--lime);
  border-radius: 50%;
  transition: transform .35s var(--ease), background-color .3s ease;
}
.hero-product-cta:hover {
  color: var(--black);
  background: var(--lime);
  border-color: var(--lime);
}
.hero-product-cta:hover span { background: var(--white); transform: translateX(2px); }
.text-link, .arrow-link { font-size: 11px; text-transform: uppercase; letter-spacing: .15em; border-bottom: 1px solid rgba(255,255,255,.35); padding-bottom: 7px; }
.text-link span, .arrow-link span { margin-left: 10px; color: var(--lime); }

.hero-bottom { position: absolute; z-index: 3; right: 0; bottom: 25px; left: 0; display: flex; align-items: center; gap: 18px; color: rgba(255,255,255,.45); font-size: 9px; text-transform: uppercase; letter-spacing: .19em; }
.hero-bottom i { width: 4px; height: 4px; border-radius: 50%; background: var(--lime); }

.section-label { margin: 0; font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .18em; }
.section-label span { margin-right: 17px; color: #8f938c; }
.section-label--light { color: var(--white); }
.section-label--light span { color: var(--lime); }

.intro { background: var(--paper); }
.intro-grid { display: grid; grid-template-columns: 180px 1fr; gap: 50px; }
.intro-copy { display: grid; grid-template-columns: minmax(0, 1fr) 310px; gap: 70px; align-items: end; }
.intro h2 { max-width: 800px; font-size: clamp(44px, 5.5vw, 82px); }
.intro h2 em { color: #777970; }
.intro-text { padding-bottom: 6px; }
.intro-text p { margin: 0 0 38px; color: #666961; font-size: 15px; line-height: 1.8; }
.arrow-link { display: inline-block; border-color: rgba(17,19,16,.3); }

.categories { background: #dedbd3; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 60px; margin-bottom: 70px; }
.section-head .section-label { margin-bottom: 30px; }
.section-head h2 { font-size: clamp(52px, 6.5vw, 92px); }
.section-head h2 em { color: #74776f; }
.section-description { max-width: 320px; margin: 0 0 8px; color: #686b64; font-size: 14px; line-height: 1.8; }

.product-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2px; }
.product-card {
  position: relative;
  min-height: 560px;
  padding: 24px;
  overflow: hidden;
  color: var(--white);
  background: #111310;
  outline: none;
}
.product-card--wide { grid-column: span 2; min-height: 640px; }
.product-card--light { color: var(--ink); background: #eeece5; }
.card-glow { position: absolute; top: 6%; right: 8%; width: 62%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(210,255,50,.20), rgba(210,255,50,0) 68%); transition: transform .7s var(--ease); }
.card-glow--warm { background: radial-gradient(circle, rgba(232,208,176,.2), transparent 68%); }
.card-glow--blue { background: radial-gradient(circle, rgba(111,163,191,.18), transparent 68%); }
.card-glow--light { background: radial-gradient(circle, rgba(206,255,34,.35), transparent 67%); }
.product-card:hover .card-glow,
.product-card:focus-visible .card-glow { transform: scale(1.25); }

.card-number { position: relative; z-index: 2; color: #777b73; font-size: 9px; letter-spacing: .14em; }
.product-card--light .card-number { color: #81847d; }
.card-copy { position: absolute; z-index: 3; right: 24px; bottom: 24px; left: 24px; }
.card-copy p { margin: 0 0 9px; color: #888c84; font-size: 11px; text-transform: uppercase; letter-spacing: .11em; }
.card-copy h3 { margin: 0; font-size: clamp(30px, 3.7vw, 54px); font-weight: 300; letter-spacing: -.04em; }
.card-arrow { position: absolute; right: 0; bottom: 4px; display: grid; place-items: center; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.24); border-radius: 50%; color: var(--lime); transition: color .3s ease, background .3s ease, transform .3s var(--ease); }
.product-card--light .card-arrow { border-color: rgba(17,19,16,.25); color: var(--ink); }
.product-card:hover .card-arrow,
.product-card:focus-visible .card-arrow { color: var(--black); background: var(--lime); transform: rotate(45deg); }

.device { position: absolute; z-index: 1; display: grid; place-items: center; pointer-events: none; transition: transform .8s var(--ease); }
.product-card:hover .device,
.product-card:focus-visible .device { transform: translateY(-10px) rotate(-2deg); }
.device svg { width: 100%; height: 100%; overflow: visible; }
.device svg path,
.device svg rect,
.device svg circle { fill: none; stroke: #c8cbc3; stroke-width: 12; stroke-linecap: round; stroke-linejoin: round; }
.device svg .detail { stroke: #5c6059; stroke-width: 5; }
.device svg .accent { stroke: var(--lime); stroke-width: 7; }
.device-headphones { top: 9%; right: 17%; width: min(39vw, 500px); height: 65%; }
.device-watch { top: 8%; right: 16%; width: min(27vw, 310px); height: 67%; }
.device-irrigator { top: 5%; right: 16%; width: min(26vw, 290px); height: 70%; }
.device-brush { top: 5%; right: 12%; width: min(42vw, 520px); height: 72%; }
.product-card--light .device svg path,
.product-card--light .device svg rect,
.product-card--light .device svg circle { stroke: #252824; }
.product-card--light .device svg .detail { stroke: #9fa29a; }
.product-card--light .device svg .accent { stroke: #91a80d; }
.product-card--light .device svg .bristles { stroke-width: 4; }

.products-carousel { position: relative; }
.products-carousel__viewport { overflow-x: auto; overscroll-behavior-inline: contain; scrollbar-width: none; scroll-behavior: smooth; scroll-snap-type: x mandatory; }
.products-carousel__viewport::-webkit-scrollbar { display: none; }
.products-carousel__track { display: flex; gap: 2px; }
.products-carousel__track > [hidden] { display: none !important; }
.products-carousel__track > .real-product-card { flex: 0 0 calc((100% - 4px) / 3); scroll-snap-align: start; }
.products-carousel__controls { display: flex; justify-content: flex-end; align-items: center; min-height: 14px; margin: 18px 0 28px; }
.products-carousel__controls[hidden] { display: none; }
.products-carousel__count { min-width: 72px; color: #73776f; font-size: 9px; letter-spacing: .16em; }
.products-carousel__controls > div { display: contents; }
.products-carousel__controls button { position: absolute; z-index: 4; top: 302px; display: grid; place-items: center; width: 46px; height: 46px; padding: 0; color: var(--ink); background: var(--lime); border: 1px solid var(--lime); border-radius: 50%; cursor: pointer; transition: color .25s ease, background-color .25s ease, border-color .25s ease, opacity .25s ease; }
.products-carousel__controls button:first-child { left: -72px; }
.products-carousel__controls button:last-child { right: -72px; }
.products-carousel__controls button:hover:not(:disabled) { color: var(--white); background: var(--black); border-color: var(--black); }
.products-carousel__controls button:focus-visible { outline: 2px solid var(--black); outline-offset: 3px; }
.products-carousel__controls button:disabled { opacity: .28; cursor: default; }
.carousel-arrow { display: grid; place-items: center; width: 18px; height: 18px; }
.carousel-arrow svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }

.real-product-card {
  position: relative;
  min-height: 650px;
  display: block;
  padding: 0;
  overflow: hidden;
  color: var(--ink);
  text-align: left;
  background: #f6f5f1;
  border: 0;
  cursor: pointer;
}

.real-product-photo { position: absolute; inset: 0; overflow: hidden; }
.real-product-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(255,255,255,0) 45%, rgba(247,246,241,.94) 93%); }
.real-product-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease), filter .6s ease; }
.real-product-card:hover .real-product-photo img,
.real-product-card:focus-visible .real-product-photo img { transform: scale(1.035); }
.real-product-card:focus-visible { outline: 2px solid var(--lime); outline-offset: -2px; }

.real-product-card--dark { color: var(--white); background: #080a09; }
.real-product-card--dark .real-product-photo::after { background: linear-gradient(180deg, rgba(8,10,9,0) 42%, rgba(8,10,9,.96) 93%); }

.real-product-top { position: absolute; z-index: 2; top: 22px; right: 22px; left: 22px; display: flex; justify-content: space-between; font-size: 9px; text-transform: uppercase; letter-spacing: .15em; }
.real-product-top span:last-child { color: #8c8f87; }
.real-product-copy { position: absolute; z-index: 2; right: 24px; bottom: 26px; left: 24px; display: block; }
.product-kind { display: block; margin-bottom: 8px; color: #777b74; font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }
.real-product-copy strong { display: block; padding-right: 44px; font-size: clamp(31px, 3.2vw, 48px); font-weight: 300; letter-spacing: -.045em; line-height: 1; }
.brand-model { display: flex !important; align-items: center; gap: .27em; padding-right: 0 !important; }
.brand-model > img { flex: 0 0 auto; width: auto; max-width: none; height: .7em; object-fit: contain; }
.brand-model__code { flex: 0 0 auto; font-family: "Rajdhani", "Arial Narrow", sans-serif; font-size: 1em; font-weight: 500; line-height: 1; letter-spacing: .015em; transform: translateY(.015em); }
.brand-model--end { justify-content: center; }
.view-gallery { display: flex; justify-content: space-between; align-items: center; margin-top: 25px; padding-top: 14px; border-top: 1px solid rgba(17,19,16,.18); font-size: 9px; text-transform: uppercase; letter-spacing: .14em; }
.real-product-card--dark .view-gallery { border-color: rgba(255,255,255,.19); }
.round-arrow { display: grid; place-items: center; color: var(--black); background: var(--lime); border-radius: 50%; }
.round-arrow svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; transition: transform .3s var(--ease); }
.view-gallery i.round-arrow { width: 34px; height: 34px; font-style: normal; }
.view-gallery i.round-arrow svg { width: 11px; height: 11px; }
.real-product-card:hover .view-gallery .round-arrow svg,
.real-product-card:focus-visible .view-gallery .round-arrow svg { transform: translate(1px, -1px); }

.care-product-card { min-height: 650px; cursor: default; background: #f6f5f1; }
.care-product-card .real-product-photo::after { background: linear-gradient(180deg, rgba(247,246,241,0) 42%, rgba(247,246,241,.98) 88%); }
.care-product-card .real-product-photo img { object-fit: contain; transition: transform .8s var(--ease); }
.care-product-card--pure .real-product-photo { background: #d9ddde; }
.care-product-card--pure .real-product-photo img { object-fit: cover; object-position: center 42%; filter: brightness(1.08) saturate(.88); }
.care-product-card--clear .real-product-photo { background: radial-gradient(circle at 50% 41%, #fff 0, #f3f2ee 46%, #e4e4df 100%); }
.care-product-card--clear .real-product-photo img { object-position: center 38%; padding: 28px 0 142px; filter: drop-shadow(0 20px 18px rgba(35,38,34,.12)); }
.care-product-card:hover .real-product-photo img { transform: none; }
.product-status { display: flex; justify-content: space-between; align-items: center; margin-top: 25px; padding-top: 14px; border-top: 1px solid rgba(17,19,16,.18); color: #60645d; font-size: 8px; text-transform: uppercase; letter-spacing: .14em; }
.product-status i { flex: 0 0 auto; width: 34px; height: 34px; margin-top: -4px; border-radius: 50%; background: var(--lime); }

.coming-soon { display: flex; align-items: center; gap: 30px; margin-top: 2px; padding: 30px 34px; color: var(--white); background: var(--black); }
.coming-label { padding: 7px 10px; color: var(--black); background: var(--lime); font-size: 8px; font-weight: 700; text-transform: uppercase; letter-spacing: .15em; }
.coming-soon p { margin: 0; font-size: 20px; font-weight: 300; }
.coming-soon > div { display: flex; align-items: center; gap: 15px; margin-left: auto; color: #8a8e86; font-size: 9px; text-transform: uppercase; letter-spacing: .14em; }
.coming-soon i { width: 4px; height: 4px; border-radius: 50%; background: var(--lime); }

.compare-banner { display: flex; align-items: center; justify-content: space-between; gap: 40px; margin-top: 2px; padding: 30px 34px; color: var(--white); background: var(--black); }
.compare-banner__label { display: block; margin-bottom: 7px; color: var(--lime); font-size: 8px; font-weight: 600; text-transform: uppercase; letter-spacing: .16em; }
.compare-banner p { margin: 0; font-size: 20px; font-weight: 300; }
.compare-banner a { display: inline-flex; align-items: center; gap: 45px; padding: 13px 16px; border: 1px solid rgba(255,255,255,.22); font-size: 9px; text-transform: uppercase; letter-spacing: .14em; transition: color .3s ease, background-color .3s ease; }
.compare-banner a span { color: var(--lime); font-size: 16px; }
.compare-banner a:hover { color: var(--black); background: var(--lime); }
.compare-banner a:hover span { color: var(--black); }

.product-dialog {
  width: min(1180px, calc(100vw - 48px));
  max-width: none;
  height: min(820px, calc(100dvh - 48px));
  max-height: none;
  padding: 0;
  color: var(--ink);
  background: var(--paper);
  border: 0;
  overflow: hidden;
}
.product-dialog::backdrop { background: rgba(0,0,0,.82); backdrop-filter: blur(8px); }
.product-dialog[open] { animation: dialog-in .35s var(--ease) both; }
.dialog-layout { height: 100%; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(350px, .85fr); }
.dialog-visual { position: relative; min-height: 0; display: grid; place-items: center; background: #fff; overflow: hidden; }
.dialog-visual > img { width: 100%; height: 100%; object-fit: contain; }
.dialog-controls { position: absolute; right: 18px; bottom: 18px; left: 18px; display: flex; align-items: center; justify-content: space-between; padding: 10px; color: var(--white); background: rgba(8,10,9,.83); backdrop-filter: blur(10px); }
.dialog-controls button { width: 42px; height: 42px; color: var(--white); background: transparent; border: 1px solid rgba(255,255,255,.2); cursor: pointer; }
.dialog-controls span { font-size: 9px; letter-spacing: .16em; }
.dialog-controls b { color: var(--lime); font-weight: 500; }
.dialog-info { position: relative; padding: 70px 42px 28px; overflow-y: auto; }
.dialog-close { position: absolute; top: 24px; right: 24px; width: 42px; height: 42px; color: var(--ink); background: transparent; border: 1px solid var(--line); border-radius: 50%; font-size: 25px; font-weight: 200; line-height: 1; cursor: pointer; }
.dialog-info > p:first-of-type { margin: 0 0 18px; color: #777b73; font-size: 9px; text-transform: uppercase; letter-spacing: .17em; }
.dialog-info h2 { margin: 0; font-size: clamp(42px, 5vw, 72px); font-weight: 300; line-height: .95; letter-spacing: -.055em; }
.dialog-info > p:nth-of-type(2) { margin: 30px 0 42px; color: #666a63; font-size: 14px; line-height: 1.8; }
.dialog-thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px; }
.dialog-thumbs button { position: relative; aspect-ratio: 1; padding: 0; overflow: hidden; background: #fff; border: 1px solid transparent; cursor: pointer; opacity: .6; transition: opacity .25s ease, border-color .25s ease; }
.dialog-thumbs button.is-active { border-color: var(--ink); opacity: 1; }
.dialog-thumbs img { width: 100%; height: 100%; object-fit: cover; }

@keyframes dialog-in { from { opacity: 0; transform: translateY(18px) scale(.99); } to { opacity: 1; transform: none; } }

.statement { position: relative; min-height: 760px; display: grid; place-items: center; overflow: hidden; color: var(--white); background: var(--black); }
.statement::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at center, rgba(215,255,56,.08), transparent 40%); }
.statement-inner { position: relative; z-index: 2; text-align: center; }
.statement-inner .section-label { margin-bottom: 75px; }
.statement blockquote { font-size: clamp(44px, 6.4vw, 94px); }
.statement blockquote em { color: var(--lime); }
.statement-inner > p:last-child { max-width: 540px; margin: 48px auto 0; color: #8c9088; font-size: 14px; line-height: 1.8; }
.statement-orbit { position: absolute; top: 50%; left: 50%; width: min(85vw, 920px); aspect-ratio: 1; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; transform: translate(-50%, -50%); animation: orbit 28s linear infinite; }
.statement-orbit span { position: absolute; top: 50%; left: -58px; color: var(--lime); background: var(--black); font-size: 9px; letter-spacing: .2em; white-space: nowrap; }

.nazumi360 { position: relative; min-height: 1080px; overflow: hidden; color: var(--white); background: var(--black); }
.nazumi360::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 37%, rgba(215,255,56,.085), transparent 34%); pointer-events: none; }
.nazumi360-inner { position: relative; z-index: 2; }
.nazumi360-inner > .section-label { margin-bottom: 35px; }
.nazumi360-visual { position: absolute; z-index: 1; top: 202px; left: 50%; width: min(58vw, 576px); aspect-ratio: 1; transform: translateX(-50%); pointer-events: none; }
.orbit-ring { position: absolute; border: 1px solid rgba(255,255,255,.11); border-radius: 50%; }
.orbit-ring--outer { inset: 0; }
.orbit-ring--inner { inset: 14%; border-color: rgba(255,255,255,.07); }
.orbit-runner { position: absolute; inset: 0; border-radius: 50%; animation: orbit-runner-turn 34s linear infinite; }
.orbit-runner::after { content: ""; position: absolute; top: -5px; left: 50%; width: 10px; height: 10px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 7px rgba(215,255,56,.1), 0 0 28px rgba(215,255,56,.55); transform: translateX(-50%); }
.orbit-point { position: absolute; width: 7px; height: 7px; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; background: var(--black); }
.orbit-point--morning { top: 14%; left: 50%; transform: translate(-50%, -50%); }
.orbit-point--road { top: 50%; right: 14%; transform: translate(50%, -50%); }
.orbit-point--move { bottom: 14%; left: 50%; transform: translate(-50%, 50%); }
.orbit-point--self { top: 50%; left: 14%; transform: translate(-50%, -50%); }
.nazumi360-core { min-height: 610px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.nazumi360-name { margin: 0 0 25px; color: #9a9e96; font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .22em; }
.nazumi360-name span { color: var(--lime); }
.nazumi360-core h2 { max-width: 850px; margin: 0; font-size: clamp(58px, 7.4vw, 106px); font-weight: 300; line-height: .88; letter-spacing: -.06em; }
.nazumi360-core h2 em { color: var(--lime); font-family: Georgia, serif; font-weight: 400; }
.nazumi360-core > p:last-child { max-width: 540px; margin: 38px auto 0; color: #8d9189; font-size: 14px; line-height: 1.8; }
.day-cycle { position: relative; z-index: 3; display: grid; grid-template-columns: repeat(4, 1fr); margin: 35px 0 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.14); border-bottom: 1px solid rgba(255,255,255,.14); }
.day-cycle li { min-width: 0; padding: 26px 24px 30px; border-left: 1px solid rgba(255,255,255,.1); }
.day-cycle li:first-child { border-left: 0; }
.day-cycle li > span { display: block; margin-bottom: 22px; color: var(--lime); font-size: 8px; text-transform: uppercase; letter-spacing: .16em; }
.day-cycle strong { display: block; font-size: 18px; font-weight: 400; }
.day-cycle p { margin: 14px 0 0; color: #777b74; font-size: 11px; line-height: 1.7; }

.values { background: var(--paper); }
.section-head--values { margin-bottom: 90px; }
.value-list { border-top: 1px solid var(--line); }
.value { display: grid; grid-template-columns: 70px 80px 1fr 1fr; align-items: start; gap: 30px; padding: 42px 0; border-bottom: 1px solid var(--line); }
.value-index { padding-top: 12px; color: #8b8e87; font-size: 9px; letter-spacing: .15em; }
.value-icon { width: 50px; height: 50px; display: grid; place-items: center; border: 1px solid #b7bab2; border-radius: 50%; font-size: 20px; }
.value h3 { margin: 5px 0 0; font-size: clamp(28px, 3vw, 45px); font-weight: 300; letter-spacing: -.035em; }
.value p { max-width: 430px; margin: 6px 0 0; color: #6d7069; font-size: 14px; line-height: 1.75; }

.contact { color: var(--white); background: #111310; }
.contact-inner > .section-label { margin-bottom: 100px; }
.contact-copy { display: grid; grid-template-columns: 1.3fr .7fr; gap: 100px; align-items: end; }
.contact h2 { font-size: clamp(54px, 7.3vw, 104px); }
.contact h2 em { color: var(--lime); }
.contact-side p { margin: 0 0 40px; color: #93978f; font-size: 14px; line-height: 1.8; }
.company-contact > strong { display: block; margin-bottom: 18px; font-size: 20px; font-weight: 400; }
.company-contact address { margin-bottom: 30px; color: #93978f; font-size: 14px; font-style: normal; line-height: 1.7; }
.company-contact dl { margin: 0 0 38px; border-top: 1px solid rgba(255,255,255,.14); }
.company-contact dl div { display: flex; justify-content: space-between; gap: 30px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.company-contact dt { color: #70746d; font-size: 9px; text-transform: uppercase; letter-spacing: .14em; }
.company-contact dd { margin: 0; font-size: 12px; letter-spacing: .06em; }
.company-contact .arrow-link { border-color: rgba(255,255,255,.3); }

.site-footer { padding: 85px 0 28px; color: var(--white); background: var(--black); border-top: 1px solid rgba(255,255,255,.08); }
.footer-main { display: grid; grid-template-columns: 1.25fr 1.55fr .75fr .85fr; gap: clamp(35px, 6vw, 90px); padding-bottom: 75px; }
.footer-intro p { margin: 22px 0 0; color: #777b74; font-family: Georgia, serif; font-style: italic; }
.footer-brand { width: 160px; height: 36px; overflow: hidden; }
.footer-label { margin: 0 0 20px; color: #666a63; font-size: 8px; font-weight: 600; text-transform: uppercase; letter-spacing: .17em; }
.footer-company strong { display: block; max-width: 350px; font-size: 11px; font-weight: 500; line-height: 1.6; letter-spacing: .05em; }
.footer-company address { margin-top: 15px; color: #8b8f87; font-size: 11px; font-style: normal; line-height: 1.6; }
.footer-email { display: inline-block; margin-top: 8px; color: #aeb2aa; font-size: 11px; transition: color .25s ease; }
.footer-email:hover { color: var(--lime); }
.footer-company > p:last-child { margin: 14px 0 0; color: #666a63; font-size: 9px; line-height: 1.7; }
.footer-nav { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; }
.footer-nav .footer-label { margin-bottom: 9px; }
.footer-nav a { color: #a0a49b; font-size: 11px; transition: color .25s ease; }
.footer-nav a:hover { color: var(--lime); }
.back-top { justify-self: end; font-size: 10px; text-transform: uppercase; letter-spacing: .14em; }
.back-top span { margin-left: 14px; color: var(--lime); }
.footer-bottom .back-top { margin-left: auto; color: #8b8f87; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.11); color: #5f625d; font-size: 9px; text-transform: uppercase; letter-spacing: .15em; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease) var(--delay, 0ms), transform .8s var(--ease) var(--delay, 0ms); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes hero-in { from { opacity: 0; transform: scale(1.04); } to { opacity: 1; transform: scale(1); } }
@keyframes orbit { to { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes orbit-runner-turn { to { transform: rotate(-360deg); } }

@media (max-width: 1000px) {
  :root { --shell: min(100% - 48px, 900px); }
  .site-header { grid-template-columns: 1fr auto; padding-inline: 24px; }
  .desktop-nav, .header-cta { display: none; }
  .menu-toggle { display: block; justify-self: end; }
  .hero-media img { object-position: 62% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(8,10,9,.94), rgba(8,10,9,.52) 60%, rgba(8,10,9,.2)); }
  .intro-grid { grid-template-columns: 1fr; }
  .intro-copy { grid-template-columns: 1fr; }
  .intro-text { max-width: 560px; }
  .products-carousel__track > .real-product-card { flex-basis: calc((100% - 2px) / 2); }
  .products-carousel__controls button:first-child { left: 12px; }
  .products-carousel__controls button:last-child { right: 12px; }
  .day-cycle { grid-template-columns: repeat(2, 1fr); }
  .day-cycle li:nth-child(3) { border-top: 1px solid rgba(255,255,255,.1); border-left: 0; }
  .day-cycle li:nth-child(4) { border-top: 1px solid rgba(255,255,255,.1); }
  .dialog-layout { grid-template-columns: minmax(0, 1fr) 380px; }
  .value { grid-template-columns: 50px 60px 1fr; }
  .value p { grid-column: 3; }
  .contact-copy { grid-template-columns: 1fr; }
  .contact-side { max-width: 560px; }
  .footer-main { grid-template-columns: 1fr 1.4fr; }
}

@media (max-width: 720px) {
  :root { --shell: calc(100% - 36px); }
  .section { padding: 96px 0; }
  .site-header { height: 72px; padding-inline: 18px; }
  .brand { width: 118px; height: 30px; }
  .hero { min-height: 800px; align-items: flex-end; padding-bottom: 115px; }
  .hero-media { opacity: .72; }
  .hero-media img { object-position: 66% center; }
  .hero-shade { background: linear-gradient(180deg, rgba(8,10,9,.12) 0%, rgba(8,10,9,.35) 35%, rgba(8,10,9,.98) 80%); }
  .hero-content { padding-top: 0; }
  .eyebrow { font-size: 9px; }
  .hero h1 { font-size: clamp(52px, 16vw, 76px); }
  .hero-copy { max-width: 92%; margin-top: 25px; font-size: 14px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 24px; margin-top: 30px; }
  .button { width: 100%; min-width: 0; }
  .hero-bottom { bottom: 20px; gap: 10px; font-size: 7px; }
  .intro-grid { gap: 45px; }
  .intro-copy { gap: 35px; }
  .intro h2 { font-size: 44px; }
  .section-head { display: block; margin-bottom: 45px; }
  .section-description { margin-top: 28px; }
  .product-grid { grid-template-columns: 1fr; gap: 2px; }
  .products-carousel__viewport { overflow: visible; scroll-snap-type: none; }
  .products-carousel__track { display: grid; grid-template-columns: 1fr; }
  .products-carousel__track > .real-product-card { min-width: 0; }
  .products-carousel__controls { display: none; }
  .real-product-card,
  .real-product-card:last-child { grid-column: auto; min-height: 560px; }
  .real-product-copy .brand-model { gap: .24em; font-size: 29px; }
  .real-product-copy .brand-model__code { font-size: .97em; letter-spacing: 0; transform: translateY(0); }
  .care-product-card,
  .care-product-card:last-child { grid-column: auto; min-height: 560px; }
  .care-product-card--clear .real-product-photo img { padding: 22px 0 135px; }
  .coming-soon { align-items: flex-start; flex-wrap: wrap; gap: 14px 18px; padding: 25px 22px; }
  .coming-soon p { width: calc(100% - 105px); font-size: 17px; }
  .coming-soon > div { width: 100%; margin: 6px 0 0; flex-wrap: wrap; }
  .compare-banner { align-items: stretch; flex-direction: column; gap: 24px; padding: 25px 22px; }
  .compare-banner a { justify-content: space-between; width: 100%; }
  .product-dialog { width: calc(100vw - 20px); height: calc(100dvh - 20px); }
  .dialog-layout { grid-template-columns: 1fr; grid-template-rows: minmax(300px, 55%) minmax(0, 45%); }
  .dialog-info { padding: 52px 22px 24px; }
  .dialog-info h2 { font-size: 43px; }
  .dialog-info > p:nth-of-type(2) { margin: 20px 0 28px; }
  .dialog-close { top: 10px; right: 16px; }
  .dialog-thumbs { display: flex; overflow-x: auto; padding-bottom: 8px; }
  .dialog-thumbs button { flex: 0 0 72px; }
  .product-card,
  .product-card--wide { grid-column: auto; min-height: 520px; }
  .device-headphones { top: 10%; right: 4%; width: 88%; height: 60%; }
  .device-watch { right: 8%; width: 72%; }
  .device-irrigator { right: 10%; width: 70%; }
  .device-brush { right: 1%; width: 96%; }
  .card-copy h3 { max-width: 82%; font-size: 35px; }
  .statement { min-height: 680px; }
  .statement-inner .section-label { margin-bottom: 55px; }
  .statement blockquote { font-size: 42px; }
  .statement-orbit { width: 150vw; }
  .nazumi360 { min-height: 0; padding-top: 105px; }
  .nazumi360-inner > .section-label { margin-bottom: 20px; }
  .nazumi360-visual { top: calc(390px - min(47vw, 216px)); width: min(94vw, 432px); }
  .nazumi360-core { min-height: 500px; }
  .nazumi360-core h2 { font-size: clamp(50px, 15vw, 68px); }
  .nazumi360-core > p:last-child { max-width: 92%; margin-top: 30px; font-size: 13px; }
  .day-cycle { grid-template-columns: 1fr; margin-top: 35px; }
  .day-cycle li,
  .day-cycle li:first-child,
  .day-cycle li:nth-child(3),
  .day-cycle li:nth-child(4) { display: grid; grid-template-columns: 105px 1fr; gap: 5px 20px; padding: 24px 0; border-top: 1px solid rgba(255,255,255,.1); border-right: 0; border-bottom: 0; border-left: 0; }
  .day-cycle li:first-child { border-top: 0; }
  .day-cycle li > span { grid-row: span 2; margin: 4px 0 0; }
  .day-cycle p { margin-top: 6px; }
  .value { grid-template-columns: 38px 1fr; gap: 22px; padding: 32px 0; }
  .value-icon { grid-column: 1; grid-row: 2; width: 38px; height: 38px; font-size: 15px; }
  .value h3 { grid-column: 2; }
  .value p { grid-column: 2; }
  .contact-inner > .section-label { margin-bottom: 60px; }
  .contact-copy { gap: 45px; }
  .contact h2 { font-size: 52px; }
  .footer-main { grid-template-columns: 1fr; gap: 44px; padding-bottom: 55px; }
  .footer-brand { width: 125px; height: 31px; }
  .footer-bottom { gap: 16px; flex-wrap: wrap; }
  .footer-bottom .back-top { width: 100%; margin: 4px 0 0; }
}

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