:root {
  --bg: #000;
  --card-bg: #fff;
  --left-bg-top: #f9f9f9;
  --left-bg-mid: #dee9e8;
  --left-bg-bottom: #ffffff;
  --text: #111;
  --muted: rgba(0, 0, 0, 0.65);
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-heading: "SN Pro", "SF Pro Rounded", sans-serif;

  --frame-max: 1200px;
  --frame-radius: 32px;
  --left-radius: 11px;
  --column-gap: 35px;
  --site-pad-top: 21px;
  --site-pad-right: 21px;
  --site-pad-bottom: 21px;
  --site-pad-left: 21px;

  --card-width: 100%;
  --card-gap: 42px;
  --row-gap: 36px;
  --header-gap: 24px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --chat-nudge: -15%;
  --chatNudge: var(--chat-nudge);
  --sheetUpDur: 900ms;
  --sheetDownDur: 900ms;
  --control-color: #26254d;

  --screen-top: 1.56%;
  --screen-right: 4.07%;
  --screen-bottom: 1.85%;
  --screen-left: 4.07%;
  --header-width: 97.26%;
  --chat-width: 89.52%;
  --chat-top: 40%;
  --share-width: 94.68%;
  --reweal-width: 97.26%;
  --share-icon-x: 38.5%;
  --share-icon-y: 42.8%;
  --share-icon-size: 17.4%;
}

@font-face {
  font-family: "SN Pro";
  src: url("assets/fonts/sn-pro/SNPro-VariableFont_wght.ttf") format("truetype-variations");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SN Pro";
  src: url("assets/fonts/sn-pro/SNPro-Italic-VariableFont_wght.ttf") format("truetype-variations");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  display: flex;
  justify-content: center;
  align-items: stretch;
  padding: 21px 42px;
  overflow: hidden;
}

a {
  color: var(--control-color);
  text-decoration: underline;
}

a:hover {
  text-decoration: underline;
}

h1,
h2,
h3,
.headline,
.tagline,
.info-title,
.footer-brand,
.doc-title {
  font-family: var(--font-heading);
}

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

.site {
  width: min(100%, var(--frame-max));
  height: calc(100vh - 42px);
  height: calc(100dvh - 42px);
  background: var(--card-bg);
  border-radius: var(--frame-radius);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-template-areas: "left right";
  gap: var(--column-gap);
  padding: var(--site-pad-top) var(--site-pad-right) var(--site-pad-bottom) var(--site-pad-left);
  min-height: 0;
}

.site.site--single {
  grid-template-columns: 1fr;
  grid-template-areas: "left";
  gap: 0;
}

.left-panel {
  grid-area: left;
  background: radial-gradient(ellipse at 25% 20%, var(--left-bg-top) 0%, var(--left-bg-mid) 60%, var(--left-bg-bottom) 100%);
  border-radius: var(--left-radius);
  padding: 21px 21px calc(21px + env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  gap: 0;
  height: 100%;
  max-height: 100%;
  min-height: 0;
  position: relative;
  transition: background 300ms var(--ease);
}

.left-hero {
  flex: 1;
  display: flex;
  align-items: stretch;
  justify-content: center;
  height: 100%;
  min-height: 0;
}

.phone-hero {
  position: relative;
  width: 254px;
  height: 520px;
}

.hero-shadow,
.phone-shadow {
  position: absolute;
  left: 53%;
  top: 54%;
  width: 115%;
  height: 115%;
  transform: translate(-46%, -47%);
  --shadow-base: var(--phone-w, 254px);
  z-index: 0;
  pointer-events: none;
}

.phone-body {
  position: absolute;
  width: 243px;
  height: 511px;
  left: 0;
  top: 3px;
  border-radius: 43px;
  background: #d9d9d9;
  border: 2px solid rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-screen {
  width: 240px;
  height: 504px;
  border-radius: 43.7px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: grid;
  place-items: center;
  color: rgba(0, 0, 0, 0.35);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-module {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto minmax(0, 1fr);
  justify-items: center;
  gap: 21px;
  width: 100%;
  height: 100%;
  min-height: 0;
  padding-bottom: 21px;
}

.hero-caption {
  margin: 0;
  min-height: 21px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  color: #000;
  width: 100%;
  align-self: end;
}

.hero-phone {
  position: relative;
  --phone-w: min(300px, 100%);
  --shadow-base: var(--phone-w, 254px);
  width: var(--phone-w);
  height: calc(var(--phone-w) * 92 / 45);
  aspect-ratio: 45 / 92;
  cursor: pointer;
  outline: none;
  max-width: 100%;
  max-height: 100%;
}

.hero-phone:focus-visible {
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.2);
  border-radius: 32px;
}

.shadow-layer {
  position: absolute;
  width: calc(var(--shadow-base) * 0.9567);
  height: calc(var(--shadow-base) * 2.0118);
  border-radius: calc(var(--shadow-base) * 0.1693);
  background: #26254d;
}

.shadow-layer.layer-1 {
  transform: translate(calc(var(--shadow-base) * 0.1142), calc(var(--shadow-base) * 0.1575));
  opacity: 0.2;
  filter: blur(calc(var(--shadow-base) * 0.04134));
}

.shadow-layer.layer-2 {
  transform: translate(calc(var(--shadow-base) * 0.0630), calc(var(--shadow-base) * 0.0827));
  opacity: 0.24;
  filter: blur(calc(var(--shadow-base) * 0.02087));
}

.shadow-layer.layer-3 {
  transform: translate(calc(var(--shadow-base) * 0.0315), calc(var(--shadow-base) * 0.0394));
  opacity: 0.2;
  filter: blur(calc(var(--shadow-base) * 0.00906));
}

.shadow-layer.layer-4 {
  transform: translate(calc(var(--shadow-base) * 0.0157), calc(var(--shadow-base) * 0.0157));
  opacity: 0.192;
  filter: blur(calc(var(--shadow-base) * 0.00276));
}

.shadow-layer.layer-5 {
  transform: translate(calc(var(--shadow-base) * 0.0197), calc(var(--shadow-base) * 0.0197));
  opacity: 0.16;
  filter: blur(calc(var(--shadow-base) * 0.01024));
}

.hero-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.hero-screen {
  position: absolute;
  inset: var(--screen-top) var(--screen-right) var(--screen-bottom) var(--screen-left);
  --screen-radius: calc(var(--phone-w) * 0.15);
  border-radius: var(--screen-radius);
  background: #fff;
  overflow: hidden;
  z-index: 1;
  transform: translateZ(0);
  clip-path: inset(0 round var(--screen-radius));
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.screen-layer {
  position: absolute;
  inset: 0;
  will-change: transform;
}

.hero-loader {
  position: absolute;
  inset: 0;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 200ms var(--ease);
  z-index: 10;
}

.hero-spinner {
  position: relative;
  width: 26px;
  height: 26px;
}

.hero-spinner span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 6%;
  height: 16%;
  background: #fff;
  border-radius: 999px;
  opacity: 0;
  animation: hero-fade 1s linear infinite;
}

.hero-spinner .bar1 {
  transform: rotate(0deg) translate(0, -130%);
  animation-delay: 0s;
}

.hero-spinner .bar2 {
  transform: rotate(30deg) translate(0, -130%);
  animation-delay: -0.9167s;
}

.hero-spinner .bar3 {
  transform: rotate(60deg) translate(0, -130%);
  animation-delay: -0.833s;
}

.hero-spinner .bar4 {
  transform: rotate(90deg) translate(0, -130%);
  animation-delay: -0.75s;
}

.hero-spinner .bar5 {
  transform: rotate(120deg) translate(0, -130%);
  animation-delay: -0.667s;
}

.hero-spinner .bar6 {
  transform: rotate(150deg) translate(0, -130%);
  animation-delay: -0.583s;
}

.hero-spinner .bar7 {
  transform: rotate(180deg) translate(0, -130%);
  animation-delay: -0.5s;
}

.hero-spinner .bar8 {
  transform: rotate(210deg) translate(0, -130%);
  animation-delay: -0.4167s;
}

.hero-spinner .bar9 {
  transform: rotate(240deg) translate(0, -130%);
  animation-delay: -0.333s;
}

.hero-spinner .bar10 {
  transform: rotate(270deg) translate(0, -130%);
  animation-delay: -0.25s;
}

.hero-spinner .bar11 {
  transform: rotate(300deg) translate(0, -130%);
  animation-delay: -0.1667s;
}

.hero-spinner .bar12 {
  transform: rotate(330deg) translate(0, -130%);
  animation-delay: -0.0833s;
}

.hero-module.is-loading .hero-loader {
  opacity: 1;
}

.hero-module.is-loading .screen-layer {
  opacity: 0;
}

.hero-module.is-loading .hero-phone,
.hero-module.is-loading .hero-controls {
  pointer-events: none;
}

@keyframes hero-fade {
  to {
    opacity: 1;
  }
}

.header-layer {
  z-index: 3;
  transform: translateY(6px);
}

.header {
  width: var(--header-width);
  display: block;
  margin: 0 auto;
}

.chat-layer {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: var(--chat-top);
  transition: transform var(--sheetUpDur) var(--ease);
  z-index: 1;
}

.chat-body {
  width: var(--chat-width);
  display: block;
  margin-top: 0;
}

.share-layer,
.reweal-layer {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  transform: translateY(110%);
  transition: transform var(--sheetUpDur) var(--ease);
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

.share-layer {
  z-index: 2;
}

.reweal-layer {
  z-index: 3;
}

.app-layer {
  display: flex;
  align-items: stretch;
  justify-content: center;
  opacity: 0;
  transition: opacity 500ms var(--ease);
  z-index: 4;
  pointer-events: none;
}

.sheet {
  width: 100%;
  display: block;
}

.sheet-wrap {
  position: relative;
  width: var(--share-width);
}

.share-sheet {
  width: 100%;
}

.reweal-sheet {
  width: var(--reweal-width);
  height: 100%;
  object-fit: contain;
}

.app-screen {
  width: var(--reweal-width);
  height: 100%;
  object-fit: contain;
}

.reweal-hit {
  position: absolute;
  left: var(--share-icon-x);
  top: var(--share-icon-y);
  width: var(--share-icon-size);
  transform: translate(-50%, -50%);
  opacity: 0;
}

.reweal-icon {
  width: 100%;
  height: auto;
  display: block;
}

.hero-module[data-slide="share"] .chat-layer,
.hero-module[data-slide="reweal"] .chat-layer {
  transform: translateY(var(--chatNudge));
}

.hero-module[data-slide="share"] .share-layer {
  transform: translateY(0);
}

.hero-module[data-slide="reweal"] .share-layer {
  transform: translateY(110%);
}

.hero-module[data-slide="reweal"] .reweal-layer {
  transform: translateY(0);
}

.hero-module[data-slide="app"] .reweal-layer {
  transform: translateY(0);
}

.hero-module[data-slide="app"] .app-layer {
  opacity: 1;
}

.hero-controls {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 32px;
  align-self: start;
  position: relative;
}

.hero-control {
  order: -1;
}

.hero-pagination {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 32px;
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
}

.pager-item {
  position: relative;
  width: 4px;
  height: 4px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.pager-dot {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: var(--control-color);
  transition: opacity 200ms var(--ease);
}

.pager-track {
  position: absolute;
  left: 0;
  top: 50%;
  width: 42px;
  height: 4px;
  transform: translateY(-50%);
  border-radius: 3px;
  background: rgba(38, 37, 77, 0.25);
  opacity: 0;
  transition: opacity 200ms var(--ease);
  overflow: hidden;
}

.pager-fill {
  position: absolute;
  inset: 0;
  background: var(--control-color);
  --pager-min: 0.095238;
  transform: scaleX(calc(var(--pager-min) + (var(--progress, 0) * (1 - var(--pager-min)))));
  transform-origin: left;
  border-radius: 3px;
}

.pager-item[data-active="true"] {
  width: 42px;
  height: 4px;
}

.pager-item[data-active="true"] .pager-dot {
  opacity: 0;
}

.pager-item[data-active="true"] .pager-track {
  opacity: 1;
}

.hero-control {
  position: relative;
  z-index: 2;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 16px;
  background: var(--control-color);
  color: #fff;
  padding: 0;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.hero-control-icon {
  width: 16px;
  height: 16px;
  display: grid;
  place-items: center;
  line-height: 1;
}

.hero-control-icon svg {
  width: 16px;
  height: 16px;
  display: none;
}

.hero-control-icon svg path {
  fill: currentColor;
}

.hero-control[data-state="pause"] .icon-pause,
.hero-control[data-state="play"] .icon-play,
.hero-control[data-state="replay"] .icon-replay {
  display: block;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  .chat-layer,
  .share-layer,
  .reweal-layer,
  .app-layer,
  .pager-dot,
  .pager-track {
    transition: none;
  }
}

.left-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 42px;
  gap: 8px;
}

.tagline {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
}

.app-store-badge {
  height: 42px;
  width: auto;
}

.app-store-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}

.app-store-cta {
  height: 42px;
  width: 142px;
  background: #000;
  border-radius: 32px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 0 11px;
}

.app-store-cta-icon {
  width: 17px;
  height: 26px;
}

.left-panel-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms var(--ease);
  z-index: 5;
}

.left-panel-overlay .overlay-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
}

.left-panel-overlay .overlay-image {
  padding: 42px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.left-panel-overlay .overlay-title {
  margin: 0;
  font-size: 24px;
  color: #fff;
  font-family: var(--font-heading);
}

.left-panel-overlay .overlay-store-link {
  display: inline-flex;
  pointer-events: auto;
}

.overlay-qr {
  width: 256px;
  height: 256px;
  max-width: min(256px, 80vw);
  max-height: min(256px, 80vw);
}
.overlay-back {
  display: none;
}

.app-store-button.overlay-back .app-store-cta {
  background: radial-gradient(ellipse at 25% 20%, var(--left-bg-top) 0%, var(--left-bg-mid) 60%, var(--left-bg-bottom) 100%);
  color: var(--control-color);
  justify-content: center;
  text-align: center;
  line-height: 1;
}

.left-panel.show-qr {
  background: radial-gradient(ellipse at 5% 10%, rgb(0 116 127) 0%, rgb(1 37 93) 60%, rgb(30 0 89) 100%);
}

.left-panel.show-qr .left-panel-overlay {
  opacity: 1;
}

.left-panel.show-qr .left-hero {
  opacity: 0;
  pointer-events: none;
}

.left-panel.show-qr .left-footer {
  opacity: 1;
  pointer-events: auto;
}

.left-panel.show-qr .tagline {
  opacity: 0;
  pointer-events: none;
}

.left-panel.show-qr .app-store-button:not(.overlay-back) {
  display: none;
}

.left-panel.show-qr .overlay-back {
  display: inline-flex;
}

.right-panel {
  grid-area: right;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  position: relative;
  overflow: visible;
}

.right-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 0 14px 0 7px;
  height: 100%;
  min-height: 0;
  max-width: none;
  overflow-y: auto;
  overflow-x: visible;
  scrollbar-gutter: stable;
}

.right-inner.has-scroll {
  padding-right: 28px;
}

.site.has-right-scroll {
  --site-pad-right: 0px;
}

.right-panel::before,
.right-panel::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 21px;
  pointer-events: none;
  z-index: 2;
}

.right-panel::before {
  top: 0;
  background: linear-gradient(to bottom, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 0;
  transition: opacity 200ms var(--ease);
}

.right-panel::after {
  bottom: 0;
  background: linear-gradient(to top, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.right-panel.is-scrolled::before {
  opacity: 1;
}

.headline {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 24px;
  line-height: 1.3;
  margin: 0 0 var(--header-gap);
}

.headline-light {
  font-weight: 400;
}

.headline-bold {
  font-weight: 600;
}

.headline-heavy {
  font-weight: 800;
}

.right-copy {
  display: grid;
  gap: 16px;
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 1.55;
}

.right-copy p {
  margin: 0;
}

.sticker-word {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.sticker {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: drop-shadow(0 2px 1px rgba(38, 37, 77, 0.2));
  transform: rotate(var(--sticker-tilt, 0deg));
}

.right-copy-highlight {
  display: block;
  font-size: 24px;
  font-family: var(--font-heading);
  line-height: 1.2;
}

.right-copy-highlight span {
  display: inline;
}

.right-copy-action {
  margin: 21px 0;
  min-height: 42px;
  display: flex;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
}

.right-copy-action .right-copy-body {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
}

.right-copy-body {
  display: block;
}

.right-copy-inline {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  vertical-align: middle;
  line-height: 1;
}

.right-copy-share-icon,
.right-copy-reweal-icon {
  height: 1em;
  width: auto;
  display: block;
}

.right-copy-brand {
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.right-copy-brand::before {
  content: "\00a0";
  width: 32px;
  height: 28px;
  color: transparent;
  background: url("assets/reweal-icon.png") no-repeat center / contain;
  display: inline-block;
  flex: 0 0 auto;
}

.features {
  display: flex;
  flex-direction: column;
  gap: var(--row-gap);
  padding: 42px 0;
}

.info-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: 21px;
  padding-top: 36px;
}

.info-spacer {
  min-height: 63px;
  flex: 1;
}

.info-title {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.info-text {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--muted);
}

.site-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 42px;
  padding: 0;
  margin: 0;
  background: none;
  border-radius: 11px;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
  position: relative;
}

.footer-brand {
  font-weight: 600;
  color: #000;
}

.footer-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-links {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 21px;
  text-align: left;
  font-size: 14px;
}

.footer-links a {
  font-size: 14px;
  font-weight: 400;
  line-height: 136%;
}

.footer-legal {
  display: none;
  position: relative;
}

.footer-legal summary {
  list-style: none;
  cursor: pointer;
  font-weight: 400;
}

.footer-legal summary::-webkit-details-marker {
  display: none;
}

.footer-legal-links {
  display: none;
}

.footer-legal[open] .footer-legal-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 4px;
}

.doc-body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  display: flex;
  justify-content: center;
  align-items: stretch;
  padding: 21px 42px;
  overflow: auto;
}

.doc {
  width: min(100%, var(--frame-max));
  background: var(--card-bg);
  border-radius: var(--frame-radius);
  padding: 21px;
  min-height: 0;
}

.doc-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: 42px;
  width: 100%;
  padding: 0 21px 21px;
}

.doc-sidebar {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  align-self: stretch;
}

.doc-sidebar-header {
  position: sticky;
  top: 21px;
}

.doc-title {
  margin: 0 0 8px;
  font-size: 28px;
  line-height: 1.2;
}

.doc-back {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 600;
}

.doc-back:hover {
  text-decoration: underline;
}

.doc-lede {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 14px;
}

.doc-main {
  min-width: 0;
}

.doc-main > .doc-section:first-child {
  margin-top: 0;
}

.doc-sidebar-footer {
  margin-top: auto;
}

.doc-section {
  margin-top: 36px;
}

.doc-section h2 {
  margin: 0 0 12px;
  font-size: 20px;
}

.doc-topic + .doc-topic {
  margin-top: 24px;
}

.doc-topic h3 {
  margin: 0;
  font-size: 16px;
}

.doc-subtitle {
  margin: 4px 0 12px;
  color: var(--muted);
  font-size: 13px;
}

.doc-text {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.55;
}

.doc-list {
  margin: 0 0 12px;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.55;
}

.doc-list li + li {
  margin-top: 6px;
}

.doc-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  line-height: 1.4;
}

.doc-table th,
.doc-table td {
  text-align: left;
  padding: 6px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.doc-table th:last-child,
.doc-table td:last-child,
.doc-table th:nth-last-child(2),
.doc-table td:nth-last-child(2) {
  width: 64px;
  text-align: center;
}

.doc-footer {
  margin-top: 42px;
  padding-top: 21px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  position: relative;
}

.doc-footer strong {
  display: block;
  margin-top: 21px;
}

.doc-signature {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 60%;
  max-width: 220px;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

.doc-footer-copy {
  position: relative;
  z-index: 1;
}

.doc-contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.04);
  font-weight: 600;
}

@media (max-width: 980px) {
  .doc-body {
    padding: 11px;
  }

  .doc {
    padding: 11px;
  }

  .doc-content {
    grid-template-columns: 1fr;
    padding: 0 11px 21px;
  }

  .doc-sidebar {
    position: static;
  }
}

@media (max-width: 1120px) {
  :root {
    --column-gap: 14px;
    --card-gap: 21px;
  }

  body {
    padding: 21px;
  }
}

.feature-row {
  display: flex;
  gap: var(--card-gap);
  align-items: flex-start;
  width: 100%;
}

.feature-card {
  width: var(--card-width);
  display: flex;
  flex-direction: column;
  gap: 11px;
  position: relative;
}

.feature-media {
  display: flex;
  align-items: flex-start;
  height: 100px;
}

.feature-media picture {
  display: block;
}

.feature-icon {
  max-width: 100%;
  max-width: 200px;
  height: 100%;
  object-fit: contain;
  margin-left: -7px;
}

.feature-icon.align-right {
  margin-left: auto;
}

.feature-icon.tall {
  max-height: none;
}

.feature-text h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 500;
}

.feature-text {
  width: 100%;
}
.feature-text p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--muted);
}

.badge-pro {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 9px;
  font-weight: 600;
  padding: 2px 6px;
  background: color(srgb 0.14902 0.145098 0.301961 / 0.1);
  color: rgba(0, 0, 0, 0.6);
  border-radius: 999px;
  letter-spacing: 0.04em;
  display: inline-block;
  width: auto;
  max-width: none;
  white-space: nowrap;
}

@media (max-width: 980px) {
  body {
    padding: 21px;
    overflow: auto;
  }

  .site {
    height: auto;
    grid-template-columns: minmax(256px, 1fr);
    grid-template-areas: "left" "right";
    gap: 24px;
    padding: 21px;
  }

  .left-panel {
    border-radius: var(--left-radius);
    height: auto;
    max-height: calc(100vh - 32px);
    min-height: 0;
    overflow: hidden;
  }

  .right-panel {
    overflow: visible;
    padding: 0;
    scrollbar-gutter: auto;
  }

  .right-inner {
    max-width: none;
    padding: 0 28px 42px 21px;
    height: auto;
    overflow: visible;
  }

  .right-inner.has-scroll {
    padding: 0 28px 42px 21px;
  }

  .footer-links {
    text-align: left;
  }

  .right-panel::before,
  .right-panel::after {
    display: none;
  }

  .feature-card {
    width: var(--card-width);
  }

  .feature-media {
    height: 100px;
  }

  .info-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 555px) {
  body {
    padding: 0 11px 11px 11px;
  }

  .site {
    padding: 11px;
  }

  .left-panel {
    padding: 11px;
    border-radius: calc(var(--left-radius) + 11px);
  }

  .right-inner {
    padding: 0 18px 0 11px;
  }

  .right-inner.has-scroll {
    padding-right: 18px;
  }
}


@media (max-width: 480px) {
  .site-footer {
    flex-direction: row;
    align-items: center;
    gap: 42px;
  }

  .footer-links {
    margin-left: auto;
    flex-direction: row;
    align-items: center;
    gap: 11px;
  }

  .footer-link-legal {
    display: none;
  }

  .footer-legal {
    display: inline-block;
  }

  .feature-row {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }

  .feature-card {
    width: 200px;
    margin: 0 auto;
  }

  .feature-icon,
  .feature-icon.align-right {
    margin-left: 0;
    margin-right: 0;
  }

  .feature-text {
    text-align: center;
  }
}

@media (max-width: 960px) {
  .site {
    grid-template-areas: "left" "right";
  }
}
