@font-face {
  font-family: Archivo;
  src: url("/assets/fonts/archivo-regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Archivo;
  src: url("/assets/fonts/archivo-semibold.ttf") format("truetype");
  font-weight: 600 900;
  font-display: swap;
}
:root {
  --paper: #f3f2eb;
  --ink: #20241f;
  --night: #171a18;
  --amber: #f4ae3c;
  --muted: #747970;
  --line: #d8dbd1;
  --light-line: #373b35;
  --radius: 10px;
  --font: Archivo, Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  font-family: var(--font);
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.55;
}
h1,
h2,
h3,
p {
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select {
  font: inherit;
}
button,
a,
input,
summary {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: default;
  opacity: 0.4;
}
button {
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
button,
a,
input,
select,
summary,
[tabindex]:focus-visible {
  outline-offset: 5px;
}
*:focus-visible {
  outline: 2px solid #ad6b00;
  outline-offset: 5px;
}
button:focus:not(:focus-visible) {
  outline: none;
}
[hidden] {
  display: none !important;
}
::selection {
  background: var(--amber);
  color: var(--ink);
}
.wrap {
  width: min(1280px, calc(100% - 112px));
  margin-inline: auto;
}
.section {
  padding-block: 110px;
}
.muted {
  color: var(--muted);
}
.micro {
  font-size: 12px;
  letter-spacing: 0.06em;
  line-height: 1.5;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.13em;
  color: #bfc4b9;
}
.eyebrow > span:not(.signal-dot) {
  color: var(--amber);
  margin-right: 16px;
}
.eyebrow.dark {
  color: #62685e;
}
.eyebrow.dark > span {
  color: #8b9186;
}
.signal-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--amber);
  border-radius: 50%;
  flex-shrink: 0;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
  padding: 17px 22px;
  min-height: 56px;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid transparent;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  transform: translateY(-2px);
}
.button span {
  font-size: 21px;
  font-weight: 400;
  line-height: 1;
}
.button.amber {
  background: var(--amber);
  color: var(--ink);
}
.button.amber:hover {
  background: #ffc66c;
}
.button.ink {
  background: var(--ink);
  color: var(--paper);
}
.button.outline {
  border-color: #c7ccc0;
  background: transparent;
  color: var(--ink);
}
.button.outline:hover {
  background: #e8eae1;
}
.button.small {
  padding: 10px 17px;
  min-height: 43px;
  font-size: 14px;
  gap: 22px;
}
.text-link {
  font-size: 15px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 26px;
  min-height: 44px;
}
.text-link > span {
  font-size: 22px;
  font-weight: 400;
  transition: transform 0.2s;
}
.text-link:hover > span {
  transform: translate(3px, -2px);
}
.skip-link {
  position: fixed;
  z-index: 110;
  left: 20px;
  top: -100px;
  background: var(--amber);
  color: var(--ink);
  padding: 14px;
}
.skip-link:focus {
  top: 10px;
}
.site-header {
  height: 88px;
  padding: 0 4%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  background: var(--night);
  color: var(--paper);
  position: relative;
  z-index: 50;
  border-bottom: 1px solid #31352f;
}
.wordmark {
  font-size: 27px;
  font-weight: 600;
  letter-spacing: -1.1px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  white-space: nowrap;
}
.wordmark img {
  object-fit: contain;
}
.brand-dot {
  font-size: 10px;
  align-self: flex-start;
  margin: 9px 0 0 -7px;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 31px;
  font-size: 14px;
  color: #ccd0c5;
}
.desktop-nav a {
  padding-block: 20px;
}
.desktop-nav a:hover,
.sign-in:hover {
  color: var(--amber);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}
.sign-in {
  font-size: 14px;
}
.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 44px;
  height: 44px;
  padding: 10px;
}
.menu-toggle span {
  height: 1px;
  width: 24px;
  background: var(--paper);
  display: block;
  margin: 7px 0;
  transition: transform 0.2s;
}
.mobile-nav {
  position: absolute;
  top: 88px;
  left: 0;
  right: 0;
  background: var(--night);
  padding: 16px 24px 28px;
  border-bottom: 1px solid var(--light-line);
}
.mobile-nav a {
  display: block;
  font-size: 20px;
  padding: 13px 0;
  border-bottom: 1px solid #31352f;
}
.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}
.hero-section {
  background: var(--night);
  color: var(--paper);
  overflow: hidden;
}
.hero-copy {
  position: relative;
  z-index: 2;
  padding-top: 62px;
}
.hero-copy h1 {
  font-size: clamp(56px, 6.8vw, 100px);
  font-weight: 400;
  letter-spacing: -0.058em;
  line-height: 1.02;
  margin-top: 27px;
}
.hero-copy h1 > span {
  color: var(--amber);
}
.hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin-top: 34px;
}
.hero-bottom > p {
  font-size: 17px;
  line-height: 1.5;
  color: #b9c0b4;
}
.hero-cta {
  display: grid;
  grid-template-columns: auto auto;
  column-gap: 26px;
  align-items: center;
  margin-right: 4.7%;
}
.hero-cta > .micro {
  grid-column: 1/-1;
  margin-top: 11px;
  color: #a8afa2;
}
.hero-stage {
  height: 470px;
  width: 100%;
  position: relative;
  margin-top: 0;
  isolation: isolate;
}
#road-scene {
  width: 100%;
  height: 100%;
  display: block;
}
.scene-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.scene-caption {
  position: absolute;
  left: 5%;
  bottom: 25px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #b8bfb2;
}
.scene-caption > span:last-child {
  font-size: 14px;
}
.scene-caption i {
  font-style: normal;
  color: var(--amber);
  padding-inline: 10px;
}
.load-ticket {
  position: absolute;
  right: 9%;
  bottom: 62px;
  width: 306px;
  padding: 21px 22px 14px;
  background: #eff0e7;
  color: var(--ink);
  box-shadow: 0 18px 60px #0003;
  border-radius: 8px;
  transform: rotate(-3deg);
  transition: transform 0.4s;
  pointer-events: none;
}
.ticket-header {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 7px;
}
.ticket-header .signal-dot {
  background: #6c8461;
  width: 6px;
  height: 6px;
}
.ticket-arrow {
  margin-left: auto;
  font-size: 19px;
}
.ticket-route {
  display: flex;
  gap: 15px;
  align-items: center;
  margin: 22px 0 14px;
  font-size: 34px;
  letter-spacing: -0.07em;
}
.route-rule {
  flex: 1;
  height: 1px;
  background: #b6bcae;
  position: relative;
}
.route-rule:after {
  content: "";
  position: absolute;
  right: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  border-top: 1px solid #7b8474;
  border-right: 1px solid #7b8474;
  transform: rotate(45deg);
}
.ticket-bottom {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #cdd2c5;
  padding-top: 12px;
  font-size: 11px;
  color: #58614f;
}
.ticket-bottom b {
  margin-left: 6px;
  color: #4b713b;
}
.sample-label {
  font-size: 10px;
  color: #686f63;
  display: block;
  margin-top: 10px;
}
.hero-foot {
  border-top: 1px solid #363b33;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-block: 24px;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: #aeb6a6;
}
.hero-foot a {
  color: #dce0d4;
}
.hero-foot a > span {
  margin-left: 18px;
  color: var(--amber);
}
.section-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  align-items: flex-end;
  margin-bottom: 52px;
}
h2 {
  font-size: clamp(38px, 4.3vw, 64px);
  font-weight: 400;
  line-height: 1.07;
  letter-spacing: -0.045em;
}
.section-heading > p {
  font-size: 17px;
  color: #666e5f;
  line-height: 1.65;
  padding-bottom: 5px;
  max-width: 470px;
}
.product-explorer {
  display: grid;
  grid-template-columns: 1fr 1.95fr;
  border: 1px solid #d0d5c8;
  background: #e9ece2;
  border-radius: 12px;
  padding: 20px;
  gap: 38px;
}
.explorer-menu {
  padding: 17px 8px 8px;
}
.explorer-menu > button {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #cdd3c5;
  background: transparent;
  display: flex;
  align-items: flex-start;
  text-align: left;
  padding: 24px 12px;
  gap: 17px;
}
.explorer-menu > button[aria-selected="true"] {
  background: #dde3d5;
  border-radius: 7px;
  border-color: transparent;
}
.tab-number {
  font-size: 12px;
  line-height: 24px;
  color: #6d7764;
}
.explorer-menu button b {
  font-size: 19px;
  font-weight: 400;
  display: block;
  letter-spacing: -0.02em;
}
.explorer-menu button small {
  display: block;
  font-size: 13px;
  color: #68745d;
  margin-top: 5px;
}
.tab-arrow {
  margin-left: auto;
  font-size: 21px;
  color: #7f8b74;
  opacity: 0;
}
.explorer-menu [aria-selected="true"] .tab-arrow {
  opacity: 1;
}
.explorer-note {
  font-size: 12px;
  color: #6e7865;
  padding: 20px 12px 3px;
  line-height: 1.7;
}
.product-window {
  background: #fdfdf9;
  border-radius: 8px;
  border: 1px solid #d6dbce;
  box-shadow: 0 5px 8px #202d1812;
  overflow: hidden;
  min-width: 0;
}
.product-toolbar {
  padding: 15px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e9ece3;
}
.mini-brand {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.03em;
}
.mini-brand img {
  background: var(--ink);
  border-radius: 5px;
  padding: 2px;
}
.sample-pill {
  font-size: 10px;
  letter-spacing: 0.08em;
  border: 1px solid #d7ddcf;
  padding: 4px 8px;
  border-radius: 4px;
  color: #6a7560;
  white-space: nowrap;
}
.product-context {
  display: flex;
  justify-content: space-between;
  padding: 22px 30px 0;
  font-size: 10px;
  letter-spacing: 0.05em;
  color: #7c8771;
}
.product-context i {
  font-style: normal;
  margin: 0 10px;
  color: #b2bba8;
}
.product-panel {
  padding: 22px 30px 26px;
  min-height: 376px;
  animation: panel-in 0.3s ease;
}
.panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.panel-title h3 {
  font-size: 23px;
  font-weight: 400;
  letter-spacing: -0.035em;
}
.status-pill {
  color: #566e46;
  background: #e9efdf;
  font-size: 11px;
  padding: 4px 9px;
  border-radius: 5px;
  white-space: nowrap;
}
.journey-diagram {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 37px;
}
.journey-diagram > div {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-top: 22px;
}
.journey-diagram > div:first-child:before {
  content: "";
  position: absolute;
  left: 4px;
  right: 0;
  top: 0;
  height: 1px;
  background: #b6c2a8;
}
.route-node {
  width: 9px;
  height: 9px;
  position: absolute;
  left: 0;
  top: -4px;
  border: 2px solid #879c70;
  background: #fdfdf9;
  border-radius: 50%;
}
.route-node.filled {
  background: #879c70;
}
.journey-diagram small {
  font-size: 10px;
  letter-spacing: 0.08em;
  color: #7b896d;
}
.journey-diagram strong {
  font-size: 16px;
  font-weight: 600;
  margin-top: 6px;
}
.journey-diagram div > span:last-child {
  font-size: 12px;
  color: #7e8873;
  margin-top: 3px;
}
.load-metrics {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  margin-top: 33px;
  gap: 15px;
}
.load-metrics div > span {
  font-size: 12px;
  color: #7a856f;
}
.load-metrics strong {
  font-size: 28px;
  font-weight: 400;
  display: block;
  letter-spacing: -0.04em;
  margin-top: 4px;
}
.load-metrics strong > span {
  font-size: 15px;
  color: #7c8970;
}
.load-metrics strong.metric-text {
  font-size: 23px;
  margin-top: 7px;
}
.panel-footer {
  border-top: 1px solid #e0e5d7;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 25px;
  padding-top: 15px;
  font-size: 12px;
  color: #69765b;
  line-height: 1.6;
}
.panel-footer b {
  font-weight: 400;
  color: #394830;
}
.file-symbol {
  font-size: 24px;
  color: #8f9c82;
  align-self: flex-start;
}
.document-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid #e2e6db;
}
.document-row > span:last-child {
  margin-left: auto;
  color: #758d5e;
}
.file-icon {
  height: 40px;
  width: 32px;
  border: 1px solid #c4ceb8;
  border-radius: 3px;
  font-size: 9px;
  display: grid;
  place-items: center;
  color: #6e7b60;
}
.document-row b {
  font-weight: 400;
  font-size: 15px;
}
.document-row small {
  display: block;
  font-size: 11px;
  color: #7b866f;
  margin-top: 2px;
}
.money-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #e3e7dc;
  padding: 19px 0;
  font-size: 15px;
  color: #6a765e;
}
.money-row strong {
  font-weight: 400;
  color: var(--ink);
}
.money-row.total {
  font-size: 18px;
  color: var(--ink);
}
.profit-result {
  padding-top: 29px;
}
.profit-result > small {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #718262;
}
.profit-result > strong {
  display: block;
  font-size: 74px;
  line-height: 1.3;
  letter-spacing: -0.06em;
  font-weight: 400;
  color: #455b35;
}
.profit-result strong span {
  font-size: 46px;
  color: #8b9a7e;
}
.profit-bar {
  height: 16px;
  background: #758c60;
  border-radius: 3px;
  overflow: hidden;
  margin-top: 16px;
}
.profit-bar span {
  display: block;
  width: 62.5%;
  height: 100%;
  background: #dfe5d6;
  border-right: 3px solid white;
}
.bar-legend {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: #6e7d61;
  margin-top: 8px;
}
.workflow-foot {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 24px;
  font-size: 13px;
  color: #6b7462;
}
.workflow-foot b {
  color: var(--ink);
  font-weight: 400;
}
.workflow-foot .text-link {
  font-size: 13px;
  min-height: 22px;
  color: var(--ink);
}
.intelligence-section {
  background: var(--night);
  color: var(--paper);
}
.ai-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  margin-top: 66px;
  align-items: center;
}
.ai-copy h2 {
  font-size: clamp(48px, 5vw, 74px);
}
.ai-copy h2 > span {
  color: var(--amber);
}
.ai-copy > p {
  color: #aeb7a5;
  max-width: 410px;
  font-size: 16px;
  margin-top: 25px;
  line-height: 1.7;
}
.ai-copy .text-link {
  color: var(--amber);
  margin-top: 26px;
}
.ai-demonstration {
  background: #232822;
  border: 1px solid #3c4437;
  padding: 24px;
  border-radius: 12px;
  transform: rotate(1.5deg);
}
.ai-demo-top {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  align-items: center;
}
.ai-demo-top .sample-pill {
  color: #b3bea8;
  border-color: #4a5443;
}
.ai-demo-top .micro {
  color: #cbb58f;
  font-size: 10px;
}
.mail-message {
  padding: 34px 20px 26px;
  border-bottom: 1px solid #46503f;
}
.mail-message .muted {
  color: #aab59e;
}
.mail-message h3 {
  font-size: 25px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.03em;
  margin-top: 16px;
}
.mail-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  font-size: 12px;
  color: #a3b097;
}
.draft-connector {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 19px 30px;
}
.draft-connector span {
  height: 1px;
  background: #4b5741;
  flex: 1;
}
.draft-connector b {
  border: 1px solid #69795a;
  color: var(--amber);
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  font-weight: 600;
  font-size: 17px;
  border-radius: 6px;
}
.draft-message {
  background: #e8ebdf;
  padding: 24px;
  color: #263220;
  border-radius: 6px;
}
.draft-label {
  font-size: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.07em;
}
.draft-label .signal-dot {
  background: #7f935f;
}
.draft-message > p {
  font-size: 17px;
  line-height: 1.7;
  margin-top: 18px;
}
.approval-note {
  display: flex;
  gap: 12px;
  font-size: 12px;
  padding-top: 18px;
  margin-top: 23px;
  border-top: 1px solid #c6d0b9;
  color: #617151;
}
.approval-note b {
  font-weight: 400;
}
.approval-note > span {
  font-size: 24px;
}
.ai-fine {
  font-size: 11px;
  line-height: 1.7;
  color: #afbaa3;
  padding: 15px 8px 0;
}
.control-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
  margin-top: 80px;
  padding-top: 30px;
  border-top: 1px solid #3b4335;
}
.control-strip div {
  border-left: 1px solid #3b4335;
  padding-left: 22px;
}
.control-strip span {
  color: var(--amber);
  font-size: 11px;
  letter-spacing: 0.08em;
}
.control-strip p {
  font-size: 16px;
  color: #c1cbb5;
  margin-top: 15px;
  line-height: 1.6;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.plan-card {
  padding: 28px;
  border: 1px solid #cfd5c7;
  border-radius: 9px;
  display: flex;
  flex-direction: column;
}
.plan-card.pro {
  background: #e7ebdf;
  border-color: #b9c5aa;
}
.plan-top h3 {
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.035em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.pro-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: #c7d2b8;
  color: #4d5e3c;
  padding: 4px 6px;
  border-radius: 3px;
}
.plan-top > span {
  font-size: 9px;
  letter-spacing: 0.07em;
  color: #67745b;
  display: block;
  margin-top: 9px;
}
.plan-price {
  font-size: 45px;
  font-weight: 400;
  letter-spacing: -0.05em;
  margin-top: 26px;
  line-height: 1.3;
}
.plan-price > span {
  display: block;
  font-size: 12px;
  letter-spacing: 0;
  color: #67745b;
  margin-top: 2px;
}
.plan-description {
  font-size: 14px;
  line-height: 1.7;
  color: #67745b;
  margin: 22px 0;
}
.plan-card .button {
  font-size: 14px;
  min-height: 50px;
  padding: 13px 15px;
}
.plan-card ul {
  margin: 24px 0 20px;
  padding: 0;
  list-style: none;
  font-size: 13px;
}
.plan-card li {
  padding: 7px 0;
  display: flex;
  gap: 9px;
}
.plan-card li:before {
  content: "✓";
  color: #71875a;
}
.plan-foot {
  font-size: 11px;
  color: #637057;
  border-top: 1px solid #cdd5c3;
  padding-top: 17px;
  line-height: 1.65;
  margin-top: auto;
}
.pricing-calculator {
  display: flex;
  gap: 25px;
  align-items: center;
  padding: 24px 28px;
  border-bottom: 1px solid #cfd5c7;
}
.pricing-calculator label {
  font-size: 15px;
  display: block;
}
.pricing-calculator small {
  font-size: 11px;
  color: #6b765f;
  display: block;
  margin-top: 4px;
}
.truck-stepper {
  display: flex;
  align-items: center;
  border: 1px solid #c3ccba;
  border-radius: 5px;
  overflow: hidden;
  flex-shrink: 0;
}
.truck-stepper button {
  border: 0;
  background: transparent;
  width: 40px;
  min-height: 44px;
  font-size: 22px;
}
.truck-stepper button:hover {
  background: #e0e6d7;
}
.truck-stepper input {
  width: 43px;
  border: 0;
  min-height: 40px;
  text-align: center;
  background: transparent;
  color: var(--ink);
  appearance: textfield;
  -moz-appearance: textfield;
}
.truck-stepper input::-webkit-inner-spin-button {
  appearance: none;
}
.calculated-price {
  display: flex;
  flex-direction: column;
  min-width: 116px;
}
.calculated-price strong {
  font-size: 27px;
  letter-spacing: -0.05em;
  font-weight: 400;
}
.calculated-price span {
  font-size: 11px;
  color: #75816a;
}
.pricing-calculator > p {
  margin-left: auto;
  font-size: 12px;
  color: #657459;
  max-width: 285px;
  line-height: 1.6;
}
.pricing-terms {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  margin-top: 26px;
  font-size: 11px;
  line-height: 1.8;
  color: #6a755f;
}
.pricing-terms b {
  font-weight: 600;
  color: #46533c;
}
.pricing-terms a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.faq-section {
  display: grid;
  grid-template-columns: 0.95fr 1.25fr;
  gap: 100px;
  border-top: 1px solid #cdd4c4;
}
.faq-section h2 {
  font-size: 46px;
  margin-top: 30px;
}
.faq-section > div > p:not(.eyebrow) {
  font-size: 14px;
  color: #6e7a63;
  margin-top: 24px;
}
.faq-section .text-link {
  font-size: 14px;
}
.faq-list details {
  border-bottom: 1px solid #cdd4c4;
}
.faq-list details:first-child {
  border-top: 1px solid #cdd4c4;
}
.faq-list summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 23px 0;
  font-size: 16px;
  line-height: 1.4;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary > span {
  font-size: 24px;
  color: #829075;
  font-weight: 400;
  transition: transform 0.2s;
}
.faq-list details[open] summary > span {
  transform: rotate(45deg);
}
.faq-list details p {
  font-size: 14px;
  line-height: 1.8;
  padding: 0 30px 23px 0;
  color: #69765e;
}
.faq-list details a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.final-cta {
  position: relative;
  background: var(--amber);
  overflow: hidden;
  padding: 90px 0;
  color: var(--ink);
}
.final-cta .wrap {
  position: relative;
  z-index: 1;
}
.final-cta .eyebrow {
  color: #67512c;
}
.final-cta h2 {
  font-size: clamp(45px, 5.5vw, 80px);
  margin-top: 28px;
  letter-spacing: -0.055em;
  line-height: 1.03;
}
.final-cta .wrap > div {
  display: flex;
  gap: 26px;
  align-items: center;
  margin-top: 40px;
}
.final-cta p {
  font-size: 13px;
  color: #6a542c;
}
.cta-monogram {
  position: absolute;
  font-size: 640px;
  line-height: 1;
  right: 1%;
  top: -66px;
  font-weight: 600;
  opacity: 0.075;
  transform: rotate(-10deg);
}
.site-footer {
  background: var(--night);
  color: #c3cdb7;
  padding: 58px 0 26px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1.4fr 1fr 1.3fr;
  gap: 40px;
  align-items: start;
}
.footer-top .wordmark {
  color: var(--paper);
  font-size: 25px;
}
.footer-top > p {
  font-size: 15px;
  line-height: 1.7;
}
.footer-top > div {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 12px;
}
.footer-top a:hover {
  color: var(--amber);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-size: 11px;
  color: #a5b397;
  border-top: 1px solid #3a4432;
  margin-top: 54px;
  padding-top: 25px;
}
.footer-bottom > div {
  display: flex;
  gap: 22px;
  align-items: center;
}
.footer-bottom button {
  border: 0;
  padding: 0;
  background: none;
  color: inherit;
  font-size: 11px;
  min-height: 30px;
}
.consent-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  z-index: 90;
  background: #f8f9f0;
  border: 1px solid #c2ccb6;
  border-radius: 8px;
  padding: 17px 20px;
  box-shadow: 0 8px 32px #0002;
  display: none;
  gap: 18px;
  align-items: center;
  color: #3d4a32;
}
.consent-banner p {
  font-size: 12px;
  line-height: 1.6;
}
.consent-banner a {
  text-decoration: underline;
}
.consent-banner > div {
  display: flex;
  gap: 8px;
}
.consent-banner button {
  border: 1px solid #b9c7aa;
  border-radius: 4px;
  font-size: 12px;
  padding: 10px 12px;
  background: transparent;
  min-height: 42px;
}
.consent-banner button:last-child {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
@keyframes panel-in {
  from {
    opacity: 0.4;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (min-width: 1600px) {
  .hero-stage {
    max-width: 1700px;
    margin-inline: auto;
    height: 510px;
  }
  .hero-copy {
    padding-top: 78px;
  }
  .hero-stage .load-ticket {
    right: 12%;
  }
  .hero-stage .scene-caption {
    left: 12%;
  }
}
@media (max-width: 1150px) {
  .desktop-nav {
    gap: 20px;
  }
  .desktop-nav a:last-child {
    display: none;
  }
  .wrap {
    width: calc(100% - 72px);
  }
  .hero-cta {
    margin-right: 0;
  }
  .hero-copy h1 {
    font-size: 76px;
  }
  .hero-stage {
    height: 420px;
    margin-top: 0;
  }
  .load-ticket {
    right: 5%;
    width: 277px;
    bottom: 35px;
  }
  .ai-layout {
    gap: 60px;
  }
  .product-explorer {
    gap: 20px;
    grid-template-columns: 1fr 2fr;
  }
  .explorer-menu {
    padding-inline: 0;
  }
  .panel-title h3 {
    font-size: 20px;
  }
  .plan-card {
    padding: 22px;
  }
  .pro-label {
    font-size: 8px;
  }
  .footer-top {
    gap: 25px;
  }
  .faq-section {
    gap: 65px;
  }
  .pricing-calculator {
    gap: 18px;
    padding-inline: 5px;
  }
}
@media (max-width: 900px) {
  .site-header {
    padding-inline: 28px;
    height: 78px;
  }
  .desktop-nav {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .mobile-nav {
    top: 78px;
  }
  .wrap {
    width: calc(100% - 56px);
  }
  .section {
    padding-block: 80px;
  }
  .hero-copy {
    padding-top: 47px;
  }
  .hero-copy h1 {
    font-size: 65px;
  }
  .hero-cta {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .hero-cta > .text-link {
    display: none;
  }
  .hero-bottom > p {
    font-size: 16px;
  }
  .hero-stage {
    height: 385px;
  }
  .hero-foot > span:nth-child(2) {
    display: none;
  }
  .load-ticket {
    width: 250px;
    bottom: 38px;
    right: 4%;
    padding: 15px 18px;
  }
  .ticket-route {
    font-size: 29px;
    margin: 14px 0 9px;
  }
  .ticket-header {
    font-size: 8px;
  }
  .ticket-bottom {
    font-size: 10px;
  }
  .scene-caption {
    left: 4%;
    bottom: 20px;
  }
  .section-heading {
    gap: 30px;
  }
  .section-heading > p {
    font-size: 15px;
  }
  .product-explorer {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .explorer-menu {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 0;
    gap: 5px;
  }
  .explorer-menu > button {
    padding: 13px 10px;
    gap: 8px;
    border: 0;
    align-items: center;
  }
  .explorer-menu button b {
    font-size: 14px;
  }
  .explorer-menu button small {
    display: none;
  }
  .explorer-note {
    display: none;
  }
  .tab-arrow {
    display: none;
  }
  .tab-number {
    font-size: 10px;
  }
  .product-panel {
    min-height: 375px;
  }
  .ai-layout {
    gap: 35px;
    grid-template-columns: 0.9fr 1fr;
  }
  .ai-copy h2 {
    font-size: 49px;
  }
  .ai-copy > p {
    font-size: 14px;
  }
  .ai-demonstration {
    padding: 16px;
  }
  .mail-message {
    padding: 24px 8px;
  }
  .mail-message h3 {
    font-size: 21px;
  }
  .draft-message {
    padding: 19px;
  }
  .draft-message > p {
    font-size: 15px;
  }
  .ai-demo-top .micro {
    display: none;
  }
  .control-strip p {
    font-size: 14px;
  }
  .plan-card {
    padding: 18px;
  }
  .plan-price {
    font-size: 38px;
  }
  .plan-top h3 {
    font-size: 24px;
  }
  .pro-label {
    display: none;
  }
  .plan-description {
    font-size: 12px;
  }
  .plan-card li {
    font-size: 12px;
  }
  .plan-card .button {
    gap: 9px;
    font-size: 12px;
    padding: 12px;
  }
  .plan-top > span {
    font-size: 8px;
  }
  .pricing-calculator {
    flex-wrap: wrap;
  }
  .pricing-calculator > p {
    max-width: 100%;
    flex-basis: 100%;
    margin: 0;
  }
  .pricing-terms {
    gap: 23px;
  }
  .faq-section {
    gap: 35px;
    grid-template-columns: 1fr 1.4fr;
  }
  .faq-section h2 {
    font-size: 36px;
  }
  .faq-list summary {
    font-size: 14px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .footer-bottom {
    flex-wrap: wrap;
    row-gap: 12px;
  }
  .footer-bottom > div {
    flex-basis: 100%;
  }
  .workflow-foot {
    font-size: 12px;
  }
  .workflow-foot p {
    max-width: 350px;
  }
}
@media (max-width: 600px) {
  html {
    scroll-padding-top: 30px;
  }
  .wrap {
    width: calc(100% - 40px);
  }
  .section {
    padding-block: 65px;
  }
  .site-header {
    height: 74px;
    padding-inline: 20px;
    gap: 12px;
  }
  .wordmark {
    font-size: 23px;
    gap: 7px;
  }
  .wordmark img {
    width: 30px;
    height: 30px;
  }
  .header-actions {
    gap: 8px;
  }
  .header-actions > .sign-in {
    display: none;
  }
  .header-actions .button.small {
    min-height: 39px;
    padding: 9px 10px;
    font-size: 11px;
    gap: 9px;
  }
  .header-actions .button.small span {
    font-size: 16px;
  }
  .menu-toggle {
    width: 32px;
    padding: 4px;
  }
  .mobile-nav {
    top: 74px;
  }
  .hero-copy {
    padding-top: 39px;
  }
  .hero-copy .eyebrow {
    font-size: 9px;
    letter-spacing: 0.11em;
    gap: 9px;
  }
  .hero-copy h1 {
    font-size: clamp(41px, 10.7vw, 63px);
    letter-spacing: -0.062em;
    line-height: 1.045;
    margin-top: 24px;
  }
  .hero-bottom {
    display: block;
    margin-top: 22px;
  }
  .hero-bottom > p {
    font-size: 15px;
    line-height: 1.6;
    max-width: 310px;
  }
  .desktop-break {
    display: none;
  }
  .hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 23px;
    margin-top: 24px;
  }
  .hero-cta .button {
    font-size: 13px;
    padding: 13px 15px;
    min-height: 48px;
    gap: 21px;
  }
  .hero-cta .text-link {
    display: inline-flex;
    font-size: 12px;
    gap: 12px;
  }
  .hero-cta > .micro {
    font-size: 10px;
    flex-basis: 100%;
    margin-top: 0;
  }
  .hero-stage {
    height: 340px;
    margin-top: 0;
  }
  .scene-caption {
    display: none;
  }
  .load-ticket {
    width: 210px;
    bottom: 14px;
    right: 6%;
    padding: 13px 15px;
    transform: rotate(-3deg);
    border-radius: 5px;
  }
  .ticket-header {
    font-size: 7px;
    gap: 5px;
  }
  .ticket-route {
    font-size: 24px;
    margin: 9px 0 7px;
    gap: 10px;
  }
  .ticket-bottom {
    font-size: 8px;
    padding-top: 8px;
  }
  .sample-label {
    font-size: 8px;
    margin-top: 6px;
  }
  .ticket-arrow {
    font-size: 14px;
  }
  .hero-foot {
    padding-block: 22px;
    font-size: 8px;
    gap: 8px;
  }
  .hero-foot a {
    font-size: 8px;
  }
  .hero-foot a span {
    margin-left: 9px;
  }
  .section-top {
    margin-bottom: 27px;
  }
  .section-top > .micro {
    display: none;
  }
  .eyebrow {
    font-size: 10px;
    gap: 8px;
  }
  .eyebrow > span:not(.signal-dot) {
    margin-right: 10px;
  }
  .section-heading {
    display: block;
    margin-bottom: 30px;
  }
  h2 {
    font-size: 40px;
    line-height: 1.09;
  }
  .section-heading > p {
    font-size: 15px;
    margin-top: 23px;
    line-height: 1.6;
  }
  .section-heading > p br {
    display: none;
  }
  .product-explorer {
    padding: 9px;
    gap: 8px;
    border-radius: 9px;
    margin-inline: -7px;
  }
  .explorer-menu {
    gap: 2px;
  }
  .explorer-menu > button {
    padding: 12px 6px;
    display: block;
    text-align: center;
  }
  .tab-number {
    display: block;
    font-size: 9px;
    line-height: 1;
    margin-bottom: 7px;
  }
  .explorer-menu button b {
    font-size: 11px;
    letter-spacing: -0.04em;
  }
  .product-toolbar {
    padding: 12px 15px;
  }
  .mini-brand {
    font-size: 13px;
  }
  .mini-brand img {
    width: 20px;
    height: 20px;
  }
  .sample-pill {
    font-size: 8px;
    padding: 4px 6px;
  }
  .product-context {
    padding: 20px 17px 0;
    font-size: 8px;
  }
  .product-context i {
    margin: 0 6px;
  }
  .product-panel {
    padding: 17px;
    min-height: 365px;
  }
  .panel-title {
    gap: 7px;
  }
  .panel-title h3 {
    font-size: 18px;
    max-width: 200px;
    line-height: 1.3;
  }
  .status-pill {
    font-size: 8px;
    padding: 4px 6px;
  }
  .journey-diagram {
    margin-top: 30px;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .journey-diagram > div:first-child:before {
    right: -10px;
  }
  .journey-diagram strong {
    font-size: 12px;
  }
  .journey-diagram small {
    font-size: 8px;
  }
  .journey-diagram div > span:last-child {
    font-size: 10px;
  }
  .load-metrics {
    margin-top: 29px;
    gap: 10px;
    grid-template-columns: 1.2fr 1fr 0.8fr;
  }
  .load-metrics strong {
    font-size: 22px;
  }
  .load-metrics strong > span {
    font-size: 12px;
  }
  .load-metrics div > span {
    font-size: 10px;
  }
  .load-metrics strong.metric-text {
    font-size: 18px;
  }
  .panel-footer {
    font-size: 10px;
    margin-top: 25px;
    gap: 7px;
  }
  .document-row {
    gap: 9px;
    padding: 19px 0;
  }
  .document-row b {
    font-size: 13px;
  }
  .document-row small {
    font-size: 9px;
  }
  .document-row .file-icon {
    flex-shrink: 0;
  }
  .money-row {
    font-size: 13px;
    padding-block: 21px;
  }
  .money-row.total {
    font-size: 14px;
  }
  .profit-result > strong {
    font-size: 64px;
  }
  .profit-result > small {
    font-size: 9px;
  }
  .bar-legend {
    font-size: 9px;
  }
  .workflow-foot {
    display: block;
    padding-top: 17px;
    font-size: 12px;
    line-height: 1.7;
  }
  .workflow-foot .text-link {
    margin-top: 8px;
    min-height: 35px;
  }
  .ai-layout {
    grid-template-columns: 1fr;
    gap: 37px;
    margin-top: 35px;
  }
  .ai-copy h2 {
    font-size: 52px;
    line-height: 1.06;
  }
  .ai-copy h2 br:nth-child(2) {
    display: none;
  }
  .ai-copy h2 > span br {
    display: none;
  }
  .ai-copy > p {
    max-width: none;
    font-size: 15px;
    margin-top: 24px;
  }
  .ai-copy .text-link {
    font-size: 14px;
    margin-top: 16px;
  }
  .ai-demonstration {
    margin: 0 4px;
    padding: 19px;
    transform: rotate(1deg);
  }
  .ai-demo-top .micro {
    display: block;
    font-size: 8px;
  }
  .mail-message h3 {
    font-size: 22px;
  }
  .draft-message > p {
    font-size: 15px;
  }
  .draft-label {
    font-size: 8px;
  }
  .approval-note {
    font-size: 11px;
  }
  .ai-fine {
    font-size: 10px;
  }
  .control-strip {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 40px;
    padding-top: 27px;
  }
  .control-strip > div {
    display: grid;
    grid-template-columns: 0.75fr 1.5fr;
    gap: 15px;
    align-items: start;
    padding-left: 13px;
  }
  .control-strip span {
    font-size: 9px;
    padding-top: 3px;
  }
  .control-strip p {
    margin-top: 0;
    font-size: 13px;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .plan-card {
    padding: 26px;
  }
  .plan-top h3 {
    font-size: 26px;
  }
  .plan-top > span {
    font-size: 9px;
  }
  .plan-price {
    font-size: 45px;
    margin-top: 23px;
  }
  .plan-price > span {
    display: inline;
    font-size: 12px;
    letter-spacing: 0;
    margin-left: 8px;
  }
  .plan-description {
    font-size: 14px;
    margin: 19px 0;
  }
  .plan-description br {
    display: none;
  }
  .plan-card .button {
    font-size: 14px;
    padding: 14px 16px;
    min-height: 49px;
  }
  .plan-card ul {
    margin-top: 20px;
  }
  .plan-card li {
    font-size: 13px;
    padding-block: 6px;
  }
  .plan-foot {
    font-size: 11px;
  }
  .pro-label {
    display: inline;
    font-size: 9px;
  }
  .pricing-calculator {
    padding: 25px 0;
    gap: 20px;
  }
  .pricing-calculator > div:first-child {
    flex-basis: 100%;
  }
  .pricing-calculator > p {
    font-size: 12px;
  }
  .calculated-price {
    margin-left: auto;
    align-items: flex-end;
  }
  .pricing-terms {
    grid-template-columns: 1fr;
    gap: 15px;
    font-size: 11px;
  }
  .faq-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .faq-section h2 {
    font-size: 39px;
    margin-top: 22px;
  }
  .faq-section > div > p:not(.eyebrow) {
    margin-top: 19px;
  }
  .faq-list summary {
    font-size: 15px;
    padding-block: 22px;
  }
  .faq-list details p {
    font-size: 14px;
    padding-right: 15px;
  }
  .final-cta {
    padding-block: 62px;
  }
  .final-cta h2 {
    font-size: 44px;
    margin-top: 24px;
  }
  .final-cta .wrap > div {
    display: block;
    margin-top: 31px;
  }
  .final-cta .button {
    font-size: 14px;
    gap: 24px;
    min-height: 51px;
    padding: 14px 17px;
  }
  .final-cta p {
    font-size: 12px;
    margin-top: 17px;
  }
  .cta-monogram {
    font-size: 440px;
    right: -90px;
    top: 15px;
  }
  .site-footer {
    padding-top: 42px;
  }
  .footer-top {
    gap: 30px 20px;
  }
  .footer-top > .wordmark {
    grid-column: 1/-1;
  }
  .footer-top > p {
    grid-column: 1/-1;
    font-size: 14px;
    margin-top: -16px;
  }
  .footer-top > div {
    font-size: 11px;
    gap: 16px;
  }
  .footer-top > div:last-child a:nth-child(2) {
    font-size: 10px;
  }
  .footer-bottom {
    margin-top: 35px;
    font-size: 10px;
    gap: 12px;
  }
  .footer-bottom > div {
    gap: 22px;
  }
  .footer-bottom button {
    font-size: 10px;
  }
  .consent-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 14px;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .consent-banner p {
    font-size: 11px;
  }
  .consent-banner > div {
    justify-content: flex-end;
  }
  .consent-banner button {
    padding: 8px 17px;
    min-height: 40px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .button:hover {
    transform: none;
  }
}
@media (forced-colors: active) {
  .button,
  .plan-card,
  .product-explorer,
  .status-pill {
    border: 1px solid ButtonText;
  }
  .signal-dot {
    background: CanvasText;
  }
}
/* Review refinements: clearer labels and a restrained road-to-record transition. */
.road-to-record {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #738069;
  margin-bottom: 42px;
  font-size: 11px;
  letter-spacing: 0.09em;
}
.road-to-record span {
  height: 1px;
  background: #c5cebd;
  flex: 1;
}
.road-to-record b {
  font-weight: 400;
}
.road-to-record i {
  font-style: normal;
  color: #9f711d;
  font-size: 23px;
}
.road-to-record.is-visible span {
  background: #b59858;
  transition: background 1s;
}
.road-to-record.is-visible i {
  transform: translateX(3px);
  transition: transform 0.8s;
}
.product-context,
.journey-diagram small {
  font-size: 12px;
}
.sample-pill {
  font-size: 11px;
}
.status-pill {
  font-size: 12px;
}
.product-panel .panel-footer {
  font-size: 13px;
}
.document-row small,
.bar-legend {
  font-size: 12px;
}
.plan-card li {
  font-size: 14px;
}
.plan-description {
  font-size: 15px;
}
.plan-foot,
.pricing-terms {
  font-size: 12px;
}
.plan-top > span {
  font-size: 11px;
}
.control-strip span {
  font-size: 12px;
}
.workflow-foot {
  font-size: 14px;
}
.scene-fallback {
  border: 0;
  pointer-events: none;
}
.hero-stage[data-scene="ready"] .scene-fallback {
  visibility: hidden;
}
@media (max-width: 900px) {
  .plan-card li {
    font-size: 13px;
  }
  .plan-description {
    font-size: 14px;
  }
  .plan-top > span {
    font-size: 10px;
  }
  .product-panel .panel-footer {
    font-size: 12px;
  }
}
@media (max-width: 600px) {
  .road-to-record {
    font-size: 9px;
    gap: 8px;
    margin-bottom: 27px;
    letter-spacing: 0.04em;
  }
  .road-to-record i {
    font-size: 18px;
  }
  .product-context {
    font-size: 10px;
  }
  .journey-diagram small {
    font-size: 10px;
  }
  .sample-pill,
  .status-pill {
    font-size: 10px;
  }
  .product-panel .panel-footer {
    font-size: 11px;
  }
  .document-row small,
  .bar-legend {
    font-size: 10px;
  }
  .plan-top > span {
    font-size: 11px;
  }
  .plan-description {
    font-size: 15px;
  }
  .plan-card li {
    font-size: 14px;
  }
  .plan-foot,
  .pricing-terms {
    font-size: 12px;
  }
  .workflow-foot {
    font-size: 13px;
  }
  .load-metrics div > span {
    font-size: 11px;
  }
  .explorer-menu button b {
    font-size: 12px;
  }
  .ai-demo-top .sample-pill {
    font-size: 9px;
  }
  .control-strip span {
    font-size: 11px;
  }
}
.scene-motion {
  position: absolute;
  right: 5.5%;
  bottom: 13px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  background: transparent;
  color: #aebaa3;
  font-size: 11px;
  padding: 8px;
  min-height: 36px;
}
.scene-motion > span {
  font-size: 14px;
}
.scene-motion:hover {
  color: var(--amber);
}
.scene-motion:disabled {
  opacity: 1;
  color: #99a78c;
}
@media (max-width: 600px) {
  .scene-motion {
    left: 16px;
    right: auto;
    bottom: 0;
    font-size: 10px;
    min-height: 30px;
  }
  .hero-stage[data-scene="fallback"] .scene-fallback {
    object-fit: contain;
  }
}
.scene-motion {
  display: none;
}
.hero-stage[data-scene="ready"] .scene-motion {
  display: inline-flex;
}
@media (max-width: 600px) {
  .hero-stage[data-scene="fallback"] .scene-fallback {
    width: 148%;
    max-width: none;
    left: -24%;
    object-fit: contain;
  }
}
/* Readability floor for supporting copy; the product remains usable at narrow widths. */
.ticket-header,
.ticket-bottom,
.sample-label,
.plan-top > span,
.pro-label,
.draft-label,
.ai-demo-top .micro,
.ai-fine,
.footer-top > div,
.footer-bottom,
.footer-bottom button,
.scene-motion,
.hero-foot,
.micro,
.eyebrow {
  font-size: 12px;
}
.ticket-header {
  letter-spacing: 0.015em;
}
.sample-label {
  letter-spacing: 0;
}
.plan-description,
.faq-list details p,
.ai-copy > p,
.control-strip p {
  font-size: 16px;
}
.footer-top > div {
  line-height: 1.7;
}
.footer-bottom button {
  min-height: 44px;
}
.hero-foot {
  letter-spacing: 0.025em;
}
.plan-top > span {
  letter-spacing: 0.025em;
}
.pro-label {
  font-size: 10px;
}
.pricing-calculator small,
.calculated-price span {
  font-size: 12px;
}
.footer-top > div:last-child a:nth-child(2) {
  font-size: 12px;
}
.ticket-header .ticket-arrow {
  font-size: 19px;
}
@media (max-width: 900px) {
  .pro-label {
    display: none;
  }
  .control-strip p {
    font-size: 15px;
  }
  .plan-description {
    font-size: 15px;
  }
}
@media (max-width: 600px) {
  .hero-copy .eyebrow {
    font-size: 11px;
    letter-spacing: 0.07em;
  }
  .hero-copy h1 {
    font-size: clamp(35px, 10.7vw, 63px);
  }
  .hero-bottom > p,
  .section-heading > p,
  .ai-copy > p,
  .draft-message > p,
  .plan-description {
    font-size: 16px;
  }
  .hero-cta > .micro,
  .hero-cta .text-link {
    font-size: 12px;
  }
  .hero-foot,
  .hero-foot a {
    font-size: 10px;
  }
  .load-ticket {
    width: 230px;
  }
  .ticket-header,
  .ticket-bottom,
  .sample-label {
    font-size: 11px;
  }
  .ticket-bottom > span:first-child {
    display: none;
  }
  .ticket-route {
    margin: 10px 0;
    font-size: 27px;
  }
  .scene-motion {
    font-size: 11px;
  }
  .ai-fine,
  .draft-label,
  .approval-note,
  .product-panel .panel-footer,
  .product-context,
  .journey-diagram small,
  .journey-diagram div > span:last-child,
  .load-metrics div > span,
  .bar-legend,
  .document-row small {
    font-size: 12px;
  }
  .product-context i {
    margin-inline: 2px;
  }
  .sample-pill,
  .status-pill {
    font-size: 11px;
  }
  .product-panel {
    min-height: 390px;
  }
  .hero-foot {
    gap: 7px;
  }
  .footer-top > div,
  .footer-top > div:last-child a:nth-child(2),
  .footer-bottom,
  .footer-bottom button {
    font-size: 12px;
  }
  .footer-top {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 28px 16px;
  }
  .footer-bottom > div {
    flex-wrap: wrap;
    gap: 18px;
  }
  .control-strip > div {
    grid-template-columns: 0.7fr 1.5fr;
  }
  .control-strip span {
    font-size: 12px;
  }
  .control-strip p {
    font-size: 15px;
  }
  .ai-demo-top .sample-pill {
    font-size: 10px;
  }
  .ai-demo-top .micro {
    font-size: 11px;
  }
  .scene-caption {
    font-size: 12px;
  }
}
@media (max-width: 360px) {
  .header-actions .button.small {
    display: none;
  }
  .hero-foot {
    font-size: 9px;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-top > div {
    gap: 12px;
  }
}
.mobile-ticket-label {
  display: none;
}
.sample-label {
  font-size: 12px;
}
/* Inline vectors avoid platform emoji/font substitution, including iOS Safari.
   The scoped selector wins over feature illustrations' generic svg sizing. */
.site-icon[aria-hidden="true"] {
  display: inline-block;
  width: 1em;
  height: 1em;
  min-width: 12px;
  min-height: 12px;
  max-width: 24px;
  max-height: 24px;
  flex: 0 0 auto;
  vertical-align: -0.15em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  overflow: visible;
  pointer-events: none;
}
@media (max-width: 600px) {
  .experience-home .journey-rail button[aria-pressed="true"]::after {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 4 21 12 7 20Z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 4 21 12 7 20Z'/%3E%3C/svg%3E") center / contain no-repeat;
  }
  .load-ticket {
    width: 210px;
  }
  .desktop-ticket-label,
  .load-ticket .sample-label {
    display: none;
  }
  .mobile-ticket-label {
    display: inline;
  }
  .ticket-header,
  .ticket-bottom {
    font-size: 12px;
  }
  .ticket-header {
    gap: 5px;
  }
  .ticket-header .signal-dot {
    display: none;
  }
}

/* Membership and installation are separate, equally accessible entry points. */
#downloads { scroll-margin-top: 105px; }
#downloads .platform-apps-heading { align-items: flex-end; }
#downloads .platform-apps-heading .platform-eyebrow { margin: 0 0 12px; }
#downloads-title { font-size: clamp(29px, 3.5vw, 42px); letter-spacing: -.045em; margin: 0; }
#downloads .downloads-intro { font-size: 12px; line-height: 1.8; color: #a9b0b4; margin: 0; }
#downloads .app-directory h4 { font-size: 26px; font-weight: 600; letter-spacing: -.035em; margin: 14px 0; }
#downloads .download-buttons { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; padding-block: 12px; }
#apps #downloads .store-download { display: inline-flex; flex: 0 0 auto; align-items: center; width: auto; margin: 0; padding: 0; border: 0; border-radius: 7px; background: transparent; line-height: 1; }
#apps #downloads .store-download:hover { background: transparent; }
#apps #downloads .store-badge { display: block; width: auto; height: 44px; max-width: 100%; }
#apps #downloads .store-download:focus-visible { outline: 2px solid #ffbc38; outline-offset: 4px; }
@media (min-width: 901px) and (max-width: 1150px) {
  .experience-home .site-header, .site-page .site-header { gap: 16px; }
  .experience-home .site-header .desktop-nav, .site-page .site-header .desktop-nav { gap: 14px; }
  .experience-home .site-header .desktop-nav a, .site-page .site-header .desktop-nav a { font-size: 12px; }
  .experience-home .site-header .header-actions, .site-page .site-header .header-actions { gap: 16px; }
}
@media (max-width: 760px) {
  #downloads .platform-apps-heading { display: block; }
  #downloads .downloads-intro { margin-top: 14px; }
}
