:root {
  --ink: #103958;
  --navy: #0c2c43;
  --blue: #087fc5;
  --coral: #ff6453;
  --cream: #f8f6f0;
  --muted: #526778;
  --line: #dce3e6;
  --green: #236b57;
  --radius: 18px;
  --shell: 1240px;
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  color: var(--ink);
  background: var(--cream);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
button {
  cursor: pointer;
}
img {
  max-width: 100%;
  height: auto;
}
button:disabled {
  cursor: default;
}
a,
button,
input,
summary {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 5px;
}
button[hidden],
[hidden] {
  display: none !important;
}
.shell,
.section-shell {
  width: min(var(--shell), calc(100% - 96px));
  margin-inline: auto;
}
.section {
  padding-block: 112px;
}
.eyebrow {
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 1.8px;
  line-height: 1.7;
  text-transform: uppercase;
  margin: 0 0 22px;
  color: var(--blue);
}
.eyebrow.light {
  color: #9ecbe4;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-weight: 650;
}
h1 {
  font-size: clamp(48px, 5.5vw, 80px);
  line-height: 1.055;
  letter-spacing: -4px;
}
h2 {
  font-size: clamp(35px, 3.6vw, 52px);
  line-height: 1.12;
  letter-spacing: -2px;
  margin-bottom: 26px;
}
h3 {
  font-size: 23px;
  line-height: 1.25;
  letter-spacing: -0.6px;
  margin-bottom: 16px;
}
p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 22px;
}
em {
  font-style: normal;
  color: var(--coral);
}
.lead {
  font-size: 20px;
  line-height: 1.65;
}
.helper {
  font-size: 13px;
  line-height: 1.75;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-weight: 650;
  font-size: 14px;
  padding: 10px 0;
  background: transparent;
  border: 0;
  color: var(--ink);
}
.text-link span {
  font-size: 21px;
}
.text-link:hover {
  color: var(--blue);
}
.text-link.light {
  color: white;
}
.actions {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  border-radius: 7px;
  padding: 18px 25px;
  min-height: 52px;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid transparent;
  transition:
    transform 0.2s,
    background 0.2s;
  line-height: 1.3;
}
.button:hover {
  transform: translateY(-2px);
}
.button.navy,
.button.primary {
  background: var(--ink);
  color: #fff;
}
.button.coral {
  background: var(--coral);
  color: var(--navy);
}
.button.cream {
  background: var(--cream);
  color: var(--ink);
}
.button.small {
  padding: 12px 18px;
  min-height: 44px;
}
.button:disabled {
  background: var(--green);
  color: white;
  transform: none;
}
.skip-link {
  position: fixed;
  top: -90px;
  left: 20px;
  padding: 15px;
  background: white;
  z-index: 100;
}
.skip-link:focus {
  top: 12px;
}
.site-header {
  height: 88px;
  background: var(--cream);
  position: relative;
  z-index: 20;
  border-bottom: 1px solid rgba(16, 57, 88, 0.08);
}
.header-inner {
  width: min(var(--shell), calc(100% - 96px));
  margin: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: 150px;
}
.brand img {
  display: block;
  width: 150px;
}
#site-navigation {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 13px;
  font-weight: 600;
}
#site-navigation > a {
  padding: 18px 0;
}
#site-navigation > a:hover,
#site-navigation > a[aria-current] {
  color: var(--blue);
}
.nav-actions {
  display: flex;
  gap: 26px;
  align-items: center;
  margin-left: 30px;
}
.menu-toggle {
  display: none;
}
.hero {
  background: var(--navy);
  color: white;
  overflow: hidden;
  position: relative;
}
.hero:before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 84% 40%, #134d6b 0, transparent 50%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  gap: 65px;
  align-items: center;
  padding-block: 90px 76px;
}
.hero h1 {
  max-width: 660px;
  margin-bottom: 28px;
}
.hero h1 em {
  display: block;
}
.hero-lead {
  color: #f5f7f9;
  font-size: 21px;
  max-width: 495px;
  line-height: 1.6;
}
.hero-detail {
  color: #a9c0cf;
  max-width: 475px;
  font-size: 16px;
  margin-bottom: 32px;
}
.hero-note {
  font-size: 12px;
  color: #91adbf;
  margin: 23px 0 0;
  max-width: 420px;
}
.live-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
  margin-right: 9px;
  box-shadow: 0 0 0 5px #ff645317;
}
.hero-bottom {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  border-top: 1px solid #ffffff20;
  padding-block: 25px;
  color: #b0c3d0;
  font-size: 13px;
}
.hero-bottom > span {
  font-size: 10px;
  letter-spacing: 1.1px;
}
.hero-bottom i {
  font-style: normal;
  color: #5086a4;
  padding: 0 11px;
}
.signal-scene {
  position: relative;
  padding: 26px 22px 16px;
  background: linear-gradient(150deg, #ffffff0d, #ffffff02);
  border: 1px solid #ffffff20;
  border-radius: 22px;
  box-shadow: 0 35px 85px #00192a55;
  transform: rotate(-2deg);
}
.scene-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 32px;
}
.scene-label {
  font-size: 9px;
  letter-spacing: 1.5px;
  color: #8cb3cd;
  font-weight: 650;
}
.scene-pulse {
  font-size: 10px;
  color: #adc9d9;
}
.scene-pulse:before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #78d9b1;
  margin-right: 6px;
}
.message-stack {
  padding-inline: 15px;
}
.incoming-card {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #183e55;
  border: 1px solid #386078;
  border-radius: 10px;
  padding: 18px 14px;
  font-size: 12px;
  color: #c2d2db;
  line-height: 1.6;
}
.incoming-card.ghost {
  margin: 0 14px;
  padding: 13px;
  font-size: 10px;
  opacity: 0.58;
}
.incoming-card.main-message {
  background: #f9faf7;
  color: var(--ink);
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 25px #00162450;
}
.incoming-card.main-message b {
  font-size: 13px;
}
.channel-tag {
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.9px;
  padding: 5px 7px;
  background: #ffffff10;
  border: 1px solid #ffffff20;
  border-radius: 4px;
}
.coral-tag {
  background: #ffe3db;
  color: #a5372f;
  border-color: #f8cdc1;
}
.message-time {
  margin-left: auto;
  align-self: flex-start;
  font-size: 10px;
  color: #7890a0;
}
.signal-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  height: 90px;
}
.signal-connector > span {
  height: 1px;
  background: linear-gradient(90deg, transparent, #4f819c);
  width: 65px;
}
.signal-connector > span:last-child {
  transform: rotate(180deg);
}
.ai-core {
  font-size: 39px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -4px;
  border: 1px solid #51768e;
  border-radius: 50%;
  height: 57px;
  width: 57px;
  text-align: center;
  padding-top: 5px;
  background: #0d3046;
  box-shadow:
    0 0 0 8px #8fbede08,
    0 0 0 17px #8fbede04;
}
.ai-core span {
  color: var(--coral);
}
.interpretation {
  text-align: center;
  padding-bottom: 25px;
}
.interpretation strong {
  display: block;
  margin: 12px 0 15px;
  font-size: 23px;
  letter-spacing: -0.5px;
}
.interpretation strong > span {
  color: #53778f;
  padding-inline: 5px;
}
.pills {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.pills > span {
  font-size: 10px;
  background: #ffffff08;
  border: 1px solid #ffffff13;
  border-radius: 20px;
  padding: 6px 9px;
  color: #9ab5c6;
}
.pills .fault-pill {
  color: #ffb2a4;
  background: #ff64531a;
  border-color: #ff645329;
}
.owner-card {
  display: flex;
  align-items: center;
  gap: 13px;
  background: #fff;
  border-radius: 11px;
  padding: 20px;
  color: var(--ink);
  box-shadow: 0 7px 20px #00101f30;
  transform: translateX(13px) rotate(2deg);
}
.owner-avatar {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #e5eee9;
  font-weight: 650;
  color: var(--green);
}
.owner-card strong {
  display: block;
  font-size: 16px;
  margin: 5px 0;
}
.owner-card small {
  display: block;
  font-size: 10px;
  color: #648073;
}
.owner-card div > span {
  color: var(--green);
  font-weight: 750;
  font-size: 8px;
  letter-spacing: 1.2px;
}
.owner-check {
  margin-left: auto;
  color: var(--green);
  font-size: 21px;
}
.illustration-label {
  margin: 20px 0 0;
  text-align: center;
  font-size: 9px;
  color: #7296ad;
  letter-spacing: 0.5px;
}
.section-heading {
  max-width: 720px;
  margin-bottom: 50px;
}
.section-heading > p:last-child {
  max-width: 610px;
  font-size: 18px;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
}
.problem-grid article {
  padding-top: 26px;
  border-top: 2px solid var(--coral);
}
.number {
  font-size: 10px;
  letter-spacing: 1.4px;
  font-weight: 750;
  display: block;
  margin-bottom: 29px;
  color: var(--blue);
}
.problem-grid p {
  font-size: 15px;
  margin: 0;
}
.response-section {
  background: #e9eff1;
  padding: 105px 0;
}
.response-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 110px;
  align-items: center;
}
.response-grid > div > p {
  max-width: 445px;
}
.demo-invitation {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 28px;
}
.demo-invitation > span {
  font-size: 43px;
  color: var(--coral);
  transform: rotate(20deg);
}
.demo-invitation p {
  font-size: 12px;
  line-height: 1.6;
  margin: 0;
}
.demo-invitation strong {
  font-weight: 550;
}
.demo-panel {
  background: white;
  border: 1px solid #d8e2e7;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 22px 50px #1039580c;
}
.demo-heading {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  align-items: center;
}
.demo-heading .eyebrow {
  font-size: 9px;
  margin: 0 0 9px;
}
.demo-heading h3 {
  margin-bottom: 0;
}
.status {
  font-size: 10px;
  white-space: nowrap;
  font-weight: 600;
  padding: 7px 9px;
  border-radius: 30px;
}
.status.fault {
  background: #fff0e9;
  color: #b54936;
}
.status.healthy {
  background: #e5f3ec;
  color: var(--green);
}
.demo-message {
  font-size: 13px;
  margin: 19px 0 23px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.escalation-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.escalation-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  padding-bottom: 27px;
}
.escalation-list li:not(:last-child):before {
  content: '';
  width: 1px;
  height: calc(100% - 36px);
  background: #d6e3ec;
  position: absolute;
  left: 18px;
  top: 39px;
}
.step-icon {
  background: #edf4f7;
  flex-shrink: 0;
  width: 37px;
  height: 37px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  color: var(--blue);
}
.escalation-list b {
  font-size: 13px;
  display: block;
  margin-bottom: 4px;
}
.escalation-list small {
  font-size: 10px;
  color: #6b8190;
  display: block;
}
.step-state {
  margin-left: auto;
  font-size: 10px;
  color: var(--blue);
  white-space: nowrap;
}
.future {
  opacity: 0.48;
}
.response-preview {
  background: #edf3f6;
  padding: 16px;
  border-radius: 8px;
  margin-top: 3px;
}
.response-preview strong,
.response-preview small {
  display: block;
}
.response-preview strong {
  font-size: 13px;
}
.response-preview small {
  font-size: 11px;
  color: var(--muted);
  margin-top: 6px;
}
.demo-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 17px;
}
.demo-actions > .button {
  flex: 1;
  font-size: 12px;
  padding: 14px;
  min-height: 46px;
}
.demo-actions > .text-link {
  font-size: 11px;
}
.demo-footnote {
  font-size: 10px;
  margin: 16px 0 0;
  text-align: center;
}
.ai-section {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 90px;
  align-items: center;
}
.ai-intro .lead {
  max-width: 520px;
  font-size: 18px;
}
.blue-text {
  color: var(--blue);
}
.translation-panel {
  background: white;
  padding: 29px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.translation-source {
  border-left: 2px solid var(--coral);
  padding-left: 22px;
}
.translation-source .eyebrow {
  font-size: 9px;
  margin-bottom: 15px;
}
.translation-source p {
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 8px;
}
.translation-divider {
  font-size: 10px;
  color: #6b8494;
  display: flex;
  gap: 13px;
  align-items: center;
  padding-block: 25px;
}
.translation-divider span {
  font-size: 23px;
  color: var(--blue);
}
.asset-row {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding: 19px 0;
}
.asset-icon {
  font-size: 25px;
  color: var(--blue);
}
.asset-row b {
  display: block;
  font-size: 13px;
}
.asset-row small {
  font-size: 10px;
  display: block;
  color: #728592;
  margin-top: 5px;
}
.state-chip {
  display: inline-block;
  background: #edf4f7;
  color: #54728a;
  padding: 6px 9px;
  border-radius: 5px;
  font-size: 9px;
  white-space: nowrap;
}
.asset-row .state-chip {
  margin-left: auto;
}
.green {
  background: #e9f3ed;
  color: #326d55;
}
.red {
  background: #fff0eb;
  color: #b64438;
}
.translation-panel > .helper {
  margin: 10px 0 0;
  font-size: 11px;
}
.value-band {
  background: var(--navy);
  color: white;
  padding: 105px 0;
  position: relative;
  overflow: hidden;
}
.value-band:after {
  content: '';
  width: 650px;
  height: 650px;
  border: 1px solid #ffffff10;
  border-radius: 50%;
  position: absolute;
  right: -160px;
  top: -190px;
  box-shadow:
    0 0 0 65px #ffffff03,
    0 0 0 130px #ffffff02;
  pointer-events: none;
}
.value-band h2 {
  font-size: clamp(45px, 6vw, 83px);
  line-height: 1.07;
  letter-spacing: -3px;
}
.value-bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  position: relative;
  z-index: 1;
}
.value-bottom p {
  color: #afc3d0;
  max-width: 560px;
  font-size: 17px;
  margin: 8px 0 0;
}
.split-heading {
  max-width: none;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 60px;
}
.split-heading > p:last-child {
  max-width: 380px;
  font-size: 16px;
  margin-bottom: 30px;
}
.use-case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}
.use-case {
  padding: 42px;
  border-radius: 12px;
  background: #e9eee7;
  transition: transform 0.2s;
}
.use-case:hover {
  transform: translateY(-5px);
}
.use-symbol {
  font-size: 48px;
  color: var(--green);
  display: block;
  margin-bottom: 35px;
  font-weight: 300;
}
.use-case .number {
  color: #527063;
  margin-bottom: 18px;
}
.use-case h3 {
  font-size: 31px;
  letter-spacing: -1px;
  line-height: 1.25;
}
.use-case p {
  max-width: 400px;
  font-size: 15px;
}
.dark-case {
  background: #dfeaf0;
}
.dark-case .use-symbol,
.dark-case .number {
  color: var(--blue);
}
.essentials {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.feature-list article {
  padding: 0 0 26px;
  margin-bottom: 27px;
  border-bottom: 1px solid var(--line);
}
.feature-list article:last-child {
  margin: 0;
  border: 0;
}
.feature-list h3 {
  font-size: 21px;
}
.feature-list p {
  font-size: 15px;
  margin: 0;
}
.faq-section {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 90px;
  padding-top: 35px;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  padding: 24px 35px 24px 0;
  list-style: none;
  position: relative;
  line-height: 1.6;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary:after {
  content: '+';
  position: absolute;
  right: 0;
  top: 25px;
  font-size: 22px;
  color: var(--blue);
  font-weight: 400;
}
.faq-list details[open] summary:after {
  content: '−';
}
.faq-list details p {
  font-size: 14px;
  padding-right: 20px;
  margin: 0 0 25px;
}
.cta-section {
  background: var(--coral);
  padding: 75px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
.cta-section .eyebrow {
  color: #733027;
}
.cta-section h2 {
  font-size: 53px;
  margin: 0;
  letter-spacing: -2px;
}
.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 8px;
}
.cta-actions p {
  font-size: 12px;
  color: #713b32;
  margin: 5px 0 0;
}
.site-footer {
  padding: 65px 0 25px;
  background: #f8f6f0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 70px;
  padding-bottom: 55px;
}
.footer-top img {
  display: block;
  max-width: 150px;
}
.footer-top p {
  font-size: 13px;
  margin: 18px 0 0;
}
.footer-top nav {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: start;
  font-size: 13px;
}
.footer-top nav > span {
  font-size: 9px;
  color: #7a8b97;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}
.footer-top nav a:hover {
  text-decoration: underline;
}
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 23px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 10px;
  color: #7a8b97;
}
.footer-bottom p {
  font-size: 10px;
  margin: 0;
}
.service-note {
  font-size: 10px;
  color: #7a8b97;
  max-width: 900px;
  margin: 12px 0 0;
  line-height: 1.7;
}
.inner-hero {
  padding-block: 85px 70px;
  border-bottom: 1px solid var(--line);
}
.inner-hero h1 {
  font-size: clamp(43px, 5.2vw, 75px);
  max-width: 1080px;
}
.inner-hero h1 em {
  color: var(--blue);
}
.inner-hero .lead {
  max-width: 700px;
  margin-bottom: 28px;
}
.process-section {
  padding-top: 15px;
}
.process-row {
  display: grid;
  grid-template-columns: 65px 1fr 1fr;
  gap: 45px;
  padding-block: 70px;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.process-number {
  align-self: start;
  font-size: 28px;
  color: var(--coral);
  letter-spacing: -1px;
  padding-top: 4px;
}
.process-row h2 {
  font-size: 37px;
  letter-spacing: -1.5px;
}
.process-row p {
  font-size: 15px;
}
.connection-visual,
.instruction-example,
.mini-plan,
.history-visual {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 14px;
  padding: 30px;
  margin-left: 25px;
}
.connection-visual > div {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.connection-visual span,
.connection-visual b {
  display: block;
}
.connection-visual span {
  font-size: 9px;
  letter-spacing: 1px;
  color: var(--blue);
  margin-bottom: 7px;
}
.connection-visual b {
  font-size: 14px;
}
.connection-visual .connection-target {
  border: 0;
  color: var(--blue);
  padding-bottom: 0;
  font-weight: 650;
}
.instruction-example {
  background: var(--ink);
  color: white;
  border: 0;
}
.instruction-example .eyebrow {
  color: #9cbad0;
  font-size: 9px;
}
.instruction-example blockquote {
  font-size: 21px;
  line-height: 1.6;
  letter-spacing: -0.5px;
  margin: 0 0 25px;
}
.instruction-example .state-chip {
  background: #ffffff15;
  color: #9abccf;
}
.mini-plan > div {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 7px 15px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.mini-plan > div:last-child {
  border: 0;
}
.mini-plan span {
  grid-row: span 2;
  background: #eaf2f7;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 13px;
  width: 32px;
  height: 32px;
  color: var(--blue);
}
.mini-plan b {
  font-size: 14px;
}
.mini-plan small {
  font-size: 11px;
  color: #718697;
}
.history-visual > div {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-block: 20px;
  border-bottom: 1px solid var(--line);
}
.history-visual time {
  font-size: 11px;
  color: #7890a0;
}
.history-visual b {
  font-size: 12px;
}
.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}
.red-dot {
  background: var(--coral);
}
.green-dot {
  background: #408467;
}
.history-visual p {
  font-size: 10px;
  margin: 20px 0 0;
}
.soft-section {
  background: #eaf0f2;
}
.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}
.two-column > .lead {
  max-width: 500px;
}
.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 16px;
  overflow: hidden;
}
.comparison article {
  padding: 50px;
}
.comparison h2 {
  font-size: 36px;
  letter-spacing: -1.5px;
}
.comparison p {
  font-size: 15px;
  margin-bottom: 0;
}
.broadcast {
  background: #e9e7e1;
}
.tiered {
  background: var(--navy);
  color: white;
}
.tiered p {
  color: #b3c9d7;
}
.people-row,
.tier-line {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 30px 0;
}
.people-row span,
.tier-line span {
  width: 49px;
  height: 49px;
  border: 1px solid #c6cecf;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f4f3ef;
  color: #72838b;
  font-size: 14px;
}
.tier-line span {
  background: #234f64;
  color: #c4e7dd;
  border-color: #487986;
}
.tier-line i {
  color: #78a1b4;
  font-style: normal;
}
.tier-line .quiet-person {
  opacity: 0.35;
}
.note-box {
  padding: 25px;
  border-left: 3px solid var(--coral);
  background: #eeeee8;
  margin-top: 30px;
}
.note-box b {
  font-size: 15px;
}
.note-box p {
  font-size: 13px;
  margin: 10px 0 0;
}
.calculator {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 16px;
  overflow: hidden;
  background: white;
}
.calculator-inputs {
  padding: 35px 40px;
}
.calculator-inputs label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 22px;
  line-height: 1.6;
}
.calculator-inputs input {
  display: block;
  border: 1px solid #c9d7df;
  border-radius: 6px;
  padding: 13px;
  font-size: 18px;
  width: 100%;
  color: var(--ink);
  margin-top: 10px;
}
.calculator-result {
  padding: 40px;
  background: var(--ink);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.calculator-result > span {
  font-size: 10px;
  letter-spacing: 1.5px;
  color: #a5c5d7;
}
.calculator-result strong {
  font-size: 66px;
  letter-spacing: -2px;
  margin: 20px 0;
}
.calculator-result p {
  color: #d0dce3;
  font-size: 15px;
}
.calculator-result small {
  font-size: 11px;
  color: #a7bdcb;
  line-height: 1.7;
}
.three-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
}
.three-features article {
  border-top: 2px solid var(--blue);
  padding-top: 26px;
}
.three-features p {
  font-size: 15px;
}
.application-section {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 70px;
}
.application-label .use-symbol {
  margin-bottom: 20px;
}
.application-content > .lead {
  max-width: 650px;
}
.application-cases {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 45px;
}
.application-cases article {
  border-top: 1px solid var(--line);
  padding-top: 25px;
}
.application-cases h3 {
  font-size: 21px;
}
.application-cases p {
  font-size: 15px;
}
.dark-section {
  background: var(--navy);
  color: white;
}
.dark-section p {
  color: #acc5d4;
}
.dark-section .use-symbol {
  color: #ff9886;
}
.dark-section .application-cases article {
  border-color: #ffffff25;
}
.check-list {
  list-style: none;
  margin: 28px 0;
  padding: 0;
}
.check-list li {
  font-size: 15px;
  line-height: 1.6;
  padding: 13px 0 13px 30px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.check-list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
}
@media (min-width: 1500px) {
  .hero-grid {
    padding-block: 105px 90px;
  }
  .hero h1 {
    font-size: 81px;
  }
}
@media (max-width: 1100px) {
  .shell,
  .section-shell,
  .header-inner {
    width: calc(100% - 64px);
  }
  .header-inner {
    gap: 20px;
  }
  #site-navigation {
    gap: 20px;
  }
  .nav-actions {
    margin-left: 10px;
    gap: 20px;
  }
  .hero-grid {
    gap: 35px;
  }
  .hero h1 {
    letter-spacing: -2.8px;
  }
  .hero-lead {
    font-size: 19px;
  }
  .hero-grid > .signal-scene {
    padding: 20px 15px;
  }
  .owner-card {
    padding: 15px;
    transform: translateX(7px) rotate(2deg);
  }
  .owner-card strong {
    font-size: 14px;
  }
  .interpretation strong {
    font-size: 20px;
  }
  .response-grid,
  .ai-section {
    gap: 55px;
  }
  .process-row {
    grid-template-columns: 40px 1fr 1fr;
    gap: 28px;
  }
  .connection-visual,
  .instruction-example,
  .mini-plan,
  .history-visual {
    margin-left: 0;
    padding: 22px;
  }
  .application-section {
    grid-template-columns: 170px 1fr;
    gap: 40px;
  }
  .hero-bottom > span {
    max-width: 190px;
    line-height: 1.6;
  }
  .hero-bottom div {
    font-size: 11px;
  }
  .problem-grid {
    gap: 28px;
  }
}
@media (max-width: 850px) {
  .site-header {
    height: 76px;
  }
  .brand,
  .brand img {
    width: 135px;
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    width: 44px;
    height: 44px;
    border: 1px solid #cad5dc;
    background: transparent;
    border-radius: 7px;
    padding: 11px;
  }
  .menu-toggle span {
    display: block;
    height: 1px;
    background: var(--ink);
    width: 20px;
  }
  #site-navigation {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    padding: 24px 32px 32px;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 25px #10395815;
    align-items: stretch;
    gap: 4px;
  }
  #site-navigation.open {
    display: flex;
    flex-direction: column;
  }
  #site-navigation > a {
    padding: 12px 0;
  }
  .nav-actions {
    margin: 15px 0 0;
    justify-content: space-between;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 55px;
    padding-block: 65px 45px;
  }
  .hero-copy {
    max-width: 650px;
  }
  .hero h1 {
    font-size: 68px;
    max-width: 620px;
  }
  .hero-detail {
    max-width: 560px;
  }
  .signal-scene {
    max-width: 520px;
    width: 100%;
    justify-self: center;
  }
  .hero-bottom {
    flex-direction: column;
    align-items: start;
    gap: 12px;
  }
  .hero-bottom > span {
    max-width: none;
  }
  .hero-bottom div {
    font-size: 13px;
  }
  .section {
    padding-block: 80px;
  }
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .problem-grid article {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 0 35px;
  }
  .problem-grid .number {
    grid-column: 1 / -1;
    margin-bottom: 20px;
  }
  .problem-grid h3 {
    font-size: 25px;
  }
  .response-grid,
  .ai-section,
  .essentials,
  .faq-section,
  .two-column {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .response-grid > div > p {
    max-width: 620px;
  }
  .response-section {
    padding: 80px 0;
  }
  .demo-invitation {
    display: none;
  }
  .demo-panel {
    max-width: 600px;
    width: 100%;
    justify-self: center;
  }
  .ai-intro .lead {
    max-width: 620px;
  }
  .translation-panel {
    max-width: 600px;
    width: 100%;
    justify-self: center;
  }
  .value-band {
    padding: 80px 0;
  }
  .value-bottom {
    align-items: start;
    flex-direction: column;
    gap: 30px;
  }
  .value-band h2 {
    font-size: 64px;
  }
  .split-heading {
    display: block;
  }
  .split-heading > p:last-child {
    max-width: 600px;
  }
  .use-case {
    padding: 30px;
  }
  .use-case h3 {
    font-size: 26px;
  }
  .use-case .text-link {
    font-size: 12px;
  }
  .faq-section {
    padding-top: 0;
  }
  .cta-inner {
    gap: 35px;
  }
  .cta-section h2 {
    font-size: 39px;
  }
  .footer-top {
    gap: 35px;
    grid-template-columns: 1.1fr 1fr 1fr;
  }
  .footer-top nav {
    font-size: 12px;
  }
  .footer-bottom {
    font-size: 9px;
  }
  .inner-hero {
    padding-block: 60px;
  }
  .inner-hero h1 {
    font-size: 57px;
    letter-spacing: -2px;
  }
  .process-row {
    grid-template-columns: 40px 1fr;
    gap: 20px 25px;
    padding-block: 50px;
  }
  .process-row > div:last-child {
    grid-column: 2;
    max-width: 560px;
  }
  .process-row h2 {
    font-size: 35px;
  }
  .comparison article {
    padding: 30px;
  }
  .comparison h2 {
    font-size: 30px;
  }
  .three-features {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .calculator-inputs,
  .calculator-result {
    padding: 30px;
  }
  .calculator-result strong {
    font-size: 50px;
  }
  .application-section {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .application-label {
    display: flex;
    gap: 25px;
    align-items: center;
  }
  .application-label .eyebrow {
    margin: 0;
  }
  .application-label .use-symbol {
    font-size: 34px;
    margin: 0;
  }
}
@media (max-width: 540px) {
  .shell,
  .section-shell,
  .header-inner {
    width: calc(100% - 40px);
  }
  .section {
    padding-block: 62px;
  }
  .hero-grid {
    padding-top: 52px;
    gap: 43px;
  }
  .hero h1 {
    font-size: 49px;
    letter-spacing: -2px;
  }
  .hero-lead {
    font-size: 19px;
  }
  .hero-detail {
    font-size: 15px;
  }
  .eyebrow {
    font-size: 9px;
    letter-spacing: 1.4px;
    margin-bottom: 19px;
  }
  .hero-note {
    font-size: 11px;
  }
  .actions {
    gap: 12px 24px;
  }
  .button {
    font-size: 13px;
    padding: 16px 20px;
  }
  .hero-bottom div {
    font-size: 11px;
    line-height: 2;
  }
  .hero-bottom i {
    padding: 0 6px;
  }
  .signal-scene {
    transform: none;
  }
  .owner-card {
    transform: none;
    padding: 15px 12px;
    gap: 10px;
  }
  .owner-avatar {
    width: 33px;
    height: 33px;
  }
  .owner-card strong {
    font-size: 13px;
  }
  .owner-card small {
    font-size: 9px;
  }
  .scene-label {
    font-size: 8px;
    letter-spacing: 1px;
  }
  .scene-pulse {
    font-size: 9px;
  }
  .message-stack {
    padding-inline: 0;
  }
  .incoming-card.main-message {
    padding: 15px 10px;
  }
  .incoming-card.ghost {
    margin-inline: 6px;
    font-size: 9px;
  }
  .interpretation strong {
    font-size: 20px;
  }
  .owner-check {
    font-size: 17px;
  }
  h2 {
    font-size: 34px;
    letter-spacing: -1.3px;
  }
  .lead {
    font-size: 18px;
  }
  .section-heading > p:last-child {
    font-size: 16px;
  }
  .problem-grid article {
    display: block;
  }
  .problem-grid h3 {
    font-size: 24px;
  }
  .problem-grid p {
    font-size: 15px;
  }
  .response-section {
    padding: 62px 0;
  }
  .demo-panel {
    padding: 22px 18px;
  }
  .demo-heading h3 {
    font-size: 21px;
  }
  .status {
    font-size: 9px;
    padding: 6px 8px;
  }
  .escalation-list li {
    gap: 10px;
  }
  .escalation-list b {
    font-size: 12px;
  }
  .escalation-list small {
    font-size: 9px;
  }
  .step-state {
    font-size: 9px;
  }
  .demo-actions {
    gap: 10px;
  }
  .translation-panel {
    padding: 23px 18px;
  }
  .translation-source {
    padding-left: 15px;
  }
  .translation-source p {
    font-size: 13px;
  }
  .asset-row {
    gap: 9px;
  }
  .asset-row small {
    font-size: 9px;
  }
  .asset-row .state-chip {
    font-size: 8px;
    padding: 6px;
  }
  .value-band {
    padding: 65px 0;
  }
  .value-band h2 {
    font-size: 47px;
    letter-spacing: -2px;
  }
  .value-bottom p {
    font-size: 15px;
  }
  .use-case-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .use-case {
    padding: 30px;
  }
  .use-symbol {
    margin-bottom: 25px;
  }
  .use-case h3 {
    font-size: 29px;
  }
  .faq-list summary {
    font-size: 15px;
  }
  .faq-section {
    padding-top: 5px;
  }
  .cta-inner {
    flex-direction: column;
    align-items: start;
    gap: 30px;
  }
  .cta-section {
    padding: 55px 0;
  }
  .cta-section h2 {
    font-size: 39px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 35px 20px;
  }
  .footer-top > div {
    grid-column: 1/-1;
  }
  .footer-top nav {
    font-size: 11px;
  }
  .footer-top nav > span {
    font-size: 8px;
    letter-spacing: 1px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    padding-top: 20px;
  }
  .site-footer {
    padding-top: 40px;
  }
  .service-note {
    font-size: 9px;
  }
  .inner-hero {
    padding-top: 50px;
    padding-bottom: 45px;
  }
  .inner-hero h1 {
    font-size: 41px;
    letter-spacing: -1.6px;
  }
  .inner-hero .lead {
    font-size: 17px;
  }
  .process-row {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-block: 40px;
  }
  .process-row > div:last-child {
    grid-column: 1;
  }
  .process-number {
    font-size: 22px;
  }
  .process-row h2 {
    font-size: 32px;
  }
  .instruction-example blockquote {
    font-size: 20px;
  }
  .comparison {
    grid-template-columns: 1fr;
  }
  .comparison article {
    padding: 32px 26px;
  }
  .comparison h2 {
    font-size: 33px;
  }
  .calculator {
    grid-template-columns: 1fr;
  }
  .calculator-inputs,
  .calculator-result {
    padding: 27px;
  }
  .calculator-result strong {
    font-size: 55px;
  }
  .application-cases {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .application-cases p {
    margin-bottom: 0;
  }
  .check-list li {
    font-size: 14px;
  }
  .three-features h3 {
    font-size: 22px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
}
.legal-page {
  max-width: 920px;
  padding-top: 65px;
  padding-bottom: 80px;
}
.legal-page h1 {
  font-size: clamp(36px, 6vw, 60px);
  letter-spacing: -2px;
  margin: 20px 0;
}
.legal-intro {
  font-size: 20px;
  line-height: 1.6;
  color: #49667d;
}
.legal-date {
  font-size: 14px;
  color: #597184;
}
.legal-summary {
  padding: 20px;
  background: #eef6fc;
  border: 1px solid #dbe8f1;
  border-radius: 12px;
  margin: 28px 0 40px;
  line-height: 1.8;
  overflow-wrap: anywhere;
}
.legal-page article {
  font-size: 16px;
  line-height: 1.85;
  color: #344f64;
}
.legal-page article h2 {
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: -0.5px;
  margin: 36px 0 12px;
  color: #103958;
}
.legal-page article p {
  margin: 12px 0;
}
.legal-page article ul {
  padding-left: 24px;
}
.legal-page article li {
  margin: 10px 0;
}
.legal-page a {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: #006ca6;
}
.legal-nav {
  display: flex !important;
  position: static !important;
  align-items: center;
  gap: 22px;
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
}
@media (max-width: 600px) {
  .legal-nav {
    gap: 12px;
    font-size: 12px;
  }
  .legal-nav .button {
    display: none;
  }
  .legal-page {
    padding-top: 32px;
  }
  .legal-page article {
    font-size: 15px;
  }
  .legal-page h1 {
    letter-spacing: -1px;
  }
}

.supplementary-note {
  font-size: 13px;
  line-height: 1.7;
  color: #49667d;
  max-width: 480px;
  margin: 20px 0;
}
.supplementary-note a {
  color: #006ca6;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.plain-english-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.plain-english-section .lead {
  color: var(--blue);
  max-width: 485px;
}
.plain-demo {
  background: white;
  border: 1px solid #cbdbe4;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 24px 50px #1039580c;
}
.plain-demo-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  background: var(--ink);
  color: white;
}
.plain-demo-bar > b {
  font-size: 21px;
  letter-spacing: -0.6px;
}
.plain-demo-bar > b > span {
  color: var(--coral);
}
.plain-demo-bar > span {
  font-size: 8px;
  letter-spacing: 1.3px;
  color: #a9c3d5;
}
.plain-demo-body {
  padding: 25px;
}
.plain-demo-body > .eyebrow {
  font-size: 9px;
  letter-spacing: 1px;
  margin-bottom: 11px;
}
.prompt-bubble {
  padding: 18px;
  border: 1px solid #b5cedf;
  border-radius: 8px;
  font-size: 16px;
  line-height: 1.65;
  box-shadow: 0 0 0 3px #e9f1f7;
}
.reading-controls {
  display: flex;
  gap: 8px;
  align-items: center;
  margin: 24px 0 18px;
}
.reading-controls > span {
  font-size: 11px;
  color: var(--muted);
  margin-right: auto;
}
.reading-controls button {
  border: 1px solid var(--line);
  border-radius: 5px;
  font-size: 12px;
  background: white;
  color: var(--ink);
  padding: 8px 13px;
  min-height: 36px;
}
.reading-controls button[aria-pressed='true'] {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}
.raw-reading {
  background: #f1f4f5;
  border-radius: 7px;
  padding: 16px;
}
.raw-reading > span {
  display: block;
  font-size: 8px;
  letter-spacing: 1.2px;
  color: #6c8393;
  margin-bottom: 12px;
}
.raw-reading code {
  font-size: 12px;
  line-height: 1.8;
  color: #465e6f;
  overflow-wrap: anywhere;
}
.reading-result {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding-top: 19px;
  border-top: 1px solid var(--line);
}
.reading-result-icon {
  border-radius: 50%;
  background: #fff0e9;
  color: #b34d38;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.reading-result b {
  font-size: 14px;
  display: block;
}
.reading-result p {
  font-size: 11px;
  margin: 5px 0 0;
}
.reading-result .state-chip {
  margin-left: auto;
}
.plain-demo .demo-footnote {
  text-align: left;
  font-size: 10px;
}
.plain-demo[data-state='normal'] .reading-result-icon {
  color: var(--green);
  background: #e8f3ed;
}
@media (max-width: 1100px) {
  .plain-english-section {
    gap: 45px;
  }
}
@media (max-width: 850px) {
  .plain-english-section {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .plain-demo {
    max-width: 600px;
    width: 100%;
    justify-self: center;
  }
}
@media (max-width: 540px) {
  .plain-demo-body {
    padding: 20px 17px;
  }
  .prompt-bubble {
    font-size: 14px;
  }
  .reading-result {
    gap: 8px;
  }
  .reading-result b {
    font-size: 12px;
  }
  .reading-result p {
    font-size: 10px;
  }
  .reading-controls button {
    padding: 8px 11px;
  }
  .plain-demo-body > .eyebrow {
    font-size: 8px;
  }
}
.calculator-result strong {
  overflow-wrap: anywhere;
  font-variant-numeric: tabular-nums;
}
/* Focused homepage and plain-English examples. */
.focused-hero h1 {
  font-size: clamp(42px, 4.6vw, 66px);
  letter-spacing: -2.6px;
  line-height: 1.08;
}
.focused-hero .hero-lead {
  font-size: 19px;
  margin-bottom: 30px;
}
.promise-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  padding-block: 24px;
  gap: 28px;
}
.promise-nav a {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.6;
}
.promise-nav a:hover {
  color: var(--blue);
}
.promise-nav span {
  font-size: 11px;
  color: var(--blue);
  font-weight: 500;
}
.promise-nav b {
  margin-left: auto;
  color: var(--blue);
  font-weight: 400;
}
.ownership-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}
.ownership-record {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 22px 45px #1039580a;
}
.record-heading {
  background: var(--ink);
  padding: 28px;
  color: #fff;
}
.record-heading .eyebrow {
  font-size: 9px;
  margin-bottom: 12px;
}
.record-heading h3 {
  margin-bottom: 14px;
  font-size: 25px;
}
.record-accepted {
  color: #b5e5cd;
  font-size: 12px;
}
.ownership-events {
  padding: 5px 25px;
}
.ownership-events > div {
  display: flex;
  gap: 15px;
  align-items: center;
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
}
.ownership-events > div:last-child {
  border-bottom: 0;
}
.ownership-events b {
  font-size: 14px;
}
.ownership-events p {
  font-size: 11px;
  margin: 6px 0 0;
  line-height: 1.6;
}
.quiet-avatar {
  background: #edf1f4;
  color: #8093a1;
}
.ownership-record > .demo-footnote {
  text-align: left;
  padding: 0 25px 22px;
  margin: 0;
}
.fit-strip {
  background: #e9eff1;
  padding: 65px 0;
}
.fit-strip > .shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}
.fit-strip h2 {
  font-size: 39px;
  margin-bottom: 0;
}
.fit-strip p {
  margin-bottom: 14px;
}
.fit-links {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.ownership-section + .fit-strip + .faq-section {
  padding-top: 90px;
}
.intro-note {
  margin-top: 22px;
}
.language-example {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 90px;
  align-items: center;
  padding: 50px 0;
  border-top: 1px solid var(--line);
}
.language-copy h3 {
  font-size: 31px;
  letter-spacing: -1px;
}
.language-proof {
  border: 1px solid #cfdee7;
  border-radius: 15px;
  overflow: hidden;
  background: #fff;
}
.language-proof > div {
  padding: 23px 27px;
}
.language-proof span {
  display: block;
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 1.2px;
  margin-bottom: 14px;
  color: var(--blue);
}
.proof-instruction {
  background: var(--ink);
  color: #fff;
}
.proof-instruction span {
  color: #a7c7da;
}
.proof-instruction blockquote {
  font-size: 18px;
  line-height: 1.7;
  margin: 0;
}
.proof-message {
  border-bottom: 1px solid var(--line);
}
.proof-message code {
  font-size: 13px;
  line-height: 1.8;
  overflow-wrap: anywhere;
}
.proof-result {
  border-left: 3px solid var(--coral);
}
.proof-result strong {
  font-size: 17px;
}
.proof-result p {
  font-size: 13px;
  margin: 8px 0 0;
}
.recovery-proof {
  border-left-color: var(--green);
}
.instruction-tips {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: tip;
}
.instruction-tips li {
  counter-increment: tip;
  padding-left: 40px;
  position: relative;
  margin-bottom: 30px;
}
.instruction-tips li:before {
  content: counter(tip, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 3px;
  font-size: 11px;
  color: var(--blue);
}
.instruction-tips b {
  font-size: 17px;
}
.instruction-tips p {
  margin: 9px 0 0;
  font-size: 15px;
}
@media (max-width: 1100px) {
  #site-navigation {
    gap: 18px;
    font-size: 12px;
  }
  .nav-actions {
    gap: 18px;
    margin-left: 0;
  }
  .ownership-section,
  .fit-strip > .shell,
  .language-example {
    gap: 45px;
  }
  .promise-nav {
    gap: 20px;
  }
  .promise-nav a {
    font-size: 12px;
  }
}
@media (max-width: 850px) {
  .focused-hero h1 {
    max-width: 650px;
    font-size: 57px;
  }
  .ownership-section,
  .fit-strip > .shell,
  .language-example {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .ownership-record,
  .language-proof {
    width: 100%;
    max-width: 600px;
    justify-self: center;
  }
  .promise-nav {
    gap: 18px;
  }
  .promise-nav a {
    align-items: start;
  }
  .promise-nav b {
    display: none;
  }
  .fit-strip h2 {
    font-size: 37px;
  }
  .ownership-section + .fit-strip + .faq-section {
    padding-top: 70px;
  }
  .language-example {
    padding-block: 40px;
  }
}
@media (max-width: 540px) {
  .focused-hero h1 {
    font-size: 42px;
    letter-spacing: -1.7px;
  }
  .focused-hero .hero-lead {
    font-size: 17px;
  }
  .promise-nav {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-block: 23px;
  }
  .promise-nav a {
    font-size: 13px;
  }
  .promise-nav b {
    display: block;
  }
  .record-heading {
    padding: 23px;
  }
  .ownership-events {
    padding-inline: 20px;
  }
  .ownership-events > div {
    gap: 11px;
  }
  .ownership-events b {
    font-size: 13px;
  }
  .ownership-events p {
    font-size: 10px;
  }
  .ownership-record > .demo-footnote {
    padding-inline: 20px;
  }
  .fit-strip {
    padding-block: 50px;
  }
  .fit-strip h2 {
    font-size: 33px;
  }
  .fit-links {
    gap: 20px;
  }
  .fit-links .text-link {
    font-size: 13px;
  }
  .ownership-section + .fit-strip + .faq-section {
    padding-top: 60px;
  }
  .language-copy h3 {
    font-size: 28px;
  }
  .language-proof > div {
    padding: 22px;
  }
  .proof-instruction blockquote {
    font-size: 16px;
  }
  .proof-result strong {
    font-size: 15px;
  }
}
.comparison .broadcast {
  background: #f2eae5;
}
.comparison-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 1.1px;
  line-height: 1.7;
  padding: 8px 11px;
  border-radius: 5px;
  margin-bottom: 23px;
}
.problem-label {
  color: #923e30;
  background: #e9d5cb;
}
.pinga-label {
  color: #c7ecd9;
  background: #234f47;
}
.comparison .comparison-context {
  font-size: 14px;
  min-height: 50px;
}
.comparison-contacts {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}
.comparison-contacts li {
  padding: 17px 0;
  border-bottom: 1px solid #d9cfc9;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 74px;
}
.comparison-contacts li:last-child {
  border-bottom: 0;
}
.comparison-contacts b {
  font-size: 15px;
}
.group-contacts li > span {
  font-size: 12px;
  margin-left: auto;
  color: #876e61;
}
.ordered-contacts li {
  border-color: #ffffff20;
}
.ordered-contacts small {
  display: block;
  font-size: 11px;
  line-height: 1.6;
  color: #adc7d5;
  margin-top: 5px;
}
.contact-order {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  font-size: 12px;
  background: #ffffff10;
  color: #b8d1df;
}
.accepted-contact b {
  color: #b7e4c8;
}
.accepted-contact .contact-order {
  background: #2d6052;
  color: #d9f2e4;
}
.unneeded-contact b {
  color: #b2c7d4;
}
.comparison-outcome {
  padding: 21px;
  border-radius: 8px;
  margin-top: 24px;
}
.comparison-outcome strong {
  font-size: 18px;
  display: block;
  line-height: 1.5;
}
.comparison .comparison-outcome p {
  font-size: 13px;
  line-height: 1.7;
  margin-top: 8px;
}
.problem-outcome {
  background: #e8dcd3;
}
.pinga-outcome {
  background: #244e45;
}
.pinga-outcome strong {
  color: #d5f3df;
}
.comparison .pinga-outcome p {
  color: #c0dccd;
}
.comparison-caption {
  font-size: 12px;
  margin: 18px 0 0;
  max-width: 800px;
}
.comparison article {
  display: flex;
  flex-direction: column;
}
.comparison-outcome {
  margin-top: auto;
}
@media (max-width: 540px) {
  .comparison-label {
    font-size: 8px;
    letter-spacing: 0.8px;
  }
  .comparison .comparison-context {
    min-height: 0;
  }
  .comparison-outcome {
    padding: 18px;
  }
  .comparison-contacts b {
    font-size: 14px;
  }
  .ordered-contacts small {
    font-size: 10px;
  }
  .comparison-caption {
    font-size: 11px;
  }
}

.pricing-grid{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:start}.pricing-feature{background:#eef5fb;border:1px solid #dce8f2;border-radius:24px;padding:40px}.pricing-feature h2{font-size:68px;line-height:1.15}.pricing-feature h2 span{font-size:22px}.pricing-feature ul{padding-left:22px;line-height:1.9;margin:28px 0}.pricing-feature .button{margin:12px 0}.pricing-rates{margin:28px 0}.pricing-rates p{display:flex;justify-content:space-between;gap:18px;border-bottom:1px solid #dce8f2;padding:18px 0}.pricing-rates strong{white-space:nowrap}@media(max-width:800px){.pricing-grid{grid-template-columns:1fr;gap:32px}.pricing-feature{padding:26px}.pricing-rates p{flex-wrap:wrap}}
