:root {
  --black: #050505;
  --ink: #111111;
  --muted: #666666;
  --paper: #f0f0ee;
  --white: #ffffff;
  --yellow: #fff200;
  --rakuten: #bf0000;
  --amazon: #232f3e;
  --amazon-accent: #ff9900;
  --cool: #dce7e8;
  --line: rgba(5, 5, 5, .18);
  --header: 96px;
  --affiliate-bar: 33px;
  --max: 1200px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
  color: var(--ink);
  font-family: "Helvetica Neue", Arial, "Noto Sans JP", sans-serif;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
}

body.is-menu-open {
  overflow: hidden;
}
.affiliate-disclosure {
  position: relative;
  z-index: 31;
  margin: 0;
  padding: 8px 16px;
  color: var(--white);
  background: var(--black);
  font-size: 11px;
  line-height: 1.5;
  text-align: center;
}

.affiliate-image-link {
  display: block;
}

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

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

ul,
ol,
p,
h1,
h2,
h3,
h4 {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
}

button {
  border: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.page-cover {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  background: var(--yellow);
  animation: cover-out .9s var(--ease) forwards;
}

@keyframes cover-out {
  0% { transform: translateX(0); }
  100% { transform: translateX(110%); }
}

.site-header {
  position: fixed;
  top: var(--affiliate-bar);
  left: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: var(--header);
  transition: height .25s ease, background-color .25s ease, backdrop-filter .25s ease;
}

.site-header.is-compact {
  height: 72px;
  background: rgba(240, 240, 238, .82);
  backdrop-filter: blur(12px);
}

.brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  color: var(--black);
  font-family: Avenir, "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(32px, 4.2vw, 60px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-logo__cross {
  font-weight: 200;
}

.site-header.is-compact .brand-logo {
  font-size: clamp(24px, 2.4vw, 32px);
}

.menu-button {
  position: fixed;
  top: 32px;
  right: 32px;
  z-index: 45;
  width: 44px;
  height: 44px;
  transition: top .25s ease, transform .25s ease;
}

.site-header.is-compact .menu-button {
  top: 16px;
}

.menu-button span,
.menu-button span::before {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: var(--black);
  content: "";
  transform: translateY(-50%);
  transition: background-color .25s ease, transform .25s ease;
}

.menu-button span::before {
  top: 0;
  transform: rotate(90deg);
}

.is-menu-open .menu-button span {
  background: var(--white);
  transform: translateY(-50%) rotate(135deg);
}

.is-menu-open .menu-button span::before {
  background: var(--white);
}

.site-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  justify-content: end;
  visibility: hidden;
  pointer-events: none;
}

.site-menu__inner {
  width: min(1080px, 84vw);
  height: 100vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 260px 1fr;
  grid-template-areas:
    "top products"
    "news products"
    "store products";
  gap: 42px 96px;
  align-content: center;
  padding: 72px 112px;
  color: var(--white);
  background: var(--black);
  clip-path: inset(0 0 0 100%);
  transition: clip-path .48s var(--ease);
}

.is-menu-open .site-menu {
  visibility: visible;
  pointer-events: auto;
}

.is-menu-open .site-menu__inner {
  clip-path: inset(0 0 0 0);
}

.site-menu__heading {
  width: fit-content;
  font-family: Avenir, "Helvetica Neue", Arial, sans-serif;
  font-size: 40px;
  line-height: 1;
  letter-spacing: 0;
}

.site-menu a {
  background: linear-gradient(var(--white), var(--white)) 100% 100% / 0 1px no-repeat;
  transition: opacity .2s ease, background-size .25s ease;
}

.site-menu a:hover {
  background-position: 0 100%;
  background-size: 100% 1px;
}

.site-menu__current {
  opacity: .52;
  pointer-events: none;
}

.site-menu__store {
  grid-area: store;
}

.site-menu__store ul,
.site-menu__group ul {
  margin-top: 24px;
  font-family: Avenir, "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.9;
}

.site-menu__store li::before,
.site-menu__group li::before,
.site-footer li::before {
  content: "- ";
}

.site-menu__products {
  grid-area: products;
}

.site-menu__group {
  margin-top: 24px;
  font-size: 18px;
  line-height: 1.8;
}

.hero {
  position: relative;
  min-height: 760px;
  padding-top: 57px;
  overflow: hidden;
  background:
    linear-gradient(90deg, #f4f4f0 0%, #f4f4f0 44%, rgba(244,244,240,.9) 53%, rgba(226,232,232,.2) 72%),
    #dce4e4;
}

.hero::before {
  position: absolute;
  inset: 0 0 0 auto;
  z-index: 0;
  width: 58%;
  background:
    linear-gradient(90deg, rgba(244,244,240,1) 0%, rgba(244,244,240,.72) 16%, rgba(244,244,240,0) 44%),
    linear-gradient(180deg, rgba(255,255,255,.92) 0 12%, transparent 12% 78%, rgba(155,166,166,.24) 78% 79%, rgba(214,220,218,.9) 79% 100%),
    linear-gradient(120deg, #edf1ef 0%, #d8e0df 52%, #c7d1d1 100%);
  content: "";
  pointer-events: none;
}

.hero__marquee {
  position: absolute;
  left: -40px;
  bottom: 104px;
  z-index: 0;
  color: rgba(255, 242, 0, .85);
  font-family: Avenir, "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(104px, 15vw, 220px);
  font-weight: 300;
  line-height: .85;
  white-space: nowrap;
}

.hero__product {
  position: absolute;
  z-index: 1;
  top: 112px;
  right: max(20px, calc((100vw - 1280px) / 2));
  width: min(48vw, 590px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.86) 0 68%, rgba(228,232,229,.94) 68% 100%);
  box-shadow: 0 30px 70px rgba(45,58,58,.16);
}

.hero__product::before {
  position: absolute;
  top: 9%;
  right: 7%;
  width: 28%;
  height: 48%;
  border: 1px solid rgba(88,105,105,.12);
  background:
    linear-gradient(90deg, transparent 48%, rgba(88,105,105,.1) 49% 51%, transparent 52%),
    linear-gradient(180deg, transparent 32%, rgba(88,105,105,.1) 33% 35%, transparent 36% 65%, rgba(88,105,105,.1) 66% 68%, transparent 69%);
  content: "";
  pointer-events: none;
}

.hero__product::after {
  position: absolute;
  right: 15%;
  bottom: 11%;
  width: 50%;
  height: 7%;
  border-radius: 50%;
  background: rgba(43,52,52,.18);
  filter: blur(16px);
  content: "";
  pointer-events: none;
}

.hero__product img {
  position: relative;
  z-index: 1;
  width: 82%;
  height: 82%;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: contrast(1.03) drop-shadow(0 18px 18px rgba(18,24,24,.18));
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 96px));
  margin-left: max(48px, calc((100vw - 1220px) / 2));
  padding-top: 128px;
}

.hero__eyebrow {
  width: fit-content;
  margin-bottom: 16px;
  padding: 8px 12px 9px;
  background: var(--yellow);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.hero h1 {
  display: grid;
  gap: 8px;
  max-width: 690px;
  font-size: clamp(30px, 3.8vw, 50px);
  font-weight: 300;
  line-height: 1.15;
}

.hero h1 span {
  width: fit-content;
  padding: 7px 16px 10px;
  background: var(--white);
}

.hero__lead {
  max-width: 520px;
  margin-top: 18px;
  font-size: 18px;
  line-height: 1.8;
}

.hero__cta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: min(650px, 100%);
  margin-top: 18px;
}

.store-button {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 76px;
  overflow: hidden;
  isolation: isolate;
  padding: 16px 24px;
  color: var(--white);
  box-shadow: 0 16px 34px rgba(0,0,0,.2);
  transition: transform .2s ease, box-shadow .2s ease;
}

.store-button::before {
  position: absolute;
  top: -70%;
  bottom: -70%;
  left: -58%;
  z-index: 1;
  width: 42%;
  background: linear-gradient(105deg, transparent 0%, rgba(255,255,255,.16) 35%, rgba(255,255,255,.44) 50%, rgba(255,255,255,.12) 65%, transparent 100%);
  content: "";
  pointer-events: none;
  transform: skewX(-18deg);
  animation: cta-sheen 11s var(--ease) infinite;
}

.store-button::after {
  position: absolute;
  top: 50%;
  right: 20px;
  z-index: 3;
  width: 18px;
  height: 18px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.store-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 46px rgba(0,0,0,.24);
}

.store-button:hover::before {
  animation-duration: 6.5s;
}

.store-button span {
  position: relative;
  z-index: 2;
  font-size: 26px;
  line-height: 1;
  font-weight: 700;
}

.store-button strong {
  position: relative;
  z-index: 2;
  margin-top: 8px;
  padding-right: 28px;
  font-size: 13px;
  line-height: 1.35;
}

.store-button--rakuten {
  background: linear-gradient(100deg, #bf0000 0%, #d20a0a 52%, #9d0000 100%);
}

.store-button--amazon {
  background: linear-gradient(90deg, var(--amazon) 0 78%, var(--amazon-accent) 78% 100%);
}

@keyframes cta-sheen {
  0%, 56% { left: -58%; opacity: 0; }
  64% { opacity: .78; }
  82% { left: 116%; opacity: 0; }
  100% { left: 116%; opacity: 0; }
}

.hero__badge {
  position: absolute;
  right: 42px;
  bottom: 42px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 216px;
  height: 216px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  text-align: center;
  font-size: 27px;
  font-weight: 700;
  line-height: 1.35;
  transition: transform .22s ease;
}

.hero__badge:hover {
  transform: scale(.97);
}

.hero-copy {
  position: relative;
  z-index: 4;
  width: fit-content;
  margin-top: -38px;
}

.highlight {
  width: fit-content;
  padding: 14px 18px 15px 120px;
  background: var(--white);
  font-size: 42px;
  font-weight: 300;
  line-height: 1.22;
}

.highlight--right {
  padding-right: 18px;
}

.brand-subline {
  width: fit-content;
  margin: 5px auto 10px 460px;
  font-family: Avenir, "Helvetica Neue", Arial, sans-serif;
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
}

.section-title {
  position: relative;
  z-index: 4;
  display: inline-block;
  font-family: Avenir, "Helvetica Neue", Arial, sans-serif;
  font-size: 40px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0;
}

.section-title span {
  display: inline-block;
  padding-bottom: 12px;
  background: linear-gradient(var(--black), var(--black)) 0 100% / 100% 2px no-repeat;
}

.about {
  position: relative;
  display: grid;
  grid-template-columns: 1fr minmax(420px, 620px) minmax(500px, 620px) 1fr;
  grid-template-areas:
    ". image image image"
    ". text circles .";
  margin-top: 150px;
}

.about__image-wrap {
  position: relative;
  grid-area: image;
}

.about .section-title {
  position: absolute;
  top: -20px;
  left: 0;
}

.about__image {
  width: 100%;
  height: 416px;
  object-fit: contain;
  background: var(--white);
}

.about__text {
  grid-area: text;
  margin-top: 34px;
  margin-right: 30px;
  font-size: 15px;
  line-height: 2.16;
  letter-spacing: .02em;
}

.about__circles {
  grid-area: circles;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: -34px;
  transform: translateX(42px);
}

.care-circle {
  display: grid;
  grid-template-rows: 1fr 1fr;
  width: 280px;
  height: 280px;
  overflow: hidden;
  border: 1px solid var(--black);
  border-radius: 50%;
  background: linear-gradient(to top, var(--yellow) 50%, transparent 50%);
}

.care-circle > div {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
}

.care-circle p:first-child {
  position: relative;
  font-size: 48px;
  font-weight: 200;
  line-height: 1;
}

.care-circle p:first-child::before,
.care-circle p:first-child::after {
  position: absolute;
  bottom: -10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yellow);
  content: "";
}

.care-circle p:first-child::before {
  left: 25%;
}

.care-circle p:first-child::after {
  right: 25%;
}

.care-circle p:last-child {
  font-size: 23px;
  font-weight: 300;
}

.care-circle span {
  display: grid;
  place-items: center;
  padding: 0 20px 22px;
  font-family: Avenir, "Helvetica Neue", Arial, sans-serif;
  font-size: 23px;
  font-weight: 300;
  line-height: 1.15;
  text-align: center;
}

.about__cross {
  position: relative;
  display: block;
  flex: 0 0 auto;
  width: 61px;
  height: 61px;
}

.about__cross::before,
.about__cross::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 86px;
  height: 1px;
  background: var(--black);
  content: "";
}

.about__cross::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.about__cross::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.category-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 160px auto 0;
  padding: 0 40px;
}

.category-nav li {
  position: relative;
  width: 336px;
  min-height: 190px;
}

.category-nav__visual {
  margin: 0 auto 22px;
  transform: scale(.78);
  transform-origin: bottom center;
}

.category-nav a {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 0 24px;
  background: var(--yellow);
  overflow: hidden;
  transition: color .25s ease;
}

.category-nav a::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--black);
  content: "";
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform .25s ease;
}

.category-nav a:hover {
  color: var(--white);
}

.category-nav a:hover::before {
  transform: scaleX(1);
  transform-origin: left center;
}

.category-nav span:not(.category-nav__visual) {
  font-size: 30px;
  font-weight: 300;
  line-height: 1.15;
}

.category-nav i,
.news__heading i {
  position: relative;
  display: block;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--black);
  transition: background-color .25s ease;
}

.category-nav i::before,
.news__heading i::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 11px;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  content: "";
  transform: translate(-58%, -66%) rotate(45deg);
  transition: border-color .25s ease;
}

.category-nav a:hover i {
  background: var(--white);
}

.category-nav a:hover i::before {
  border-color: var(--black);
}

.points {
  margin-top: 180px;
}

.points__title {
  margin-left: max(16px, calc((100vw - var(--max)) / 2));
}

.point-section {
  margin-top: 60px;
}

.point-section__header {
  position: relative;
  min-height: 510px;
  padding-top: 180px;
  overflow: hidden;
}

.point-section__header h3 {
  position: absolute;
  z-index: 4;
  top: 181px;
  left: 48px;
  padding: 10px 58px 12px;
  background: var(--white);
  font-size: 46px;
  font-weight: 300;
  line-height: 1;
}

.marquee {
  position: absolute;
  top: 40px;
  left: 0;
  z-index: 1;
  display: flex;
  gap: 70px;
  width: 220%;
  color: var(--yellow);
  font-family: Avenir, "Helvetica Neue", Arial, sans-serif;
  font-size: 180px;
  font-weight: 300;
  line-height: 1;
  white-space: nowrap;
  animation: marquee 24s linear infinite;
}

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

.point-section__visual {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 70px;
  height: 420px;
  margin-top: 0;
  background:
    radial-gradient(circle at 35% 20%, rgba(255,255,255,.74), transparent 28%),
    linear-gradient(120deg, #d4e1e3, #f5f4ee 54%, #c9d5d8);
}

.point-section__visual img {
  width: 300px;
  height: 300px;
  object-fit: contain;
  background: rgba(255,255,255,.8);
  box-shadow: 0 20px 40px rgba(0,0,0,.12);
}

.shaver-hero {
  position: relative;
  width: 250px;
  height: 330px;
  transform: rotate(-7deg);
}

.shaver-hero::before {
  position: absolute;
  left: 55px;
  top: 52px;
  width: 132px;
  height: 250px;
  border-radius: 66px 66px 40px 40px;
  background:
    radial-gradient(circle at 50% 64%, #222 0 11px, #0b0b0b 12px 20px, transparent 21px),
    linear-gradient(100deg, #3a4245, #030303 72%);
  box-shadow: 0 26px 28px rgba(0,0,0,.26), inset -18px 0 28px rgba(255,255,255,.08);
  content: "";
}

.shaver-hero::after {
  position: absolute;
  left: 34px;
  top: 8px;
  width: 178px;
  height: 78px;
  border-radius: 40px 40px 28px 28px;
  background:
    repeating-linear-gradient(90deg, #d8c88a 0 10px, #222 10px 15px, #f3e2a3 15px 24px),
    linear-gradient(#111, #333);
  border: 10px solid #070707;
  box-shadow: 0 18px 20px rgba(0,0,0,.22);
  content: "";
}

.point-grid {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px 64px;
  width: min(1200px, calc(100% - 96px));
  margin: -170px auto 0;
}

.point-card {
  position: relative;
  display: block;
  min-height: 500px;
}

.point-card__visual {
  margin: 0 auto;
}

.point-card h4 {
  min-height: 112px;
  margin-top: 16px;
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
}

.point-card h4 span {
  display: block;
  width: fit-content;
  margin-top: 8px;
  padding: 8px 20px 11px;
  background: var(--white);
}

.button-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  margin-top: 20px;
  padding: 0 24px;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
  font-family: Avenir, "Helvetica Neue", Arial, sans-serif;
  font-size: 24px;
  line-height: 1;
}

.button-link::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--white);
  content: "";
  mix-blend-mode: difference;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform .25s ease;
}

.button-link::after {
  width: 17px;
  height: 17px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.point-card:hover .button-link::before {
  transform: scaleX(1);
  transform-origin: left center;
}

.shaver-icon {
  position: relative;
  display: block;
  width: 220px;
  height: 250px;
  flex: 0 0 auto;
}

.shaver-icon::before,
.shaver-icon::after {
  position: absolute;
  content: "";
}

.shaver-icon--blade::before {
  left: 38px;
  top: 28px;
  width: 146px;
  height: 76px;
  border: 9px solid #080808;
  border-radius: 36px 36px 24px 24px;
  background: repeating-linear-gradient(90deg, #d7c67e 0 9px, #1a1a1a 9px 14px, #f0e0a0 14px 23px);
  box-shadow: 0 19px 20px rgba(0,0,0,.2);
}

.shaver-icon--blade::after {
  left: 68px;
  top: 98px;
  width: 86px;
  height: 128px;
  border-radius: 43px 43px 28px 28px;
  background: linear-gradient(100deg, #343b3d, #060606 74%);
  box-shadow: 0 22px 20px rgba(0,0,0,.24), inset -15px 0 20px rgba(255,255,255,.08);
}

.shaver-icon--ai::before {
  left: 48px;
  top: 28px;
  width: 126px;
  height: 178px;
  border-radius: 24px;
  background: linear-gradient(135deg, #121212, #30383b);
  box-shadow: 0 22px 22px rgba(0,0,0,.2);
}

.shaver-icon--ai::after {
  left: 80px;
  top: 78px;
  width: 64px;
  height: 64px;
  border: 2px solid var(--yellow);
  border-radius: 50%;
  box-shadow: 0 0 0 13px rgba(255,242,0,.18), 0 0 0 31px rgba(255,242,0,.1);
}

.shaver-icon--usb::before {
  left: 62px;
  top: 28px;
  width: 96px;
  height: 152px;
  border-radius: 48px 48px 28px 28px;
  background: linear-gradient(100deg, #343b3d, #050505 76%);
  box-shadow: 0 22px 22px rgba(0,0,0,.24), inset -14px 0 18px rgba(255,255,255,.08);
}

.shaver-icon--usb::after {
  left: 68px;
  top: 186px;
  width: 82px;
  height: 34px;
  border: 8px solid #050505;
  border-radius: 18px;
  background: var(--yellow);
  box-shadow: 0 16px 18px rgba(0,0,0,.16);
}

.buy-strip {
  display: grid;
  grid-template-columns: 1fr minmax(420px, 520px);
  gap: 48px;
  align-items: center;
  width: min(1200px, calc(100% - 96px));
  margin: 88px auto 0;
  padding: 44px 48px;
  background: var(--yellow);
}

.buy-strip p {
  width: fit-content;
  margin-bottom: 14px;
  padding: 6px 10px;
  background: var(--black);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
}

.buy-strip h3 {
  font-family: Avenir, "Helvetica Neue", Arial, sans-serif;
  font-size: 36px;
  font-weight: 300;
  line-height: 1.1;
}

.buy-strip span {
  display: block;
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.8;
}

.buy-strip__buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.news {
  display: grid;
  grid-template-columns: 1fr minmax(0, 1200px) 1fr;
  grid-template-areas:
    ". heading ."
    ". cards cards";
  row-gap: 52px;
  margin-top: 190px;
}

.news__heading {
  grid-area: heading;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.news__heading a {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: -8px;
  font-family: Avenir, "Helvetica Neue", Arial, sans-serif;
  font-size: 20px;
}

.news__heading i {
  width: 18px;
  height: 18px;
}

.news__heading i::before {
  width: 7px;
  height: 7px;
  transform: translate(-66%, -50%) rotate(-45deg);
}

.news__cards {
  grid-area: cards;
  display: flex;
  gap: 52px;
  overflow: hidden;
}

.news-card {
  display: block;
  flex: 0 0 480px;
}

.news-card__image {
  display: block;
  height: 270px;
  overflow: hidden;
  background:
    radial-gradient(circle at 65% 36%, rgba(255,255,255,.95) 0 18%, transparent 19%),
    linear-gradient(120deg, #d8e3e4, #f2f1ea);
}

.news-card__image--one {
  background:
    radial-gradient(circle at 56% 44%, rgba(255,242,0,.95) 0 13%, transparent 14%),
    linear-gradient(120deg, #d5dfdf, #f6f5ef);
}

.news-card__image--two {
  background:
    linear-gradient(90deg, transparent 52%, rgba(255,242,0,.8) 53% 56%, transparent 57%),
    linear-gradient(120deg, #c8d6d8, #f1f1ef);
}

.news-card__image--three {
  background:
    radial-gradient(circle at 35% 35%, rgba(255,255,255,.85) 0 16%, transparent 17%),
    linear-gradient(120deg, #d9dce0, #eef0eb 50%, #bdc7cb);
}

.news-card__image--four {
  background:
    linear-gradient(0deg, transparent 56%, rgba(255,153,0,.8) 57% 61%, transparent 62%),
    linear-gradient(120deg, #e0e5dd, #f5f3e9);
}

.news-card p {
  margin-top: 24px;
  font-size: 16px;
  line-height: 2.05;
}

.news-card time {
  display: block;
  margin-top: 10px;
  font-family: Avenir, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
}

.caption {
  width: min(1200px, calc(100% - 32px));
  margin: 260px auto 58px;
  color: #444;
  font-size: 12px;
  line-height: 1.8;
}

.site-footer {
  background: var(--black);
  color: var(--white);
  font-family: Avenir, "Helvetica Neue", Arial, sans-serif;
}

.site-footer__layout {
  display: grid;
  grid-template:
    "logo products news" auto
    "logo products store" auto
    "logo products about" 1fr
    "copy note note" auto / 1fr auto 300px;
  gap: 20px 72px;
  width: min(1190px, calc(100% - 64px));
  min-height: 430px;
  margin: 0 auto;
  padding: 66px 70px 58px 0;
  font-size: 16px;
}

.site-footer__logo {
  grid-area: logo;
  display: block;
  font-size: 38px;
  font-weight: 300;
  line-height: 1.45;
}

.site-footer__logo span {
  display: block;
}

.site-footer__products {
  grid-area: products;
}

.site-footer__products > p,
.site-footer__heading,
.site-footer__store > p {
  font-size: 24px;
  line-height: 1;
}

.site-footer__products div {
  margin-top: 18px;
  font-family: "Helvetica Neue", Arial, "Noto Sans JP", sans-serif;
  font-size: 15px;
  line-height: 1.9;
}

.site-footer__products ul,
.site-footer__store ul {
  font-family: Avenir, "Helvetica Neue", Arial, sans-serif;
}

.site-footer__heading {
  grid-area: news;
  width: fit-content;
}

.site-footer__store {
  grid-area: store;
  margin-top: 12px;
}

.site-footer__store ul {
  margin-top: 18px;
  line-height: 2;
}

.site-footer__about {
  grid-area: about;
  align-self: end;
  font-family: "Helvetica Neue", Arial, "Noto Sans JP", sans-serif;
  font-size: 13px;
  line-height: 1.75;
}

.site-footer__about a {
  display: block;
  width: fit-content;
  margin-bottom: 15px;
  font-family: Avenir, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
}

.site-footer__copy {
  grid-area: copy;
  margin-top: 20px;
  font-size: 11px;
}

.site-footer__note {
  grid-area: note;
  margin-top: 20px;
  font-family: "Helvetica Neue", Arial, "Noto Sans JP", sans-serif;
  font-size: 12px;
}

.site-footer a {
  background: linear-gradient(var(--white), var(--white)) 100% 100% / 0 1px no-repeat;
  transition: background-size .25s ease;
}

.site-footer a:hover {
  background-position: 0 100%;
  background-size: 100% 1px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 1100px) {
  .hero::before {
    width: 54%;
  }

  .hero__product {
    right: -24px;
    width: 460px;
    opacity: .94;
  }

  .hero__content {
    width: calc(100% - 48px);
    margin-left: 24px;
  }
}

@media (max-width: 980px) {
  :root {
    --header: 84px;
  }

  .site-header {
    position: relative;
    justify-content: flex-start;
    height: 84px;
  }

  .site-header.is-compact {
    height: 84px;
    background: transparent;
    backdrop-filter: none;
  }

  .brand-logo,
  .site-header.is-compact .brand-logo {
    display: block;
    margin-left: 16px;
    font-size: 27px;
    line-height: 1.18;
    white-space: normal;
  }

  .brand-logo span {
    display: block;
  }

  .brand-logo__cross {
    display: none !important;
  }

  .menu-button,
  .site-header.is-compact .menu-button {
    top: 18px;
    right: 16px;
    width: 28px;
    height: 28px;
  }

  .site-menu__inner {
    width: 100vw;
    grid-template-columns: 1fr;
    grid-template-areas:
      "top"
      "products"
      "news"
      "store";
    gap: 34px;
    padding: 72px 40px 80px;
  }

  .site-menu__heading {
    font-size: 27px;
  }

  .site-menu__group,
  .site-menu__store ul {
    font-size: 16px;
  }

  .hero {
    min-height: 900px;
    padding-top: 0;
    background: linear-gradient(180deg, #f4f4f0 0 62%, rgba(234,239,238,.95) 62% 100%);
  }

  .hero::before {
    inset: auto 0 0;
    width: 100%;
    height: 43%;
    background:
      linear-gradient(180deg, rgba(244,244,240,1) 0%, rgba(244,244,240,0) 28%),
      linear-gradient(180deg, #edf1ef 0 72%, #d7dddb 72% 100%);
  }

  .hero__marquee {
    bottom: 270px;
    font-size: 86px;
  }

  .hero__product {
    top: 570px;
    right: 8px;
    width: min(64vw, 286px);
    box-shadow: 0 20px 40px rgba(45,58,58,.15);
  }

  .hero__content {
    width: calc(100% - 32px);
    margin-left: 16px;
    padding-top: 34px;
  }

  .hero__eyebrow {
    margin-bottom: 12px;
    font-size: 14px;
  }

  .hero h1 {
    gap: 6px;
    max-width: 100%;
    font-size: 29px;
  }

  .hero h1 span {
    padding: 7px 10px 9px;
  }

  .hero__lead {
    max-width: 56%;
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.75;
  }

  .hero__cta {
    grid-template-columns: 1fr;
    width: min(360px, 100%);
    gap: 10px;
    margin-top: 20px;
  }

  .store-button {
    min-height: 66px;
    padding: 12px 16px;
  }

  .store-button span {
    font-size: 21px;
  }

  .store-button strong {
    margin-top: 5px;
    font-size: 12px;
  }

  .hero__badge {
    right: -15px;
    top: 724px;
    bottom: auto;
    width: 118px;
    height: 118px;
    font-size: 15px;
  }

  .hero-copy {
    margin-top: -72px;
  }

  .highlight {
    padding: 8px 10px 10px 16px;
    font-size: 24px;
    line-height: 1.28;
  }

  .brand-subline {
    margin: 7px 0 9px 96px;
    font-size: 16px;
  }

  .section-title {
    font-size: 29px;
  }

  .section-title span {
    padding-bottom: 7px;
  }

  .about {
    display: block;
    margin-top: 66px;
  }

  .about .section-title {
    position: relative;
    top: 0;
    left: 16px;
    margin-bottom: -2px;
  }

  .about__image {
    width: calc(100% - 32px);
    height: 260px;
    margin-left: 32px;
  }

  .about__circles {
    gap: 10px;
    margin-top: -12px;
    margin-left: 32px;
    transform: none;
  }

  .care-circle {
    width: 132px;
    height: 132px;
  }

  .care-circle > div {
    gap: 3px;
  }

  .care-circle p:first-child {
    font-size: 24px;
  }

  .care-circle p:first-child::before,
  .care-circle p:first-child::after {
    bottom: -5px;
    width: 3px;
    height: 3px;
  }

  .care-circle p:last-child {
    font-size: 12px;
  }

  .care-circle span {
    padding: 0 12px 11px;
    font-size: 12px;
  }

  .about__cross {
    width: 27px;
    height: 27px;
  }

  .about__cross::before,
  .about__cross::after {
    width: 38px;
  }

  .about__text {
    margin: 32px 0 0;
    padding: 0 32px;
    font-size: 14px;
    line-height: 2.18;
  }

  .category-nav {
    flex-direction: column;
    gap: 42px;
    width: min(343px, calc(100% - 32px));
    margin-top: 72px;
    padding: 0;
  }

  .category-nav li {
    width: 100%;
    min-height: 92px;
  }

  .category-nav__visual {
    position: absolute;
    left: -46px;
    bottom: -6px;
    z-index: 2;
    margin: 0;
    transform: scale(.38);
    pointer-events: none;
  }

  .category-nav a {
    min-height: 64px;
    padding: 0 20px 0 92px;
  }

  .category-nav span:not(.category-nav__visual) {
    font-size: 22px;
  }

  .category-nav i {
    width: 25px;
    height: 25px;
  }

  .points {
    margin-top: 112px;
  }

  .points__title {
    margin-left: 16px;
  }

  .point-section {
    margin-top: 48px;
  }

  .point-section__header {
    min-height: 336px;
    padding-top: 126px;
  }

  .point-section__header h3 {
    top: 126px;
    left: 16px;
    padding: 6px 16px 8px;
    font-size: 24px;
  }

  .marquee {
    top: 30px;
    gap: 28px;
    font-size: 78px;
  }

  .point-section__visual {
    height: 265px;
    gap: 10px;
  }

  .point-section__visual img {
    width: 150px;
    height: 150px;
  }

  .shaver-hero {
    transform: scale(.58) rotate(-7deg);
    margin-left: -56px;
    margin-right: -56px;
  }

  .point-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px 32px;
    width: calc(100% - 64px);
    margin-top: -80px;
  }

  .point-card {
    min-height: 320px;
  }

  .point-card__visual {
    transform: scale(.62);
    transform-origin: bottom center;
    margin: -42px auto -30px;
  }

  .point-card h4 {
    min-height: 85px;
    font-size: 16px;
  }

  .point-card h4 span {
    margin-top: 4px;
    padding: 6px 8px 7px;
  }

  .button-link {
    min-height: 40px;
    margin-top: 12px;
    padding: 0 10px;
    font-size: 15px;
  }

  .button-link::after {
    width: 11px;
    height: 11px;
  }

  .buy-strip {
    grid-template-columns: 1fr;
    width: calc(100% - 32px);
    gap: 24px;
    margin-top: 64px;
    padding: 28px 18px;
  }

  .buy-strip h3 {
    font-size: 25px;
  }

  .buy-strip__buttons {
    grid-template-columns: 1fr;
  }

  .news {
    display: block;
    margin-top: 104px;
    padding-left: 16px;
  }

  .news__heading {
    padding-right: 16px;
    align-items: center;
  }

  .news__heading a {
    margin-bottom: -4px;
    font-size: 16px;
  }

  .news__cards {
    gap: 32px;
    margin-top: 48px;
    padding-right: 16px;
    overflow-x: auto;
    scrollbar-width: none;
  }

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

  .news-card {
    flex-basis: 240px;
  }

  .news-card__image {
    height: 135px;
  }

  .news-card p {
    margin-top: 12px;
    font-size: 13px;
    line-height: 1.65;
  }

  .news-card time {
    margin-top: 4px;
    font-size: 13px;
  }

  .caption {
    margin-top: 146px;
    margin-bottom: 52px;
    padding: 0 16px 0 0;
    font-size: 11px;
    line-height: 1.65;
  }

  .site-footer__layout {
    display: block;
    width: 100%;
    min-height: 0;
    padding: 24px 32px 52px;
    font-size: 14px;
  }

  .site-footer__logo {
    font-size: 28px;
  }

  .site-footer__products {
    margin-top: 40px;
  }

  .site-footer__products > p,
  .site-footer__heading,
  .site-footer__store > p {
    font-size: 20px;
  }

  .site-footer__products div {
    margin-top: 18px;
    font-size: 14px;
  }

  .site-footer__heading {
    display: block;
    margin-top: 30px;
  }

  .site-footer__store {
    margin-top: 28px;
  }

  .site-footer__about {
    margin-top: 24px;
  }

  .site-footer__about a {
    display: inline-block;
    margin-right: 20px;
  }

  .site-footer__copy,
  .site-footer__note {
    margin-top: 12px;
  }
}

@media (max-width: 430px) {
  .hero {
    min-height: 920px;
  }

  .hero__lead {
    max-width: 66%;
  }

  .hero__product {
    top: 584px;
    width: 244px;
  }

  .point-grid {
    gap: 34px 24px;
    width: calc(100% - 52px);
  }

  .point-card h4 {
    font-size: 15px;
  }
}

@media (max-width: 640px) {
  :root {
    --affiliate-bar: 49px;
  }
}

/* Production image system: stable ratios and role-specific marketplace visuals */
.about__image-wrap > .affiliate-image-link {
  display: block;
  overflow: hidden;
  background: #11161a;
}

.about__image {
  height: 520px;
  object-fit: cover;
  object-position: center;
  background: #11161a;
}

.point-section__visual {
  height: 560px;
  padding: 0;
  overflow: hidden;
  background: #11161a;
}

.point-section__image-link {
  display: block;
  width: min(760px, 100%);
  height: 100%;
  background: #11161a;
}

.point-section__visual .point-section__image-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #11161a;
  box-shadow: none;
}

.point-grid {
  gap: 40px;
  margin-top: -96px;
}

.point-card {
  min-height: 0;
}

.point-card__visual {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  margin: 0;
  overflow: hidden;
  background: #11161a;
  transform: none;
}

.point-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s var(--ease);
}

.point-card:hover .point-card__visual img {
  transform: scale(1.025);
}

.point-card h4 {
  min-height: 104px;
  margin-top: 14px;
  font-size: 24px;
}

.news__cards {
  gap: 28px;
}

.news-card {
  flex-basis: 370px;
}

.news-card__image {
  height: auto;
  aspect-ratio: 1;
  background: #11161a;
}

.news-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s var(--ease);
}

.news-card:hover .news-card__image img {
  transform: scale(1.025);
}

@media (max-width: 980px) {
  .about__image-wrap > .affiliate-image-link {
    margin-left: 16px;
  }

  .about__image {
    width: 100%;
    height: min(88vw, 440px);
    margin-left: 0;
  }

  .point-section__visual {
    height: min(100vw, 430px);
  }

  .point-section__image-link {
    width: 100%;
  }

  .point-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    width: calc(100% - 32px);
    margin-top: -34px;
  }

  .point-card__visual {
    margin: 0;
    transform: none;
  }

  .point-card h4 {
    min-height: 0;
    margin-top: 12px;
    font-size: 20px;
  }

  .point-card h4 span {
    margin-top: 4px;
    padding: 7px 10px 8px;
  }

  .news-card {
    flex-basis: min(82vw, 360px);
  }
}
/* Production news balance */
.news {
  grid-template-areas:
    ". heading ."
    ". cards .";
}

.news__cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  overflow: visible;
}

.news-card {
  min-width: 0;
}

.news-card p {
  margin-top: 18px;
  font-size: 14px;
  line-height: 1.85;
}

.caption {
  margin-top: 100px;
}

@media (max-width: 980px) {
  .news {
    grid-template-areas:
      "heading"
      "cards";
    grid-template-columns: minmax(0, 1fr);
    padding-left: 16px;
  }

  .news__heading {
    padding-right: 16px;
  }

  .news__cards {
    display: flex;
    gap: 18px;
    padding-right: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .news-card {
    flex: 0 0 min(82vw, 360px);
    scroll-snap-align: start;
  }

  .caption {
    margin-top: 84px;
  }
}
/* Amazon compliance editorial sections */
.editorial-guide {
  margin-top: 150px;
  padding: 100px 24px;
  background: var(--black);
  color: var(--white);
}

.editorial-guide__inner,
.affiliate-faq__inner {
  width: min(1200px, 100%);
  margin: 0 auto;
}

.editorial-guide__eyebrow {
  margin: 0 0 12px;
  color: var(--yellow);
  font-family: Avenir, "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
}

.editorial-guide h2,
.affiliate-faq h2 {
  margin: 0;
  font-size: 38px;
  font-weight: 300;
  line-height: 1.35;
}

.editorial-guide__lead {
  max-width: 720px;
  margin: 20px 0 0;
  color: #c7c7c7;
  font-size: 15px;
  line-height: 2;
}

.editorial-guide__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 54px;
  border-top: 1px solid rgba(255,255,255,.22);
  border-left: 1px solid rgba(255,255,255,.22);
}

.editorial-guide__grid article {
  min-height: 310px;
  padding: 26px;
  border-right: 1px solid rgba(255,255,255,.22);
  border-bottom: 1px solid rgba(255,255,255,.22);
}

.editorial-guide__grid article > span {
  display: block;
  color: var(--yellow);
  font-family: Avenir, "Helvetica Neue", Arial, sans-serif;
  font-size: 13px;
}

.editorial-guide__grid h3 {
  margin: 70px 0 18px;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.5;
}

.editorial-guide__grid p,
.amazon-check li,
.affiliate-faq details p {
  color: #c7c7c7;
  font-size: 14px;
  line-height: 1.9;
}

.amazon-check {
  display: grid;
  grid-template-columns: minmax(240px, .8fr) minmax(360px, 1.2fr) minmax(300px, .8fr);
  align-items: center;
  gap: 42px;
  margin-top: 70px;
  padding-top: 54px;
  border-top: 1px solid rgba(255,255,255,.22);
}

.amazon-check h2 {
  font-size: 28px;
}

.amazon-check ul {
  display: grid;
  gap: 12px;
}

.amazon-check li {
  position: relative;
  padding-left: 22px;
}

.amazon-check li::before {
  position: absolute;
  top: .7em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amazon-accent);
  content: "";
}

.amazon-check .store-button {
  width: 100%;
}

.affiliate-faq {
  padding: 110px 24px 20px;
}

.affiliate-faq .editorial-guide__eyebrow {
  color: var(--black);
}

.affiliate-faq h2 {
  margin-bottom: 38px;
}

.affiliate-faq details {
  border-top: 1px solid var(--black);
}

.affiliate-faq details:last-child {
  border-bottom: 1px solid var(--black);
}

.affiliate-faq summary {
  position: relative;
  padding: 24px 56px 24px 0;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
  list-style: none;
}

.affiliate-faq summary::-webkit-details-marker {
  display: none;
}

.affiliate-faq summary::after {
  position: absolute;
  top: 50%;
  right: 12px;
  content: "+";
  font-size: 30px;
  font-weight: 300;
  transform: translateY(-50%);
}

.affiliate-faq details[open] summary::after {
  content: "−";
}

.affiliate-faq details p {
  max-width: 860px;
  margin: 0;
  padding: 0 56px 26px 0;
  color: #555;
}

@media (max-width: 980px) {
  .editorial-guide {
    margin-top: 100px;
    padding: 70px 16px;
  }

  .editorial-guide h2,
  .affiliate-faq h2 {
    font-size: 29px;
  }

  .editorial-guide__grid {
    grid-template-columns: 1fr;
    margin-top: 36px;
  }

  .editorial-guide__grid article {
    min-height: 0;
    padding: 22px;
  }

  .editorial-guide__grid h3 {
    margin: 26px 0 12px;
  }

  .amazon-check {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-top: 48px;
    padding-top: 40px;
  }

  .affiliate-faq {
    padding: 78px 16px 10px;
  }

  .affiliate-faq summary {
    padding: 20px 48px 20px 0;
    font-size: 16px;
  }

  .affiliate-faq details p {
    padding: 0 0 24px;
    font-size: 13px;
  }
}