/* ==========================================================================
   Turkish Suppliers List
   Design system: light editorial. One accent. Radius 0 everywhere.
   No build step. Edit this file directly.
   ========================================================================== */

/* ---------- Fonts (self-hosted, no external requests) ---------- */
@font-face {
  font-family: 'Instrument Sans';
  font-style: normal;
  font-display: swap;
  font-weight: 400 700;
  font-stretch: 75% 100%;
  src: url('../assets/fonts/instrument-sans-latin-standard-normal.woff2') format('woff2-variations');
  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: 'Instrument Sans';
  font-style: normal;
  font-display: swap;
  font-weight: 400 700;
  font-stretch: 75% 100%;
  src: url('../assets/fonts/instrument-sans-latin-ext-standard-normal.woff2') format('woff2-variations');
  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: 'JetBrains Mono';
  font-style: normal;
  font-display: swap;
  font-weight: 400 600;
  src: url('../assets/fonts/jetbrains-mono-latin-wght-normal.woff2') format('woff2-variations');
  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 {
  /* Light editorial palette. Monochrome base, one saturated accent. */
  --paper:        #F5F5F3;
  --paper-2:      #EDEDEA;
  --paper-3:      #E3E3DF;
  --surface:      #FFFFFF;
  --ink:          #141414;
  --ink-2:        #3A3A38;
  --ink-3:        #6E6E6A;
  --line:         rgba(20, 20, 20, 0.13);
  --line-strong:  rgba(20, 20, 20, 0.28);
  --accent:       #C4162B;
  --accent-ink:   #FFFFFF;
  --accent-wash:  rgba(196, 22, 43, 0.07);

  --font-sans: 'Instrument Sans', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  /* Fluid type scale */
  --t-display-xl: clamp(2.6rem, 6.5vw, 5.1rem);
  --t-display:    clamp(2.1rem, 5.2vw, 4.25rem);
  --t-h2:         clamp(1.85rem, 3.9vw, 3.1rem);
  --t-h3:         clamp(1.15rem, 1.7vw, 1.45rem);
  --t-body:       clamp(1rem, 1.05vw, 1.0625rem);
  --t-small:      0.9rem;
  --t-micro:      0.7rem;

  --gutter: clamp(1.25rem, 4.2vw, 4rem);
  --page-max: 1400px;
  --section-y: clamp(4.5rem, 9.5vw, 9rem);

  --radius: 0px;                                   /* one radius system: sharp */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 0.55s;

  --z-nav: 100;
  --z-overlay: 200;
  --z-grain: 300;
}

/* Dark mode is a courtesy for system-dark users. The brand default is light.
   To lock the site to light only, delete this whole block. */
@media (prefers-color-scheme: dark) {
  :root {
    --paper:       #121211;
    --paper-2:     #1A1A18;
    --paper-3:     #232320;
    --surface:     #171715;
    --ink:         #F2F2EE;
    --ink-2:       #C9C9C3;
    --ink-3:       #93938C;
    --line:        rgba(242, 242, 238, 0.15);
    --line-strong: rgba(242, 242, 238, 0.32);
    --accent:      #FF5062;
    --accent-ink:  #17100F;
    --accent-wash: rgba(255, 80, 98, 0.11);
  }
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: var(--t-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4, p, figure, blockquote, ul, ol, dl { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img, svg, video { display: block; max-width: 100%; }
svg { fill: currentColor; }
img { height: auto; }
button, input, textarea, select { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

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

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: var(--paper);
  padding: 0.75rem 1.25rem; z-index: var(--z-overlay);
}
.skip-link:focus { left: 0; }

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

/* ---------- Layout primitives ---------- */
.wrap {
  width: 100%;
  max-width: var(--page-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.rule { height: 1px; background: var(--line); border: 0; margin: 0; }

/* ---------- Typography helpers ---------- */
.display-xl {
  font-size: var(--t-display-xl);
  font-stretch: 82%;
  font-weight: 600;
  line-height: 0.93;
  letter-spacing: -0.035em;
}
.display {
  font-size: var(--t-display);
  font-stretch: 85%;
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: -0.028em;
}
.h2 {
  font-size: var(--t-h2);
  font-stretch: 86%;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.024em;
  max-width: 18ch;
}
.h3 {
  font-size: var(--t-h3);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.012em;
}
.lede {
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 46ch;
}
.body { color: var(--ink-2); max-width: 62ch; }
.small { font-size: var(--t-small); color: var(--ink-3); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: var(--t-micro);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ink-3);
  display: block;
  margin-bottom: 1.5rem;
}

.accent { color: var(--accent); }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--ink);
  --btn-fg: var(--paper);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  white-space: nowrap;               /* CTA labels never wrap */
  padding: 0.95rem 1.7rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-bg);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.005em;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  /* --mx / --my are set by the magnetic-hover script */
  transform: translate(var(--mx, 0px), var(--my, 0px));
  transition: transform 0.35s var(--ease), background-color 0.25s var(--ease),
              color 0.25s var(--ease), border-color 0.25s var(--ease);
}
/* Directional fill sweep on hover */
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s var(--ease);
}
.btn:hover::after, .btn:focus-visible::after { transform: scaleY(1); }
.btn:hover, .btn:focus-visible { color: var(--accent-ink); border-color: var(--accent); }
.btn:active { transform: translate(var(--mx, 0px), var(--my, 0px)) scale(0.975); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  border-color: var(--line-strong);
}
.btn--ghost:hover, .btn--ghost:focus-visible { color: var(--accent-ink); border-color: var(--accent); }

.btn--accent { --btn-bg: var(--accent); --btn-fg: var(--accent-ink); }
.btn--accent::after { background: var(--ink); }
.btn--accent:hover, .btn--accent:focus-visible { color: var(--paper); border-color: var(--ink); }

.btn--sm { padding: 0.6rem 1.1rem; font-size: 0.85rem; }
.btn--block { width: 100%; }

.btn .arrow { transition: transform 0.3s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

/* Text link with underline sweep */
.link-u {
  position: relative;
  font-weight: 600;
  padding-bottom: 2px;
  background-image: linear-gradient(var(--accent), var(--accent));
  background-size: 0% 1px;
  background-repeat: no-repeat;
  background-position: left bottom;
  transition: background-size 0.4s var(--ease), color 0.3s var(--ease);
}
.link-u:hover, .link-u:focus-visible { background-size: 100% 1px; color: var(--accent); }

/* ==========================================================================
   NAV
   ========================================================================== */
.nav {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: var(--z-nav);
  transition: background-color 0.4s var(--ease), border-color 0.4s var(--ease),
              backdrop-filter 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav__inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  transition: height 0.4s var(--ease);
}
.nav.is-stuck {
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav.is-stuck .nav__inner { height: 62px; }

.nav__logo { display: flex; align-items: center; gap: 0.7rem; color: var(--ink); flex-shrink: 0; }
.nav__logo svg { width: 26px; height: 26px; color: var(--accent); }
.nav__logo-text {
  font-weight: 700;
  font-stretch: 82%;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  line-height: 1.05;
}
.nav__logo-text span {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  color: var(--ink-3);
  margin-top: 2px;
}

.nav__links { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2rem); }
.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-2);
  white-space: nowrap;
  position: relative;
  transition: color 0.25s var(--ease);
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -5px;
  width: 100%; height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav__actions { display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }

.nav__icon {
  display: grid; place-items: center;
  width: 38px; height: 38px;
  border: 1px solid var(--line);
  color: var(--ink-2);
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease), background-color 0.25s var(--ease);
}
.nav__icon:hover { color: var(--accent-ink); background: var(--accent); border-color: var(--accent); }
.nav__icon svg { width: 16px; height: 16px; }

.nav__burger {
  display: none;
  width: 42px; height: 42px;
  background: none;
  border: 1px solid var(--line);
  cursor: pointer;
  padding: 0;
  place-items: center;
}
.nav__burger span {
  display: block;
  width: 17px; height: 1.5px;
  background: var(--ink);
  transition: transform 0.35s var(--ease), opacity 0.2s linear;
}
.nav__burger span + span { margin-top: 4px; }
.nav__burger[aria-expanded='true'] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav__burger[aria-expanded='true'] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded='true'] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* Mobile drawer */
.nav__drawer {
  position: fixed;
  inset: 0;
  top: 0;
  background: var(--paper);
  z-index: calc(var(--z-nav) - 1);
  padding: 96px var(--gutter) 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transform: translateY(-100%);
  visibility: hidden;
  transition: transform 0.5s var(--ease), visibility 0s linear 0.5s;
}
.nav__drawer.is-open { transform: translateY(0); visibility: visible; transition-delay: 0s; }
.nav__drawer a {
  font-size: clamp(1.75rem, 8vw, 2.5rem);
  font-stretch: 85%;
  font-weight: 600;
  letter-spacing: -0.03em;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), color 0.25s var(--ease);
}
.nav__drawer.is-open a { opacity: 1; transform: translateY(0); }
.nav__drawer.is-open a:nth-child(1) { transition-delay: 0.08s; }
.nav__drawer.is-open a:nth-child(2) { transition-delay: 0.14s; }
.nav__drawer.is-open a:nth-child(3) { transition-delay: 0.20s; }
.nav__drawer.is-open a:nth-child(4) { transition-delay: 0.26s; }
.nav__drawer.is-open a:nth-child(5) { transition-delay: 0.32s; }
.nav__drawer a:hover { color: var(--accent); }
.nav__drawer-foot { margin-top: auto; display: flex; gap: 0.6rem; padding-top: 2rem; }

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__icon { display: none; }
  .nav__burger { display: grid; }
  .nav__actions .btn { display: none; }
}

/* ==========================================================================
   HERO  (asymmetric split)
   ========================================================================== */
.hero {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: clamp(6rem, 11vh, 6.5rem);
  padding-bottom: clamp(2rem, 5vh, 4rem);
  position: relative;
}
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  width: 100%;
}
/* Line 2 holds the rotator plus a trailing word; never let it wrap */
.hero__line > span.hero__line2 {
  display: flex;
  align-items: baseline;
  gap: 0.26em;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.hero__title { margin-bottom: 1.6rem; }
.hero__line { display: block; overflow: hidden; padding-bottom: 0.06em; }
.hero__line > span {
  display: block;
  transform: translateY(105%);
  transition: transform 0.95s var(--ease);
}
.is-ready .hero__line > span { transform: translateY(0); }
.is-ready .hero__line:nth-child(2) > span { transition-delay: 0.1s; }

/* Rotating category word */
.rotator {
  display: inline-grid;
  vertical-align: bottom;
  color: var(--accent);
}
.rotator__item {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(0.4em);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
  white-space: nowrap;
}
.rotator__item.is-active { opacity: 1; transform: translateY(0); }
.rotator__item.is-leaving { opacity: 0; transform: translateY(-0.4em); }
/* Invisible sizer keeps layout stable so the headline never reflows */
.rotator__sizer { grid-area: 1 / 1; visibility: hidden; white-space: nowrap; }

.hero__sub { margin-bottom: 2.2rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.hero__fade { opacity: 0; transform: translateY(18px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.is-ready .hero__fade { opacity: 1; transform: none; }
.is-ready .hero__sub { transition-delay: 0.35s; }
.is-ready .hero__cta { transition-delay: 0.45s; }
.is-ready .hero__media { transition-delay: 0.25s; }

.hero__media { aspect-ratio: 4 / 5; }

@media (max-width: 900px) {
  .hero { min-height: auto; padding-top: 7rem; padding-bottom: 2.5rem; }
  .hero__grid { grid-template-columns: 1fr; gap: 2rem; }
  /* Headline leads on mobile, image supports it underneath */
  .hero__media { aspect-ratio: 16 / 10; max-height: 300px; }
}

/* ---------- Media slot (works with or without a photo) ---------- */
.media {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--paper-3);
  border: 1px solid var(--line);
}
.media img,
.media video {
  display: block;
  width: 100%; height: 100%;
  object-fit: cover;
  /* Lengvas suvienodinimas, ne juodai balta: nuotraukos daryto skirtingu
     metu ir skirtingoje sviesoje, tad truputi numalsinam spalva. Telefone
     hover neegzistuoja, todel pats vaizdas turi atrodyti gerai is karto. */
  filter: saturate(0.88) contrast(1.03);
  transition: filter 0.7s var(--ease), transform 0.9s var(--ease);
}
.media:hover img,
.media:hover video { filter: saturate(1) contrast(1); transform: scale(1.03); }
.media.is-empty img,
.media.is-empty video { display: none; }
.media__placeholder {
  position: absolute;
  inset: 0;
  display: none;
  place-content: center;
  text-align: center;
  padding: 1.5rem;
  background:
    repeating-linear-gradient(
      -45deg,
      transparent 0 11px,
      color-mix(in srgb, var(--ink) 4%, transparent) 11px 12px
    ),
    var(--paper-2);
}
.media.is-empty .media__placeholder { display: grid; }
.media__placeholder b {
  display: block;
  font-family: var(--font-mono);
  font-size: var(--t-micro);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ink-3);
  font-weight: 500;
}
.media__placeholder i {
  display: block;
  font-style: normal;
  font-size: 0.8rem;
  color: var(--ink-3);
  opacity: 0.72;
  margin-top: 0.5rem;
}

/* ==========================================================================
   MARQUEE  (one per page)
   ========================================================================== */
.marquee {
  border-block: 1px solid var(--line);
  padding-block: 1.1rem;
  overflow: hidden;
  background: var(--paper-2);
  --marquee-dur: 42s;
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee var(--marquee-dur) linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__group {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  padding-right: 2.2rem;
  flex-shrink: 0;
}
.marquee__item {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.17em;
  color: var(--ink-2);
  white-space: nowrap;
}
.marquee__sep { color: var(--accent); font-size: 0.78rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ==========================================================================
   STATS
   ========================================================================== */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
}
.stat { padding-top: 1.5rem; border-top: 1px solid var(--line-strong); }
.stat__n {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-stretch: 80%;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.04em;
  display: flex;
  align-items: baseline;
  gap: 0.05em;
}
.stat__n small { font-size: 0.42em; font-weight: 600; color: var(--accent); }
.stat__l { margin-top: 0.7rem; color: var(--ink-3); font-size: 0.92rem; max-width: 22ch; }
@media (max-width: 720px) {
  .stats { grid-template-columns: 1fr; gap: 1.75rem; }
  .stat__n { font-size: 3rem; }
}

/* ==========================================================================
   BENTO  (what's inside) - exactly 5 cells, no empties
   ========================================================================== */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-areas:
    'a a b'
    'a a c'
    'd e e';
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.bento__cell {
  background: var(--surface);
  padding: clamp(1.5rem, 2.4vw, 2.25rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.65rem;
  min-height: 190px;
  position: relative;
  transition: background-color 0.4s var(--ease);
}
.bento__cell:hover { background: var(--paper-2); }
.bento__cell p { color: var(--ink-3); font-size: 0.95rem; max-width: 34ch; }
.bento__cell .num {
  font-family: var(--font-mono);
  font-size: var(--t-micro);
  letter-spacing: 0.18em;
  color: var(--ink-3);
  margin-bottom: auto;
}
.bento__a { grid-area: a; padding: 0; overflow: hidden; min-height: 380px; }
.bento__a .media { height: 100%; border: 0; }
.bento__a .bento__overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: clamp(1.5rem, 2.4vw, 2.25rem);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.62) 48%, rgba(0, 0, 0, 0.12) 82%, transparent);
  color: #fff;
  pointer-events: none;
}
.bento__a .bento__overlay p { color: rgba(255, 255, 255, 0.9); }
/* While the photo slot is still empty, drop the scrim and use ink on paper
   so the cell reads as designed rather than broken. */
.bento__a:has(.media.is-empty) .bento__overlay {
  background: linear-gradient(to top, var(--paper-2) 78%, transparent);
  color: var(--ink);
}
.bento__a:has(.media.is-empty) .bento__overlay p { color: var(--ink-2); }
.bento__b { grid-area: b; }
.bento__c { grid-area: c; }
.bento__d {
  grid-area: d;
  background: var(--accent);
  color: var(--accent-ink);
}
.bento__d:hover { background: var(--accent); }
/* Solid tints, not alpha: keeps WCAG AA contrast against the accent fill */
.bento__d p { color: color-mix(in srgb, var(--accent-ink) 94%, var(--accent)); }
.bento__d .num { color: color-mix(in srgb, var(--accent-ink) 88%, var(--accent)); }
.bento__e { grid-area: e; }

@media (max-width: 900px) {
  .bento {
    grid-template-columns: 1fr;
    grid-template-areas: 'a' 'b' 'c' 'd' 'e';
  }
  .bento__a { min-height: 300px; }
  .bento__cell { min-height: 150px; }
}

/* ==========================================================================
   LISTS  (products as full-width rows)
   ========================================================================== */
.lists { border-top: 1px solid var(--line-strong); }

.plist { position: relative; }

.pitem {
  position: relative;
  display: grid;
  grid-template-columns: 4rem minmax(0, 1fr) auto;
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: center;
  padding-block: clamp(1.75rem, 3.4vw, 2.75rem);
  border-bottom: 1px solid var(--line);
  transition: background-color 0.45s var(--ease);
}
.pitem::before {
  content: '';
  position: absolute;
  left: calc(var(--gutter) * -1);
  right: calc(var(--gutter) * -1);
  top: 0; bottom: 0;
  background: var(--paper-2);
  opacity: 0;
  transition: opacity 0.45s var(--ease);
  pointer-events: none;
  z-index: -1;
}
.pitem:hover::before { opacity: 1; }

.pitem__n {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--ink-3);
  letter-spacing: 0.1em;
  align-self: start;
  padding-top: 0.5rem;
}
.pitem__flag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  border: 1px solid color-mix(in srgb, var(--accent) 34%, transparent);
  background: var(--accent-wash);
  padding: 0.26rem 0.55rem;
  margin-bottom: 0.8rem;
}
.pitem__title {
  font-size: clamp(1.6rem, 3.4vw, 2.75rem);
  font-stretch: 84%;
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.03em;
  transition: color 0.35s var(--ease);
}
.pitem:hover .pitem__title { color: var(--accent); }
.pitem__desc { color: var(--ink-3); font-size: 0.98rem; margin-top: 0.7rem; max-width: 52ch; }
.pitem__tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1rem; }
.pitem__tag {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--ink-3);
  border: 1px solid var(--line);
  padding: 0.28rem 0.55rem;
}
.pitem__buy { display: flex; flex-direction: column; align-items: flex-end; gap: 0.85rem; }
.pitem__price {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-stretch: 82%;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
}

@media (max-width: 820px) {
  .pitem { grid-template-columns: 1fr; gap: 1.25rem; }
  .pitem__n { padding-top: 0; }
  .pitem__buy { flex-direction: row; align-items: center; justify-content: space-between; width: 100%; }
}

/* Bundle block */
.bundle {
  margin-top: clamp(2rem, 4vw, 3.5rem);
  border: 2px solid var(--ink);
  padding: clamp(1.75rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  background: var(--surface);
  position: relative;
  overflow: hidden;
}
.bundle::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent-wash);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.bundle:hover::before { opacity: 1; }
.bundle > * { position: relative; }
.bundle__flag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: var(--t-micro);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  background: var(--accent);
  color: var(--accent-ink);
  padding: 0.32rem 0.6rem;
  margin-bottom: 1rem;
}
.bundle__title {
  font-size: clamp(1.75rem, 3.6vw, 2.9rem);
  font-stretch: 84%;
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.03em;
}
.bundle__desc { color: var(--ink-3); margin-top: 0.7rem; max-width: 46ch; font-size: 0.98rem; }
.bundle__buy { display: flex; flex-direction: column; align-items: flex-end; gap: 0.9rem; text-align: right; }
.bundle__price {
  display: flex; align-items: baseline; gap: 0.6rem;
  font-size: clamp(2.25rem, 4.4vw, 3.4rem);
  font-stretch: 80%;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
}
.bundle__was {
  font-size: 0.4em;
  font-weight: 500;
  color: var(--ink-3);
  text-decoration: line-through;
  letter-spacing: 0;
}
.bundle__save { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.12em; color: var(--accent); text-transform: uppercase; }
@media (max-width: 820px) {
  .bundle { grid-template-columns: 1fr; }
  .bundle__buy { align-items: flex-start; text-align: left; }
  .bundle__buy .btn { width: 100%; }
}

.pay-note {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1.4rem;
  font-size: 0.85rem;
  color: var(--ink-3);
}
.pay-note span { display: inline-flex; align-items: center; gap: 0.4rem; }
.pay-note svg { width: 14px; height: 14px; color: var(--accent); flex-shrink: 0; }

/* ==========================================================================
   STEPS
   ========================================================================== */
.steps { display: grid; gap: 0; counter-reset: step; }
.step {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(1rem, 4vw, 4rem);
  padding-block: clamp(1.75rem, 3.5vw, 2.75rem);
  border-top: 1px solid var(--line);
  align-items: start;
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step__head { display: flex; align-items: baseline; gap: 1.25rem; }
.step__n {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--accent);
  letter-spacing: 0.12em;
  flex-shrink: 0;
}
.step__t {
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  font-stretch: 86%;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
}
.step p { color: var(--ink-3); max-width: 48ch; }
@media (max-width: 820px) {
  .step { grid-template-columns: 1fr; gap: 0.85rem; }
}

/* ==========================================================================
   ABOUT  (split)
   ========================================================================== */
.about {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.about__media { aspect-ratio: 3 / 4; }
.about__body > * + * { margin-top: 1.25rem; }
.about__sig {
  margin-top: 2rem !important;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.about__sig strong { font-size: 1rem; font-weight: 600; }
.about__sig span { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); }
@media (max-width: 900px) {
  .about { grid-template-columns: 1fr; }
  .about__media { aspect-ratio: 4 / 3; max-height: 420px; }
}

/* ==========================================================================
   QUOTES
   ========================================================================== */
.quotes {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}
.quote {
  border-top: 2px solid var(--ink);
  padding-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.quote:nth-child(1) { grid-column: 1 / span 5; }
.quote:nth-child(2) { grid-column: 7 / span 6; margin-top: clamp(1.5rem, 4vw, 3.5rem); }
.quote:nth-child(3) { grid-column: 3 / span 5; }
.quote blockquote { font-size: clamp(1.05rem, 1.5vw, 1.2rem); line-height: 1.45; letter-spacing: -0.012em; }
.quote figcaption { font-size: 0.85rem; color: var(--ink-3); margin-top: auto; }
.quote figcaption b { color: var(--ink); font-weight: 600; display: block; }
@media (max-width: 820px) {
  .quotes { grid-template-columns: 1fr; }
  .quote:nth-child(1), .quote:nth-child(2), .quote:nth-child(3) { grid-column: 1; margin-top: 0; }
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { border-top: 1px solid var(--line-strong); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%;
  background: none;
  border: 0;
  padding: clamp(1.15rem, 2.2vw, 1.6rem) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  text-align: left;
  cursor: pointer;
  font-size: clamp(1.02rem, 1.7vw, 1.3rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
  transition: color 0.25s var(--ease);
}
.faq__q:hover { color: var(--accent); }
.faq__icon {
  position: relative;
  flex-shrink: 0;
  width: 16px; height: 16px;
}
.faq__icon::before, .faq__icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease);
}
.faq__icon::before { inset: 7.25px 0; height: 1.5px; }
.faq__icon::after { inset: 0 7.25px; width: 1.5px; }
.faq__q[aria-expanded='true'] .faq__icon::after { transform: rotate(90deg); opacity: 0; }
.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s var(--ease);
}
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a > div { overflow: hidden; }
.faq__a p {
  color: var(--ink-3);
  max-width: 62ch;
  padding-bottom: clamp(1.15rem, 2.2vw, 1.6rem);
}

/* ==========================================================================
   FINAL CTA
   ========================================================================== */
.cta-final {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}
.cta-final .display { max-width: 16ch; }
.cta-final .lede { max-width: 44ch; }
.cta-final__row { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { border-top: 1px solid var(--line-strong); padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 3rem);
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
}
.footer__lockup { display: inline-flex; align-items: center; gap: 0.85rem; }
.footer__lockup > svg { width: 34px; height: 34px; color: var(--accent); flex-shrink: 0; }
.footer__lockup > span {
  font-weight: 700;
  font-stretch: 82%;
  font-size: 1.15rem;
  letter-spacing: 0.01em;
  line-height: 1.05;
}
.footer__lockup > span > span {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  color: var(--ink-3);
  margin-top: 3px;
}
.footer__brand p { margin-top: 1.25rem; color: var(--ink-3); font-size: 0.92rem; max-width: 34ch; }
.footer__col h4 {
  font-family: var(--font-mono);
  font-size: var(--t-micro);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ink-3);
  margin-bottom: 1.1rem;
}
.footer__col li + li { margin-top: 0.6rem; }
.footer__col a { font-size: 0.94rem; color: var(--ink-2); transition: color 0.25s var(--ease); display: inline-flex; align-items: center; gap: 0.5rem; }
.footer__col a:hover { color: var(--accent); }
.footer__col a svg { width: 15px; height: 15px; flex-shrink: 0; }
.footer__bottom {
  border-top: 1px solid var(--line);
  padding-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.75rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--ink-3);
}
.footer__bottom nav { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.footer__bottom a:hover { color: var(--accent); }
@media (max-width: 820px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

/* ==========================================================================
   SCROLL REVEAL  (IntersectionObserver driven)
   ========================================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal-delay='1'] { transition-delay: 0.08s; }
[data-reveal-delay='2'] { transition-delay: 0.16s; }
[data-reveal-delay='3'] { transition-delay: 0.24s; }
[data-reveal-delay='4'] { transition-delay: 0.32s; }
[data-reveal-delay='5'] { transition-delay: 0.40s; }

/* Section header block */
.s-head { margin-bottom: clamp(2rem, 4vw, 3.25rem); max-width: 62ch; }
.s-head .body { margin-top: 1.1rem; }

/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    transition-delay: 0s !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .hero__line > span { transform: none !important; }
  .hero__fade { opacity: 1 !important; transform: none !important; }
  .marquee__track { animation: none !important; }
  .media:hover img { transform: none; }
}

/* ==========================================================================
   PRINT
   ========================================================================== */
@media print {
  .nav, .marquee, .media, .btn { display: none !important; }
  body { background: #fff; color: #000; }
}
