/* ============================================================
   Poket Library — Design System
   Useful knowledge, ready to use.
   ============================================================ */

:root {
  /* Core colors */
  --ink: #171717;
  --paper: #FAF7F0;
  --soft-paper: #F2ECE2;
  --blue: #4F46E5;
  --mint: #B8F3D4;
  --coral: #FF7A6B;
  --yellow: #F7D774;
  --lavender: #C7B9FF;
  --sand: #E9E2D6;
  --deep-grey: #55514A;
  --white: #FFFFFF;

  /* Accent (tweakable) — brand default: Warm Coral */
  --accent: var(--coral);

  /* Type */
  --font-heading: "Manrope", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-accent: "Space Grotesk", sans-serif;

  /* Radii */
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-soft: 0 8px 24px rgba(23, 23, 23, 0.06);
  --shadow-card: 0 16px 50px rgba(23, 23, 23, 0.08);
  --shadow-hover: 0 22px 60px rgba(23, 23, 23, 0.13);

  /* Motion */
  --motion-fast: 160ms;
  --motion-base: 220ms;
  --motion-slow: 320ms;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* Density (tweakable) */
  --section-pad: clamp(64px, 10vw, 128px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

::selection { background: color-mix(in oklab, var(--accent) 22%, transparent); }

.container {
  width: min(100% - 40px, 1180px);
  margin-inline: auto;
}

.section { padding-block: var(--section-pad); }

/* ---------- Type ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  letter-spacing: -0.05em;
  margin: 0;
  color: var(--ink);
}
h1 { font-size: clamp(3rem, 7vw, 5.4rem); line-height: 0.95; letter-spacing: -0.06em; font-weight: 800; }
h2 { font-size: clamp(2.1rem, 4.4vw, 3.6rem); line-height: 1; font-weight: 800; }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.95rem); line-height: 1.1; letter-spacing: -0.035em; font-weight: 700; }
h4 { font-size: 1.1rem; line-height: 1.2; letter-spacing: -0.02em; font-weight: 700; }
p  { margin: 0; color: var(--deep-grey); }

.eyebrow {
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.lead { font-size: clamp(1.05rem, 1.5vw, 1.3rem); line-height: 1.55; color: var(--deep-grey); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 14px;
  padding: 14px 22px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform var(--motion-base) var(--ease-out),
              box-shadow var(--motion-base) var(--ease-out),
              background var(--motion-base) var(--ease-out),
              opacity var(--motion-base) var(--ease-out);
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--ink); color: var(--white); border-color: var(--ink); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); }
.btn-secondary { background: transparent; color: var(--ink); border-color: rgba(23,23,23,0.28); }
.btn-secondary:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); background: var(--white); }
.btn-accent { background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 14px 36px color-mix(in oklab, var(--accent) 34%, transparent); }
.btn-ghost { background: transparent; color: var(--ink); padding: 10px 12px; }
.btn-ghost:hover { color: var(--accent); }

/* ---------- Badges & pills ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  border-radius: var(--radius-pill);
  padding: 6px 11px;
  font-family: var(--font-accent);
  font-size: 11.5px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--ink);
  background: var(--sand);
}
.badge .dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; opacity: 0.85; }

.format-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--sand);
  border-radius: var(--radius-pill);
  padding: 7px 11px;
  background: var(--white);
  font-family: var(--font-accent);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--deep-grey);
}

.price {
  font-family: var(--font-accent);
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* ---------- Card ---------- */
.card {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

/* ---------- Category accent helpers ---------- */
.cat-relationships { --cat: var(--coral); }
.cat-money         { --cat: var(--blue); }
.cat-switzerland   { --cat: var(--yellow); }
.cat-mind          { --cat: var(--mint); }
.cat-templates     { --cat: var(--lavender); }
.cat-work          { --cat: var(--sand); }

/* ============================================================
   Reveal on scroll
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 640ms var(--ease-out), transform 640ms var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 70ms; }
.reveal[data-delay="2"] { transition-delay: 140ms; }
.reveal[data-delay="3"] { transition-delay: 210ms; }
.reveal[data-delay="4"] { transition-delay: 280ms; }
.reveal[data-delay="5"] { transition-delay: 350ms; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in oklab, var(--paper) 82%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--motion-base) var(--ease-out), background var(--motion-base) var(--ease-out);
}
.site-header.scrolled { border-bottom-color: var(--sand); }
.header-inner { display: flex; align-items: center; gap: 24px; height: 74px; }
.header-nav { display: flex; align-items: center; gap: 6px; margin-inline: auto; }
.header-nav a {
  font-size: 14.5px; font-weight: 500; color: var(--deep-grey);
  padding: 9px 13px; border-radius: 10px;
  transition: color var(--motion-fast) var(--ease-out), background var(--motion-fast) var(--ease-out);
}
.header-nav a:hover { color: var(--ink); background: color-mix(in oklab, var(--sand) 55%, transparent); }
.header-actions { display: flex; align-items: center; gap: 10px; }

/* Logo */
.logo { display: inline-flex; align-items: center; gap: 10px; }
.logo img { height: 34px; width: auto; }
.logo-footer img { filter: invert(1); }
.logo-icon {
  width: 34px; height: 34px; border-radius: 9px;
  background: var(--ink); color: var(--paper);
  display: grid; place-items: center;
  font-family: var(--font-heading); font-weight: 800; font-size: 20px;
  position: relative; overflow: hidden;
}
.logo-icon::after {
  content: ""; position: absolute; right: 0; bottom: 0;
  width: 12px; height: 12px;
  background: linear-gradient(135deg, transparent 50%, var(--paper) 50%);
}

/* Language selector */
.lang-select { position: relative; }
.lang-btn {
  display: inline-flex; align-items: center; gap: 7px;
  border: 1px solid var(--sand); background: var(--white);
  border-radius: var(--radius-pill); padding: 8px 12px;
  font-family: var(--font-accent); font-weight: 600; font-size: 13px; color: var(--ink);
  transition: border-color var(--motion-fast) var(--ease-out), box-shadow var(--motion-fast) var(--ease-out);
}
.lang-btn:hover { border-color: color-mix(in oklab, var(--ink) 24%, var(--sand)); box-shadow: var(--shadow-soft); }
.lang-btn svg { width: 14px; height: 14px; opacity: 0.6; }
.lang-menu {
  position: absolute; right: 0; top: calc(100% + 8px);
  background: var(--white); border: 1px solid var(--sand);
  border-radius: var(--radius-md); box-shadow: var(--shadow-card);
  padding: 6px; min-width: 168px; z-index: 60;
  display: flex; flex-direction: column; gap: 2px;
}
.lang-menu button {
  display: flex; align-items: center; gap: 10px; width: 100%;
  background: transparent; border: 0; border-radius: 10px;
  padding: 9px 11px; font-size: 14px; font-weight: 500; color: var(--ink); text-align: left;
  transition: background var(--motion-fast) var(--ease-out);
}
.lang-menu button:hover { background: var(--soft-paper); }
.lang-menu button.active { background: color-mix(in oklab, var(--accent) 12%, transparent); color: var(--accent); font-weight: 700; }
.lang-menu button .flag { font-family: var(--font-accent); font-weight: 700; font-size: 12px; letter-spacing: 0.04em; opacity: 0.55; margin-left: auto; }

/* Mobile menu toggle */
.menu-toggle { display: none; }

/* ============================================================
   Hero
   ============================================================ */
.hero { padding-top: clamp(40px, 6vw, 72px); padding-bottom: clamp(48px, 8vw, 104px); position: relative; overflow: clip; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero-copy { max-width: 560px; }
.hero h1 { margin-top: 18px; }
.hero h1 .accent-word { color: var(--accent); }
.hero-body { margin-top: 22px; max-width: 30em; }
.hero-micro {
  margin-top: 18px; display: flex; flex-wrap: wrap; gap: 8px 18px;
  font-family: var(--font-accent); font-weight: 600; font-size: 13.5px; color: var(--ink);
}
.hero-micro span { display: inline-flex; align-items: center; gap: 8px; }
.hero-micro span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.hero-cta { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 12px; }

/* hero visual shared */
.hero-visual { position: relative; min-height: 420px; }

/* Variant: photo */
.hero-photo {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--sand);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3 / 2.35; }

/* ============================================================
   CSS Product Cover (collection look)
   ============================================================ */
.cover {
  position: relative;
  font-size: 16px;
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid color-mix(in oklab, var(--ink) 8%, var(--sand));
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  padding: 9% 11% 27%;
  isolation: isolate;
}
.cover-brand { font-family: var(--font-accent); font-weight: 700; font-size: 0.62em; letter-spacing: 0.04em; color: var(--ink); display: flex; align-items: center; gap: 0.5em; white-space: nowrap; }
.cover-brand .pmark { width: 1.5em; height: 1.5em; border-radius: 0.35em; background: var(--ink); color: var(--paper); display: grid; place-items: center; font-family: var(--font-heading); font-weight: 800; font-size: 0.85em; }
.cover-cat { margin-top: 0.9em; font-family: var(--font-accent); font-weight: 700; font-size: 0.62em; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cat, var(--accent)); }
.cover-title { margin-top: 0.4em; font-family: var(--font-heading); font-weight: 800; letter-spacing: -0.04em; line-height: 1; color: var(--ink); font-size: 1.38em; }
.cover-sub { margin-top: auto; padding-top: 0.5em; padding-bottom: 0.5em; font-size: 0.58em; line-height: 1.3; color: var(--deep-grey); font-weight: 500; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.cover-band {
  position: absolute; left: 0; right: 0; bottom: 0; height: 21%;
  background: var(--cat, var(--accent));
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: 0 12% 8%;
}
.cover-num { font-family: var(--font-accent); font-weight: 700; font-size: 0.72em; color: color-mix(in oklab, var(--ink) 72%, var(--cat)); }
.cover-shape {
  position: absolute; z-index: -1; border-radius: 50%;
  background: color-mix(in oklab, var(--cat, var(--accent)) 42%, var(--white));
  opacity: 0.5;
}

/* Hero stack of covers */
.hero-stack { position: relative; height: clamp(380px, 42vw, 500px); }
.hero-stack .cover {
  position: absolute;
  font-size: clamp(8px, 1.1vw, 11px);
  width: clamp(150px, 17vw, 210px);
  transition: transform var(--motion-slow) var(--ease-out), box-shadow var(--motion-slow) var(--ease-out);
}
.hero-stack .cover:nth-child(1) { left: 2%;  top: 8%;  transform: rotate(-7deg); z-index: 1; }
.hero-stack .cover:nth-child(2) { left: 24%; top: 0;   transform: rotate(-2deg); z-index: 2; }
.hero-stack .cover:nth-child(3) { left: 46%; top: 6%;  transform: rotate(3deg);  z-index: 3; }
.hero-stack .cover:nth-child(4) { left: 30%; top: 32%; transform: rotate(8deg);  z-index: 4; }
.hero-stack:hover .cover:nth-child(1) { transform: rotate(-10deg) translate(-8px,-6px); }
.hero-stack:hover .cover:nth-child(2) { transform: rotate(-3deg) translateY(-10px); }
.hero-stack:hover .cover:nth-child(3) { transform: rotate(5deg) translateY(-6px); }
.hero-stack:hover .cover:nth-child(4) { transform: rotate(11deg) translate(6px,4px); }

/* Hero fan */
.hero-fan { position: relative; height: clamp(380px, 42vw, 500px); display: grid; place-items: center; }
.hero-fan .cover {
  position: absolute; font-size: clamp(8px, 1vw, 10.5px); width: clamp(140px, 16vw, 200px); transform-origin: bottom center;
  transition: transform var(--motion-slow) var(--ease-out);
}
.hero-fan .cover:nth-child(1) { transform: rotate(-15deg) translateX(-118px); z-index: 1; }
.hero-fan .cover:nth-child(2) { transform: rotate(-5deg) translateX(-40px); z-index: 2; }
.hero-fan .cover:nth-child(3) { transform: rotate(5deg) translateX(40px); z-index: 3; }
.hero-fan .cover:nth-child(4) { transform: rotate(15deg) translateX(118px); z-index: 4; }
.hero-fan:hover .cover:nth-child(1) { transform: rotate(-19deg) translate(-138px,-8px); }
.hero-fan:hover .cover:nth-child(4) { transform: rotate(19deg) translate(138px,-8px); }

/* ============================================================
   Categories
   ============================================================ */
.section-head { max-width: 720px; }
.section-head h2 { margin-top: 14px; }
.section-head p { margin-top: 16px; }

.cat-grid { margin-top: 56px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.cat-card {
  position: relative; overflow: hidden;
  background: var(--white); border: 1px solid var(--sand);
  border-radius: var(--radius-lg); padding: 26px 24px 24px;
  display: flex; flex-direction: column; gap: 12px; min-height: 188px;
  transition: transform var(--motion-base) var(--ease-out), box-shadow var(--motion-base) var(--ease-out), border-color var(--motion-base) var(--ease-out);
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: color-mix(in oklab, var(--cat) 50%, var(--sand)); }
.cat-icon {
  width: 50px; height: 50px; border-radius: 14px;
  display: grid; place-items: center;
  background: color-mix(in oklab, var(--cat) 30%, var(--white));
  color: color-mix(in oklab, var(--ink) 78%, var(--cat));
}
.cat-icon svg { width: 26px; height: 26px; }
.cat-card h3 { font-size: 1.35rem; }
.cat-card p { font-size: 14.5px; }
.cat-card .cat-arrow { margin-top: auto; display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-accent); font-weight: 600; font-size: 13px; color: var(--ink); opacity: 0; transform: translateX(-6px); transition: opacity var(--motion-base) var(--ease-out), transform var(--motion-base) var(--ease-out); }
.cat-card:hover .cat-arrow { opacity: 1; transform: none; }
.cat-card .cat-corner { position: absolute; right: -28px; top: -28px; width: 84px; height: 84px; border-radius: 50%; background: color-mix(in oklab, var(--cat) 40%, var(--white)); opacity: 0.4; }

/* ============================================================
   Featured products
   ============================================================ */
.products-grid { margin-top: 56px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.product-card {
  background: var(--white); border: 1px solid var(--sand);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-soft);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform var(--motion-base) var(--ease-out), box-shadow var(--motion-base) var(--ease-out);
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.product-card:hover .cover { box-shadow: 0 10px 28px rgba(23,23,23,0.12); }
.product-cover-wrap { padding: 18px 18px 0; }
.product-cover-wrap .cover { box-shadow: var(--shadow-soft); transition: transform var(--motion-base) var(--ease-out), box-shadow var(--motion-base) var(--ease-out); }
.product-card:hover .product-cover-wrap .cover { transform: rotate(-1.5deg); }
.product-body { padding: 18px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.product-cat { font-family: var(--font-accent); font-weight: 700; font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cat, var(--accent)); }
.product-card h3 { font-size: 1.3rem; }
.product-promise { font-size: 14px; line-height: 1.5; }
.product-formats { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 2px; }
.product-foot { margin-top: auto; padding-top: 14px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--soft-paper); }
.product-foot .price { font-size: 1.25rem; color: var(--ink); }
.product-foot .view-link { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: 14px; color: var(--ink); }
.product-foot .view-link svg { width: 16px; height: 16px; transition: transform var(--motion-base) var(--ease-out); }
.product-card:hover .view-link svg { transform: translateX(4px); }
.product-foot .price-empty { flex: 1; }

/* Coming-soon cards: kept but greyed and non-clickable */
.product-card.is-coming { cursor: default; filter: grayscale(0.85); opacity: 0.62; }
.product-card.is-coming:hover { transform: none; box-shadow: var(--shadow-soft); }
.product-card.is-coming:hover .cover,
.product-card.is-coming:hover .product-cover-wrap .cover { transform: none; box-shadow: var(--shadow-soft); }
.product-card.is-coming .product-cover-wrap { position: relative; }
.coming-badge {
  position: absolute; top: 26px; right: 26px; z-index: 2;
  font-family: var(--font-accent); font-weight: 700; font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 999px;
  background: var(--ink); color: var(--paper);
  box-shadow: 0 4px 14px rgba(23,23,23,0.18);
}

/* ============================================================
   How it works
   ============================================================ */
.howitworks { background: var(--soft-paper); }
.steps { margin-top: 56px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step { position: relative; }
.step-num { font-family: var(--font-accent); font-weight: 700; font-size: 14px; color: var(--accent); letter-spacing: 0.04em; }
.step-line { height: 2px; background: var(--sand); margin: 16px 0 22px; position: relative; }
.step-line::before { content: ""; position: absolute; left: 0; top: -3px; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.step h3 { font-size: 1.45rem; }
.step p { margin-top: 12px; font-size: 15px; }
.step-icon { width: 46px; height: 46px; border-radius: 13px; background: var(--white); border: 1px solid var(--sand); display: grid; place-items: center; color: var(--ink); margin-bottom: 18px; }
.step-icon svg { width: 24px; height: 24px; }

/* ============================================================
   Showcase band (real mockups)
   ============================================================ */
.showcase-media { margin-top: 48px; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-card); border: 1px solid var(--sand); }
.showcase-media img { width: 100%; display: block; }

/* ============================================================
   Values
   ============================================================ */
.values-grid { margin-top: 56px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.value {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--white); border: 1px solid var(--sand);
  border-radius: var(--radius-md); padding: 22px;
  transition: transform var(--motion-base) var(--ease-out), box-shadow var(--motion-base) var(--ease-out);
}
.value:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.value-icon { flex: 0 0 auto; width: 42px; height: 42px; border-radius: 12px; background: var(--soft-paper); display: grid; place-items: center; color: var(--accent); }
.value-icon svg { width: 22px; height: 22px; }
.value h4 { margin-bottom: 6px; }
.value p { font-size: 14px; }

/* ============================================================
   Multilingual
   ============================================================ */
.lang-section { background: var(--ink); color: var(--paper); border-radius: var(--radius-xl); margin-block: var(--section-pad); }
.lang-section .container { padding-block: clamp(56px, 8vw, 96px); }
.lang-section h2 { color: var(--paper); }
.lang-section p { color: color-mix(in oklab, var(--paper) 72%, transparent); margin-top: 18px; max-width: 36em; }
.lang-pills { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 12px; }
.lang-pill {
  font-family: var(--font-accent); font-weight: 700; font-size: 15px; letter-spacing: 0.05em;
  border: 1px solid color-mix(in oklab, var(--paper) 24%, transparent);
  border-radius: var(--radius-pill); padding: 11px 20px; color: var(--paper);
  display: inline-flex; align-items: center; gap: 9px;
  transition: background var(--motion-base) var(--ease-out), border-color var(--motion-base) var(--ease-out), transform var(--motion-base) var(--ease-out);
}
.lang-pill:hover { transform: translateY(-2px); }
.lang-pill.live { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.lang-pill.soon { opacity: 0.66; }
.lang-pill .tag { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.7; }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band { text-align: center; }
.cta-band .inner { background: var(--white); border: 1px solid var(--sand); border-radius: var(--radius-xl); padding: clamp(44px, 7vw, 88px) 24px; box-shadow: var(--shadow-soft); }
.cta-band h2 { max-width: 16em; margin-inline: auto; }
.cta-band p { margin: 18px auto 0; max-width: 34em; }
.cta-band .hero-cta { justify-content: center; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--ink); color: var(--paper); }
.footer-inner { padding-block: clamp(56px, 8vw, 88px); display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand .logo-icon { background: var(--paper); color: var(--ink); }
.footer-brand p { color: color-mix(in oklab, var(--paper) 64%, transparent); margin-top: 18px; max-width: 24em; font-size: 14.5px; }
.footer-col h4 { color: var(--paper); font-size: 13px; font-family: var(--font-accent); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { color: color-mix(in oklab, var(--paper) 68%, transparent); font-size: 14.5px; transition: color var(--motion-fast) var(--ease-out); }
.footer-col a:hover { color: var(--paper); }
.footer-bottom { border-top: 1px solid color-mix(in oklab, var(--paper) 14%, transparent); padding-block: 24px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between; }
.footer-bottom p { color: color-mix(in oklab, var(--paper) 52%, transparent); font-size: 13.5px; }
.footer-bottom .footer-langs { display: flex; gap: 14px; font-family: var(--font-accent); font-size: 13px; font-weight: 600; }
.footer-bottom .footer-langs button { background: none; border: 0; color: color-mix(in oklab, var(--paper) 52%, transparent); padding: 0; }
.footer-bottom .footer-langs button:hover { color: var(--paper); }
.footer-bottom .footer-langs button.active { color: var(--paper); }

/* ============================================================
   Products page
   ============================================================ */
.page-hero { padding-top: clamp(48px, 7vw, 84px); padding-bottom: clamp(28px, 4vw, 44px); }
.page-hero h1 { font-size: clamp(2.6rem, 5.5vw, 4.2rem); }
.page-hero p { margin-top: 18px; max-width: 40em; }

.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; align-items: center; }
.filter-chip {
  border: 1px solid var(--sand); background: var(--white);
  border-radius: var(--radius-pill); padding: 9px 16px;
  font-family: var(--font-accent); font-weight: 600; font-size: 13.5px; color: var(--deep-grey);
  display: inline-flex; align-items: center; gap: 8px;
  transition: all var(--motion-fast) var(--ease-out);
}
.filter-chip .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--cat, var(--sand)); }
.filter-chip:hover { border-color: color-mix(in oklab, var(--ink) 24%, var(--sand)); color: var(--ink); }
.filter-chip.active { background: var(--ink); color: var(--white); border-color: var(--ink); }
.filter-chip.active .dot { background: var(--cat, var(--white)); }

.catalog-grid { margin-top: 16px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.catalog-meta { margin-top: 40px; display: flex; align-items: baseline; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.catalog-meta .count { font-family: var(--font-accent); font-weight: 600; font-size: 14px; color: var(--deep-grey); }

/* ============================================================
   Legal pages
   ============================================================ */
.legal { max-width: 760px; margin-inline: auto; padding-block: clamp(48px, 7vw, 80px); }
.legal .eyebrow { display: block; }
.legal h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); margin-top: 12px; }
.legal .updated { font-family: var(--font-accent); font-size: 13px; color: var(--deep-grey); margin-top: 14px; }
.legal h2 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); margin-top: 46px; }
.legal h3 { font-size: 1.2rem; margin-top: 28px; }
.legal p, .legal li { color: var(--deep-grey); font-size: 16px; line-height: 1.7; }
.legal p { margin-top: 14px; }
.legal ul { margin-top: 14px; padding-left: 22px; display: flex; flex-direction: column; gap: 8px; }
.legal a { color: var(--accent); font-weight: 600; }
.legal .toc { background: var(--white); border: 1px solid var(--sand); border-radius: var(--radius-md); padding: 22px 26px; margin-top: 28px; }
.legal .toc h4 { font-family: var(--font-accent); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--deep-grey); margin-bottom: 12px; }
.legal .toc ol { margin: 0; padding-left: 18px; display: flex; flex-direction: column; gap: 7px; }
.legal .toc a { font-weight: 500; }

/* ============================================================
   Product detail page (PDP)
   ============================================================ */
.breadcrumb { display: flex; align-items: center; gap: 8px; padding-top: 26px; font-family: var(--font-accent); font-weight: 600; font-size: 13px; color: var(--deep-grey); }
.breadcrumb a { color: var(--deep-grey); transition: color var(--motion-fast) var(--ease-out); }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb svg { width: 14px; height: 14px; opacity: 0.5; }
.breadcrumb .here { color: var(--ink); }

.pdp-hero { padding-top: 28px; padding-bottom: var(--section-pad); }
.pdp-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.pdp-info { max-width: 520px; }
.pdp-info h1 { font-size: clamp(2.4rem, 4.6vw, 3.6rem); margin-top: 16px; }
.pdp-info .pdp-promise { margin-top: 18px; }
.pdp-info .product-formats { margin-top: 22px; }
.pdp-buy { margin-top: 26px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.pdp-buy .price { font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--ink); }
.pdp-instant { margin-top: 14px; display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-accent); font-weight: 600; font-size: 13px; color: var(--deep-grey); }
.pdp-instant svg { width: 16px; height: 16px; color: var(--accent); }

.pdp-visual { position: relative; display: grid; place-items: center; }
.pdp-visual .cover { width: min(330px, 78%); font-size: clamp(15px, 2vw, 18px); }
.pdp-visual .pdp-photo { width: 100%; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-card); border: 1px solid var(--sand); }
.pdp-visual .pdp-photo img { width: 100%; display: block; }

.inside-grid { margin-top: 40px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.inside-item { display: flex; gap: 14px; align-items: flex-start; background: var(--white); border: 1px solid var(--sand); border-radius: var(--radius-md); padding: 20px; }
.inside-item .ii-icon { flex: 0 0 auto; width: 40px; height: 40px; border-radius: 11px; background: color-mix(in oklab, var(--cat, var(--accent)) 26%, var(--white)); color: color-mix(in oklab, var(--ink) 76%, var(--cat, var(--accent))); display: grid; place-items: center; }
.inside-item .ii-icon svg { width: 21px; height: 21px; }
.inside-item h4 { font-family: var(--font-accent); font-weight: 700; font-size: 14px; }
.inside-item p { font-size: 13.5px; margin-top: 4px; }

.pdp-cols { margin-top: 16px; display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.pdp-panel { background: var(--white); border: 1px solid var(--sand); border-radius: var(--radius-lg); padding: 30px; }
.pdp-panel h3 { font-size: 1.5rem; }
.pdp-list { margin: 20px 0 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 14px; }
.pdp-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink); font-size: 15.5px; line-height: 1.45; }
.pdp-list li .lc { flex: 0 0 auto; width: 22px; height: 22px; border-radius: 50%; background: color-mix(in oklab, var(--cat, var(--accent)) 30%, var(--white)); color: color-mix(in oklab, var(--ink) 72%, var(--cat, var(--accent))); display: grid; place-items: center; margin-top: 1px; }
.pdp-list li .lc svg { width: 13px; height: 13px; }

.faq-list { margin-top: 36px; max-width: 800px; }
.faq-item { border-bottom: 1px solid var(--sand); }
.faq-q { width: 100%; background: none; border: 0; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 4px; font-family: var(--font-heading); font-weight: 700; font-size: clamp(1.05rem, 1.6vw, 1.25rem); letter-spacing: -0.02em; color: var(--ink); }
.faq-q .fq-ico { flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--sand); display: grid; place-items: center; transition: transform var(--motion-base) var(--ease-out), background var(--motion-base) var(--ease-out); }
.faq-q .fq-ico svg { width: 15px; height: 15px; }
.faq-item.open .fq-ico { transform: rotate(45deg); background: var(--ink); color: var(--white); border-color: var(--ink); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--motion-slow) var(--ease-out); }
.faq-a-inner { padding: 0 4px 22px; color: var(--deep-grey); font-size: 15.5px; line-height: 1.6; max-width: 60ch; }

.pdp-download { text-align: center; }
.pdp-download .inner { background: var(--ink); color: var(--paper); border-radius: var(--radius-xl); padding: clamp(44px, 7vw, 80px) 24px; }
.pdp-download h2 { color: var(--paper); }
.pdp-download p { color: color-mix(in oklab, var(--paper) 72%, transparent); margin: 16px auto 0; max-width: 34em; }
.pdp-download .pd-cta { margin-top: 28px; display: inline-flex; align-items: center; gap: 16px; flex-wrap: wrap; justify-content: center; }
.pdp-download .price { color: var(--paper); font-size: 1.6rem; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; min-height: 340px; }
  .cat-grid, .products-grid, .catalog-grid, .steps, .values-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .pdp-grid { grid-template-columns: 1fr; }
  .pdp-visual { order: -1; }
  .pdp-visual .cover { width: min(280px, 64%); }
  .inside-grid { grid-template-columns: repeat(2, 1fr); }
  .pdp-cols { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .header-nav { display: none; }
  .menu-toggle {
    display: inline-grid; place-items: center; width: 42px; height: 42px;
    border: 1px solid var(--sand); background: var(--white); border-radius: 12px; color: var(--ink); margin-left: auto;
  }
  .header-nav.open {
    display: flex; flex-direction: column; align-items: stretch; gap: 4px;
    position: absolute; left: 16px; right: 16px; top: 70px;
    background: var(--white); border: 1px solid var(--sand); border-radius: var(--radius-md);
    box-shadow: var(--shadow-card); padding: 10px; margin: 0;
  }
  .header-nav.open a { padding: 12px 14px; }
}
@media (max-width: 600px) {
  .cat-grid, .products-grid, .catalog-grid, .steps, .values-grid, .inside-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .lang-section { border-radius: 0; margin-inline: -20px; }
}
