:root {
  --page: #ffffff;
  --surface: #faf7f5;
  --soft-pink: #f6ecef;
  --soft-sage: #dfe8df;
  --warm-beige: #efe4d8;
  --accent: #d90078;
  --accent-soft: #f3a6c9;
  --ink: #2d3436;
  --muted: #657072;
  --line: rgba(45, 52, 54, 0.14);
  --black: #000000;
  --white: #ffffff;
  --focus: rgba(217, 0, 120, 0.34);
  --max: 1240px;
  --radius-card: 8px;
  --radius-pill: 999px;
  --shadow-soft: 0 18px 46px rgba(45, 52, 54, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  margin: 0;
  overflow-x: hidden;
  background: var(--page);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

svg {
  display: block;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 120;
  transform: translateY(-140%);
  border-radius: var(--radius-pill);
  padding: 12px 18px;
  background: var(--black);
  color: var(--white);
  font-weight: 800;
}

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

.announcement-bar {
  position: relative;
  z-index: 80;
  background: var(--black);
  color: var(--white);
}

.announcement-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  width: min(calc(100% - 32px), var(--max));
  min-height: 44px;
  margin: 0 auto;
}

.announcement-inner p {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 720;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  border-bottom: 1px solid rgba(45, 52, 54, 0.08);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  width: min(calc(100% - 32px), var(--max));
  min-height: 78px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}

.brand-name {
  color: var(--black);
  font-size: clamp(1.55rem, 4vw, 2rem);
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0;
}

.brand-name span {
  color: var(--accent);
}

.main-nav {
  display: none;
  align-items: center;
  gap: 24px;
  justify-self: start;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 700;
}

.main-nav a {
  padding: 12px 0;
}

.main-nav a:hover {
  color: var(--accent);
}

.search-form,
.mobile-search {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  background: #f0f2f0;
  color: var(--ink);
}

.search-form {
  display: none;
  justify-self: stretch;
  min-height: 54px;
  padding: 0 22px;
}

.search-icon-button svg,
.mobile-search svg {
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.search-icon-button {
  display: grid;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: currentColor;
  padding: 0;
}

.search-icon-button:hover {
  background: rgba(217, 0, 120, 0.08);
  color: var(--accent);
}

.search-form input,
.mobile-search input {
  min-width: 0;
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--ink);
  outline: 0;
}

.search-form input::placeholder,
.mobile-search input::placeholder {
  color: #7c8587;
  opacity: 1;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-self: end;
}

.icon-button {
  display: inline-grid;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: currentColor;
}

.icon-button svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-button:hover {
  background: rgba(217, 0, 120, 0.08);
  color: var(--accent);
}

.announcement-close {
  color: var(--white);
}

.menu-toggle {
  color: var(--black);
}

.mobile-menu {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 75;
  display: grid;
  gap: 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px 16px 24px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu nav {
  display: grid;
  gap: 8px;
}

.mobile-menu a {
  border-radius: var(--radius-card);
  padding: 12px;
  font-weight: 820;
}

.mobile-menu a:hover {
  background: var(--surface);
}

.mobile-search {
  min-height: 52px;
  padding: 0 8px 0 16px;
}

.mobile-search button {
  min-height: 40px;
  border: 0;
  border-radius: var(--radius-pill);
  padding: 0 16px;
  background: var(--black);
  color: var(--white);
  font-weight: 820;
}

.section-shell {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 72px 0 0;
}

.eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  max-width: 100%;
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  letter-spacing: 0;
}

h1 {
  width: min(100%, 760px);
  max-width: 760px;
  font-size: clamp(2.55rem, 7vw, 5.35rem);
  font-weight: 930;
  line-height: 0.98;
}

h2 {
  width: min(100%, 900px);
  font-size: clamp(2rem, 4.2vw, 3.55rem);
  font-weight: 900;
  line-height: 1.02;
}

h3 {
  font-size: 1.22rem;
  font-weight: 850;
  line-height: 1.15;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  max-width: 100%;
  min-width: 0;
  min-height: 48px;
  border: 0;
  border-radius: var(--radius-pill);
  padding: 13px 22px;
  font-weight: 820;
  line-height: 1;
  text-align: center;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-dark {
  background: var(--black);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
}

.button-dark:hover {
  background: #1f1f1f;
}

.button-quiet {
  border: 1px solid rgba(0, 0, 0, 0.18);
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink);
}

.button-quiet:hover {
  background: var(--white);
}

.button-small {
  min-height: 42px;
  padding: 11px 18px;
  font-size: 0.92rem;
}

.hero {
  position: relative;
  display: grid;
  min-height: clamp(620px, 78vh, 820px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.78) 48%, rgba(255, 255, 255, 0.15) 100%),
    radial-gradient(circle at 78% 22%, rgba(217, 0, 120, 0.16), transparent 30%),
    linear-gradient(135deg, var(--soft-pink), var(--surface) 54%, var(--soft-sage));
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  gap: 22px;
  min-width: 0;
  width: min(calc(100% - 32px), var(--max));
  min-height: inherit;
  margin: 0 auto;
  padding: 64px 0 76px;
}

.hero-content p:not(.eyebrow) {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 2.2vw, 1.22rem);
  font-weight: 570;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  min-width: 0;
  padding-top: 8px;
}

.preview-notice {
  padding-top: 36px;
}

.preview-notice-box {
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-card);
  padding: 22px 24px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.preview-notice-box h2 {
  width: 100%;
  font-size: clamp(1.4rem, 2.6vw, 2.05rem);
  line-height: 1.12;
}

.preview-notice-box p:not(.eyebrow) {
  max-width: 880px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.hero-visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(217, 0, 120, 0.18);
  border-radius: 50%;
}

.hero-orbit-one {
  right: 5%;
  bottom: 11%;
  width: min(52vw, 640px);
  aspect-ratio: 1;
}

.hero-orbit-two {
  right: 17%;
  bottom: 25%;
  width: min(34vw, 420px);
  aspect-ratio: 1;
  border-color: rgba(45, 52, 54, 0.1);
}

.mock-product {
  position: absolute;
  border: 1px solid rgba(45, 52, 54, 0.08);
  border-radius: var(--radius-card);
  box-shadow: 0 28px 70px rgba(45, 52, 54, 0.14);
}

.mock-product-bag {
  right: max(20px, 10vw);
  bottom: 16%;
  width: min(34vw, 420px);
  aspect-ratio: 0.82;
  background:
    linear-gradient(transparent 38%, rgba(0, 0, 0, 0.08) 38% 40%, transparent 40%),
    linear-gradient(145deg, #f5d3df, #efe4d8 48%, #ffffff);
}

.mock-product-bag::before,
.mock-product-bag::after,
.mock-product-mat::before,
.mock-product-mat::after,
.mock-product-box::before,
.mock-product-box::after {
  position: absolute;
  content: "";
}

.mock-product-bag::before {
  inset: 14% 24% auto;
  height: 34%;
  border: 10px solid rgba(45, 52, 54, 0.18);
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
}

.mock-product-bag::after {
  right: 12%;
  bottom: 12%;
  left: 12%;
  height: 16%;
  border-radius: var(--radius-pill);
  background: rgba(217, 0, 120, 0.16);
}

.mock-product-mat {
  right: max(180px, 25vw);
  bottom: 9%;
  width: min(25vw, 310px);
  aspect-ratio: 1.4;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.32) 0 18px, transparent 18px 36px),
    linear-gradient(135deg, #dfe8df, #ffffff);
  transform: rotate(-5deg);
}

.mock-product-mat::before {
  inset: 18%;
  border-radius: var(--radius-pill);
  background: rgba(217, 0, 120, 0.1);
}

.mock-product-mat::after {
  width: 48px;
  height: 48px;
  right: 18%;
  top: 20%;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.16);
}

.mock-product-box {
  right: max(18px, 6vw);
  top: 18%;
  width: min(22vw, 260px);
  aspect-ratio: 1;
  background: linear-gradient(145deg, #ffffff, #f6ecef);
  transform: rotate(4deg);
}

.mock-product-box::before {
  inset: 18% 22%;
  border-radius: var(--radius-card);
  background: rgba(223, 232, 223, 0.9);
}

.mock-product-box::after {
  right: 22%;
  bottom: 20%;
  left: 22%;
  height: 12px;
  border-radius: var(--radius-pill);
  background: rgba(45, 52, 54, 0.18);
}

.section-heading {
  display: grid;
  gap: 12px;
  min-width: 0;
  margin-bottom: 30px;
}

.section-heading > * {
  min-width: 0;
}

.section-heading.split {
  gap: 20px;
}

.section-heading.split > p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.focus-grid {
  display: grid;
  gap: 18px;
}

.focus-card,
.product-card {
  position: relative;
  display: grid;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--white);
}

.focus-card {
  gap: 14px;
  padding-bottom: 22px;
  box-shadow: 0 14px 34px rgba(45, 52, 54, 0.06);
}

.tile-visual {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  background: var(--surface);
}

.tile-visual::before,
.tile-visual::after,
.product-visual::before,
.product-visual::after,
.spotlight-card::before,
.spotlight-card::after {
  position: absolute;
  content: "";
}

.tile-visual::before {
  inset: 28px 34px 58px;
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 38px rgba(45, 52, 54, 0.08);
}

.tile-visual::after {
  right: 36px;
  bottom: 28px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: rgba(217, 0, 120, 0.16);
}

.tile-travel {
  background: linear-gradient(135deg, #ffffff, #dfe8df);
}

.tile-home {
  background: linear-gradient(135deg, #faf7f5, #efe4d8);
}

.tile-newborn {
  background: linear-gradient(135deg, #ffffff, #f6ecef);
}

.tile-gifts {
  background: linear-gradient(135deg, #efe4d8, #ffffff 58%, #f3a6c9);
}

.tile-label {
  width: max-content;
  max-width: calc(100% - 40px);
  margin: 0 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 6px 12px;
  background: var(--white);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 820;
}

.focus-card h3,
.focus-card p {
  margin-right: 20px;
  margin-left: 20px;
}

.focus-card p {
  margin-top: 0;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 560;
}

.trust {
  margin-top: 72px;
  background: var(--black);
  color: var(--white);
}

.trust-inner {
  display: grid;
  gap: 1px;
  width: min(100%, var(--max));
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.14);
}

.trust article {
  display: flex;
  min-height: 88px;
  align-items: center;
  gap: 14px;
  padding: 22px 16px;
  background: var(--black);
}

.trust svg {
  flex: 0 0 auto;
  color: var(--accent-soft);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust span {
  font-weight: 820;
}

.products {
  padding-top: 84px;
}

.product-grid {
  display: grid;
  gap: 18px;
}

.product-card {
  box-shadow: var(--shadow-soft);
}

.product-visual {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  background: var(--surface);
}

.product-visual::before {
  inset: 42px 48px;
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 34px rgba(45, 52, 54, 0.08);
}

.product-visual::after {
  right: 42px;
  bottom: 36px;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(45, 52, 54, 0.12);
}

.visual-organizer {
  background:
    linear-gradient(90deg, transparent 44%, rgba(0, 0, 0, 0.08) 44% 46%, transparent 46%),
    linear-gradient(135deg, #dfe8df, #ffffff);
}

.visual-bag {
  background:
    radial-gradient(circle at 28% 30%, rgba(217, 0, 120, 0.16), transparent 26%),
    linear-gradient(135deg, #ffffff, #efe4d8);
}

.visual-mat {
  background:
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.5) 0 16px, transparent 16px 32px),
    linear-gradient(135deg, #f6ecef, #ffffff);
}

.visual-storage {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.34) 0 1px, transparent 1px 100%),
    linear-gradient(135deg, #efe4d8, #dfe8df);
  background-size: 52px 100%, auto;
}

.product-content {
  display: grid;
  gap: 13px;
  padding: 22px;
}

.product-kicker {
  margin: 0;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-content p:not(.product-kicker) {
  margin: 0;
  color: var(--muted);
  font-weight: 560;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-meta span {
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 7px 11px;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 760;
}

.categories {
  padding-top: 84px;
}

.category-link-grid,
.placeholder-product-grid,
.template-info-grid {
  display: grid;
  min-width: 0;
  gap: 18px;
}

.category-link-card {
  position: relative;
  display: grid;
  min-height: 250px;
  align-content: end;
  gap: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 24px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.category-link-card::before,
.category-link-card::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.category-link-card::before {
  inset: 28px 30px auto;
  height: 88px;
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 18px 38px rgba(45, 52, 54, 0.08);
}

.category-link-card::after {
  right: 26px;
  top: 82px;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(217, 0, 120, 0.16);
}

.category-link-card span,
.category-link-card p,
.category-link-card strong {
  position: relative;
  z-index: 1;
}

.category-link-card span {
  color: var(--ink);
  font-size: 1.18rem;
  font-weight: 880;
  line-height: 1.12;
}

.category-link-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 580;
}

.category-link-card strong {
  width: max-content;
  max-width: 100%;
  border-radius: var(--radius-pill);
  padding: 10px 15px;
  background: var(--black);
  color: var(--white);
  font-size: 0.88rem;
  line-height: 1;
}

.category-link-card:hover strong {
  background: #1f1f1f;
}

.category-link-travel,
.category-link-sleep {
  background: linear-gradient(135deg, #ffffff, #dfe8df);
}

.category-link-care,
.category-link-gifts {
  background: linear-gradient(135deg, #ffffff, #f6ecef);
}

.category-link-room,
.category-link-everyday {
  background: linear-gradient(135deg, #faf7f5, #efe4d8);
}

.risk-note {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 20px;
  background: rgba(246, 236, 239, 0.62);
}

.risk-note h3 {
  font-size: 1rem;
}

.risk-note p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.product-roadmap {
  padding-top: 38px;
}

.product-roadmap-box {
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: clamp(24px, 4vw, 38px);
  background: var(--surface);
}

.product-roadmap-box h2 {
  font-size: clamp(1.7rem, 3vw, 2.45rem);
}

.product-roadmap-box p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.spotlight-grid {
  display: grid;
  gap: 18px;
}

.spotlight-card {
  position: relative;
  display: grid;
  min-height: 330px;
  align-items: end;
  overflow: hidden;
  border-radius: var(--radius-card);
  background: var(--surface);
}

.spotlight-card::before {
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.42));
  z-index: 1;
}

.spotlight-card::after {
  inset: 34px;
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.52);
  box-shadow: 0 24px 48px rgba(45, 52, 54, 0.08);
}

.spotlight-parent {
  background: linear-gradient(135deg, #ffffff, #dfe8df 55%, #f6ecef);
}

.spotlight-room {
  background: linear-gradient(135deg, #efe4d8, #ffffff);
}

.spotlight-go {
  background: linear-gradient(135deg, #f6ecef, #ffffff 58%, #dfe8df);
}

.spotlight-card div {
  position: relative;
  z-index: 2;
  padding: 28px;
  color: var(--white);
}

.spotlight-card span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.spotlight-card h3 {
  color: var(--white);
  font-size: clamp(1.65rem, 4vw, 2.5rem);
}

.newsletter {
  margin-top: 84px;
  background: var(--soft-pink);
}

.newsletter-inner {
  display: grid;
  gap: 38px;
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 62px 0 56px;
}

.footer-links {
  display: grid;
  gap: 12px;
  align-content: start;
}

.footer-links a {
  width: max-content;
  font-weight: 800;
}

.footer-links a:hover {
  color: var(--accent);
}

.newsletter-content {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.newsletter-content h2 {
  max-width: 760px;
}

.newsletter-content > p:not(.eyebrow):not(.form-note) {
  max-width: 720px;
  margin: 0;
  color: var(--ink);
  font-weight: 560;
}

.newsletter-form {
  display: grid;
  gap: 18px;
  width: 100%;
  max-width: 880px;
  padding-top: 12px;
}

.newsletter-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 760;
}

.newsletter-form input {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.54);
  border-radius: 0;
  padding: 10px 0;
  background: transparent;
  color: var(--ink);
  outline: 0;
}

.newsletter-form input:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 5px;
}

.newsletter-form input[aria-invalid="true"] {
  border-color: #a61a3f;
  box-shadow: 0 2px 0 #a61a3f;
}

.form-note {
  min-height: 1.4em;
  margin: 0;
  color: #5d243a;
  font-weight: 760;
}

.newsletter-disclaimer {
  max-width: 760px;
  margin: 0;
  color: #5d243a;
  font-size: 0.92rem;
  font-weight: 680;
}

.subpage-main {
  min-height: 64vh;
  background: linear-gradient(135deg, var(--white), var(--surface) 62%, var(--soft-pink));
}

.subpage-hero {
  display: grid;
  gap: 20px;
  width: min(calc(100% - 32px), 900px);
  margin: 0 auto;
  padding: clamp(72px, 12vw, 130px) 0;
}

.subpage-hero h1 {
  font-size: clamp(2.35rem, 7vw, 4.85rem);
}

.subpage-card {
  display: grid;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: clamp(24px, 4vw, 40px);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
}

.subpage-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 620;
}

.subpage-card a {
  width: max-content;
  max-width: 100%;
  color: var(--accent);
  font-weight: 820;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.subpage-footer {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 28px 0 38px;
  border-top: 1px solid var(--line);
}

.category-main,
.template-main {
  background: linear-gradient(135deg, var(--white), var(--surface) 62%, var(--soft-pink));
}

.category-page,
.template-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 34px;
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: clamp(64px, 10vw, 112px) 0 72px;
}

.category-page > *,
.template-page > * {
  min-width: 0;
  max-width: 100%;
}

.category-intro,
.template-intro {
  display: grid;
  min-width: 0;
  gap: 16px;
  max-width: 840px;
}

.category-intro p,
.template-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 590;
}

.category-status {
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
  font-weight: 760;
}

.internal-warning {
  width: 100%;
  max-width: 100%;
  border: 1px solid rgba(166, 77, 95, 0.3);
  border-radius: var(--radius-card);
  padding: 12px 14px;
  background: rgba(246, 236, 239, 0.86);
  color: #5d243a;
  font-weight: 820;
  overflow-wrap: anywhere;
}

.placeholder-product-card,
.template-info-card {
  display: grid;
  min-width: 0;
  max-width: 100%;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.placeholder-product-card {
  padding-bottom: 22px;
}

.placeholder-visual,
.template-visual {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff, #dfe8df);
}

.placeholder-visual::before,
.placeholder-visual::after,
.template-visual::before,
.template-visual::after {
  position: absolute;
  content: "";
}

.placeholder-visual::before,
.template-visual::before {
  inset: 36px 42px;
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 34px rgba(45, 52, 54, 0.08);
}

.placeholder-visual::after,
.template-visual::after {
  right: 34px;
  bottom: 32px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(217, 0, 120, 0.16);
}

.placeholder-product-card h3,
.placeholder-product-card p,
.placeholder-meta {
  margin-right: 22px;
  margin-left: 22px;
}

.placeholder-product-card p {
  margin-top: 0;
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 580;
}

.placeholder-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.placeholder-meta span,
.template-pill {
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 7px 11px;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 760;
}

.template-layout {
  display: grid;
  min-width: 0;
  gap: 28px;
  align-items: start;
}

.template-media {
  display: grid;
  min-width: 0;
  gap: 14px;
}

.template-visual {
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
}

.template-summary {
  display: grid;
  min-width: 0;
  max-width: 100%;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  overflow: hidden;
  padding: clamp(24px, 4vw, 38px);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
}

.template-side {
  display: grid;
  min-width: 0;
  gap: 18px;
}

.approval-status,
.review-table-card,
.risk-scale {
  display: grid;
  min-width: 0;
  max-width: 100%;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  overflow: hidden;
  padding: clamp(22px, 4vw, 34px);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
}

.approval-status h2,
.review-table-card h2,
.risk-scale h2 {
  width: auto;
  max-width: 100%;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
}

.template-summary h2,
.template-info-card h3 {
  width: auto;
  max-width: 100%;
}

.template-facts {
  display: grid;
  min-width: 0;
  width: auto;
  max-width: 100%;
  gap: 10px;
  margin: 0;
}

.template-facts div {
  display: flex;
  min-width: 0;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
}

.template-facts dt {
  min-width: 0;
  color: var(--muted);
  font-weight: 760;
  overflow-wrap: anywhere;
}

.template-facts dd {
  min-width: 0;
  margin: 0;
  color: var(--ink);
  font-weight: 860;
  text-align: right;
  overflow-wrap: anywhere;
}

.button-disabled,
.button-disabled:hover {
  background: #8f9698;
  color: var(--white);
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

.template-info-card {
  padding: 22px;
}

.template-info-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 590;
}

.status-card-grid,
.risk-scale-grid {
  display: grid;
  gap: 18px;
}

.status-card,
.risk-scale article {
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 22px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.status-card span {
  color: var(--accent);
  font-size: 1.12rem;
  font-weight: 880;
}

.status-card p,
.risk-scale p {
  margin: 0;
  color: var(--muted);
  font-weight: 590;
}

.risk-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
}

.risk-green {
  background: #6f8f78;
}

.risk-yellow {
  background: #c9a24f;
}

.risk-red {
  background: #a64d5f;
}

.review-table {
  display: grid;
  gap: 10px;
}

.review-row {
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 14px;
  background: var(--white);
}

.review-row span {
  min-width: 0;
  overflow-wrap: anywhere;
  font-weight: 670;
}

.review-head {
  background: var(--black);
  color: var(--white);
}

.command-snippet {
  display: block;
  max-width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 14px 16px;
  background: var(--black);
  color: var(--white);
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: 0.92rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
  white-space: normal;
}

.site-footer-lite {
  display: grid;
  gap: 22px;
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 30px 0 40px;
  border-top: 1px solid var(--line);
}

.footer-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
}

.footer-link-row a {
  color: var(--muted);
  font-weight: 760;
}

.footer-link-row a:hover {
  color: var(--accent);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: end;
}

.social-button {
  border: 1px solid currentColor;
}

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

  .focus-grid,
  .product-grid,
  .category-link-grid,
  .placeholder-product-grid,
  .template-info-grid,
  .status-card-grid,
  .risk-scale-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .newsletter-form {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr) auto;
    align-items: end;
  }

  .newsletter-form .button {
    min-height: 52px;
  }
}

@media (min-width: 900px) {
  .announcement-inner {
    min-height: 48px;
  }

  .header-inner {
    grid-template-columns: auto auto minmax(260px, 1fr) auto;
    gap: 28px;
    min-height: 92px;
  }

  .menu-toggle {
    display: none;
  }

  .main-nav,
  .search-form {
    display: flex;
  }

  .header-actions {
    gap: 8px;
  }

  .hero {
    min-height: clamp(660px, 78vh, 840px);
  }

  .hero-content {
    padding-top: 86px;
  }

  .section-heading.split {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
    align-items: end;
  }

  .trust-inner {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .trust article {
    justify-content: center;
    padding-inline: 24px;
  }

  .spotlight-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .template-layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  }

  .newsletter-inner {
    grid-template-columns: 220px minmax(0, 1fr);
    align-items: start;
    padding-top: 86px;
    padding-bottom: 82px;
  }

  .social-links {
    grid-column: 1;
  }

  .newsletter-content {
    grid-column: 2;
    grid-row: 1 / span 2;
  }
}

@media (min-width: 1180px) {
  .focus-grid,
  .product-grid,
  .category-link-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .placeholder-product-grid,
  .template-info-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .status-card-grid,
  .risk-scale-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .review-row {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .product-visual {
    min-height: 280px;
  }
}

@media (max-width: 899px) {
  .header-actions .icon-button:first-child {
    display: none;
  }

  .hero {
    min-height: 720px;
  }

  .hero::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 42%;
    content: "";
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.7));
  }

  .mock-product-bag {
    right: 20px;
    bottom: 58px;
    width: min(58vw, 330px);
  }

  .mock-product-mat {
    right: 38%;
    bottom: 42px;
    width: min(42vw, 240px);
  }

  .mock-product-box {
    top: 56%;
    right: 18px;
    width: min(34vw, 180px);
  }

  .hero-orbit-one {
    right: -24%;
    bottom: 4%;
    width: 86vw;
  }

  .hero-orbit-two {
    right: 7%;
    bottom: 19%;
    width: 54vw;
  }
}

@media (max-width: 520px) {
  .announcement-inner {
    width: 100%;
    padding: 0 12px;
  }

  .announcement-inner p {
    font-size: 0.78rem;
  }

  .header-inner {
    width: 100%;
    min-height: 70px;
    gap: 8px;
    padding: 0 12px;
  }

  .brand-name {
    font-size: 1.35rem;
  }

  .icon-button {
    width: 38px;
    height: 38px;
  }

  .header-actions {
    gap: 0;
  }

  .section-shell {
    width: 100%;
    padding-top: 58px;
    padding-right: 12px;
    padding-left: 12px;
  }

  .hero-content {
    width: 100%;
    align-content: start;
    padding-right: 12px;
    padding-left: 12px;
    padding-top: 46px;
  }

  h1 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(1.95rem, 9.2vw, 2.18rem);
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  h2 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(1.8rem, 8.8vw, 2.12rem);
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .headline-tail {
    display: block;
  }

  .hero-actions {
    display: grid;
    width: 100%;
  }

  .hero-actions .button {
    width: 100%;
  }

  .tile-visual,
  .product-visual {
    min-height: 210px;
  }

  .newsletter-inner {
    width: 100%;
    padding-right: 12px;
    padding-left: 12px;
    padding-top: 54px;
  }
}

.template-summary > *,
.approval-status > *,
.review-table-card > *,
.risk-scale > *,
.template-info-card > * {
  min-width: 0;
  max-width: 100%;
}

.template-summary h2,
.approval-status h2,
.review-table-card h2,
.risk-scale h2,
.template-info-card h3 {
  width: auto;
}

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