:root {
  --ink: #151515;
  --canvas: #f7f7f6;
  --line: #e7e7e4;
  --blue: #2868ed;
  --muted: #737373;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: Manrope, sans-serif;
}
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}
.nav-shell,
.mobile-menu {
  border: 1px solid rgba(231, 231, 228, 0.86);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.055);
  backdrop-filter: blur(18px);
  border-radius: 16px;
}
.brand-mark {
  display: block;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
}
.brand-logo {
  display: block;
  width: 132px;
  height: auto;
}
.nav-link,
.mobile-menu a {
  transition: color 0.2s;
}
.nav-link:hover {
  color: var(--ink);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 10px;
  padding: 0.7rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.2s;
}
.button:hover {
  transform: translateY(-1px);
}
.button-dark {
  background: var(--ink);
  color: #fff;
}
.button-dark:hover {
  background: #000;
  box-shadow: 0 7px 18px #0002;
}
.button-ghost {
  color: #525252;
}
.button-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 10px 28px rgba(40, 104, 237, 0.22);
}
.button-primary:hover {
  background: #1d5bd4;
}
.button-light {
  background: #fff;
  border: 1px solid var(--line);
}
.button-large {
  padding: 0.9rem 1.3rem;
  border-radius: 11px;
}
.button-white {
  background: #fff;
  color: #151515;
}
.language-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-right: 3px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f6f6f4;
  font-size: 9px;
  font-weight: 700;
}
.language-switch a,
.language-switch span {
  padding: 5px 7px;
  border-radius: 5px;
  color: #999;
}
.language-switch .active {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 1px 4px #0000000c;
}
.button-blue-ghost {
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.play-dot {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: #f1f1ef;
  font-size: 8px;
}
.hero-secondary-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  color: #2e69db;
  font-size: 13px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(40, 104, 237, 0.35);
  transition: text-decoration-color 0.2s;
}
.hero-secondary-link:hover {
  text-decoration-color: currentColor;
}
.menu-button {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  padding: 10px;
}
.menu-button span {
  display: block;
  height: 1.5px;
  margin: 4px 0;
  background: #151515;
}
.mobile-menu > a {
  display: block;
  padding: 10px;
  border-radius: 8px;
}
.hero {
  background: radial-gradient(
    circle at 50% 25%,
    #fff 0,
    rgba(255, 255, 255, 0.7) 26%,
    transparent 57%
  );
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.orb-one {
  width: 360px;
  height: 360px;
  left: -150px;
  top: 260px;
  background: rgba(74, 137, 255, 0.13);
}
.orb-two {
  width: 440px;
  height: 440px;
  right: -220px;
  top: 180px;
  background: rgba(140, 91, 255, 0.1);
}
.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 12px;
  border: 1px solid #dfe6f7;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  color: #42628f;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3ccf91;
  box-shadow: 0 0 0 5px rgba(60, 207, 145, 0.12);
}
.hero-title {
  margin: 24px 0 0;
  font-size: clamp(3rem, 7vw, 6.4rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.065em;
}
.hero-title span,
.section-heading h2 span,
.feature-copy h2 span {
  color: #9a9a96;
}
.product-stage {
  position: relative;
  margin: 80px auto 0;
  max-width: 1180px;
}
.stage-glow {
  position: absolute;
  inset: 8% 5% -5%;
  background: linear-gradient(
    110deg,
    rgba(48, 112, 255, 0.32),
    rgba(122, 85, 255, 0.2)
  );
  filter: blur(45px);
}
.app-window {
  position: relative;
  overflow: hidden;
  border: 1px solid #dededb;
  border-radius: 20px;
  background: white;
  box-shadow:
    0 35px 90px rgba(23, 31, 48, 0.16),
    0 3px 10px #0001;
}
.app-topbar {
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  border-bottom: 1px solid var(--line);
  background: #fbfbfa;
}
.app-topbar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d9d9d5;
}
.app-address {
  width: 240px;
  padding: 5px 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: white;
  text-align: center;
  font-size: 10px;
  color: #8b8b87;
}
.lock {
  font-size: 7px;
  color: #4fb886;
}
.app-body {
  display: grid;
  grid-template-columns: 190px 1fr;
  min-height: 510px;
}
.demo-sidebar {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  padding: 18px 14px;
  background: #fbfbfa;
}
.demo-site {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px;
}
.demo-site > div {
  flex: 1;
  min-width: 0;
}
.demo-site b,
.demo-user b {
  display: block;
  font-size: 10px;
}
.demo-site small,
.demo-user small {
  display: block;
  margin-top: 2px;
  font-size: 8px;
  color: #aaa;
}
.mini-logo {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  font-size: 11px;
}
.demo-nav {
  display: grid;
  gap: 3px;
  margin-top: 22px;
}
.demo-nav span {
  display: flex;
  align-items: center;
  gap: 9px;
  border-radius: 7px;
  padding: 8px 10px;
  color: #858581;
  font-size: 10px;
}
.demo-nav span.active {
  background: #ededeb;
  color: #151515;
  font-weight: 600;
}
.demo-nav i {
  width: 13px;
  text-align: center;
  font-style: normal;
}
.demo-user {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding: 10px 4px;
  border-top: 1px solid var(--line);
}
.demo-user > span {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 50%;
  background: #e5e5e2;
  font-size: 8px;
}
.demo-main {
  padding: 35px;
  background: #f8f8f7;
}
.demo-heading {
  display: flex;
  justify-content: space-between;
  align-items: start;
}
.demo-heading small,
.analytics-top small {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.13em;
  color: #9b9b97;
}
.demo-heading h2 {
  margin: 6px 0 3px;
  font-size: 20px;
  letter-spacing: -0.04em;
}
.demo-heading p {
  font-size: 9px;
  color: #999;
}
.demo-heading button {
  border: 1px solid var(--line);
  border-radius: 7px;
  background: white;
  padding: 7px 10px;
  font-size: 8px;
}
.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 24px;
}
.metric-grid article,
.activity-card,
.bots-card {
  border: 1px solid var(--line);
  border-radius: 11px;
  background: white;
  padding: 14px;
}
.metric-icon {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 7px;
  font-size: 10px;
}
.metric-icon.blue {
  background: #eaf1ff;
  color: #2868ed;
}
.metric-icon.violet {
  background: #f1ebff;
  color: #7654df;
}
.metric-icon.green {
  background: #e8f8f0;
  color: #22a66b;
}
.metric-grid article > small {
  display: block;
  margin-top: 12px;
  font-size: 7px;
  font-weight: 700;
  color: #aaa;
  letter-spacing: 0.08em;
}
.metric-grid strong {
  display: block;
  margin-top: 4px;
  font-size: 21px;
}
.metric-grid p {
  font-size: 7px;
  color: #aaa;
}
.metric-grid p span {
  color: #22a66b;
}
.metric-grid .status-text {
  font-size: 15px;
  margin-top: 7px;
}
.demo-lower {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr;
  gap: 10px;
  margin-top: 10px;
}
.card-heading,
.analytics-top {
  display: flex;
  justify-content: space-between;
}
.card-heading b,
.bots-card > b {
  display: block;
  font-size: 10px;
}
.card-heading small,
.bots-card > small {
  display: block;
  margin-top: 3px;
  font-size: 7px;
  color: #aaa;
}
.card-heading > span {
  font-size: 7px;
  color: #999;
}
.chart {
  position: relative;
  height: 115px;
  margin-top: 15px;
  border-bottom: 1px solid var(--line);
  background: repeating-linear-gradient(
    to bottom,
    #fff 0,
    #fff 28px,
    #f0f0ed 29px
  );
}
.chart i {
  position: absolute;
  bottom: 0;
  width: 3%;
  border-radius: 2px 2px 0 0;
  background: linear-gradient(#7759e5, #9f8bed);
}
.chart-line {
  position: absolute;
  inset: 25% 0 14%;
  border-top: 1px dashed #b7b7b3;
  transform: skewY(-7deg);
}
.chart-legend {
  display: flex;
  gap: 16px;
  margin-top: 9px;
  font-size: 7px;
  color: #888;
}
.dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
}
.violet-dot {
  background: #8063e5;
}
.gray-dot {
  background: #c8c8c4;
}
.bots-card ul {
  margin: 11px 0 0;
  padding: 0;
  list-style: none;
}
.bots-card li {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  align-items: center;
  gap: 7px;
  padding: 8px 0;
  border-top: 1px solid #f0f0ee;
}
.bot-logo {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 6px;
  font-size: 7px;
  font-weight: 700;
}
.bot-logo.openai {
  background: #e9f2f0;
}
.bot-logo.claude {
  background: #f5e9df;
}
.bot-logo.perplexity {
  background: #e5f5f5;
}
.bots-card li b {
  display: block;
  font-size: 8px;
}
.bots-card li small {
  display: block;
  font-size: 6px;
  color: #aaa;
}
.bots-card li strong {
  font-size: 8px;
}
.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 40px #1a28411c;
  backdrop-filter: blur(12px);
}
.floating-card b {
  display: block;
  font-size: 10px;
}
.floating-card small {
  display: block;
  margin-top: 2px;
  font-size: 7px;
  color: #999;
}
.floating-left {
  left: -40px;
  bottom: 80px;
}
.floating-right {
  right: -36px;
  top: 95px;
}
.check-ring,
.spark {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: #e7f8ef;
  color: #27a66b;
  font-size: 11px;
}
.spark {
  background: #eee9ff;
  color: #7157da;
}
.agent-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  color: #777;
  font-size: 15px;
  font-weight: 600;
}
.agent-row span {
  display: flex;
  align-items: center;
  gap: 7px;
}
.anthropic-mark,
.perplexity-mark,
.google-mark,
.cohere-mark {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 6px;
  background: #eee;
  font-size: 9px;
}
.perplexity-mark {
  background: #dff4f2;
}
.google-mark {
  color: #4285f4;
  background: transparent;
  font-size: 18px;
}
.cohere-mark {
  background: #d8efe8;
  color: #0d7c65;
}
.section-pad {
  padding-top: 120px;
  padding-bottom: 120px;
}
.section-heading {
  max-width: 720px;
}
.section-heading .eyebrow,
.feature-copy .eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #2e69db;
}
.section-heading h2,
.feature-copy h2 {
  margin: 16px 0 0;
  font-size: clamp(2.6rem, 5vw, 4.7rem);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.055em;
}
.section-heading p,
.feature-copy > p {
  max-width: 630px;
  margin-top: 22px;
  font-size: 17px;
  line-height: 1.8;
  color: #70706c;
}
.comparison-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.compare-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
  box-shadow: 0 2px 5px #00000008;
}
.compare-label {
  display: flex;
  justify-content: space-between;
  padding: 17px 20px;
  border-bottom: 1px solid var(--line);
}
.compare-label span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.11em;
}
.compare-label small {
  font-size: 11px;
  color: #aaa;
}
.code-noise,
.clean-doc {
  min-height: 330px;
  padding: 34px;
  font:
    13px/1.95 "DM Mono",
    monospace;
}
.code-noise {
  display: flex;
  flex-direction: column;
  color: #83837f;
  background: linear-gradient(135deg, #fafafa, #f4f4f2);
}
.indent {
  padding-left: 24px;
}
.indent2 {
  padding-left: 48px;
}
.red-code {
  color: #b78d8d;
}
.muted-code {
  color: #c6c6c2;
}
.clean-doc {
  position: relative;
  background: #fcfcfb;
}
.doc-tag {
  position: absolute;
  right: 22px;
  top: 20px;
  padding: 5px 8px;
  border-radius: 5px;
  background: #ece8ff;
  color: #6551c7;
  font-size: 8px;
  font-weight: 600;
}
.clean-doc h3 {
  margin: 0;
  color: #315dba;
  font-size: 16px;
}
.clean-doc h4 {
  margin: 24px 0 5px;
  color: #315dba;
  font-size: 13px;
}
.clean-doc p,
.clean-doc li {
  color: #555;
}
.clean-doc ul {
  padding: 0;
  list-style: none;
}
.doc-meta {
  display: flex;
  gap: 15px;
  margin-top: 25px;
  color: #aaa;
  font-size: 8px;
}
.compare-result {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  border-top: 1px solid var(--line);
}
.compare-result > span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
}
.bad-result {
  background: #fff9f7;
}
.bad-result > span {
  background: #fde9e3;
  color: #cf6046;
}
.good-result {
  background: #f4fbf7;
}
.good-result > span {
  background: #dff5e9;
  color: #209b62;
}
.compare-result b,
.compare-result small {
  display: block;
  font-size: 12px;
}
.compare-result small {
  margin-top: 2px;
  color: #999;
  font-size: 10px;
}
.transform-badge {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 47%;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 6px solid var(--canvas);
  border-radius: 50%;
  background: var(--ink);
  color: white;
  transform: translate(-50%, -50%);
}
.dark-section {
  position: relative;
  background: #151515;
  color: #fff;
}
.light-heading .eyebrow {
  color: #74a3ff;
}
.light-heading h2 span {
  color: #6c6c68;
}
.light-heading p {
  color: #aaa;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.step-card {
  position: relative;
  border: 1px solid #30302e;
  border-radius: 18px;
  background: #1b1b1a;
  padding: 18px 18px 28px;
}
.step-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font: 11px "DM Mono";
  color: #686865;
}
.step-visual {
  position: relative;
  height: 225px;
  overflow: hidden;
  border: 1px solid #30302e;
  border-radius: 12px;
  background: #181817;
}
.step-card h3 {
  margin: 25px 6px 0;
  font-size: 20px;
  letter-spacing: -0.03em;
}
.step-card p {
  margin: 10px 6px 0;
  color: #999;
  font-size: 13px;
  line-height: 1.7;
}
.domain-chip {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 42%;
  display: flex;
  width: 72%;
  align-items: center;
  gap: 7px;
  padding: 12px 14px;
  border: 1px solid #3a3a38;
  border-radius: 9px;
  background: #232321;
  font: 10px "DM Mono";
  transform: translate(-50%, -50%);
}
.domain-chip i {
  color: #4ba977;
}
.domain-chip span {
  margin-left: auto;
  color: #57c98c;
}
.scan-line {
  position: absolute;
  left: 14%;
  right: 14%;
  top: 58%;
  height: 1px;
  background: #4a7ee8;
  box-shadow: 0 0 15px #4a7ee8;
  animation: scan 3s infinite;
}
.url-lines {
  position: absolute;
  inset: 70% 15% 10%;
  display: grid;
  gap: 6px;
}
.url-lines i {
  height: 3px;
  border-radius: 3px;
  background: #2f2f2d;
}
.url-lines i:nth-child(2) {
  width: 75%;
}
.url-lines i:nth-child(3) {
  width: 88%;
}
.url-lines i:nth-child(4) {
  width: 60%;
}
@keyframes scan {
  0%,
  100% {
    transform: translateY(-75px);
    opacity: 0;
  }
  50% {
    transform: translateY(0);
    opacity: 1;
  }
}
.process-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}
.page-stack,
.format-stack {
  position: relative;
  width: 70px;
  height: 90px;
}
.page-stack i {
  position: absolute;
  inset: 0;
  border: 1px solid #3d3d3a;
  border-radius: 8px;
  background: #232321;
}
.page-stack i:nth-child(1) {
  transform: translate(-12px, 12px);
  opacity: 0.45;
}
.page-stack i:nth-child(2) {
  transform: translate(-6px, 6px);
  opacity: 0.7;
}
.page-stack i:nth-child(3):after {
  content: "";
  position: absolute;
  inset: 20px 12px;
  background: repeating-linear-gradient(
    to bottom,
    #4a4a46 0,
    #4a4a46 3px,
    transparent 3px,
    transparent 12px
  );
}
.process-arrow {
  color: #5e88e2;
}
.format-stack {
  display: grid;
  gap: 7px;
}
.format-stack span {
  display: grid;
  place-items: center;
  border: 1px solid #36528c;
  border-radius: 7px;
  background: #202a3d;
  color: #77a3ff;
  font: 12px "DM Mono";
}
.serve-visual .center-v {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 14px;
  background: #fff;
  color: #151515;
  font-size: 20px;
  font-weight: 700;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 45px #5a7eff40;
}
.ray {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, #4f7ee1, transparent);
  transform-origin: left;
}
.r1 {
  transform: rotate(-42deg);
}
.r2 {
  transform: rotate(0);
}
.r3 {
  transform: rotate(42deg);
}
.agent {
  position: absolute;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid #3a3a38;
  border-radius: 9px;
  background: #242422;
  font-size: 9px;
  font-weight: 600;
}
.a1 {
  right: 14%;
  top: 18%;
}
.a2 {
  right: 8%;
  top: 43%;
}
.a3 {
  right: 14%;
  bottom: 18%;
}
.feature-split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 100px;
}
.check-list {
  display: grid;
  gap: 18px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 13px;
}
.check-list li > span {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 50%;
  background: #e8f5ee;
  color: #249d67;
  font-size: 11px;
}
.check-list b,
.check-list small {
  display: block;
}
.check-list b {
  font-size: 14px;
}
.check-list small {
  margin-top: 3px;
  color: #999;
  font-size: 11px;
}
.format-window {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  box-shadow: 0 24px 70px rgba(32, 41, 61, 0.1);
}
.format-tabs {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 12px;
  border-bottom: 1px solid var(--line);
  background: #fafaf9;
}
.format-tabs button {
  padding: 7px 11px;
  border-radius: 7px;
  color: #999;
  font-size: 10px;
}
.format-tabs button.active {
  background: #ececeb;
  color: #151515;
  font-weight: 700;
}
.format-tabs span {
  margin-left: auto;
  padding: 5px 8px;
  border-radius: 999px;
  background: #e5f6ed;
  color: #23845a;
  font-size: 8px;
  font-weight: 700;
}
.code-panel {
  display: none;
  min-height: 405px;
  margin: 0;
  padding: 38px;
  white-space: pre-wrap;
  font:
    12px/2 "DM Mono",
    monospace;
  color: #555;
}
.code-panel.active {
  display: block;
}
.code-panel em {
  color: #9671d7;
  font-style: normal;
}
.code-panel b {
  color: #3071bc;
  font-weight: 400;
}
.code-panel strong {
  color: #161616;
  font-weight: 500;
}
.analytics-feature {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 90px;
}
.analytics-ui {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  box-shadow: 0 24px 70px rgba(32, 41, 61, 0.1);
}
.analytics-top {
  padding: 24px 26px;
  border-bottom: 1px solid var(--line);
}
.analytics-top h3 {
  margin-top: 6px;
  font-size: 18px;
}
.analytics-top > span {
  height: max-content;
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: #888;
  font-size: 9px;
}
.analytics-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--line);
}
.analytics-metrics > div {
  padding: 22px 26px;
}
.analytics-metrics > div + div {
  border-left: 1px solid var(--line);
}
.analytics-metrics small {
  display: block;
  color: #999;
  font-size: 8px;
  font-weight: 700;
}
.analytics-metrics strong {
  display: inline-block;
  margin-top: 7px;
  font-size: 27px;
}
.analytics-metrics span {
  margin-left: 10px;
  color: #27a66b;
  font-size: 9px;
}
.analytics-chart {
  position: relative;
  height: 190px;
  background: repeating-linear-gradient(
    to bottom,
    #fff 0,
    #fff 47px,
    #f1f1ef 48px
  );
}
.line-path {
  position: absolute;
  left: 3%;
  right: 3%;
  top: 50%;
  height: 70px;
  border-top: 3px solid #765cde;
  border-radius: 50%;
  transform: rotate(-8deg);
  box-shadow: 0 -12px 25px #765cde12;
}
.chart-pop {
  position: absolute;
  right: 23%;
  top: 20%;
  padding: 8px 10px;
  border-radius: 7px;
  background: #151515;
  color: white;
  font-size: 10px;
}
.chart-pop small {
  display: block;
  color: #aaa;
  font-size: 7px;
}
.chart-point {
  position: absolute;
  right: 27%;
  top: 48%;
  width: 9px;
  height: 9px;
  border: 2px solid white;
  border-radius: 50%;
  background: #755bda;
  box-shadow: 0 0 0 2px #755bda;
}
.mini-bots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.mini-bots span {
  padding: 15px 18px;
  color: #666;
  font-size: 9px;
}
.mini-bots span + span {
  border-left: 1px solid var(--line);
}
.mini-bots b {
  float: right;
  color: #151515;
}
.stat-note {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 30px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
}
.stat-note > span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 9px;
  background: #eee9ff;
  color: #7054d4;
}
.stat-note b,
.stat-note small {
  display: block;
  font-size: 12px;
}
.stat-note small {
  margin-top: 3px;
  color: #999;
  font-size: 10px;
}
.urgency-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 630px;
  margin-top: 24px;
  padding: 16px 18px;
  border: 1px solid #f4d9c6;
  border-radius: 12px;
  background: #fff7f1;
}
.urgency-note > span {
  display: grid;
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 8px;
  background: #ffe4d1;
  color: #b3492a;
  font-size: 13px;
  font-weight: 800;
}
.urgency-note p {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.7;
  color: #8a5b41;
}
.urgency-note b {
  color: #7a4326;
}
.urgency-note a {
  color: #a8431f;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
}
.compact {
  margin: auto;
  text-align: center;
}
.compact p {
  margin-left: auto;
  margin-right: auto;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.trust-grid article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fafaf9;
}
.trust-grid article > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fff;
  font-size: 18px;
}
.trust-grid h3 {
  margin: 24px 0 0;
  font-size: 16px;
}
.trust-grid p {
  margin: 10px 0 0;
  color: #777;
  font-size: 12px;
  line-height: 1.75;
}
.trusted-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.trusted-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fafaf9;
  text-decoration: none;
  color: inherit;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.trusted-card:hover {
  border-color: #d6d6d2;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px #1a28410f;
}
.trusted-card img {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
}
.trusted-card b {
  display: block;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.trusted-card small {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  color: #8a8a86;
}
.trusted-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-left: auto;
  white-space: nowrap;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #27a66b;
}
.trusted-badge i {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #27a66b;
}
.trusted-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.trusted-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 22px 0;
}
.trusted-divider span {
  height: 1px;
  flex: 1;
  background: var(--line);
}
.trusted-divider p {
  margin: 0;
  white-space: nowrap;
  font-size: 11px;
  font-weight: 600;
  color: #9a9a96;
}
.trusted-card-self {
  max-width: 420px;
  margin: 0 auto;
  border-style: dashed;
  background: #fff;
}
.trusted-badge-self {
  color: #9a9a96;
}
.trusted-badge-self i {
  background: #c8c8c4;
}
.journey-proof {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fafaf9;
  padding: 28px 26px;
}
.journey-steps {
  display: flex;
  align-items: stretch;
  gap: 14px;
}
.journey-step {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}
.journey-step b {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.journey-step small {
  font-size: 12px;
  line-height: 1.5;
  color: #8a8a86;
}
.journey-step small code {
  font-size: 11px;
  color: #6c6c68;
}
.journey-icon {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 6px;
  font-size: 11px;
  background: #eee;
}
.journey-arrow {
  flex-shrink: 0;
  align-self: center;
  color: #c8c8c4;
  font-size: 18px;
}
.journey-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  color: #8a8a86;
}
.journey-meta span {
  padding-left: 16px;
  border-left: 1px solid var(--line);
}
.journey-meta span:first-child {
  padding-left: 0;
  border-left: none;
}
.faq-list details {
  border-top: 1px solid var(--line);
}
.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  display: flex;
  cursor: pointer;
  list-style: none;
  align-items: center;
  justify-content: space-between;
  padding: 23px 0;
  font-size: 15px;
  font-weight: 600;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary span {
  font-size: 20px;
  font-weight: 400;
  transition: transform 0.2s;
}
.faq-list details[open] summary span {
  transform: rotate(45deg);
}
.faq-list details p {
  max-width: 680px;
  margin: -7px 40px 23px 0;
  color: #777;
  font-size: 13px;
  line-height: 1.8;
}
.cta-panel {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #2868ed;
  padding: 95px 20px;
  color: #fff;
}
.cta-panel h2 {
  margin: 18px 0 0;
  font-size: clamp(2.4rem, 5vw, 4.3rem);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.055em;
}
.cta-panel p {
  margin-top: 20px;
  color: #dbe7ff;
}
.cta-panel small {
  display: block;
  margin-top: 17px;
  color: #b9d0ff;
  font-size: 10px;
}
.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(55px);
}
.cta-orb.one {
  width: 400px;
  height: 400px;
  left: -170px;
  top: -170px;
  background: #6cc4ff66;
}
.cta-orb.two {
  width: 420px;
  height: 420px;
  right: -150px;
  bottom: -220px;
  background: #4f32b966;
}
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.delay-1 {
  transition-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.2s;
}
.delay-3 {
  transition-delay: 0.3s;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .scan-line {
    animation: none;
  }
}
@media (max-width: 1024px) {
  .app-body {
    grid-template-columns: 150px 1fr;
  }
  .demo-main {
    padding: 24px;
  }
  .feature-split,
  .analytics-feature {
    gap: 45px;
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trusted-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trusted-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .hero-title br {
    display: none;
  }
  .product-stage {
    margin-top: 55px;
  }
  .app-window {
    min-width: 760px;
    transform-origin: top left;
    transform: scale(0.72);
    margin-bottom: -145px;
  }
  .floating-card {
    display: none;
  }
  .comparison-grid,
  .steps-grid,
  .feature-split,
  .analytics-feature {
    grid-template-columns: 1fr;
  }
  .comparison-grid {
    gap: 16px;
  }
  .transform-badge {
    top: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
  }
  .steps-grid {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }
  .feature-split,
  .analytics-feature {
    gap: 55px;
  }
  .analytics-feature .feature-copy {
    order: -1;
  }
  .section-pad {
    padding-top: 90px;
    padding-bottom: 90px;
  }
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }
  .agent-row {
    gap: 18px;
    font-size: 12px;
  }
  .journey-steps {
    flex-direction: column;
  }
  .journey-arrow {
    transform: rotate(90deg);
  }
}
@media (max-width: 520px) {
  .app-window {
    transform: scale(0.49);
    margin-bottom: -255px;
  }
  .product-stage {
    margin-top: 45px;
  }
  .comparison-grid {
    margin-top: 40px;
  }
  .compare-label {
    flex-direction: column;
    gap: 4px;
  }
  .code-noise,
  .clean-doc {
    padding: 24px;
    font-size: 10px;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .trusted-grid {
    grid-template-columns: 1fr;
  }
  .trusted-grid-3 {
    grid-template-columns: 1fr;
  }
  .format-tabs span {
    display: none;
  }
  .code-panel {
    padding: 25px;
    font-size: 10px;
    min-height: 360px;
  }
  .mini-bots span {
    padding: 12px 8px;
    font-size: 7px;
  }
  .analytics-metrics > div {
    padding: 18px 15px;
  }
  .analytics-metrics strong {
    font-size: 22px;
  }
  .cta-panel {
    padding: 75px 18px;
  }
  .section-heading h2,
  .feature-copy h2 {
    font-size: 2.65rem;
  }
}

/* Legal pages */
.preview-invite-card {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 18px 55px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 45px #1720380a;
}
.preview-invite-card .eyebrow {
  color: var(--blue);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
}
.preview-invite-card h2 {
  margin-top: 8px;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.04em;
}
.preview-invite-card p {
  margin-top: 6px;
  color: #777;
  font-size: 12px;
  line-height: 1.6;
}
.preview-invite-card > small {
  grid-column: 2;
  color: #aaa;
  font-size: 9px;
}
.preview-url-form {
  display: flex;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fafaf9;
}
.preview-url-form input {
  min-width: 0;
  flex: 1;
  padding: 10px 12px;
  border: 0;
  background: transparent;
  outline: 0;
  font-size: 12px;
}
.preview-url-form button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  padding: 11px 16px;
  border-radius: 9px;
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}
.preview-page {
  min-height: 100vh;
  padding: 55px 16px 90px;
}
.preview-shell {
  max-width: 1180px;
  margin: auto;
}
.preview-head {
  max-width: 760px;
  margin: 70px 0 35px;
}
.preview-head h1 {
  margin-top: 15px;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.06em;
}
.preview-head p {
  margin-top: 18px;
  color: #777;
  line-height: 1.7;
}
.preview-runner {
  display: flex;
  max-width: 780px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 10px 35px #1720380d;
}
.preview-runner input {
  min-width: 0;
  flex: 1;
  padding: 12px 14px;
  outline: 0;
  font-size: 13px;
}
.preview-runner button {
  padding: 12px 18px;
  border-radius: 9px;
  background: var(--blue);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}
.preview-runner button:disabled {
  opacity: 0.6;
}
.preview-state {
  margin-top: 35px;
}
.preview-loading,
.preview-error {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}
.preview-error {
  border-color: #f0d4cc;
  background: #fff8f6;
  color: #a34f3d;
}
.preview-result {
  display: none;
}
.preview-result.ready {
  display: block;
}
.preview-result-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
}
.preview-result-top h2 {
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -0.035em;
}
.preview-result-top p {
  margin-top: 5px;
  color: #888;
  font-size: 11px;
}
.preview-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 22px;
}
.preview-metrics article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
}
.preview-metrics small {
  display: block;
  color: #aaa;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.09em;
}
.preview-metrics strong {
  display: block;
  margin-top: 7px;
  font-size: 25px;
}
.preview-metrics span {
  color: #299a68;
  font-size: 9px;
}
.preview-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}
.preview-code-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
}
.preview-code-head {
  display: flex;
  justify-content: space-between;
  padding: 15px 18px;
  border-bottom: 1px solid var(--line);
  font-size: 10px;
  font-weight: 700;
}
.preview-code-head span {
  color: #999;
  font-weight: 500;
}
.preview-code-card pre {
  height: 420px;
  overflow: auto;
  margin: 0;
  padding: 22px;
  white-space: pre-wrap;
  word-break: break-word;
  font:
    10px/1.75 "DM Mono",
    monospace;
  color: #666;
}
.preview-output-tabs {
  display: flex;
  gap: 3px;
}
.preview-output-tabs button {
  padding: 5px 8px;
  border-radius: 5px;
  color: #999;
}
.preview-output-tabs button.active {
  background: #ededeb;
  color: #151515;
}
.preview-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  margin-top: 14px;
  padding: 25px;
  border-radius: 15px;
  background: #151515;
  color: #fff;
}
.preview-cta h3 {
  font-size: 18px;
  font-weight: 600;
}
.preview-cta p {
  margin-top: 5px;
  color: #999;
  font-size: 11px;
}
@media (max-width: 800px) {
  .preview-invite-card {
    grid-template-columns: 1fr;
  }
  .preview-invite-card > small {
    grid-column: 1;
  }
  .preview-metrics {
    grid-template-columns: 1fr 1fr;
  }
  .preview-compare {
    grid-template-columns: 1fr;
  }
  .preview-result-top,
  .preview-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 520px) {
  .preview-url-form,
  .preview-runner {
    flex-direction: column;
  }
  .preview-metrics {
    grid-template-columns: 1fr 1fr;
  }
  .preview-invite-card {
    padding: 24px;
  }
  .preview-code-card pre {
    height: 330px;
  }
}

.legal-header {
  position: relative;
  z-index: 10;
}
.legal-page {
  padding-top: 80px;
  padding-bottom: 100px;
}
.legal-hero {
  max-width: 760px;
  padding: 55px 0 70px;
}
.legal-back {
  display: flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  margin-bottom: 58px;
  color: #777;
  font-size: 12px;
  font-weight: 600;
  transition: color 0.2s;
}
.legal-back:hover {
  color: var(--ink);
}
.legal-hero > .eyebrow {
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
}
.legal-hero h1 {
  margin: 17px 0 0;
  font-size: clamp(3.1rem, 7vw, 5.8rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.065em;
}
.legal-hero > p {
  max-width: 610px;
  margin-top: 24px;
  color: #70706c;
  font-size: 17px;
  line-height: 1.75;
}
.legal-updated {
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  margin-top: 30px;
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #777;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.legal-updated .pulse-dot {
  width: 6px;
  height: 6px;
}
.legal-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  align-items: start;
  gap: 78px;
}
.legal-aside {
  position: sticky;
  top: 30px;
  display: grid;
  gap: 2px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
}
.legal-aside > span {
  margin: 2px 8px 12px;
  color: #aaa;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.13em;
}
.legal-aside a {
  padding: 7px 8px;
  border-radius: 6px;
  color: #777;
  font-size: 10px;
  transition: all 0.2s;
}
.legal-aside a:hover {
  background: #efefed;
  color: var(--ink);
}
.legal-content {
  min-width: 0;
  padding: 10px 0;
}
.legal-summary {
  display: flex;
  gap: 16px;
  margin-bottom: 54px;
  padding: 22px;
  border: 1px solid #dbe4f6;
  border-radius: 14px;
  background: #f3f7ff;
}
.legal-summary > span {
  display: grid;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 10px;
  background: #fff;
  color: var(--blue);
  box-shadow: 0 3px 10px #2868ed12;
}
.legal-summary b {
  font-size: 13px;
}
.legal-summary p {
  margin: 5px 0 0;
  color: #66758f;
  font-size: 12px;
  line-height: 1.7;
}
.legal-content section {
  position: relative;
  padding: 0 0 48px 56px;
  scroll-margin-top: 30px;
}
.legal-content section + section {
  padding-top: 48px;
  border-top: 1px solid var(--line);
}
.legal-number {
  position: absolute;
  left: 0;
  top: 4px;
  font:
    500 10px "DM Mono",
    monospace;
  color: #aaa;
}
.legal-content section + section .legal-number {
  top: 52px;
}
.legal-content h2 {
  margin: 0 0 20px;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.035em;
}
.legal-content h3 {
  margin: 28px 0 8px;
  font-size: 14px;
  font-weight: 700;
}
.legal-content p,
.legal-content li {
  color: #62625f;
  font-size: 13px;
  line-height: 1.9;
}
.legal-content p + p {
  margin-top: 15px;
}
.legal-content ul {
  display: grid;
  gap: 7px;
  margin: 12px 0 0;
  padding-left: 20px;
}
.legal-content a:not(.legal-email) {
  color: var(--ink);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: #ccc;
  text-underline-offset: 3px;
}
.legal-content em {
  font-style: normal;
  font-weight: 600;
  color: var(--ink);
}
.legal-callout {
  margin: 25px 0;
  padding: 18px 20px;
  border-left: 3px solid var(--blue);
  border-radius: 0 10px 10px 0;
  background: #f1f4fa;
}
.legal-callout b {
  font-size: 12px;
}
.legal-callout p {
  margin: 4px 0 0;
  font-size: 11px;
}
.legal-email {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 3px 10px #00000008;
  transition: all 0.2s;
}
.legal-email:hover {
  border-color: #ccc;
  transform: translateY(-1px);
}
.legal-footer a:hover {
  color: var(--ink);
}
@media (max-width: 800px) {
  .legal-page {
    padding-top: 45px;
  }
  .legal-hero {
    padding-bottom: 50px;
  }
  .legal-back {
    margin-bottom: 44px;
  }
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .legal-aside {
    position: static;
    display: flex;
    overflow-x: auto;
    padding: 10px;
    white-space: nowrap;
  }
  .legal-aside > span {
    display: none;
  }
  .legal-aside a {
    flex: 0 0 auto;
  }
}
@media (max-width: 520px) {
  .legal-hero h1 {
    font-size: 3.15rem;
  }
  .legal-content section,
  .legal-content section + section {
    padding-left: 35px;
  }
  .legal-summary {
    flex-direction: column;
  }
}
