:root {
  --canvas: #ece8dc;
  --paper: #f8f7f2;
  --paper-bright: #fdfcf8;
  --ink: #181b19;
  --muted: #6c6e68;
  --line: #d9d6cb;
  --line-dark: rgba(24, 27, 25, 0.18);
  --wine: #a3223b;
  --wine-dark: #7e162c;
  --wine-soft: #f0dfe2;
  --sage: #b7c7b0;
  --green: #315f46;
  --shadow: 0 28px 80px rgba(35, 31, 25, 0.12);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shell: min(1220px, calc(100% - 64px));
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3 {
  margin-top: 0;
}

svg {
  display: block;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  border-radius: 8px;
  background: var(--ink);
  color: white;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid var(--wine);
  outline-offset: 3px;
}

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.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;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.site-header.scrolled {
  border-color: rgba(24, 27, 25, 0.09);
  background: rgba(236, 232, 220, 0.88);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  width: var(--shell);
  height: 76px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  display: inline-flex;
  align-items: baseline;
  color: var(--ink);
  padding-right: 3px;
  font-size: 31px;
  font-weight: 600;
  letter-spacing: -1.7px;
  line-height: 1;
}

.logo-i {
  position: relative;
  display: inline-block;
}

.logo-i-final {
  margin-right: -0.045em;
  transform: translateX(0.045em);
}

.logo-i::before {
  position: absolute;
  top: -0.06em;
  left: 50%;
  width: 0.22em;
  height: 0.22em;
  border-radius: 50%;
  background: var(--wine);
  content: "";
  transform: translateX(-50%);
}

.desktop-nav {
  display: flex;
  gap: clamp(20px, 2.3vw, 36px);
  margin-left: 5vw;
  font-size: 13px;
}

.desktop-nav a,
.text-link {
  position: relative;
  color: #444743;
}

.desktop-nav a::after,
.text-link::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.desktop-nav a:hover::after,
.text-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.language-switcher {
  position: relative;
  flex: 0 0 auto;
  z-index: 4;
}

.language-trigger {
  display: inline-flex;
  height: 40px;
  padding: 0 3px;
  border: 0;
  align-items: center;
  gap: 9px;
  background: transparent;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0;
  transition: color 180ms ease;
}

.language-trigger:hover,
.language-trigger[aria-expanded="true"] {
  color: var(--wine);
}

.language-trigger:focus-visible {
  outline: none;
  box-shadow: inset 0 -1px 0 var(--wine);
}

.language-trigger-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--wine);
}

.language-trigger-chevron {
  width: 6px;
  height: 6px;
  margin-top: -3px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
  transition: transform 180ms ease, margin 180ms ease;
}

.language-trigger[aria-expanded="true"] .language-trigger-chevron {
  margin-top: 3px;
  transform: rotate(225deg);
}

.language-menu {
  position: absolute;
  top: calc(100% + 7px);
  right: -9px;
  width: 220px;
  padding: 8px;
  border: 1px solid rgba(24, 27, 25, 0.13);
  border-radius: 4px;
  background: rgba(253, 252, 248, 0.98);
  box-shadow: 0 20px 55px rgba(35, 31, 25, 0.15);
  transform-origin: top right;
  animation: language-menu-in 160ms ease-out both;
  backdrop-filter: blur(18px);
}

.language-menu[hidden] {
  display: none;
}

.language-menu > p {
  padding: 8px 11px 10px;
  margin: 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

.language-menu a {
  display: grid;
  min-height: 42px;
  padding: 0 11px;
  border-radius: 2px;
  align-items: center;
  grid-template-columns: 8px 1fr auto;
  gap: 10px;
  color: #3d403c;
  font-size: 13px;
  transition: background 150ms ease, color 150ms ease;
}

.language-menu a:hover,
.language-menu a:focus-visible {
  background: rgba(24, 27, 25, 0.055);
  color: var(--ink);
  outline: none;
}

.language-menu a[aria-current="true"] {
  background: rgba(163, 34, 59, 0.07);
  color: var(--wine-dark);
}

.language-option-mark {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: transparent;
}

.language-menu a[aria-current="true"] .language-option-mark {
  background: var(--wine);
}

.language-menu small {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0;
}

@keyframes language-menu-in {
  from { opacity: 0; transform: translateY(-5px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.text-link {
  font-size: 13px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.button-small {
  min-height: 38px;
  padding-inline: 16px;
  font-size: 12px;
}

.button-dark {
  background: var(--ink);
  color: white;
}

.button-dark:hover {
  background: var(--wine);
}

.demo-links {
  display: flex;
  align-items: center;
  gap: 7px;
}

.demo-links .button-small {
  min-height: 38px;
  padding-inline: 13px;
}

.demo-links-mobile {
  width: 100%;
  grid-template-columns: 1fr;
}

.button-primary {
  background: var(--wine);
  color: white;
}

.button-primary:hover {
  background: var(--wine-dark);
}

.button-ghost {
  border-color: var(--line-dark);
}

.button-ghost:hover {
  border-color: var(--ink);
  background: rgba(255, 255, 255, 0.36);
}

.button-light {
  min-height: 58px;
  padding-inline: 28px;
  background: var(--paper-bright);
  color: var(--ink);
}

.button-light:hover {
  background: white;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 850px;
  padding: 132px 0 0;
  overflow: hidden;
}

.hero::after {
  position: absolute;
  z-index: -2;
  top: 0;
  right: -10%;
  width: 62%;
  height: 100%;
  background: radial-gradient(circle at 56% 38%, rgba(255, 255, 255, 0.73), rgba(255, 255, 255, 0) 59%);
  content: "";
}

.hero-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(163, 34, 59, 0.15);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  top: 56px;
  right: -210px;
  width: 780px;
  height: 780px;
}

.orbit-two {
  top: 182px;
  right: -83px;
  width: 530px;
  height: 530px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(460px, 0.82fr);
  gap: clamp(44px, 6vw, 82px);
  align-items: center;
}

.eyebrow {
  display: flex;
  margin-bottom: 24px;
  align-items: center;
  gap: 10px;
  color: #5f625d;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--wine);
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.62);
}

.hero h1 {
  max-width: 750px;
  margin-bottom: 28px;
  font-size: clamp(56px, 5.4vw, 82px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.hero h1 em,
.final-cta h2 em {
  color: var(--wine);
  font-style: normal;
}

.hero-lede {
  max-width: 550px;
  margin-bottom: 28px;
  color: #50534f;
  font-size: 17px;
  letter-spacing: -0.018em;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  margin-bottom: 34px;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 15px;
}

.hero-proof p {
  margin: 0;
  color: #747670;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-transform: uppercase;
}

.proof-mark {
  display: flex;
  align-items: center;
}

.proof-mark i {
  display: block;
  width: 27px;
  height: 27px;
  border: 2px solid var(--canvas);
  border-radius: 50%;
  background: #afb3a7;
}

.proof-mark i:nth-child(2) {
  margin-left: -9px;
  background: #7c8777;
}

.proof-mark i:nth-child(3) {
  position: relative;
  margin-left: -9px;
  background: var(--wine);
}

.proof-mark i:nth-child(3)::before,
.proof-mark i:nth-child(3)::after {
  position: absolute;
  width: 8px;
  height: 1px;
  background: white;
  content: "";
}

.proof-mark i:nth-child(3)::before {
  top: 10px;
  left: 8px;
}

.proof-mark i:nth-child(3)::after {
  top: 13px;
  left: 8px;
}

.demo-stage {
  position: relative;
  max-width: 520px;
  margin-left: auto;
}

.demo-label {
  position: absolute;
  z-index: 3;
  top: -15px;
  left: -34px;
  display: flex;
  height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(24, 27, 25, 0.09);
  border-radius: 999px;
  align-items: center;
  gap: 8px;
  background: var(--paper-bright);
  box-shadow: 0 8px 24px rgba(30, 28, 23, 0.09);
  color: #686a65;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.demo-label span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4b9f66;
  box-shadow: 0 0 0 4px rgba(75, 159, 102, 0.13);
}

.demo-frame {
  position: relative;
  border: 1px solid rgba(24, 27, 25, 0.11);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper-bright);
  box-shadow: var(--shadow);
}

.demo-browserbar {
  display: grid;
  height: 42px;
  padding: 0 16px;
  border-bottom: 1px solid #e5e3db;
  grid-template-columns: 80px 1fr 80px;
  align-items: center;
  background: #f1f0eb;
}

.browser-dots {
  display: flex;
  gap: 5px;
}

.browser-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c7c5bc;
}

.browser-dots i:first-child {
  background: #b95f70;
}

.browser-address {
  color: #85877f;
  font-family: var(--mono);
  font-size: 8px;
  text-align: center;
}

.browser-lock {
  display: flex;
  justify-content: flex-end;
}

.browser-lock svg {
  width: 13px;
  fill: none;
  stroke: #9b9c96;
  stroke-width: 1.3;
}

.restaurant-head {
  display: flex;
  padding: 25px 30px 20px;
  align-items: flex-end;
  justify-content: space-between;
}

.restaurant-kicker {
  margin-bottom: 3px;
  color: #8d8e88;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.restaurant-head h2 {
  margin: 0;
  font-size: 27px;
  font-weight: 500;
  letter-spacing: -0.055em;
}

.language-chip {
  padding: 7px 10px;
  border: 1px solid #deddd6;
  border-radius: 999px;
  background: transparent;
  color: #5f615d;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 9px;
}

.assistant-tabs {
  display: grid;
  margin: 0 30px;
  padding: 3px;
  border-radius: 10px;
  grid-template-columns: 1fr 1fr;
  background: #ebeae4;
}

.assistant-tabs button {
  height: 34px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #7b7d77;
  cursor: pointer;
  font-size: 11px;
}

.assistant-tabs button.active {
  background: white;
  box-shadow: 0 2px 9px rgba(37, 34, 28, 0.07);
  color: var(--ink);
  font-weight: 600;
}

.pilot-tabs {
  grid-template-columns: repeat(4, 1fr);
}

.pilot-tabs span {
  display: flex;
  height: 34px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  color: #7b7d77;
  font-size: 10px;
}

.pilot-tabs span.active {
  background: white;
  box-shadow: 0 2px 9px rgba(37, 34, 28, 0.07);
  color: var(--ink);
  font-weight: 600;
}

.live-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-left: 5px;
  border-radius: 50%;
  background: var(--wine);
  vertical-align: middle;
}

.chat-window {
  min-height: 428px;
  padding: 21px 26px 17px;
}

.pilot-window {
  min-height: 394px;
}

.pilot-avatar {
  background: #b53d17;
}

.pilot-scope {
  max-width: 88%;
  background: #b53d17;
}

.pilot-answer .spark {
  color: #4b9f66;
  font-size: 8px;
}

.pilot-note strong {
  margin-right: 4px;
}

.pilot-link {
  color: inherit;
  text-decoration: none;
}

.pilot-link:hover span {
  color: var(--wine);
}

.pilot-disclosure {
  padding: 14px 18px;
}

.pilot-disclosure p {
  margin: 0;
  color: #6d6f69;
  font-size: 9px;
  line-height: 1.55;
}

.assistant-intro {
  display: grid;
  margin-bottom: 18px;
  grid-template-columns: 30px 1fr;
  gap: 10px;
  align-items: flex-start;
}

.assistant-avatar {
  display: flex;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: var(--wine);
  color: white;
  font-size: 15px;
  font-weight: 600;
}

.assistant-intro strong {
  display: block;
  margin-bottom: 3px;
  font-size: 11px;
}

.assistant-intro p {
  max-width: 350px;
  margin: 0;
  color: #696b66;
  font-size: 10px;
  line-height: 1.45;
}

.guest-message {
  width: fit-content;
  max-width: 82%;
  margin: 0 0 18px auto;
  padding: 11px 14px;
  border-radius: 15px 15px 3px 15px;
  background: var(--ink);
  color: white;
  font-size: 11px;
  line-height: 1.4;
  transition: opacity 140ms ease, transform 140ms ease;
}

.assistant-answer {
  padding-left: 40px;
  transition: opacity 140ms ease, transform 140ms ease;
}

.assistant-answer.changing,
.guest-message.changing {
  opacity: 0;
  transform: translateY(5px);
}

.answer-topline {
  margin-bottom: 7px;
  color: #292c29;
  font-size: 11px;
  font-weight: 600;
}

.spark {
  margin-right: 5px;
  color: var(--wine);
}

.assistant-answer > p {
  margin-bottom: 13px;
  color: #666863;
  font-size: 10px;
  line-height: 1.48;
}

.dish-card {
  display: grid;
  padding: 8px;
  border: 1px solid #e2e1da;
  border-radius: 13px;
  grid-template-columns: 91px 1fr;
  gap: 13px;
  background: white;
}

.dish-visual {
  position: relative;
  min-height: 83px;
  border-radius: 9px;
  overflow: hidden;
  background: #d6d0bf;
}

.dish-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.34), transparent 45%);
  content: "";
}

.plate {
  position: absolute;
  top: 13px;
  left: 13px;
  width: 67px;
  height: 58px;
  border-radius: 50%;
  background: #eee9de;
  box-shadow: inset 0 0 0 5px #f9f7f1, 0 5px 11px rgba(57, 50, 39, 0.18);
  transform: rotate(-9deg);
}

.food,
.herb {
  position: absolute;
  z-index: 1;
  display: block;
}

.food-one {
  top: 29px;
  left: 28px;
  width: 46px;
  height: 16px;
  border-radius: 60% 32% 55% 35%;
  background: #c97d5b;
  box-shadow: inset 0 -4px 0 rgba(102, 57, 40, 0.25);
  transform: rotate(-10deg);
}

.food-two {
  top: 45px;
  left: 30px;
  width: 35px;
  height: 9px;
  border-radius: 50%;
  background: #d3b75f;
  transform: rotate(16deg);
}

.herb {
  width: 21px;
  height: 2px;
  background: #477051;
}

.herb-one {
  top: 32px;
  left: 36px;
  transform: rotate(34deg);
}

.herb-two {
  top: 51px;
  left: 51px;
  transform: rotate(-37deg);
}

.dish-visual.dish-wine {
  background: #c8b5a7;
}

.dish-visual.dish-wine .plate {
  top: 47px;
  left: 18px;
  width: 58px;
  height: 20px;
}

.dish-visual.dish-wine .food-one {
  top: 10px;
  left: 37px;
  width: 19px;
  height: 47px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 44% 44% 48% 48%;
  background: rgba(145, 35, 54, 0.82);
  box-shadow: inset 0 8px 0 rgba(255, 255, 255, 0.36);
}

.dish-visual.dish-wine .food-two {
  top: 54px;
  left: 45px;
  width: 2px;
  height: 15px;
  background: rgba(255, 255, 255, 0.85);
}

.dish-visual.dish-wine .herb-one {
  top: 69px;
  left: 36px;
  width: 20px;
  background: rgba(255, 255, 255, 0.85);
}

.dish-visual.dish-wine .herb-two {
  display: none;
}

.dish-visual.dish-veg {
  background: #c7c3a6;
}

.dish-visual.dish-veg .food-one {
  top: 24px;
  left: 27px;
  width: 38px;
  height: 29px;
  border-radius: 48% 52% 44% 56%;
  background: #8e4d3b;
  box-shadow: inset 8px -6px 0 #b66e4e;
}

.dish-visual.dish-veg .food-two {
  top: 39px;
  left: 40px;
  width: 31px;
  height: 12px;
  background: #d9b74b;
}

.dish-copy {
  padding: 5px 7px 2px 0;
}

.dish-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.dish-heading h3,
.dish-heading strong {
  margin: 0;
  font-size: 11px;
}

.dish-heading strong {
  color: var(--wine);
}

.dish-copy > p {
  margin: 4px 0 8px;
  color: #858680;
  font-size: 8px;
  line-height: 1.35;
}

.dish-tags {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.dish-tags span {
  padding: 4px 6px;
  border-radius: 999px;
  background: #eef1ea;
  color: #557058;
  font-size: 7px;
  font-weight: 600;
}

.pairing-note {
  display: flex;
  margin-top: 8px;
  padding: 9px 11px;
  border-radius: 9px;
  align-items: center;
  gap: 8px;
  background: #f4eee9;
}

.pairing-icon {
  color: var(--wine);
  font-size: 17px;
}

.pairing-note p {
  margin: 0;
  color: #79756e;
  font-size: 8px;
}

.pairing-note strong {
  color: #44433f;
}

.chat-input {
  display: flex;
  height: 46px;
  margin: 0 26px 22px;
  padding: 0 6px 0 16px;
  border: 1px solid #deddd6;
  border-radius: 999px;
  align-items: center;
  justify-content: space-between;
  color: #a0a19b;
  font-size: 10px;
}

.chat-input i {
  display: flex;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: var(--wine);
  color: white;
  font-size: 15px;
  font-style: normal;
}

.scenario-picker {
  display: flex;
  margin: 20px 12px 0;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.scenario-picker p {
  margin: 0;
  color: #72746e;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scenario-buttons {
  display: flex;
  gap: 7px;
}

.scenario-buttons button {
  padding: 8px 11px;
  border: 1px solid rgba(24, 27, 25, 0.14);
  border-radius: 999px;
  background: transparent;
  color: #666863;
  cursor: pointer;
  font-size: 8px;
  transition: all 160ms ease;
}

.scenario-buttons button:hover,
.scenario-buttons button.active {
  border-color: var(--ink);
  background: var(--ink);
  color: white;
}

.hero-footnote {
  display: grid;
  margin-top: 62px;
  padding: 20px 0 26px;
  border-top: 1px solid rgba(24, 27, 25, 0.15);
  grid-template-columns: 1fr 1fr 1fr;
  color: #656762;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero-footnote p {
  margin: 0;
}

.hero-footnote p:last-child {
  text-align: right;
}

.promise-strip {
  border-block: 1px solid rgba(24, 27, 25, 0.12);
  overflow: hidden;
  background: var(--paper-bright);
}

.promise-track {
  display: flex;
  width: max-content;
  height: 72px;
  align-items: center;
  animation: ticker 30s linear infinite;
}

.promise-track span {
  padding-inline: 26px;
  font-size: 19px;
  letter-spacing: -0.025em;
  white-space: nowrap;
}

.promise-track i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--wine);
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.knowledge-section,
.product-section,
.pricing-section {
  padding: 112px 0;
}

.knowledge-section {
  background: var(--paper-bright);
}

.section-heading {
  display: grid;
  margin-bottom: 66px;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 8vw;
}

.section-number {
  display: block;
  margin-top: 54px;
  color: #9a9b95;
  font-family: var(--mono);
  font-size: 10px;
}

.section-heading h2,
.pricing-heading h2,
.signal-copy h2 {
  margin-bottom: 24px;
  font-size: clamp(46px, 5vw, 68px);
  font-weight: 500;
  letter-spacing: -0.052em;
  line-height: 1;
}

.section-heading > div:last-child > p,
.pricing-heading > div:last-child > p,
.signal-copy > p {
  max-width: 590px;
  margin-bottom: 0;
  color: #6c6e68;
  font-size: 17px;
  line-height: 1.6;
}

.knowledge-map {
  position: relative;
  display: grid;
  min-height: 540px;
  padding: 44px;
  border: 1px solid #dedcd3;
  border-radius: var(--radius-lg);
  grid-template-columns: 1fr 0.85fr 1fr;
  gap: 60px;
  align-items: center;
  overflow: hidden;
  background: #f2f0e9;
}

.knowledge-map::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(24, 27, 25, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(24, 27, 25, 0.035) 1px, transparent 1px);
  background-size: 32px 32px;
  content: "";
  mask-image: linear-gradient(to bottom, transparent, black 16%, black 84%, transparent);
}

.knowledge-column,
.knowledge-core {
  position: relative;
  z-index: 1;
}

.map-label {
  margin-bottom: 18px;
  color: #91928c;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.knowledge-card,
.output-card {
  display: grid;
  border: 1px solid rgba(24, 27, 25, 0.11);
  align-items: center;
  background: rgba(253, 252, 248, 0.93);
  box-shadow: 0 10px 28px rgba(38, 34, 28, 0.04);
}

.knowledge-card {
  min-height: 82px;
  margin-bottom: 10px;
  padding: 15px 17px;
  border-radius: 12px;
  grid-template-columns: 35px 1fr 22px;
  cursor: default;
  transition: transform 180ms ease, border-color 180ms ease;
}

.knowledge-card:hover {
  border-color: rgba(163, 34, 59, 0.38);
  transform: translateX(5px);
}

.knowledge-card > i {
  color: #a6a7a1;
  font-size: 13px;
  font-style: normal;
}

.card-index {
  color: var(--wine);
  font-family: var(--mono);
  font-size: 8px;
}

.knowledge-card strong,
.output-card strong {
  display: block;
  margin-bottom: 5px;
  font-size: 13px;
  font-weight: 600;
}

.knowledge-card small,
.output-card small {
  display: block;
  color: #858680;
  font-size: 9px;
  line-height: 1.35;
}

.knowledge-core {
  display: flex;
  aspect-ratio: 1;
  align-items: center;
  justify-content: center;
}

.core-ring {
  position: absolute;
  border: 1px solid rgba(163, 34, 59, 0.2);
  border-radius: 50%;
}

.ring-one { inset: 4%; }
.ring-two { inset: 17%; border-style: dashed; animation: rotate 22s linear infinite; }
.ring-three { inset: 29%; border-color: rgba(24, 27, 25, 0.12); }

@keyframes rotate {
  to { transform: rotate(360deg); }
}

.core-center {
  position: relative;
  z-index: 2;
  display: flex;
  width: 53%;
  aspect-ratio: 1;
  border: 1px solid rgba(24, 27, 25, 0.12);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: var(--paper-bright);
  box-shadow: 0 18px 45px rgba(42, 37, 30, 0.11);
  text-align: center;
}

.mini-wordmark {
  color: #6f716c;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.mini-wordmark b {
  color: var(--wine);
  font-weight: 600;
}

.core-center strong {
  margin: 10px 0 8px;
  font-size: 18px;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.core-center small {
  color: #999a94;
  font-size: 7px;
}

.core-node {
  position: absolute;
  width: 10px;
  height: 10px;
  border: 2px solid var(--paper-bright);
  border-radius: 50%;
  background: var(--wine);
  box-shadow: 0 2px 8px rgba(163, 34, 59, 0.3);
}

.node-one { top: 18%; left: 22%; }
.node-two { right: 8%; bottom: 37%; }
.node-three { bottom: 10%; left: 31%; }

.output-card {
  min-height: 93px;
  margin-bottom: 11px;
  padding: 18px;
  border-radius: 14px;
  grid-template-columns: 42px 1fr;
  gap: 4px;
}

.output-main {
  border-color: rgba(163, 34, 59, 0.23);
  background: #fbf4f4;
}

.output-icon {
  display: flex;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: var(--wine-soft);
  color: var(--wine);
  font-size: 12px;
}

.accuracy-note {
  display: flex;
  margin-top: 23px;
  align-items: center;
  gap: 9px;
  color: #777973;
  font-family: var(--mono);
  font-size: 7px;
  line-height: 1.4;
  text-transform: uppercase;
}

.accuracy-note i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #529068;
  box-shadow: 0 0 0 4px rgba(82, 144, 104, 0.12);
}

.experience-section {
  padding: 112px 0 120px;
  background: var(--ink);
  color: white;
}

.experience-intro {
  display: grid;
  margin-bottom: 66px;
  grid-template-columns: 0.65fr 1fr 0.62fr;
  gap: 55px;
  align-items: end;
}

.experience-intro .eyebrow {
  align-self: flex-start;
}

.experience-intro h2 {
  margin: 0;
  font-size: clamp(46px, 4.9vw, 68px);
  font-weight: 500;
  letter-spacing: -0.052em;
  line-height: 1;
}

.experience-intro > p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  line-height: 1.6;
}

.audience-tabs {
  display: grid;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  grid-template-columns: repeat(3, 1fr);
}

.audience-tabs button {
  position: relative;
  display: flex;
  padding: 0 0 22px;
  border: 0;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  font-size: 16px;
  text-align: left;
}

.audience-tabs button + button {
  margin-left: 42px;
}

.audience-tabs button::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--wine);
  content: "";
  transform: scaleX(0);
  transition: transform 200ms ease;
}

.audience-tabs button.active {
  color: white;
}

.audience-tabs button.active::after {
  transform: scaleX(1);
}

.audience-tabs button span {
  font-family: var(--mono);
  font-size: 8px;
}

.audience-panel {
  display: grid;
  min-height: 500px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  grid-template-columns: 0.82fr 1.18fr;
  overflow: hidden;
  background: #222523;
}

.audience-copy {
  display: flex;
  padding: 54px;
  justify-content: center;
  flex-direction: column;
}

.panel-kicker {
  margin-bottom: 16px;
  color: #b6b8b2;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.audience-copy h3 {
  max-width: 480px;
  margin-bottom: 22px;
  font-size: clamp(34px, 3.6vw, 48px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1;
}

.audience-copy > p:nth-child(3) {
  max-width: 460px;
  margin-bottom: 46px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 14px;
  line-height: 1.6;
}

.audience-copy ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.audience-copy li {
  display: grid;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  grid-template-columns: 38px 1fr;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
}

.audience-copy li span {
  color: var(--wine);
  font-family: var(--mono);
  font-size: 8px;
}

.audience-visual {
  position: relative;
  display: flex;
  min-height: 500px;
  padding: 42px;
  overflow: hidden;
  justify-content: center;
  flex-direction: column;
  background: #d6d1c5;
  color: var(--ink);
  transition: background 200ms ease;
}

.audience-visual::before {
  position: absolute;
  top: -120px;
  right: -150px;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(163, 34, 59, 0.2);
  border-radius: 50%;
  content: "";
}

.audience-visual.team-mode {
  background: #c3c9be;
}

.audience-visual.owner-mode {
  background: #c8b8b2;
}

.visual-topline {
  position: absolute;
  top: 30px;
  right: 38px;
  left: 38px;
  display: flex;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(24, 27, 25, 0.14);
  align-items: center;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visual-topline small {
  color: #73756f;
}

.visual-query {
  max-width: 510px;
  margin: 30px 0 26px;
  font-size: clamp(30px, 3.3vw, 51px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1.06;
}

.visual-answer {
  display: grid;
  max-width: 560px;
  margin-bottom: 30px;
  grid-template-columns: 26px 1fr;
  color: #50534f;
  font-size: 14px;
  line-height: 1.55;
}

.visual-answer p {
  margin: 0;
}

.suggestion-card {
  position: relative;
  z-index: 1;
  display: grid;
  padding: 10px 18px 10px 10px;
  border: 1px solid rgba(24, 27, 25, 0.11);
  border-radius: 14px;
  grid-template-columns: 91px 1fr auto;
  gap: 17px;
  align-items: center;
  background: rgba(253, 252, 248, 0.92);
  box-shadow: 0 14px 32px rgba(39, 34, 27, 0.09);
}

.suggestion-photo {
  position: relative;
  height: 78px;
  border-radius: 10px;
  overflow: hidden;
  background: #a6a18c;
}

.suggestion-photo span {
  position: absolute;
  top: 12px;
  left: 16px;
  width: 62px;
  height: 53px;
  border-radius: 50%;
  background: #e8e1d4;
  box-shadow: inset 0 0 0 5px #f4efe7;
}

.suggestion-photo i {
  position: absolute;
  top: 28px;
  left: 31px;
  width: 38px;
  height: 17px;
  border-radius: 50% 20%;
  background: #73493a;
  box-shadow: 8px 9px 0 -4px #a83c4d;
  transform: rotate(-8deg);
}

.suggestion-card small {
  display: block;
  margin-bottom: 6px;
  color: var(--wine);
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.suggestion-card strong {
  display: block;
  font-size: 13px;
}

.suggestion-card p {
  margin: 5px 0 0;
  color: #82837d;
  font-size: 9px;
}

.suggestion-card > b {
  color: var(--wine);
  font-size: 13px;
}

.trust-caption {
  display: flex;
  margin-top: 18px;
  align-items: center;
  gap: 8px;
  color: #686b65;
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.trust-caption span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3c7d54;
}

.product-heading {
  margin-bottom: 56px;
}

.workflow {
  display: grid;
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
  grid-template-columns: repeat(3, 1fr);
}

.workflow-step {
  min-width: 0;
  padding: 26px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.step-top {
  display: flex;
  margin-bottom: 42px;
  align-items: center;
  justify-content: space-between;
  color: #8d8f89;
  font-family: var(--mono);
  font-size: 9px;
}

.step-top i {
  color: var(--ink);
  font-size: 15px;
  font-style: normal;
}

.workflow-step h3 {
  margin: 34px 0 13px;
  font-size: 31px;
  font-weight: 500;
  letter-spacing: -0.045em;
}

.workflow-step > p {
  max-width: 340px;
  margin: 0;
  color: #72746e;
  font-size: 13px;
  line-height: 1.55;
}

.import-visual,
.verify-visual,
.serve-visual {
  position: relative;
  height: 210px;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(253, 252, 248, 0.56);
}

.document-sheet {
  position: absolute;
  width: 148px;
  height: 180px;
  border: 1px solid var(--line-dark);
  border-radius: 6px;
  background: var(--paper-bright);
  box-shadow: 0 14px 30px rgba(42, 37, 30, 0.08);
}

.sheet-back {
  top: 22px;
  left: calc(50% - 93px);
  transform: rotate(-7deg);
}

.sheet-front {
  top: 25px;
  left: calc(50% - 55px);
  padding: 25px 20px;
  transform: rotate(4deg);
}

.sheet-front span {
  display: block;
  width: 45px;
  height: 7px;
  margin-bottom: 22px;
  background: var(--wine);
}

.sheet-front i {
  display: block;
  height: 2px;
  margin-bottom: 14px;
  background: #d2d0c7;
}

.sheet-front i:nth-of-type(2) { width: 78%; }
.sheet-front i:nth-of-type(3) { width: 92%; }

.import-badge {
  position: absolute;
  right: 19px;
  bottom: 18px;
  padding: 10px 13px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.06em;
}

.verify-visual {
  display: flex;
  padding: 31px;
  justify-content: center;
  flex-direction: column;
}

.verify-row {
  display: flex;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
}

.verify-row i {
  padding: 5px 7px;
  border-radius: 999px;
  background: #e7eee6;
  color: var(--green);
  font-size: 7px;
  font-style: normal;
}

.verify-row:nth-child(2) i {
  background: var(--wine-soft);
  color: var(--wine);
}

.verify-cursor {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: flex;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: var(--wine);
  box-shadow: 0 9px 20px rgba(163, 34, 59, 0.25);
  color: white;
}

.workflow-step-accent {
  background: var(--wine);
  color: white;
}

.workflow-step-accent .step-top,
.workflow-step-accent .step-top i,
.workflow-step-accent > p {
  color: rgba(255, 255, 255, 0.66);
}

.serve-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.09);
}

.qr-mark {
  position: relative;
  display: grid;
  width: 92px;
  height: 92px;
  padding: 12px;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
  background: white;
}

.qr-mark span {
  border: 5px solid var(--ink);
}

.qr-mark span:nth-child(4) {
  border: 0;
  background: linear-gradient(90deg, var(--ink) 35%, transparent 35% 65%, var(--ink) 65%);
}

.qr-mark i {
  position: absolute;
  top: 39px;
  left: 39px;
  width: 14px;
  height: 14px;
  background: var(--wine);
}

.serve-rays i {
  position: absolute;
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.3);
  transform-origin: bottom;
}

.serve-rays i:nth-child(1) { top: 7px; left: 40%; transform: rotate(-25deg); }
.serve-rays i:nth-child(2) { top: 2px; left: 50%; }
.serve-rays i:nth-child(3) { top: 7px; right: 40%; transform: rotate(25deg); }

.serve-visual p {
  margin: 18px 0 0;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.signal-section {
  padding: 108px 0;
  background: #d8d3c6;
}

.signal-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 9vw;
  align-items: center;
}

.signal-copy h2 {
  font-size: clamp(44px, 4.6vw, 62px);
}

.signal-quote {
  display: grid;
  max-width: 490px;
  margin-top: 52px;
  padding-top: 25px;
  border-top: 1px solid rgba(24, 27, 25, 0.18);
  grid-template-columns: 40px 1fr;
}

.signal-quote > span {
  color: var(--wine);
  font-size: 39px;
  line-height: 0.8;
}

.signal-quote p {
  margin: 0;
  color: #484b47;
  font-size: 14px;
  font-style: italic;
  line-height: 1.55;
}

.insight-board {
  padding: 27px;
  border: 1px solid rgba(24, 27, 25, 0.13);
  border-radius: 22px;
  background: var(--paper-bright);
  box-shadow: var(--shadow);
}

.board-head {
  display: flex;
  margin-bottom: 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e4e2da;
  align-items: center;
  justify-content: space-between;
}

.board-head > div {
  display: flex;
  align-items: center;
  gap: 13px;
}

.board-head strong {
  font-size: 13px;
}

.board-head button {
  padding: 8px 11px;
  border: 1px solid #dfddd5;
  border-radius: 999px;
  background: transparent;
  color: #747670;
  font-size: 8px;
}

.roadmap-status {
  padding: 8px 11px;
  border: 1px solid #dfddd5;
  border-radius: 999px;
  color: #747670;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.metric-row {
  display: grid;
  margin-bottom: 16px;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.metric-row article {
  display: grid;
  min-height: 125px;
  padding: 20px;
  border-radius: 13px;
  background: #f0eee7;
}

.metric-row article:nth-child(2) {
  background: #f3e5e7;
}

.metric-row span,
.metric-row small {
  color: #7b7d77;
  font-size: 8px;
}

.evidence-row small {
  color: #747670;
  line-height: 1.4;
}

.metric-row strong {
  align-self: end;
  font-size: 31px;
  font-weight: 500;
  letter-spacing: -0.05em;
}

.metric-row small {
  margin-top: 5px;
  color: var(--green);
}

.question-chart {
  padding: 20px;
  border: 1px solid #e4e2da;
  border-radius: 13px;
}

.chart-title {
  display: flex;
  margin-bottom: 25px;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
}

.chart-title span {
  color: #95968f;
  font-size: 7px;
}

.bar-row {
  display: grid;
  margin-bottom: 15px;
  grid-template-columns: 145px 1fr 32px;
  gap: 13px;
  align-items: center;
  color: #676963;
  font-size: 8px;
}

.bar-row > div {
  height: 5px;
  border-radius: 999px;
  overflow: hidden;
  background: #ebe9e2;
}

.bar-row i {
  display: block;
  width: var(--bar);
  height: 100%;
  border-radius: inherit;
  background: var(--wine);
}

.bar-row b {
  color: var(--ink);
  font-size: 8px;
  text-align: right;
}

.roadmap-list {
  display: grid;
  gap: 0;
}

.roadmap-list .chart-title {
  margin-bottom: 8px;
}

.roadmap-row {
  display: grid;
  padding: 12px 0;
  border-top: 1px solid #e8e6df;
  grid-template-columns: 66px 1fr;
  gap: 13px;
  align-items: start;
}

.roadmap-row b {
  color: var(--wine);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.roadmap-row span {
  color: #62645f;
  font-size: 9px;
  line-height: 1.45;
}

.board-note {
  display: grid;
  margin-top: 14px;
  padding: 13px 15px;
  border-radius: 10px;
  grid-template-columns: 27px 1fr;
  align-items: center;
  background: #e7ece4;
  color: #5b6d5d;
  font-size: 8px;
}

.board-note span {
  color: var(--green);
}

.board-note p {
  margin: 0;
}

.pricing-section {
  padding: 76px 0;
  background: var(--paper-bright);
}

.pricing-heading {
  display: grid;
  margin-bottom: 40px;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 8vw;
}

.pricing-heading .section-number {
  margin-top: 38px;
}

.pricing-heading h2 {
  margin-bottom: 18px;
  font-size: clamp(42px, 4.4vw, 60px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.98;
}

.pricing-heading > div:last-child > p {
  max-width: 600px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.pricing-table-frame {
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 16px 44px rgba(35, 31, 25, 0.07);
}

.pricing-table-scroll {
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-color: var(--wine) transparent;
  scrollbar-width: thin;
}

.pricing-table {
  width: 100%;
  min-width: 820px;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
}

.pricing-table th,
.pricing-table td {
  padding: 14px 18px;
  border-top: 1px solid var(--line);
  vertical-align: middle;
  text-align: left;
}

.pricing-table th + th,
.pricing-table td + td {
  border-left: 1px solid var(--line);
}

.pricing-table thead th {
  height: 92px;
  padding-top: 18px;
  padding-bottom: 18px;
  border-top: 0;
  background: #f2efe7;
  vertical-align: bottom;
}

.pricing-table thead th:first-child,
.pricing-table tbody th {
  width: 26%;
}

.pricing-table thead th:not(:first-child) {
  position: relative;
}

.pricing-table thead th:not(:first-child)::before {
  position: absolute;
  top: 0;
  right: 18px;
  left: 18px;
  height: 3px;
  background: var(--wine);
  content: "";
}

.pricing-table thead th:nth-child(3),
.pricing-table tbody td:nth-child(3) {
  background: rgba(163, 34, 59, 0.035);
}

.pricing-table-label,
.plan-index {
  display: block;
  color: var(--wine);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-index {
  margin-bottom: 7px;
}

.pricing-table thead strong {
  display: block;
  font-size: clamp(20px, 1.75vw, 25px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.05;
}

.pricing-table tbody th {
  background: var(--paper);
  color: #5f615c;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.35;
  text-transform: uppercase;
}

.pricing-table tbody td {
  color: #3d403c;
  font-size: 13px;
  line-height: 1.35;
}

.table-answer {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.table-answer i {
  display: inline-grid;
  width: 20px;
  height: 20px;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  place-items: center;
  font-family: var(--mono);
  font-size: 10px;
  font-style: normal;
}

.table-answer.is-yes i {
  border-color: rgba(49, 95, 70, 0.25);
  background: #e5ece3;
  color: var(--green);
}

.table-answer.is-no {
  color: #858680;
}

.table-answer.is-no i {
  color: #9b9c96;
}

.table-answer.is-plus i {
  border-color: rgba(163, 34, 59, 0.24);
  background: var(--wine-soft);
  color: var(--wine);
}

.pricing-onboarding-row th,
.pricing-onboarding-row td,
.pricing-onboarding-row td:nth-child(3) {
  background: #eee6df;
}

.pricing-onboarding-row td strong {
  color: var(--wine-dark);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
}

.pricing-table tbody .pricing-subscription-row th,
.pricing-table tbody .pricing-subscription-row td {
  border-color: rgba(255, 255, 255, 0.11);
  background: #20231f;
  color: white;
}

.pricing-subscription-row td strong {
  display: inline-block;
  margin-right: 7px;
  color: white;
  font-size: clamp(22px, 2vw, 27px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}

.pricing-subscription-row td small {
  color: rgba(255, 255, 255, 0.56);
  font-size: 10px;
}

.pricing-subscription-row th {
  color: rgba(255, 255, 255, 0.58);
}

.pricing-annual-row th,
.pricing-annual-row td,
.pricing-annual-row td:nth-child(3) {
  background: #e5ece3;
}

.pricing-annual-row th > span,
.pricing-annual-row th > small,
.pricing-annual-row td > strong,
.pricing-annual-row td > small,
.pricing-annual-row .annual-saving {
  display: block;
}

.pricing-annual-row th > small {
  margin-top: 4px;
  color: var(--green);
  font-size: 8px;
  letter-spacing: 0;
  text-transform: none;
}

.pricing-annual-row td > strong {
  color: var(--green);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
}

.pricing-annual-row td > small {
  margin-top: 4px;
  color: #68736b;
  font-size: 9px;
}

.pricing-annual-row .annual-saving {
  margin-top: 8px;
  color: var(--green);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pricing-footer {
  display: flex;
  min-height: 54px;
  padding: 14px 18px;
  border-top: 1px solid var(--line-dark);
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
  background: var(--paper-bright);
}

.pricing-footer p {
  max-width: 570px;
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}

.final-cta {
  position: relative;
  padding: 118px 0;
  overflow: hidden;
  background: var(--wine);
  color: white;
}

.final-cta::after {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 75%, rgba(255, 255, 255, 0.1), transparent 52%);
  content: "";
}

.final-cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.final-cta .eyebrow {
  justify-content: center;
}

.final-cta .eyebrow > span {
  background: white;
}

.final-cta h2 {
  margin-bottom: 28px;
  font-size: clamp(58px, 6.7vw, 92px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.final-cta h2 em {
  color: #f2bdc7;
}

.final-cta-inner > p:not(.eyebrow) {
  max-width: 520px;
  margin: 0 auto 36px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.55;
}

.cta-line {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.cta-line-one {
  top: 50%;
  left: 50%;
  width: 950px;
  height: 950px;
  transform: translate(-50%, -50%);
}

.cta-line-two {
  top: 50%;
  left: 50%;
  width: 650px;
  height: 650px;
  transform: translate(-50%, -50%);
}

.site-footer {
  padding: 68px 0 0;
  background: #141715;
  color: white;
}

.footer-top {
  display: grid;
  padding-bottom: 68px;
  grid-template-columns: 1fr 1.25fr;
  gap: 8vw;
}

.footer-wordmark {
  margin-bottom: 25px;
  color: white;
  font-size: 54px;
}

.footer-top > div:first-child p {
  color: rgba(255, 255, 255, 0.42);
  font-size: 17px;
  line-height: 1.5;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links strong {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.35);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links a,
.footer-links button {
  width: fit-content;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  font-size: 12px;
}

.footer-links a:hover,
.footer-links button:hover {
  color: white;
}

.footer-links a[href^="mailto:"],
.legal-content a[href^="mailto:"],
.legal-footer a[href^="mailto:"] {
  overflow-wrap: anywhere;
}

.footer-links a[href^="mailto:"]:focus-visible,
.legal-content a[href^="mailto:"]:focus-visible,
.legal-footer a[href^="mailto:"]:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 4px;
}

.footer-bottom {
  display: flex;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.28);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-delay {
  transition-delay: 130ms;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  :root { --shell: min(100% - 44px, 1080px); }

  .desktop-nav { margin-left: 2vw; }
  .nav-actions { gap: 16px; }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: minmax(0, 0.88fr) minmax(440px, 0.92fr); gap: 38px; }
  .hero h1 { font-size: clamp(54px, 6.4vw, 74px); }
  .chat-window { min-height: 428px; }
  .knowledge-map { padding: 38px; gap: 35px; }
  .experience-intro { grid-template-columns: 0.48fr 1fr 0.55fr; gap: 35px; }
  .audience-copy { padding: 46px; }
  .audience-visual { padding: 36px; }
  .workflow-step { padding: 23px; }
  .pricing-heading { gap: 6vw; }
}

@media (max-width: 980px) {
  :root { --shell: min(100% - 36px, 860px); }

  .desktop-nav,
  .desktop-only { display: none; }

  .menu-toggle {
    display: flex;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(24, 27, 25, 0.16);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    background: transparent;
  }

  .menu-toggle span {
    width: 15px;
    height: 1px;
    background: var(--ink);
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3px) rotate(-45deg); }

  .mobile-menu {
    position: absolute;
    top: 72px;
    right: 18px;
    left: 18px;
    display: flex;
    padding: 18px;
    border: 1px solid rgba(24, 27, 25, 0.1);
    border-radius: 18px;
    flex-direction: column;
    gap: 3px;
    background: var(--paper-bright);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .mobile-menu.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .mobile-menu a { padding: 13px 10px; border-bottom: 1px solid #ebe9e1; font-size: 14px; }
  .mobile-menu .button { margin-top: 8px; color: white; }

  .hero { padding-top: 118px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .hero h1 { font-size: clamp(54px, 10vw, 72px); }
  .hero-lede { max-width: 680px; }
  .demo-stage { width: min(100%, 560px); margin: 40px auto 0; }
  .hero-footnote { margin-top: 54px; }

  .section-heading { grid-template-columns: 0.55fr 1.45fr; gap: 5vw; }
  .knowledge-map { grid-template-columns: 1fr 0.75fr 1fr; padding: 28px; gap: 20px; }
  .knowledge-card { padding: 12px; grid-template-columns: 26px 1fr 14px; }
  .output-card { padding: 14px; grid-template-columns: 36px 1fr; }
  .core-center strong { font-size: 13px; }
  .core-center small { display: none; }

  .experience-intro { grid-template-columns: 0.5fr 1.5fr; }
  .experience-intro > p:last-child { grid-column: 2; max-width: 520px; }
  .audience-panel { grid-template-columns: 1fr; }
  .audience-copy { padding: 48px; }
  .audience-visual { min-height: 460px; }

  .workflow { grid-template-columns: 1fr; border-left: 0; }
  .workflow-step { display: grid; min-height: 300px; padding: 28px; border-left: 1px solid var(--line-dark); grid-template-columns: 0.12fr 0.88fr 1fr; grid-template-rows: auto auto; gap: 0 26px; align-items: center; }
  .step-top { align-self: stretch; margin: 0; grid-row: 1 / 3; flex-direction: column; }
  .workflow-step > div:nth-child(2) { grid-column: 2; grid-row: 1 / 3; }
  .workflow-step h3 { align-self: end; margin-top: 0; }
  .workflow-step > p { align-self: start; }

  .signal-grid { grid-template-columns: 1fr; }
  .signal-copy { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 20px 50px; }
  .signal-copy .eyebrow { grid-row: 1 / 3; }
  .signal-copy .signal-quote { grid-column: 2; margin-top: 25px; }
  .insight-board { width: min(100%, 720px); margin: 30px auto 0; }

  .pricing-heading { grid-template-columns: 0.5fr 1.5fr; gap: 50px; }
  .pricing-table th, .pricing-table td { padding-inline: 18px; }

}

@media (max-width: 680px) {
  :root { --shell: calc(100% - 28px); }

  .nav-shell { height: 72px; }
  .wordmark { font-size: 29px; }
  .nav-actions > .demo-links { display: none; }
  .demo-links-mobile { display: grid; }
  .mobile-menu .button { display: flex; }

  .hero { padding-top: 104px; }
  .hero h1 { margin-bottom: 22px; font-size: clamp(46px, 13vw, 56px); line-height: 0.95; }
  .hero-lede { font-size: 15px; line-height: 1.5; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-proof { display: none; }
  .orbit-one { top: 300px; right: -360px; }
  .orbit-two { top: 390px; right: -250px; }

  .demo-stage { margin-top: 40px; }
  .demo-label { left: 14px; }
  .demo-frame { border-radius: 19px; }
  .demo-browserbar { grid-template-columns: 48px 1fr 48px; }
  .restaurant-head { padding: 20px 18px 17px; }
  .assistant-tabs { margin-inline: 18px; }
  .chat-window { min-height: 430px; padding: 19px 18px 15px; }
  .assistant-answer { padding-left: 0; }
  .guest-message { max-width: 91%; }
  .dish-card { grid-template-columns: 82px 1fr; }
  .chat-input { margin: 0 18px 20px; }
  .scenario-picker { display: block; margin: 15px 0 0; }
  .scenario-picker p { margin-bottom: 10px; }
  .scenario-buttons { display: grid; grid-template-columns: repeat(3, 1fr); }
  .scenario-buttons button { padding-inline: 5px; font-size: 7px; }
  .hero-footnote { grid-template-columns: 1fr auto; gap: 15px; font-size: 7px; }
  .hero-footnote p:first-of-type { display: none; }

  .promise-track { height: 60px; }
  .promise-track span { font-size: 16px; }
  .knowledge-section, .product-section { padding: 74px 0; }
  .pricing-section { padding: 54px 0; }

  .section-heading { display: block; margin-bottom: 42px; }
  .section-heading > div:first-child { display: flex; align-items: flex-start; justify-content: space-between; }
  .section-number { margin-top: 2px; }
  .section-heading h2, .pricing-heading h2, .signal-copy h2 { font-size: clamp(38px, 11vw, 46px); line-height: 1.02; }
  .section-heading > div:last-child > p, .pricing-heading > div:last-child > p, .signal-copy > p { font-size: 15px; }

  .knowledge-map { display: block; min-height: 0; padding: 18px; }
  .knowledge-core { width: 72%; margin: 40px auto; }
  .knowledge-card:hover { transform: none; }

  .experience-section { padding: 74px 0; }
  .experience-intro { display: block; margin-bottom: 46px; }
  .experience-intro h2 { margin-bottom: 22px; font-size: clamp(39px, 11vw, 48px); line-height: 1.02; }
  .experience-intro > p:last-child { font-size: 14px; }
  .audience-tabs button { padding-bottom: 16px; font-size: 11px; }
  .audience-tabs button + button { margin-left: 18px; }
  .audience-tabs button span { display: none; }
  .audience-panel { min-height: 0; }
  .audience-copy { padding: 34px 22px 38px; }
  .audience-copy h3 { font-size: 36px; }
  .audience-copy > p:nth-child(3) { margin-bottom: 26px; }
  .audience-visual { min-height: 430px; padding: 32px 20px 26px; }
  .visual-topline { top: 25px; right: 20px; left: 20px; }
  .visual-query { margin-top: 42px; font-size: 31px; }
  .suggestion-card { grid-template-columns: 67px 1fr auto; gap: 10px; padding-right: 10px; }
  .suggestion-photo { height: 65px; }
  .suggestion-photo span { top: 10px; left: 8px; width: 52px; height: 45px; }
  .suggestion-photo i { top: 25px; left: 18px; }
  .suggestion-card p { display: none; }

  .workflow { border-top: 0; }
  .workflow-step { display: block; min-height: 0; padding: 20px; border-top: 1px solid var(--line-dark); }
  .step-top { flex-direction: row; margin-bottom: 30px; }
  .import-visual, .verify-visual, .serve-visual { height: 205px; }
  .workflow-step h3 { margin-top: 27px; }

  .signal-section { padding: 74px 0; }
  .signal-copy { display: block; }
  .signal-copy .signal-quote { margin-top: 45px; }
  .insight-board { padding: 14px; }
  .metric-row { grid-template-columns: 1fr 1fr; }
  .metric-row article { min-height: 115px; padding: 14px; }
  .bar-row { grid-template-columns: 115px 1fr 28px; gap: 8px; }
  .board-note { line-height: 1.4; }

  .pricing-heading { display: block; margin-bottom: 30px; }
  .pricing-heading > div:first-child { display: flex; align-items: flex-start; justify-content: space-between; }
  .pricing-heading .section-number { margin: 2px 0 0; }
  .pricing-heading h2 { margin-top: 26px; }
  .pricing-table-frame { border-radius: 12px; }
  .pricing-table { min-width: 620px; }
  .pricing-table th, .pricing-table td { padding: 12px 11px; }
  .pricing-table thead th { height: 86px; }
  .pricing-table thead th:first-child, .pricing-table tbody th { width: 138px; }
  .pricing-table thead th:not(:first-child)::before { right: 11px; left: 11px; }
  .pricing-table thead strong { font-size: 17px; }
  .pricing-table thead th:first-child,
  .pricing-table tbody th { position: sticky; z-index: 2; left: 0; box-shadow: 12px 0 20px -20px rgba(24, 27, 25, 0.65); }
  .pricing-table thead th:first-child { z-index: 3; background: #f2efe7; }
  .pricing-onboarding-row th { background: #eee6df; }
  .pricing-subscription-row th { background: #20231f; }
  .pricing-onboarding-row td strong { font-size: 16px; }
  .pricing-subscription-row td strong { font-size: 19px; }
  .pricing-footer { min-height: 0; padding: 12px; align-items: stretch; flex-direction: column; gap: 12px; }
  .pricing-footer .button { width: 100%; }

  .final-cta { padding: 86px 0; }
  .final-cta h2 { font-size: clamp(44px, 13vw, 54px); }
  .final-cta-inner > p:not(.eyebrow) { font-size: 14px; }

  .site-footer { padding-top: 54px; }
  .footer-top { grid-template-columns: 1fr; padding-bottom: 48px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-links > div:last-child { display: none; }
  .footer-bottom { gap: 12px; flex-wrap: wrap; }
  .footer-bottom span:nth-child(2) { display: none; }

}

/* Legal pages */
.legal-site-header {
  border-bottom: 1px solid var(--line-dark);
  background: var(--canvas);
}

.legal-back {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
}

.legal-back span {
  color: var(--wine);
}

.legal-header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.legal-main {
  background: var(--paper-bright);
}

.legal-shell {
  width: var(--shell);
  margin: 0 auto;
}

.legal-hero {
  display: grid;
  padding: 112px 0 96px;
  border-bottom: 1px solid var(--line-dark);
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  column-gap: 9vw;
}

.legal-hero .eyebrow {
  grid-column: 1 / -1;
}

.legal-hero h1 {
  max-width: 780px;
  margin: 56px 0 0;
  font-size: 88px;
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

@media (min-width: 981px) {
  html[lang="ru"] .legal-hero h1 {
    font-size: clamp(60px, 5vw, 72px);
    letter-spacing: -0.055em;
  }
}

.legal-hero h1 em {
  color: var(--wine);
}

.legal-intro {
  align-self: end;
  padding-bottom: 4px;
}

.legal-intro > p:first-child {
  max-width: 490px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.legal-updated {
  margin: 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-layout {
  display: grid;
  padding: 92px 0 120px;
  grid-template-columns: 230px minmax(0, 800px);
  justify-content: space-between;
  gap: 80px;
}

.legal-toc {
  position: sticky;
  top: 28px;
  display: flex;
  height: fit-content;
  flex-direction: column;
  gap: 13px;
}

.legal-toc strong {
  margin-bottom: 12px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-toc a {
  width: fit-content;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.legal-toc a:hover,
.legal-content a:hover {
  color: var(--wine);
}

.legal-content section {
  padding: 0 0 68px;
  scroll-margin-top: 24px;
}

.legal-content section + section {
  padding-top: 68px;
  border-top: 1px solid var(--line-dark);
}

.legal-number {
  margin-bottom: 22px;
  color: var(--wine);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.legal-content h2 {
  max-width: 690px;
  margin-bottom: 28px;
  font-size: 42px;
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
}

.legal-content h3 {
  margin: 34px 0 12px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
}

.legal-content p,
.legal-content li {
  max-width: 720px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.legal-content p {
  margin-bottom: 20px;
}

.legal-content ul {
  display: grid;
  margin: 0 0 24px;
  padding-left: 20px;
  gap: 8px;
}

.legal-content a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: rgba(24, 27, 25, 0.28);
  text-underline-offset: 3px;
}

.storage-list {
  border-top: 1px solid var(--line-dark);
}

.storage-list article {
  padding: 28px 0 30px;
  border-bottom: 1px solid var(--line-dark);
}

.storage-list article > div:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.storage-list code {
  color: var(--ink);
  font-family: var(--mono);
  font-size: 13px;
}

.storage-list article > div:first-child span {
  flex: 0 0 auto;
  padding: 5px 9px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.storage-list article > p {
  margin: 18px 0 24px;
}

.storage-list dl {
  display: grid;
  margin: 0;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.storage-list dl div {
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.storage-list dt {
  margin-bottom: 6px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.storage-list dd {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
}

.legal-contact {
  padding-bottom: 0 !important;
}

.legal-footer {
  padding: 0;
  background: var(--ink);
  color: white;
}

.legal-footer-inner {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.04em;
}

.legal-footer nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.legal-footer-contact {
  display: flex;
  align-items: center;
  gap: 24px;
}

.legal-footer-contact a {
  color: rgba(255, 255, 255, 0.7);
}

.legal-footer a:hover,
.legal-footer a[aria-current="page"] {
  color: white;
}

@media (max-width: 980px) {
  .legal-hero {
    padding: 92px 0 78px;
    grid-template-columns: 1fr;
  }

  .legal-hero h1 {
    margin-top: 46px;
    font-size: 68px;
  }

  .legal-intro {
    max-width: 620px;
    margin-top: 50px;
  }

  .legal-layout {
    padding: 72px 0 100px;
    grid-template-columns: 1fr;
    gap: 68px;
  }

  .legal-toc {
    position: static;
    display: grid;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--line-dark);
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .legal-toc strong {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .legal-site-header .nav-shell {
    height: 72px;
  }

  .legal-header-actions {
    gap: 12px;
  }

  .legal-back {
    font-size: 12px;
  }

  .legal-hero {
    padding: 64px 0 58px;
  }

  .legal-hero h1 {
    max-width: 100%;
    margin-top: 36px;
    font-size: clamp(23px, 7.4vw, 48px);
    letter-spacing: 0;
    line-height: 0.94;
    overflow-wrap: anywhere;
    hyphens: none;
  }

  .legal-intro {
    margin-top: 38px;
  }

  .legal-intro > p:first-child {
    margin-bottom: 25px;
    font-size: 16px;
  }

  .legal-layout {
    padding: 52px 0 78px;
    gap: 52px;
  }

  .legal-toc {
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
  }

  .legal-content section {
    padding-bottom: 50px;
  }

  .legal-content section + section {
    padding-top: 50px;
  }

  .legal-content h2 {
    margin-bottom: 22px;
    font-size: 34px;
  }

  .legal-content p,
  .legal-content li {
    font-size: 15px;
    line-height: 1.68;
  }

  .storage-list article > div:first-child {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .storage-list code {
    max-width: 100%;
    font-size: 11px;
    overflow-wrap: anywhere;
  }

  .storage-list dl {
    grid-template-columns: 1fr;
  }

  .legal-footer-inner {
    padding: 28px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-footer nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 420px) {
  .legal-layout,
  .legal-toc,
  .legal-content {
    min-width: 0;
  }

  .legal-toc {
    grid-template-columns: 1fr;
  }

  .legal-toc a {
    overflow-wrap: anywhere;
  }

  .legal-content h2 {
    font-size: clamp(26px, 8vw, 34px);
    overflow-wrap: anywhere;
  }
}

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