@charset "UTF-8";
:root {
  --ink: #302a24;
  --muted: #756b5e;
  --paper: #f8f4ed;
  --cream: #f0e9dc;
  --line: #ddd3c4;
  --brown: #805b39;
  --dark: #443728;
  --serif: Georgia,'Times New Roman',serif;
  --sans: Arial,Helvetica,sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 30px;
}
body {
  margin: 0;
  background: #e8dfd0;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
button,a {
  -webkit-tap-highlight-color: transparent;
}
button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
button:disabled {
  cursor: default;
}
img {
  display: block;
  max-width: 100%;
}
button,a,summary {
  touch-action: manipulation;
}
button:focus-visible,a:focus-visible,summary:focus-visible {
  outline: 3px solid #976b38;
  outline-offset: 5px;
}
h1,h2,h3,p {
  margin: 0;
}
h1,h2,h3 {
  font-family: var(--serif);
  font-weight: 400;
}
h2 {
  font-size: clamp(38px,4vw,56px);
  line-height: 1.1;
  letter-spacing: -2px;
}
h2 em,h1 em {
  font-weight: 400;
  color: var(--brown);
}
em {
  font-family: var(--serif);
}
.site-shell {
  max-width: 1440px;
  margin: 22px auto;
  background: var(--paper);
  border: 1px solid #fff9;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 80px #5a3f2310;
}
.header {
  height: 100px;
  margin: 0 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}
.brand>span {
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -.8px;
}
.brand small {
  font-family: var(--sans);
  font-size: 8px;
  letter-spacing: 2px;
  display: block;
  margin-top: 5px;
  color: var(--muted);
}
.desktop-nav {
  display: flex;
  gap: 28px;
  font-size: 13px;
}
.desktop-nav a,.footer a,.text-button {
  transition: color .2s;
}
.desktop-nav a:hover,.footer a:hover,.text-button:hover {
  color: var(--brown);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 25px;
}
.language {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
}
.language button {
  padding: 9px 3px;
  border: 0;
  background: none;
  color: var(--muted);
  min-height: 40px;
}
.language button[aria-pressed=true] {
  color: var(--ink);
  font-weight: 700;
}
.language>span {
  color: #b8aa97;
}
.button {
  background: var(--brown);
  color: #fffaf2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 14px 24px;
  border-radius: 50px;
  border: 1px solid transparent;
  font-size: 13px;
  line-height: 1.5;
  box-shadow: 0 5px 12px #72503217;
  transition: background .2s,transform .2s;
}
.button:hover {
  background: #604124;
  transform: translateY(-2px);
}
.button-small {
  padding: 11px 20px;
  font-size: 12px;
  gap: 18px;
}
.button span {
  font-size: 18px;
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  width: 40px;
  height: 44px;
  padding: 10px;
}
.menu-toggle span {
  display: block;
  height: 1px;
  background: var(--ink);
  margin: 7px 0;
  width: 21px;
}
.mobile-nav {
  padding: 15px 25px;
  border-bottom: 1px solid var(--line);
}
.mobile-nav a {
  display: block;
  padding: 12px;
}
.mobile-nav[hidden] {
  display: none;
}
.hero {
  display: grid;
  grid-template-columns: 45% 55%;
  min-height: 695px;
  padding: 40px 30px 26px 70px;
  position: relative;
}
.hero-copy {
  position: relative;
  z-index: 2;
  padding: 30px 0 35px;
}
.eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.7;
  font-weight: 500;
  color: var(--muted);
}
.hero .eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
}
.small-line {
  height: 1px;
  width: 24px;
  background: var(--brown);
}
h1 {
  font-size: clamp(65px,6.2vw,88px);
  line-height: 1.015;
  letter-spacing: -4.7px;
  margin: 28px 0 25px;
}
.hero-description {
  max-width: 395px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 28px;
}
.hero-footnote {
  font-size: 10px;
  letter-spacing: .1px;
  color: var(--muted);
  margin-top: 17px;
}
.hero-art {
  position: relative;
  min-width: 0;
  align-self: stretch;
  margin: 0 -8px 0 -54px;
}
.hero-still {
  position: absolute;
  bottom: 74px;
  left: -10px;
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 150px 150px 20px 20px;
  mix-blend-mode: multiply;
}
.phone {
  display: block;
  position: relative;
  border: 7px solid #292825;
  background: #292825;
  border-radius: 36px;
  box-shadow: 14px 25px 35px #32241533,2px 2px 0 #aba18f inset;
  overflow: hidden;
}
.phone img {
  width: 100%;
  height: auto;
  border-radius: 26px;
}
.phone-camera {
  position: absolute;
  z-index: 1;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 9px;
  background: #292825;
  border-radius: 8px;
}
.hero-phone {
  position: absolute;
  right: 26px;
  top: 22px;
  width: 239px;
  transform: rotate(8deg);
  box-shadow: 18px 28px 30px #32241533;
}
.hero-phone img {
  opacity: .97;
}
.artifact-label {
  position: absolute;
  left: 10px;
  bottom: 65px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 11px;
  line-height: 1.6;
  background: #f8f4ede8;
  padding: 14px 18px;
  border: 1px solid #fff;
  border-radius: 3px;
  box-shadow: 0 5px 10px #302a2405;
  transform: rotate(-4deg);
}
.artifact-label>span:first-child {
  color: var(--brown);
  font-family: var(--serif);
  font-size: 20px;
}
.hero-caption {
  position: absolute;
  right: 25px;
  bottom: 12px;
  font-size: 9px;
  letter-spacing: .5px;
  color: var(--muted);
}
.index-strip {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  padding: 24px 60px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  gap: 20px;
}
.index-strip>div {
  display: flex;
  gap: 17px;
  align-items: center;
  justify-content: center;
}
.index-strip span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: #a38a6b;
}
.index-strip p {
  font-size: 12px;
}
.section {
  margin: 0 70px;
  padding: 85px 0;
}
.section-heading {
  text-align: center;
  margin: 0 auto 45px;
}
.section-heading h2 {
  margin: 16px 0 22px;
}
.section-heading>p:last-child {
  color: var(--muted);
  font-size: 14px;
}
.idea-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.idea-grid article {
  border-radius: 20px;
  padding: 36px 38px 0;
  overflow: hidden;
  position: relative;
  min-height: 440px;
}
.panel-number {
  font-size: 9px;
  letter-spacing: 1.6px;
  color: var(--muted);
}
.idea-grid h3 {
  font-size: 35px;
  line-height: 1.1;
  letter-spacing: -1px;
  margin: 23px 0 15px;
}
.idea-grid p {
  max-width: 400px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.85;
}
.problem-panel {
  background: #eae3d8;
}
.solution-panel {
  background: #ecece2;
}
.scattered {
  height: 188px;
  position: relative;
  margin-top: 20px;
}
.paper {
  position: absolute;
  background: #f7f5ef;
  box-shadow: 3px 8px 15px #51433119;
  font-size: 12px;
}
.paper-one {
  width: 220px;
  height: 125px;
  left: -6px;
  top: 33px;
  transform: rotate(-8deg);
  padding: 15px;
}
.paper-one>span {
  font-size: 9px;
  letter-spacing: 1px;
  color: var(--muted);
}
.fake-grid {
  height: 72px;
  margin-top: 10px;
  background: repeating-linear-gradient(0deg,transparent 0 16px,#d5cfc4 16px 17px),repeating-linear-gradient(90deg,transparent 0 45px,#d5cfc4 45px 46px);
  border: 1px solid #d5cfc4;
}
.paper-two {
  width: 172px;
  right: 3px;
  top: 4px;
  background: #e5d1a2;
  padding: 20px 17px;
  transform: rotate(9deg);
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.3;
}
.paper-two i {
  display: block;
  height: 1px;
  background: #bfa57377;
  margin-top: 15px;
}
.paper-three {
  bottom: -12px;
  left: 110px;
  padding: 15px 22px;
  transform: rotate(-3deg);
  background: #e1e3d5;
  font-size: 13px;
}
.dossier-example {
  margin-top: 23px;
  background: #fffcf5;
  border-radius: 12px 12px 0 0;
  border: 1px solid #fff;
  padding: 20px 21px 12px;
  transform: rotate(-2deg);
  box-shadow: 0 8px 20px #4d472312;
}
.dossier-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.dossier-avatar {
  height: 36px;
  width: 36px;
  display: grid;
  place-items: center;
  background: #e3e6d5;
  border-radius: 10px;
  font-family: var(--serif);
  font-size: 22px;
  color: #697449;
}
.dossier-heading strong {
  font-weight: 500;
  font-size: 16px;
}
.dossier-heading div>span,.dossier-line div>span {
  display: block;
  font-size: 10px;
  color: var(--muted);
  margin-top: 2px;
}
.dossier-star {
  font-size: 28px;
  color: #a48a55;
  margin-left: auto;
}
.dossier-line {
  display: flex;
  gap: 12px;
  border-top: 1px solid #ebe7df;
  padding: 10px 0;
}
.dossier-line>span {
  color: #8d916b;
}
.dossier-line b {
  font-size: 12px;
  font-weight: 400;
}
.dossier-bottom {
  font-size: 8px;
  color: var(--muted);
  padding-top: 5px;
}
.tour {
  background: #eee7db;
  border-radius: 24px;
  display: grid;
  grid-template-columns: 49% 51%;
  padding: 55px 45px;
  gap: 25px;
  margin-bottom: 5px;
}
.tour-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.tour-decoration {
  font-family: var(--serif);
  font-size: 340px;
  letter-spacing: -30px;
  color: #dfd4c3;
  position: absolute;
  top: 100px;
  left: -20px;
  line-height: 1;
  transform: rotate(-8deg);
  user-select: none;
}
.screen-zoom {
  border: 0;
  background: none;
  padding: 0;
  position: relative;
  z-index: 1;
}
.tour-phone {
  width: 230px;
  transform: rotate(-5deg);
  transition: transform .25s;
}
.screen-zoom:hover .tour-phone {
  transform: rotate(-3deg) translateY(-3px);
}
.zoom-hint {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fffaf1;
  padding: 6px 12px;
  border-radius: 30px;
  font-size: 10px;
  box-shadow: 0 4px 10px #0001;
  margin-top: 18px;
}
.zoom-hint>span:first-child {
  font-size: 17px;
}
.screen-caption {
  font-size: 9px;
  color: var(--muted);
  margin-top: 12px;
  position: relative;
}
.tour-copy {
  padding: 30px 12px 15px 0;
  position: relative;
}
.tour-copy h2 {
  font-size: 45px;
  margin: 17px 0 20px;
}
.tour-intro {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.85;
}
.tour-options {
  margin-top: 24px;
}
.tour-option {
  display: grid;
  grid-template-columns: 28px 1fr 14px;
  gap: 8px;
  padding: 18px 15px 18px 12px;
  background: transparent;
  border: 1px solid transparent;
  border-bottom-color: #d9cfbe;
  text-align: left;
  width: 100%;
  border-radius: 0;
  transition: background .2s;
}
.tour-option.active {
  background: #faf6ee;
  border-color: #e5dccd;
  border-radius: 10px;
  box-shadow: 0 4px 12px #4b331105;
}
.tour-number {
  font-size: 11px;
  font-family: var(--serif);
  font-style: italic;
  color: #a58d71;
  padding-top: 5px;
}
.tour-option strong {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 400;
  display: block;
  line-height: 1.3;
}
.tour-option span>span {
  font-size: 11px;
  color: var(--muted);
  display: block;
  line-height: 1.65;
  max-width: 310px;
  margin-top: 6px;
}
.tour-arrow {
  font-size: 19px;
  opacity: .5;
}
.tour-option.active .tour-arrow {
  opacity: 1;
  color: var(--brown);
}
.tour-option:hover {
  background: #faf6ee99;
}
.tour-note {
  font-size: 9px;
  color: var(--muted);
  margin: 16px 0 0 12px;
}
.smart-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 65px;
  align-items: center;
  padding-bottom: 75px;
}
.smart-copy h2 {
  margin: 18px 0 25px;
}
.smart-copy>p:not(.eyebrow) {
  font-size: 14px;
  line-height: 1.85;
  color: var(--muted);
  max-width: 395px;
}
.sparkle {
  color: var(--brown);
  font-size: 17px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 6px;
}
.smart-copy .smart-assurance {
  margin-top: 22px;
  font-size: 11px!important;
  color: var(--brown)!important;
}
.note-example {
  padding: 30px 34px;
  background: #eee6d7;
  border: 1px solid #e5d9c5;
  box-shadow: 6px 9px 0 -2px #f8f4ed,6px 9px 0 -1px #e0d7c8;
  transform: rotate(2deg);
  border-radius: 3px;
}
.note-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 9px;
  letter-spacing: 1.5px;
  color: var(--muted);
}
.note-label>span:last-child {
  font-size: 24px;
  color: #a68a61;
}
.note-example blockquote {
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.5;
  font-style: italic;
  margin: 20px 0;
  color: #5e4c36;
  letter-spacing: -.4px;
}
.note-rule {
  display: flex;
  gap: 14px;
  align-items: center;
  color: #a99270;
  margin: 20px 0;
}
.note-rule>span:not(:nth-child(2)) {
  height: 1px;
  background: #dacbb4;
  flex: 1;
}
.note-result {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 10px 12px;
  align-items: center;
}
.result-tag {
  border: 1px solid #d9ccb8;
  border-radius: 5px;
  font-size: 9px;
  padding: 3px 8px;
  color: var(--muted);
  width: max-content;
}
.note-result strong {
  font-size: 12px;
  font-weight: 400;
}
.note-disclaimer {
  font-size: 9px!important;
  color: #7b705f;
  margin-top: 23px;
  line-height: 1.7;
}
.principles {
  padding: 30px 0 65px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 45px;
}
.principles article>span {
  font-size: 28px;
  display: block;
  line-height: 1;
  color: #9b815d;
  margin-bottom: 15px;
}
.principles h3 {
  font-size: 24px;
  letter-spacing: -.5px;
  line-height: 1.2;
  margin-bottom: 13px;
}
.principles p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.85;
}
.faq {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 35px;
  padding-top: 80px;
  padding-bottom: 85px;
}
.faq h2 {
  font-size: 43px;
  margin: 16px 0 20px;
}
.faq>div>p:last-child {
  font-size: 13px;
  color: var(--muted);
}
.faq-list {
  padding-right: 35px;
}
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq details:first-child {
  border-top: 1px solid var(--line);
}
.faq summary {
  padding: 21px 35px 21px 0;
  cursor: pointer;
  font-size: 14px;
  list-style: none;
  position: relative;
  line-height: 1.6;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary:after {
  content: '+';
  font-size: 20px;
  position: absolute;
  right: 4px;
  top: 16px;
  font-family: var(--serif);
  color: var(--brown);
}
.faq details[open] summary:after {
  content: '−';
}
.faq details p {
  font-size: 12px;
  color: var(--muted);
  padding: 0 18px 22px 0;
  line-height: 1.85;
}
.release {
  margin: 0 30px;
  background: #493b2d;
  color: #faf1e1;
  padding: 60px 60px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 420px;
}
.release-copy {
  position: relative;
  z-index: 1;
  max-width: 670px;
}
.release .eyebrow {
  color: #c8b494;
}
.release h2 {
  font-size: 51px;
  margin: 20px 0;
  max-width: 670px;
  line-height: 1.13;
}
.release h2 em {
  color: #d6bb8d;
}
.release-copy>p:not(.eyebrow) {
  font-size: 13px;
  color: #d3c4ad;
  line-height: 1.9;
}
.release-status {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #d5be963b;
  background: #e5caa508;
  border-radius: 40px;
  width: max-content;
  max-width: 100%;
  padding: 10px 16px;
  font-size: 10px;
  margin-top: 25px;
  color: #f0dcc0;
}
.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c4ac7e;
  flex-shrink: 0;
}
.release-tour {
  font-size: 11px;
  color: #d9c5a6;
  display: inline-flex;
  gap: 15px;
  align-items: center;
  margin-top: 18px;
  border-bottom: 1px solid #a38c6b80;
  padding-bottom: 3px;
}
.release-tour:hover {
  color: #fff;
}
.release-cards {
  position: absolute;
  right: -10px;
  top: 100px;
  width: 290px;
  height: 310px;
  transform: rotate(11deg);
}
.release-cards>div {
  position: absolute;
  width: 240px;
  height: 270px;
  background: #d3c5ab;
  border: 1px solid #f1e4ca;
  border-radius: 8px;
  box-shadow: 0 10px 30px #140d0820;
  transform: rotate(-14deg);
  left: -25px;
  top: -12px;
}
.release-cards>div:nth-child(2) {
  transform: rotate(-7deg);
  left: -10px;
  top: -4px;
  background: #e4d7bf;
}
.release-cards>div:last-child {
  background: #efe4cf;
  transform: none;
  left: 0;
  top: 0;
  padding: 25px;
}
.release-cards span {
  font-family: var(--serif);
  color: #7c6544;
  font-size: 21px;
}
.release-cards i {
  display: block;
  height: 1px;
  background: #c7b28e;
  margin-top: 16px;
}
.release-cards b {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: 34px;
  line-height: 1.05;
  color: #756044;
  margin-top: 25px;
}
.release-grain {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at right top,#80684d80,transparent 65%);
}
.footer {
  padding: 40px 55px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
}
.footer .brand>span {
  font-size: 21px;
}
.footer .brand small {
  font-size: 7px;
}
.footer p {
  font-size: 9px;
  letter-spacing: .7px;
  color: var(--muted);
}
.footer>div {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 10px;
  color: var(--muted);
}
.text-button {
  border: 0;
  background: none;
  padding: 7px 0;
  font-size: 10px;
}
.skip-link {
  position: fixed;
  left: 15px;
  top: -100px;
  z-index: 100;
  background: var(--dark);
  color: white;
  padding: 12px 20px;
  border-radius: 6px;
}
.skip-link:focus {
  top: 10px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}
.noscript-note {
  padding: 20px;
  max-width: 800px;
  margin: auto;
  font-size: 13px;
}
dialog {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid #fff;
  border-radius: 16px;
  max-width: calc(100vw - 30px);
  max-height: 92dvh;
  padding: 20px;
  box-shadow: 0 25px 100px #0004;
}
dialog::backdrop {
  background: #282218b3;
  backdrop-filter: blur(6px);
}
.dialog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 14px;
}
.dialog-header h2 {
  font-size: 24px;
  letter-spacing: -.5px;
}
.dialog-close {
  width: 40px;
  height: 40px;
  background: #eae1d4;
  border: 0;
  border-radius: 50%;
  font-size: 26px;
  line-height: 1;
}
.dialog-close:hover {
  background: #dcd0bf;
}
#screen-dialog {
  width: 380px;
  text-align: center;
}
#screen-dialog>img {
  width: auto;
  height: 65dvh;
  max-height: 750px;
  margin: 0 auto;
  border-radius: 10px;
}
#screen-dialog>p {
  font-size: 10px;
  margin-top: 12px;
  color: var(--muted);
}
#privacy-dialog {
  width: 540px;
  padding: 26px;
}
#privacy-dialog>p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.85;
}
#privacy-dialog .button {
  margin-top: 20px;
  font-size: 11px;
}
#privacy-status {
  margin-top: 12px;
}
body:has(dialog[open]) {
  overflow: hidden;
}
@media(min-width:1500px) {
  .site-shell {
    margin: 35px auto;
  }
  .hero {
    min-height: 740px;
  }
  .hero-art {
    margin-left: -35px;
  }
  .hero-still {
    height: 465px;
  }
  .hero-phone {
    width: 253px;
    right: 40px;
  }
  .hero-copy {
    padding-top: 55px;
  }
  .hero-caption {
    bottom: 18px;
  }
}
@media(max-width:1150px) {
  .site-shell {
    margin: 14px;
  }
  .header {
    margin: 0 35px;
  }
  .desktop-nav {
    gap: 17px;
  }
  .header-actions {
    gap: 16px;
  }
  .hero {
    padding-left: 45px;
    min-height: 650px;
    grid-template-columns: 47% 53%;
  }
  h1 {
    font-size: 72px;
    letter-spacing: -4px;
  }
  .hero-copy {
    padding-top: 25px;
  }
  .hero-description {
    font-size: 14px;
    max-width: 340px;
  }
  .hero-phone {
    width: 209px;
    right: 13px;
    top: 38px;
  }
  .hero-still {
    height: 380px;
    bottom: 65px;
    left: 0;
  }
  .artifact-label {
    left: 10px;
    bottom: 51px;
  }
  .hero-caption {
    font-size: 8px;
  }
  .section {
    margin-left: 45px;
    margin-right: 45px;
  }
  .tour {
    padding: 45px 30px;
    gap: 20px;
    grid-template-columns: 46% 54%;
  }
  .tour-copy h2 {
    font-size: 39px;
  }
  .tour-phone {
    width: 211px;
  }
  .tour-decoration {
    font-size: 270px;
    top: 160px;
  }
  .tour-option {
    padding-right: 10px;
  }
  .smart-section {
    gap: 40px;
  }
  .note-example {
    padding: 26px;
  }
  .idea-grid article {
    padding-left: 28px;
    padding-right: 28px;
  }
  .release-cards {
    right: -85px;
    opacity: .8;
  }
  .release-copy {
    max-width: 75%;
  }
  .release h2 {
    font-size: 46px;
  }
  .principles {
    gap: 30px;
  }
  .faq {
    gap: 20px;
  }
  .faq h2 {
    font-size: 37px;
  }
  .faq-list {
    padding-right: 20px;
  }
}
@media(max-width:850px) {
  .header {
    margin: 0 25px;
    height: 85px;
  }
  .desktop-nav {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .header-actions {
    gap: 15px;
  }
  .brand>span {
    font-size: 22px;
  }
  .hero {
    padding: 35px 25px 20px 35px;
    min-height: 610px;
    grid-template-columns: 49% 51%;
  }
  .hero .eyebrow {
    font-size: 8px;
    letter-spacing: 1.2px;
    gap: 8px;
  }
  h1 {
    font-size: 61px;
    letter-spacing: -3.7px;
  }
  .hero-description {
    font-size: 13px;
    max-width: 275px;
    line-height: 1.75;
  }
  .hero-art {
    margin-left: -40px;
  }
  .hero-phone {
    width: 183px;
    right: 8px;
    top: 32px;
  }
  .hero-still {
    height: 335px;
    bottom: 77px;
  }
  .artifact-label {
    font-size: 9px;
    padding: 10px;
    bottom: 52px;
  }
  .hero-caption {
    right: 5px;
    bottom: 18px;
    max-width: 230px;
    text-align: right;
  }
  .hero-footnote {
    font-size: 9px;
  }
  .index-strip {
    padding: 20px 30px;
    gap: 12px;
  }
  .index-strip>div {
    gap: 9px;
  }
  .index-strip p {
    font-size: 10px;
  }
  .section {
    margin-left: 35px;
    margin-right: 35px;
    padding-top: 65px;
    padding-bottom: 65px;
  }
  .idea-grid {
    gap: 15px;
  }
  .idea-grid article {
    padding: 26px 23px 0;
    min-height: 450px;
  }
  .idea-grid h3 {
    font-size: 29px;
  }
  .idea-grid p {
    font-size: 12px;
  }
  .paper-one {
    width: 190px;
    left: -20px;
  }
  .paper-two {
    right: -13px;
    top: 24px;
    width: 141px;
    font-size: 15px;
  }
  .paper-three {
    left: 15px;
    bottom: -33px;
  }
  .dossier-example {
    padding: 15px 13px;
    margin-left: -5px;
    margin-right: -5px;
  }
  .dossier-heading strong {
    font-size: 14px;
  }
  .dossier-line b {
    font-size: 11px;
  }
  .tour {
    padding: 35px 25px;
    gap: 15px;
    grid-template-columns: 43% 57%;
  }
  .tour-phone {
    width: 179px;
    border-width: 6px;
    border-radius: 29px;
  }
  .tour-phone img {
    border-radius: 20px;
  }
  .tour-copy {
    padding: 10px 0;
  }
  .tour-copy h2 {
    font-size: 32px;
    letter-spacing: -1.4px;
  }
  .tour-copy .eyebrow {
    font-size: 8px;
  }
  .tour-intro {
    font-size: 12px;
  }
  .tour-option {
    padding: 14px 9px;
    grid-template-columns: 19px 1fr 10px;
    gap: 5px;
  }
  .tour-option strong {
    font-size: 21px;
  }
  .tour-option span>span {
    font-size: 10px;
  }
  .tour-decoration {
    font-size: 220px;
    left: -25px;
    top: 140px;
  }
  .tour-options {
    margin-top: 18px;
  }
  .smart-section {
    gap: 30px;
  }
  .smart-copy h2 {
    font-size: 37px;
  }
  .smart-copy>p:not(.eyebrow) {
    font-size: 12px;
  }
  .note-example {
    padding: 20px;
  }
  .note-example blockquote {
    font-size: 21px;
  }
  .note-result {
    grid-template-columns: 73px 1fr;
    gap: 8px;
  }
  .note-result strong {
    font-size: 10px;
  }
  .principles {
    gap: 25px;
    padding-top: 15px;
    padding-bottom: 45px;
  }
  .principles h3 {
    font-size: 20px;
  }
  .principles p {
    font-size: 11px;
  }
  .faq {
    grid-template-columns: 35% 65%;
    gap: 15px;
  }
  .faq h2 {
    font-size: 34px;
  }
  .faq-list {
    padding-right: 15px;
  }
  .faq summary {
    font-size: 12px;
  }
  .release {
    padding: 40px;
    margin: 0 20px;
  }
  .release h2 {
    font-size: 40px;
  }
  .release-cards {
    right: -155px;
    opacity: .5;
  }
  .release-copy {
    max-width: 90%;
  }
  .footer {
    padding: 30px;
    gap: 20px;
    flex-wrap: wrap;
  }
  .footer>div {
    gap: 20px;
  }
  .footer p {
    font-size: 8px;
  }
}
@media(max-width:600px) {
  body {
    background: var(--paper);
  }
  .site-shell {
    margin: 0;
    border-radius: 0;
    border: 0;
    box-shadow: none;
  }
  .header {
    height: 78px;
    margin: 0 22px;
    gap: 10px;
  }
  .brand {
    gap: 8px;
  }
  .brand>img {
    width: 29px;
    height: 29px;
  }
  .brand>span {
    font-size: 21px;
  }
  .brand small {
    font-size: 6.5px;
    letter-spacing: 1.8px;
    margin-top: 5px;
  }
  .header-actions {
    gap: 12px;
  }
  .header-actions>.button {
    display: none;
  }
  .language {
    font-size: 10px;
    gap: 5px;
  }
  .menu-toggle {
    width: 31px;
    padding: 4px;
  }
  .hero {
    display: flex;
    flex-direction: column;
    padding: 32px 24px 0;
    min-height: 0;
  }
  .hero-copy {
    padding: 3px 0 0;
    z-index: 2;
  }
  .hero .eyebrow {
    font-size: 8px;
    letter-spacing: 1.4px;
  }
  .hero h1 {
    font-size: 67px;
    line-height: 1.02;
    letter-spacing: -3.7px;
    margin: 22px 0 21px;
  }
  .hero-description {
    max-width: 350px;
    font-size: 13px;
    line-height: 1.85;
    margin-bottom: 23px;
  }
  .hero .button {
    font-size: 12px;
    padding: 12px 21px;
    gap: 28px;
  }
  .hero-footnote {
    font-size: 9px;
    margin-top: 14px;
  }
  .hero-art {
    width: 100%;
    margin: 10px 0 0;
    min-height: 437px;
  }
  .hero-still {
    height: 287px;
    bottom: 65px;
    left: -24px;
    width: calc(100% + 20px);
    max-width: none;
    border-radius: 130px 130px 16px 0;
  }
  .hero-phone {
    width: 167px;
    right: 15px;
    top: 6px;
    border-width: 5px;
    border-radius: 28px;
    transform: rotate(9deg);
  }
  .hero-phone img {
    border-radius: 22px;
  }
  .phone-camera {
    height: 6px;
    width: 34px;
    top: 9px;
  }
  .artifact-label {
    left: 0;
    bottom: 44px;
    font-size: 9px;
    padding: 10px 12px;
    gap: 10px;
  }
  .hero-caption {
    bottom: 10px;
    font-size: 8px;
    max-width: none;
    right: 0;
  }
  .index-strip {
    grid-template-columns: 1fr 1fr;
    padding: 18px 24px;
    gap: 13px 15px;
  }
  .index-strip>div {
    justify-content: flex-start;
    gap: 12px;
  }
  .index-strip p {
    font-size: 10px;
  }
  .index-strip span {
    font-size: 12px;
  }
  .section {
    margin: 0 24px;
    padding: 56px 0;
  }
  .section-heading {
    margin-bottom: 30px;
  }
  .section-heading .eyebrow {
    font-size: 8px;
    letter-spacing: 1.4px;
  }
  .section-heading h2 {
    font-size: 38px;
    margin: 16px 0 18px;
    letter-spacing: -1.8px;
  }
  .section-heading>p:last-child {
    font-size: 12px;
    max-width: 280px;
    margin: auto;
  }
  .idea-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .idea-grid article {
    padding: 28px 26px 0;
    min-height: 380px;
  }
  .idea-grid h3 {
    font-size: 32px;
    margin-top: 17px;
  }
  .idea-grid p {
    max-width: none;
    font-size: 12px;
  }
  .panel-number {
    font-size: 8px;
  }
  .scattered {
    height: 164px;
    margin-top: 15px;
  }
  .paper-one {
    left: 0;
    top: 23px;
    width: 200px;
  }
  .paper-two {
    right: 0;
    top: 5px;
    width: 155px;
    font-size: 17px;
  }
  .paper-three {
    left: 95px;
    bottom: -17px;
  }
  .dossier-example {
    margin-top: 20px;
    margin-left: 0;
    margin-right: 0;
    padding: 19px 18px 12px;
  }
  .dossier-heading strong {
    font-size: 16px;
  }
  .dossier-line b {
    font-size: 12px;
  }
  .solution-panel {
    min-height: 410px!important;
  }
  .tour {
    margin: 0 14px;
    padding: 33px 24px;
    display: flex;
    flex-direction: column-reverse;
    border-radius: 20px;
    gap: 25px;
  }
  .tour-copy {
    padding: 0;
  }
  .tour-copy .eyebrow {
    font-size: 9px;
  }
  .tour-copy h2 {
    font-size: 38px;
    letter-spacing: -1.8px;
    margin: 15px 0;
  }
  .tour-intro {
    font-size: 12px;
  }
  .tour-option {
    grid-template-columns: 23px 1fr 13px;
    padding: 16px 12px;
    gap: 9px;
  }
  .tour-option strong {
    font-size: 22px;
  }
  .tour-option span>span {
    font-size: 11px;
    line-height: 1.75;
    max-width: none;
  }
  .tour-note {
    font-size: 9px;
  }
  .tour-visual {
    padding: 7px 0 0;
  }
  .tour-phone {
    width: 209px;
    border-radius: 32px;
  }
  .tour-phone img {
    border-radius: 24px;
  }
  .tour-decoration {
    font-size: 300px;
    top: 100px;
    left: -10px;
    letter-spacing: -20px;
  }
  .zoom-hint {
    margin-top: 19px;
  }
  .smart-section {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 58px;
    padding-bottom: 50px;
  }
  .smart-copy h2 {
    font-size: 39px;
    margin: 14px 0 20px;
  }
  .smart-copy>p:not(.eyebrow) {
    font-size: 13px;
  }
  .smart-copy .smart-assurance {
    margin-top: 16px;
  }
  .note-example {
    padding: 25px;
    transform: rotate(1.5deg);
    margin: 0 3px;
  }
  .note-example blockquote {
    font-size: 25px;
  }
  .note-result {
    grid-template-columns: 88px 1fr;
    gap: 11px;
  }
  .note-result strong {
    font-size: 12px;
  }
  .principles {
    grid-template-columns: 1fr;
    gap: 23px;
    padding-top: 10px;
    padding-bottom: 45px;
  }
  .principles article {
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: 5px 12px;
  }
  .principles article>span {
    font-size: 24px;
    margin-bottom: 0;
    grid-row: span 2;
  }
  .principles h3 {
    font-size: 23px;
    margin-bottom: 3px;
  }
  .principles p {
    font-size: 12px;
    grid-column: 2;
  }
  .faq {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 50px 0;
  }
  .faq h2 {
    font-size: 38px;
    margin: 14px 0;
  }
  .faq .eyebrow {
    font-size: 9px;
  }
  .faq>div>p:last-child {
    font-size: 12px;
  }
  .faq-list {
    padding: 0;
  }
  .faq summary {
    font-size: 13px;
    padding-top: 19px;
    padding-bottom: 19px;
  }
  .faq details p {
    font-size: 12px;
  }
  .release {
    margin: 0 14px;
    padding: 36px 26px 40px;
    min-height: 0;
  }
  .release-copy {
    max-width: 100%;
  }
  .release h2 {
    font-size: 38px;
    letter-spacing: -1.5px;
    margin: 17px 0 20px;
  }
  .release .eyebrow {
    font-size: 8px;
    letter-spacing: 1.5px;
  }
  .release-copy>p:not(.eyebrow) {
    font-size: 12px;
  }
  .release-cards {
    display: none;
  }
  .release-status {
    font-size: 9px;
    padding: 10px 12px;
    margin-top: 22px;
    gap: 8px;
  }
  .release-tour {
    font-size: 10px;
    gap: 9px;
    line-height: 1.7;
  }
  .footer {
    padding: 35px 26px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
  }
  .footer .brand>span {
    font-size: 20px;
  }
  .footer .brand img {
    width: 28px;
    height: 28px;
  }
  .footer p {
    font-size: 7px;
    text-align: right;
    letter-spacing: .1px;
  }
  .footer>div {
    grid-column: span 2;
    justify-content: space-between;
    font-size: 10px;
  }
  .footer .text-button {
    font-size: 10px;
  }
  .dialog-header h2 {
    font-size: 21px;
  }
  #privacy-dialog {
    padding: 22px;
  }
  #privacy-dialog .button {
    padding: 12px 16px;
  }
  html {
    scroll-padding-top: 15px;
  }
}
@media(max-width:600px) {
  html[lang="ru"] .hero h1 {
    font-size: clamp(40px, 11vw, 58px);
    letter-spacing: -2px;
    line-height: 1.08;
  }
}
@media(max-width:360px) {
  .header {
    margin: 0 17px;
  }
  .header-actions {
    gap: 7px;
  }
  .brand>span {
    font-size: 19px;
  }
  .hero h1 {
    font-size: 60px;
  }
  .hero {
    padding-left: 20px;
    padding-right: 20px;
  }
  .hero-art {
    min-height: 402px;
  }
  .hero-phone {
    width: 152px;
    right: 8px;
  }
  .hero-still {
    height: 250px;
  }
  .section {
    margin-left: 20px;
    margin-right: 20px;
  }
  .tour {
    margin-left: 12px;
    margin-right: 12px;
    padding-left: 21px;
    padding-right: 21px;
  }
  .release h2 {
    font-size: 33px;
  }
  .release-status {
    font-size: 8px;
  }
  .note-example {
    padding: 22px;
  }
  .note-example blockquote {
    font-size: 23px;
  }
  .note-result strong {
    font-size: 11px;
  }
}
/* The viewer enlarges screenshots rather than shrinking them to viewport height. */
#screen-dialog {
  width: 500px;
}
#screen-dialog .dialog-header {
  position: sticky;
  top: -20px;
  background: var(--paper);
  z-index: 2;
  padding: 8px 0;
}
#screen-dialog>img {
  width: 100%;
  height: auto;
  max-height: none;
}
/* Keep navigation and useful copy readable at normal laptop zoom. */
body { font-size: 17px; }
.desktop-nav { font-size: 17px; }
.language { font-size: 15px; }
.button, .button-small, .hero .button { font-size: 16px; }
.brand small { font-size: 10px; letter-spacing: 1.4px; }
.hero-description { font-size: 18px; }
.section-heading>p:last-child, .idea-grid p, .tour-intro,
.smart-copy>p:not(.eyebrow), .principles p, .faq>div>p:last-child,
.faq details p, .release-copy>p:not(.eyebrow) { font-size: 17px; }
.faq summary { font-size: 17px; }
.tour-option span>span, .index-strip p, .note-result strong { font-size: 15px; }
.eyebrow, .hero .eyebrow, .section-heading .eyebrow,
.tour-copy .eyebrow, .faq .eyebrow, .release .eyebrow { font-size: 12px; letter-spacing: 1.4px; }
.hero-footnote, .hero-caption, .screen-caption, .tour-note, .zoom-hint,
.note-label, .panel-number, .result-tag, .dossier-bottom,
.dossier-heading div>span, .dossier-line div>span { font-size: 12px; }
.smart-copy .smart-assurance, .note-disclaimer { font-size: 14px!important; }
.artifact-label, .dossier-line b { font-size: 14px; }
.release-status, .release-tour, .footer>div, .footer .text-button { font-size: 14px; }
.footer p { font-size: 12px; }
.tour-copy, .smart-copy, .faq>div, .hero-copy { min-width: 0; }
.tour, .faq { grid-template-columns: minmax(0,1fr) minmax(0,1fr); }
.hero-caption { max-width: 100%; text-align: right; }
.note-result { grid-template-columns: minmax(0,auto) minmax(0,1fr); }
@media(max-width:1100px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
}
@media(max-width:850px) {
  .hero-description, .section-heading>p:last-child, .idea-grid p, .tour-intro,
  .smart-copy>p:not(.eyebrow), .principles p, .faq>div>p:last-child,
  .faq details p, .release-copy>p:not(.eyebrow) { font-size: 16px; }
  .hero .eyebrow { flex-wrap: wrap; font-size: 11px; }
  .tour-option span>span { font-size: 14px; }
}
@media(max-width:600px) {
  .language { font-size: 14px; }
  .brand small { font-size: 9px; letter-spacing: 1px; }
  .hero .eyebrow, .section-heading .eyebrow, .tour-copy .eyebrow,
  .faq .eyebrow, .release .eyebrow { font-size: 11px; letter-spacing: 1px; }
  .index-strip p { font-size: 14px; }
  .faq { grid-template-columns: 1fr; }
  .artifact-label { font-size: 12px; }
  .hero-caption, .screen-caption { font-size: 11px; }
  .footer { grid-template-columns: 1fr; }
  .footer p { text-align: left; }
  .footer>div { grid-column: 1; flex-wrap: wrap; gap: 15px; }
  .note-result strong { font-size: 14px; }
  .release-status { border-radius: 16px; }
}
@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto;
  }
  *,*:before,*:after {
    transition: none!important;
    animation: none!important;
  }
}
