@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 400 700;
  font-stretch: 100%;
  font-display: swap;
  src: url("../fonts/archivo-latin-ext.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 400 700;
  font-stretch: 100%;
  font-display: swap;
  src: url("../fonts/archivo-latin.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/manrope-latin-ext.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/manrope-latin.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ─── tokens ─────────────────────────────────────────────────────────── */
:root {
  --ink:        #111214;   /* headings, primary button */
  --ink-2:      #4b5058;   /* body copy */
  --ink-3:      #6b6f76;   /* secondary copy, eyebrows */
  --ink-4:      #9aa0a8;   /* disabled / meta */
  --line:       #e6e8eb;
  --line-2:     #d6d9de;
  --surface:    #ffffff;
  --surface-2:  #f7fbfd;   /* tinted section band */
  --surface-3:  #fafbfc;   /* form panel */
  --chip:       #f4f5f7;

  /* The three press inks of the logo. Cyan leads, magenta is the action
     colour, yellow stays an accent — never a text colour on white. */
  --cyan:       #29abe2;
  --magenta:    #e5197f;
  --yellow:     #fcee21;
  --link:       #0f7fb0;   /* cyan darkened to clear 4.5:1 on white */

  --display:    Archivo, ui-sans-serif, system-ui, sans-serif;
  --text:       Manrope, ui-sans-serif, system-ui, sans-serif;

  --gutter:     clamp(18px, 4vw, 32px);
  --band:       clamp(48px, 7vw, 80px);
  --radius:     8px;
  --shell:      1200px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 { font-family: var(--display); letter-spacing: -0.02em; margin: 0; text-wrap: balance; }
p { margin: 0; text-wrap: pretty; }
img, svg { display: block; max-width: 100%; }

a { color: var(--link); text-decoration: none; }
a:hover { color: var(--magenta); }

::selection { background: var(--yellow); color: var(--ink); }

/* Every interactive element gets the same visible focus ring — the original
   set `outline:none` on the inputs and shipped nothing in its place. */
:focus-visible { outline: 2px solid var(--cyan); outline-offset: 2px; }

.shell { max-width: var(--shell); margin: 0 auto; padding-inline: var(--gutter); }
.band  { padding-block: var(--band); }
.rule  { border-top: 1px solid var(--line); }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}

.skip-link {
  position: absolute; left: var(--gutter); top: -100px; z-index: 100;
  background: var(--ink); color: #fff; padding: 12px 18px; border-radius: 4px;
  font-family: var(--display); font-weight: 600;
}
.skip-link:focus { top: 12px; color: #fff; }

/* ─── shared type ────────────────────────────────────────────────────── */
.eyebrow {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--display); font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3);
  margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 18px; height: 2px; background: var(--cyan); }
.eyebrow--magenta::before { background: var(--magenta); }
.eyebrow--yellow::before  { background: var(--yellow); }

.section-title { font-size: clamp(26px, 4.4vw, 38px); font-weight: 700; }
.section-head  { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; flex-wrap: wrap; margin-bottom: 36px; }

/* ─── header ─────────────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.inkbar { display: flex; height: 3px; }
.inkbar span { flex: 1; }
.inkbar span:nth-child(1) { background: var(--cyan); }
.inkbar span:nth-child(2) { background: var(--magenta); }
.inkbar span:nth-child(3) { background: var(--yellow); }

.site-header .shell {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  padding-block: 14px;
}
.site-header .logo { height: 46px; width: auto; }

.site-nav {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: clamp(12px, 2vw, 26px); margin-left: auto;
  font-family: var(--display); font-size: clamp(13px, 1.4vw, 14px);
  font-weight: 500; letter-spacing: 0.01em;
}
.site-nav a { color: var(--ink-2); padding: 6px 0; border-bottom: 2px solid transparent; }
.site-nav a:hover { color: var(--ink); border-bottom-color: var(--cyan); }
.site-nav .cta {
  background: var(--ink); color: #fff; padding: 10px 18px;
  border-radius: 4px; font-weight: 600; border-bottom: none;
}
.site-nav .cta:hover { background: var(--magenta); color: #fff; }

/* ─── hero ───────────────────────────────────────────────────────────── */
.hero {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(32px, 5vw, 64px); align-items: center;
  padding-block: clamp(52px, 7vw, 96px) clamp(44px, 6vw, 80px);
}
.hero h1 { font-size: clamp(34px, 6.4vw, 58px); line-height: 1.05; letter-spacing: -0.025em; font-weight: 700; margin-bottom: 24px; }
.hero p  { font-size: clamp(16px, 2.1vw, 19px); color: var(--ink-2); max-width: 460px; }
.hero .eyebrow { margin-bottom: 26px; }
.hero .eyebrow::before { width: 26px; background: var(--magenta); }

.hero-figure { position: relative; min-width: 0; margin: 0; }
.hero-figure::before {
  content: ""; position: absolute; inset: -18px -18px auto auto;
  width: 150px; height: 150px; background: var(--yellow); border-radius: 6px;
}
.hero-figure img {
  position: relative;
  width: 100%; height: clamp(260px, 52vw, 440px); object-fit: cover;
  border: 1px solid var(--line); border-radius: var(--radius); background: #f7f8f9;
}

/* The yellow block hangs outside the frame on wide screens; on a phone the frame
   already reaches the gutter, so pull it back in rather than let it bleed. */
@media (max-width: 640px) {
  .hero-figure::before { inset: -12px 0 auto auto; width: 104px; height: 104px; }
}

/* ─── catalog rail ───────────────────────────────────────────────────── */
.catalog { border-top: 1px solid var(--line); background: var(--surface-2); padding-block: var(--band); }

.rail-nav { display: flex; gap: 10px; }
.rail-nav button {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--line-2); background: var(--surface); color: var(--ink);
  cursor: pointer; font-size: 17px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}
.rail-nav button:hover:not(:disabled) { border-color: var(--ink); background: var(--ink); color: #fff; }
.rail-nav button:disabled { opacity: 0.35; cursor: default; }

.rail-wrap { position: relative; }
.rail-wrap::before, .rail-wrap::after {
  content: ""; position: absolute; top: 0; bottom: 16px; width: 130px;
  pointer-events: none; z-index: 2; opacity: 1; transition: opacity 220ms ease;
}
.rail-wrap::before { left: 0;  background: linear-gradient(to right, var(--surface-2) 30%, rgba(247, 251, 253, 0)); }
.rail-wrap::after  { right: 0; background: linear-gradient(to left,  var(--surface-2) 30%, rgba(247, 251, 253, 0)); }
.rail-wrap[data-at-start]::before { opacity: 0; }
.rail-wrap[data-at-end]::after    { opacity: 0; }

.rail {
  --rail-inset: max(var(--gutter), calc((100% - 1136px) / 2));
  display: grid; grid-auto-flow: column; grid-auto-columns: 235px; gap: 20px;
  overflow-x: auto; overflow-y: hidden; padding-bottom: 16px;
  padding-inline: var(--rail-inset);
  scroll-padding-inline: var(--rail-inset);
  scrollbar-width: none; scroll-snap-type: x proximity;
}
.rail::-webkit-scrollbar { display: none; }
.rail > * { scroll-snap-align: start; }

.cat {
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  background: var(--surface);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.cat:hover, .cat:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(17, 18, 20, 0.1);
  border-color: #cdd2d8;
}
.cat img {
  height: 150px; width: 100%; object-fit: contain;
  padding: 10px; border-bottom: 1px solid var(--line); background: var(--surface);
}
.cat-body { padding: 18px 18px 16px; }
.cat-body h3 { display: flex; align-items: center; gap: 10px; font-size: 16px; font-weight: 600; letter-spacing: -0.01em; }
.cat-body h3::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--dot, var(--cyan)); flex-shrink: 0; }
/* The blurb slides open on hover; it stays permanently visible for keyboard
   and touch users, who never generate a hover. */
.cat-body p {
  font-size: 13px; line-height: 1.5; color: var(--ink-3);
  margin-top: 10px; overflow: hidden;
  max-height: 70px; opacity: 1;
  transition: max-height 260ms ease, opacity 220ms ease;
}
@media (hover: hover) and (pointer: fine) {
  .cat-body p { max-height: 0; opacity: 0; margin-top: 0; }
  .cat:hover .cat-body p, .cat:focus-within .cat-body p { max-height: 70px; opacity: 1; margin-top: 10px; }
}

/* ─── bundles ────────────────────────────────────────────────────────── */
.bundles { display: grid; grid-template-columns: repeat(auto-fit, minmax(258px, 1fr)); gap: 20px; }
.bundle {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.bundle:hover { transform: translateY(-4px); box-shadow: 0 16px 38px rgba(17, 18, 20, 0.1); border-color: #cdd2d8; }
.bundle-art {
  height: 180px; border-bottom: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
}
.bundle-art > svg { transition: transform 260ms ease; }
.bundle:hover .bundle-art > svg { transform: scale(1.05); }
.bundle-body { padding: 24px; }
.bundle-body::before { content: ""; display: block; width: 28px; height: 3px; background: var(--accent, var(--cyan)); margin-bottom: 16px; }
.bundle-body h3 { font-size: 20px; font-weight: 600; margin-bottom: 8px; letter-spacing: -0.01em; }
.bundle-body p { font-size: 14px; line-height: 1.55; color: var(--ink-3); margin-bottom: 18px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 0; padding: 0; }
.chips li {
  font-size: 12px; color: var(--ink-2); background: var(--chip);
  border: 1px solid var(--line); border-radius: 20px; padding: 5px 11px;
}

/* ─── capabilities ───────────────────────────────────────────────────── */
.capabilities { background: var(--ink); color: #fff; }
.capabilities h2 { margin-bottom: 46px; max-width: 560px; }
.cap-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(212px, 1fr)); gap: 1px; background: #2a2d33; }
.cap-grid > div { background: var(--ink); padding: 28px 24px 32px; }
.cap-grid h3 { font-size: 18px; font-weight: 600; margin-bottom: 10px; }
.cap-grid h3::before { content: ""; display: block; width: 30px; height: 3px; background: var(--accent, var(--cyan)); margin-bottom: 20px; }
.cap-grid p { font-size: 14px; line-height: 1.6; color: #a7acb4; }

/* ─── brands ─────────────────────────────────────────────────────────── */
.brand-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 14px; list-style: none; margin: 0; padding: 0; }
.brand-grid li {
  border: 1px solid var(--line); border-radius: 6px; height: 96px;
  display: flex; align-items: center; justify-content: center; padding: 18px;
  transition: border-color 180ms ease, background 180ms ease;
}
.brand-grid li:hover { border-color: var(--ink); background: var(--surface-3); }
.brand-grid img { max-height: 34px; width: auto; object-fit: contain; filter: grayscale(1); opacity: 0.7; transition: filter 180ms ease, opacity 180ms ease; }
.brand-grid li:hover img { filter: none; opacity: 1; }
.brand-more { font-family: var(--display); font-size: 15px; font-weight: 600; color: var(--ink-4); }
.brand-grid li:hover .brand-more { color: var(--ink); }

/* ─── fulfillment ────────────────────────────────────────────────────── */
.fulfillment { border-top: 1px solid var(--line); background: var(--surface-2); }
.fulfillment .shell {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(32px, 5vw, 64px); align-items: center;
}
.fulfillment h2 { font-size: clamp(26px, 4vw, 34px); font-weight: 700; }

.steps { list-style: none; margin: 30px 0 0; padding: 0; counter-reset: step; }
.steps li { display: flex; gap: 18px; padding: 18px 0; border-top: 1px solid #e1e4e8; counter-increment: step; }
.steps li:last-child { border-bottom: 1px solid #e1e4e8; }
.steps li::before {
  content: "0" counter(step);
  font-family: var(--display); font-size: 13px; font-weight: 700;
  color: var(--accent, var(--ink-4)); width: 34px; flex-shrink: 0;
}
.steps h3 { font-size: 16px; font-weight: 600; margin-bottom: 5px; }
.steps p { font-size: 14px; line-height: 1.6; color: var(--ink-3); }

.tracker {
  min-width: 0; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--surface); padding: clamp(20px, 3vw, 32px);
}
.tracker-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 34px; }
.tracker-head .eyebrow { margin: 0; }
.tracker-head .eyebrow::before { display: none; }
.tracker-head .hint { font-size: 12px; color: var(--ink-4); }

.tracker-track { position: relative; margin-bottom: 14px; }
.tracker-track::before,
.tracker-progress { position: absolute; top: 9px; left: 10px; height: 2px; }
.tracker-track::before { content: ""; right: 10px; background: var(--line); }
.tracker-progress { background: var(--ink); width: 0; transition: width 320ms cubic-bezier(.22,.61,.36,1); }
.tracker-stages { position: relative; display: flex; justify-content: space-between; }
.tracker-stages button {
  background: none; border: none; padding: 0; cursor: pointer;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  font-family: var(--text);
}
.tracker-stages .dot {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--surface); border: 2px solid var(--line-2);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}
.tracker-stages .label {
  font-size: clamp(10px, 1.3vw, 12px); letter-spacing: 0.02em;
  font-weight: 500; color: var(--ink-4); transition: color 200ms ease;
}
.tracker-stages button[data-done] .dot { background: var(--ink); border-color: var(--ink); }
.tracker-stages button[aria-current="step"] .dot { box-shadow: 0 0 0 5px rgba(41, 171, 226, 0.22); }
.tracker-stages button[aria-current="step"] .label { font-weight: 600; color: var(--ink); }

.tracker-detail { margin-top: 34px; padding-top: 24px; border-top: 1px solid var(--line); min-height: 104px; }
.tracker-detail h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.tracker-detail p { font-size: 14px; line-height: 1.6; color: var(--ink-3); }

/* ─── contact ────────────────────────────────────────────────────────── */
.contact .shell {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(36px, 5vw, 72px);
}
.contact h2 { font-size: clamp(26px, 4vw, 34px); font-weight: 700; margin-bottom: 18px; }
.contact .lede { font-size: 16px; line-height: 1.65; color: #5a6068; margin-bottom: 34px; max-width: 380px; }
.contact-details { padding-top: 26px; border-top: 1px solid var(--line); }
.contact-details + .contact-details { margin-top: 26px; }
.contact-details h3 { font-family: var(--display); font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 12px; }
.contact-details address { font-style: normal; line-height: 1.6; color: #5a6068; }
.contact-details address strong { color: var(--ink); font-weight: 600; }

.inquiry { border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(20px, 3vw, 32px); background: var(--surface-3); }
.field-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(168px, 1fr)); gap: 18px; }
.inquiry label { display: block; }
.inquiry label + label,
.field-row + label { margin-top: 18px; }
.field-row label + label { margin-top: 0; }
.inquiry .label-text { display: block; font-size: 13px; font-weight: 600; margin-bottom: 7px; }
.inquiry input, .inquiry textarea {
  width: 100%; padding: 12px 13px;
  border: 1px solid var(--line-2); border-radius: 4px;
  font-family: var(--text); font-size: 15px; color: var(--ink);
  background: var(--surface);
}
.inquiry textarea { resize: vertical; }
.inquiry input:focus, .inquiry textarea:focus { border-color: var(--cyan); }
.inquiry .send {
  margin-top: 22px; width: 100%;
  font-family: var(--display); font-size: 15px; font-weight: 600;
  background: var(--ink); color: #fff; padding: 15px;
  border-radius: 4px; border: none; cursor: pointer;
  transition: background 180ms ease;
}
.inquiry .send:hover { background: var(--magenta); }
.inquiry .note { margin-top: 14px; font-size: 12px; line-height: 1.5; color: var(--ink-4); text-align: center; }

/* ─── footer ─────────────────────────────────────────────────────────── */
.site-footer { border-top: 1px solid var(--line); background: var(--surface); }
.site-footer .shell { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; padding-block: 40px; }
.site-footer .logo { height: 38px; width: auto; }
.site-footer nav { display: flex; gap: 26px; flex-wrap: wrap; font-size: 13px; }
.site-footer nav a { color: var(--ink-3); }
.site-footer nav a:hover { color: var(--magenta); }
.site-footer .copy { font-size: 13px; color: var(--ink-4); }

/* ─── motion ─────────────────────────────────────────────────────────── */
[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity 620ms cubic-bezier(.22,.61,.36,1), transform 620ms cubic-bezier(.22,.61,.36,1); }
[data-reveal].is-revealed { opacity: 1; transform: none; }
/* No JS, no observer — never leave the page invisible. */
.no-js [data-reveal] { opacity: 1; transform: none; }

@keyframes px-float  { 0%, 100% { transform: translateY(0); }        50% { transform: translateY(-6px); } }
@keyframes px-sweep  { 0% { transform: translateX(-100%); }          55%, 100% { transform: translateX(240%); } }
@keyframes px-travel { 0% { transform: translateX(0); opacity: 0; } 12%, 88% { opacity: 1; } 100% { transform: translateX(140px); opacity: 0; } }
@keyframes px-print  { 0%, 12% { transform: translateY(0) scaleY(0.2); opacity: 0; } 40% { opacity: 1; } 70%, 100% { transform: translateY(30px) scaleY(1); opacity: 1; } }
@keyframes px-steam  { 0% { transform: translateY(4px) scaleX(0.7); opacity: 0; } 40% { opacity: 0.9; } 100% { transform: translateY(-16px) scaleX(1.2); opacity: 0; } }

/* SVG transforms resolve against the whole viewBox by default, which sends a
   scaled shape flying across the drawing. Anchor every one to its own box. */
.px-float, .px-sweep, .px-travel, .px-print, .px-steam { transform-box: fill-box; }

.px-float  { animation: px-float 4.2s ease-in-out infinite; }
.px-sweep  { animation: px-sweep 3.4s linear infinite; }
.px-travel { animation: px-travel 2.6s ease-in-out infinite; }
.px-print  { animation: px-print 3.2s ease-in-out infinite; transform-origin: top center; }
.px-steam  { animation: px-steam 2.4s ease-out infinite; transform-origin: bottom center; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important; animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}
