/* ==========================================================================
   RMS LightStudio — Variant E "Rig Sheet"
   Implementation of "Variant E - Rig Sheet.dc.html" from the Claude Design
   project "DMX lighting website variants".
   ========================================================================== */

/* --------------------------------------------------------------------------
   Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Surfaces */
  --bg:            #0e0e12;
  --bg-alt:        #111117;
  --bg-raised:     #17171d;
  --line:          #26262f;
  --line-dashed:   #33333f;

  /* Ink */
  --ink:           #f2f2f5;
  --ink-2:         #e6e6ee;
  --ink-3:         #c9c9d4;
  --muted:         #9a9aa8;

  /* Accent */
  --accent:        #0a84ff;
  --accent-mid:    #0a6ad6;
  --accent-deep:   #0a4fb0;
  --warm:          #ffd27a;
  --ok:            #3ba55d;

  /* Type */
  --font-display:  'Archivo', system-ui, sans-serif;
  --font-body:     'IBM Plex Sans', system-ui, sans-serif;
  --font-mono:     'IBM Plex Mono', ui-monospace, monospace;

  /* Rhythm */
  --gutter:        26px;
  --maxw:          1280px;
  --section-y:     clamp(70px, 10vh, 130px);
  --radius:        16px;
  --radius-sm:     12px;
  --pill:          999px;
}

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

html {
  scroll-behavior: smooth;
  /* The header floats over the hero; anchored sections clear the sticky-ish top. */
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  /* `normal` CELOWO, tak jak w makiecie — nie jest to przeoczenie.
     Makieta nie ustawia line-height na body, a żaden z jej 22 nagłówków
     go nie deklaruje: wszystkie liczą się jako `normal`, czyli ~1.2 dla
     Archivo. Wpisana tu wcześniej wartość 1.5 dziedziczyła się do
     nagłówków i rozdymała je o połowę interlinii.
     Interlinię tekstu ciągłego ustawiają klasy .lede/.intro/.prose i inne
     — dokładnie tam, gdzie robi to makieta. */
  line-height: normal;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-width: 0;
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color .16s ease;
}
a:hover { color: var(--warm); }

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

:where(a, button, input, select, textarea):focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}
/* The design pins the field outline tight to the control. */
input:focus-visible,
select:focus-visible,
textarea:focus-visible { outline-offset: 1px; }

@keyframes rmsglow {
  from { opacity: .30; transform: translate(-50%, -50%) scale(1); }
  to   { opacity: .62; transform: translate(-50%, -50%) scale(1.06); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: .01ms !important;
  }
}

/* --------------------------------------------------------------------------
   Layout primitives
   -------------------------------------------------------------------------- */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gutter);
  width: 100%;
}

.section { padding-block: var(--section-y); }
.section--hairline { border-bottom: 1px solid var(--line); }
.section--top-hairline { border-top: 1px solid var(--line); }
.section--alt { background: var(--bg-alt); }
.section--tall { padding-block: clamp(80px, 12vh, 150px); }

/* A section whose backdrop is a photograph behind a gradient scrim. */
.section--photo {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.section--photo > .wrap { position: relative; }

.backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.backdrop--dim { opacity: .5; }

.scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 var(--radius-sm) 0;
  font-weight: 600;
}
.skip-link:focus {
  left: 0;
  color: #fff;
}

/* --------------------------------------------------------------------------
   Type scale
   -------------------------------------------------------------------------- */
.h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 7.6vw, 104px);
  line-height: 1.02;
  letter-spacing: -.04em;
  margin: 0 0 26px;
  max-width: 15ch;
  text-wrap: balance;
}

.h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 3.8vw, 50px);
  letter-spacing: -.03em;
  margin: 0 0 20px;
  text-wrap: balance;
}
.h2--tight { font-size: clamp(26px, 3.4vw, 44px); }

.h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -.01em;
  margin: 0 0 10px;
}
.h3--lg { font-size: 22px; text-wrap: balance; }
.h3--md { font-size: 20px; text-wrap: balance; }
.h3--xl { font-size: 24px; letter-spacing: -.015em; margin-bottom: 14px; }

.lede {
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.5;
  color: var(--ink-2);
  margin: 0 0 36px;
  max-width: 38ch;
}

.intro {
  margin: 0 0 clamp(40px, 6vh, 70px);
  color: var(--ink-3);
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.6;
  max-width: 56ch;
}
.intro--wide { max-width: 58ch; }

/* Monospaced eyebrow labels carry the "rig sheet" voice. */
.mono {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .22em;
  color: var(--muted);
  margin-bottom: 16px;
}
.mono--accent { color: var(--accent); }
.mono--warm   { color: var(--warm); }
.mono--tight  { letter-spacing: .16em; }
.mono--wide   { letter-spacing: .18em; }
.mono--label  { letter-spacing: .2em; }

.prose { margin: 0; color: var(--ink-3); line-height: 1.65; text-wrap: pretty; }
.prose--muted { color: var(--muted); }
.prose--sm { font-size: 15px; line-height: 1.6; }
.prose--loose { line-height: 1.7; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-block;
  border-radius: var(--pill);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 24px;
  text-align: center;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color .16s ease, border-color .16s ease, color .16s ease;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 30px;
}
.btn--primary:hover { background: var(--accent-mid); color: #fff; }

.btn--outline {
  border-color: rgba(242, 242, 245, .28);
  color: var(--ink);
  padding: 10px 18px;
  font-size: 14px;
  backdrop-filter: blur(10px);
}
.btn--outline:hover {
  border-color: var(--ink);
  color: var(--ink);
  background: rgba(242, 242, 245, .06);
}

.btn--quiet {
  border-color: var(--line);
  background: var(--bg);
  color: var(--ink);
}
.btn--quiet:hover { border-color: var(--muted); color: var(--ink); }

.btn--quiet-raised { background: var(--bg-raised); padding: 14px 20px; }

.btn--block { display: block; width: 100%; }

.btn--submit {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 15px 30px;
  font-weight: 700;
}
.btn--submit:hover { background: var(--accent-mid); }
.btn--submit[disabled] { opacity: .6; cursor: progress; }

.link-underline {
  color: var(--ink);
  border-bottom: 1px solid rgba(242, 242, 245, .35);
  padding-bottom: 3px;
  font-size: 16px;
}
.link-underline:hover { color: var(--warm); border-bottom-color: var(--warm); }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 30;
}
.site-header__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 26px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand { display: flex; align-items: center; gap: 10px; }
.brand__mark {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  overflow: hidden;
  background: #0c0c11;
  flex: none;
  box-shadow: inset 0 0 0 1px rgba(242, 242, 245, .1);
}
.brand__mark svg { width: 100%; height: 100%; }
.brand__name {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: .02em;
}
.brand__name b { font-weight: 800; }
.brand__name span { font-weight: 400; color: var(--ink-3); }

.header-actions { display: flex; align-items: center; gap: 14px; }

.lang {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 2px;
  border: 1px solid rgba(242, 242, 245, .22);
  border-radius: var(--pill);
  background: rgba(14, 14, 18, .4);
  backdrop-filter: blur(10px);
}
.lang__btn {
  font: 600 12px/1 var(--font-mono);
  letter-spacing: .12em;
  padding: 8px 12px;
  border-radius: var(--pill);
  border: none;
  cursor: pointer;
  background: transparent;
  color: var(--ink-3);
  transition: background-color .16s ease, color .16s ease;
}
.lang__btn:hover { color: var(--ink); }
.lang__btn[aria-pressed="true"] {
  background: var(--ink);
  color: var(--bg);
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
}
/* The blue bloom that breathes behind the headline. */
.hero__glow {
  position: absolute;
  left: 50%;
  top: 34%;
  width: 120vw;
  max-width: 1600px;
  aspect-ratio: 2 / 1;
  transform: translate(-50%, -50%);
  background: radial-gradient(closest-side, rgba(10, 132, 255, .26), rgba(10, 132, 255, 0) 72%);
  animation: rmsglow 9s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: -2;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(180deg,
    rgba(14, 14, 18, .58) 0%,
    rgba(14, 14, 18, .34) 32%,
    rgba(14, 14, 18, .95) 84%,
    var(--bg) 100%);
}
.hero__inner {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(104px, 15vh, 170px) var(--gutter) clamp(64px, 9vh, 88px);
  width: 100%;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: clamp(40px, 6vh, 64px);
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 26px;
  border-top: 1px solid rgba(242, 242, 245, .14);
  padding-top: 28px;
}
.stat { min-width: 0; }
.stat__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(30px, 3.6vw, 52px);
  letter-spacing: -.04em;
  line-height: 1;
}
.stat__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .18em;
  color: var(--muted);
  margin-top: 10px;
}

/* --------------------------------------------------------------------------
   Grids
   -------------------------------------------------------------------------- */
.grid { display: grid; gap: 20px; }
.grid--250 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.grid--260 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid--280 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

/* Cards floating on a photographic backdrop. */
.card-glass {
  background: rgba(23, 23, 29, .78);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}
.card-glass p {
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-2);
}
.card-glass .mono { margin-bottom: 18px; }

/* --------------------------------------------------------------------------
   Spec — fixture chips + panels
   -------------------------------------------------------------------------- */
/* Nagłówek sekcji stoi obok zdjęcia. `minmax(min(100%, 420px), 1fr)` zwija to
   do jednej kolumny, gdy zabraknie miejsca na dwie czytelne — bez własnego
   breakpointu. `min(100%, …)` jest tu konieczne: samo `minmax(420px, 1fr)`
   wymusiłoby 420 px także na węższym ekranie i rozepchnęło stronę w poziomie. */
.spec__head {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  margin-bottom: 44px;
}
.spec__head > * { min-width: 0; }

.spec__media {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.spec__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Przyciemnienie dołu kadru osadza zdjęcie na tle sekcji, zamiast urywać je
   twardą krawędzią. */
.spec__media-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 14, 18, 0) 55%, rgba(14, 14, 18, .45));
}

.spec__title { margin-bottom: 18px; max-width: 22ch; }
.spec__note {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
  max-width: 52ch;
}

.chips {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px;
  margin-bottom: 44px;
}
.chip {
  background: rgba(23, 23, 29, .7);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 26px;
}
.chip__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .16em;
  color: var(--accent);
  margin-bottom: 10px;
}
.chip__text { color: var(--ink-3); font-size: 14px; line-height: 1.55; }

.panel {
  background: var(--bg-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}
.panel__head {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 18px;
}
.panel__head .mono { margin-bottom: 0; }

/* Hairline-separated cell groups: the 1px gap shows the border colour through. */
.cellgrid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}
.cellgrid--modes {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 160px), 1fr));
}
.cell {
  background: var(--bg);
  padding: 18px 16px;
}

.mode {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mode__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -.01em;
}
.mode__bar { height: 3px; border-radius: 2px; background: var(--accent); }

.cell__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .16em;
  color: var(--accent);
  margin-bottom: 8px;
}
.cell__label--warm { color: var(--warm); }
.cell__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -.01em;
  margin-bottom: 6px;
}
.cell__text { color: var(--muted); font-size: 14px; line-height: 1.55; }

.panel__foot {
  border-top: 1px solid var(--line);
  margin-top: 18px;
  padding-top: 16px;
}
.panel__foot .mono { margin-bottom: 10px; }
.panel__foot p { margin: 0 0 12px; color: var(--ink-3); font-size: 15px; line-height: 1.6; }
.panel__foot p:last-child { margin: 0; color: var(--muted); font-size: 14px; }

/* --------------------------------------------------------------------------
   Inside the application — screenshots
   -------------------------------------------------------------------------- */
.inside__lede { margin-bottom: clamp(40px, 6vh, 68px); }
.inside__title { margin-bottom: 22px; max-width: 22ch; }

.shot-block { margin-bottom: clamp(44px, 7vh, 76px); }
.shot-block__copy { margin-bottom: 26px; max-width: 74ch; }
.shot-block__copy .h3 { margin-bottom: 10px; }

/* A flat, bordered screenshot — the "plate" treatment. */
.plate {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #000;
}
/* `height: auto` JEST KONIECZNE, nie jest ozdobnikiem. Atrybuty width/height
   w markupie działają jako podpowiedzi prezentacyjne: skoro CSS ustawia samą
   szerokość, wysokość zostaje przy dosłownej wartości atrybutu (860 px) i obraz
   jest zgnieciony. Dopiero `auto` pozwala przeglądarce wyliczyć proporcję
   z tych atrybutów — czyli daje jedno i drugie naraz: poprawny kształt
   ORAZ zarezerwowane miejsce, które zapobiega skakaniu układu przy ładowaniu. */
.plate img { width: 100%; height: auto; display: block; }

/* Two screenshot columns whose headings, copy and images line up across the
   row regardless of how the text wraps. */
.shot-pair {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  grid-template-rows: auto auto auto;
  gap: 12px 32px;
  margin-bottom: clamp(44px, 7vh, 76px);
}
.shot-pair > * {
  min-width: 0;
  display: grid;
  grid-row: span 3;
  grid-template-rows: subgrid;
  align-content: start;
}
.shot-pair .h3 { margin: 0; }
.shot-pair .prose { margin: 0 0 8px; }

/* The photographic booth mockup: a real photo of a Mac in a DJ booth with the
   screenshot composited into the display area. Below 700px the housing is
   dropped — the screen would be too small to read — and the flat plate shows
   instead. This mirrors MacFrame's `MIN_VW.full` gate, in CSS. */
.macframe { width: 100%; }
.macframe__booth { display: none; }
.macframe__bare { display: block; }

@media (min-width: 700px) {
  .macframe__booth { display: block; }
  .macframe__bare { display: none; }
}

.booth {
  position: relative;
  width: 100%;
  aspect-ratio: 900 / 506;
}
.booth__plate {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.booth__screen {
  position: absolute;
  left: 29.1%;
  top: 18.4%;
  width: 42.1%;
  height: 45.8%;
  background: #000;
  overflow: hidden;
  perspective: 1500px;
  perspective-origin: 50% 45%;
}
.booth__shot {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* Sits the screenshot on the plane of the photographed display. */
  transform: rotateX(1.6deg) rotateY(-2.2deg) scale(.982);
  transform-origin: 50% 50%;
}
.booth__glare {
  position: absolute;
  inset: 0;
  background: linear-gradient(118deg, rgba(255, 255, 255, .05) 0%, rgba(255, 255, 255, 0) 38%);
  pointer-events: none;
}

/* Phone remote */
.remote {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: clamp(40px, 6vh, 64px);
}
.remote p { margin: 0 0 14px; }
.remote p:last-child { margin: 0; }

.phone {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}
.phone__body {
  position: relative;
  aspect-ratio: 1206 / 2622;
  border-radius: 44px;
  padding: 8px;
  background: linear-gradient(160deg, #3a3a46, #1a1a20 40%, #2c2c36);
  box-shadow: 0 34px 70px rgba(0, 0, 0, .62);
}
.phone__screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 37px;
  overflow: hidden;
  background: #0b0b0f;
}
.phone__scroll {
  position: absolute;
  inset: 0;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  background: var(--bg);
  padding: 46px 0 26px;
}
.phone__scroll::-webkit-scrollbar { display: none; }
.phone__scroll img { width: 100%; height: auto; }
.phone__notch {
  position: absolute;
  top: 11px;
  left: 50%;
  transform: translateX(-50%);
  width: 31%;
  height: 26px;
  border-radius: 14px;
  background: #000;
  pointer-events: none;
}
.phone__bar {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 36%;
  height: 4px;
  border-radius: 2px;
  background: rgba(242, 242, 245, .55);
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   Visuals
   -------------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.split__cell { background: rgba(14, 14, 18, .86); padding: 26px; }
.split__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(26px, 2.6vw, 34px);
  letter-spacing: -.03em;
  line-height: 1;
  margin-bottom: 14px;
}
.split__cell .mono { margin-bottom: 14px; padding-top: 10px; }

/* --------------------------------------------------------------------------
   Six things that matter
   -------------------------------------------------------------------------- */
.matter {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr));
  gap: 1px;
}
.matter__cell { background: var(--bg); padding: 26px; }

/* --------------------------------------------------------------------------
   Where it runs
   -------------------------------------------------------------------------- */
.venues {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(46%, 1fr));
  gap: 2px;
  background: var(--line);
}
.venue { position: relative; aspect-ratio: 16 / 10; }
.venue img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.venue__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 14, 18, .15) 45%, rgba(14, 14, 18, .92) 100%);
}
.venue__name {
  position: absolute;
  left: var(--gutter);
  bottom: 24px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(20px, 2vw, 26px);
  letter-spacing: -.01em;
}

/* --------------------------------------------------------------------------
   Pricing
   -------------------------------------------------------------------------- */
.pricing__note { margin: 0 0 44px; color: var(--muted); }

.price {
  background: var(--bg-raised);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.price--featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(10, 132, 255, .25), 0 30px 70px rgba(10, 132, 255, .12);
}
.price__badge {
  position: absolute;
  top: -11px;
  left: 26px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .18em;
  padding: 5px 10px;
  border-radius: 5px;
}
.price .mono { margin-bottom: 24px; }
.price__amount {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 40px;
  letter-spacing: -.03em;
  line-height: 1;
}
.price__unit { color: var(--muted); font-size: 14px; margin: 8px 0 20px; }
.price__unit span { color: var(--ink); }
.price__terms { margin: 0 0 22px; color: var(--ink-3); line-height: 1.6; }
.price__terms--save { color: var(--warm); }
.price__list {
  display: grid;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-3);
  border-top: 1px solid var(--line);
  padding-top: 20px;
  margin-bottom: 26px;
  list-style: none;
  padding-left: 0;
}
.price .btn { margin-top: auto; }

.rule {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 48px 0 22px;
}
.rule::before,
.rule::after {
  content: "";
  height: 1px;
  background: var(--line);
  flex: 1;
}
.rule .mono { margin-bottom: 0; }

.deploy {
  background: var(--bg-alt);
  border: 1px dashed var(--line-dashed);
  border-radius: 18px;
  padding: 26px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
  align-items: center;
}
.deploy .mono { margin-bottom: 14px; }
.deploy__price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 30px;
  letter-spacing: -.02em;
}

/* --------------------------------------------------------------------------
   Order form
   -------------------------------------------------------------------------- */
.order__inner { max-width: 840px; }
.order__lede { margin: 0 0 40px; color: var(--ink-3); line-height: 1.65; max-width: 52ch; }

.form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.form__full { grid-column: 1 / -1; }

.label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--muted);
  margin-bottom: 8px;
}

.control {
  width: 100%;
  background: rgba(14, 14, 18, .8);
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 13px 14px;
  border-radius: 10px;
  font-size: 15px;
  transition: border-color .16s ease;
}
.control:hover { border-color: var(--line-dashed); }
textarea.control { resize: vertical; }
.control::placeholder { color: var(--muted); }

.consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.consent input {
  margin-top: 3px;
  width: 17px;
  height: 17px;
  accent-color: var(--accent);
  flex: none;
}
.consent label { color: var(--muted); font-size: 14px; line-height: 1.6; }

.form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.form__error {
  color: #ff8a8a;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.thanks {
  border: 1px solid var(--ok);
  background: rgba(59, 165, 93, .08);
  border-radius: var(--radius);
  padding: 30px;
}
.thanks h3 { font-size: 22px; margin: 0 0 12px; }
.thanks p { margin: 0; color: var(--ink-3); line-height: 1.65; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.site-footer__top {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 48px var(--gutter) 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
  color: var(--muted);
  font-size: 13px;
}

.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand__mark {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  overflow: hidden;
  background: #0c0c11;
  flex: none;
  box-shadow: inset 0 0 0 1px rgba(242, 242, 245, .09);
}
.footer-brand__mark svg { width: 100%; height: 100%; }
.footer-brand__text { min-width: 0; }
.footer-brand__name {
  font-family: var(--font-display);
  font-size: 23px;
  color: var(--ink);
  letter-spacing: -.01em;
}
.footer-brand__name b { font-weight: 800; }
.footer-brand__name span { color: var(--muted); font-weight: 400; }
/* Justified so the tagline sets flush to the wordmark above it. */
.footer-brand__tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .2em;
  color: var(--muted);
  margin-top: 7px;
  text-align: justify;
  text-align-last: justify;
}

.footer-contact { display: grid; gap: 10px; justify-items: start; }
.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  color: var(--ink);
}
.footer-contact a:hover { color: var(--accent); }
.footer-contact svg { flex: none; }

.site-footer__bottom {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter) 34px;
}
.site-footer__legal {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
}
.site-footer__legal a,
.site-footer__legal span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--muted);
}
.site-footer__legal a:hover { color: var(--warm); }

/* --------------------------------------------------------------------------
   Utilities
   -------------------------------------------------------------------------- */
.u-mb-0  { margin-bottom: 0; }
.u-mb-40 { margin-bottom: 40px; }
.is-hidden { display: none !important; }
.u-mb-12 { margin-bottom: 12px; }
.u-mb-14 { margin-bottom: 14px; }

/* "Six things" runs flush into "Where it runs": top padding only. */
.section--pt { padding-block: var(--section-y) 0; }
.venues__head { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter) 34px; }

/* --------------------------------------------------------------------------
   Small screens

   The design carries no mobile spec for the header: at phone widths the
   wordmark, the language toggle and the CTA pill cannot share one row without
   wrapping mid-word. The header CTA drops out — the hero repeats it a few
   hundred pixels below — and the wordmark stays whole.
   -------------------------------------------------------------------------- */
.brand__name { white-space: nowrap; }

@media (max-width: 560px) {
  .site-header__inner { padding: 20px var(--gutter); }
  .header-actions > .btn--outline { display: none; }
}

/* Pułapka na boty — musi być niewidoczna dla człowieka, ale NIE przez
   `display:none` ani `hidden`: część automatów pomija pola, których
   przeglądarka nie renderuje, i wtedy pułapka nic nie łapie. Wypychamy ją
   więc poza ekran, zostawiając w drzewie układu. */
.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* --------------------------------------------------------------------------
   Strona dokumentu (polityka prywatności)

   Osobny, wąski układ tekstowy — reszta witryny jest marketingowa i szeroka,
   a dokument prawny czyta się liniowo i potrzebuje krótkiej miary wiersza.
   -------------------------------------------------------------------------- */
.doc {
  max-width: 74ch;
  margin: 0 auto;
  padding: clamp(120px, 18vh, 180px) var(--gutter) clamp(70px, 10vh, 120px);
}
.doc__meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .18em;
  color: var(--muted);
  margin-bottom: 16px;
}
.doc h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(34px, 5vw, 60px);
  letter-spacing: -.03em;
  margin: 0 0 20px;
  text-wrap: balance;
}
.doc__lead {
  color: var(--ink-2);
  font-size: clamp(17px, 1.6vw, 19px);
  line-height: 1.6;
  margin: 0 0 clamp(40px, 6vh, 64px);
}
.doc h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(22px, 2.4vw, 28px);
  letter-spacing: -.02em;
  margin: clamp(40px, 6vh, 60px) 0 14px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  text-wrap: balance;
}
.doc h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -.01em;
  margin: 26px 0 8px;
}
.doc p,
.doc li { color: var(--ink-3); line-height: 1.7; }
.doc p { margin: 0 0 14px; }
.doc ul { margin: 0 0 14px; padding-left: 22px; }
.doc li { margin-bottom: 7px; }
.doc strong { color: var(--ink); font-weight: 600; }

/* Tabela „co zbieramy i po co" — na wąskim ekranie przewija się we własnym
   kontenerze, żeby nie rozpychać całej strony w poziomie. */
.doc__table-wrap { overflow-x: auto; margin: 0 0 18px; }
.doc table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 460px;
}
.doc th,
.doc td {
  text-align: left;
  vertical-align: top;
  padding: 11px 14px 11px 0;
  border-bottom: 1px solid var(--line);
  line-height: 1.55;
}
.doc th {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--muted);
  font-weight: 400;
  white-space: nowrap;
}
.doc td { color: var(--ink-3); }

/* MIEJSCA DO UZUPEŁNIENIA — celowo krzykliwe. Dokument prawny z niewypełnioną
   luką wygląda z daleka tak samo jak gotowy; ten styl ma sprawić, że nie da
   się go opublikować przez nieuwagę. Usunąć razem z ostatnią luką. */
.todo {
  display: inline-block;
  background: rgba(255, 210, 122, .14);
  border: 1px dashed var(--warm);
  color: var(--warm);
  border-radius: 6px;
  padding: 1px 8px;
  font-family: var(--font-mono);
  font-size: .86em;
  letter-spacing: .04em;
}
.doc__notice {
  background: rgba(255, 210, 122, .08);
  border: 1px dashed var(--warm);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin: 0 0 clamp(36px, 5vh, 52px);
}
.doc__notice p { margin: 0; color: var(--warm); }
.doc__notice p + p { margin-top: 10px; }

.doc__back {
  display: inline-block;
  margin-top: clamp(40px, 6vh, 60px);
  padding-top: 26px;
  border-top: 1px solid var(--line);
  width: 100%;
  color: var(--muted);
}
.doc__back a { color: var(--ink); }
.doc__back a:hover { color: var(--warm); }
