@font-face {
  font-family: "Noto Sans Hebrew";
  src: url("/public/fonts/NotoSansHebrew-Variable.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Frank Ruhl Libre";
  src: url("/public/fonts/FrankRuhlLibre-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Frank Ruhl Libre";
  src: url("/public/fonts/FrankRuhlLibre-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink-1000: #08151d;
  --ink-950: #132b3a;
  --ink-900: #193545;
  --ink-800: #244252;
  --ink-700: #355362;
  --ink-500: #667b82;
  --paper: #fffefa;
  --paper-deep: #fffefa;
  --surface: #fffefa;
  --surface-white: #ffffff;
  --teal-800: #085d62;
  --teal-700: #0b6f73;
  --teal-500: #32a6a4;
  --mint: #d1c9e3;
  --mint-soft: #ede4d4;
  --retro-night: #07071c;
  --retro-violet: #a69ac6;
  --retro-violet-soft: #d1c9e3;
  --retro-blue: #96a3b6;
  --retro-blue-deep: #2c3a4e;
  --retro-wine: #60343a;
  --retro-wine-soft: #b89499;
  --retro-clay: #735d50;
  --retro-paper: #fffefa;
  --retro-paper-deep: #fffefa;
  --line: #d8dbd5;
  --line-dark: rgb(231 239 239 / 18%);
  --warning: #735d50;
  --warning-soft: #eee5df;
  --success: #24734b;
  --focus: #60343a;
  --shadow-product: 0 48px 120px rgb(4 15 21 / 34%);
  --ease: cubic-bezier(.2, 0, 0, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--surface); }
body {
  margin: 0;
  color: var(--ink-950);
  background: var(--paper);
  font-family: "Noto Sans Hebrew", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
img { display: block; max-width: 100%; }
[hidden] { display: none !important; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--focus); outline-offset: 4px; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  right: 12px;
  padding: 10px 16px;
  color: var(--ink-950);
  background: #fff;
  border-radius: 4px;
  transform: translateY(-180%);
}
.skip-link:focus { transform: translateY(0); }

.topline {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 7px 24px;
  color: #f5f6f4;
  background: #0c0c0b;
  font-size: 12px;
  letter-spacing: .005em;
}
.topline p { margin: 0; }
.topline a { color: var(--retro-violet-soft); font-weight: 730; }

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto minmax(260px, 1fr);
  align-items: center;
  min-height: 86px;
  padding: 10px clamp(24px, 3.8vw, 64px);
  color: #121a1d;
  background: var(--surface);
  border-bottom: 1px solid #e2e1dc;
}
.brand { justify-self: start; width: 214px; direction: ltr; }
.brand img { width: 100%; height: auto; filter: brightness(0) saturate(100%); opacity: .9; }
.main-nav { display: flex; gap: clamp(22px, 2.6vw, 42px); align-items: center; font-size: 14px; font-weight: 640; }
.main-nav a, .login-link { position: relative; }
.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -10px;
  width: 100%;
  height: 1px;
  background: var(--retro-wine);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms var(--ease);
}
.main-nav a:hover::after { transform: scaleX(1); }
.header-actions, .hero-actions { display: flex; align-items: center; gap: 14px; }
.header-actions { justify-self: end; }
.login-link { min-height: 44px; padding: 11px 18px; border: 1px solid #b6b9b5; border-radius: 5px; font-size: 13px; font-weight: 650; }

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 13px 23px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 740;
  line-height: 1;
  transition: background-color 180ms var(--ease), color 180ms var(--ease), transform 180ms var(--ease);
}
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 44px; padding: 11px 18px; }
.button-platinum, .button-dark { color: #fff; background: #101817; }
.button-platinum:hover, .button-dark:hover { background: var(--retro-wine); }
.button-teal { color: #fff; background: var(--teal-700); }
.button-ghost { border-color: rgb(255 255 255 / 34%); }
.text-link { padding-bottom: 5px; border-bottom: 1px solid #9da5a2; font-size: 14px; font-weight: 680; }

.hero {
  position: relative;
  padding: clamp(42px, 4vw, 70px) clamp(20px, 3.8vw, 64px) clamp(74px, 8vw, 132px);
  background: var(--surface);
  overflow: hidden;
}
.hero::after { content: ""; position: absolute; top: 0; left: 7%; width: 1px; height: calc(clamp(42px, 4vw, 70px) - 12px); background: var(--retro-wine-soft); opacity: .75; }
.hero-copy { position: relative; z-index: 1; max-width: 1470px; margin: 0 auto; }
.eyebrow {
  margin: 0 0 30px;
  color: var(--retro-wine);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: .02em;
}
.hero h1 {
  max-width: 1320px;
  margin: 0;
  color: #101817;
  font-family: "Frank Ruhl Libre", Georgia, serif;
  font-size: clamp(66px, 8.35vw, 136px);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .86;
}
.hero h1 span { color: var(--retro-blue-deep); font-weight: 400; }
.hero h1 em { color: var(--retro-wine); font-style: normal; font-weight: 600; }
.hero-intro {
  display: grid;
  grid-template-columns: minmax(300px, 610px) auto;
  gap: 56px;
  align-items: end;
  justify-content: space-between;
  margin-top: 52px;
  padding-top: 30px;
  border-top: 1px solid #cfd2cc;
}
.hero-lead { max-width: 610px; margin: 0; color: var(--ink-700); font-size: clamp(18px, 1.55vw, 24px); line-height: 1.65; }
.hero-note { margin: 18px 0 0; color: var(--retro-wine); font-size: 13px; font-weight: 720; }

.opening-collage-film { position: relative; z-index: 1; width: 100%; max-width: 1540px; aspect-ratio: 16 / 9; margin: clamp(66px, 6.5vw, 104px) auto 0; overflow: hidden; background: var(--retro-night); border: 1px solid rgb(96 52 58 / 28%); box-shadow: 0 42px 110px rgb(38 25 26 / 18%); }
.opening-collage-film video { display: block; width: 100%; height: 100%; object-fit: cover; }
.opening-collage-film figcaption { position: absolute; top: 0; right: 0; bottom: 0; display: flex; width: clamp(245px, 24vw, 370px); flex-direction: column; justify-content: space-between; padding: clamp(26px, 3.4vw, 54px); color: #fff; background: linear-gradient(180deg, rgb(23 19 26 / 77%), rgb(96 52 58 / 91%)); border-left: 1px solid rgb(255 255 255 / 28%); }
.opening-collage-film figcaption div { display: grid; gap: clamp(24px, 9vw, 132px); }
.opening-collage-film figcaption div > span { color: var(--retro-violet-soft); font-size: 10px; font-weight: 780; }
.opening-collage-film figcaption strong { font-family: "Frank Ruhl Libre", Georgia, serif; font-size: clamp(30px, 3vw, 48px); font-weight: 400; letter-spacing: -.04em; line-height: 1.04; }
.opening-collage-film .video-toggle { align-self: flex-start; }
.opening-collage-film.selected-collage-film figcaption { top: auto; right: clamp(18px, 2.4vw, 36px); bottom: clamp(18px, 2.4vw, 36px); left: clamp(18px, 2.4vw, 36px); width: auto; min-height: 74px; flex-direction: row; align-items: center; gap: 24px; padding: 14px 16px 14px 22px; background: rgb(23 19 26 / 91%); border-right: 5px solid var(--retro-wine-soft); border-left: 1px solid rgb(255 255 255 / 22%); }
.opening-collage-film.selected-collage-film figcaption div { gap: 5px; }
.opening-collage-film.selected-collage-film figcaption strong { font-size: clamp(20px, 2vw, 30px); }
.opening-collage-film.selected-collage-film .video-toggle { align-self: center; }

.hero-showcase {
  position: relative;
  max-width: 1470px;
  min-height: 740px;
  margin: clamp(74px, 7vw, 112px) auto 0;
  padding: 70px 6.5% 0;
  background: var(--retro-wine);
  border-radius: 6px;
  overflow: hidden;
}
.showcase-halo { position: absolute; inset: 0; background: transparent; pointer-events: none; }
.product-shell { position: relative; z-index: 2; min-height: 625px; overflow: hidden; background: var(--surface-white); border: 1px solid rgb(255 255 255 / 56%); border-radius: 11px 11px 0 0; box-shadow: var(--shadow-product); }
.product-bar { display: grid; grid-template-columns: 1fr auto 1fr; min-height: 62px; align-items: center; padding: 10px 20px; color: #d7e1e2; background: #0b171c; border-bottom: 1px solid rgb(255 255 255 / 9%); }
.product-bar p { margin: 0; font-size: 11px; }
.product-brand, .product-bar-actions { display: flex; align-items: center; gap: 10px; }
.product-brand { justify-self: start; direction: ltr; font-family: Georgia, serif; font-size: 14px; letter-spacing: .12em; text-transform: uppercase; }
.product-brand img { width: 28px; height: 28px; }
.product-bar-actions { justify-self: end; font-size: 10px; }
.person-dot { display: grid; width: 29px; height: 29px; place-items: center; color: var(--ink-1000); background: var(--mint); border-radius: 50%; font-weight: 800; }
.product-grid { display: grid; grid-template-columns: 215px minmax(0, 1fr) 245px; min-height: 563px; direction: rtl; }
.product-sidebar { padding: 26px 16px; color: #c5d1d2; background: #101d22; }
.product-matter { margin: 0 9px 28px; color: #fff; font-size: 12px; font-weight: 760; }
.product-sidebar nav { display: grid; gap: 5px; }
.product-sidebar nav span { display: flex; min-height: 42px; align-items: center; gap: 11px; padding: 9px 11px; border-radius: 6px; font-size: 10px; }
.product-sidebar nav b { display: grid; width: 22px; height: 22px; place-items: center; color: #9cb0b2; font-weight: 400; }
.product-sidebar .product-nav-active { color: #10201f; background: var(--mint); font-weight: 720; }
.product-sidebar .product-nav-active b { color: #10201f; }
.sidebar-status { margin-top: 154px; padding: 15px; background: rgb(255 255 255 / 5%); border: 1px solid rgb(255 255 255 / 9%); border-radius: 7px; }
.sidebar-status small, .sidebar-status strong { display: block; }
.sidebar-status small { color: var(--mint); font-size: 9px; }
.sidebar-status strong { margin-top: 8px; color: #fff; font-size: 10px; line-height: 1.5; }
.product-main { min-width: 0; padding: 34px 34px 40px; background: #f7f6f1; }
.product-main-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.product-main-head small { color: var(--ink-500); font-size: 9px; }
.product-main-head h2 { margin: 6px 0 0; font-size: clamp(20px, 2vw, 30px); font-weight: 640; letter-spacing: -.035em; }
.updated-pill { padding: 7px 11px; color: var(--success); background: #e3f1e8; border-radius: 999px; font-size: 9px; font-weight: 760; }
.primary-action { display: grid; grid-template-columns: 35px minmax(0, 1fr) auto; gap: 15px; align-items: center; margin-top: 25px; padding: 20px; background: #fff; border: 1px solid #dbddd8; border-right: 3px solid var(--warning); border-radius: 8px; box-shadow: 0 12px 28px rgb(12 29 36 / 7%); }
.action-mark { display: grid; width: 31px; height: 31px; place-items: center; color: var(--warning); background: var(--warning-soft); border-radius: 50%; font-size: 12px; font-weight: 850; }
.primary-action small { color: var(--warning); font-size: 9px; font-weight: 800; }
.primary-action h3 { margin: 3px 0 0; font-size: 14px; }
.primary-action p { margin: 4px 0 0; color: var(--ink-500); font-size: 9px; }
.primary-action a { align-self: end; padding-bottom: 3px; border-bottom: 1px solid #aab2af; font-size: 9px; font-weight: 760; }
.product-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 12px; }
.product-cards article { min-height: 102px; padding: 14px; background: #fff; border: 1px solid #dfe1dc; border-radius: 7px; }
.product-cards small, .product-cards strong, .product-cards span { display: block; }
.product-cards small { color: var(--ink-500); font-size: 8px; }
.product-cards strong { margin-top: 12px; font-size: 10px; }
.product-cards span { margin-top: 5px; color: var(--ink-500); font-size: 8px; }
.product-cards .status-good { color: var(--success); }
.product-cards .status-warn { color: var(--warning); }
.timeline-card { margin-top: 12px; padding: 16px 18px; background: #fff; border: 1px solid #dfe1dc; border-radius: 7px; }
.timeline-head { display: flex; justify-content: space-between; font-size: 9px; }
.timeline-head span { color: var(--ink-500); }
.timeline-card ol { padding: 0; margin: 11px 0 0; list-style: none; }
.timeline-card li { display: grid; grid-template-columns: 10px 1fr auto; gap: 10px; align-items: center; padding: 8px 0; border-top: 1px solid #ecece8; }
.timeline-card li i { width: 7px; height: 7px; background: var(--teal-700); border: 2px solid #c6e5df; border-radius: 50%; box-sizing: content-box; }
.timeline-card li strong, .timeline-card li small { display: block; font-size: 8px; }
.timeline-card li small, .timeline-card time { color: var(--ink-500); font-size: 7px; }
.evidence-rail { padding: 32px 20px; background: #eeece5; border-right: 1px solid #d8dbd5; }
.evidence-rail > p { margin: 0; color: var(--ink-500); font-size: 9px; font-weight: 800; }
.coverage-ring { display: grid; width: 112px; height: 112px; place-content: center; margin: 27px auto 34px; text-align: center; border: 8px solid #d3d8d3; border-top-color: var(--teal-700); border-right-color: var(--teal-700); border-radius: 50%; }
.coverage-ring strong, .coverage-ring span { display: block; }
.coverage-ring strong { font-size: 12px; }
.coverage-ring span { color: var(--success); font-size: 8px; }
.evidence-rail article { padding: 15px 0; border-top: 1px solid #d4d6d0; }
.evidence-rail article small, .evidence-rail article strong, .evidence-rail article span { display: block; }
.evidence-rail article small { color: var(--ink-500); font-size: 8px; }
.evidence-rail article strong { margin-top: 6px; font-size: 10px; }
.evidence-rail article span { margin-top: 4px; color: var(--teal-700); font-size: 8px; }

.hero-proof { display: grid; grid-template-columns: minmax(230px, .34fr) minmax(0, 1fr); max-width: 1470px; margin: clamp(74px, 7vw, 112px) auto 0; color: #fff; background: var(--retro-wine); border: 1px solid var(--retro-wine); overflow: hidden; }
.hero-proof-rail { display: flex; flex-direction: column; justify-content: space-between; min-height: 100%; padding: clamp(28px, 3.4vw, 54px); border-left: 1px solid rgb(255 255 255 / 25%); }
.hero-proof-rail img { width: min(100%, 230px); height: auto; }
.hero-proof-rail div { margin: 120px 0 70px; }
.hero-proof-rail span, .hero-proof-rail strong { display: block; }
.hero-proof-rail span { color: #e2d1d5; font-size: 10px; font-weight: 760; }
.hero-proof-rail strong { margin-top: 18px; font-family: "Frank Ruhl Libre", Georgia, serif; font-size: clamp(28px, 2.7vw, 44px); font-weight: 400; letter-spacing: -.035em; line-height: 1.08; }
.hero-proof-rail a { align-self: flex-start; padding-bottom: 5px; border-bottom: 1px solid rgb(255 255 255 / 50%); font-size: 11px; font-weight: 720; }
.hero-proof-video { position: relative; align-self: center; margin: clamp(18px, 2.4vw, 38px); background: var(--retro-night); box-shadow: 0 35px 90px rgb(26 10 13 / 32%); }
.hero-proof-video video { display: block; width: 100%; aspect-ratio: 16 / 9; background: var(--retro-night); object-fit: cover; }
.hero-video-caption, .film-meta { display: flex; min-height: 46px; align-items: center; justify-content: space-between; gap: 20px; padding: 8px 12px 8px 18px; color: #cfd4d4; background: #0c171b; border-top: 1px solid rgb(255 255 255 / 11%); font-size: 9px; }
.video-toggle { display: inline-flex; min-height: 30px; align-items: center; gap: 8px; padding: 5px 9px; color: #fff; background: transparent; border: 1px solid rgb(255 255 255 / 26%); border-radius: 2px; cursor: pointer; }
.video-toggle:hover { background: var(--retro-wine); }
.video-toggle span { width: 14px; font-size: 8px; }
.video-toggle b { font-size: 9px; }

.proof-line { display: grid; grid-template-columns: repeat(3, 1fr); color: #eef3f3; background: #101817; border-top: 1px solid rgb(255 255 255 / 12%); }
.proof-line > div { display: grid; grid-template-columns: 40px 1fr; min-height: 112px; align-items: center; padding: 24px clamp(22px, 4vw, 64px); border-inline-start: 1px solid rgb(255 255 255 / 16%); }
.proof-line > div:first-child { border-inline-start: 0; }
.proof-line span { color: var(--retro-violet-soft); font-size: 10px; }
.proof-line strong { font-size: 14px; font-weight: 620; }

.section-index { margin: 0; color: var(--retro-wine); font-size: 11px; font-weight: 800; letter-spacing: .02em; }
.section-index-light { color: var(--retro-violet-soft); }
.manifesto { padding: clamp(110px, 12vw, 190px) clamp(24px, 7vw, 120px); background: var(--paper); }
.manifesto-grid { display: grid; grid-template-columns: minmax(105px, .18fr) minmax(500px, 1fr) minmax(300px, .62fr); gap: clamp(34px, 5vw, 78px); align-items: end; max-width: 1420px; margin: 38px auto 0; }
.manifesto-grid::before { content: "01"; align-self: start; color: var(--retro-violet-soft); font-family: "Frank Ruhl Libre", Georgia, serif; font-size: clamp(92px, 11vw, 168px); font-weight: 400; letter-spacing: -.08em; line-height: .72; direction: ltr; }
.manifesto > .section-index { max-width: 1420px; margin: 0 auto; }
.manifesto h2, .architecture h2, .principles h2, .process h2, .security h2, .demo h2 { margin: 0; font-family: "Frank Ruhl Libre", Georgia, serif; font-size: clamp(48px, 6.4vw, 96px); font-weight: 400; letter-spacing: -.045em; line-height: .98; }
.manifesto h2 em, .architecture h2 em, .demo h2 em { color: var(--retro-wine); font-style: normal; font-weight: 600; }
.manifesto-copy { max-width: 510px; padding-bottom: 5px; }
.manifesto-copy p { margin: 0; color: var(--ink-700); font-size: 18px; line-height: 1.78; }
.manifesto-copy p + p { margin-top: 20px; }

.human-judgment { display: grid; padding: clamp(64px, 7vw, 112px) clamp(20px, 5.5vw, 92px); color: var(--retro-night); background: var(--retro-violet-soft); border-top: 1px solid rgb(96 52 58 / 18%); border-bottom: 1px solid rgb(96 52 58 / 18%); }
.human-statement { display: grid; grid-template-columns: minmax(170px, .32fr) minmax(460px, 1fr) minmax(260px, .48fr); gap: clamp(34px, 5.5vw, 88px); align-items: end; width: 100%; max-width: 1470px; margin: 0 auto; padding: 0 0 clamp(38px, 5vw, 72px); }
.human-lockup { align-self: start; width: min(100%, 230px); height: auto; filter: brightness(0) saturate(100%); opacity: .86; }
.human-statement > div:not(.human-verbs) { margin: 0; padding: 0; }
.human-statement h2 { margin: 27px 0 0; font-family: "Frank Ruhl Libre", Georgia, serif; font-size: clamp(48px, 5vw, 78px); font-weight: 400; letter-spacing: -.045em; line-height: .96; }
.human-statement h2 em { color: var(--retro-wine); font-style: normal; font-weight: 600; }
.human-statement > div > p:last-child { max-width: 470px; margin: 30px 0 0; color: #504a51; font-size: 16px; line-height: 1.78; }
.human-verbs { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid rgb(96 52 58 / 32%); border-right: 1px solid rgb(96 52 58 / 32%); }
.human-verbs span { min-height: 58px; padding: 17px; border-bottom: 1px solid rgb(96 52 58 / 32%); border-left: 1px solid rgb(96 52 58 / 32%); font-size: 11px; font-weight: 760; }
.human-visual { position: relative; width: 100%; max-width: 1470px; min-width: 0; aspect-ratio: 1672 / 941; margin: 0 auto; overflow: hidden; background-color: var(--retro-paper); background-position: center; background-repeat: no-repeat; background-size: 100% auto; border: 1px solid rgb(96 52 58 / 22%); }
.collage-preservation { background-image: url("/public/creator-conservation-collage.png"); }
.human-visual figcaption { position: absolute; right: 30px; bottom: 30px; left: 30px; display: grid; grid-template-columns: auto minmax(0, 1fr); align-items: center; gap: 32px; min-height: 72px; padding: 17px 22px; color: #fff; background: rgb(24 29 42 / 94%); border-right: 5px solid var(--retro-wine); }
.human-visual figcaption span { color: #bfc4c8; font-size: 10px; }
.human-visual figcaption strong { font-family: "Frank Ruhl Libre", Georgia, serif; font-size: clamp(21px, 2.2vw, 32px); font-weight: 400; line-height: 1.12; }

.film-suite { padding: clamp(110px, 11vw, 180px) clamp(20px, 5.5vw, 92px); background: var(--retro-paper); }
.film-heading { display: grid; grid-template-columns: minmax(520px, 1fr) minmax(280px, .48fr); gap: clamp(52px, 9vw, 140px); align-items: end; max-width: 1470px; margin: 0 auto clamp(62px, 8vw, 118px); }
.film-heading .section-index { grid-column: 1 / -1; }
.film-heading h2 { margin: 0; font-family: "Frank Ruhl Libre", Georgia, serif; font-size: clamp(56px, 7vw, 104px); font-weight: 400; letter-spacing: -.05em; line-height: .92; }
.film-heading h2 em { color: var(--retro-wine); font-style: normal; font-weight: 600; }
.film-heading > p:last-child { max-width: 460px; margin: 0 0 5px; color: var(--retro-clay); font-size: 17px; line-height: 1.75; }
.film-list { display: grid; gap: clamp(40px, 6.8vw, 104px); max-width: 1470px; margin: 0 auto; }
.film-row { display: grid; grid-template-columns: minmax(250px, .38fr) minmax(0, 1fr); min-height: 610px; }
.film-row:nth-child(even) { grid-template-columns: minmax(0, 1fr) minmax(250px, .38fr); }
.film-row:nth-child(even) .film-copy { grid-column: 2; grid-row: 1; border-left: 0; border-right: 1px solid rgb(255 255 255 / 24%); }
.film-row:nth-child(even) .film-frame { grid-column: 1; grid-row: 1; }
.film-copy { display: flex; flex-direction: column; justify-content: space-between; padding: clamp(30px, 4vw, 64px); color: #fff; border-left: 1px solid rgb(255 255 255 / 24%); }
.film-copy > span { color: rgb(255 255 255 / 62%); font-size: 11px; font-weight: 780; }
.film-copy h3 { margin: auto 0 22px; font-family: "Frank Ruhl Libre", Georgia, serif; font-size: clamp(40px, 4.2vw, 66px); font-weight: 400; letter-spacing: -.045em; line-height: .98; }
.film-copy p { max-width: 410px; margin: 0; color: rgb(255 255 255 / 76%); font-size: 15px; }
.film-frame { align-self: center; margin: clamp(20px, 3vw, 48px); background: var(--retro-night); box-shadow: 0 30px 90px rgb(21 14 16 / 22%); }
.film-frame video { display: block; width: 100%; aspect-ratio: 16 / 9; background: var(--retro-night); object-fit: cover; }
.film-wine { background: var(--retro-wine); }
.film-blue { background: var(--retro-blue-deep); }
.film-violet { background: #756c91; }

.architecture { padding: clamp(110px, 11vw, 178px) clamp(24px, 7vw, 120px); background: var(--retro-paper-deep); }
.architecture-heading { display: grid; grid-template-columns: minmax(560px, 1fr) minmax(300px, .55fr); gap: clamp(50px, 9vw, 140px); align-items: end; max-width: 1390px; margin: 0 auto 72px; }
.architecture-heading .section-index { grid-column: 1 / -1; }
.architecture-heading > p:last-child { max-width: 430px; margin: 0 0 8px; color: var(--retro-clay); font-size: 17px; line-height: 1.75; }
.section-collage { position: relative; width: 100%; max-width: 1390px; aspect-ratio: 1672 / 941; margin: 0 auto 72px; overflow: hidden; background-color: var(--retro-paper); background-position: center; background-repeat: no-repeat; background-size: 100% auto; border: 1px solid rgb(96 52 58 / 25%); }
.collage-memory { max-width: 1390px; min-height: 590px; aspect-ratio: auto; background-color: var(--retro-wine); background-image: url("/public/collage-options/08-memory-across-media.png"); background-position: left center; background-size: calc(100% - clamp(250px, 23vw, 340px)) 100%; }
.collage-making { max-width: 1320px; aspect-ratio: 1.96 / 1; margin-inline-start: auto; margin-inline-end: 0; background-image: url("/public/collage-decision-in-the-work.png"); background-size: cover; }
.section-collage figcaption { position: absolute; right: 30px; bottom: 30px; display: grid; width: min(520px, calc(100% - 60px)); gap: 7px; padding: 21px 24px 23px; color: #fff; background: rgb(24 29 42 / 94%); border-right: 5px solid var(--retro-wine); }
.section-collage figcaption span { color: var(--retro-violet-soft); font-size: 10px; font-weight: 760; }
.section-collage figcaption strong { font-family: "Frank Ruhl Libre", Georgia, serif; font-size: clamp(20px, 2.2vw, 31px); font-weight: 400; line-height: 1.18; }
.collage-memory figcaption { top: 0; right: 0; bottom: 0; display: flex; width: clamp(250px, 23vw, 340px); flex-direction: column; justify-content: flex-end; gap: 20px; padding: clamp(28px, 3.4vw, 52px); background: var(--retro-wine); border-right: 0; border-left: 1px solid rgb(255 255 255 / 24%); }
.collage-memory figcaption span { color: var(--retro-violet-soft); }
.collage-memory figcaption strong { font-size: clamp(28px, 2.7vw, 42px); }
.process .section-collage { border-color: rgb(255 255 255 / 28%); }
.process .section-collage figcaption { top: 30px; right: auto; bottom: auto; left: 30px; color: var(--retro-night); background: rgb(245 240 232 / 94%); border-right-color: var(--retro-blue-deep); }
.process .section-collage figcaption span { color: var(--retro-wine); }
.home-selected-collage { display: grid; direction: ltr; grid-template-columns: minmax(0, 76fr) minmax(0, 24fr); min-height: clamp(510px, 46vw, 700px); padding: 0; background-image: none !important; box-shadow: 0 32px 82px rgb(38 25 26 / 13%); }
.home-selected-collage.is-reverse { grid-template-columns: minmax(0, 24fr) minmax(0, 76fr); }
.home-selected-media { grid-column: 1; display: grid; min-width: 0; height: 100%; overflow: hidden; }
.home-selected-collage.is-reverse .home-selected-media { grid-column: 2; }
.home-selected-media.count-1 { grid-template-columns: 1fr; }
.home-selected-media.count-3 { grid-template-columns: .92fr 1.12fr .96fr; }
.home-selected-cell { position: relative; min-width: 0; overflow: hidden; background: var(--retro-night); box-shadow: inset -1px 0 rgb(245 239 226 / 65%); }
.home-selected-cell img { position: absolute; inset: 0; display: block; width: 100%; height: 100%; object-fit: cover; object-position: var(--focus, 50% 50%); transform: scale(var(--zoom, 1)); }
.home-selected-collage .home-selected-frame { position: relative; isolation: isolate; inset: auto; grid-column: 2; display: flex; direction: rtl; width: auto; min-width: 0; flex-direction: column; justify-content: flex-end; gap: 0; padding: clamp(22px, 2.3vw, 38px); color: var(--retro-night); background: var(--retro-paper); border: 0; overflow: hidden; }
.home-selected-collage.is-reverse .home-selected-frame { grid-column: 1; grid-row: 1; }
.home-selected-collage .home-selected-frame::before { content: ""; position: absolute; z-index: -2; inset: 0 0 auto; width: auto; height: 33%; background: var(--retro-wine); border: 0; }
.home-selected-collage .home-selected-frame::after { content: ""; position: absolute; z-index: -1; top: 33%; right: 0; bottom: auto; left: auto; width: 72%; height: 14%; padding: 0; background: var(--retro-violet-soft); border: 0; border-left: clamp(8px, .8vw, 14px) solid var(--retro-blue); }
.home-selected-collage .home-selected-frame > span { position: absolute; z-index: 2; top: clamp(16px, 1.8vw, 28px); right: clamp(18px, 2vw, 32px); margin: 0; color: #fff; font-size: 9px; font-weight: 850; letter-spacing: .12em; direction: ltr; }
.home-selected-collage .home-selected-frame > img { position: absolute; z-index: 2; top: 13%; right: 50%; width: min(78%, 210px); height: auto; transform: translate(50%, -50%); }
.home-selected-collage .home-selected-frame > div { position: relative; z-index: 2; display: grid; gap: 0; }
.home-selected-collage .home-selected-frame strong { max-width: 9ch; color: var(--retro-night); font-family: "Frank Ruhl Libre", Georgia, serif; font-size: clamp(27px, 2.75vw, 46px); font-weight: 540; line-height: .96; letter-spacing: -.025em; }
.home-selected-collage .home-selected-frame p { max-width: 19ch; margin: 14px 0 24px; color: var(--retro-clay); font-size: clamp(11px, .92vw, 14px); line-height: 1.55; }
.home-selected-collage .home-selected-frame small { padding-top: 13px; color: var(--retro-wine); border-top: 1px solid rgb(96 52 58 / 32%); font-size: 9px; font-weight: 800; }
.home-collage-four { max-width: 1390px; }
.architecture-grid { display: grid; grid-template-columns: minmax(280px, .58fr) minmax(560px, 1.42fr); max-width: 1390px; min-height: 610px; margin: 0 auto; background: var(--surface); border: 1px solid rgb(96 52 58 / 22%); box-shadow: 0 36px 90px rgb(38 25 26 / 14%); }
.architecture-tabs { display: flex; flex-direction: column; background: var(--retro-night); }
.architecture-tabs button { display: grid; grid-template-columns: 42px 1fr; grid-template-rows: auto auto; column-gap: 18px; min-height: 203px; align-content: center; padding: 28px clamp(24px, 3vw, 42px); color: #f0edf3; text-align: right; background: transparent; border: 0; border-bottom: 1px solid rgb(226 232 240 / 15%); cursor: pointer; }
.architecture-tabs button > span { grid-row: 1 / 3; align-self: start; color: var(--retro-blue); font-size: 10px; }
.architecture-tabs button strong { font-family: "Frank Ruhl Libre", Georgia, serif; font-size: 35px; font-weight: 400; }
.architecture-tabs button small { margin-top: 8px; color: #aaa8b5; font-size: 11px; }
.architecture-tabs button[aria-selected="true"] { color: #fff; background: var(--retro-wine); box-shadow: inset -4px 0 var(--retro-wine-soft); }
.architecture-tabs button[aria-selected="true"] span, .architecture-tabs button[aria-selected="true"] small { color: #eadde0; }
.architecture-stage { position: relative; min-width: 0; overflow: hidden; }
.architecture-watermark { position: absolute; left: -80px; bottom: 22px; width: 470px; height: auto; filter: brightness(0) saturate(100%); opacity: .045; transform: rotate(-90deg); }
.system-panel { position: relative; z-index: 2; min-height: 610px; padding: clamp(42px, 6vw, 86px); animation: panel-in 420ms var(--ease) both; }
.system-panel > p { margin: 0 0 22px; color: var(--retro-wine); font-size: 11px; font-weight: 800; }
.system-panel h3 { max-width: 720px; margin: 0; font-family: "Frank Ruhl Libre", Georgia, serif; font-size: clamp(42px, 4.7vw, 70px); font-weight: 400; letter-spacing: -.035em; line-height: 1; }
.matter-map { position: relative; width: min(100%, 720px); min-height: 230px; margin-top: 58px; }
.matter-map span { position: absolute; z-index: 2; display: grid; min-width: 126px; min-height: 58px; place-items: center; padding: 12px; color: var(--retro-night); background: #f8f5f1; border: 1px solid var(--retro-wine-soft); border-radius: 999px; box-shadow: 0 12px 28px rgb(38 25 26 / 9%); font-size: 11px; font-weight: 700; }
.matter-map span:nth-child(1) { top: 82px; right: 0; color: #fff; background: var(--retro-wine); border-color: var(--retro-wine); }
.matter-map span:nth-child(2) { top: 0; right: 42%; }
.matter-map span:nth-child(3) { bottom: 0; right: 43%; }
.matter-map span:nth-child(4) { top: 83px; left: 0; border-color: var(--retro-violet); }
.matter-map i { position: absolute; top: 110px; right: 120px; left: 120px; height: 1px; background: var(--retro-wine-soft); transform-origin: right; }
.matter-map i:nth-of-type(2) { transform: rotate(-24deg); }
.matter-map i:nth-of-type(3) { transform: rotate(24deg); }
.source-stack { display: grid; grid-template-columns: 1fr auto 1fr; gap: 22px; align-items: center; margin-top: 62px; }
.source-stack article { min-height: 148px; padding: 28px; background: var(--retro-paper); border: 1px solid #d9d0c6; border-top: 5px solid var(--retro-blue-deep); }
.source-stack article:last-child { border-top-color: var(--retro-wine); }
.source-stack small, .source-stack strong { display: block; }
.source-stack small { color: var(--retro-clay); font-size: 10px; }
.source-stack strong { margin-top: 28px; font-size: 15px; }
.source-stack > span { color: var(--retro-wine); font-size: 30px; }
.judgment-card { margin-top: 56px; padding: 32px; background: var(--retro-night); color: #fff; border-right: 5px solid var(--retro-violet); }
.judgment-card small, .judgment-card strong { display: block; }
.judgment-card small { color: var(--retro-violet-soft); font-size: 10px; }
.judgment-card strong { max-width: 560px; margin-top: 14px; font-size: 22px; }
.judgment-card div { display: flex; align-items: center; gap: 18px; margin-top: 42px; }
.judgment-card button { min-height: 42px; padding: 9px 18px; color: var(--retro-night); background: var(--retro-violet-soft); border: 0; border-radius: 4px; font-weight: 760; }
.judgment-card span { color: #aaa8b5; font-size: 10px; }

.story { position: relative; padding: clamp(108px, 10vw, 164px) clamp(24px, 6vw, 102px); color: #fff; background: var(--retro-night); overflow: hidden; }
.story::before { content: "CERNORA / SOURCE / VERSION / DECISION"; position: absolute; top: 34px; left: -18px; color: rgb(166 154 198 / 10%); font-family: "Frank Ruhl Libre", Georgia, serif; font-size: clamp(54px, 8vw, 126px); letter-spacing: -.03em; white-space: nowrap; direction: ltr; }
.story-heading { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(550px, 1fr) minmax(280px, .5fr); gap: 70px; align-items: end; max-width: 1390px; margin: 0 auto 72px; }
.story-heading .section-index { grid-column: 1 / -1; }
.story-heading h2 { margin: 0; font-family: "Frank Ruhl Libre", Georgia, serif; font-size: clamp(48px, 5.4vw, 82px); font-weight: 400; letter-spacing: -.045em; line-height: 1; }
.story-heading > p:last-child { margin: 0 0 8px; color: #aebfc3; font-size: 16px; }
.matter-stage { position: relative; z-index: 2; max-width: 1390px; margin: 0 auto; padding: 16px; background: rgb(255 255 255 / 5%); border: 1px solid rgb(255 255 255 / 13%); border-radius: 20px; box-shadow: 0 50px 120px rgb(0 0 0 / 42%); }
.matter-window { overflow: hidden; color: var(--ink-950); background: var(--surface); border-radius: 10px; }
.matter-topbar { display: flex; min-height: 66px; align-items: center; justify-content: space-between; gap: 20px; padding: 12px 22px; color: #fff; background: var(--ink-950); }
.matter-brand { display: flex; align-items: center; gap: 12px; font-weight: 720; }
.matter-brand img { width: 142px; height: auto; }
.matter-meta { display: flex; align-items: center; gap: 14px; color: #c5d3d6; font-size: 11px; }
.fresh-chip { padding: 5px 9px; color: #bce9df; background: rgb(36 115 75 / 22%); border: 1px solid rgb(139 221 210 / 22%); border-radius: 999px; }
.matter-body { display: grid; grid-template-columns: 205px minmax(0, 1fr) 250px; min-height: 545px; }
.matter-tabs { display: flex; flex-direction: column; padding: 25px 14px; background: #eae7df; border-left: 1px solid var(--line); }
.matter-tabs button { display: grid; grid-template-columns: 32px 1fr; gap: 8px; align-items: center; min-height: 64px; padding: 10px 12px; color: var(--ink-700); text-align: right; background: transparent; border: 0; border-radius: 6px; cursor: pointer; }
.matter-tabs button span { color: var(--ink-500); font-size: 9px; }
.matter-tabs button[aria-selected="true"] { color: #fff; background: var(--retro-wine); }
.matter-tabs button[aria-selected="true"] span { color: #eadde0; }
.matter-content { position: relative; min-width: 0; padding: clamp(34px, 5vw, 70px); background: var(--surface); }
.story-panel { animation: panel-in 360ms var(--ease) both; }
.panel-kicker { margin: 0 0 16px; color: var(--teal-700); font-size: 11px; font-weight: 820; }
.story-panel h3 { max-width: 740px; margin: 0; font-size: clamp(28px, 3vw, 44px); font-weight: 610; letter-spacing: -.035em; line-height: 1.2; }
.story-panel > p:not(.panel-kicker, .decision-note) { max-width: 670px; margin: 24px 0 0; color: var(--ink-700); font-size: 15px; }
.panel-callout { display: grid; grid-template-columns: 16px minmax(0, 1fr) auto; gap: 14px; align-items: center; margin-top: 46px; padding: 19px; background: var(--warning-soft); border-right: 3px solid var(--warning); border-radius: 7px; }
.amber-ring { width: 12px; height: 12px; border: 3px solid var(--warning); border-radius: 50%; }
.panel-callout small, .panel-callout strong { display: block; }
.panel-callout small { color: var(--warning); font-size: 9px; font-weight: 830; }
.panel-callout strong { margin-top: 2px; font-size: 12px; }
.panel-callout button, .inline-next { min-height: 40px; padding: 9px 14px; color: #fff; background: var(--ink-950); border: 0; border-radius: 5px; font-size: 11px; font-weight: 730; cursor: pointer; }
.document-preview { margin-top: 30px; padding: 21px; background: #fff; border: 1px solid var(--line); border-radius: 7px; box-shadow: 0 16px 45px rgb(7 23 32 / 12%); }
.doc-head { display: flex; justify-content: space-between; gap: 18px; margin-bottom: 22px; }
.doc-head span { font-weight: 730; }
.doc-head small { color: var(--ink-500); }
.doc-line { width: 100%; height: 7px; margin-top: 13px; background: #dce2df; border-radius: 999px; }
.doc-line-short { width: 72%; }
.doc-highlight { margin: 16px 0; padding: 13px 16px; color: var(--teal-800); background: #dff2ef; border-right: 3px solid var(--teal-700); font-size: 12px; font-weight: 680; }
.inline-next { margin-top: 24px; }
.decision-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 38px; }
.decision-grid > div { min-height: 106px; padding: 17px; background: #f3f1eb; border: 1px solid var(--line); border-radius: 6px; }
.decision-grid small, .decision-grid strong { display: block; }
.decision-grid small { color: var(--ink-500); font-size: 9px; }
.decision-grid strong { margin-top: 18px; font-size: 12px; }
.decision-note { display: flex; gap: 10px; align-items: center; margin: 25px 0 0; color: var(--success); font-size: 11px; font-weight: 730; }
.source-rail { padding: 32px 23px; background: #f1efe9; border-right: 1px solid var(--line); }
.source-rail > p { margin: 0; color: var(--ink-500); font-size: 10px; font-weight: 780; }
.coverage-track { height: 5px; margin-top: 18px; overflow: hidden; background: #d3d7d2; border-radius: 999px; }
.coverage-track span { display: block; width: 72%; height: 100%; background: var(--teal-700); }
.source-rail > strong { display: block; margin-top: 14px; font-size: 12px; }
.source-rail ul { padding: 0; margin: 40px 0 0; list-style: none; }
.source-rail li { display: flex; gap: 10px; align-items: center; padding: 12px 0; color: var(--ink-700); border-top: 1px solid var(--line); font-size: 11px; }
.check-mark, .open-mark { display: grid; width: 21px; height: 21px; place-items: center; border: 1px solid var(--success); border-radius: 50%; color: var(--success); font-size: 9px; font-weight: 900; }
.open-mark { color: var(--warning); border-color: var(--warning); }

.principles { padding: clamp(110px, 11vw, 176px) clamp(24px, 7vw, 120px); background: var(--surface); }
.principles-head { display: grid; grid-template-columns: minmax(560px, 1fr) minmax(200px, .4fr); align-items: end; max-width: 1370px; margin: 0 auto 75px; }
.principles-head .section-index { grid-column: 1 / -1; margin-bottom: 32px; }
.principle-grid { display: grid; grid-template-columns: repeat(4, 1fr); max-width: 1370px; margin: 0 auto; border-top: 1px solid var(--line); }
.principle-card { position: relative; min-height: 350px; padding: 30px 28px 38px; overflow: hidden; border-inline-start: 1px solid var(--line); }
.principle-card:first-child { border-inline-start: 0; }
.principle-card > span { color: var(--retro-wine); font-family: "Frank Ruhl Libre", Georgia, serif; font-size: 36px; }
.principle-card h3 { margin: 102px 0 16px; font-size: 20px; }
.principle-card p { margin: 0; color: var(--ink-700); font-size: 14px; }
.principle-card i { position: absolute; right: 0; bottom: 0; width: 0; height: 3px; background: var(--retro-wine); transition: width 300ms var(--ease); }
.principle-card:nth-child(2) > span { color: var(--retro-violet); }
.principle-card:nth-child(2) i { background: var(--retro-violet); }
.principle-card:nth-child(3) > span { color: var(--retro-blue-deep); }
.principle-card:nth-child(3) i { background: var(--retro-blue-deep); }
.principle-card:nth-child(4) > span { color: var(--retro-clay); }
.principle-card:nth-child(4) i { background: var(--retro-clay); }
.principle-card:hover i { width: 100%; }

.process { padding: clamp(110px, 11vw, 175px) clamp(24px, 7vw, 120px); color: #fff; background: var(--retro-wine); }
.process-head { max-width: 1370px; margin: 0 auto 75px; }
.process-head .section-index { color: #e2d1d5; }
.process-head h2 { max-width: 1060px; margin-top: 28px; }
.process-motion { display: grid; grid-template-columns: minmax(260px, .36fr) minmax(0, 1fr); max-width: 1370px; margin: 0 auto clamp(66px, 7vw, 108px); overflow: hidden; color: var(--retro-night); background: var(--retro-paper); border: 1px solid rgb(255 255 255 / 30%); box-shadow: 0 36px 90px rgb(35 13 17 / 22%); }
.process-motion > figcaption { display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(30px, 4vw, 58px); border-left: 1px solid rgb(96 52 58 / 24%); }
.process-motion > figcaption span { margin-bottom: auto; color: var(--retro-wine); font-size: 10px; font-weight: 800; }
.process-motion > figcaption strong { margin-top: clamp(80px, 11vw, 170px); font-family: "Frank Ruhl Libre", Georgia, serif; font-size: clamp(30px, 3.4vw, 50px); font-weight: 400; letter-spacing: -.04em; line-height: 1.04; }
.process-motion > figcaption p { margin: 22px 0 0; color: var(--retro-clay); font-size: 14px; line-height: 1.65; }
.process-motion-media { position: relative; min-width: 0; align-self: center; background: var(--retro-night); }
.process-motion-media video { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.process-motion-control { position: absolute; right: 18px; bottom: 18px; left: 18px; display: flex; min-height: 46px; align-items: center; justify-content: space-between; gap: 18px; padding: 8px 10px 8px 16px; color: #d9dbe1; background: rgb(12 23 27 / 91%); border: 1px solid rgb(255 255 255 / 16%); font-size: 9px; }
.process-list { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 1370px; padding: 0; margin: 0 auto; list-style: none; border-top: 1px solid rgb(255 255 255 / 30%); }
.process-list li { display: grid; grid-template-columns: 44px 1fr; gap: 18px; min-height: 310px; padding: 31px 28px 36px; border-inline-start: 1px solid rgb(255 255 255 / 24%); }
.process-list li:first-child { border-inline-start: 0; }
.process-list li > span { display: grid; width: 40px; height: 40px; place-items: center; color: var(--retro-night); background: var(--retro-violet-soft); border-radius: 50%; font-weight: 800; }
.process-list small { color: #e2d1d5; font-size: 10px; font-weight: 800; }
.process-list h3 { margin: 72px 0 12px; font-size: 22px; line-height: 1.25; }
.process-list p { margin: 0; color: #eadde0; font-size: 14px; }

.security { position: relative; display: grid; grid-template-columns: minmax(360px, .72fr) minmax(500px, 1fr); gap: clamp(70px, 10vw, 170px); align-items: center; padding: clamp(108px, 11vw, 178px) clamp(24px, 8vw, 140px); color: #fff; background: var(--retro-blue-deep); overflow: hidden; }
.security-identity { display: grid; min-height: 430px; align-content: space-between; padding: clamp(32px, 4vw, 58px); background: #202d40; border: 1px solid rgb(255 255 255 / 18%); }
.security-identity img { width: min(100%, 420px); height: auto; }
.security-identity div { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid rgb(255 255 255 / 24%); border-right: 1px solid rgb(255 255 255 / 24%); }
.security-identity span { min-height: 92px; padding: 19px; color: #d7dce4; border-bottom: 1px solid rgb(255 255 255 / 24%); border-left: 1px solid rgb(255 255 255 / 24%); font-size: 11px; font-weight: 730; }
.security-copy { max-width: 760px; }
.security-copy h2 { margin-top: 28px; }
.security-copy > p:not(.section-index) { max-width: 650px; margin: 30px 0 0; color: #d7dce4; font-size: 17px; }
.security-copy > a { display: inline-flex; gap: 22px; align-items: center; margin-top: 34px; padding-bottom: 6px; color: var(--retro-violet-soft); border-bottom: 1px solid rgb(209 201 227 / 48%); font-weight: 720; }

.demo { position: relative; padding: clamp(110px, 12vw, 190px) 24px; text-align: center; background: var(--paper); overflow: hidden; }
.demo .section-index, .demo h2, .demo p, .demo .button { position: relative; z-index: 2; }
.demo h2 { margin-top: 25px; }
.demo p:not(.section-index) { max-width: 680px; margin: 28px auto 36px; color: var(--ink-700); font-size: 17px; }
.demo-lockup { position: absolute; top: 50%; left: 50%; width: min(88vw, 900px); height: auto; filter: brightness(0) saturate(100%); opacity: .035; pointer-events: none; transform: translate(-50%, -50%); }

footer { display: grid; grid-template-columns: minmax(210px, 1fr) auto minmax(300px, 1fr); gap: 30px; align-items: center; min-height: 122px; padding: 22px clamp(24px, 5.4vw, 92px); color: #aebfc3; background: var(--ink-1000); border-top: 1px solid rgb(255 255 255 / 12%); }
footer img { width: 210px; height: auto; }
footer div { display: flex; gap: 30px; font-size: 12px; }
footer a:hover { color: #fff; }
footer p { justify-self: end; margin: 0; font-size: 11px; }

.collage-review-page { color: var(--retro-night); background: var(--retro-paper-deep); }
.collage-review { width: min(100%, 1720px); margin: 0 auto; padding: clamp(24px, 4vw, 68px); }
.collage-review-head { display: grid; grid-template-columns: minmax(520px, 1fr) minmax(300px, .5fr); gap: 28px clamp(50px, 9vw, 150px); align-items: end; padding: 18px 0 clamp(64px, 8vw, 124px); }
.collage-review-head > a, .collage-review-head > p { grid-column: 1 / -1; }
.collage-review-head img { width: min(250px, 60vw); height: auto; }
.collage-review-head > p { margin: 32px 0 0; color: var(--retro-wine); font-size: 10px; font-weight: 800; letter-spacing: .12em; direction: ltr; text-align: left; }
.collage-review-head h1 { margin: 0; font-family: "Frank Ruhl Libre", Georgia, serif; font-size: clamp(56px, 6.8vw, 108px); font-weight: 400; letter-spacing: -.05em; line-height: .92; }
.collage-review-head h1 em { color: var(--retro-wine); font-style: normal; font-weight: 600; }
.collage-review-head > div { max-width: 500px; padding-bottom: 6px; }
.collage-review-head > div p { margin: 0 0 24px; color: var(--retro-clay); font-size: 16px; line-height: 1.75; }
.collage-review-head > div a { padding-bottom: 5px; color: var(--retro-wine); border-bottom: 1px solid var(--retro-wine-soft); font-size: 12px; font-weight: 750; }
.collage-review-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(34px, 5vw, 76px) clamp(18px, 2.5vw, 38px); }
.collage-review-grid article { position: relative; overflow: hidden; background: var(--surface); border: 1px solid rgb(96 52 58 / 20%); box-shadow: 0 24px 60px rgb(38 25 26 / 10%); }
.collage-review-grid article > div { display: grid; grid-template-columns: 45px 1fr auto; min-height: 76px; align-items: center; gap: 15px; padding: 14px 18px; border-bottom: 1px solid rgb(96 52 58 / 18%); }
.collage-review-grid article span { color: var(--retro-wine); font-size: 12px; font-weight: 850; direction: ltr; }
.collage-review-grid article strong { font-family: "Frank Ruhl Libre", Georgia, serif; font-size: clamp(20px, 1.8vw, 29px); font-weight: 500; }
.collage-review-grid article small { color: var(--retro-clay); font-size: 10px; font-weight: 700; }
.collage-review-grid article img { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.collage-review-grid article.is-selected { outline: 5px solid var(--retro-violet-soft); outline-offset: -5px; }
.collage-review-grid article.is-selected::after { content: "נבחר לפתיחה"; position: absolute; bottom: 18px; left: 18px; padding: 10px 14px; color: #fff; background: var(--retro-wine); font-size: 10px; font-weight: 800; }
.collage-review-grid article.is-lead::after { content: "מוביל את הפתיחה"; background: var(--retro-night); }
.collage-review-foot { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: clamp(70px, 9vw, 140px); padding: 35px 0; color: var(--retro-clay); border-top: 1px solid rgb(96 52 58 / 28%); }
.collage-review-foot a { color: var(--retro-wine); font-weight: 800; }

.frame-compare { margin: 0 0 clamp(78px, 10vw, 156px); padding-top: clamp(32px, 4vw, 62px); border-top: 1px solid rgb(96 52 58 / 24%); }
.frame-compare-head { display: grid; grid-template-columns: minmax(0, .8fr) minmax(290px, .45fr); gap: 22px clamp(40px, 8vw, 130px); align-items: end; margin-bottom: clamp(34px, 5vw, 70px); }
.frame-compare-head > p { grid-column: 1 / -1; margin: 0; color: var(--retro-wine); font-size: 9px; font-weight: 850; letter-spacing: .14em; direction: ltr; text-align: left; }
.frame-compare-head h2 { margin: 0; font-family: "Frank Ruhl Libre", Georgia, serif; font-size: clamp(42px, 5.2vw, 78px); font-weight: 450; line-height: .94; letter-spacing: -.04em; }
.frame-compare-head h2 em { color: var(--retro-wine); font-style: normal; }
.frame-compare-head > span { max-width: 440px; color: var(--retro-clay); font-size: 14px; line-height: 1.7; }
.frame-compare-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(18px, 2vw, 30px); direction: ltr; }
.frame-option { min-width: 0; direction: rtl; }
.frame-option > header { display: grid; grid-template-columns: 34px 1fr; align-items: baseline; gap: 3px 12px; min-height: 68px; padding: 12px 2px; }
.frame-option > header span { grid-row: 1 / 3; color: var(--retro-wine); font-family: "Frank Ruhl Libre", Georgia, serif; font-size: 25px; }
.frame-option > header strong { color: var(--retro-night); font-size: 13px; font-weight: 820; }
.frame-option > header small { color: var(--retro-clay); font-size: 9px; }
.frame-option.is-selected > header small { color: var(--retro-wine); font-weight: 850; }
.frame-option.is-selected .frame-study { outline: 4px solid var(--retro-wine); outline-offset: -4px; }
.frame-study { display: grid; direction: ltr; grid-template-columns: minmax(0, 76fr) minmax(0, 24fr); min-height: clamp(330px, 28vw, 460px); overflow: hidden; border: 1px solid rgb(96 52 58 / 22%); box-shadow: 0 20px 48px rgb(38 25 26 / 10%); }
.frame-study figure { position: relative; min-width: 0; margin: 0; overflow: hidden; background: var(--retro-night); }
.frame-study figure img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 56% 54%; transform: scale(1.2); }
.frame-study-panel { position: relative; isolation: isolate; display: flex; direction: rtl; flex-direction: column; justify-content: flex-end; min-width: 0; padding: clamp(12px, 1.1vw, 18px); overflow: hidden; background: var(--retro-paper); }
.frame-study-panel::before, .frame-study-panel::after { content: ""; position: absolute; z-index: -1; }
.frame-study-panel > span { position: absolute; z-index: 2; top: 14px; right: 13px; color: #fff; font-size: 7px; font-weight: 850; letter-spacing: .1em; direction: ltr; }
.frame-study-panel > img { position: absolute; z-index: 2; width: 82%; height: auto; }
.frame-study-panel > div { position: relative; z-index: 2; display: grid; gap: 12px; }
.frame-study-panel strong { max-width: 7ch; color: var(--retro-night); font-family: "Frank Ruhl Libre", Georgia, serif; font-size: clamp(18px, 1.65vw, 27px); font-weight: 540; line-height: .98; }
.frame-study-panel small { padding-top: 9px; color: var(--retro-wine); border-top: 1px solid rgb(96 52 58 / 34%); font-size: 7px; font-weight: 820; line-height: 1.35; }
.frame-study-a .frame-study-panel::before { inset: 0 0 auto; height: 31%; background: var(--retro-wine); }
.frame-study-a .frame-study-panel::after { top: 31%; right: 0; width: 72%; height: 14%; background: var(--retro-violet-soft); border-left: 7px solid var(--retro-blue); }
.frame-study-a .frame-study-panel > img { top: 14%; right: 50%; transform: translate(50%, -50%); }
.frame-study-b .frame-study-panel { background: #f1eadb; }
.frame-study-b .frame-study-panel::before { inset: 0 auto 0 0; width: 19%; background: var(--retro-wine); }
.frame-study-b .frame-study-panel::after { top: 0; right: 0; left: 19%; height: 28%; background: var(--retro-violet-soft); border-bottom: 8px solid var(--retro-blue); }
.frame-study-b .frame-study-panel > span { color: var(--retro-wine); }
.frame-study-b .frame-study-panel > img { top: 12%; right: 48%; transform: translate(50%, -50%); filter: brightness(0); opacity: .58; }
.frame-study-c .frame-study-panel { background: var(--retro-blue); }
.frame-study-c .frame-study-panel::before { inset: 15% 11% 10%; background: var(--retro-paper); }
.frame-study-c .frame-study-panel::after { inset: 0 0 auto auto; width: 58%; height: 13%; background: var(--retro-wine); }
.frame-study-c .frame-study-panel > span { top: 16px; right: auto; left: 12px; }
.frame-study-c .frame-study-panel > img { top: 27%; right: 50%; transform: translate(50%, -50%); filter: brightness(0); opacity: .48; }
.frame-study-c .frame-study-panel > div { margin: 0 5% 10%; }

.visual-atlas-stream { display: grid; gap: clamp(26px, 4vw, 62px); direction: ltr; }
.visual-set { position: relative; display: grid; grid-template-columns: minmax(0, 76fr) minmax(0, 24fr); min-height: clamp(430px, 46vw, 720px); overflow: hidden; background: var(--retro-paper-deep); border: 1px solid rgb(96 52 58 / 22%); box-shadow: 0 28px 70px rgb(38 25 26 / 12%); }
.visual-set.is-reverse { grid-template-columns: minmax(0, 24fr) minmax(0, 76fr); }
.visual-set.is-liked { border-color: rgb(96 52 58 / 54%); box-shadow: 0 28px 70px rgb(38 25 26 / 14%), inset 0 0 0 3px rgb(245 239 226 / 68%); }
.visual-set-media { grid-column: 1; display: grid; min-width: 0; height: 100%; overflow: hidden; }
.visual-set.is-reverse .visual-set-media { grid-column: 2; }
.visual-set-media.count-1 { grid-template-columns: 1fr; }
.visual-set-media.count-2 { grid-template-columns: 1.08fr .92fr; }
.visual-set-media.count-3 { grid-template-columns: .92fr 1.12fr .96fr; }
.visual-set-media.opening-workshop-media {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-template-rows: minmax(0, 3fr) minmax(0, 2fr);
  gap: clamp(7px, .65vw, 11px);
  background: var(--retro-paper);
}
.visual-set-media.opening-workshop-media figure:nth-child(1) { grid-column: 1; grid-row: 1 / 3; }
.visual-set-media.opening-workshop-media figure:nth-child(2) { grid-column: 2; grid-row: 1; }
.visual-set-media.opening-workshop-media figure:nth-child(3) { grid-column: 2; grid-row: 2; }
.visual-set-media.count-4 { grid-template-columns: 1.08fr .9fr 1.02fr; grid-template-rows: 1fr 1fr; }
.visual-set-media.count-4 figure:nth-child(1) { grid-column: 1; grid-row: 1 / 3; }
.visual-set-media.count-4 figure:nth-child(2) { grid-column: 2; grid-row: 1; }
.visual-set-media.count-4 figure:nth-child(3) { grid-column: 2; grid-row: 2; }
.visual-set-media.count-4 figure:nth-child(4) { grid-column: 3; grid-row: 1 / 3; }
.visual-set-media figure { position: relative; min-width: 0; margin: 0; overflow: hidden; background: #171313; box-shadow: inset -1px 0 rgb(245 239 226 / 65%); }
.visual-set-media img { position: absolute; inset: 0; display: block; width: 100%; height: 100%; object-fit: cover; object-position: var(--focus, 50% 50%); transform: scale(var(--zoom, 1)); }
.visual-set-frame { --frame-cap: var(--retro-wine); --frame-band: var(--retro-violet-soft); --frame-sliver: var(--retro-blue); position: relative; isolation: isolate; grid-column: 2; display: flex; direction: rtl; flex-direction: column; justify-content: flex-end; min-width: 0; padding: clamp(22px, 2.25vw, 38px); color: var(--retro-night); background: var(--retro-paper); overflow: hidden; }
.visual-set-frame::before { content: ""; position: absolute; z-index: -2; inset: 0 0 auto; height: 33%; background: var(--frame-cap); }
.visual-set-frame::after { content: ""; position: absolute; z-index: -1; top: 33%; right: 0; width: 72%; height: 14%; background: var(--frame-band); border-left: clamp(8px, .8vw, 14px) solid var(--frame-sliver); }
.visual-set.is-reverse .visual-set-frame { grid-column: 1; grid-row: 1; }
.visual-set-frame span { position: absolute; top: clamp(16px, 1.8vw, 28px); right: clamp(18px, 2vw, 32px); color: #fff; font-size: 9px; font-weight: 850; letter-spacing: .14em; direction: ltr; }
.visual-set.is-liked .visual-set-frame span::after { content: "  ·  נבחר"; color: var(--retro-paper); letter-spacing: 0; direction: rtl; }
.visual-set-lockup { position: absolute; top: 13%; right: 50%; width: min(78%, 210px); height: auto; transform: translate(50%, -50%); opacity: .9; }
.visual-set-frame strong { max-width: 9ch; font-family: "Frank Ruhl Libre", Georgia, serif; font-size: clamp(27px, 2.75vw, 46px); font-weight: 540; line-height: .96; letter-spacing: -.025em; }
.visual-set-frame p { max-width: 19ch; margin: 14px 0 24px; color: var(--retro-clay); font-size: clamp(11px, .92vw, 14px); line-height: 1.55; }
.visual-set-frame small { padding-top: 13px; color: var(--retro-wine); border-top: 1px solid rgb(96 52 58 / 32%); font-size: 9px; font-weight: 800; }
.visual-set.theme-lilac .visual-set-frame { --frame-cap: var(--retro-blue); --frame-band: var(--retro-wine-soft); --frame-sliver: var(--retro-violet-soft); background: #f1eadb; }
.visual-set.theme-blue .visual-set-frame { --frame-cap: var(--retro-night); --frame-band: var(--retro-blue); --frame-sliver: var(--retro-wine-soft); background: var(--retro-paper); }
.visual-set.theme-paper .visual-set-frame { --frame-cap: var(--retro-wine); --frame-band: var(--retro-paper-deep); --frame-sliver: var(--retro-violet-soft); background: #eee5d4; }
.visual-set.site-visual .visual-set-frame { background: var(--retro-paper); }
.visual-set.site-visual.theme-paper .visual-set-frame { --frame-band: var(--retro-blue); }

/* Frame removed 6.9.26 by Yaron: no colour fields and no squares. The collage is the photography itself. */
.site-visual {
  position: relative;
  display: block;
  isolation: isolate;
  width: 100%;
  max-width: 1390px;
  min-height: clamp(470px, 45vw, 690px);
  margin-inline: auto;
  overflow: hidden;
  background: var(--retro-paper);
  border-color: rgb(96 52 58 / 18%);
  box-shadow: 0 24px 58px rgb(38 25 26 / 10%);
}
.site-visual .visual-set-media,
.site-visual.is-reverse .visual-set-media {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: grid;
  width: auto;
  height: auto;
  gap: clamp(3px, .3vw, 5px);
  overflow: hidden;
  direction: ltr;
  background: transparent;
  outline: 1px solid rgb(96 52 58 / 10%);
  box-shadow: 0 12px 30px rgb(38 25 26 / 10%);
}
.site-visual .visual-set-media figure {
  position: relative;
  z-index: 2;
  min-width: 0;
  overflow: hidden;
  outline: 0;
  box-shadow: none;
}
.site-visual .visual-set-media.count-1 { grid-template: 1fr / 1fr; }
.site-visual .visual-set-media.count-2 { grid-template: 1fr / 1.14fr .86fr; }
.site-visual .visual-set-media.count-3 { grid-template-columns: 1.05fr .95fr; grid-template-rows: 1.08fr .92fr; }
.site-visual .visual-set-media.count-3 figure:nth-child(1) { grid-column: 1; grid-row: 1 / 3; }
.site-visual .visual-set-media.count-3 figure:nth-child(2) { grid-column: 2; grid-row: 1; }
.site-visual .visual-set-media.count-3 figure:nth-child(3) { grid-column: 2; grid-row: 2; }
.site-visual .visual-set-media.count-4 { grid-template-columns: 1.08fr .82fr 1fr; grid-template-rows: 1fr 1fr; }
.site-visual .visual-set-media.count-4 figure:nth-child(1) { grid-column: 1; grid-row: 1 / 3; }
.site-visual .visual-set-media.count-4 figure:nth-child(2) { grid-column: 2; grid-row: 1; }
.site-visual .visual-set-media.count-4 figure:nth-child(3) { grid-column: 2; grid-row: 2; }
.site-visual .visual-set-media.count-4 figure:nth-child(4) { grid-column: 3; grid-row: 1 / 3; }
.site-visual .visual-set-frame,
.site-visual.is-reverse .visual-set-frame {
  position: absolute;
  z-index: 1;
  inset: 0;
  grid-column: auto;
  grid-row: auto;
  display: block;
  padding: 0;
  overflow: visible;
  pointer-events: none;
}

/* Per-collage crop rhythm. */
.site-visual-09 .visual-set-media.count-4 { grid-template-columns: .78fr .92fr 1.3fr; grid-template-rows: 1fr 1fr; }
.site-visual-09 .visual-set-media.count-4 figure:nth-child(1) { grid-column: 3; grid-row: 1 / 3; }
.site-visual-09 .visual-set-media.count-4 figure:nth-child(2) { grid-column: 2; grid-row: 1; }
.site-visual-09 .visual-set-media.count-4 figure:nth-child(3) { grid-column: 2; grid-row: 2; }
.site-visual-09 .visual-set-media.count-4 figure:nth-child(4) { grid-column: 1; grid-row: 1 / 3; }
.site-visual-01 .visual-set-media.count-2 { grid-template-columns: 1.16fr .84fr; }
.site-visual-05 .visual-set-media.count-2 { grid-template-columns: .86fr 1.14fr; }
.site-visual-home { margin-top: clamp(62px, 7vw, 108px); }
.site-visual-section { margin-bottom: 72px; }
.site-visual-journey { margin-bottom: clamp(68px, 7vw, 108px); }
.site-visual-editorial { position: relative; z-index: 1; margin-top: clamp(58px, 6.5vw, 98px); }
.site-visual-security { max-width: 1390px; }
.site-visual-contact { grid-column: 1 / -1; max-width: 1370px; margin-top: clamp(28px, 5vw, 66px); }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity 700ms var(--ease), transform 700ms var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.principle-card:nth-child(2), .process-list li:nth-child(2) { transition-delay: 80ms; }
.principle-card:nth-child(3), .process-list li:nth-child(3) { transition-delay: 160ms; }
.principle-card:nth-child(4) { transition-delay: 240ms; }
@keyframes panel-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 1180px) {
  .site-header { grid-template-columns: 220px 1fr; }
  .main-nav { display: none; }
  .product-grid { grid-template-columns: 200px minmax(0, 1fr); }
  .evidence-rail { display: none; }
  .matter-body { grid-template-columns: 190px minmax(0, 1fr); }
  .source-rail { display: none; }
  .manifesto-grid { grid-template-columns: 90px 1fr .62fr; gap: 40px; }
  .architecture-grid { grid-template-columns: 300px minmax(0, 1fr); }
  .architecture-tabs button { min-height: 190px; }
  .system-panel { min-height: 570px; }
}

@media (max-width: 900px) {
  .site-header { min-height: 78px; padding-inline: 22px; }
  .brand { width: 190px; }
  .hero h1 { font-size: clamp(58px, 10.4vw, 88px); }
  .hero-intro { grid-template-columns: 1fr; gap: 28px; }
  .opening-collage-film figcaption { width: 290px; }
  .hero-proof { grid-template-columns: 1fr; }
  .hero-proof-rail { display: grid; grid-template-columns: 180px 1fr auto; gap: 28px; align-items: center; padding: 28px; border-bottom: 1px solid rgb(255 255 255 / 25%); border-left: 0; }
  .hero-proof-rail div { margin: 0; }
  .hero-proof-rail strong { font-size: 29px; }
  .human-judgment { padding: 72px 22px; }
  .human-statement { grid-template-columns: 1fr; gap: 34px; }
  .human-lockup { width: 210px; }
  .human-visual { min-height: 0; }
  .film-heading { grid-template-columns: 1fr; gap: 34px; }
  .film-row, .film-row:nth-child(even) { grid-template-columns: 1fr; min-height: 0; }
  .film-row .film-copy, .film-row:nth-child(even) .film-copy { grid-column: 1; grid-row: 1; min-height: 330px; border-right: 0; border-bottom: 1px solid rgb(255 255 255 / 24%); border-left: 0; }
  .film-row .film-frame, .film-row:nth-child(even) .film-frame { grid-column: 1; grid-row: 2; }
  .hero-showcase { min-height: 650px; padding: 52px 32px 0; }
  .product-shell { min-height: 598px; }
  .product-grid { min-height: 536px; grid-template-columns: 175px minmax(0, 1fr); }
  .product-main { padding: 28px 24px; }
  .sidebar-status { margin-top: 130px; }
  .primary-action { grid-template-columns: 32px 1fr; }
  .primary-action a { grid-column: 2; justify-self: start; }
  .proof-line > div { grid-template-columns: 30px 1fr; padding-inline: 24px; }
  .manifesto-grid, .architecture-heading, .story-heading, .principles-head, .security { grid-template-columns: 1fr; }
  .manifesto-grid { gap: 44px; }
  .manifesto-grid::before { display: none; }
  .architecture-heading { gap: 34px; }
  .architecture-grid { grid-template-columns: 1fr; }
  .architecture-tabs { display: grid; grid-template-columns: repeat(3, 1fr); }
  .architecture-tabs button { grid-template-columns: 1fr; grid-template-rows: auto auto auto; min-height: 150px; padding: 22px 16px; text-align: center; }
  .architecture-tabs button > span { grid-row: auto; }
  .architecture-tabs button[aria-selected="true"] { box-shadow: inset 0 -4px var(--retro-wine-soft); }
  .system-panel { min-height: 560px; }
  .story-heading { gap: 26px; }
  .matter-body { grid-template-columns: 1fr; }
  .matter-tabs { display: grid; grid-template-columns: repeat(3, 1fr); padding: 10px; border-left: 0; border-bottom: 1px solid var(--line); }
  .matter-tabs button { grid-template-columns: 1fr; min-height: 60px; text-align: center; }
  .matter-tabs button span { display: none; }
  .principle-grid { grid-template-columns: repeat(2, 1fr); }
  .principle-card:nth-child(3) { border-inline-start: 0; }
  .principle-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .process-list { grid-template-columns: 1fr; }
  .process-motion { grid-template-columns: 1fr; }
  .process-motion > figcaption { min-height: 300px; border-bottom: 1px solid rgb(96 52 58 / 24%); border-left: 0; }
  .process-motion > figcaption strong { margin-top: 74px; }
  .process-list li { min-height: auto; border-inline-start: 0; border-bottom: 1px solid rgb(255 255 255 / 24%); }
  .process-list h3 { margin-top: 28px; }
  .security-identity { grid-row: 2; min-height: 360px; }
  footer { grid-template-columns: 1fr auto; }
  footer p { grid-column: 1 / -1; justify-self: start; }
  .collage-review-head { grid-template-columns: 1fr; }
  .collage-review-grid { grid-template-columns: 1fr; }
  .frame-compare-head { grid-template-columns: 1fr; }
  .frame-compare-grid { grid-template-columns: 1fr; gap: 34px; }
  .frame-study { min-height: clamp(390px, 72vw, 570px); }
}

@media (max-width: 620px) {
  .topline { min-height: 34px; gap: 10px; padding-inline: 12px; font-size: 9px; }
  .topline p { max-width: 230px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .site-header { grid-template-columns: minmax(140px, 1fr) auto; min-height: 72px; padding-inline: 15px; }
  .brand { width: 156px; }
  .login-link { display: none; }
  .header-actions .button { min-height: 39px; padding: 10px 12px; font-size: 11px; }
  .hero { padding: 64px 15px 76px; }
  .eyebrow { margin-bottom: 22px; font-size: 10px; }
  .hero h1 { font-size: clamp(44px, 13.2vw, 58px); line-height: .94; }
  .hero-intro { margin-top: 34px; padding-top: 22px; }
  .hero-lead { font-size: 17px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button, .hero-actions .text-link { width: 100%; text-align: center; }
  .opening-collage-film { aspect-ratio: auto; margin-top: 52px; overflow: visible; }
  .opening-collage-film video { aspect-ratio: 4 / 3; object-position: left center; }
  .opening-collage-film figcaption { position: static; width: 100%; min-height: 190px; padding: 24px 20px; border-top: 1px solid rgb(255 255 255 / 24%); border-left: 0; }
  .opening-collage-film figcaption div { gap: 24px; }
  .opening-collage-film figcaption strong { font-size: 34px; }
  .opening-collage-film.selected-collage-film figcaption { position: static; width: 100%; min-height: 92px; flex-direction: row; padding: 16px 14px 16px 18px; border-top: 1px solid rgb(255 255 255 / 24%); border-right-width: 4px; border-left: 0; }
  .opening-collage-film.selected-collage-film figcaption div { gap: 4px; }
  .opening-collage-film.selected-collage-film figcaption strong { font-size: 22px; }
  .hero-proof { margin-top: 58px; }
  .hero-proof-rail { grid-template-columns: 1fr; gap: 25px; padding: 26px 20px; }
  .hero-proof-rail img { width: 185px; }
  .hero-proof-rail strong { max-width: 320px; font-size: 31px; }
  .hero-proof-video, .film-frame { margin: 10px; }
  .hero-video-caption, .film-meta { padding-inline: 9px; }
  .hero-showcase { min-height: 558px; margin-top: 58px; padding: 28px 13px 0; border-radius: 4px; }
  .product-shell { min-height: 530px; }
  .product-bar { grid-template-columns: 1fr auto; min-height: 54px; padding-inline: 13px; }
  .product-bar > p { display: none; }
  .product-brand { font-size: 11px; }
  .product-grid { min-height: 476px; grid-template-columns: 1fr; }
  .product-sidebar { display: none; }
  .product-main { padding: 22px 15px; }
  .product-main-head h2 { font-size: 21px; }
  .updated-pill { padding: 6px 8px; }
  .primary-action { margin-top: 20px; padding: 15px; }
  .primary-action h3 { font-size: 12px; }
  .primary-action p { display: none; }
  .product-cards { grid-template-columns: 1fr; }
  .product-cards article { min-height: 72px; }
  .product-cards article:nth-child(3) { display: none; }
  .timeline-card { display: none; }
  .proof-line { grid-template-columns: 1fr; }
  .proof-line > div { min-height: 78px; border-inline-start: 0; border-bottom: 1px solid rgb(255 255 255 / 14%); }
  .manifesto, .film-suite, .architecture, .story, .principles, .process, .security { padding-inline: 18px; }
  .manifesto h2, .architecture h2, .principles h2, .process h2, .security h2, .demo h2 { font-size: clamp(40px, 12.2vw, 56px); }
  .manifesto-copy p { font-size: 16px; }
  .human-judgment { padding: 56px 0 0; }
  .human-statement { min-height: 0; padding: 0 22px 42px; }
  .human-lockup { width: 190px; }
  .human-statement > div:not(.human-verbs) { padding: 0; }
  .human-statement h2 { font-size: clamp(44px, 12.5vw, 58px); }
  .human-statement > div > p:last-child { font-size: 15px; }
  .human-visual { min-height: 0; border-right: 0; border-left: 0; }
  .human-visual, .section-collage, .collage-memory, .collage-making { max-width: none; min-height: 0; aspect-ratio: auto; margin-inline: 0; padding-top: 56.28%; overflow: visible; background-position: top center; background-size: 100% auto; }
  .human-visual.home-selected-collage, .section-collage.home-selected-collage { display: grid; grid-template-columns: minmax(0, 76fr) minmax(0, 24fr); min-height: clamp(430px, 82vw, 590px); padding-top: 0; overflow: hidden; }
  .home-selected-collage.is-reverse { grid-template-columns: minmax(0, 24fr) minmax(0, 76fr); }
  .home-selected-collage .home-selected-frame { position: relative; width: auto; min-height: 0; padding: 15px 10px; border: 0; }
  .home-selected-collage .home-selected-frame::before { height: 30%; }
  .home-selected-collage .home-selected-frame::after { top: 30%; width: 76%; height: 13%; border-left-width: 7px; }
  .home-selected-collage .home-selected-frame > span { top: 13px; right: 10px; font-size: 7px; letter-spacing: .08em; }
  .home-selected-collage .home-selected-frame > img { top: 14%; width: 82%; }
  .home-selected-collage .home-selected-frame strong { max-width: 8ch; font-size: clamp(18px, 4.1vw, 25px); line-height: .98; }
  .home-selected-collage .home-selected-frame p { display: none; }
  .home-selected-collage .home-selected-frame small { padding-top: 9px; font-size: 7px; line-height: 1.4; }
  .human-visual figcaption { position: static; grid-template-columns: 1fr; align-items: flex-start; gap: 5px; min-height: 82px; padding: 14px 18px; border-right-width: 4px; }
  .human-visual figcaption strong { font-size: 18px; }
  .section-collage { margin-bottom: 48px; }
  .section-collage figcaption, .process .section-collage figcaption { position: static; width: 100%; padding: 16px 18px 18px; }
  .section-collage figcaption strong { font-size: 20px; }
  .film-heading { margin-bottom: 48px; }
  .film-heading h2 { font-size: clamp(46px, 13vw, 62px); }
  .film-heading > p:last-child { font-size: 15px; }
  .film-list { gap: 34px; }
  .film-row .film-copy, .film-row:nth-child(even) .film-copy { min-height: 300px; padding: 28px 22px; }
  .film-copy h3 { font-size: 42px; }
  .film-copy p { font-size: 14px; }
  .architecture-heading { margin-bottom: 42px; }
  .architecture-heading > p:last-child { font-size: 15px; }
  .architecture-grid { min-height: 660px; }
  .architecture-tabs button { min-height: 98px; padding: 14px 7px; }
  .architecture-tabs button > span, .architecture-tabs button small { display: none; }
  .architecture-tabs button strong { font-size: 25px; }
  .system-panel { min-height: 560px; padding: 34px 20px; }
  .system-panel h3 { font-size: 40px; }
  .matter-map { min-height: 290px; margin-top: 42px; }
  .matter-map span { min-width: 110px; font-size: 9px; }
  .matter-map span:nth-child(1) { top: 112px; right: 50%; transform: translateX(50%); }
  .matter-map span:nth-child(2) { top: 0; right: 0; }
  .matter-map span:nth-child(3) { right: auto; bottom: 0; left: 0; }
  .matter-map span:nth-child(4) { top: auto; right: 0; bottom: 0; left: auto; }
  .matter-map i { display: none; }
  .source-stack { grid-template-columns: 1fr; margin-top: 42px; }
  .source-stack > span { transform: rotate(-90deg); justify-self: center; }
  .source-stack article { min-height: 112px; }
  .source-stack strong { margin-top: 15px; }
  .judgment-card { margin-top: 42px; padding: 23px; }
  .judgment-card div { align-items: flex-start; flex-direction: column; margin-top: 30px; }
  .story-heading h2 { font-size: clamp(42px, 12vw, 58px); }
  .matter-stage { padding: 6px; border-radius: 13px; }
  .matter-window { border-radius: 7px; }
  .matter-topbar { min-height: 60px; padding: 10px 13px; }
  .matter-meta > span:first-child { display: none; }
  .matter-tabs { gap: 4px; padding: 7px; }
  .matter-tabs button { min-height: 52px; padding: 7px; font-size: 9px; }
  .matter-content { min-height: 500px; padding: 27px 17px; }
  .story-panel h3 { font-size: 26px; }
  .panel-callout { grid-template-columns: 14px 1fr; margin-top: 33px; padding: 15px; }
  .panel-callout button { grid-column: 2; justify-self: start; }
  .decision-grid { grid-template-columns: 1fr; }
  .decision-grid > div { min-height: 80px; }
  .decision-grid strong { margin-top: 8px; }
  .principles-head { margin-bottom: 40px; }
  .principle-grid { grid-template-columns: 1fr; }
  .principle-card, .principle-card:nth-child(3) { min-height: 245px; border-inline-start: 0; border-bottom: 1px solid var(--line); }
  .principle-card h3 { margin-top: 48px; }
  .process-list li { padding-inline: 8px; border-bottom-color: rgb(255 255 255 / 24%); }
  .process-motion { margin-inline: -18px; }
  .process-motion > figcaption { min-height: 250px; padding: 28px 22px; }
  .process-motion > figcaption strong { margin-top: 52px; font-size: 36px; }
  .process-motion-control { position: static; min-height: 50px; }
  .security-identity { min-height: 320px; padding: 25px; }
  .security-identity span { min-height: 72px; }
  .security-copy > p:not(.section-index) { font-size: 16px; }
  .demo { padding-inline: 18px; }
  footer { grid-template-columns: 1fr; padding-inline: 20px; }
  footer div { flex-wrap: wrap; }
  footer p { grid-column: auto; }
  .collage-review { padding-inline: 14px; }
  .collage-review-head { padding-top: 8px; }
  .collage-review-head h1 { font-size: clamp(48px, 13vw, 66px); }
  .collage-review-grid article > div { grid-template-columns: 32px 1fr; }
  .collage-review-grid article small { grid-column: 2; }
  .collage-review-foot { align-items: flex-start; flex-direction: column; }
  .frame-compare { padding-top: 26px; }
  .frame-compare-head h2 { font-size: clamp(39px, 11.5vw, 54px); }
  .frame-compare-head > span { font-size: 13px; }
  .frame-option > header { min-height: 60px; }
  .frame-study { min-height: clamp(420px, 82vw, 590px); }
  .frame-study-panel { padding: 13px 10px; }
  .frame-study-panel strong { font-size: clamp(18px, 4.2vw, 24px); }
  .visual-set, .visual-set.is-reverse { grid-template-columns: minmax(0, 76fr) minmax(0, 24fr); min-height: clamp(430px, 80vw, 620px); }
  .visual-set.is-reverse .visual-set-media { grid-column: 1; }
  .visual-set.is-reverse .visual-set-frame { grid-column: 2; }
  .visual-set-frame { padding: 15px 10px; }
  .visual-set-frame::before { height: 30%; }
  .visual-set-frame::after { top: 30%; width: 76%; height: 13%; border-left-width: 7px; }
  .visual-set-frame span { top: 13px; right: 10px; font-size: 7px; letter-spacing: .08em; }
  .visual-set.is-liked .visual-set-frame span::after { content: " · נבחר"; }
  .visual-set-lockup { top: 14%; width: 82%; }
  .visual-set-frame strong { max-width: 8ch; font-size: clamp(18px, 4.1vw, 25px); line-height: .98; }
  .visual-set-frame p { display: none; }
  .visual-set-frame small { padding-top: 9px; font-size: 7px; line-height: 1.4; }
  .site-visual .visual-set-frame p { display: none; }
}

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

/* Multi-page site structure */
.menu-toggle { display: none; }
.nav-mobile-login { display: none; }
.main-nav a[aria-current="page"]::after { transform: scaleX(1); }

@keyframes cernora-outer-edge-x {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(190%); }
}

@keyframes cernora-outer-edge-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(230%); }
}

.static-collage {
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: 1470px;
  aspect-ratio: 1672 / 941;
  margin-inline: auto;
  background: transparent;
  border: 1px solid rgb(96 52 58 / 20%);
  box-shadow: 0 32px 82px rgb(38 25 26 / 13%);
  overflow: visible;
}
.static-collage::before,
.product-material::before,
.craft-frame::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: clamp(-12px, -.75vw, -8px);
  left: 6%;
  width: 29%;
  height: clamp(8px, .75vw, 12px);
  background: linear-gradient(90deg, var(--retro-wine) 0 38%, var(--retro-violet) 38% 72%, var(--retro-blue) 72% 100%);
  animation: none;
  pointer-events: none;
}
.static-collage::after,
.product-material::after,
.craft-frame::after {
  content: "";
  position: absolute;
  z-index: 3;
  top: 7%;
  right: clamp(-12px, -.75vw, -8px);
  width: clamp(8px, .75vw, 12px);
  height: 24%;
  background: linear-gradient(180deg, var(--retro-wine-soft) 0 38%, var(--retro-violet) 38% 70%, var(--retro-blue) 70% 100%);
  animation: none;
  pointer-events: none;
}
.static-collage img { position: relative; z-index: 2; display: block; width: 100%; height: 100%; object-fit: cover; }
.static-collage-editorial::before,
.static-collage-security::before { animation-direction: reverse; animation-delay: -6s; }
.static-collage-editorial::after,
.static-collage-security::after { right: auto; left: clamp(-12px, -.75vw, -8px); animation-delay: -7s; }
.static-collage-home { margin-top: clamp(62px, 7vw, 108px); }
.static-collage-section { max-width: 1390px; margin-bottom: 72px; }
.static-collage-editorial { position: relative; z-index: 1; max-width: 1390px; margin-top: clamp(58px, 6.5vw, 98px); }
.static-collage-process { max-width: 1370px; margin-bottom: clamp(66px, 7vw, 108px); border-color: rgb(255 255 255 / 28%); box-shadow: 0 36px 90px rgb(35 13 17 / 22%); }
.static-collage-security { max-width: 1390px; border-color: rgb(96 52 58 / 22%); box-shadow: 0 36px 90px rgb(38 25 26 / 15%); }
.static-collage-contact { grid-column: 1 / -1; max-width: 1370px; margin-top: clamp(28px, 5vw, 66px); border-color: rgb(255 255 255 / 20%); }

.product-materials {
  direction: ltr;
  display: grid;
  grid-template-columns: minmax(0, 1.36fr) minmax(300px, .64fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: clamp(10px, 1.2vw, 18px);
  width: 100%;
  max-width: 1370px;
  height: clamp(470px, 48vw, 720px);
  margin: 0 auto clamp(58px, 6vw, 92px);
}
.product-material,
.craft-frame {
  position: relative;
  isolation: isolate;
  padding: 0;
  background: transparent;
}
.product-material { margin: 0; overflow: visible; border: 1px solid rgb(255 255 255 / 20%); }
.product-material:nth-child(even)::before,
.craft-frame:nth-child(even)::before { animation-direction: reverse; animation-delay: -5s; }
.product-material:nth-child(even)::after,
.craft-frame:nth-child(even)::after { right: auto; left: clamp(-12px, -.75vw, -8px); animation-delay: -8s; }
.product-material-whole { grid-row: 1 / 3; }
.product-material img { position: relative; z-index: 2; display: block; width: 100%; height: 100%; object-fit: cover; }
.product-material-detail img { object-position: 46% 50%; }
.product-material-result img { object-fit: contain; background: var(--retro-paper); }

.craft-notebook {
  padding: clamp(100px, 10vw, 164px) clamp(24px, 7vw, 120px);
  color: #fff;
  background: var(--retro-blue-deep);
}
.craft-notebook-head {
  display: grid;
  grid-template-columns: minmax(520px, 1fr) minmax(280px, .5fr);
  gap: clamp(42px, 8vw, 120px);
  align-items: end;
  max-width: 1370px;
  margin: 0 auto clamp(56px, 6vw, 86px);
}
.craft-notebook-head .section-index { grid-column: 1 / -1; }
.craft-notebook-head h2 {
  margin: 0;
  font-family: "Frank Ruhl Libre", Georgia, serif;
  font-size: clamp(48px, 6vw, 90px);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .96;
}
.craft-notebook-head > p:last-child { max-width: 430px; margin: 0 0 7px; color: #d7dce4; font-size: 17px; line-height: 1.75; }
.craft-notebook-grid {
  direction: ltr;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .8fr) minmax(300px, .92fr);
  grid-template-rows: minmax(310px, 1.22fr) minmax(230px, .78fr);
  gap: clamp(10px, 1.2vw, 18px);
  width: 100%;
  max-width: 1370px;
  min-height: clamp(650px, 60vw, 870px);
  margin: 0 auto;
}
.craft-frame { margin: 0; overflow: visible; border: 1px solid rgb(255 255 255 / 22%); }
.craft-frame-feature { grid-column: 1 / 3; }
.craft-frame-mosaic { grid-column: 3; grid-row: 1 / 3; }
.craft-frame-glass { grid-column: 1; grid-row: 2; }
.craft-frame-paint { grid-column: 2; grid-row: 2; }
.craft-frame img { position: relative; z-index: 2; display: block; width: 100%; height: 100%; object-fit: cover; }
.craft-frame-feature img { object-fit: contain; background: var(--retro-violet); }
.craft-frame-mosaic img { object-position: 62% 50%; }
.craft-frame figcaption {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 12px 15px;
  color: #fff;
  background: rgb(12 23 27 / 84%);
  border-top: 1px solid rgb(255 255 255 / 18%);
  font-size: 11px;
  font-weight: 720;
  direction: rtl;
}

.home-product-overview {
  padding: clamp(92px, 9vw, 142px) clamp(24px, 6vw, 102px);
  background: var(--retro-paper);
}
.home-overview-head {
  display: grid;
  grid-template-columns: minmax(520px, 1fr) minmax(280px, .48fr);
  gap: 28px clamp(52px, 9vw, 138px);
  align-items: end;
  max-width: 1470px;
  margin: 0 auto;
}
.home-overview-head .section-index { grid-column: 1 / -1; }
.home-overview-head h2,
.directory-heading h2,
.product-journey-head h2,
.audience-heading h2,
.security-details-head h2,
.security-boundary-copy h2,
.contact-copy h1 {
  margin: 0;
  font-family: "Frank Ruhl Libre", Georgia, serif;
  font-size: clamp(48px, 6.2vw, 92px);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .98;
}
.home-overview-head h2 em,
.inner-hero h1 em,
.product-journey-head h2 em,
.audience-heading h2 em,
.security-details-head h2 em,
.contact-copy h1 em { color: var(--retro-wine); font-style: normal; font-weight: 600; }
.home-overview-head > div { align-self: end; padding-bottom: 8px; }
.home-overview-head > div p { margin: 0 0 25px; color: var(--retro-clay); font-size: 17px; line-height: 1.75; }
.home-proof { margin-top: clamp(54px, 6vw, 88px); }

.site-directory {
  position: relative;
  padding: clamp(92px, 9vw, 142px) clamp(24px, 6vw, 102px);
  color: #fff;
  background: var(--retro-night);
  overflow: hidden;
}
.site-directory::before {
  content: "CERNORA · תיק · מקור · החלטה";
  position: absolute;
  top: 22px;
  left: -18px;
  color: rgb(166 154 198 / 8%);
  font-family: "Frank Ruhl Libre", Georgia, serif;
  font-size: clamp(52px, 8vw, 124px);
  line-height: 1;
  white-space: nowrap;
  direction: ltr;
}
.directory-heading { position: relative; z-index: 1; max-width: 1390px; margin: 0 auto 62px; }
.directory-heading h2 { max-width: 920px; margin-top: 28px; }
.directory-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); max-width: 1390px; margin: 0 auto; }
.directory-card {
  position: relative;
  display: flex;
  min-height: 470px;
  flex-direction: column;
  padding: clamp(28px, 3.6vw, 54px);
  border-inline-start: 1px solid rgb(255 255 255 / 24%);
  overflow: hidden;
  transition: transform 260ms var(--ease), background-color 260ms var(--ease);
}
.directory-card:first-child { border-inline-start: 0; }
.directory-card:hover { z-index: 2; transform: translateY(-8px); }
.directory-card > span { color: rgb(255 255 255 / 68%); font-family: "Frank Ruhl Libre", Georgia, serif; font-size: 42px; direction: ltr; }
.directory-card small { margin-top: 78px; color: rgb(255 255 255 / 68%); font-size: 10px; font-weight: 800; }
.directory-card h3 { max-width: 13ch; margin: 14px 0 20px; font-family: "Frank Ruhl Libre", Georgia, serif; font-size: clamp(32px, 3.4vw, 50px); font-weight: 400; letter-spacing: -.035em; line-height: 1; }
.directory-card p { max-width: 33ch; margin: 0; color: rgb(255 255 255 / 74%); font-size: 14px; }
.directory-card b { display: inline-flex; gap: 18px; align-items: center; margin-top: auto; padding-top: 44px; font-size: 12px; }
.directory-card i { font-style: normal; }
.directory-wine { background: var(--retro-wine); }
.directory-violet { color: var(--retro-night); background: var(--retro-violet); }
.directory-violet small, .directory-violet > span, .directory-violet p { color: rgb(7 7 28 / 68%); }
.directory-blue { background: var(--retro-blue-deep); }
.demo-compact { padding-block: clamp(84px, 8vw, 126px); }
.site-footer nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 28px; font-size: 12px; }

.inner-hero {
  position: relative;
  padding: clamp(74px, 7.5vw, 124px) clamp(24px, 6vw, 102px) clamp(92px, 9vw, 148px);
  background: var(--surface);
  overflow: hidden;
}
.inner-hero::before { content: ""; position: absolute; top: 0; right: 9%; width: 1px; height: calc(clamp(74px, 7.5vw, 124px) - 16px); background: var(--retro-wine-soft); }
.inner-hero-copy { position: relative; z-index: 2; max-width: 1390px; margin: 0 auto; }
.inner-hero h1 {
  max-width: 1150px;
  margin: 0;
  font-family: "Frank Ruhl Libre", Georgia, serif;
  font-size: clamp(62px, 8vw, 120px);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .91;
}
.inner-hero-copy > p:not(.eyebrow) { max-width: 720px; margin: 34px 0 0; color: var(--ink-700); font-size: clamp(17px, 1.4vw, 21px); line-height: 1.75; }
.inner-hero .hero-actions { margin-top: 36px; }
.inner-product-proof { position: relative; z-index: 2; margin-top: clamp(58px, 6.5vw, 102px); }
.inner-hero-editorial { padding-bottom: clamp(80px, 8vw, 128px); background: var(--retro-paper-deep); }
.inner-hero-editorial .home-selected-collage { position: relative; z-index: 1; max-width: 1390px; margin: clamp(58px, 6.5vw, 98px) auto 0; }

.product-journey,
.audience-section,
.security-boundary { padding: clamp(96px, 9.5vw, 152px) clamp(24px, 7vw, 120px); }
.product-journey { color: #fff; background: var(--retro-night); }
.product-journey-head,
.audience-heading,
.security-details-head { max-width: 1370px; margin: 0 auto 64px; }
.product-journey-head h2,
.audience-heading h2,
.security-details-head h2 { max-width: 970px; margin-top: 28px; }
.journey-grid,
.audience-grid,
.security-detail-grid,
.contact-expectations { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 1370px; margin: 0 auto; border-top: 1px solid rgb(255 255 255 / 24%); }
.journey-grid article,
.audience-grid article,
.contact-expectations article { min-height: 310px; padding: 32px 30px 38px; border-inline-start: 1px solid rgb(255 255 255 / 22%); }
.journey-grid article:first-child,
.audience-grid article:first-child,
.contact-expectations article:first-child { border-inline-start: 0; }
.journey-grid span,
.audience-grid span,
.contact-expectations span { color: var(--retro-violet-soft); font-family: "Frank Ruhl Libre", Georgia, serif; font-size: 38px; direction: ltr; }
.journey-grid h3,
.audience-grid h3,
.contact-expectations h3 { margin: 82px 0 15px; font-size: 21px; line-height: 1.25; }
.journey-grid p,
.audience-grid p,
.contact-expectations p { margin: 0; color: rgb(255 255 255 / 72%); font-size: 14px; }

.audience-section { color: #fff; background: var(--retro-blue-deep); }
.audience-grid { grid-template-columns: repeat(3, 1fr); }
.audience-grid article:nth-child(2) { background: rgb(166 154 198 / 10%); }
.audience-grid article:nth-child(3) { background: rgb(96 52 58 / 20%); }

.security-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(62px, 7vw, 108px);
  padding-top: clamp(78px, 8vw, 132px);
  color: var(--retro-night);
  background: var(--retro-paper-deep);
}
.security-hero::before { right: auto; left: 8%; height: calc(clamp(78px, 8vw, 132px) - 16px); background: var(--retro-wine-soft); }
.security-hero .inner-hero-copy {
  display: grid;
  grid-template-columns: minmax(560px, 1.2fr) minmax(320px, .55fr);
  gap: 26px clamp(52px, 9vw, 142px);
  align-items: end;
  width: 100%;
  max-width: 1390px;
}
.security-hero .eyebrow { grid-column: 1 / -1; }
.security-hero h1 { grid-column: 1; grid-row: 2 / 4; max-width: 920px; font-size: clamp(62px, 7.2vw, 108px); }
.security-hero .inner-hero-copy > p:not(.eyebrow) { grid-column: 2; grid-row: 2; max-width: 470px; margin: 0; color: var(--ink-700); }
.security-hero .hero-actions { grid-column: 2; grid-row: 3; margin-top: 8px; }
.security-hero .text-link { border-color: rgb(96 52 58 / 42%); }
.security-hero-identity { min-height: 480px; }
.security-details { padding: clamp(96px, 9.5vw, 154px) clamp(24px, 7vw, 120px); background: var(--retro-paper); }
.security-detail-grid { grid-template-columns: repeat(2, 1fr); border-color: var(--line); }
.security-detail-grid article { min-height: 300px; padding: clamp(28px, 4vw, 56px); border-inline-start: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.security-detail-grid article:nth-child(odd) { border-inline-start: 0; }
.security-detail-grid span { color: var(--retro-wine); font-family: "Frank Ruhl Libre", Georgia, serif; font-size: 38px; direction: ltr; }
.security-detail-grid h3 { margin: 66px 0 16px; font-size: 22px; }
.security-detail-grid p { max-width: 52ch; margin: 0; color: var(--ink-700); font-size: 15px; }
.security-boundary { display: grid; grid-template-columns: minmax(500px, 1fr) minmax(340px, .58fr); gap: clamp(58px, 9vw, 140px); align-items: center; color: #fff; background: var(--retro-wine); }
.security-boundary-copy h2 { max-width: 850px; margin-top: 27px; }
.security-boundary-copy > p:not(.section-index) { max-width: 700px; margin: 28px 0 0; color: #eadde0; font-size: 17px; }
.security-boundary-visual { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid rgb(255 255 255 / 28%); border-right: 1px solid rgb(255 255 255 / 28%); }
.security-boundary-visual span { display: grid; min-height: 130px; place-items: center; padding: 20px; text-align: center; border-bottom: 1px solid rgb(255 255 255 / 28%); border-left: 1px solid rgb(255 255 255 / 28%); font-size: 13px; font-weight: 730; }

.contact-page {
  display: grid;
  grid-template-columns: minmax(520px, 1fr) minmax(350px, .55fr);
  gap: clamp(54px, 8vw, 130px);
  align-items: start;
  min-height: calc(100vh - 244px);
  padding: clamp(80px, 8vw, 136px) clamp(24px, 7vw, 120px);
  color: #fff;
  background: var(--retro-night);
}
.contact-copy > p:not(.eyebrow) { max-width: 670px; margin: 32px 0 0; color: #cfd3d9; font-size: 18px; line-height: 1.75; }
.contact-card { padding: clamp(30px, 4vw, 58px); color: var(--retro-night); background: var(--retro-paper); border-top: 12px solid var(--retro-wine); }
.contact-card-label { margin: 0; color: var(--retro-wine); font-size: 10px; font-weight: 820; }
.contact-card h2 { margin: 72px 0 18px; font-family: "Frank Ruhl Libre", Georgia, serif; font-size: clamp(38px, 4.4vw, 62px); font-weight: 400; line-height: 1; }
.contact-card > p:not(.contact-card-label) { margin: 0 0 34px; color: var(--retro-clay); }
.contact-card > small { display: block; margin-top: 16px; color: var(--retro-clay); font-size: 12px; }
.contact-expectations { grid-column: 1 / -1; width: 100%; margin-top: clamp(28px, 5vw, 66px); }
.contact-expectations article { min-height: 240px; }
.contact-expectations h3 { margin-top: 50px; }

@media (max-width: 1180px) {
  .site-header { grid-template-columns: minmax(180px, 1fr) auto auto; gap: 14px; }
  .menu-toggle { display: inline-flex; min-height: 44px; align-items: center; gap: 9px; padding: 10px 14px; color: var(--ink-950); background: transparent; border: 1px solid #b6b9b5; border-radius: 5px; font-size: 12px; font-weight: 720; cursor: pointer; }
  .menu-toggle > span, .menu-toggle > span::before, .menu-toggle > span::after { display: block; width: 15px; height: 1px; background: currentColor; transition: transform 180ms var(--ease); }
  .menu-toggle > span { position: relative; }
  .menu-toggle > span::before, .menu-toggle > span::after { content: ""; position: absolute; right: 0; }
  .menu-toggle > span::before { top: -5px; }
  .menu-toggle > span::after { top: 5px; }
  .menu-toggle[aria-expanded="true"] > span { background: transparent; }
  .menu-toggle[aria-expanded="true"] > span::before { top: 0; transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span::after { top: 0; transform: rotate(-45deg); }
  .main-nav { position: absolute; z-index: 40; top: 100%; right: 0; left: 0; display: none; grid-template-columns: 1fr; gap: 0; padding: 12px 22px 22px; background: var(--surface); border-bottom: 1px solid #d8d8d2; box-shadow: 0 24px 50px rgb(8 21 29 / 14%); }
  .main-nav.is-open { display: grid; }
  .main-nav a { min-height: 52px; padding: 14px 8px; border-bottom: 1px solid #e6e3dc; }
  .main-nav a::after { bottom: 0; }
  .nav-mobile-login { display: block; }
  .home-overview-head,
  .security-hero,
  .security-boundary,
  .contact-page { grid-template-columns: 1fr; }
  .security-hero-identity { grid-row: auto; min-height: 390px; }
  .static-collage-security { max-width: 100%; }
  .contact-expectations { grid-column: 1; }
  .static-collage-contact { grid-column: 1; }
  .craft-notebook-head { grid-template-columns: 1fr; gap: 28px; }
  .craft-notebook-head .section-index { grid-column: auto; }
}

@media (max-width: 900px) {
  .home-overview-head { gap: 30px; }
  .home-overview-head .section-index { grid-column: auto; }
  .directory-grid { grid-template-columns: 1fr; }
  .directory-card { min-height: 330px; border-inline-start: 0; border-bottom: 1px solid rgb(255 255 255 / 24%); }
  .directory-card small { margin-top: 44px; }
  .journey-grid,
  .audience-grid,
  .contact-expectations { grid-template-columns: 1fr; }
  .journey-grid article,
  .audience-grid article,
  .contact-expectations article { min-height: 250px; border-inline-start: 0; border-bottom: 1px solid rgb(255 255 255 / 22%); }
  .journey-grid h3,
  .audience-grid h3,
  .contact-expectations h3 { margin-top: 48px; }
  .product-materials { grid-template-columns: 1fr; grid-template-rows: 1.2fr .72fr .72fr; height: auto; }
  .product-material { min-height: 310px; }
  .product-material-whole { grid-row: auto; min-height: 480px; }
  .craft-notebook { padding-inline: 18px; }
  .craft-notebook-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; min-height: 0; }
  .craft-frame-feature,
  .craft-frame-mosaic,
  .craft-frame-glass,
  .craft-frame-paint { grid-column: auto; grid-row: auto; min-height: 320px; }
  .craft-frame-feature,
  .craft-frame-mosaic { grid-column: 1 / -1; min-height: 430px; }
  .security-hero .inner-hero-copy { grid-template-columns: 1fr; gap: 24px; }
  .security-hero .eyebrow,
  .security-hero h1,
  .security-hero .inner-hero-copy > p:not(.eyebrow),
  .security-hero .hero-actions { grid-column: 1; grid-row: auto; }
  .security-hero .hero-actions { margin-top: 10px; }
}

@media (max-width: 620px) {
  .site-header { grid-template-columns: minmax(120px, 1fr) auto auto; gap: 8px; }
  .brand { width: 142px; }
  .menu-toggle { min-width: 44px; justify-content: center; padding-inline: 11px; font-size: 0; }
  .header-actions .button { padding-inline: 10px; }
  .home-product-overview,
  .site-directory,
  .inner-hero,
  .product-journey,
  .audience-section,
  .security-details,
  .security-boundary,
  .contact-page { padding-inline: 18px; }
  .home-overview-head h2,
  .directory-heading h2,
  .product-journey-head h2,
  .audience-heading h2,
  .security-details-head h2,
  .security-boundary-copy h2,
  .contact-copy h1 { font-size: clamp(41px, 12vw, 55px); }
  .inner-hero h1 { font-size: clamp(48px, 14vw, 66px); }
  .inner-product-proof { margin-top: 52px; }
  .static-collage-home { margin-top: 52px; }
  .static-collage-section { margin-bottom: 46px; }
  .static-collage-editorial { margin-top: 48px; }
  .directory-card { min-height: 300px; padding: 28px 22px; }
  .directory-card h3 { font-size: 38px; }
  .security-detail-grid { grid-template-columns: 1fr; }
  .security-detail-grid article,
  .security-detail-grid article:nth-child(odd) { min-height: 250px; border-inline-start: 0; }
  .security-detail-grid h3 { margin-top: 42px; }
  .security-boundary-visual span { min-height: 105px; padding: 14px; font-size: 11px; }
  .contact-card h2 { margin-top: 50px; }
  .product-material,
  .product-material-whole { min-height: 270px; }
  .craft-notebook-grid { grid-template-columns: 1fr; }
  .craft-frame-feature,
  .craft-frame-mosaic,
  .craft-frame-glass,
  .craft-frame-paint { grid-column: 1; min-height: 300px; }
  .craft-frame-feature { min-height: 250px; }
  .site-footer nav { justify-content: flex-start; }
}

/* 27.9.26: a short line under each collage that says why this craft stands for Cernora. */
.collage-note { position: relative; z-index: 1; display: flex; max-width: 1390px; gap: 18px; align-items: baseline; margin: 20px auto 0; color: var(--retro-clay); font-size: 15px; line-height: 1.7; }
.collage-note b { flex: 0 0 auto; color: var(--retro-wine); font-size: 11px; font-weight: 800; letter-spacing: .02em; }
.collage-note span { max-width: 820px; }
.collage-note-light { color: rgb(255 255 255 / 74%); }
.collage-note-light b { color: var(--retro-violet-soft); }
.site-visual-journey:has(+ .collage-note) { margin-bottom: 0; }
.site-visual-journey + .collage-note { margin-bottom: clamp(58px, 6vw, 96px); }
.security-hero > .collage-note { margin-top: calc(18px - clamp(62px, 7vw, 108px)); }
.contact-page > .collage-note { grid-column: 1 / -1; width: 100%; max-width: 1370px; margin-top: calc(18px - clamp(54px, 8vw, 130px)); }

/* 27.9.26: the step lists were written as ol/li while the rules styled article, so the browser
   numbered them twice and the contact page painted white text outside its dark section. */
.journey-grid small { display: block; margin-top: 8px; color: rgb(255 255 255 / 58%); font-size: 11px; font-weight: 760; }
.contact-expectations-head { grid-column: 1 / -1; width: 100%; max-width: 1370px; margin: 0 auto; }
.contact-expectations-head h2 { margin: 22px 0 0; font-family: "Frank Ruhl Libre", Georgia, serif; font-size: clamp(38px, 4.4vw, 62px); font-weight: 400; line-height: 1; }
.contact-page .contact-expectations { margin-top: calc(34px - clamp(54px, 8vw, 130px)); }

@media (max-width: 620px) {
  .collage-note { flex-direction: column; gap: 6px; font-size: 14px; }
}

/* 27.9.26: the product page stacked two full section paddings (about 330px of empty paper) twice. */
.inner-hero-product { padding-bottom: clamp(64px, 6vw, 100px); }
.inner-hero-product + .film-suite { padding-top: clamp(64px, 6vw, 100px); padding-bottom: clamp(72px, 7vw, 110px); }

/* Legal pages and the legal links in the footer (27.9.26) */
.footer-legal { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; justify-self: end; }
.site-footer .footer-legal nav { justify-content: flex-end; gap: 6px 18px; font-size: 11px; }
.footer-legal a { text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgb(174 191 195 / 45%); }
.footer-legal p { margin: 0; font-size: 11px; }
.legal-page { max-width: 780px; margin: 0 auto; padding: clamp(64px, 7vw, 112px) clamp(20px, 5vw, 48px) clamp(72px, 8vw, 128px); color: var(--ink-950); }
.legal-page h1 { margin: 0; font-family: "Frank Ruhl Libre", Georgia, serif; font-size: clamp(44px, 6vw, 76px); font-weight: 400; line-height: 1.05; color: var(--retro-night); }
.legal-page .legal-updated { margin: 18px 0 48px; color: var(--retro-clay); font-size: 14px; }
.legal-page h2 { margin: 48px 0 14px; font-size: 21px; font-weight: 700; line-height: 1.4; color: var(--retro-wine); }
.legal-page p, .legal-page li { font-size: 16px; line-height: 1.85; }
.legal-page p { margin: 0 0 14px; }
.legal-page ul { margin: 0 0 16px; padding-inline-start: 22px; }
.legal-page li { margin-bottom: 6px; }
.legal-page a { color: var(--retro-wine); text-decoration: underline; text-underline-offset: 3px; overflow-wrap: anywhere; }
.legal-table { margin: 8px 0 20px; overflow-x: auto; border: 1px solid var(--line); border-radius: 8px; }
.legal-table table { width: 100%; border-collapse: collapse; font-size: 15px; }
.legal-table th, .legal-table td { padding: 12px 14px; text-align: start; vertical-align: top; border-bottom: 1px solid var(--line); line-height: 1.7; }
.legal-table th { color: var(--retro-night); background: #f6f1ea; font-weight: 700; }
.legal-table tr:last-child td { border-bottom: 0; }
@media (max-width: 900px) {
  .footer-legal { grid-column: 1 / -1; justify-self: start; align-items: flex-start; }
  .site-footer .footer-legal nav { justify-content: flex-start; }
}
@media (max-width: 620px) {
  .footer-legal { grid-column: auto; }
}
