:root {
  --paper: #f7f9fd;
  --ice: #eaf1fb;
  --ice-deep: #dfe9f6;
  --ink: #081a3f;
  --text: #294160;
  --muted: #5d7190;
  --blue: #2459c8;
  --navy: #071f4b;
  --indigo: #4b5dff;
  --cyan: #70e8ff;
  --coral: #ff6485;
  --violet: #9c8cff;
  --line: rgba(8, 26, 63, 0.13);
  --display: 'Bricolage Grotesque', 'Arial Narrow', Arial, sans-serif;
  --body: Inter, system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 26px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
button,
input,
textarea,
select {
  font: inherit;
}
button,
a,
input,
textarea,
select {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
button:disabled {
  cursor: wait;
  opacity: 0.68;
}
button,
a,
input,
textarea,
select,
summary {
  outline-offset: 5px;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--blue);
}
[hidden] {
  display: none !important;
}
h1,
h2,
h3,
h4,
p {
  margin: 0;
}
h1,
h2,
h3,
h4 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.055em;
}
h2 {
  font-size: clamp(38px, 4.7vw, 64px);
  line-height: 1.01;
}
h3 {
  font-size: 30px;
  line-height: 1.1;
}
p {
  color: var(--text);
}
.container {
  width: min(1240px, calc(100% - 96px));
  margin-inline: auto;
}
.section {
  padding-block: 104px;
}
.eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  margin-bottom: 23px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.blue {
  color: var(--blue);
}
.signal-dot,
.preview-label i {
  width: 7px;
  height: 7px;
  background: var(--blue);
  border-radius: 100%;
  box-shadow: 0 0 0 4px #2459c810;
  display: inline-block;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 54px;
  padding: 14px 24px;
  border: 1px solid transparent;
  background: var(--blue);
  border-radius: 14px 14px 14px 4px;
  color: white;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 650;
  letter-spacing: 0.015em;
  transition:
    transform 0.25s var(--ease),
    background 0.25s,
    box-shadow 0.25s;
}
.button:hover {
  background: var(--navy);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px #081a3f14;
}
.button span:last-child {
  font-size: 20px;
  line-height: 1;
}
.button .play-icon {
  font-size: 11px;
}
.button.compact {
  min-height: 45px;
  padding: 11px 19px;
  font-size: 11px;
}
.button.small {
  min-height: 44px;
  padding: 12px 18px;
  font-size: 11px;
}
.text-button,
.inline-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 44px;
  border: 0;
  padding: 10px 0;
  background: transparent;
  color: var(--ink);
  font-size: 12px;
  font-weight: 650;
}
.text-button:hover,
.inline-link:hover {
  color: var(--blue);
}
.text-button span,
.inline-link span {
  font-size: 20px;
}
.inline-link {
  justify-content: flex-start;
  gap: 8px;
}
.inline-link.light {
  color: white;
}
.inline-link.light:hover {
  color: var(--cyan);
}
.skip-link {
  position: fixed;
  left: 20px;
  top: -100px;
  background: white;
  padding: 12px;
  z-index: 100;
}
.skip-link:focus {
  top: 12px;
}
.header {
  height: 86px;
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: #f7f9fdeb;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid #081a3f08;
  gap: 30px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  white-space: nowrap;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -1px;
}
.brand img {
  object-fit: contain;
}
.desktop-nav {
  display: flex;
  gap: 30px;
  font-size: 11px;
  font-weight: 550;
  margin-left: auto;
}
.desktop-nav a {
  position: relative;
  padding: 13px 0;
}
.desktop-nav a:after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: width 0.2s;
}
.desktop-nav a:hover:after {
  width: 100%;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}
.preview-label {
  font-size: 9px;
  color: var(--muted);
  display: flex;
  gap: 7px;
  align-items: center;
  white-space: nowrap;
}
.preview-label i {
  width: 5px;
  height: 5px;
  box-shadow: none;
}
.menu-toggle {
  display: none;
}
.mobile-nav {
  position: absolute;
  inset: 85px 0 auto;
  background: var(--paper);
  padding: 20px 28px;
  box-shadow: 0 14px 18px #081a3f12;
}
.mobile-nav a,
.mobile-nav button {
  display: block;
  width: 100%;
  padding: 14px 0;
  text-align: left;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  font-weight: 600;
}
.hero {
  position: relative;
  background:
    radial-gradient(ellipse at 83% 35%, #b1defd82, transparent 52%),
    linear-gradient(140deg, #fafcff 10%, #edf4ff 58%, #dce8ff);
  isolation: isolate;
  overflow: hidden;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(#2459c808 1px, transparent 1px),
    linear-gradient(90deg, #2459c808 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent, #000);
  z-index: -1;
}
.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
  min-height: 654px;
  padding-top: 28px;
  padding-bottom: 40px;
}
.hero-copy {
  position: relative;
  z-index: 2;
  padding-top: 8px;
}
.hero h1 {
  font-size: clamp(65px, 6.8vw, 95px);
  line-height: 0.94;
  letter-spacing: -0.075em;
  font-weight: 610;
  margin-bottom: 28px;
}
.hero h1 span {
  color: var(--blue);
}
.hero-lead {
  font-size: 16px;
  line-height: 1.75;
  max-width: 400px;
}
.hero-actions {
  display: flex;
  gap: 25px;
  align-items: center;
  margin-top: 30px;
}
.hero-note {
  font-size: 10px;
  color: var(--muted);
  margin-top: 19px;
}
.hero-baseline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 22px;
  border-top: 1px solid var(--line);
  font-size: 10px;
  color: var(--muted);
}
.hero-baseline a {
  font-weight: 600;
  color: var(--ink);
}
.hero-baseline a span {
  margin-left: 24px;
  font-size: 18px;
}
.hero-art {
  height: 535px;
  position: relative;
}
.art-coordinates {
  position: absolute;
  top: 3px;
  right: 0;
  font-size: 8px;
  letter-spacing: 0.18em;
  color: var(--muted);
}
.orbit {
  position: absolute;
  border: 1px solid #2459c818;
  width: 660px;
  height: 390px;
  border-radius: 50%;
  transform: rotate(-28deg);
  top: 90px;
  left: -30px;
  z-index: -1;
}
.orbit-two {
  transform: rotate(37deg);
  width: 540px;
  height: 550px;
  top: 0;
  left: 20px;
  border-style: dashed;
}
.hero-art button {
  padding: 0;
  text-align: left;
  transition:
    transform 0.5s var(--ease),
    box-shadow 0.5s var(--ease);
}
.hero-art button:hover {
  transform: translateY(-7px) rotate(0);
  box-shadow: 0 24px 60px #12336f28;
}
.hero-maram {
  width: 88%;
  position: absolute;
  top: 61px;
  right: -6px;
  background: white;
  border: 5px solid white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 60px #12336f26;
  transform: rotate(3deg);
}
.window-bar {
  height: 31px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  color: var(--muted);
  font-size: 8px;
}
.window-dots {
  font-size: 8px;
  letter-spacing: 3px;
  color: #cad5e5;
}
.hero-maram > img {
  width: 100%;
  height: 246px;
  object-fit: cover;
}
.hero-image-caption {
  padding: 16px 19px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero-image-caption small {
  display: block;
  font-size: 7px;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-bottom: 3px;
}
.hero-image-caption strong {
  font-size: 21px;
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.04em;
}
.product-number {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 700;
}
.coral {
  background: #ffe5ec;
  color: #711a34;
}
.cyan {
  background: #dcf9ff;
  color: #123e51;
}
.indigo {
  background: #e7eaff;
  color: #343bc6;
}
.violet {
  background: #eee9ff;
  color: #5d4296;
}
.hero-ren {
  position: absolute;
  top: 245px;
  left: -24px;
  width: 205px;
  border: 1px solid #fff;
  background: #ffffffef;
  border-radius: 18px;
  box-shadow: 0 18px 46px #12336f25;
  transform: rotate(-6deg);
  padding: 16px !important;
}
.mini-product {
  display: flex;
  align-items: center;
  gap: 7px;
}
.mini-product strong {
  font-size: 15px;
}
.ren-mark {
  font-size: 29px;
  line-height: 1;
  display: inline-block;
}
.tiny-label {
  font-size: 6px;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-left: auto;
}
.mini-wave {
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  margin-top: 12px;
}
.mini-wave i {
  background: #74cddf;
  width: 3px;
  border-radius: 3px;
  height: var(--bar);
}
.hero-ren p {
  font-size: 22px;
  line-height: 1.03;
  font-family: var(--display);
  letter-spacing: -0.04em;
  margin: 8px 0 16px;
}
.hero-ren p strong {
  font-weight: 600;
  color: var(--blue);
}
.mini-foot {
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 8px;
}
.hero-approval {
  position: absolute;
  right: 5px;
  bottom: 68px;
  padding: 13px 16px !important;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--navy);
  color: white;
  border: 1px solid #ffffff36;
  border-radius: 14px;
  box-shadow: 0 16px 32px #081a3f20;
}
.approval-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #4b5dff;
  font-size: 12px;
}
.hero-approval small {
  display: block;
  font-size: 6px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #bbcff7;
}
.hero-approval strong {
  font-size: 10px;
  font-weight: 550;
}
.hero-approval > span:last-child {
  padding-left: 10px;
}
.hero-olav {
  position: absolute;
  right: 26px;
  bottom: -11px;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  gap: 2px;
}
.hero-olav .olav-art {
  width: 67px;
  height: 67px;
  object-fit: contain;
}
.hero-olav > span {
  font-size: 9px;
  background: #ffffffe5;
  border: 1px solid white;
  box-shadow: 0 3px 10px #12336f08;
  border-radius: 12px 12px 12px 0;
  padding: 8px 11px;
}
.hero-olav > span span {
  margin-left: 16px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  align-items: flex-end;
  margin-bottom: 44px;
}
.section-heading > p {
  font-size: 13px;
  max-width: 340px;
  padding-bottom: 5px;
  line-height: 1.8;
}
.section-heading .eyebrow {
  margin-bottom: 17px;
}
.product-section {
  background: #fff;
}
.product-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
.product-tabs button {
  min-height: 90px;
  padding: 17px 19px;
  background: #f7f9fd;
  border: 1px solid var(--line);
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.2s;
}
.product-tabs button:hover {
  transform: translateY(-3px);
  background: #ecf2ff;
}
.product-tabs button[aria-selected='true'] {
  border-color: var(--blue);
  background: #eaf0ff;
  box-shadow: inset 0 0 0 1px var(--blue);
}
.tab-icon {
  display: grid;
  place-items: center;
  border-radius: 11px;
  font-size: 23px;
  width: 43px;
  height: 43px;
  flex-shrink: 0;
}
.tab-icon.violet {
  font-family: var(--display);
  font-size: 20px;
}
.product-tabs strong {
  display: block;
  font-size: 15px;
  letter-spacing: -0.02em;
}
.product-tabs small {
  display: block;
  font-size: 9px;
  color: var(--muted);
  margin-top: 2px;
}
.tab-arrow {
  margin-left: auto;
  font-size: 18px;
  color: var(--muted);
}
.demo-panel {
  display: grid;
  grid-template-columns: 31% 69%;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy);
  min-height: 460px;
  border: 1px solid #071f4b;
  box-shadow: 0 18px 45px #081a3f0d;
}
.demo-story {
  padding: 37px 31px;
  color: white;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
.demo-kicker {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 600;
  color: #bcc8ff;
  margin-bottom: 29px;
}
.demo-kicker i {
  width: 6px;
  height: 6px;
  background: var(--indigo);
  border-radius: 100%;
}
.demo-story h3 {
  font-size: 36px;
  line-height: 1.04;
  letter-spacing: -0.045em;
  margin-bottom: 20px;
}
.demo-story > p {
  color: #becbe2;
  font-size: 12px;
  line-height: 1.9;
  max-width: 260px;
}
.demo-story .demo-instruction {
  margin-top: 23px;
}
.demo-steps {
  list-style: none;
  padding: 0;
  margin: 27px 0 25px;
  width: 100%;
}
.demo-steps li {
  font-size: 10px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: #a8b8d2;
  padding: 7px 0;
}
.demo-steps li span {
  font-size: 9px;
  border: 1px solid #ffffff24;
  border-radius: 7px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: #a8b8d2;
}
.demo-steps li.active {
  color: white;
}
.demo-steps li.active span {
  background: var(--indigo);
  border-color: var(--indigo);
  color: white;
}
.demo-steps li.done span {
  background: #70e8ff;
  color: var(--ink);
  border-color: #70e8ff;
}
.demo-disclaimer {
  margin-top: auto;
  padding-top: 20px;
  font-size: 8px;
  color: #b4c3dc;
  line-height: 1.7;
}
.demo-surface {
  margin: 22px 22px 22px 0;
  border-radius: 15px;
  overflow: hidden;
  background: #f7f9fd;
  color: var(--ink);
  min-width: 0;
}
.app-topbar {
  height: 54px;
  padding: 0 21px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 14px;
  background: white;
}
.app-wordmark {
  font-weight: 650;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 15px;
}
.app-wordmark img {
  border-radius: 7px;
}
.app-space {
  font-size: 8px;
  color: var(--muted);
  padding-left: 13px;
  border-left: 1px solid var(--line);
}
.avatar {
  margin-left: auto;
  width: 25px;
  height: 25px;
  background: #eaefff;
  display: grid;
  place-items: center;
  font-size: 8px;
  font-weight: 700;
  border-radius: 50%;
}
.kontor-body {
  display: flex;
  min-height: 366px;
}
.kontor-body aside {
  width: 119px;
  flex-shrink: 0;
  border-right: 1px solid var(--line);
  padding: 20px 11px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.kontor-body aside > span {
  padding: 8px;
  font-size: 11px;
  border-radius: 7px;
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--muted);
}
.kontor-body aside > span span {
  font-size: 8px;
}
.kontor-body aside .side-active {
  background: #e7ebff;
  color: #4249c3;
}
.kontor-work {
  flex: 1;
  padding: 24px 22px;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.work-heading {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  margin-bottom: 21px;
}
.overline {
  font-size: 7px;
  letter-spacing: 0.14em;
  color: var(--muted);
  font-weight: 600;
}
.work-heading h4 {
  font-size: 21px;
  letter-spacing: -0.035em;
  margin-top: 5px;
}
.status-badge {
  font-size: 7px;
  font-weight: 600;
  padding: 5px 8px;
  background: #e8edfb;
  color: #374a70;
  border-radius: 6px;
  white-space: nowrap;
}
.task-brief {
  border: 1px solid var(--line);
  background: #fff;
  padding: 14px;
  display: flex;
  gap: 11px;
  border-radius: 10px;
}
.task-icon {
  width: 25px;
  height: 25px;
  background: #eef0ff;
  border-radius: 7px;
  display: grid;
  place-items: center;
  color: #4b5dff;
  flex-shrink: 0;
}
.task-brief strong {
  font-size: 10px;
  display: block;
  margin-bottom: 5px;
}
.task-brief p {
  font-size: 9px;
  line-height: 1.8;
  max-width: 360px;
}
.draft-output {
  margin: 15px 0;
  min-height: 108px;
  border: 1px dashed #b8c9e5;
  border-radius: 10px;
  background: #f0f4fc;
  padding: 16px;
}
.draft-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 74px;
}
.draft-placeholder > span {
  font-size: 24px;
  color: #8094b5;
}
.draft-placeholder p {
  font-size: 10px;
  color: var(--muted);
}
.draft-output h5 {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 5px 0 8px;
}
.draft-output p {
  font-size: 10px;
  line-height: 1.7;
}
.draft-output .draft-label {
  color: var(--blue);
  font-size: 7px;
  letter-spacing: 0.13em;
  font-weight: 700;
}
.draft-output.ready {
  border-style: solid;
  background: #f2f4ff;
  border-color: #c9d2fa;
}
.workflow-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  gap: 10px;
}
.workflow-footer > span {
  font-size: 8px;
  color: var(--muted);
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}
.feature-list li {
  font-size: 11px;
  display: flex;
  gap: 9px;
  color: #d7e2f6;
  margin: 12px 0;
}
.feature-list li:before {
  content: '✓';
  color: #b9c8ff;
}
.cyan-text {
  color: var(--cyan);
}
.coral-text {
  color: #ffa7bb;
}
.violet-text {
  color: #c8bbff;
}
.local-pill {
  font-size: 8px;
  color: #254157;
  background: #e5f9fd;
  padding: 5px 9px;
  border-radius: 20px;
  margin-left: auto;
}
.ren-body {
  padding: 27px 31px 15px;
}
.audio-example {
  display: flex;
  align-items: center;
  gap: 12px;
}
.audio-round {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  font-size: 25px;
  background: #dff6fb;
  border-radius: 13px;
}
.audio-example strong {
  font-size: 11px;
  display: block;
}
.audio-example small {
  display: block;
  color: var(--muted);
  font-size: 8px;
}
.audio-length {
  font-size: 9px;
  margin-left: auto;
  color: var(--muted);
}
.ren-wave {
  height: 58px;
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 17px 0 24px;
  overflow: hidden;
}
.ren-wave i {
  flex: 1;
  height: var(--bar);
  border-radius: 3px;
  background: #64a8c6;
}
.text-mode {
  display: flex;
  border-bottom: 1px solid var(--line);
  gap: 23px;
}
.text-mode button {
  border: 0;
  background: none;
  min-height: 44px;
  padding: 8px 0;
  font-size: 10px;
  color: var(--muted);
  border-bottom: 2px solid transparent;
}
.text-mode button[aria-pressed='true'] {
  color: var(--blue);
  border-bottom-color: var(--blue);
  font-weight: 650;
}
.transcript {
  font-size: 17px;
  line-height: 1.85;
  min-height: 133px;
  padding-top: 18px;
  letter-spacing: -0.015em;
}
.transcript.clean {
  color: #154669;
}
.ren-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  border-top: 1px solid var(--line);
  padding-top: 7px;
}
.ren-bottom > span {
  font-size: 8px;
  color: var(--muted);
}
.ren-bottom .inline-link {
  font-size: 9px;
}
.copy-status {
  font-size: 9px;
  min-height: 15px;
}
.maram-demo {
  position: relative;
  isolation: isolate;
  min-height: 420px;
}
.maram-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 45% center;
  filter: brightness(0.85);
}
.map-brand {
  position: absolute;
  top: 28px;
  left: 29px;
  color: white;
  text-shadow: 0 2px 14px #0007;
  font-size: 13px;
  line-height: 1.1;
}
.map-brand strong {
  font-family: var(--display);
  font-size: 49px;
  letter-spacing: -0.05em;
  font-weight: 600;
}
.map-point {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fffffff2;
  border: 1px solid white;
  border-radius: 40px;
  padding: 6px 13px 6px 6px;
  box-shadow: 0 4px 15px #081a3f45;
  font-size: 9px;
  font-weight: 600;
  min-height: 44px;
  transition: transform 0.2s;
}
.map-point:hover {
  transform: scale(1.06);
}
.map-point > span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ffe3eb;
  font-size: 17px;
  color: #711a34;
}
.point-island {
  top: 43%;
  left: 21%;
}
.point-sisters {
  top: 65%;
  left: 47%;
}
.point-family {
  top: 34%;
  left: 64%;
}
.map-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 38px 27px 21px;
  color: white;
  background: linear-gradient(transparent, #081a3fbb);
  font-size: 10px;
}
.map-detail {
  position: absolute;
  inset: 16px;
  z-index: 4;
  background: white;
  border-radius: 12px;
  overflow: auto;
  box-shadow: 0 8px 50px #081a3f33;
}
.map-detail > img {
  height: 55%;
  min-height: 155px;
  max-height: 220px;
  width: 100%;
  object-fit: cover;
}
.map-detail > div {
  padding: 17px 23px;
}
.map-detail .eyebrow {
  font-size: 7px;
  margin-bottom: 6px;
}
.map-detail h4 {
  font-size: 27px;
  margin-bottom: 8px;
}
.map-detail p {
  font-size: 11px;
  line-height: 1.7;
}
.close-map,
.dialog-close {
  border: 1px solid var(--line);
  background: white;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  font-size: 27px;
  line-height: 1;
  z-index: 5;
}
.close-map {
  position: absolute;
  right: 10px;
  top: 10px;
}
.prototype {
  font-size: 7px;
  border: 1px solid #c8bbff66;
  padding: 3px 7px;
  border-radius: 20px;
  margin-left: 4px;
}
.lesson-demo {
  background: #f4efff;
}
.lesson-top {
  padding: 18px 25px;
  border-bottom: 1px solid #5d429615;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.lesson-logo {
  font-family: var(--display);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.03em;
}
.lesson-logo span {
  font-family: var(--body);
  font-size: 9px;
  color: #746780;
  letter-spacing: 0;
  margin-left: 5px;
}
.lesson-top button {
  background: white;
  border: 1px solid #ded4ef;
  border-radius: 10px;
  min-width: 48px;
  min-height: 44px;
  font-size: 12px;
  letter-spacing: 3px;
}
.lesson-top button strong {
  font-size: 19px;
}
.lesson-content {
  display: grid;
  grid-template-columns: 35% 65%;
  align-items: center;
  padding: 29px 22px;
  min-height: 327px;
}
.olav-portrait .olav-art {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  filter: drop-shadow(0 10px 10px #52325618);
}
.olav-portrait > span {
  display: block;
  font-size: 8px;
  text-align: center;
  padding: 10px;
  background: #fff;
  border-radius: 11px;
  max-width: 180px;
  margin: auto;
  color: #5a4770;
}
.reading-book {
  background: #fff;
  padding: 23px;
  border-radius: 16px;
  border: 1px solid #e7e0f3;
  box-shadow: 0 9px 18px #60468908;
}
.reading-words {
  font-family: var(--display);
  font-size: 24px;
  line-height: 1.55;
  letter-spacing: -0.01em;
  margin: 12px 0;
}
.reading-words button {
  font: inherit;
  border: 0;
  display: inline;
  padding: 2px 4px;
  background: transparent;
  min-height: 44px;
  border-radius: 7px;
}
.reading-words button:hover,
.reading-words button.current {
  background: #e6dcff;
  color: #492787;
  box-shadow: inset 0 -2px #a18ccf;
}
.reading-words.large {
  font-size: 29px;
}
.word-help {
  font-size: 10px;
  color: #6b5a7b;
  min-height: 47px;
  background: #f7f3ff;
  border-radius: 9px;
  padding: 10px 12px;
  margin-bottom: 15px;
}
.word-help strong {
  color: #492787;
  letter-spacing: 0.02em;
}
.lesson-button {
  min-height: 44px;
  font-size: 10px;
  background: #604397;
  gap: 10px;
}
.lesson-button:hover {
  background: #473270;
}
.reading-hint {
  font-size: 8px;
  display: block;
  margin-top: 10px;
  color: #6b5a7b;
}
.cases-section {
  background: var(--paper);
}
.case-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 26px;
}
.case-card {
  display: block;
  text-align: left;
  border: 0;
  background: transparent;
  padding: 0;
}
.case-image {
  height: 335px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: var(--ice);
}
.case-image > img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease);
}
.case-card:hover .case-image > img {
  transform: scale(1.045);
}
.case-ewtn .case-image > img {
  object-position: 44% 40%;
}
.case-tag {
  position: absolute;
  top: 19px;
  left: 19px;
  background: #ffffffea;
  backdrop-filter: blur(8px);
  padding: 5px 13px;
  border-radius: 30px;
  font-size: 9px;
  font-weight: 600;
}
.case-open {
  position: absolute;
  bottom: 18px;
  right: 18px;
  width: 39px;
  height: 39px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  font-size: 21px;
  transition: transform 0.3s;
}
.case-card:hover .case-open {
  transform: rotate(45deg);
  background: var(--blue);
  color: white;
}
.case-caption {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 15px;
  padding: 23px 2px 0;
}
.case-caption .eyebrow {
  font-size: 8px;
  letter-spacing: 0.12em;
  margin-bottom: 11px;
}
.case-caption h3 {
  font-size: 30px;
}
.case-caption > span {
  font-size: 9px;
  margin-top: 4px;
  white-space: nowrap;
  color: var(--muted);
}
.case-caption > span span {
  margin-left: 8px;
  font-size: 16px;
}
.method-section {
  background: var(--navy);
  color: #f3f7ff;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.method-section .section-heading > p {
  color: #b9cbe4;
}
.method-section .eyebrow {
  color: #b9cbe4;
}
.method-section h2 span {
  color: #87b4ff;
}
.method-lines {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: radial-gradient(ellipse at 95% 0%, #214c9e66, transparent 50%);
}
.method-lines:before,
.method-lines:after {
  content: '';
  position: absolute;
  width: 1200px;
  height: 600px;
  border: 1px solid #ffffff09;
  border-radius: 50%;
  right: -330px;
  top: -100px;
  transform: rotate(-15deg);
}
.method-lines:after {
  right: -270px;
  top: -60px;
}
.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
  margin-top: 62px;
}
.method-grid article {
  border-top: 1px solid #bfd7ff40;
  padding-top: 20px;
}
.method-number {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: #9db9e4;
  letter-spacing: 0.08em;
  margin-bottom: 37px;
}
.method-number span {
  font-size: 19px;
}
.method-grid h3 {
  font-size: 27px;
  margin-bottom: 17px;
}
.method-grid p {
  font-size: 12px;
  color: #b8cbe5;
  max-width: 310px;
  line-height: 1.9;
}
.method-output {
  display: inline-block;
  border: 1px solid #c5d9ff29;
  border-radius: 30px;
  padding: 5px 11px;
  font-size: 8px;
  margin-top: 23px;
  color: #cbdfff;
}
.method-signature {
  display: flex;
  justify-content: center;
  gap: 22px;
  align-items: center;
  border-top: 1px solid #bfd7ff20;
  margin-top: 58px;
  padding-top: 35px;
}
.signature-mark {
  font-family: var(--display);
  font-size: 31px;
  letter-spacing: -0.06em;
  color: #86b3ff;
}
.method-signature p {
  font-size: 10px;
  color: #b4c6e0;
  line-height: 1.8;
}
.method-signature strong {
  color: #ecf4ff;
  font-weight: 500;
}
.service-list {
  border-top: 1px solid var(--line);
}
.service-list > button {
  display: grid;
  grid-template-columns: 38px 1fr 1fr 48px;
  gap: 20px;
  align-items: center;
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 24px 5px;
  text-align: left;
  background: transparent;
  transition:
    background 0.2s,
    padding 0.2s;
}
.service-list > button:hover {
  background: var(--ice);
  padding-left: 16px;
  padding-right: 16px;
}
.service-number {
  color: var(--muted);
  font-size: 10px;
}
.service-list h3 {
  font-size: 30px;
}
.service-list p {
  font-size: 11px;
  max-width: 340px;
}
.service-action {
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  width: 43px;
  height: 43px;
  border-radius: 50%;
  font-size: 20px;
}
.service-list > button:hover .service-action {
  background: var(--blue);
  color: white;
}
.about-section {
  background: #eaf1fb;
  padding-block: 70px;
}
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-layout h2 {
  font-size: 53px;
}
.about-layout .about-lead {
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 20px;
}
.about-layout p:not(.about-lead, .eyebrow) {
  font-size: 12px;
  line-height: 1.9;
}
.about-layout .text-button {
  margin-top: 14px;
}
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 90px;
}
.faq-layout > div > p:last-child {
  font-size: 13px;
  margin-top: 20px;
}
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  font-size: 13px;
  font-weight: 550;
  list-style: none;
  min-height: 77px;
  padding: 16px 0;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary > span {
  font-size: 21px;
  font-weight: 400;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ice);
  color: var(--blue);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-list details[open] summary > span {
  transform: rotate(45deg);
}
.faq-list details p {
  font-size: 12px;
  line-height: 1.9;
  padding: 0 34px 24px 0;
}
.contact-section {
  background: linear-gradient(115deg, #dfeaff, #d9eaff 45%, #b4d8fc);
  padding-block: 80px;
  position: relative;
  overflow: hidden;
}
.contact-section:after {
  content: '';
  width: 630px;
  height: 630px;
  border: 1px solid #2459c819;
  border-radius: 50%;
  position: absolute;
  right: -50px;
  top: -260px;
  pointer-events: none;
}
.contact-layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}
.contact-layout h2 {
  font-size: 87px;
  letter-spacing: -0.065em;
  line-height: 0.94;
}
.contact-layout h2 span {
  color: var(--blue);
}
.contact-layout p:not(.eyebrow) {
  font-size: 16px;
  margin-bottom: 27px;
  line-height: 1.8;
}
.contact-layout > div:last-child {
  padding-right: 40px;
}
footer {
  background: #061838;
  color: #cfdbef;
  padding-block: 37px 20px;
}
.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.footer-main > span {
  font-size: 9px;
  color: #a4b8d6;
}
.footer-main > a:last-child {
  font-size: 12px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 8px;
  color: #93aacb;
  border-top: 1px solid #ffffff16;
  padding-top: 22px;
  margin-top: 28px;
  gap: 20px;
}
.sticky-contact {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 25;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 9px 10px 9px 22px;
  background: #ffffffed;
  backdrop-filter: blur(16px);
  border: 1px solid #cfdbef;
  border-radius: 17px;
  box-shadow: 0 8px 38px #071f4b20;
  animation: slide-in 0.3s var(--ease);
}
.sticky-contact > span {
  font-size: 11px;
  white-space: nowrap;
}
.sticky-contact .button {
  white-space: nowrap;
}
dialog {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 0;
  max-width: calc(100vw - 36px);
  width: 860px;
  max-height: calc(100dvh - 48px);
  box-shadow: 0 40px 120px #071f4b44;
  color: var(--ink);
  background: var(--paper);
}
dialog::backdrop {
  background: #041229bb;
  backdrop-filter: blur(5px);
}
dialog .dialog-close {
  position: sticky;
  top: 15px;
  float: right;
  margin: 15px 15px -59px 0;
}
.case-dialog-hero {
  width: 100%;
  height: 350px;
  object-fit: cover;
  background: var(--ice);
}
.case-dialog-hero.ren-screen {
  object-fit: contain;
  padding: 20px;
  background: #e4f1f2;
}
.case-dialog-body {
  padding: 35px 40px 42px;
}
.case-dialog-body h2 {
  font-size: 45px;
  margin-bottom: 20px;
}
.case-dialog-body .eyebrow {
  margin-bottom: 14px;
}
.case-dialog-body > p {
  font-size: 14px;
  line-height: 1.85;
  max-width: 670px;
}
.case-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  border-top: 1px solid var(--line);
  margin-top: 26px;
  padding-top: 24px;
}
.case-details strong {
  font-size: 11px;
  display: block;
  margin-bottom: 7px;
}
.case-details p {
  font-size: 10px;
  line-height: 1.8;
}
.case-gallery {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}
.case-gallery img {
  width: calc(50% - 8px);
  height: 170px;
  object-fit: cover;
  border-radius: 12px;
}
.case-dialog-body .button {
  margin-top: 26px;
}
.contact-dialog {
  width: 560px;
  padding: 37px;
}
.contact-dialog .dialog-close {
  position: absolute;
  right: 0;
  top: 0;
}
.contact-dialog h2 {
  font-size: 44px;
  padding-right: 10px;
  margin-bottom: 20px;
}
.contact-dialog > .eyebrow {
  margin-bottom: 17px;
}
.form-intro {
  font-size: 11px;
  margin-bottom: 22px;
  color: var(--muted);
  max-width: 410px;
}
.contact-dialog label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  margin: 18px 0 8px;
}
.contact-dialog select,
.contact-dialog textarea {
  display: block;
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #cbd5e5;
  border-radius: 10px;
  background: white;
  color: var(--ink);
  font-size: 12px;
}
.contact-dialog textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-dialog form > .button {
  margin-top: 23px;
}
.contact-dialog pre {
  font-family: var(--body);
  font-size: 12px;
  line-height: 1.8;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  background: var(--ice);
  padding: 20px;
  border-radius: 12px;
  margin: 20px 0;
}
.brief-actions {
  display: flex;
  align-items: center;
  gap: 23px;
}
.contact-dialog [role='status'] {
  font-size: 11px;
  min-height: 20px;
  margin-top: 14px;
}
body.modal-open {
  overflow: hidden;
}
@keyframes slide-in {
  from {
    opacity: 0;
    bottom: 8px;
  }
  to {
    opacity: 1;
    bottom: 20px;
  }
}
@media (min-width: 1600px) {
  .hero-layout {
    min-height: 700px;
  }
  .hero-art {
    transform: scale(1.04);
    transform-origin: center;
  }
  .hero-copy h1 {
    font-size: 100px;
  }
}
@media (max-width: 1190px) {
  .container {
    width: calc(100% - 64px);
  }
  .header {
    padding: 0 26px;
    gap: 22px;
  }
  .desktop-nav {
    gap: 18px;
  }
  .header-actions {
    gap: 17px;
  }
  .preview-label {
    display: none;
  }
  .hero-layout {
    min-height: 600px;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .hero h1 {
    font-size: 78px;
  }
  .hero-art {
    transform: scale(0.9);
    transform-origin: right center;
  }
  .hero-ren {
    left: -20px;
  }
  .hero-approval {
    right: -10px;
  }
  .hero-lead {
    max-width: 340px;
    font-size: 14px;
  }
  .hero-actions {
    gap: 18px;
  }
  .hero-actions .button {
    padding-inline: 18px;
    font-size: 11px;
  }
  .hero-actions .text-button {
    font-size: 10px;
  }
  .section {
    padding-block: 85px;
  }
  .demo-story {
    padding: 30px 24px;
  }
  .demo-story h3 {
    font-size: 31px;
  }
  .product-tabs button {
    padding: 14px 13px;
    gap: 10px;
  }
  .tab-arrow {
    display: none;
  }
  .demo-panel {
    grid-template-columns: 30% 70%;
  }
  .demo-surface {
    margin: 16px 16px 16px 0;
  }
  .kontor-body aside {
    width: 93px;
    padding: 20px 7px;
  }
  .kontor-body aside > span {
    gap: 5px;
    padding: 7px 3px;
  }
  .kontor-work {
    padding: 20px 16px;
  }
  .work-heading h4 {
    font-size: 19px;
  }
  .work-heading {
    flex-wrap: wrap;
  }
  .work-heading .status-badge {
    font-size: 6px;
  }
  .lesson-content {
    padding: 20px 13px;
    grid-template-columns: 30% 70%;
  }
  .reading-book {
    padding: 18px;
  }
  .reading-words {
    font-size: 23px;
  }
  .case-image {
    height: 290px;
  }
  .case-caption {
    display: block;
  }
  .case-caption > span {
    display: block;
    margin-top: 12px;
  }
  .case-caption h3 {
    font-size: 28px;
  }
  .method-grid {
    gap: 30px;
  }
  .method-grid h3 {
    font-size: 25px;
  }
  .faq-layout {
    gap: 55px;
  }
}
@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }
  .header-actions {
    margin-left: auto;
  }
  .menu-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 44px;
    background: transparent;
    border: 0;
    font-size: 11px;
  }
  .hero h1 {
    font-size: 67px;
  }
  .hero-lead {
    font-size: 13px;
    max-width: 300px;
  }
  .hero-layout {
    min-height: 545px;
    grid-template-columns: 48% 52%;
  }
  .hero-art {
    transform: scale(0.82);
    width: 112%;
    transform-origin: center right;
  }
  .hero-actions {
    flex-wrap: wrap;
    gap: 5px 20px;
  }
  .hero-ren {
    width: 180px;
    top: 260px;
  }
  .hero-maram {
    width: 95%;
    right: -10px;
  }
  .hero-approval {
    right: -35px;
    bottom: 57px;
  }
  .hero-olav {
    right: -20px;
  }
  .hero-maram > img {
    height: 220px;
  }
  .hero-note {
    font-size: 9px;
  }
  .hero .eyebrow {
    font-size: 8px;
  }
  .hero-baseline {
    font-size: 8px;
  }
  .section-heading {
    gap: 30px;
  }
  .section-heading > p {
    max-width: 260px;
    font-size: 11px;
  }
  .product-tabs button {
    min-height: 77px;
    padding: 12px;
    gap: 8px;
  }
  .tab-icon {
    width: 34px;
    height: 34px;
    font-size: 18px;
  }
  .product-tabs strong {
    font-size: 12px;
  }
  .product-tabs small {
    font-size: 7px;
  }
  .demo-panel {
    grid-template-columns: 1fr;
  }
  .demo-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 25px;
    padding: 26px 28px;
  }
  .demo-kicker {
    grid-column: 1;
    margin-bottom: 13px;
  }
  .demo-story h3 {
    grid-column: 1;
    grid-row: 2/4;
    font-size: 33px;
    margin-bottom: 0;
  }
  .demo-story > p {
    grid-column: 2;
    grid-row: 1/3;
    font-size: 11px;
    max-width: none;
  }
  .demo-steps {
    grid-column: 2;
    grid-row: 3;
    display: flex;
    gap: 12px;
    margin: 13px 0 0;
    flex-wrap: wrap;
  }
  .demo-steps li {
    font-size: 8px;
    gap: 5px;
  }
  .demo-steps li span {
    width: 19px;
    height: 19px;
    font-size: 7px;
  }
  .demo-story .demo-disclaimer {
    grid-column: 1/-1;
    margin-top: 0;
    padding-top: 14px;
    font-size: 8px;
  }
  .demo-surface {
    margin: 0 16px 16px;
  }
  .feature-list {
    grid-column: 2;
    grid-row: 3;
    margin: 7px 0;
  }
  .feature-list li {
    font-size: 9px;
    margin: 5px 0;
  }
  .demo-story .inline-link {
    grid-column: 1;
    grid-row: 4;
    font-size: 10px;
  }
  .demo-story .demo-instruction {
    grid-row: 3;
    margin-top: 5px;
  }
  .kontor-body {
    min-height: 350px;
  }
  .kontor-body aside {
    width: 110px;
  }
  .kontor-work {
    padding: 24px;
  }
  .work-heading {
    flex-wrap: nowrap;
  }
  .ren-body {
    padding: 23px 28px;
  }
  .ren-wave {
    height: 42px;
    margin-block: 10px 15px;
  }
  .transcript {
    min-height: 110px;
  }
  .maram-demo {
    min-height: 425px;
  }
  .lesson-content {
    grid-template-columns: 32% 68%;
    padding: 20px 25px;
  }
  .reading-book {
    padding: 24px;
  }
  .reading-words {
    font-size: 28px;
  }
  .case-grid {
    gap: 20px;
  }
  .case-image {
    height: 245px;
  }
  .case-caption h3 {
    font-size: 25px;
  }
  .method-grid {
    gap: 23px;
  }
  .method-grid h3 {
    font-size: 23px;
  }
  .method-grid p {
    font-size: 11px;
  }
  .service-list > button {
    grid-template-columns: 25px 1fr 1fr 35px;
    gap: 15px;
  }
  .service-list h3 {
    font-size: 25px;
  }
  .service-list p {
    font-size: 10px;
  }
  .service-action {
    width: 35px;
    height: 35px;
  }
  .about-layout {
    gap: 45px;
  }
  .about-layout h2 {
    font-size: 43px;
  }
  .about-layout .about-lead {
    font-size: 17px;
  }
  .faq-layout {
    gap: 40px;
    grid-template-columns: 1fr 1.5fr;
  }
  .faq-list summary {
    font-size: 12px;
  }
  .contact-layout h2 {
    font-size: 74px;
  }
  .contact-layout > div:last-child {
    padding-right: 0;
  }
  .footer-main {
    gap: 20px;
  }
  .footer-main > span {
    max-width: 200px;
  }
}
@media (max-width: 640px) {
  html {
    scroll-padding-top: 88px;
  }
  .container {
    width: calc(100% - 40px);
  }
  .section {
    padding-block: 62px;
  }
  .header {
    height: 72px;
    padding-inline: 20px;
    gap: 12px;
  }
  .brand {
    font-size: 19px;
    gap: 8px;
  }
  .brand img {
    width: 34px;
    height: 34px;
  }
  .header-actions > .button {
    display: none;
  }
  .header-actions {
    gap: 10px;
  }
  .menu-toggle {
    font-size: 11px;
  }
  .mobile-nav {
    top: 71px;
  }
  .hero-layout {
    grid-template-columns: 1fr;
    padding-top: 37px;
    padding-bottom: 0;
    gap: 10px;
    min-height: unset;
  }
  .hero h1 {
    font-size: clamp(63px, 15.5vw, 83px);
    line-height: 0.94;
    letter-spacing: -0.065em;
    margin-bottom: 23px;
  }
  .hero .eyebrow {
    font-size: 9px;
    margin-bottom: 24px;
  }
  .hero-lead {
    font-size: 14px;
    max-width: 370px;
  }
  .hero-actions {
    gap: 18px;
    margin-top: 22px;
  }
  .hero-actions .button {
    font-size: 10px;
    gap: 10px;
    min-height: 50px;
    padding: 12px 17px;
  }
  .hero-actions .text-button {
    font-size: 10px;
    gap: 7px;
  }
  .hero-note {
    font-size: 9px;
    margin-top: 14px;
  }
  .hero-art {
    width: 100%;
    height: 399px;
    transform: none;
    margin-top: 10px;
  }
  .art-coordinates {
    top: 6px;
    font-size: 6px;
    right: 1px;
  }
  .hero-maram {
    top: 40px;
    right: 0;
    width: 85%;
    border-width: 4px;
    border-radius: 13px;
  }
  .window-bar {
    height: 24px;
    font-size: 6px;
    padding-inline: 7px;
  }
  .hero-maram > img {
    height: 168px;
  }
  .hero-image-caption {
    padding: 10px 12px;
  }
  .hero-image-caption strong {
    font-size: 17px;
  }
  .hero-image-caption small {
    font-size: 5px;
  }
  .product-number {
    width: 26px;
    height: 26px;
    font-size: 8px;
  }
  .hero-ren {
    top: 188px;
    width: 144px;
    left: 0;
    padding: 12px !important;
    border-radius: 13px;
  }
  .hero-ren p {
    font-size: 19px;
    margin-block: 7px 11px;
  }
  .mini-product strong {
    font-size: 12px;
  }
  .mini-product .ren-mark {
    font-size: 23px;
  }
  .tiny-label {
    font-size: 4px;
  }
  .mini-wave {
    height: 26px;
    gap: 2px;
    margin-top: 10px;
  }
  .mini-wave i {
    max-height: 26px;
    width: 2px;
  }
  .mini-foot {
    font-size: 6px;
    padding-top: 7px;
  }
  .hero-approval {
    right: -3px;
    bottom: 54px;
    padding: 10px !important;
    gap: 6px;
    border-radius: 11px;
  }
  .approval-icon {
    width: 22px;
    height: 22px;
    font-size: 10px;
  }
  .hero-approval small {
    font-size: 4px;
  }
  .hero-approval strong {
    font-size: 7px;
  }
  .hero-approval > span:last-child {
    padding-left: 2px;
    font-size: 10px;
  }
  .hero-olav {
    right: 8px;
    bottom: 0;
    gap: 0;
  }
  .hero-olav .olav-art {
    width: 51px;
    height: 51px;
  }
  .hero-olav > span {
    font-size: 7px;
    padding: 6px 9px;
  }
  .hero-olav > span span {
    margin-left: 9px;
  }
  .orbit {
    width: 470px;
    height: 290px;
    left: -75px;
    top: 60px;
  }
  .orbit-two {
    width: 350px;
    height: 370px;
    left: 0;
    top: 10px;
  }
  .hero-baseline {
    padding-block: 17px;
    font-size: 8px;
    display: block;
  }
  .hero-baseline a {
    display: none;
  }
  .section-heading {
    display: block;
    margin-bottom: 28px;
  }
  .section-heading h2 {
    font-size: 40px;
  }
  .section-heading .eyebrow {
    font-size: 8px;
    margin-bottom: 17px;
  }
  .section-heading > p {
    font-size: 12px;
    max-width: 350px;
    margin-top: 20px;
    padding-bottom: 0;
  }
  .product-tabs {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 12px;
  }
  .product-tabs button {
    min-height: 73px;
    gap: 10px;
    padding: 12px;
  }
  .tab-icon {
    width: 34px;
    height: 34px;
    font-size: 20px;
  }
  .product-tabs strong {
    font-size: 13px;
  }
  .product-tabs small {
    font-size: 8px;
  }
  .demo-panel {
    border-radius: 19px;
  }
  .demo-story {
    padding: 24px;
    display: flex;
  }
  .demo-kicker {
    font-size: 11px;
    margin-bottom: 19px;
  }
  .demo-story h3 {
    font-size: 33px;
    margin-bottom: 17px;
  }
  .demo-story > p {
    font-size: 12px;
    max-width: 100%;
  }
  .demo-story h3 br {
    display: none;
  }
  .demo-steps {
    margin: 19px 0 0;
    gap: 10px;
  }
  .demo-steps li {
    font-size: 8px;
  }
  .demo-story .demo-disclaimer {
    font-size: 7px;
    padding-top: 16px;
  }
  .demo-surface {
    margin: 0 9px 9px;
    border-radius: 12px;
  }
  .app-topbar {
    padding: 0 13px;
    height: 48px;
    gap: 8px;
  }
  .app-wordmark {
    font-size: 13px;
    gap: 6px;
  }
  .app-wordmark img {
    width: 23px;
    height: 23px;
  }
  .app-space {
    font-size: 7px;
    padding-left: 8px;
  }
  .avatar {
    width: 24px;
    height: 24px;
  }
  .kontor-body aside {
    display: none;
  }
  .kontor-work {
    padding: 18px 14px;
  }
  .work-heading {
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
  }
  .work-heading h4 {
    font-size: 22px;
  }
  .work-heading .status-badge {
    font-size: 7px;
  }
  .task-brief {
    padding: 12px;
  }
  .task-brief strong {
    font-size: 10px;
  }
  .task-brief p {
    font-size: 9px;
  }
  .draft-output {
    padding: 13px;
    min-height: 125px;
  }
  .draft-placeholder {
    min-height: 97px;
  }
  .workflow-footer {
    gap: 5px;
  }
  .workflow-footer .button {
    gap: 9px;
    font-size: 9px;
    min-height: 44px;
    padding: 10px 13px;
  }
  .workflow-footer > span {
    font-size: 7px;
  }
  .feature-list {
    margin-top: 16px;
  }
  .feature-list li {
    font-size: 10px;
    margin-block: 7px;
  }
  .demo-story .inline-link {
    font-size: 10px;
  }
  .ren-body {
    padding: 19px 17px 10px;
  }
  .audio-example {
    gap: 8px;
  }
  .audio-round {
    width: 33px;
    height: 33px;
    font-size: 22px;
    flex-shrink: 0;
  }
  .audio-example strong {
    font-size: 9px;
  }
  .audio-example small {
    font-size: 7px;
  }
  .audio-length {
    font-size: 8px;
  }
  .ren-wave {
    height: 45px;
    gap: 3px;
    margin-block: 14px;
  }
  .ren-wave i {
    max-height: 40px;
  }
  .text-mode {
    gap: 22px;
  }
  .transcript {
    font-size: 15px;
    min-height: 153px;
    padding-top: 17px;
  }
  .local-pill {
    font-size: 6px;
    padding-inline: 6px;
  }
  .maram-demo {
    min-height: 405px;
  }
  .map-brand {
    top: 23px;
    left: 21px;
    font-size: 11px;
  }
  .map-brand strong {
    font-size: 43px;
  }
  .map-point {
    font-size: 8px;
    padding-right: 10px;
  }
  .point-island {
    top: 38%;
    left: 9%;
  }
  .point-sisters {
    top: 69%;
    left: 29%;
  }
  .point-family {
    top: 52%;
    left: 44%;
  }
  .map-caption {
    font-size: 9px;
  }
  .map-detail {
    inset: 9px;
  }
  .map-detail > img {
    height: 47%;
    min-height: 140px;
  }
  .map-detail > div {
    padding: 15px 17px;
  }
  .map-detail h4 {
    font-size: 25px;
  }
  .map-detail p {
    font-size: 10px;
  }
  .lesson-top {
    padding: 10px 15px;
  }
  .lesson-logo {
    font-size: 18px;
  }
  .lesson-logo span {
    font-size: 7px;
    margin-left: 3px;
  }
  .lesson-top button {
    min-width: 44px;
  }
  .lesson-content {
    padding: 13px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
  }
  .olav-portrait {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
  }
  .olav-portrait .olav-art {
    width: 95px;
    height: 95px;
    aspect-ratio: 1;
  }
  .olav-portrait > span {
    font-size: 9px;
    text-align: left;
    margin: 0;
    max-width: 150px;
    border-radius: 10px 10px 10px 0;
  }
  .reading-book {
    padding: 21px;
  }
  .reading-words {
    font-size: 26px;
    margin-block: 12px;
  }
  .reading-words.large {
    font-size: 32px;
  }
  .word-help {
    font-size: 10px;
    min-height: 45px;
  }
  .lesson-button {
    font-size: 10px;
  }
  .reading-hint {
    font-size: 8px;
  }
  .case-grid {
    grid-template-columns: 1fr;
    gap: 33px;
  }
  .case-image {
    height: 260px;
    border-radius: 17px;
  }
  .case-caption {
    padding-top: 19px;
  }
  .case-caption h3 {
    font-size: 29px;
  }
  .case-caption h3 br {
    display: none;
  }
  .case-caption > span {
    margin-top: 12px;
  }
  .case-caption .eyebrow {
    font-size: 7px;
  }
  .method-grid {
    grid-template-columns: 1fr;
    margin-top: 35px;
    gap: 30px;
  }
  .method-grid article {
    padding-top: 15px;
  }
  .method-number {
    margin-bottom: 19px;
  }
  .method-grid h3 {
    font-size: 28px;
    margin-bottom: 13px;
  }
  .method-grid p {
    font-size: 12px;
    max-width: none;
  }
  .method-output {
    margin-top: 16px;
    font-size: 8px;
  }
  .method-signature {
    justify-content: flex-start;
    margin-top: 35px;
    padding-top: 26px;
    gap: 18px;
  }
  .method-signature p {
    font-size: 9px;
  }
  .signature-mark {
    font-size: 31px;
  }
  .service-list > button {
    grid-template-columns: 23px 1fr 38px;
    gap: 5px 12px;
    padding: 22px 0;
  }
  .service-list h3 {
    font-size: 26px;
  }
  .service-list p {
    grid-column: 2;
    font-size: 11px;
    max-width: 235px;
  }
  .service-action {
    grid-column: 3;
    grid-row: 1/3;
    width: 36px;
    height: 36px;
    align-self: center;
  }
  .service-number {
    font-size: 9px;
  }
  .service-list > button:hover {
    padding-left: 8px;
    padding-right: 8px;
  }
  .about-section {
    padding-block: 55px;
  }
  .about-layout {
    grid-template-columns: 1fr;
    gap: 27px;
  }
  .about-layout h2 {
    font-size: 43px;
  }
  .about-layout .eyebrow {
    font-size: 8px;
    margin-bottom: 20px;
  }
  .about-layout .about-lead {
    font-size: 19px;
  }
  .about-layout p:not(.about-lead, .eyebrow) {
    font-size: 12px;
  }
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 27px;
  }
  .faq-layout h2 {
    font-size: 41px;
  }
  .faq-layout h2 br {
    display: none;
  }
  .faq-layout .eyebrow {
    font-size: 8px;
    margin-bottom: 19px;
  }
  .faq-layout > div > p:last-child {
    font-size: 12px;
    margin-top: 17px;
  }
  .faq-layout > div > p:last-child br {
    display: none;
  }
  .faq-list summary {
    font-size: 12px;
    min-height: 75px;
  }
  .faq-list details p {
    font-size: 11px;
    padding-right: 15px;
  }
  .contact-section {
    padding-block: 58px;
  }
  .contact-layout {
    display: block;
  }
  .contact-layout h2 {
    font-size: 76px;
  }
  .contact-layout .eyebrow {
    font-size: 8px;
    max-width: 260px;
    margin-bottom: 22px;
  }
  .contact-layout > div:last-child {
    margin-top: 29px;
  }
  .contact-layout p:not(.eyebrow) {
    font-size: 14px;
    margin-bottom: 24px;
  }
  .footer-main {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
  }
  .footer-main > .brand {
    width: 100%;
  }
  .footer-main > span {
    max-width: 180px;
    font-size: 8px;
  }
  .footer-main > a:last-child {
    font-size: 10px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 9px;
    font-size: 7px;
    margin-top: 24px;
  }
  .sticky-contact {
    bottom: 12px;
    left: 12px;
    right: 12px;
    transform: none;
    gap: 10px;
    padding: 7px 7px 7px 14px;
    justify-content: space-between;
    border-radius: 14px;
  }
  .sticky-contact > span {
    font-size: 9px;
    white-space: normal;
    max-width: 132px;
    line-height: 1.5;
  }
  .sticky-contact .button {
    font-size: 9px;
    gap: 9px;
    padding: 10px 14px;
    min-height: 44px;
  }
  .case-dialog-hero {
    height: 230px;
  }
  .case-dialog-body {
    padding: 26px 23px;
  }
  .case-dialog-body h2 {
    font-size: 35px;
  }
  .case-dialog-body .eyebrow {
    font-size: 8px;
  }
  .case-dialog-body > p {
    font-size: 12px;
  }
  .case-details {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .case-details strong {
    font-size: 12px;
  }
  .case-details p {
    font-size: 11px;
  }
  .case-gallery {
    gap: 9px;
  }
  .case-gallery img {
    height: 125px;
  }
  .contact-dialog {
    padding: 28px 23px;
  }
  .contact-dialog h2 {
    font-size: 37px;
  }
  .contact-dialog > .eyebrow {
    font-size: 8px;
  }
  .contact-dialog .dialog-close {
    margin: 10px 10px -54px 0;
  }
  .brief-actions {
    gap: 15px;
  }
  .brief-actions > .button {
    font-size: 11px;
    padding: 12px 17px;
  }
  .brief-actions > .text-button {
    font-size: 11px;
  }
  dialog {
    max-height: calc(100dvh - 26px);
    max-width: calc(100vw - 24px);
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .hero-art button:hover,
  .case-card:hover .case-image > img,
  .product-tabs button:hover,
  .button:hover {
    transform: none;
  }
}

/* Olav uses the existing expression atlas as a CSS sprite; the original is unchanged. */
.olav-art {
  display: block;
  flex-shrink: 0;
  background-image: url(/studio-20260913/assets/olav-expressions.webp);
  background-size: 300% 200%;
  background-position: 0 0;
  border-radius: 50%;
  width: 150px;
  aspect-ratio: 1;
}
.hero-olav > .olav-art {
  background-position: 50% 100%;
  border: 2px solid white;
}
.hero-olav > .olav-art + span {
  font-size: 9px;
  background: #ffffffe5;
  border: 1px solid white;
  border-radius: 12px 12px 12px 0;
  padding: 8px 11px;
}
.olav-portrait > .olav-art {
  margin-inline: auto;
  max-width: 100%;
}
.olav-portrait > .olav-art + span {
  display: block;
  font-size: 8px;
  text-align: center;
  padding: 10px;
  background: white;
  border-radius: 11px;
  max-width: 180px;
  margin: 8px auto 0;
  color: #5a4770;
}
.lesson-demo {
  background: #edf5fc;
}
.reading-book {
  background: #fffefb;
}
.word-help {
  background: #eaf3fc;
  color: #355577;
}
.word-help strong {
  color: #16375f;
}
.reading-words button:hover,
.reading-words button.current {
  background: #c5e4fa;
  color: #102e5a;
  box-shadow: inset 0 -2px #b59139;
}
.lesson-button {
  background: #1d3169;
}
.explain-lesson {
  font-size: 9px;
  margin-left: 12px;
}
.lesson-demo .prototype {
  color: #355577;
}
.demo-kicker:has(.prototype) {
  flex-wrap: wrap;
}
.lesson-logo {
  color: #1d3169;
}
@media (max-width: 640px) {
  .hero-olav > .olav-art + span {
    font-size: 7px;
    padding: 6px 9px;
  }
  .olav-portrait > .olav-art {
    margin: 0;
  }
  .olav-portrait > .olav-art + span {
    margin: 0;
    font-size: 9px;
    text-align: left;
  }
  .explain-lesson {
    margin-left: 8px;
    font-size: 9px;
  }
}

/* Final optical spacing and atlas specificity. */
h1,
h2,
h3,
h4 {
  letter-spacing: -0.035em;
}
.hero h1 {
  letter-spacing: -0.045em;
}
.hero-olav > .olav-art {
  background: url(/studio-20260913/assets/olav-expressions.webp) 50% 100% / 300% 200%;
  padding: 0;
  border-radius: 50%;
  box-shadow: none;
}
.olav-portrait > .olav-art {
  background: url(/studio-20260913/assets/olav-expressions.webp) 0 0 / 300% 200%;
  padding: 0;
  border-radius: 50%;
  box-shadow: none;
  max-width: 220px;
  height: auto;
  aspect-ratio: 1;
  margin: 0 auto;
}
.hero-maram .hero-image-caption {
  padding-left: 28%;
}
.hero-ren {
  background: #fff;
}
@media (max-width: 640px) {
  .hero h1 {
    letter-spacing: -0.04em;
  }
  .hero-maram .hero-image-caption {
    padding-left: 23%;
  }
  .hero-image-caption strong {
    font-size: 14px;
  }
  .olav-portrait > .olav-art {
    width: 95px;
    height: 95px;
    margin: 0;
  }
}
