:root {
  --ink: #101426;
  --muted: #62687a;
  --line: #dfe2e8;
  --paper: #f7f7f2;
  --white: #fff;
  --blue: #1230ff;
  --blue-dark: #0a20b8;
  --orange: #ff641e;
  --lime: #a8e10c;
  --violet: #7451e8;
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 38px;
  --shadow: 0 24px 70px rgba(28, 35, 73, 0.12);
  --shell: min(1400px, calc(100vw - 48px));
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.is-locked {
  overflow: hidden;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

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

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.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;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-150%);
}

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

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.announcement {
  position: relative;
  z-index: 101;
  background: var(--ink);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.announcement__inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.announcement p {
  margin: 0;
}

.announcement__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(168, 225, 12, 0.14);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(247, 247, 242, 0.86);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 10px 35px rgba(26, 31, 55, 0.07);
}

.site-header__inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}

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

.brand__mark {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.brand__wordmark {
  display: flex;
  align-items: baseline;
  line-height: 1;
  letter-spacing: -0.055em;
}

.brand__wordmark strong,
.brand__wordmark b {
  font-size: 25px;
  font-weight: 900;
}

.brand__wordmark strong {
  color: #1e4bd8;
}

.brand__wordmark b {
  color: #222;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a,
.mobile-nav a {
  position: relative;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.site-header__actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
}

.language-switch a {
  min-width: 34px;
  border-radius: 999px;
  padding: 7px 9px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.language-switch a.is-active {
  background: var(--ink);
  color: var(--white);
}

.list-button,
.member-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 7px 6px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.member-button {
  padding: 10px 14px;
}

.list-button svg {
  width: 18px;
}

.list-button__count {
  min-width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
}

.menu-button {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
}

.menu-button span:not(.sr-only) {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-button span:nth-child(2) {
  transform: translateY(-4px);
}

.menu-button span:nth-child(3) {
  transform: translateY(4px);
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
  transform: rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg);
}

.mobile-nav {
  display: none;
}

.hero {
  overflow: hidden;
  padding: 34px 0 56px;
}

.hero__inner {
  min-height: min(730px, calc(100vh - 150px));
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(580px, 1.22fr);
  align-items: stretch;
  gap: 26px;
}

.hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 44px 52px 0;
}

.eyebrow,
.kicker {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border: 1px solid rgba(18, 48, 255, 0.24);
  border-radius: 999px;
  background: rgba(18, 48, 255, 0.05);
}

.hero h1 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(55px, 5.2vw, 88px);
  font-weight: 900;
  letter-spacing: -0.072em;
  line-height: 0.96;
}

.hero h1 span {
  position: relative;
  color: var(--blue);
  white-space: nowrap;
}

.hero h1 span::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 8px;
  background: url("data:image/svg+xml,%3Csvg width='200' height='8' viewBox='0 0 200 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 5C55 1 144 1 198 4' fill='none' stroke='%23ff641e' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
}

.hero__copy > p {
  max-width: 600px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 850;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button svg {
  width: 18px;
}

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

.button--primary:hover {
  background: var(--blue-dark);
  box-shadow: 0 16px 32px rgba(18, 48, 255, 0.28);
}

.button--ghost {
  border-color: var(--line);
  background: var(--white);
}

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

.button--full {
  width: 100%;
}

.hero__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 54px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.hero__meta div {
  display: flex;
  flex-direction: column;
}

.hero__meta strong {
  font-size: 13px;
}

.hero__meta span {
  color: var(--muted);
  font-size: 11px;
}

.hero__visual {
  position: relative;
  min-height: 630px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #dfeffc;
}

.hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(20, 25, 55, 0.08);
  border-radius: inherit;
  pointer-events: none;
}

.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
}

.hero__visual figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero__sticker {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  transform: rotate(8deg);
}

.hero__sticker svg {
  width: 88px;
}

.hero__sticker text {
  fill: currentColor;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 1.5px;
}

.ticker {
  overflow: hidden;
  border-block: 1px solid var(--ink);
  background: var(--lime);
}

.ticker__track {
  width: max-content;
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 30px;
  padding-inline: 15px;
  animation: ticker 30s linear infinite;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.ticker__track i {
  font-style: normal;
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.section {
  padding: 120px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.55fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 54px;
}

.section-heading h2,
.custom h2,
.story h2,
.safety h2,
.faq h2,
.launch h2 {
  max-width: 830px;
  margin: 0;
  font-size: clamp(40px, 4.1vw, 68px);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1;
}

.section-heading > p,
.safety__intro > p,
.faq__heading > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.category-card {
  position: relative;
  min-height: 330px;
  grid-column: span 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(16, 20, 38, 0.13);
  border-radius: var(--radius);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.category-card:hover {
  transform: translateY(-7px) rotate(-0.4deg);
  box-shadow: var(--shadow);
}

.category-card::before {
  content: "";
  position: absolute;
  right: -55px;
  bottom: -70px;
  width: 200px;
  height: 200px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.18;
}

.category-card--blue {
  background: #dfe5ff;
  color: #10299f;
}

.category-card--orange {
  background: #ffe0cf;
  color: #a53300;
}

.category-card--lime {
  background: #e9f8b5;
  color: #3d5b00;
}

.category-card--violet {
  background: #e8e0ff;
  color: #4a2aa9;
}

.category-card__number {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.category-card svg {
  width: 62px;
  margin-bottom: 24px;
}

.category-card h3 {
  margin: 0 0 7px;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.category-card p {
  max-width: 240px;
  margin: 0;
  font-size: 14px;
  opacity: 0.76;
}

.category-card__arrow {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 20px;
  transition: transform 180ms ease;
}

.category-card:hover .category-card__arrow {
  transform: rotate(45deg);
}

.catalog {
  border-block: 1px solid var(--line);
  background: var(--white);
}

.section-heading--catalog {
  margin-bottom: 30px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}

.filter {
  min-height: 42px;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

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

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

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

.product-card[hidden] {
  display: none;
}

.product-card__visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  display: block;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background: #edf0f5;
  cursor: zoom-in;
}

.product-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms cubic-bezier(.2,.7,.2,1);
}

.product-card:hover .product-card__visual img {
  transform: scale(1.035);
}

.product-card__badge,
.product-card__zoom {
  position: absolute;
  z-index: 2;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(10px);
  color: var(--ink);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card__badge {
  top: 14px;
  left: 14px;
}

.product-card__zoom {
  right: 14px;
  bottom: 14px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.product-card__visual:hover .product-card__zoom {
  opacity: 1;
  transform: translateY(0);
}

.product-card__body {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 17px 2px 14px;
}

.product-card__body p {
  margin: 0 0 3px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card__body h3 {
  margin: 0;
  font-size: 20px;
  letter-spacing: -0.035em;
}

.product-card__status {
  flex: 0 0 auto;
  padding-top: 19px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
}

.product-card__add {
  width: 100%;
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  transition: border-color 160ms ease, background 160ms ease;
}

.product-card__add:hover,
.product-card__add.is-added {
  border-color: var(--blue);
  background: rgba(18, 48, 255, 0.05);
  color: var(--blue);
}

.custom {
  padding-bottom: 40px;
}

.custom__panel {
  position: relative;
  min-height: 560px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 70px;
  padding: 80px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--blue);
  color: var(--white);
}

.custom__panel::before,
.custom__panel::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 50%;
  pointer-events: none;
}

.custom__panel::before {
  top: -230px;
  right: -120px;
  width: 700px;
  height: 700px;
}

.custom__panel::after {
  right: 100px;
  bottom: -470px;
  width: 760px;
  height: 760px;
}

.custom__copy,
.custom__diagram {
  position: relative;
  z-index: 1;
}

.kicker--light {
  color: var(--lime);
}

.custom h2 {
  max-width: 650px;
  font-size: clamp(38px, 3.8vw, 64px);
}

.custom__copy > p:not(.kicker) {
  max-width: 590px;
  margin: 26px 0 32px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 1.7;
}

.custom__diagram {
  display: grid;
  grid-template-columns: 1fr 50px 1fr 50px 1fr;
  align-items: center;
}

.custom__diagram > svg {
  width: 48px;
  opacity: 0.5;
}

.diagram-step {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.diagram-step span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: auto;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
}

.diagram-step strong {
  font-size: 17px;
}

.diagram-step small {
  color: rgba(255, 255, 255, 0.62);
}

.story__grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: 110px;
}

.story__visual {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(rgba(18, 48, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 48, 255, 0.08) 1px, transparent 1px),
    #eaf0ff;
  background-size: 34px 34px;
}

.printer {
  position: relative;
  width: min(68%, 380px);
  padding: 16px;
  border-radius: 28px;
  background: var(--ink);
  box-shadow: 0 30px 70px rgba(16, 20, 38, 0.28);
  transform: rotate(-3deg);
}

.printer__top {
  height: 38px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding-inline: 8px;
}

.printer__top span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #30364f;
}

.printer__top span:first-child {
  background: var(--orange);
}

.printer__window {
  position: relative;
  height: 330px;
  overflow: hidden;
  border: 8px solid #292f47;
  border-radius: 18px;
  background: linear-gradient(145deg, #c8d6ff, #eef2ff);
}

.printer__rail {
  position: absolute;
  top: 58px;
  right: 20px;
  left: 20px;
  height: 8px;
  border-radius: 8px;
  background: var(--ink);
}

.printer__head {
  position: absolute;
  top: 42px;
  left: 47%;
  width: 58px;
  height: 70px;
  border-radius: 8px 8px 15px 15px;
  background: var(--orange);
  transform: translateX(-50%);
}

.printer__head::after {
  content: "";
  position: absolute;
  bottom: -25px;
  left: 50%;
  width: 4px;
  height: 28px;
  background: var(--orange);
  transform: translateX(-50%);
}

.printer__model {
  position: absolute;
  right: 40px;
  bottom: 26px;
  left: 40px;
  height: 130px;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: flex-start;
}

.printer__model span {
  height: 22px;
  margin-top: -2px;
  border-radius: 999px;
  background: var(--blue);
}

.printer__model span:nth-child(1) { width: 170px; }
.printer__model span:nth-child(2) { width: 150px; }
.printer__model span:nth-child(3) { width: 118px; }
.printer__model span:nth-child(4) { width: 86px; }
.printer__model span:nth-child(5) { width: 50px; }

.printer__base {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  color: #8890aa;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
}

.printer__base i {
  width: 34px;
  height: 34px;
  border: 7px solid #30364f;
  border-radius: 50%;
  background: var(--lime);
}

.story__label {
  position: absolute;
  padding: 7px 12px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--white);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.story__label--one {
  top: 14%;
  left: 10%;
  transform: rotate(-9deg);
}

.story__label--two {
  top: 29%;
  right: 7%;
  background: var(--lime);
  transform: rotate(8deg);
}

.story__label--three {
  bottom: 11%;
  left: 8%;
  background: var(--orange);
  color: var(--white);
  transform: rotate(5deg);
}

.story__copy > p:not(.kicker) {
  max-width: 700px;
  margin: 28px 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.story blockquote {
  max-width: 680px;
  margin: 34px 0;
  padding: 24px 28px;
  border-left: 5px solid var(--orange);
  background: var(--white);
  font-size: 22px;
  font-weight: 750;
  letter-spacing: -0.025em;
}

.story__values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 38px;
}

.story__values div {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.story__values span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
}

.story__values p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.story__values strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
}

.safety {
  border-block: 1px solid var(--line);
  background: #eef1f6;
}

.safety__intro {
  display: grid;
  grid-template-columns: 1.1fr 0.55fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 48px;
}

.safety__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.safety__cards article {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.safety__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 50px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
}

.safety__cards article:nth-child(2) .safety__icon {
  background: var(--orange);
}

.safety__cards article:nth-child(3) .safety__icon {
  background: var(--blue);
}

.safety__cards h3 {
  margin: 0 0 8px;
  font-size: 22px;
  letter-spacing: -0.04em;
}

.safety__cards p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.safety__note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.faq__grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 110px;
}

.faq__heading {
  position: sticky;
  top: 130px;
  align-self: start;
}

.faq__heading h2 {
  margin-bottom: 24px;
}

.accordion {
  border-top: 1px solid var(--ink);
}

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

.accordion summary {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  list-style: none;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.025em;
}

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

.accordion summary span {
  position: relative;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
}

.accordion summary span::before,
.accordion summary span::after {
  content: "";
  position: absolute;
  top: 13px;
  left: 5px;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.accordion summary span::after {
  transform: rotate(90deg);
  transition: transform 180ms ease;
}

.accordion details[open] summary span::after {
  transform: rotate(0deg);
}

.accordion details p {
  max-width: 780px;
  margin: -8px 50px 30px 0;
  color: var(--muted);
  line-height: 1.75;
}

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

.launch__inner {
  min-height: 320px;
  display: grid;
  grid-template-columns: 1.1fr 0.55fr auto;
  align-items: center;
  gap: 60px;
}

.launch h2 {
  max-width: 620px;
  font-size: clamp(38px, 4vw, 66px);
}

.launch__inner > p {
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.7;
}

.newsletter-form {
  width: min(560px, 100%);
  display: grid;
  grid-template-columns: 1fr 1.2fr auto;
  gap: 10px;
  align-items: end;
}

.newsletter-form label {
  display: grid;
  gap: 6px;
}

.newsletter-form label > span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 900;
}

.newsletter-form input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  padding: 12px 13px;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.newsletter-form .request-form__status {
  grid-column: 1 / -1;
  color: var(--lime);
  text-align: left;
}

.footer {
  padding-top: 74px;
  background: #080b18;
  color: var(--white);
}

.brand--footer {
  padding: 7px 15px 7px 8px;
  border-radius: 16px;
  background: var(--white);
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 90px;
  padding-bottom: 70px;
}

.footer__top > div:first-child > p {
  max-width: 440px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.52);
}

.footer__nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.footer__nav > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer__nav strong {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer__nav a {
  font-weight: 700;
}

.footer__nav a:hover {
  color: var(--lime);
}

.footer__nav span {
  color: rgba(255, 255, 255, 0.38);
  font-size: 12px;
}

.footer__bottom {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
}

.footer__bottom a {
  color: var(--white);
  font-weight: 800;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 400;
  width: min(460px, 100vw);
  height: 100dvh;
  display: flex;
  flex-direction: column;
  background: var(--white);
  box-shadow: -24px 0 70px rgba(16, 20, 38, 0.2);
  transform: translateX(105%);
  visibility: hidden;
  transition: transform 260ms cubic-bezier(.2,.7,.2,1), visibility 260ms;
}

.drawer.is-open {
  transform: translateX(0);
  visibility: visible;
}

.drawer__header {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid var(--line);
}

.drawer__header .kicker {
  margin-bottom: 3px;
}

.drawer__header h2 {
  margin: 0;
  font-size: 32px;
  letter-spacing: -0.05em;
}

.icon-button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.drawer__content {
  flex: 1;
  overflow: auto;
  padding: 24px;
}

.empty-state {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.empty-state svg {
  width: 84px;
  margin-bottom: 24px;
}

.empty-state h3 {
  margin: 0 0 6px;
  font-size: 22px;
}

.empty-state p {
  max-width: 300px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 14px;
}

.list-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.list-item {
  display: grid;
  grid-template-columns: 84px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.list-item img {
  width: 84px;
  height: 84px;
  object-fit: cover;
  border-radius: 11px;
}

.list-item h3 {
  margin: 0 0 3px;
  font-size: 14px;
}

.list-item p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.list-item button {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: #f0f1f4;
  cursor: pointer;
}

.drawer__footer {
  padding: 20px 24px 24px;
  border-top: 1px solid var(--line);
}

.drawer__footer > p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.request-form {
  display: grid;
  gap: 10px;
}

.request-form label {
  display: grid;
  gap: 5px;
}

.request-form label > span {
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
}

.request-form input,
.request-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  color: var(--ink);
  padding: 11px 12px;
  font-size: 14px;
}

.request-form textarea {
  resize: vertical;
}

.request-form__check {
  grid-template-columns: 18px 1fr;
  align-items: start;
  color: var(--muted);
  font-size: 12px;
}

.request-form__check input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
}

.request-form__trap {
  position: absolute;
  left: -9999px;
}

.request-form__status {
  min-height: 18px;
  margin: 0;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.text-button {
  width: 100%;
  margin-top: 10px;
  padding: 8px;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  text-decoration: underline;
}

.scrim {
  position: fixed;
  inset: 0;
  z-index: 350;
  background: rgba(8, 11, 24, 0.55);
  backdrop-filter: blur(3px);
}

.modal {
  width: min(900px, calc(100vw - 32px));
  max-height: calc(100dvh - 32px);
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 28px;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.modal::backdrop {
  background: rgba(8, 11, 24, 0.62);
  backdrop-filter: blur(5px);
}

.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
}

.modal__product {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.modal__product > img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  border-radius: 28px 0 0 28px;
}

.modal__copy {
  align-self: center;
  padding: 54px;
}

.modal__copy h2,
.modal__info h2 {
  margin: 0 0 18px;
  font-size: 40px;
  line-height: 1;
  letter-spacing: -0.055em;
}

.modal__copy > p:not(.kicker),
.modal__info p {
  color: var(--muted);
}

.modal__copy ul {
  margin: 22px 0 28px;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13px;
}

.modal__copy li + li {
  margin-top: 8px;
}

.modal--info {
  width: min(560px, calc(100vw - 32px));
}

.modal--member {
  width: min(980px, calc(100vw - 32px));
}

.modal__info {
  padding: 60px;
  text-align: center;
}

.member-panel {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 28px;
  padding: 34px;
}

.member-panel__intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 24px;
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.22), transparent 38%),
    linear-gradient(145deg, var(--blue), #08146d);
  color: var(--white);
  padding: 34px;
}

.member-panel__intro h2 {
  margin: 10px 0 14px;
  font-size: clamp(34px, 6vw, 58px);
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.member-panel__intro p:not(.kicker) {
  color: rgba(255, 255, 255, 0.72);
}

.member-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.member-badges span {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  padding: 7px 10px;
  font-size: 11px;
  font-weight: 900;
}

.member-panel__forms {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.member-form,
.member-account {
  display: grid;
  align-content: start;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--paper);
  padding: 18px;
}

.member-form h3,
.member-account h3 {
  margin: 0;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.member-form label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.member-form input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  color: var(--ink);
  padding: 12px;
}

.member-account {
  align-self: center;
}

.member-account p {
  margin: 0;
  color: var(--muted);
}

.member-account__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.modal__spark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--lime);
  font-size: 22px;
}

.modal__info .kicker {
  margin-bottom: 10px;
}

.modal__info [data-info-body] {
  margin-bottom: 28px;
}

.modal__info [data-info-body] p {
  margin: 0;
}

.modal__info [data-info-body] p + p {
  margin-top: 10px;
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 500;
  max-width: calc(100vw - 44px);
  padding: 13px 17px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
  font-size: 13px;
  font-weight: 750;
}

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

.cookie-banner {
  position: fixed;
  right: clamp(14px, 3vw, 34px);
  bottom: clamp(14px, 3vw, 34px);
  z-index: 490;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  width: min(760px, calc(100vw - 28px));
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 80px rgba(21, 25, 43, 0.18);
  backdrop-filter: blur(18px);
}

.cookie-banner strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 18px;
  letter-spacing: -0.03em;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.cookie-banner small {
  display: block;
  margin-top: 8px;
  color: rgba(61, 69, 89, 0.78);
  font-size: 12px;
  line-height: 1.45;
}

.cookie-banner__actions {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
}

@media (max-width: 1180px) {
  .hero__inner {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .hero__copy {
    padding-right: 10px;
  }

  .hero h1 {
    font-size: clamp(52px, 6vw, 72px);
  }

  .hero__visual {
    min-height: 580px;
  }

  .category-card {
    grid-column: span 6;
  }

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

  .custom__diagram {
    max-width: 850px;
  }
}

@media (max-width: 900px) {
  :root {
    --shell: min(100% - 32px, 760px);
  }

  .announcement__inner {
    justify-content: flex-start;
    overflow: hidden;
    white-space: nowrap;
  }

  .announcement__inner p:last-child,
  .announcement__inner span:nth-of-type(2) {
    display: none;
  }

  .site-header__inner {
    min-height: 70px;
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .menu-button {
    position: relative;
    display: grid;
  }

  .mobile-nav {
    position: absolute;
    top: 70px;
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 12px 16px 20px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 24px 40px rgba(16, 20, 38, 0.12);
    opacity: 0;
    transform: translateY(-15px);
    visibility: hidden;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
  }

  .mobile-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }

  .mobile-nav a {
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
    font-weight: 800;
  }

  .hero {
    padding-top: 20px;
  }

  .hero__inner {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero__copy {
    padding: 46px 0 0;
  }

  .hero h1 {
    max-width: 720px;
    font-size: clamp(52px, 11vw, 78px);
  }

  .hero__visual {
    min-height: 520px;
  }

  .section {
    padding: 90px 0;
  }

  .section-heading,
  .safety__intro {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-heading > p,
  .safety__intro > p {
    max-width: 630px;
  }

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

  .custom__panel {
    padding: 56px 40px;
  }

  .custom__diagram {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .custom__diagram > svg {
    width: 40px;
    margin: 0 auto;
    transform: rotate(90deg);
  }

  .diagram-step {
    min-height: 170px;
  }

  .story__grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .story__visual {
    min-height: 560px;
  }

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

  .safety__cards article {
    min-height: 0;
  }

  .safety__icon {
    margin-bottom: 32px;
  }

  .faq__grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .faq__heading {
    position: static;
  }

  .launch__inner {
    min-height: 440px;
    grid-template-columns: 1fr;
    align-content: center;
    gap: 24px;
  }

  .launch__inner .button {
    justify-self: start;
  }

  .newsletter-form {
    grid-template-columns: 1fr;
  }

  .member-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  :root {
    --shell: calc(100vw - 24px);
  }

  .announcement {
    font-size: 10px;
  }

  .brand__mark {
    width: 46px;
    height: 46px;
  }

  .brand__wordmark strong,
  .brand__wordmark b {
    font-size: 21px;
  }

  .list-button {
    width: 44px;
    padding: 6px;
    justify-content: center;
  }

  .list-button svg,
  .list-button__label,
  .member-button span {
    display: none;
  }

  .member-button {
    width: 44px;
    padding: 0;
    justify-content: center;
  }

  .member-button::before {
    content: "👤";
  }

  .hero__copy {
    padding-top: 28px;
  }

  .eyebrow {
    font-size: 10px;
  }

  .hero h1 {
    font-size: clamp(42px, 11.9vw, 52px);
  }

  .hero h1 span {
    display: inline-block;
    margin-bottom: 4px;
    padding-bottom: 6px;
    white-space: normal;
  }

  .hero h1 span::after {
    bottom: 1px;
    height: 5px;
  }

  .hero__copy > p {
    margin-top: 26px;
    font-size: 16px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__meta {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 38px;
  }

  .hero__meta div {
    padding-left: 12px;
    border-left: 3px solid var(--line);
  }

  .hero__visual {
    min-height: 420px;
    border-radius: 26px;
  }

  .hero__visual img {
    object-position: 58% center;
  }

  .hero__visual figcaption {
    right: 10px;
    bottom: 10px;
    left: 10px;
    text-align: center;
  }

  .hero__sticker {
    top: 14px;
    right: 14px;
    width: 76px;
    height: 76px;
  }

  .hero__sticker svg {
    width: 70px;
  }

  .section {
    padding: 74px 0;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .section-heading h2,
  .custom h2,
  .story h2,
  .safety h2,
  .faq h2,
  .launch h2 {
    font-size: clamp(36px, 11vw, 50px);
  }

  .category-card {
    min-height: 280px;
    grid-column: span 12;
  }

  .filters {
    width: 100vw;
    margin-left: -12px;
    padding-inline: 12px;
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
  }

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

  .filter {
    flex: 0 0 auto;
  }

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

  .product-card__zoom {
    opacity: 1;
    transform: none;
  }

  .custom {
    padding-bottom: 12px;
  }

  .custom__panel {
    gap: 48px;
    padding: 48px 22px 28px;
    border-radius: 26px;
  }

  .custom__copy > p:not(.kicker) {
    font-size: 15px;
  }

  .diagram-step {
    min-height: 150px;
  }

  .story__visual {
    min-height: 470px;
    border-radius: 26px;
  }

  .printer {
    width: 72%;
  }

  .printer__window {
    height: 270px;
  }

  .story__copy > p:not(.kicker) {
    font-size: 16px;
  }

  .story blockquote {
    margin-inline: 0;
    font-size: 18px;
  }

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

  .safety__cards article {
    padding: 22px;
  }

  .accordion summary {
    min-height: 78px;
    font-size: 16px;
  }

  .footer {
    padding-top: 54px;
  }

  .footer__top,
  .footer__nav {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .footer__bottom {
    min-height: 130px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 6px;
  }

  .modal {
    overflow: auto;
  }

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

  .modal__product > img {
    min-height: 0;
    aspect-ratio: 1;
    border-radius: 28px 28px 0 0;
  }

  .modal__copy,
  .modal__info {
    padding: 34px 24px;
  }

  .modal__copy h2,
  .modal__info h2 {
    font-size: 34px;
  }

  .member-panel {
    padding: 18px;
  }

  .member-panel__intro {
    padding: 24px;
  }

  .member-panel__forms {
    grid-template-columns: 1fr;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .cookie-banner__actions {
    justify-content: stretch;
  }

  .cookie-banner__actions .button {
    flex: 1;
  }
}

@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;
  }
}
