/* =====================================================================
   CONTENTZON · Landing page
   Built on the Contentzon design system tokens (assets/ds-tokens.css).
   Dark-first, terminal-flavoured, orange rationed.
   ===================================================================== */

:root {
  /* Brand accent — defaults to the actual logo orange (#E87810).
     Tweakable toward the brighter DS orange (#FF6B1A). */
  --accent: #E87810;
  --accent-hi: #ff9326;
  --accent-glow: rgba(232, 120, 16, 0.30);
  --accent-muted: rgba(232, 120, 16, 0.10);
  --accent-line: rgba(232, 120, 16, 0.22);

  --ink: #070707;
  --ink-2: #0e0e0e;
  --surface: #141414;
  --surface-2: #181818;
  --hair: #232323;
  --hair-soft: #1b1b1b;

  --fg: #ffffff;
  --fg-2: #b3b3b3;
  --fg-3: #6f6f6f;
  --fg-4: #4a4a4a;

  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  --max: 1200px;
  --ease: cubic-bezier(.2, .7, .2, 1);

  --glow-strength: 1; /* tweakable */
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--fg);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'ss01', 'cv11';
  overflow-x: hidden;
}

::selection { background: var(--accent); color: #0a0a0a; }

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

/* ---------------- Type helpers ---------------- */
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--accent);
  opacity: 0.6;
}
.eyebrow.center::before { display: none; }

.mono { font-family: var(--mono); font-variant-numeric: tabular-nums; }

h1, h2, h3 { margin: 0; letter-spacing: -0.02em; line-height: 1.02; font-weight: 800; }

.display {
  font-size: clamp(40px, 6.2vw, 82px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.98;
}
.section-title {
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.0;
}
.lead {
  font-size: clamp(17px, 1.5vw, 21px);
  color: var(--fg-2);
  line-height: 1.55;
  max-width: 60ch;
}
.accent { color: var(--accent); }

/* ---------------- Layout ---------------- */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 28px; }

section { position: relative; }
.band { padding: clamp(80px, 11vw, 150px) 0; }
.band--ink { background: var(--ink); }
.band--surface { background: var(--ink-2); }
.band--surface::before {
  /* hairline top divider */
  content: "";
  position: absolute; inset: 0 0 auto 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--hair) 18%, var(--hair) 82%, transparent);
}

.section-head { max-width: 760px; }
.section-head .eyebrow, .hero .eyebrow { margin-bottom: 30px; }
.section-head .lead { margin-top: 24px; }

/* ---------------- Reveal animation ----------------
   Hidden start state is gated behind html.anim (set by an inline script only
   when JS runs). No-JS, print and reduced-motion therefore show content. */
.anim .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.anim .reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .anim .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* =====================================================================
   Header
   ===================================================================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 72px;
  display: flex; align-items: center;
  transition: background .25s var(--ease), border-color .25s var(--ease), backdrop-filter .25s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(7,7,7,0.82);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--hair-soft);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.site-header .logo { height: 26px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 14px; color: var(--fg-2); font-weight: 500;
  transition: color .15s var(--ease); position: relative;
}
.nav-links a:hover { color: var(--fg); }
.nav-cta {
  font-family: var(--mono); font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  background: var(--accent); color: #0a0a0a;
  padding: 11px 18px; border-radius: 0;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background .15s var(--ease), transform .15s var(--ease);
}
.nav-cta:hover { background: var(--accent-hi); }
.nav-cta:active { transform: scale(.97); }
.nav-toggle { display: none; background: none; border: 0; color: var(--fg); padding: 8px; }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* =====================================================================
   Buttons
   ===================================================================== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 13.5px; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 16px 26px; border-radius: 0; border: 1px solid transparent;
  transition: background .16s var(--ease), color .16s var(--ease), border-color .16s var(--ease), transform .12s var(--ease);
}
.btn .arr { width: 18px; height: 12px; }
.btn-primary { background: var(--accent); color: #0a0a0a; }
.btn-primary:hover { background: var(--accent-hi); }
.btn-primary:active { transform: scale(.98); }
.btn-ghost { background: transparent; color: var(--fg); border-color: var(--hair); }
.btn-ghost:hover { border-color: var(--fg-3); background: rgba(255,255,255,0.03); }

/* =====================================================================
   Arrow-smile motif (original Amazon swoosh asset)
   ===================================================================== */
.smile { display: block; height: auto; }

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  position: relative; padding-top: 150px; padding-bottom: clamp(72px, 9vw, 130px);
  overflow: hidden;
}
.hero-grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center;
  min-height: 60vh;
}
.hero h1 { max-width: 14ch; }
.hero .lead { margin-top: 24px; }
.hero-cta-row { margin-top: 40px; display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* hero decorative arrow panel */
.hero-art {
  position: relative; aspect-ratio: 1 / 1; width: 100%;
  display: grid; place-items: center;
}
.hero-art .ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 1px solid var(--hair); 
}
.hero-art .ring.r2 { inset: 13%; border-color: var(--hair-soft); }
.hero-art .ring.r3 { inset: 26%; border-color: var(--hair-soft); }
.hero-art .glow {
  position: absolute; inset: 8%; border-radius: 50%;
  background: radial-gradient(circle at 50% 60%, var(--accent-glow), transparent 62%);
  filter: blur(28px); opacity: calc(0.55 * var(--glow-strength));
}
.hero-art .big-smile { position: relative; width: 62%; }
.hero-art .hero-mark { position: relative; width: 38%; z-index: 1; filter: drop-shadow(0 8px 30px rgba(0,0,0,0.5)); }
.hero-art .hero-mark .letter { fill: var(--fg); fill-rule: evenodd; }
.hero-art .hero-mark .arc { fill: var(--accent); }

/* orbiting labels */
.orbit-layer { position: absolute; inset: 0; z-index: 2; transition: transform .5s var(--ease); will-change: transform; }
.orbit {
  position: absolute; transform: translate(-50%, -50%);
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--fg-3); white-space: nowrap; pointer-events: none;
}
.orbit-i { display: inline-block; }
.anim .orbit-i { animation: orbitFloat var(--d, 11s) ease-in-out var(--dl, 0s) infinite; }
@keyframes orbitFloat {
  0%   { transform: translate(0, 0); opacity: 0.55; }
  25%  { transform: translate(4px, -5px); opacity: 0.9; }
  50%  { transform: translate(0, -9px); opacity: 1; }
  75%  { transform: translate(-4px, -5px); opacity: 0.9; }
  100% { transform: translate(0, 0); opacity: 0.55; }
}
@media (prefers-reduced-motion: reduce) { .anim .orbit-i { animation: none; } }
.hero-art .tick {
  position: absolute; font-family: var(--mono); font-size: 11px; color: var(--fg-3);
  letter-spacing: 0.1em;
}
.hero-art .tick--r { text-align: right; }

/* stat bar */
.statbar {
  margin-top: 76px;
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--hair); 
}
.statbar .stat { padding: 30px 8px 4px; position: relative; }
.statbar .stat + .stat { border-left: 1px solid var(--hair); padding-left: 30px; }
.statbar .num { font-family: var(--mono); font-weight: 700; font-size: clamp(30px, 4vw, 46px); line-height: 1; color: var(--fg); font-variant-numeric: tabular-nums; }
.statbar .num .u { color: var(--accent); }
.statbar .cap { margin-top: 14px; font-size: 14px; color: var(--fg-2); line-height: 1.4; max-width: 30ch; }

/* =====================================================================
   Ticker
   ===================================================================== */
.ticker {
  border-top: 1px solid var(--hair); border-bottom: 1px solid var(--hair);
  background: var(--accent);
  overflow: hidden; transform: rotate(-2.2deg) scale(1.04);
  margin: 100px 0; padding: 16px 0;
}
.ticker-track { display: flex; gap: 0; width: max-content; animation: ticker 38s linear infinite; }
.ticker-item {
  font-family: var(--mono); font-weight: 700; font-size: 15px; letter-spacing: 0.04em;
  text-transform: uppercase; color: #1a1106; white-space: nowrap;
  padding: 0 28px; display: inline-flex; align-items: center; gap: 28px;
}
.ticker-item::after { content: "✦"; color: rgba(26,17,6,0.45); }
@keyframes ticker { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker-track { animation: none; } }

/* =====================================================================
   Differentiators (Dlaczego my)
   ===================================================================== */
.diff-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--hair); border: 1px solid var(--hair); margin-top: 64px; }
.diff-card {
  background: var(--ink-2); padding: 44px 40px;
  transition: background .2s var(--ease);
}
.band--surface .diff-card { background: var(--ink); }
.diff-card:hover { background: var(--surface); }
.diff-card .idx { font-family: var(--mono); font-size: 12px; color: var(--accent); letter-spacing: 0.1em; }
.diff-card h3 { font-size: 25px; margin: 22px 0 14px; letter-spacing: -0.02em; line-height: 1.08; }
.diff-card p { color: var(--fg-2); font-size: 16px; line-height: 1.6; margin: 0; }
.diff-card .ico { width: 44px; height: 44px; color: var(--accent); margin-bottom: 4px; }

@media (max-width: 760px) { .diff-grid { grid-template-columns: 1fr; } }

/* =====================================================================
   Process axis (Jak pracujemy) — arrow motif here
   ===================================================================== */
.process { margin-top: 80px; position: relative; }
.process-axis {
  position: relative;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
}
.axis-line {
  position: absolute; top: 27px; left: 4%; right: 4%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--hair) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.axis-progress {
  position: absolute; top: 27px; left: 4%; height: 2px; background: var(--accent);
  width: 0; z-index: 1; transition: width 1.4s var(--ease); box-shadow: 0 0 12px var(--accent-glow);
}
.step { position: relative; z-index: 2; }
.step .node {
  width: 54px; height: 54px; border-radius: 0;
  background: var(--ink); border: 1px solid var(--hair);
  display: grid; place-items: center;
  font-family: var(--mono); font-weight: 700; font-size: 16px; color: var(--fg-3);
  transition: all .4s var(--ease); position: relative;
}
.band--surface .step .node { background: var(--ink-2); }
.step.lit .node { border-color: var(--accent); color: var(--accent); box-shadow: 0 0 0 4px var(--accent-muted); }
.process-axis.settled .node, .process-axis.settled .axis-progress { transition: none; }
.step .endarrow { position: absolute; top: 18px; right: -18px; width: 36px; opacity: 0; transition: opacity .5s var(--ease); }
.step:last-child .endarrow.show { opacity: 1; }
.step h3 { font-size: 20px; margin: 26px 0 12px; letter-spacing: -0.02em; }
.step .tag { font-family: var(--mono); font-size: 11px; color: var(--accent); letter-spacing: 0.14em; text-transform: uppercase; }
.step p { color: var(--fg-2); font-size: 15px; line-height: 1.55; margin: 8px 0 0; }

@media (max-width: 820px) {
  .process-axis { grid-template-columns: 1fr; gap: 0; }
  .axis-line { left: 27px; right: auto; top: 4%; bottom: 4%; width: 2px; height: auto; background: repeating-linear-gradient(180deg, var(--hair) 0 8px, transparent 8px 16px); }
  .axis-progress { left: 27px; top: 4%; width: 2px; height: 0; transition: height 1.4s var(--ease); }
  .step { display: grid; grid-template-columns: 54px 1fr; column-gap: 22px; row-gap: 0; padding-bottom: 44px; align-items: start; }
  .step .node { grid-column: 1; grid-row: 1 / span 3; align-self: start; }
  .step .tag { grid-column: 2; grid-row: 1; align-self: start; padding-top: 4px; }
  .step h3 { grid-column: 2; grid-row: 2; margin: 10px 0 10px; }
  .step p { grid-column: 2; grid-row: 3; }
  .step .endarrow { display: none; }
}

/* =====================================================================
   Services grid (Co projektujemy)
   ===================================================================== */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--hair); border: 1px solid var(--hair); margin-top: 60px; }
.svc {
  background: var(--ink); padding: 38px 34px; min-height: 200px;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative; overflow: hidden; transition: background .2s var(--ease);
}
.svc:hover { background: var(--surface); }
.svc .n { font-family: var(--mono); font-size: 12px; color: var(--fg-4); letter-spacing: 0.1em; }
.svc h3 { font-size: 23px; letter-spacing: -0.02em; line-height: 1.1; }
.svc p { color: var(--fg-3); font-size: 14px; margin: 10px 0 0; }
.svc .corner { position: absolute; right: -8px; bottom: -8px; width: 64px; color: var(--accent); opacity: 0; transform: translateY(8px); transition: all .3s var(--ease); }
.svc:hover .corner { opacity: 0.16; transform: none; }
@media (max-width: 820px) { .svc-grid { grid-template-columns: 1fr; } }

/* =====================================================================
   Filter (To współpraca nie dla każdego)
   ===================================================================== */
.filter-band { background: var(--ink-2); position: relative; overflow: hidden; }
.filter-inner {
  border: 1px solid var(--accent-line); border-radius: 0;
  padding: clamp(40px, 6vw, 76px); position: relative;
  background:
    radial-gradient(120% 140% at 100% 0%, var(--accent-muted), transparent 55%);
}
.filter-inner .eyebrow { color: var(--accent); margin-bottom: 26px; }
.filter-inner p { font-size: clamp(24px, 3.2vw, 40px); font-weight: 700; letter-spacing: -0.025em; line-height: 1.18; color: var(--fg); max-width: 22ch; margin: 0; }
.filter-inner p .accent { color: var(--accent); }
.filter-inner .watermark { position: absolute; right: -4%; bottom: -30%; width: 42%; color: var(--accent); opacity: 0.07; }

/* =====================================================================
   Portfolio — two horizontal sliders, vertical scroll-reveal cards
   ===================================================================== */
.pf-rows { margin-top: 56px; display: flex; flex-direction: column; gap: 28px; }
.pf-row { position: relative; }
.pf-viewport { overflow: hidden; padding: 4px; margin: -4px; }
.pf-track { display: flex; gap: 22px; width: max-content; transition: transform .55s var(--ease); will-change: transform; }
.pf-track.notrans { transition: none; }

.pf-card {
  flex: 0 0 auto; width: 300px; margin: 0;
  background: var(--ink-2); border: 1px solid var(--hair);
  transition: border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.band--ink .pf-card { background: var(--ink-2); }
.pf-card:hover { border-color: var(--accent-line); box-shadow: 0 18px 40px rgba(0,0,0,0.5); }

.pf-window {
  position: relative; height: 380px; overflow: hidden;
  background: var(--ink-3);
}
.pf-window::after {
  /* scroll affordance: subtle gradient + icon bottom-right */
  content: ""; position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 -40px 48px -28px rgba(0,0,0,0.65);
  opacity: 1; transition: opacity .3s var(--ease);
}
.pf-card:hover .pf-window::after { opacity: 0; }
.pf-window img {
  display: block; width: 100%; height: auto;
  transform: translateY(0);
  transition: transform 1.3s var(--ease);
}
/* on hover (or .playing for touch) scroll the tall image fully into view */
.pf-card:hover .pf-window img,
.pf-card.playing .pf-window img {
  transform: translateY(calc(-100% + 380px));
  transition-duration: var(--scroll-dur, 5s);
}

.pf-card figcaption { display: flex; flex-direction: column; gap: 5px; padding: 18px 20px 20px; }
.pf-chip { font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); }
.pf-name { font-size: 16px; font-weight: 700; letter-spacing: -0.01em; color: var(--fg); line-height: 1.25; }
.pf-meta { font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; color: var(--fg-3); text-transform: uppercase; }

.pf-arrow {
  position: absolute; top: 190px; transform: translateY(-50%);
  width: 46px; height: 46px; display: grid; place-items: center; z-index: 4;
  border: 1px solid var(--hair); background: rgba(7,7,7,0.78); backdrop-filter: blur(8px);
  color: var(--fg); transition: border-color .2s var(--ease), color .2s var(--ease), opacity .2s var(--ease), background .2s var(--ease);
}
.pf-arrow svg { width: 20px; height: 20px; }
.pf-arrow.prev { left: -10px; }
.pf-arrow.next { right: -10px; }
.pf-arrow:hover:not(:disabled) { border-color: var(--accent); color: var(--accent); }
.pf-arrow:disabled { opacity: 0; pointer-events: none; }

@media (max-width: 700px) {
  .pf-card { width: 230px; }
  .pf-window { height: 300px; }
  .pf-card:hover .pf-window img, .pf-card.playing .pf-window img { transform: translateY(calc(-100% + 300px)); }
  .pf-arrow { top: 150px; }
}

/* magnifier (lupa) on each card */
.pf-zoom {
  position: absolute; top: 12px; right: 12px; z-index: 3;
  width: 38px; height: 38px; display: grid; place-items: center;
  border: 1px solid var(--hair); background: rgba(7,7,7,0.7); backdrop-filter: blur(8px);
  color: var(--fg); cursor: pointer;
  opacity: 0; transform: translateY(-4px);
  transition: opacity .22s var(--ease), transform .22s var(--ease), border-color .2s var(--ease), color .2s var(--ease), background .2s var(--ease);
}
.pf-card:hover .pf-zoom, .pf-zoom:focus-visible { opacity: 1; transform: none; }
.pf-zoom:hover { border-color: var(--accent); color: var(--accent); background: rgba(7,7,7,0.92); }
.pf-zoom svg { width: 18px; height: 18px; }
@media (hover: none) { .pf-zoom { opacity: 1; transform: none; } }

/* fullscreen lightbox */
.pf-lightbox {
  position: fixed; inset: 0; z-index: var(--z-modal, 1000);
  background: rgba(5,5,5,0.94); backdrop-filter: blur(8px);
  display: none; opacity: 0; transition: opacity .25s var(--ease);
}
.pf-lightbox.open { display: block; opacity: 1; }
.pf-lb-stage {
  position: absolute; inset: 0; overflow-y: auto; overflow-x: hidden;
  display: flex; flex-direction: column; align-items: center;
  padding: 72px 16px 72px; -webkit-overflow-scrolling: touch; scrollbar-width: thin;
}
.pf-lb-stage img { width: auto; max-width: min(620px, 94vw); height: auto; display: block; border: 1px solid var(--hair); }
.pf-lb-close, .pf-lb-nav {
  position: fixed; z-index: 2; width: 52px; height: 52px;
  display: grid; place-items: center; color: var(--fg); cursor: pointer;
  background: rgba(20,20,20,0.85); border: 1px solid var(--hair); backdrop-filter: blur(8px);
  transition: border-color .2s var(--ease), color .2s var(--ease);
}
.pf-lb-close:hover, .pf-lb-nav:hover { border-color: var(--accent); color: var(--accent); }
.pf-lb-close { top: 18px; right: 18px; }
.pf-lb-close svg { width: 22px; height: 22px; }
.pf-lb-nav { top: 50%; transform: translateY(-50%); }
.pf-lb-nav svg { width: 24px; height: 24px; }
.pf-lb-nav.prev { left: 18px; }
.pf-lb-nav.next { right: 18px; }
.pf-lb-hint {
  position: fixed; left: 50%; bottom: 18px; transform: translateX(-50%); z-index: 2;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--fg-3); background: rgba(20,20,20,0.7); border: 1px solid var(--hair);
  padding: 7px 14px; backdrop-filter: blur(8px); pointer-events: none;
}
@media (max-width: 600px) {
  .pf-lb-nav { width: 44px; height: 44px; }
  .pf-lb-nav.prev { left: 8px; } .pf-lb-nav.next { right: 8px; }
  .pf-lb-stage { padding: 60px 8px 60px; }
}

/* =====================================================================
   Pricing — horizontal slider
   ===================================================================== */
.pricing-slider { margin-top: 56px; position: relative; outline: none; }
.ps-viewport { overflow: hidden; padding: 28px 2px; margin: -28px -2px; cursor: grab; }
.ps-viewport.grabbing { cursor: grabbing; }
.ps-track { display: flex; gap: 22px; transition: transform .55s var(--ease); will-change: transform; user-select: none; align-items: stretch; }
.ps-track.notrans { transition: none; }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 60px; align-items: stretch; }
.plan {
  flex: 0 0 auto;
  background: var(--ink-2); border: 1px solid var(--hair); border-radius: 0;
  padding: 44px 38px; display: flex; flex-direction: column;
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.band--surface .plan { background: var(--ink); }
.plan:hover { transform: translateY(-4px); border-color: var(--accent-line); box-shadow: 0 18px 44px rgba(0,0,0,0.45); }
.plan .pname { font-family: var(--mono); font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-3); line-height: 1.3; min-height: 2.6em; }
.plan .pmeta { font-size: 13px; color: var(--fg-3); margin-top: 6px; }
.plan .price { font-family: var(--mono); font-weight: 700; font-size: 40px; line-height: 1; margin: 22px 0 4px; color: var(--fg); font-variant-numeric: tabular-nums; }
.plan .price .cur { font-size: 18px; color: var(--fg-3); font-weight: 600; }
.plan .price .from { font-family: var(--font); font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-3); margin-right: 8px; vertical-align: middle; }
.plan ul { list-style: none; padding: 0; margin: 28px 0 0; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.plan li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--fg-2); line-height: 1.4; }
.plan li .chk { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; color: var(--accent); }
.plan .btn { margin-top: 32px; justify-content: center; }
.plan--premium {
  border-color: var(--accent); background: linear-gradient(180deg, var(--accent-muted), transparent 40%), var(--ink-2);
  position: relative; box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.band--surface .plan--premium { background: linear-gradient(180deg, var(--accent-muted), transparent 40%), var(--ink); }
.plan--premium:hover { transform: translateY(-4px); }
.plan--premium .pname { color: var(--accent); }
.plan ul { margin-top: 22px; gap: 12px; }
.plan li { font-size: 14px; }
.plan .ribbon {
  position: absolute; top: -1px; right: 24px; transform: translateY(-50%);
  background: var(--accent); color: #0a0a0a; font-family: var(--mono); font-size: 11px;
  font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 14px; border-radius: 0;
}
.guarantee { margin-top: 48px; text-align: center; font-family: var(--mono); font-size: 14px; letter-spacing: 0.08em; color: var(--fg-2); display: flex; align-items: center; justify-content: center; gap: 12px; }
.guarantee .accent { color: var(--accent); font-weight: 700; }

/* slider controls */
.ps-controls { display: flex; align-items: center; justify-content: center; gap: 22px; margin-top: 38px; }
.ps-arrow {
  width: 52px; height: 52px; border-radius: 0; flex-shrink: 0;
  border: 1px solid var(--hair); background: var(--ink-2); color: var(--fg);
  display: grid; place-items: center;
  transition: border-color .2s var(--ease), color .2s var(--ease), transform .15s var(--ease), opacity .2s var(--ease);
}
.band--surface .ps-arrow { background: var(--ink); }
.ps-arrow svg { width: 20px; height: 20px; }
.ps-arrow:hover:not(:disabled) { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.ps-arrow:active:not(:disabled) { transform: scale(.94); }
.ps-arrow:disabled { opacity: 0.28; cursor: default; }
.ps-dots { display: flex; align-items: center; gap: 9px; }
.ps-dot { width: 9px; height: 9px; border-radius: 0; padding: 0; border: 0; background: var(--hair); cursor: pointer; transition: background .25s var(--ease), width .3s var(--ease); }
.ps-dot:hover { background: var(--fg-3); }
.ps-dot.active { background: var(--accent); width: 28px; height: 5px; }
@media (max-width: 560px) { .ps-controls { gap: 14px; } }
@media (max-width: 900px) {
  .price-grid { grid-template-columns: 1fr; }
  .plan--premium:hover { transform: translateY(-4px); }
}

/* =====================================================================
   Contact
   ===================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; margin-top: 64px; align-items: start; }
.channels { display: flex; flex-direction: column; gap: 16px; }
.channel {
  display: flex; align-items: center; gap: 18px; padding: 22px 24px;
  border: 1px solid var(--hair); border-radius: 0; background: var(--ink-2);
  transition: border-color .2s var(--ease), background .2s var(--ease), transform .2s var(--ease);
}
.band--surface .channel { background: var(--ink); }
.channel:hover { border-color: var(--accent-line); transform: translateY(-2px); }
.channel .ci { width: 48px; height: 48px; border-radius: 0; display: grid; place-items: center; flex-shrink: 0; }
.channel .ci svg { width: 26px; height: 26px; }
.channel.wa .ci { background: var(--accent-muted); color: var(--accent); }
.channel.mail .ci { background: var(--surface); color: var(--fg-2); }
.channel .ct { display: flex; flex-direction: column; }
.channel .ct .k { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-3); }
.channel .ct .v { font-size: 19px; font-weight: 600; color: var(--fg); margin-top: 4px; font-family: var(--mono); }
.channel .go { margin-left: auto; color: var(--fg-3); width: 22px; transition: color .2s, transform .2s; }
.channel:hover .go { color: var(--accent); transform: translateX(3px); }
.contact-note { margin-top: 22px; font-size: 14px; color: var(--fg-3); line-height: 1.6; display: flex; gap: 12px; }
.contact-note .smile { width: 26px; flex-shrink: 0; margin-top: 2px; }

.cform { display: flex; flex-direction: column; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 9px; }
.field label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-3); }
.field input, .field textarea, .field select {
  background: var(--surface); border: 1px solid var(--hair); border-radius: 0;
  padding: 14px 16px; color: var(--fg); font-family: var(--font); font-size: 15px;
  outline: none; transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.field textarea { resize: vertical; min-height: 110px; }
.field input::placeholder, .field textarea::placeholder { color: var(--fg-4); }
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-muted);
}
.cform .btn { margin-top: 6px; justify-content: center; }
.form-ok {
  display: none; align-items: center; gap: 14px; padding: 22px 24px;
  border: 1px solid var(--accent-line); border-radius: 0; background: var(--accent-muted);
  font-size: 15px; color: var(--fg);
}
.form-ok.show { display: flex; }
.form-ok svg { width: 26px; color: var(--accent); flex-shrink: 0; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }

/* =====================================================================
   Footer
   ===================================================================== */
.site-footer { background: var(--ink); border-top: 1px solid var(--hair); padding: 56px 0 40px; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; flex-wrap: wrap; }
.footer-top .logo { height: 24px; }
.footer-claim { font-size: clamp(22px, 3vw, 34px); font-weight: 800; letter-spacing: -0.03em; max-width: 16ch; line-height: 1.05; }
.footer-bottom { margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--hair-soft); display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-family: var(--mono); font-size: 12px; color: var(--fg-4); letter-spacing: 0.05em; }
.footer-bottom a:hover { color: var(--fg-2); }

/* =====================================================================
   Hero variant: centered (data-hero="center")
   ===================================================================== */
html[data-hero="center"] .hero-grid { grid-template-columns: 1fr; text-align: center; min-height: auto; }
html[data-hero="center"] .hero h1 { max-width: 18ch; margin-left: auto; margin-right: auto; }
html[data-hero="center"] .hero .lead { margin-left: auto; margin-right: auto; }
html[data-hero="center"] .hero .eyebrow { justify-content: center; }
html[data-hero="center"] .hero .eyebrow::before { display: none; }
html[data-hero="center"] .hero-cta-row { justify-content: center; }
html[data-hero="center"] .hero-art { display: none; }
html[data-hero="center"] .statbar { max-width: 920px; margin-left: auto; margin-right: auto; }

/* Mobile hero */
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; display: flex; flex-direction: column; gap: 40px; }
  .hero-art { display: grid; order: -1; width: min(74vw, 300px); margin: 0 auto; }
  .hero-art .tick { font-size: 10px; }
  .statbar { grid-template-columns: 1fr; }
  .statbar .stat + .stat { border-left: 0; border-top: 1px solid var(--hair); padding-left: 8px; }
}
