/* Marketing entry points only. Never loaded by the operational workspace. */
:root {
  color-scheme: light;
  --ink: #20242c;
  --muted: #586477;
  --blue: #285cba;
  --violet: #6047aa;
  --line: #dde3eb;
  --canvas: #f5f6f8;
  --surface: #fff;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}
body.marketing-page {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
.marketing-page h1,
.marketing-page h2,
.marketing-page h3,
.marketing-page p,
.marketing-page figure {
  margin: 0;
}
.marketing-page h1,
.marketing-page h2,
.marketing-page h3 {
  color: #192537;
  line-height: 1.13;
  letter-spacing: -0.045em;
  text-wrap: balance;
}
.marketing-page h1 {
  font-size: clamp(2.5rem, 4.4vw, 4.15rem);
  font-weight: 650;
}
.marketing-page h2 {
  font-size: clamp(2rem, 3.05vw, 2.85rem);
  font-weight: 640;
}
.marketing-page h3 {
  font-size: 1.6rem;
  letter-spacing: -0.025em;
}
.marketing-page a {
  color: var(--blue);
  text-underline-offset: 0.22em;
}
.marketing-page a:hover {
  text-decoration: underline;
}
.marketing-page button,
.marketing-page textarea {
  font: inherit;
}
.marketing-page button,
.marketing-page summary {
  cursor: pointer;
}
.marketing-page button:disabled {
  cursor: wait;
  opacity: 0.65;
}
.marketing-page img {
  display: block;
  max-width: 100%;
}
.marketing-page :focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 5px;
}
.marketing-page [hidden] {
  display: none !important;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.site-skip-link {
  position: fixed;
  left: 1rem;
  top: -6rem;
  z-index: 100;
  background: white;
  padding: 1rem;
}
.site-skip-link:focus {
  top: 1rem;
}
.section-wrap {
  width: min(1320px, calc(100% - 112px));
  margin-inline: auto;
}
.section-space {
  padding-block: 96px;
}
.eyebrow {
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  margin-bottom: 20px !important;
}
.marketing-header {
  padding: 20px 40px;
  border-bottom: 1px solid var(--line);
  min-height: 85px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: white;
  position: relative;
  z-index: 20;
}
.marketing-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink) !important;
  text-decoration: none;
  font-size: 1.25rem;
  line-height: 1.2;
  letter-spacing: -0.045em;
  font-weight: 700;
  flex-shrink: 0;
}
.marketing-brand img {
  width: 40px;
  height: 36px;
  border-radius: 10px;
}
.brand-ai {
  color: var(--violet);
}
.marketing-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.9rem;
}
.marketing-nav a:not(.button) {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: #354256;
  text-decoration: none;
  gap: 7px;
}
.marketing-nav a:hover:not(.button) {
  color: var(--blue);
}
.marketing-nav a[aria-current="page"] {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 0.4em;
}
.marketing-nav .operations-link {
  border-left: 1px solid var(--line);
  padding-left: 25px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 48px;
  padding: 12px 21px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: var(--blue);
  color: white !important;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 650;
  line-height: 1.4;
  transition:
    background 0.18s,
    box-shadow 0.18s;
}
.button:hover {
  background: #204c99;
  text-decoration: none !important;
  box-shadow: 0 4px 12px #285cba20;
}
.button-small {
  min-height: 44px;
  padding: 10px 17px;
}
.button-secondary {
  color: var(--blue) !important;
  background: white;
  border-color: #b8c8df;
}
.button-secondary:hover {
  background: #eef3fc;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 650;
  font-size: 0.95rem;
  text-decoration: none;
  min-height: 44px;
}
.menu-toggle {
  background: white;
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 9px 13px;
  min-height: 44px;
  color: var(--ink);
}
.hero {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 6%;
  align-items: center;
  padding-block: 88px 96px;
}
.hero h1 span {
  color: var(--blue);
}
.hero-lede {
  color: var(--muted);
  max-width: 550px;
  margin-top: 27px !important;
  font-size: 1.13rem;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.hero-note {
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 17px !important;
}
.workflow-stage {
  position: relative;
  padding-bottom: 40px;
}
.workspace-preview {
  background: var(--surface);
  border: 1px solid #cdd7e5;
  border-radius: 12px;
  box-shadow: 0 22px 65px #233d6812;
  overflow: hidden;
  transform: rotate(-1deg);
}
.workspace-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 15px 21px;
  border-bottom: 1px solid var(--line);
  background: #f7f9fc;
}
.workspace-brand {
  font-weight: 700;
  color: #243854;
  letter-spacing: -0.025em;
}
.workspace-brand span {
  margin-left: 9px;
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.1em;
}
.example-tag {
  font-size: 0.75rem;
  color: #526278;
}
.workspace-heading {
  padding: 26px 24px 21px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.workspace-heading .eyebrow {
  font-size: 0.75rem;
  margin-bottom: 9px !important;
}
.workspace-heading h2 {
  font-size: 1.35rem;
  letter-spacing: -0.035em;
}
.step-count {
  color: #65758c;
  font-size: 0.8rem;
}
.workflow-preview-steps {
  list-style: none;
  padding: 0 17px 16px;
  margin: 0;
}
.workflow-preview-steps li {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-block: 5px;
  padding: 15px 9px;
  border-bottom: 1px solid #eef1f5;
}
.step-icon {
  color: #4d6891;
  width: 32px;
  font-size: 0.8rem;
  text-align: center;
}
.workflow-preview-steps strong {
  font-size: 0.95rem;
  color: #243854;
  font-weight: 600;
}
.workflow-preview-steps small {
  display: block;
  font-size: 0.875rem;
  color: #657185;
  line-height: 1.5;
  margin-top: 2px;
}
.workflow-preview-steps .review-step {
  background: #edf3ff;
  border: 1px solid #d3e0f8;
  border-radius: 7px;
}
.state-label {
  font-size: 0.75rem;
  line-height: 1.4;
  margin-left: auto;
  padding: 5px 7px;
  border-radius: 4px;
  background: #dce8fd;
  color: #254f90;
  text-align: center;
}
.workspace-bottom {
  padding: 13px 21px;
  border-top: 1px solid var(--line);
  font-size: 0.75rem;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #596b80;
}
.workspace-bottom a {
  font-weight: 600;
  white-space: nowrap;
}
.control-note {
  position: absolute;
  right: 18px;
  bottom: 0;
  display: flex;
  gap: 14px;
  align-items: center;
  border: 1px solid var(--line);
  background: #fff;
  padding: 17px 23px;
  border-radius: 8px;
  box-shadow: 0 10px 25px #1a30500b;
  font-size: 0.875rem;
  line-height: 1.6;
}
.control-note > span {
  background: #eaf3f0;
  color: #247157;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.principle-strip {
  border-block: 1px solid var(--line);
  background: var(--canvas);
}
.principle-strip .section-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 24px;
}
.principle-strip span {
  font-size: 0.75rem;
  color: #627084;
  font-weight: 700;
  letter-spacing: 0.09em;
}
.principle-strip p {
  font-size: 0.9rem;
  color: #34445a;
}
.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}
.section-heading > p:last-child:not(.eyebrow) {
  color: var(--muted);
  margin-top: 23px;
  max-width: 650px;
}
.workflow-tabs {
  display: flex;
  border-bottom: 1px solid var(--line);
  gap: 20px;
}
.workflow-tabs button {
  color: #657084;
  background: none;
  border: 0;
  border-bottom: 3px solid transparent;
  padding: 19px 22px;
  min-height: 54px;
  font-size: 0.8rem;
  text-align: left;
}
.workflow-tabs button span {
  font-size: 1rem;
  margin-left: 12px;
  color: var(--ink);
}
.workflow-tabs button[aria-selected="true"] {
  border-bottom-color: var(--blue);
  color: var(--blue);
  background: #f6f8fd;
}
.workflow-tabs button[aria-selected="true"] span {
  color: var(--blue);
  font-weight: 650;
}
.workflow-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9%;
  padding: 44px;
  background: var(--canvas);
  border-radius: 0 0 8px 8px;
  border-bottom: 1px solid var(--line);
}
.workflow-panel h3 {
  max-width: 490px;
  margin-bottom: 20px;
  font-size: 1.85rem;
}
.workflow-panel > div > p:not(.eyebrow):not(.micro-label) {
  color: var(--muted);
  margin-bottom: 22px;
}
.workflow-panel .eyebrow {
  font-size: 0.75rem;
}
.micro-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #53647b;
  font-weight: 650;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 17px 0 22px;
}
.check-list li {
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
  font-size: 0.97rem;
}
.check-list li::before {
  content: "✓";
  color: #326790;
  margin-right: 12px;
}
.takeaway {
  border-left: 3px solid var(--blue);
  padding-left: 18px;
  font-size: 0.9rem;
}
.takeaway strong {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 5px;
}
.takeaway p {
  color: var(--muted);
}
.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.section-note {
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 22px !important;
  max-width: 900px;
}
.proof-section {
  background: #eef3f9;
  border-block: 1px solid #e0e7f0;
}
.split-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 40px;
}
.split-heading > p {
  font-size: 0.95rem;
  color: #263b56;
  max-width: 310px;
}
.split-heading > p span {
  display: block;
  font-size: 0.875rem;
  color: #5d6d81;
  margin-top: 9px;
}
.proof-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.proof-comparison figure {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid #d4deeb;
  background: white;
}
.proof-comparison figcaption {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 19px;
  font-size: 0.875rem;
  color: #34465e;
  border-bottom: 1px solid var(--line);
}
.proof-comparison figcaption span {
  color: #61728b;
}
.proof-comparison img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.44;
  object-fit: cover;
  object-position: top;
}
.proof-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 28px;
}
.proof-summary p {
  font-size: 0.9rem;
  color: #59697e;
}
.proof-summary strong {
  display: inline-block;
  color: #253c59;
  margin-bottom: 8px;
}
.proof-summary .text-link {
  grid-column: 1/-1;
  justify-self: start;
}
.permission-layout {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 10%;
  align-items: start;
}
.permission-explainer > p:not(.micro-label) {
  color: var(--muted);
  margin-block: 24px;
  max-width: 370px;
}
.compact-loop {
  list-style: none;
  padding: 0;
  margin: 18px 0;
  border-left: 1px solid #c6d5e9;
}
.compact-loop li {
  position: relative;
  padding: 9px 0 9px 22px;
  font-size: 1rem;
  color: #344b6d;
}
.compact-loop li::before {
  content: "";
  position: absolute;
  left: -4px;
  top: 21px;
  width: 7px;
  height: 7px;
  background: #708fbd;
  border-radius: 50%;
}
.permission-sheet {
  border: 1px solid #cfd9e6;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 40px #23334f08;
}
.sheet-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 22px 26px;
  background: #f5f7fb;
}
.sheet-heading h3 {
  font-size: 1.15rem;
  letter-spacing: -0.025em;
}
.sheet-heading > span {
  font-size: 0.75rem;
  letter-spacing: 0.09em;
  color: #60748f;
}
.permission-sheet dl {
  margin: 0;
  padding: 8px 26px;
}
.permission-sheet dl > div {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 15px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}
.permission-sheet dl > div:last-child {
  border: 0;
}
.permission-sheet dt {
  font-size: 0.875rem;
  font-weight: 650;
  color: #2c527f;
}
.permission-sheet dd {
  margin: 0;
  font-size: 0.9rem;
  color: #526179;
}
.sheet-footer {
  padding: 20px 26px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}
.sheet-footer > span {
  font-size: 0.875rem;
  color: var(--muted);
}
.tools-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9%;
  padding-block: 56px;
  border-block: 1px solid var(--line);
}
.tools-section h2 {
  font-size: 2rem;
}
.tools-section > div > p:last-child {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 22px;
  max-width: 470px;
}
.tool-groups > div {
  padding-block: 12px 18px;
  border-bottom: 1px solid var(--line);
}
.tool-groups > div:last-child {
  border: 0;
}
.tool-groups span {
  color: var(--muted);
  font-size: 0.875rem;
}
.tool-groups p {
  margin-top: 5px;
  font-size: 1rem;
  color: #324966;
}
.tool-groups b {
  color: #9ba8ba;
  margin: 0 6px;
}
.implementation-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0;
  margin: 0;
  list-style: none;
  gap: 32px;
}
.implementation-grid li {
  border-top: 2px solid #b7c8e0;
  padding-top: 21px;
}
.implementation-grid li > span {
  font-size: 0.9rem;
  color: var(--blue);
}
.implementation-grid h3 {
  font-size: 1.25rem;
  margin: 23px 0 16px;
}
.implementation-grid p {
  font-size: 0.95rem;
  color: var(--muted);
}
.implementation-grid small {
  display: block;
  font-size: 0.875rem;
  color: #355780;
  margin-top: 22px;
}
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9%;
  border-block: 1px solid var(--line);
  padding-block: 58px;
}
.about-section h2 {
  font-size: 2rem;
}
.about-section > div > p:last-child {
  margin-top: 23px;
  color: var(--muted);
  max-width: 430px;
}
.people {
  display: grid;
  gap: 30px;
}
.people article {
  display: flex;
  align-items: center;
  gap: 23px;
}
.people img {
  width: 82px;
  height: 82px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--line);
}
.people h3 {
  font-size: 1.2rem;
}
.people p,
.people a {
  font-size: 0.875rem;
  margin-top: 5px;
}
.people p {
  color: var(--muted);
}
.questions-section {
  max-width: 1050px;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  padding: 23px 32px 23px 0;
  font-weight: 600;
  font-size: 1rem;
  color: #273b56;
}
.faq-list details > p {
  padding: 0 26px 24px 18px;
  color: var(--muted);
  max-width: 880px;
}
.assistant-disclosure {
  margin-top: 42px;
  border: 1px solid #cfdced;
  border-radius: 8px;
  background: #f7f9fd;
}
.assistant-disclosure > summary {
  padding: 25px;
  color: var(--blue);
  font-size: 1rem;
  font-weight: 600;
}
.assistant-disclosure > summary > span:first-child {
  color: #53657d;
  margin-right: 16px;
  font-weight: 400;
}
.assistant-disclosure > summary > span:last-child {
  float: right;
}
.prompt-panel {
  padding: 0 25px 25px;
}
.assistant-intro,
.assistant-fallback {
  color: var(--muted);
  font-size: 0.9rem;
}
.chat-output {
  min-height: 90px;
  max-height: 400px;
  overflow-y: auto;
  margin-block: 20px;
  font-size: 0.95rem;
}
.chat-message {
  padding: 15px 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  margin-block: 10px;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}
.user-message {
  background: #edf3fe;
}
.assistant-label {
  display: block;
  color: var(--blue);
  font-size: 0.875rem;
  margin-bottom: 8px;
}
.chat-form {
  display: flex;
  gap: 12px;
  align-items: flex-end;
}
.chat-form textarea {
  width: 100%;
  min-height: 75px;
  max-height: 180px;
  resize: vertical;
  border: 1px solid #acbdd4;
  border-radius: 5px;
  padding: 12px;
  background: white;
  color: var(--ink);
  font-size: 1rem;
}
.prompt-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-block: 18px;
}
.prompt-chip {
  min-height: 44px;
  padding: 9px 12px;
  background: #fff;
  border: 1px solid #c9d6e7;
  border-radius: 5px;
  color: #365882;
  font-size: 0.875rem !important;
}
.prompt-chip:hover {
  background: #eef3fd;
}
.contact-section {
  background: #edf3fc;
  border-top: 1px solid #dce6f4;
  padding-block: 72px;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 8%;
  align-items: center;
}
.contact-layout h2 {
  font-size: clamp(2rem, 3vw, 2.7rem);
}
.contact-layout > div > p:last-child {
  color: var(--muted);
  max-width: 580px;
  margin-top: 23px;
}
.contact-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
}
.contact-email {
  color: #304664 !important;
}
.marketing-footer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
  padding-block: 35px;
}
.marketing-footer .marketing-brand {
  font-size: 1.1rem;
  gap: 0;
}
.marketing-footer p {
  font-size: 0.875rem;
  color: var(--muted);
}
.marketing-footer nav {
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.875rem;
}
.marketing-footer nav a {
  color: #53657d;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.legal-page {
  overflow-wrap: anywhere;
  width: min(900px, calc(100% - 56px));
  margin: auto;
  padding-block: 65px;
}
.legal-header {
  border-bottom: 1px solid var(--line);
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.legal-header h1 {
  font-size: 2.7rem;
  margin-bottom: 20px;
}
.legal-back-link {
  display: inline-block;
  margin-bottom: 25px;
}
.legal-panel h2 {
  font-size: 1.5rem;
  margin: 32px 0 15px;
}
.legal-panel p {
  margin: 15px 0;
  color: var(--muted);
}
.legal-panel li {
  margin-block: 9px;
  color: var(--muted);
}
.legal-page .site-footer {
  border-top: 1px solid var(--line);
  margin-top: 40px;
  padding-top: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  font-size: 0.9rem;
}
@media (min-width: 1600px) {
  .hero {
    padding-block: 105px;
  }
}
@media (max-width: 1150px) {
  .marketing-header {
    padding: 17px 28px;
    gap: 20px;
  }
  .marketing-nav {
    gap: 16px;
    font-size: 0.875rem;
  }
  .marketing-nav .operations-link {
    padding-left: 16px;
  }
  .section-wrap {
    width: calc(100% - 64px);
  }
  .hero {
    gap: 4%;
  }
  .hero-actions {
    gap: 12px;
  }
  .workspace-brand span {
    display: none;
  }
  .state-label {
    display: none;
  }
  .workspace-bottom {
    flex-direction: column;
    gap: 4px;
  }
  .workflow-panel {
    padding: 32px;
    gap: 6%;
  }
}
@media (max-width: 980px) {
  .marketing-header {
    flex-wrap: wrap;
  }
  .menu-toggle:not([hidden]) {
    display: block;
  }
  .marketing-nav {
    width: 100%;
    flex-wrap: wrap;
    gap: 12px 24px;
  }
  .marketing-nav.is-enhanced:not(.is-open) {
    display: none;
  }
  .marketing-nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding-block: 14px 5px;
  }
  .marketing-nav a:not(.button) {
    font-size: 1rem;
  }
  .marketing-nav .operations-link {
    border-left: 0;
    padding-left: 0;
  }
  .hero {
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    padding-block: 64px;
  }
  .hero h1 {
    font-size: 2.8rem;
  }
  .hero-lede {
    font-size: 1rem;
  }
  .workspace-heading {
    padding: 22px 18px;
  }
  .workspace-heading h2 {
    font-size: 1.2rem;
  }
  .workflow-preview-steps {
    padding-inline: 10px;
  }
  .workflow-preview-steps li {
    gap: 8px;
  }
  .workflow-preview-steps strong {
    font-size: 0.875rem;
  }
  .control-note {
    padding: 12px 16px;
    font-size: 0.875rem;
    right: 4px;
  }
  .principle-strip .section-wrap {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 12px 28px;
  }
  .principle-strip span {
    width: 100%;
  }
  .section-space {
    padding-block: 72px;
  }
  .split-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }
  .implementation-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }
  .permission-layout {
    gap: 6%;
    grid-template-columns: 0.65fr 1fr;
  }
  .sheet-heading {
    flex-wrap: wrap;
  }
  .permission-sheet dl > div {
    grid-template-columns: 90px 1fr;
    gap: 10px;
  }
  .marketing-footer nav {
    margin-left: 0;
    width: 100%;
  }
}
@media (max-width: 700px) {
  html {
    scroll-padding-top: 20px;
  }
  .section-wrap {
    width: calc(100% - 40px);
  }
  .marketing-header {
    padding: 16px 20px;
    min-height: 75px;
  }
  .marketing-brand {
    font-size: 1.1rem;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-block: 50px 40px;
  }
  .hero h1 {
    font-size: clamp(2.45rem, 9vw, 3.2rem);
  }
  .hero-lede {
    font-size: 1.065rem;
    margin-top: 22px !important;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    margin-top: 25px;
  }
  .hero-note {
    margin-top: 10px !important;
  }
  .workspace-preview {
    transform: none;
  }
  .workspace-topline {
    padding: 13px 16px;
  }
  .workspace-heading {
    padding: 22px 18px 12px;
  }
  .workspace-heading h2 {
    font-size: 1.3rem;
  }
  .workflow-preview-steps strong {
    font-size: 0.9rem;
  }
  .workspace-bottom {
    flex-direction: row;
    font-size: 0.75rem;
    flex-wrap: wrap;
  }
  .control-note {
    right: 10px;
  }
  .principle-strip .section-wrap {
    padding-block: 22px;
    gap: 8px 20px;
  }
  .principle-strip p {
    font-size: 0.875rem;
  }
  .section-space {
    padding-block: 58px;
  }
  .eyebrow {
    font-size: 0.75rem;
    margin-bottom: 17px !important;
  }
  .section-heading {
    margin-bottom: 28px;
  }
  .marketing-page h2 {
    font-size: 2rem;
  }
  .workflow-tabs {
    gap: 0;
  }
  .workflow-tabs button {
    flex: 1;
    padding: 12px 8px;
    font-size: 0.75rem;
  }
  .workflow-tabs button span {
    display: block;
    margin: 5px 0 0;
    font-size: 0.875rem;
  }
  .workflow-panel {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 26px 21px;
  }
  .workflow-panel h3 {
    font-size: 1.6rem;
  }
  .proof-comparison {
    grid-template-columns: 1fr;
    gap: 23px;
  }
  .proof-summary {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .proof-comparison figcaption {
    font-size: 0.875rem;
    padding: 12px 14px;
  }
  .permission-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .compact-loop {
    display: flex;
    flex-wrap: wrap;
    border: 0;
    gap: 4px 10px;
  }
  .compact-loop li {
    font-size: 0.875rem;
    padding: 6px 11px;
    border: 1px solid var(--line);
    border-radius: 4px;
  }
  .compact-loop li::before {
    display: none;
  }
  .permission-explainer > p:not(.micro-label) {
    margin: 18px 0 12px;
  }
  .sheet-heading {
    padding: 20px;
  }
  .permission-sheet dl {
    padding: 6px 20px;
  }
  .permission-sheet dl > div {
    grid-template-columns: 80px 1fr;
    gap: 14px;
  }
  .sheet-footer {
    padding: 20px;
  }
  .tools-section,
  .about-section,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .tools-section,
  .about-section {
    padding-block: 43px;
  }
  .implementation-grid {
    gap: 28px 22px;
  }
  .implementation-grid h3 {
    font-size: 1.1rem;
    margin-top: 15px;
  }
  .implementation-grid p {
    font-size: 0.9rem;
  }
  .people {
    gap: 26px;
  }
  .people img {
    width: 72px;
    height: 72px;
  }
  .faq-list summary {
    font-size: 0.95rem;
    padding-block: 21px;
  }
  .faq-list details > p {
    font-size: 0.95rem;
  }
  .assistant-disclosure > summary {
    padding: 20px;
  }
  .assistant-disclosure > summary > span:first-child {
    display: block;
    margin-bottom: 5px;
  }
  .prompt-panel {
    padding: 0 18px 20px;
  }
  .chat-form {
    flex-direction: column;
    align-items: stretch;
  }
  .contact-section {
    padding-block: 52px;
  }
  .contact-actions {
    font-size: 0.875rem;
    overflow-wrap: anywhere;
  }
  .marketing-footer {
    gap: 18px;
    padding-block: 28px;
  }
  .marketing-footer nav {
    gap: 8px 18px;
  }
  .legal-page {
    width: calc(100% - 40px);
    padding-block: 45px;
  }
}
.workflow-tabs button {
  min-width: 0;
  flex: 1;
}
.workflow-tabs button span {
  overflow-wrap: anywhere;
}
.hero > * {
  min-width: 0;
}
@media (max-width: 700px) {
  .marketing-page .workspace-heading h2 {
    font-size: 1.3rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
