
:root {
  --cream: #fbfaf7;
  --paper: #ffffff;
  --ink: #183150;
  --ink-soft: #647388;
  --muted: #647388;
  --blue: #5873e8;
  --blue-dark: #3f5bd1;
  --lavender: #ebe8ff;
  --yellow: #fff1cb;
  --mint: #dbf0e9;
  --grey: #edf1f7;
  --line: #d6deea;
  --white: #ffffff;
  --radius-lg: 28px;
  --radius-md: 18px;
  --shadow: 0 18px 50px rgba(24, 49, 80, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family:
    Arial,
    "Helvetica Neue",
    sans-serif;
  -webkit-font-smoothing: antialiased;
}

button,
input {
  font: inherit;
}

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

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

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

h1,
h2,
h3 {
  overflow-wrap: break-word;
  hyphens: auto;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

.skip-link {
  position: fixed;
  z-index: 200;
  left: 18px;
  top: -80px;
  padding: 12px 18px;
  color: white;
  background: var(--ink);
  border-radius: 12px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 18px;
}

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

.announcement {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 8px 20px;
  background: var(--ink);
  color: white;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.announcement a {
  color: #bfcaff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.announcement-dot {
  width: 7px;
  height: 7px;
  background: #62d0ac;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(98, 208, 172, 0.15);
}

.header {
  position: relative;
  z-index: 50;
  height: 84px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 42px;
  background: rgba(251, 250, 247, 0.96);
  border-bottom: 1px solid rgba(214, 222, 234, 0.8);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border-radius: 13px 13px 13px 4px;
  color: white;
  background: var(--blue);
  font-size: 18px;
  font-weight: 900;
  transform: rotate(-3deg);
}

.brand > span:last-child {
  display: grid;
  gap: 0;
}

.brand strong,
.brand small {
  font-size: 13px;
  line-height: 1.15;
  letter-spacing: 0.08em;
}

.brand small {
  font-weight: 800;
}

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

.nav a {
  position: relative;
  padding: 10px 0;
  font-size: 13px;
  font-weight: 700;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 4px;
  height: 2px;
  background: var(--blue);
  transition: right 0.2s ease;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  right: 0;
}

.menu-button {
  display: none;
}

.cart-button {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 6px 8px 6px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: white;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
}

.cart-button:hover {
  transform: translateY(-2px);
  border-color: var(--blue);
}

.cart-button b {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--blue);
  font-size: 12px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(440px, 0.98fr);
  min-height: 690px;
  max-width: 1360px;
  margin: 0 auto;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 4vw 76px;
}

.eyebrow,
.section-kicker {
  color: var(--blue-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow span {
  padding: 7px 10px;
  border-radius: 999px;
  color: white;
  background: var(--blue);
}

.hero h1 {
  margin: 26px 0 22px;
  max-width: 690px;
  font-size: clamp(54px, 5.8vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero h1 span {
  color: var(--blue);
}

.hero-lead {
  max-width: 600px;
  margin: 0;
  color: #455a74;
  font-size: 18px;
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 34px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 12px 22px;
  border: 0;
  border-radius: 15px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.015em;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

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

.button-primary {
  color: white;
  background: var(--blue);
  box-shadow: 0 12px 25px rgba(88, 115, 232, 0.22);
}

.button-primary:hover {
  background: var(--blue-dark);
  box-shadow: 0 16px 30px rgba(88, 115, 232, 0.3);
}

.button-ink {
  color: white;
  background: var(--ink);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.text-link span {
  color: var(--blue);
  font-size: 18px;
  text-decoration: none;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: start;
  gap: 0;
  margin-top: 50px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}

.hero-proof div {
  display: grid;
  min-width: 145px;
  padding: 0 22px;
  border-right: 1px solid var(--line);
}

.hero-proof div:first-child {
  padding-left: 0;
}

.hero-proof div:last-child {
  border-right: 0;
}

.hero-proof strong {
  font-size: 22px;
}

.hero-proof span {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 11px;
}

.hero-visual {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  background:
    radial-gradient(circle at 72% 24%, rgba(255, 255, 255, 0.58) 0 2px, transparent 3px),
    linear-gradient(145deg, #d9e1ff 0%, #c7d1ff 52%, #b9c5fa 100%);
  border-left: 1px solid var(--line);
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow:
    0 0 0 75px rgba(255, 255, 255, 0.08),
    0 0 0 150px rgba(255, 255, 255, 0.06);
}

.book-object {
  position: absolute;
  z-index: 3;
  width: 285px;
  left: 50%;
  top: 49%;
  border-radius: 4px 12px 12px 4px;
  transform: translate(-58%, -50%) rotate(-5deg);
  filter: drop-shadow(25px 32px 30px rgba(36, 53, 118, 0.25));
  transition: transform 0.4s ease;
}

.hero-visual:hover .book-object {
  transform: translate(-58%, -52%) rotate(-3deg);
}

.book-object img {
  width: 100%;
  border-radius: 3px 10px 10px 3px;
}

.book-spine {
  position: absolute;
  z-index: 2;
  left: -12px;
  top: 8px;
  bottom: 8px;
  width: 14px;
  border-radius: 6px 0 0 6px;
  background: #435fdb;
  box-shadow: inset -3px 0 4px rgba(18, 35, 67, 0.2);
}

.hero-mascot {
  position: absolute;
  z-index: 5;
  width: 210px;
  right: -6px;
  bottom: 12px;
  filter: drop-shadow(0 18px 18px rgba(24, 49, 80, 0.18));
  animation: mascotFloat 4.2s ease-in-out infinite;
}

@keyframes mascotFloat {
  0%,
  100% {
    transform: translateY(0) rotate(1deg);
  }
  50% {
    transform: translateY(-10px) rotate(-1deg);
  }
}

.hero-card {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
  padding: 16px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  font-size: 12px;
}

.hero-card-back {
  left: 25px;
  bottom: 55px;
  color: #2741b1;
  background: var(--lavender);
  transform: rotate(4deg);
}

.hero-card span {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: white;
  font-size: 10px;
  font-weight: 900;
}

.hero-card i {
  margin-left: auto;
  font-size: 23px;
  font-style: normal;
}

.hero-sticker {
  position: absolute;
  z-index: 6;
  right: 28px;
  top: 46px;
  width: 110px;
  height: 110px;
  display: grid;
  place-content: center;
  text-align: center;
  border-radius: 50%;
  color: white;
  background: var(--ink);
  transform: rotate(7deg);
  box-shadow: 0 12px 30px rgba(24, 49, 80, 0.18);
}

.hero-sticker strong {
  font-size: 30px;
  line-height: 1;
}

.hero-sticker span {
  max-width: 70px;
  margin-top: 4px;
  font-size: 10px;
  line-height: 1.2;
}

.orbit {
  position: absolute;
  z-index: 4;
  padding: 10px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 999px;
  box-shadow: 0 8px 25px rgba(24, 49, 80, 0.08);
  font-size: 11px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.orbit-one {
  left: 28px;
  top: 76px;
  transform: rotate(-5deg);
}

.orbit-two {
  right: 38px;
  top: 205px;
  color: #16745e;
  background: var(--mint);
  transform: rotate(4deg);
}

.trust-strip {
  min-height: 66px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  max-width: 1360px;
  margin: 0 auto;
  color: #415571;
  background: white;
  border: 1px solid var(--line);
  border-top: 0;
}

.trust-strip span {
  padding: 12px 25px;
  text-align: center;
  border-right: 1px solid var(--line);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.trust-strip span:last-child {
  border-right: 0;
}

.section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 42px;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 42px;
}

.section-heading h2 {
  max-width: 720px;
  margin: 10px 0 0;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.section-heading > p {
  max-width: 390px;
  margin: 0 0 6px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 28px;
}

.filters button {
  padding: 11px 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: white;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.filters button:hover,
.filters .filter-active {
  color: white;
  background: var(--ink);
  border-color: var(--ink);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.product-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 570px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.product-cover {
  position: relative;
  min-height: 290px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.product-cover::after {
  content: "";
  position: absolute;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
}

.cover-book,
.cover-tables,
.cover-verbs {
  background: #dfe5ff;
}

.cover-tables {
  background: var(--yellow);
}

.cover-verbs {
  background: var(--lavender);
}

.cover-mini {
  background: var(--mint);
}

.cover-checklist {
  background: #e5eaf4;
}

.cover-cases {
  background: #ffe9da;
}

.cover-articles,
.cover-speaking,
.cover-tone {
  background: #ebe8ff;
}

.cover-preps,
.cover-where,
.cover-verbpreps {
  background: #dbf0e9;
}

.cover-endings,
.cover-perfect,
.cover-coffee {
  background: #ffe9da;
}

.cover-tekamolo,
.cover-phrases,
.cover-connectors {
  background: #fff1cb;
}

.product-cover > img,
.product-cover-link > img {
  position: relative;
  z-index: 2;
  width: 158px;
  max-height: 230px;
  object-fit: cover;
  object-position: top;
  border-radius: 3px 8px 8px 3px;
  box-shadow: 18px 20px 30px rgba(24, 49, 80, 0.2);
  transform: rotate(-4deg);
  transition: transform 0.35s ease;
}

.product-card:hover .product-cover > img,
.product-card:hover .product-cover-link > img {
  transform: rotate(-2deg) translateY(-5px);
}

.product-badge {
  position: absolute;
  z-index: 4;
  top: 17px;
  left: 17px;
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--ink);
  background: white;
  box-shadow: 0 5px 16px rgba(24, 49, 80, 0.08);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cover-design {
  position: relative;
  z-index: 2;
  width: 160px;
  min-height: 225px;
  display: flex;
  flex-direction: column;
  padding: 22px 18px;
  color: var(--ink);
  background: #fffefa;
  border-radius: 3px 8px 8px 3px;
  box-shadow: 18px 20px 30px rgba(24, 49, 80, 0.18);
  transform: rotate(-4deg);
  transition: transform 0.35s ease;
}

.product-card:hover .cover-design {
  transform: rotate(-2deg) translateY(-5px);
}

.cover-design::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 52px;
  background: var(--blue);
}

.cover-mini .cover-design::before {
  background: #2f947d;
}

.cover-checklist .cover-design::before {
  background: var(--ink);
}

.cover-cases .cover-design::before {
  background: #e9823f;
}

.cover-preps .cover-design::before,
.cover-where .cover-design::before,
.cover-verbpreps .cover-design::before,
.cover-coffee .cover-design::before {
  background: #3b8f7a;
}

.cover-tekamolo .cover-design::before,
.cover-phrases .cover-design::before,
.cover-connectors .cover-design::before {
  background: #d48a2f;
}

.cover-perfect .cover-design::before,
.cover-endings .cover-design::before {
  background: #dc7048;
}

.cover-articles .cover-design::before,
.cover-speaking .cover-design::before,
.cover-tone .cover-design::before {
  background: #6f63c9;
}

.cover-brand {
  position: relative;
  z-index: 2;
  color: white;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.cover-kicker {
  position: relative;
  z-index: 2;
  margin-top: 14px;
  color: var(--blue);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cover-design strong {
  margin-top: 8px;
  overflow-wrap: break-word;
  hyphens: auto;
  font-size: 22px;
  line-height: 1.02;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.cover-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 12px;
}

.cover-meta span {
  padding: 4px 7px;
  color: var(--ink-soft);
  background: var(--grey);
  border-radius: 999px;
  font-size: 8px;
  font-weight: 800;
}

.cover-design i {
  margin-top: auto;
  color: var(--blue);
  font-size: 25px;
  font-style: normal;
}

.product-info {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.product-kicker {
  margin: 0 0 8px !important;
  color: var(--blue-dark) !important;
  font-size: 10px !important;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.product-info h3 {
  margin: 0;
  font-size: 23px;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.product-info > p {
  margin: 12px 0 18px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.55;
}

.product-meta {
  display: flex;
  gap: 7px;
  margin-top: auto;
}

.product-meta span {
  padding: 7px 9px;
  border-radius: 8px;
  color: #53647a;
  background: var(--grey);
  font-size: 9px;
  font-weight: 800;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.product-footer > strong {
  white-space: nowrap;
  font-size: 18px;
}

.price-free {
  color: #20816b;
}

.card-action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font-size: 11px;
  font-weight: 900;
}

.card-action span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--blue);
  font-size: 16px;
  transition: transform 0.2s ease;
}

.card-action:hover span {
  transform: rotate(9deg) scale(1.08);
}

.free-band {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  min-height: 600px;
  max-width: 1360px;
  margin: 20px auto 0;
  background: var(--yellow);
  border-radius: 34px;
}

.free-band::before {
  content: "KOSTENLOS";
  position: absolute;
  left: -42px;
  bottom: -22px;
  color: rgba(166, 111, 0, 0.07);
  font-size: 120px;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.free-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 70px 6vw;
}

.free-copy .section-kicker {
  color: #9e6800;
}

.free-copy h2 {
  margin: 14px 0 20px;
  font-size: clamp(42px, 4.2vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.free-copy > p {
  max-width: 490px;
  margin: 0 0 28px;
  color: #665a45;
  font-size: 16px;
  line-height: 1.6;
}

.free-copy small {
  margin: 14px 0 0 5px;
  color: #75684f;
  font-size: 10px;
}

.free-preview {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 600px;
  background:
    linear-gradient(rgba(88, 115, 232, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(88, 115, 232, 0.08) 1px, transparent 1px),
    #dfe5ff;
  background-size: 32px 32px;
}

.preview-paper {
  position: relative;
  z-index: 2;
  width: min(390px, 72%);
  min-height: 470px;
  padding: 45px;
  background: #fffefa;
  box-shadow: 26px 28px 40px rgba(24, 49, 80, 0.18);
  transform: rotate(3deg);
}

.preview-paper::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 14px;
  background: var(--blue);
}

.preview-paper p {
  margin: 0 0 30px;
  color: var(--blue);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.preview-paper h3 {
  margin: 20px 0 5px;
  font-size: 36px;
}

.preview-paper > span {
  color: var(--ink-soft);
  font-size: 11px;
}

.preview-paper > div {
  margin-top: 10px;
  padding: 14px;
  color: #325448;
  background: var(--mint);
  border-radius: 10px;
  font-size: 12px;
  font-weight: 800;
}

.preview-paper h3:nth-of-type(2) + span + div {
  color: #6f5200;
  background: var(--yellow);
}

.free-bubble {
  position: absolute;
  z-index: 3;
  right: 6%;
  top: 18%;
  padding: 13px 18px;
  color: white;
  background: var(--blue);
  border-radius: 18px 18px 3px 18px;
  box-shadow: 0 12px 25px rgba(63, 91, 209, 0.22);
  font-size: 13px;
  font-weight: 900;
  transform: rotate(-5deg);
}

.method {
  padding-bottom: 90px;
}

.method-heading {
  margin-bottom: 32px;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
  overflow: hidden;
}

.method-grid article {
  position: relative;
  min-height: 235px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border-right: 1px solid var(--line);
}

.method-grid article:last-child {
  border-right: 0;
}

.method-grid article:nth-child(1) {
  background: var(--lavender);
}

.method-grid article:nth-child(2) {
  background: var(--yellow);
}

.method-grid article:nth-child(3) {
  background: var(--mint);
}

.method-grid article > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--blue);
  background: white;
  font-size: 10px;
  font-weight: 900;
}

.method-grid article div {
  margin-top: auto;
}

.method-grid h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.method-grid p {
  max-width: 280px;
  margin: 0;
  color: #596a7f;
  font-size: 12px;
  line-height: 1.5;
}

.method-grid b {
  position: absolute;
  right: 28px;
  top: 31px;
  font-size: 22px;
}

.wissen {
  padding-top: 60px;
}

.article-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr) minmax(0, 0.9fr);
  gap: 18px;
}

.article-card {
  position: relative;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-radius: 25px;
  overflow: hidden;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.article-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.article-featured {
  color: white;
  background: var(--blue);
}

.article-featured::before {
  content: "V2";
  position: absolute;
  right: -18px;
  top: 2px;
  color: rgba(255, 255, 255, 0.08);
  font-size: 190px;
  font-weight: 900;
  letter-spacing: -0.1em;
}

.article-yellow {
  background: var(--yellow);
}

.article-mint {
  background: var(--mint);
}

.article-number {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 900;
}

.article-card > div {
  position: relative;
  z-index: 2;
  margin-top: auto;
}

.article-card p {
  margin: 0 0 10px;
  opacity: 0.7;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.article-card h3 {
  max-width: 440px;
  margin: 0;
  font-size: clamp(23px, 2.3vw, 34px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.article-arrow {
  position: absolute;
  right: 0;
  top: -8px;
  font-size: 26px;
}

.quote-band {
  position: relative;
  min-height: 450px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 260px;
  text-align: center;
  color: white;
  background: var(--ink);
  overflow: hidden;
}

.quote-band::before,
.quote-band::after {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
}

.quote-band::before {
  left: -90px;
  top: -120px;
}

.quote-band::after {
  right: -120px;
  bottom: -110px;
}

.quote-band > p {
  margin: 0 0 18px;
  color: #9db0ff;
  font-size: 14px;
  font-weight: 900;
}

.quote-band h2 {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin: 0;
  font-size: clamp(36px, 4.2vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.quote-band > span {
  margin-top: 24px;
  color: #aeb9c8;
  font-size: 11px;
}

.quote-band img {
  position: absolute;
  right: 4%;
  bottom: -35px;
  width: 210px;
  opacity: 0.9;
}

.faq {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 90px;
}

.faq .section-heading {
  align-items: flex-start;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 0;
  cursor: pointer;
  list-style: none;
  font-size: 17px;
  font-weight: 800;
}

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

.faq summary span {
  color: var(--blue);
  font-size: 20px;
  transition: transform 0.2s ease;
}

.faq details[open] summary span {
  transform: rotate(45deg);
}

.faq details p {
  max-width: 650px;
  margin: -8px 50px 24px 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.65;
}

.footer {
  color: white;
  background: #111f35;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 80px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 70px 42px 55px;
}

.footer-brand .brand-mark {
  color: var(--ink);
  background: #9db0ff;
}

.footer-top > div:first-child > p {
  max-width: 285px;
  margin: 18px 0 0;
  color: #9ba9ba;
  font-size: 12px;
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 35px;
}

.footer-links div {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links strong,
.footer-note > strong {
  margin-bottom: 6px;
  color: #9db0ff;
  font-size: 9px;
  letter-spacing: 0.12em;
}

.footer-links a {
  color: #c4ceda;
  font-size: 12px;
}

.footer-links a:hover {
  color: white;
}

.footer-note p {
  max-width: 330px;
  margin: 12px 0 16px;
  color: #9ba9ba;
  font-size: 11px;
  line-height: 1.55;
}

.footer-note form {
  display: flex;
  max-width: 340px;
  padding: 5px;
  background: #1c2d47;
  border: 1px solid #344761;
  border-radius: 12px;
}

.footer-note input {
  min-width: 0;
  flex: 1;
  padding: 10px 11px;
  border: 0;
  outline: 0;
  color: white;
  background: transparent;
  font-size: 12px;
}

.footer-note input::placeholder {
  color: #7e8fa5;
}

.footer-note button {
  width: 38px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 9px;
  color: white;
  background: var(--blue);
  cursor: pointer;
}

.footer-bottom {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1196px;
  margin: 0 auto;
  color: #78889e;
  border-top: 1px solid #2a3b53;
  font-size: 9px;
}

.drawer-backdrop {
  position: fixed;
  z-index: 90;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: rgba(11, 24, 42, 0.45);
  backdrop-filter: blur(3px);
  transition: opacity 0.3s ease;
}

.drawer-backdrop.drawer-visible {
  pointer-events: auto;
  opacity: 1;
}

.cart-drawer {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(470px, 94vw);
  display: flex;
  flex-direction: column;
  background: var(--cream);
  box-shadow: -20px 0 50px rgba(11, 24, 42, 0.15);
  transform: translateX(105%);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 28px;
  background: white;
  border-bottom: 1px solid var(--line);
}

.drawer-header p {
  margin: 0 0 5px;
  color: var(--blue);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.drawer-header h2 {
  margin: 0;
  font-size: 24px;
}

.drawer-header > button {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: white;
  cursor: pointer;
  font-size: 24px;
}

.drawer-content {
  min-height: 0;
  display: flex;
  flex: 1;
  flex-direction: column;
  overflow: auto;
}

.empty-cart {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
}

.empty-cart > span {
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--blue);
  background: var(--lavender);
  font-size: 32px;
  font-weight: 900;
}

.empty-cart h3 {
  margin: 20px 0 8px;
  font-size: 26px;
}

.empty-cart p {
  max-width: 270px;
  margin: 0 0 26px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.5;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
}

.cart-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 13px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 17px;
}

.cart-thumb {
  width: 72px;
  height: 88px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 9px;
}

.cart-thumb img {
  width: 52px;
  height: 74px;
  object-fit: cover;
  object-position: top;
  box-shadow: 5px 5px 10px rgba(24, 49, 80, 0.15);
}

.cart-thumb span {
  font-size: 24px;
  font-weight: 900;
}

.cart-item small {
  color: var(--blue);
  font-size: 9px;
  font-weight: 900;
}

.cart-item h3 {
  margin: 4px 0 7px;
  font-size: 15px;
}

.cart-item strong {
  white-space: nowrap;
  font-size: 13px;
}

.cart-item > button {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  color: var(--ink-soft);
  background: var(--grey);
  cursor: pointer;
  font-size: 18px;
}

.cart-summary {
  margin-top: auto;
  padding: 25px 28px;
  background: white;
  border-top: 1px solid var(--line);
}

.cart-summary > div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  font-size: 15px;
}

.cart-summary > div strong {
  white-space: nowrap;
  font-size: 22px;
}

.cart-summary .button {
  width: 100%;
}

.cart-summary > small {
  display: block;
  margin-top: 11px;
  text-align: center;
  color: var(--ink-soft);
  font-size: 9px;
}

.modal-layer {
  position: fixed;
  z-index: 120;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(11, 24, 42, 0.55);
  backdrop-filter: blur(4px);
}

.modal-layer[hidden] {
  display: none;
}

.modal-card {
  position: relative;
  z-index: 2;
  width: min(500px, 100%);
  padding: 42px;
  text-align: center;
  background: white;
  border-radius: 26px;
  box-shadow: 0 30px 80px rgba(11, 24, 42, 0.25);
}

.modal-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  border-radius: 50%;
  color: #20816b;
  background: var(--mint);
  font-size: 24px;
  font-weight: 900;
}

.modal-card h2 {
  margin: 9px 0 14px;
  font-size: 30px;
  line-height: 1.1;
}

.modal-card > p:not(.section-kicker) {
  margin: 0 0 25px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
}

.modal-close-area {
  position: absolute;
  z-index: 1;
  inset: 0;
  border: 0;
  background: transparent;
}

.toast {
  position: fixed;
  z-index: 150;
  left: 50%;
  bottom: 24px;
  max-width: calc(100vw - 32px);
  padding: 14px 20px;
  color: white;
  background: var(--ink);
  border-radius: 999px;
  box-shadow: 0 15px 40px rgba(11, 24, 42, 0.22);
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, 20px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
  font-size: 12px;
  font-weight: 800;
}

.toast-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 1100px) {
  .header {
    padding: 0 25px;
  }

  .nav {
    gap: 21px;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr);
    min-height: 640px;
  }

  .hero-copy {
    padding-left: 38px;
    padding-right: 35px;
  }

  .hero h1 {
    font-size: 60px;
  }

  .hero-proof div {
    min-width: 122px;
    padding: 0 15px;
  }

  .book-object {
    width: 235px;
  }

  .hero-mascot {
    width: 170px;
  }

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

  .free-band {
    margin-left: 20px;
    margin-right: 20px;
  }

  .quote-band {
    padding-left: 130px;
    padding-right: 130px;
  }
}

@media (max-width: 820px) {
  .announcement {
    justify-content: flex-start;
    overflow: auto;
    white-space: nowrap;
  }

  .header {
    height: 74px;
    grid-template-columns: 1fr auto auto;
    gap: 12px;
  }

  .menu-button {
    order: 2;
    width: 42px;
    height: 42px;
    display: grid;
    place-content: center;
    gap: 6px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: white;
  }

  .menu-button span {
    width: 17px;
    height: 2px;
    background: var(--ink);
  }

  .nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 68px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .nav-open {
    display: flex;
  }

  .nav a {
    padding: 14px;
  }

  .nav a::after {
    display: none;
  }

  .cart-button {
    order: 3;
    min-height: 42px;
    padding-left: 8px;
  }

  .cart-button > span {
    display: none;
  }

  .hero {
    display: block;
    border: 0;
  }

  .hero-copy {
    padding: 68px 28px 52px;
  }

  .hero h1 {
    font-size: clamp(51px, 11vw, 76px);
  }

  .hero-visual {
    min-height: 590px;
    border: 0;
  }

  .book-object {
    width: 255px;
  }

  .hero-mascot {
    width: 190px;
  }

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

  .trust-strip span:nth-child(2) {
    border-right: 0;
  }

  .trust-strip span:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding: 90px 28px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .free-band {
    grid-template-columns: 1fr;
  }

  .free-copy {
    min-height: 500px;
    padding: 65px 42px;
  }

  .method-grid {
    grid-template-columns: 1fr;
  }

  .method-grid article {
    min-height: 190px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .article-featured {
    grid-column: 1 / -1;
  }

  .quote-band {
    min-height: 520px;
    padding: 70px 50px 180px;
  }

  .quote-band img {
    right: 50%;
    bottom: -50px;
    transform: translateX(50%);
  }

  .faq {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .footer-top {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 55px;
  }

  .footer-note {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    margin: 0 28px;
  }
}

@media (max-width: 560px) {
  .header {
    padding: 0 16px;
  }

  .brand-mark {
    width: 35px;
    height: 35px;
  }

  .hero-copy {
    padding: 55px 20px 45px;
  }

  .eyebrow {
    align-items: flex-start;
    flex-direction: column;
    line-height: 1.45;
  }

  .hero h1 {
    margin-top: 22px;
    font-size: 49px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 20px;
  }

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

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

  .hero-proof div {
    min-width: 0;
    padding: 0 9px;
  }

  .hero-proof strong {
    font-size: 18px;
  }

  .hero-proof span {
    font-size: 8px;
    line-height: 1.35;
  }

  .hero-visual {
    min-height: 490px;
  }

  .book-object {
    width: 205px;
    left: 49%;
  }

  .hero-mascot {
    width: 145px;
    right: -20px;
  }

  .hero-sticker {
    width: 90px;
    height: 90px;
    right: 15px;
    top: 25px;
  }

  .orbit-two {
    display: none;
  }

  .hero-card-back {
    left: 13px;
    bottom: 30px;
    min-width: 176px;
  }

  .trust-strip span {
    padding: 14px 8px;
    font-size: 9px;
  }

  .section {
    padding: 75px 18px;
  }

  .section-heading h2 {
    font-size: 39px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: 550px;
  }

  .filters {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 6px;
  }

  .filters button {
    white-space: nowrap;
  }

  .free-band {
    margin: 0;
    border-radius: 0;
  }

  .free-copy {
    min-height: 490px;
    padding: 58px 23px;
  }

  .free-copy h2 {
    font-size: 43px;
  }

  .free-preview {
    min-height: 520px;
  }

  .preview-paper {
    width: 80%;
    padding: 38px 29px;
  }

  .article-grid {
    grid-template-columns: 1fr;
  }

  .article-featured {
    grid-column: auto;
  }

  .article-card {
    min-height: 300px;
  }

  .article-card h3 {
    font-size: 28px;
  }

  .desktop-link {
    display: none;
  }

  .quote-band {
    padding-left: 22px;
    padding-right: 22px;
  }

  .quote-band h2 {
    font-size: 34px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 45px;
    padding: 55px 24px;
  }

  .footer-note {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    margin: 0 24px;
  }

  .modal-card {
    padding: 34px 22px;
  }
}

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

/* v2: friendlier hero, paged catalog and richer learning flow */
.hero-lead em { color: var(--ink); font-style: normal; font-weight: 800; }
.orbit-three {
  left: 8%;
  bottom: 16%;
  background: #fff4c9;
  color: #8b6514;
  transform: rotate(-7deg);
}
.mascot-hover {
  position: absolute;
  right: 2.5%;
  bottom: 2.5%;
  width: 29%;
  z-index: 8;
}
.mascot-hover .hero-mascot {
  position: relative;
  inset: auto;
  width: 100%;
  display: block;
}
.angry-brow {
  position: absolute;
  top: 17%;
  width: 19%;
  height: 8px;
  border-radius: 10px;
  background: #152c59;
  opacity: 0;
  transition: .2s ease;
  z-index: 4;
}
.brow-left { left: 25%; transform: rotate(18deg); }
.brow-right { right: 25%; transform: rotate(-18deg); }
.mascot-speech {
  position: absolute;
  right: 75%;
  top: 5%;
  width: max-content;
  padding: 11px 15px;
  border-radius: 16px 16px 4px 16px;
  color: white;
  background: var(--ink);
  font-size: 13px;
  font-weight: 800;
  opacity: 0;
  transform: translateY(8px) rotate(-3deg);
  transition: .2s ease;
}
.mascot-hover:hover .angry-brow { opacity: 1; }
.mascot-hover:hover .mascot-speech { opacity: 1; transform: translateY(0) rotate(-3deg); }
.mascot-hover:hover .hero-mascot { transform: rotate(1deg) scale(1.025); filter: saturate(1.1); }

.catalog-lanes { display: grid; gap: 70px; margin-top: 38px; }
.product-lane { min-width: 0; }
.lane-heading { display: flex; justify-content: space-between; align-items: end; margin-bottom: 20px; gap: 20px; }
.lane-heading h3 { margin: 0 0 5px; font-size: 31px; color: var(--ink); }
.lane-heading p { margin: 0; color: var(--muted); }
.lane-controls { display: flex; gap: 10px; align-items: center; }
.lane-controls button {
  width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line);
  background: white; color: var(--ink); font-size: 20px; cursor: pointer; transition: .2s;
}
.lane-controls button:hover { background: var(--ink); color: white; transform: translateY(-2px); }
.lane-page { min-width: 44px; text-align: center; color: var(--muted); font-size: 13px; font-weight: 800; }
.lane-window { overflow: hidden; border-radius: 28px; }
.lane-track { display: flex; gap: 24px; transition: transform .55s cubic-bezier(.2,.8,.2,1); }
.lane-track .product-card { flex: 0 0 calc((100% - 48px) / 3); }

.method-intro { max-width: 760px; color: var(--muted); font-size: 18px; line-height: 1.6; margin: -18px 0 28px; }
.method-grid article { transition: transform .25s ease, box-shadow .25s ease; }
.method-grid article:hover, .method-grid article:focus { transform: translateY(-7px); box-shadow: 0 18px 36px rgba(27,46,83,.10); outline: none; }
.method-result {
  margin-top: 24px; border: 1px solid var(--line); border-radius: 26px; background: white;
  display: grid; grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr); align-items: center; gap: 25px; padding: 28px;
}
.method-result div { display: grid; gap: 7px; }
.method-result span { color: var(--blue); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.method-result strong { color: var(--ink); font-size: 18px; }
.method-result > b { color: var(--blue); font-size: 26px; }
.method-result > p { grid-column: 1 / -1; margin: 0; padding-top: 18px; border-top: 1px solid var(--line); color: var(--muted); }

@media (max-width: 900px) {
  .lane-track .product-card { flex-basis: calc((100% - 24px) / 2); }
  .method-result { grid-template-columns: minmax(0, 1fr); }
  .method-result > b { transform: rotate(90deg); justify-self: center; }
}
@media (max-width: 560px) {
  .lane-heading { align-items: center; }
  .lane-heading h3 { font-size: 24px; }
  .lane-heading p { display: none; }
  .lane-track .product-card { flex-basis: 100%; }
  .catalog-lanes { gap: 48px; }
  .mascot-speech { right: 45%; top: -7%; }
}
/* Compact category switcher + one in-row product slider */
.catalog-tabs{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin-bottom:22px}
.catalog-tab{min-height:82px;padding:17px 20px;text-align:left;border:1px solid var(--line);border-radius:17px;color:var(--ink);background:var(--paper);cursor:pointer;transition:transform .2s ease,background .2s ease,color .2s ease}
.catalog-tab strong,.catalog-tab span{display:block}.catalog-tab strong{margin-bottom:6px;font-size:15px}.catalog-tab span{color:var(--ink-soft);font-size:11px;line-height:1.35}.catalog-tab:hover{transform:translateY(-3px)}
.catalog-tab-active{color:white;background:var(--ink);border-color:var(--ink);box-shadow:var(--shadow)}.catalog-tab-active span{color:#bdc9d8}
.catalog-slider{position:relative;min-height:580px;padding:25px 72px 55px;border:1px solid var(--line);border-radius:26px;background:#f1f4f8}
.single-product-row{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px}
.inline-slider-button{position:absolute;z-index:3;top:46%;width:46px;height:46px;border:1px solid var(--line);border-radius:50%;color:var(--ink);background:white;box-shadow:0 10px 22px rgba(24,49,80,.14);cursor:pointer;font-size:19px;transition:transform .2s ease,background .2s ease}
.inline-slider-button:hover{color:white;background:var(--blue);transform:scale(1.06)}.slider-prev{left:14px}.slider-next{right:14px}
.catalog-page{position:absolute;left:50%;bottom:17px;transform:translateX(-50%);color:#8a96a6;font-size:12px}.catalog-page strong{color:var(--blue-dark);font-size:16px}
.product-inside{padding-top:35px}.inside-grid{display:grid;grid-template-columns:repeat(3,1fr) 1.12fr;gap:15px}
.inside-grid article,.inside-visual{min-height:280px;padding:26px;border:1px solid var(--line);border-radius:20px;background:white}
.inside-grid article>span{color:var(--blue);font-size:12px;font-weight:900}.inside-grid h3{margin:62px 0 12px;font-size:19px;line-height:1.15}.inside-grid p{color:var(--ink-soft);font-size:13px;line-height:1.55}
.inside-visual{display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;background:var(--lavender);overflow:hidden}.inside-visual img{max-height:200px;width:auto;filter:drop-shadow(10px 14px 10px rgba(24,49,80,.2))}.inside-visual strong{margin-top:15px;font-size:11px}
@media(max-width:900px){.single-product-row{grid-template-columns:repeat(2,minmax(0,1fr))}.inside-grid{grid-template-columns:1fr 1fr}}
@media(max-width:620px){.catalog-tabs{display:flex;overflow-x:auto;padding-bottom:5px}.catalog-tab{min-width:165px}.catalog-slider{min-height:560px;padding:18px 57px 52px}.single-product-row{grid-template-columns:1fr}.inside-grid{grid-template-columns:1fr}}

/* Final catalog and UX pass */
.site-shell {
  overflow: clip;
}

.header {
  position: sticky;
  top: 0;
  z-index: 80;
  box-shadow: 0 8px 24px rgba(24, 49, 80, 0.04);
}

#catalog {
  scroll-margin-top: 92px;
}

:where(a, button, input, summary):focus-visible {
  outline: 3px solid rgba(88, 115, 232, 0.35);
  outline-offset: 3px;
}

.catalog-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 38px 0 16px;
}

.catalog-tab {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px 8px 18px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  text-align: left;
  transition:
    transform 0.2s ease,
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.catalog-tab strong {
  display: block;
  margin: 0;
  font-size: 13px;
  white-space: nowrap;
}

.catalog-tab span {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  color: var(--ink-soft);
  background: var(--grey);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 900;
}

.catalog-tab:hover {
  border-color: #afbae5;
  transform: translateY(-2px);
}

.catalog-tab-active {
  color: white;
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: none;
}

.catalog-tab-active span {
  color: white;
  background: rgba(255, 255, 255, 0.16);
}

.catalog-slider {
  position: relative;
  min-height: 0;
  padding: 22px 18px 18px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.42)),
    var(--grey);
}

.catalog-context {
  min-height: 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 54px 18px;
}

.catalog-context p {
  margin: 0;
  color: #53657b;
  font-size: 13px;
  line-height: 1.45;
}

.catalog-context > span {
  flex: 0 0 auto;
  color: var(--blue-dark);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.catalog-window {
  position: relative;
  padding: 0 54px;
}

.single-product-row {
  display: block;
  overflow: hidden;
  border-radius: 24px;
}

.single-product-track {
  display: flex;
  gap: 22px;
  will-change: transform;
  transition: transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.single-product-track.track-without-animation {
  transition: none;
}

.single-product-track .product-card {
  flex: 0 0 calc((100% - 44px) / 3);
}

.inline-slider-button {
  position: absolute;
  z-index: 5;
  top: 46%;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--ink);
  background: white;
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: 0 10px 22px rgba(24, 49, 80, 0.14);
  cursor: pointer;
  font-size: 19px;
  transition:
    transform 0.2s ease,
    color 0.2s ease,
    background 0.2s ease,
    opacity 0.2s ease;
}

.inline-slider-button:hover:not(:disabled) {
  color: white;
  background: var(--blue);
  transform: scale(1.06);
}

.inline-slider-button:disabled {
  opacity: 0.32;
  cursor: default;
  box-shadow: none;
}

.slider-prev {
  left: 0;
}

.slider-next {
  right: 0;
}

.catalog-progress {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 14px;
}

.catalog-dots {
  display: flex;
  gap: 6px;
}

.catalog-dots i {
  width: 6px;
  height: 6px;
  display: block;
  background: #bdc6d4;
  border-radius: 999px;
  transition:
    width 0.2s ease,
    background 0.2s ease;
}

.catalog-dots i.dot-active {
  width: 19px;
  background: var(--blue);
}

.catalog-page {
  position: static;
  display: flex;
  align-items: baseline;
  gap: 4px;
  color: #8a96a6;
  font-size: 10px;
  transform: none;
}

.catalog-page strong {
  color: var(--blue-dark);
  font-size: 15px;
}

.catalog-swipe-hint {
  display: none;
}

.product-cover-link {
  display: contents;
}

.product-info h3 a:hover {
  color: var(--blue-dark);
}

.product-details-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 3px 0 17px;
  color: var(--blue-dark);
  font-size: 11px;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: rgba(88, 115, 232, 0.35);
  text-underline-offset: 4px;
}

.product-details-link span {
  font-size: 15px;
  text-decoration: none;
}

.inside-visual {
  color: var(--ink);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.inside-visual:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.inside-visual span {
  margin-top: 8px;
  color: var(--blue-dark);
  font-size: 11px;
  font-weight: 900;
}

.route-picker {
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.26fr) minmax(320px, 0.74fr);
  max-width: 1276px;
  margin: 24px auto 110px;
  padding: 0;
  background: white;
  border: 1px solid var(--line);
  border-radius: 32px;
}

.route-copy {
  padding: 62px;
}

.route-copy h2 {
  max-width: 690px;
  margin: 12px 0 15px;
  font-size: clamp(38px, 4.3vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.route-copy > p:not(.section-kicker) {
  max-width: 650px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
}

.route-options {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.route-options button {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 14px;
  min-height: 72px;
  padding: 12px 16px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 17px;
  cursor: pointer;
  text-align: left;
  transition:
    transform 0.2s ease,
    color 0.2s ease,
    background 0.2s ease;
}

.route-options button > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--blue-dark);
  background: var(--lavender);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 900;
}

.route-options strong {
  font-size: 14px;
  line-height: 1.35;
}

.route-options small {
  max-width: 145px;
  color: var(--ink-soft);
  font-size: 10px;
  line-height: 1.4;
}

.route-options button:hover {
  color: white;
  background: var(--ink);
  transform: translateX(5px);
}

.route-options button:hover > span {
  color: var(--ink);
  background: white;
}

.route-options button:hover small {
  color: #cbd4df;
}

.route-mascot {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 520px;
  padding: 42px;
  background:
    radial-gradient(circle at 70% 25%, rgba(255, 255, 255, 0.68), transparent 28%),
    var(--lavender);
}

.route-mascot::before {
  content: "";
  position: absolute;
  width: 390px;
  height: 390px;
  left: 50%;
  top: 44%;
  border: 1px solid rgba(88, 115, 232, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow:
    0 0 0 52px rgba(255, 255, 255, 0.22),
    0 0 0 104px rgba(255, 255, 255, 0.14);
}

.route-mascot > span {
  position: absolute;
  z-index: 3;
  top: 32px;
  right: 30px;
  padding: 12px 15px;
  color: white;
  background: var(--blue);
  border-radius: 15px 15px 4px 15px;
  font-size: 13px;
  font-weight: 900;
  transform: rotate(3deg);
}

.route-mascot img {
  position: absolute;
  z-index: 2;
  width: 78%;
  max-width: 330px;
  left: 50%;
  bottom: 72px;
  transform: translateX(-50%);
  filter: drop-shadow(0 20px 20px rgba(24, 49, 80, 0.18));
}

.route-mascot p {
  position: relative;
  z-index: 4;
  margin: 0;
  padding: 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  border-radius: 14px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
  text-align: center;
}

@media (max-width: 960px) {
  .single-product-track .product-card {
    flex-basis: calc((100% - 22px) / 2);
  }

  .route-picker {
    grid-template-columns: minmax(0, 1fr);
    margin-left: 28px;
    margin-right: 28px;
  }

  .route-mascot {
    min-height: 410px;
  }

  .route-mascot img {
    max-width: 290px;
  }
}

@media (max-width: 620px) {
  .header {
    position: relative;
  }

  .catalog-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    margin-top: 26px;
    padding-bottom: 6px;
    scrollbar-width: none;
  }

  .catalog-tabs::-webkit-scrollbar {
    display: none;
  }

  .catalog-tab {
    min-width: auto;
    flex: 0 0 auto;
  }

  .catalog-slider {
    min-height: 0;
    padding: 18px 8px 14px;
  }

  .catalog-context {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    margin: 0 44px 14px;
  }

  .catalog-window {
    padding: 0 44px;
  }

  .single-product-track .product-card {
    flex-basis: 100%;
  }

  .inline-slider-button {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  .catalog-swipe-hint {
    display: block;
    margin: 2px 0 0;
    color: var(--ink-soft);
    font-size: 9px;
    text-align: center;
  }

  .route-picker {
    margin: 10px 16px 75px;
    border-radius: 25px;
  }

  .route-copy {
    padding: 38px 22px;
  }

  .route-copy h2 {
    font-size: 40px;
  }

  .route-options button {
    grid-template-columns: 38px 1fr;
  }

  .route-options small {
    display: none;
  }

  .route-mascot {
    min-height: 380px;
    padding: 24px;
  }

  .route-mascot img {
    bottom: 60px;
  }
}
