:root {
  --paper: #f4efe5;
  --paper-light: #fbf8f1;
  --ink: #10263b;
  --ink-soft: #405264;
  --blue: #315efb;
  --blue-dark: #1d43c7;
  --burgundy: #7d2e3c;
  --amber: #d58b2c;
  --line: rgba(16, 38, 59, 0.18);
  --line-strong: rgba(16, 38, 59, 0.42);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1440px;
  --gutter: clamp(1.25rem, 4vw, 4.5rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 20;
  opacity: .3;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.035'/%3E%3C/svg%3E");
}
a { color: inherit; }
button, input { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }
::selection { background: var(--blue); color: #fff; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 100; padding: .75rem 1rem; background: var(--ink); color: #fff; }
.skip-link:focus { top: 1rem; }
.scroll-progress { position: fixed; inset: 0 0 auto; height: 2px; z-index: 80; pointer-events: none; }
.scroll-progress span { display: block; width: 100%; height: 100%; background: var(--blue); transform: scaleX(0); transform-origin: left center; will-change: transform; }

.site-header {
  min-height: 5.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gutter);
  border-bottom: 1px solid var(--line);
  background: rgba(244, 239, 229, .9);
  backdrop-filter: blur(18px);
  position: sticky;
  top: 0;
  z-index: 30;
}
.brand { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; }
.brand-mark {
  width: 2.15rem;
  height: 2.15rem;
  border: 1px solid var(--ink);
  display: grid;
  place-items: center;
  position: relative;
  background: var(--paper-light) url("/assets/veriteca-mark.svg") center / 1.55rem 1.55rem no-repeat;
}
.brand-mark::before, .brand-mark::after { display: none; }
.brand-mark span { visibility: hidden; }
.brand-name { font: 700 1.35rem/1 var(--serif); letter-spacing: -.02em; }
.site-nav { display: flex; align-items: center; gap: clamp(1rem, 2.2vw, 2.25rem); font-size: .84rem; font-weight: 650; }
.site-nav a { text-decoration: none; }
.site-nav a:not(.nav-cta)::after { content: ""; display: block; width: 0; height: 1px; background: var(--blue); transition: width .2s ease; }
.site-nav a:hover::after, .site-nav a:focus-visible::after { width: 100%; }
.locale-link { padding-left: 1rem; border-left: 1px solid var(--line); }
.nav-cta { padding: .72rem 1rem; border: 1px solid var(--ink); background: var(--ink); color: #fff; }
.nav-cta:hover { background: var(--blue); border-color: var(--blue); }
.menu-toggle { display: none; border: 0; background: none; padding: .5rem; font-weight: 700; }

.hero {
  min-height: calc(100vh - 5.5rem);
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(32rem, 1.06fr);
  border-bottom: 1px solid var(--ink);
  overflow: hidden;
}
.hero-copy { padding: clamp(4rem, 8vw, 8rem) var(--gutter) 4rem; align-self: center; position: relative; z-index: 2; }
.eyebrow, .kicker { margin: 0 0 1.4rem; text-transform: uppercase; letter-spacing: .14em; font-size: .72rem; font-weight: 800; }
.eyebrow { display: flex; justify-content: space-between; max-width: 42rem; border-top: 1px solid var(--ink); padding-top: .75rem; }
.eyebrow sup { color: var(--blue); }
.hero h1 {
  margin: 0;
  max-width: 49rem;
  font: 500 clamp(3.5rem, 6.1vw, 7.4rem)/.9 var(--serif);
  letter-spacing: -.065em;
}
.hero h1 em { color: var(--burgundy); font-weight: 500; }
.hero-intro { max-width: 39rem; margin: 2rem 0 2.3rem; font-size: clamp(1.05rem, 1.35vw, 1.28rem); color: var(--ink-soft); }
.waitlist-form { width: min(100%, 42rem); }
.form-row { display: flex; border-bottom: 2px solid var(--ink); position: relative; }
.form-row input[type="email"] { flex: 1; min-width: 0; border: 0; outline: 0; background: transparent; color: var(--ink); padding: 1rem .4rem; }
.form-row input[type="email"]:focus { box-shadow: inset 0 -3px 0 var(--blue); }
.form-row input::placeholder { color: #77818a; }
.form-row button { border: 0; background: transparent; font-weight: 800; cursor: pointer; padding: .85rem .35rem .85rem 1.5rem; white-space: nowrap; }
.form-row button span { color: var(--blue); margin-left: .4rem; }
.form-row button:hover, .form-row button:focus-visible { color: var(--blue); }
.form-row button:disabled { opacity: .55; cursor: wait; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; }
.form-note, .form-status { margin: .65rem 0 0; font-size: .75rem; color: var(--ink-soft); }
.form-status { min-height: 1.2em; font-weight: 700; color: var(--blue-dark); }
.form-status[data-state="error"] { color: var(--burgundy); }

.hero-visual {
  min-width: 0;
  margin: 0;
  position: relative;
  min-height: 42rem;
  background:
    radial-gradient(circle at 68% 44%, rgba(49,94,251,.2), transparent 31%),
    radial-gradient(circle at 24% 76%, rgba(125,46,60,.19), transparent 28%),
    #0a1d30;
  overflow: hidden;
  isolation: isolate;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  box-shadow: inset 4rem 0 8rem rgba(244,239,229,.2), inset 0 0 7rem rgba(4,15,25,.3);
}
.hero-fallback { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 56% center; transition: opacity .8s ease, transform 1.2s ease; }
.hero-visual[data-scene-ready="true"] .hero-fallback { opacity: 0; transform: scale(1.025); }
.evidence-scene { position: absolute; inset: 0; z-index: 2; opacity: 0; overflow: hidden; cursor: crosshair; transition: opacity .75s ease; }
.hero-visual[data-scene-ready="true"] .evidence-scene { opacity: 1; }
.evidence-canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.scene-chrome { position: absolute; inset: clamp(1.3rem, 3vw, 3rem) clamp(1.2rem, 3vw, 3rem) auto; z-index: 2; display: flex; justify-content: space-between; gap: 1rem; color: #dce4ff; text-transform: uppercase; letter-spacing: .13em; font-size: .62rem; font-weight: 800; pointer-events: none; }
.scene-chrome p { margin: 0; }
.scene-status { display: flex; align-items: center; gap: .55rem; }
.scene-status i { width: .48rem; height: .48rem; border-radius: 50%; background: #92a8ff; box-shadow: 0 0 0 .28rem rgba(111,140,255,.14); animation: scene-pulse 2.4s ease-in-out infinite; }
.scene-count span { color: #fff; font-family: var(--serif); font-size: 1rem; margin-right: .35rem; }
.scene-caption { position: absolute; z-index: 2; left: clamp(1.2rem, 3vw, 3rem); bottom: clamp(1.2rem, 3vw, 3rem); width: min(17rem, calc(50% - 2rem)); color: #fff; pointer-events: none; }
.scene-caption::before { content: ""; display: block; width: 3rem; height: 2px; margin-bottom: .75rem; background: #718dff; }
.scene-caption span, .scene-caption small { display: block; }
.scene-caption span { font: 500 1rem/1.25 var(--serif); }
.scene-caption small { margin-top: .28rem; color: #aebbc8; font-size: .63rem; }
@keyframes scene-pulse { 50% { opacity: .45; transform: scale(.82); } }
.hero-visual figcaption {
  position: absolute;
  z-index: 4;
  right: clamp(1.2rem, 3vw, 3rem);
  bottom: clamp(1.2rem, 3vw, 3rem);
  width: min(19rem, calc(100% - 2.4rem));
  background: rgba(251,248,241,.93);
  border-top: 3px solid var(--blue);
  padding: 1rem 1.15rem;
  box-shadow: 0 1rem 3rem rgba(16,38,59,.12);
}
.hero-visual figcaption b, .hero-visual figcaption span { display: block; }
.hero-visual figcaption b { font-family: var(--serif); font-size: 1.1rem; }
.hero-visual figcaption span { margin-top: .2rem; font-size: .78rem; color: var(--ink-soft); }

.hero-copy > * { animation: hero-enter .75s cubic-bezier(.2,.75,.2,1) both; }
.hero-copy > :nth-child(2) { animation-delay: .08s; }
.hero-copy > :nth-child(3) { animation-delay: .16s; }
.hero-copy > :nth-child(4) { animation-delay: .24s; }
@keyframes hero-enter { from { opacity: 0; transform: translateY(1.4rem); } }

.proof-strip { display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: 1px solid var(--ink); background: var(--paper-light); }
.proof-strip span { padding: 1rem var(--gutter); border-right: 1px solid var(--line); font-size: .73rem; font-weight: 700; }
.proof-strip span:last-child { border-right: 0; }
.proof-strip b { color: var(--blue); margin-right: .6rem; }

.section { padding: clamp(5rem, 9vw, 9rem) var(--gutter); border-bottom: 1px solid var(--ink); }
.section-heading { max-width: 58rem; margin-bottom: clamp(3rem, 6vw, 6rem); }
.section-heading h2, .waitlist-section h2 {
  margin: 0;
  font: 500 clamp(3rem, 6vw, 6.5rem)/.94 var(--serif);
  letter-spacing: -.055em;
}
.section-heading > p:last-child { max-width: 43rem; margin: 1.5rem 0 0; font-size: 1.1rem; color: var(--ink-soft); }
.split-heading { max-width: none; display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(20rem, .6fr); align-items: end; gap: 4rem; }
.split-heading > p:last-child { margin: 0 0 .6rem; }

.problem { background: var(--ink); color: var(--paper-light); }
.problem .section-heading > p:last-child { color: #bdc6ce; }
.problem .kicker { color: #b9c8ff; }
.vignettes { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.28); border-bottom: 1px solid rgba(255,255,255,.28); }
html[lang="pl"] .vignettes { grid-template-columns: repeat(4, 1fr); }
.vignettes article { min-height: 23rem; padding: 2rem clamp(1.4rem, 3vw, 3rem) 2.5rem 0; margin-right: clamp(1.4rem, 3vw, 3rem); border-right: 1px solid rgba(255,255,255,.24); display: flex; flex-direction: column; }
.vignettes article:last-child { border-right: 0; margin-right: 0; }
.folio { font-size: .68rem; letter-spacing: .13em; text-transform: uppercase; color: #b9c8ff; }
.vignettes h3 { margin: auto 0 1rem; font: 500 clamp(2.1rem, 3vw, 3.4rem)/1 var(--serif); }
.vignettes p:not(.folio) { color: #d2d8dc; }
.vignettes span { display: block; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.18); font-size: .78rem; font-weight: 800; }
.problem-close { max-width: 63rem; margin: 4rem 0 0 auto; font: 400 clamp(1.6rem, 2.8vw, 3rem)/1.2 var(--serif); color: #d2d8dc; }
.problem-close strong { color: #fff; }

.governance { background: #e8e1d5; }
.governance .section-heading { max-width: none; }
.governance .kicker { color: var(--blue-dark); }
.governance-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--ink); background: var(--ink); gap: 1px; }
.governance-grid article { min-height: 27rem; padding: clamp(1.6rem, 3vw, 3rem); display: flex; flex-direction: column; background: var(--paper-light); position: relative; overflow: hidden; }
.governance-grid article::before { content: ""; position: absolute; inset: 0 0 auto; height: .35rem; background: var(--blue); }
.governance-grid article:nth-child(2)::before { background: var(--burgundy); }
.governance-grid article:nth-child(3)::before { background: var(--ink); }
.pillar-index { margin: 0 0 auto; padding-bottom: 2.5rem; color: var(--blue-dark); text-transform: uppercase; letter-spacing: .12em; font-size: .68rem; font-weight: 800; }
.governance-grid article:nth-child(2) .pillar-index { color: var(--burgundy); }
.governance-grid article:nth-child(3) .pillar-index { color: var(--ink); }
.governance-grid h3 { margin: 0 0 1rem; font: 500 clamp(2rem, 3vw, 3.35rem)/1 var(--serif); letter-spacing: -.04em; }
.governance-grid article > p:not(.pillar-index) { margin: 0; color: var(--ink-soft); }
.governance-grid article > span { display: block; margin-top: 2.5rem; padding-top: 1rem; border-top: 1px solid var(--line); font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.governance-close { max-width: 70rem; margin: clamp(3rem, 6vw, 6rem) 0 0 auto; font: 400 clamp(1.7rem, 3vw, 3.3rem)/1.18 var(--serif); color: var(--ink-soft); }
.governance-close strong { color: var(--ink); }

.privacy-section { background: var(--paper-light); }
.privacy-dial { display: grid; grid-template-columns: minmax(19rem, .65fr) minmax(0, 1.35fr); border: 1px solid var(--ink); }
.dial-tabs { display: flex; flex-direction: column; height: 30rem; background: var(--paper); }
.dial-tabs button { flex: 0 0 10rem; min-height: 10rem; border: 0; border-bottom: 1px solid var(--line); background: transparent; text-align: left; display: grid; grid-template-columns: 3rem 1fr; gap: 1rem; align-items: center; padding: 1.5rem; cursor: pointer; }
.dial-tabs button:last-child { border-bottom: 0; }
.dial-tabs button:hover { background: rgba(49,94,251,.05); }
.dial-tabs button[aria-selected="true"] { background: var(--ink); color: #fff; }
.mode-number { font: 500 1.35rem var(--serif); color: var(--blue); }
.dial-tabs button[aria-selected="true"] .mode-number { color: #9fb3ff; }
.dial-tabs b, .dial-tabs small { display: block; }
.dial-tabs b { font: 500 1.35rem var(--serif); }
.dial-tabs small { margin-top: .25rem; font-size: .69rem; text-transform: uppercase; letter-spacing: .11em; opacity: .72; }
.dial-panels { min-height: 30rem; background: var(--paper-light); }
.dial-panels article { min-height: 30rem; padding: clamp(2.5rem, 5vw, 5rem); display: flex; flex-direction: column; }
.dial-panels article[hidden] { display: none; }
.mode-status { margin: 0 0 auto; font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; }
.mode-status i { width: .6rem; height: .6rem; border-radius: 50%; background: var(--blue); display: inline-block; margin-right: .6rem; box-shadow: 0 0 0 .3rem rgba(49,94,251,.12); }
.dial-panels h3 { max-width: 49rem; margin: 3rem 0 1rem; font: 500 clamp(2.3rem, 4.4vw, 4.8rem)/.98 var(--serif); letter-spacing: -.04em; }
.dial-panels article > p:not(.mode-status) { max-width: 44rem; margin: 0; color: var(--ink-soft); font-size: 1.06rem; }
.dial-panels dl { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin: 3rem 0 0; background: var(--line); border: 1px solid var(--line); }
.dial-panels dl div { padding: 1rem; background: var(--paper-light); }
.dial-panels dt { font-size: .66rem; text-transform: uppercase; letter-spacing: .09em; color: var(--ink-soft); }
.dial-panels dd { margin: .4rem 0 0; font: 500 1.55rem var(--serif); }

.receipts { background: var(--paper); }
.receipt-heading { margin-left: auto; text-align: right; }
.receipt-heading > p:last-child { margin-left: auto; }
.receipt-demo { max-width: 78rem; margin: 0 auto; border: 1px solid var(--ink); background: #fff; box-shadow: 1.6rem 1.6rem 0 rgba(16,38,59,.08); }
.demo-toolbar { min-height: 3.5rem; display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; padding: 0 1.2rem; border-bottom: 1px solid var(--line); background: #f7f4ed; font-size: .72rem; }
.demo-toolbar > span { display: flex; gap: .35rem; }
.demo-toolbar i { width: .55rem; height: .55rem; border-radius: 50%; border: 1px solid var(--line-strong); }
.demo-toolbar b { text-align: center; font-family: var(--serif); }
.demo-toolbar small { text-align: right; color: var(--ink-soft); }
.demo-grid { display: grid; grid-template-columns: 1.5fr .5fr; min-height: 34rem; }
.answer-pane { padding: clamp(2rem, 4vw, 4rem); }
.question-label, .answer-label { margin: 0 0 .45rem; font-size: .66rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; color: var(--blue-dark); }
.question { margin: 0 0 3rem; font: 500 clamp(1.6rem, 2.8vw, 2.7rem)/1.08 var(--serif); }
.answer-label { color: var(--burgundy); }
.answer { margin: 0; max-width: 45rem; font: 400 clamp(1.3rem, 2vw, 1.85rem)/1.45 var(--serif); }
.answer sup { color: var(--blue); font: 800 .7rem var(--sans); padding-left: .15rem; }
.sources { margin-top: 3rem; border-top: 1px solid var(--line); }
.sources p { display: grid; grid-template-columns: 2rem 1fr auto; gap: .8rem; align-items: center; margin: 0; padding: .85rem 0; border-bottom: 1px solid var(--line); font-size: .75rem; }
.sources sup { color: var(--blue); font-weight: 800; }
.sources span b { font-family: var(--serif); font-size: .9rem; }
.sources em { font-style: normal; color: var(--blue-dark); font-weight: 800; }
.egress-pane { padding: 1.5rem; color: #fff; background: var(--ink); display: flex; flex-direction: column; }
.receipt-head { display: flex; justify-content: space-between; gap: 1rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(255,255,255,.2); font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; }
.receipt-seal { display: flex; align-items: center; gap: 1rem; margin: 2.5rem 0; }
.receipt-seal > span { width: 4.7rem; height: 4.7rem; display: grid; place-items: center; border: 1px solid #9fb3ff; color: #b9c8ff; border-radius: 50%; font: 500 2.5rem var(--serif); }
.receipt-seal p { margin: 0; color: #c8d0d7; font-size: .73rem; }
.receipt-seal b { display: block; color: #fff; font: 500 1.25rem var(--serif); }
.egress-pane dl { margin: 0; }
.egress-pane dl div { display: flex; justify-content: space-between; gap: 1rem; padding: .75rem 0; border-top: 1px solid rgba(255,255,255,.16); font-size: .72rem; }
.egress-pane dd { margin: 0; font-weight: 800; }
.verified { color: #9fb3ff; }
.receipt-foot { margin: auto 0 0; padding-top: 2rem; font: 400 1rem/1.4 var(--serif); color: #c8d0d7; }
.receipt-foot strong { color: #fff; }

.principles { background: var(--paper-light); }
.principle-list { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--ink); }
.principle-list li { display: grid; grid-template-columns: minmax(5rem, .22fr) 1fr; gap: 2rem; padding: 2rem 0; border-bottom: 1px solid var(--line); }
.principle-list > li > span { color: var(--blue); font: 500 1.5rem var(--serif); }
.principle-list h3 { margin: 0 0 .3rem; font: 500 clamp(1.55rem, 2.2vw, 2.2rem) var(--serif); }
.principle-list p { max-width: 46rem; margin: 0; color: var(--ink-soft); }

.motion-ready [data-reveal] {
  opacity: 0;
  transform: translateY(2.25rem);
  transition: opacity .72s ease, transform .82s cubic-bezier(.2,.75,.2,1);
  transition-delay: var(--reveal-delay, 0ms);
}
.motion-ready [data-reveal="left"] { transform: translateX(-2rem); }
.motion-ready [data-reveal="right"] { transform: translateX(2rem); }
.motion-ready [data-reveal].is-revealed { opacity: 1; transform: none; }
.motion-ready [data-reveal-stagger] > * {
  opacity: 0;
  transform: translateY(1.6rem);
  transition: opacity .6s ease, transform .7s cubic-bezier(.2,.75,.2,1);
  transition-delay: calc(var(--reveal-index, 0) * 90ms);
}
.motion-ready [data-reveal-stagger].is-revealed > * { opacity: 1; transform: none; }
.dial-panels article:not([hidden]) { animation: panel-enter .48s cubic-bezier(.2,.75,.2,1) both; }
@keyframes panel-enter { from { opacity: 0; transform: translateX(1.25rem); } }
.motion-ready .receipt-demo.is-revealed .sources p { animation: citation-enter .58s ease both; animation-delay: calc(.3s + var(--citation-index, 0) * 140ms); }
.motion-ready .receipt-demo.is-revealed .egress-pane dl div { animation: citation-enter .5s ease both; animation-delay: calc(.48s + var(--citation-index, 0) * 90ms); }
@keyframes citation-enter { from { opacity: 0; transform: translateX(.8rem); } }

.waitlist-section { display: grid; grid-template-columns: 1.1fr .9fr; gap: 5rem; align-items: end; padding: clamp(5rem, 9vw, 9rem) var(--gutter); color: #fff; background: var(--blue); }
.waitlist-section .kicker { color: #d9e0ff; }
.waitlist-section > div > p:last-child { max-width: 35rem; color: #e6eaff; }
.footer-form { margin-bottom: .8rem; }
.footer-form .form-row { border-color: #fff; }
.footer-form input[type="email"] { color: #fff; }
.footer-form input::placeholder { color: #d2d9ff; }
.footer-form button { color: #fff; }
.footer-form button span { color: #fff; }
.footer-form .form-note, .footer-form .form-status { color: #e6eaff; }

.site-footer { display: grid; grid-template-columns: 1fr auto; gap: 3rem; padding: 3.5rem var(--gutter) 2rem; color: #fff; background: #091a2a; }
.footer-brand .brand-mark { color: var(--ink); }
.site-footer > div:first-child > p { margin: .8rem 0 0; font-family: var(--serif); color: #c5cdd4; }
.footer-links { display: flex; gap: 2rem; align-items: start; font-size: .78rem; }
.footer-links a { text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.38); }
.footer-links a:hover { color: #b9c8ff; }
.copyright { grid-column: 1 / -1; margin: 2rem 0 0; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,.16); font-size: .68rem; color: #9daab5; }

.privacy-page main { max-width: 74rem; margin: 0 auto; padding: clamp(4rem, 9vw, 8rem) var(--gutter); }
.privacy-page h1 { max-width: 60rem; margin: 0; font: 500 clamp(3.6rem, 7vw, 7rem)/.92 var(--serif); letter-spacing: -.055em; }
.privacy-page .lede { max-width: 48rem; margin: 2rem 0 5rem; font-size: 1.2rem; color: var(--ink-soft); }
.policy-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--ink); }
.policy-grid section { padding: 2rem 3rem 2rem 0; margin-right: 3rem; border-bottom: 1px solid var(--line); }
.policy-grid section:nth-child(odd) { border-right: 1px solid var(--line); }
.policy-grid h2 { margin: 0 0 1rem; font: 500 1.7rem var(--serif); }
.policy-grid p { color: var(--ink-soft); }
.policy-grid a { color: var(--blue-dark); }
.policy-meta { margin-top: 4rem; padding-top: 1rem; border-top: 1px solid var(--ink); font-size: .75rem; color: var(--ink-soft); }

@media (max-width: 980px) {
  .site-header { min-height: 4.7rem; }
  .menu-toggle { display: flex; align-items: center; gap: .6rem; }
  .menu-toggle i, .menu-toggle i::before { width: 1.1rem; height: 1px; background: currentColor; display: block; content: ""; }
  .menu-toggle i::before { transform: translateY(.32rem); }
  .site-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0; background: var(--paper-light); border-bottom: 1px solid var(--ink); padding: .5rem var(--gutter) 1.25rem; }
  .site-nav[data-open="true"] { display: flex; }
  .site-nav a { padding: .8rem 0; border-bottom: 1px solid var(--line); }
  .site-nav .nav-cta { margin-top: .75rem; padding: .8rem; text-align: center; border: 0; }
  .locale-link { padding-left: 0; border-left: 0; }
  .hero { min-height: auto; grid-template-columns: minmax(0, 1fr); }
  .hero-copy { padding-top: 4.5rem; }
  .hero-visual { min-height: 33rem; }
  .hero-visual::before { box-shadow: inset 0 4rem 7rem rgba(244,239,229,.3); }
  .proof-strip { grid-template-columns: repeat(2, 1fr); }
  .proof-strip span:nth-child(2) { border-right: 0; }
  .proof-strip span:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .vignettes { grid-template-columns: 1fr; }
  html[lang="pl"] .vignettes { grid-template-columns: repeat(2, 1fr); }
  .vignettes article { min-height: 17rem; margin: 0; padding-right: 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.2); }
  .vignettes article:last-child { border-bottom: 0; }
  .governance-grid { grid-template-columns: 1fr; }
  .governance-grid article { min-height: 20rem; }
  .split-heading { grid-template-columns: 1fr; gap: 1.5rem; }
  .privacy-dial { grid-template-columns: 1fr; }
  .dial-tabs { flex-direction: row; }
  .dial-tabs button { min-height: 7rem; border-bottom: 1px solid var(--line); border-right: 1px solid var(--line); grid-template-columns: 1fr; gap: .25rem; }
  .dial-tabs button:last-child { border-right: 0; border-bottom: 1px solid var(--line); }
  .mode-number { font-size: .9rem; }
  .demo-grid { grid-template-columns: 1fr; }
  .egress-pane { min-height: 24rem; }
  .waitlist-section { grid-template-columns: minmax(0, 1fr); gap: 3rem; }
}

@media (max-width: 650px) {
  .hero h1 { font-size: clamp(3.2rem, 15vw, 5rem); }
  .hero-visual { min-height: 26rem; }
  .hero-fallback { object-position: 61% center; }
  .scene-chrome { font-size: .55rem; }
  .scene-caption { width: calc(100% - 2.4rem); bottom: 1.15rem; }
  .scene-caption small { display: none; }
  .hero-visual figcaption { display: none; }
  .proof-strip { grid-template-columns: 1fr; }
  html[lang="pl"] .vignettes { grid-template-columns: 1fr; }
  .proof-strip span { border-right: 0; border-bottom: 1px solid var(--line); }
  .proof-strip span:last-child { border-bottom: 0; }
  .form-row { align-items: stretch; }
  .form-row button { font-size: .8rem; padding-left: .7rem; }
  .section-heading h2, .waitlist-section h2 { font-size: clamp(2.8rem, 13vw, 4.5rem); }
  .dial-tabs { flex-direction: column; }
  .dial-tabs button { min-height: 5.8rem; border-right: 0; grid-template-columns: 2.5rem 1fr; }
  .dial-panels { min-height: 34rem; }
  .dial-panels dl { grid-template-columns: 1fr; }
  .dial-panels dl div { display: flex; justify-content: space-between; align-items: center; }
  .dial-panels dd { font-size: 1.2rem; }
  .demo-toolbar { grid-template-columns: 1fr auto; }
  .demo-toolbar > span { display: none; }
  .demo-toolbar b { text-align: left; }
  .sources p { grid-template-columns: 1.4rem 1fr; }
  .sources em { grid-column: 2; }
  .principle-list li { grid-template-columns: 3rem 1fr; gap: .75rem; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-links { flex-direction: column; gap: .8rem; }
  .policy-grid { grid-template-columns: 1fr; }
  .policy-grid section { margin: 0; padding-right: 0; border-right: 0 !important; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .motion-ready [data-reveal], .motion-ready [data-reveal-stagger] > * { opacity: 1 !important; transform: none !important; }
  .scroll-progress span { will-change: auto; }
}
