@font-face {
  font-family: "Share Tech Mono";
  src: url("/ai-agent/assets/fonts/s/sharetechmono/v16/J7aHnp1uDWRBEqV98dVQztYldFc7oQsEIc3Xew.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

:root {
  color-scheme: light;
  --font-ui: "Google Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-code: "Share Tech Mono", "SFMono-Regular", "IBM Plex Mono", "Fira Code", "Courier New", monospace;
  --paper: #ffffff;
  --panel: rgba(255, 255, 255, 0.96);
  --panel-strong: #ffffff;
  --line: rgba(23, 32, 51, 0.1);
  --line-strong: rgba(23, 32, 51, 0.18);
  --ink: #172033;
  --muted: #657089;
  --blue: #2869fe;
  --red: #ff3131;
  --good: #0f8b53;
  --good-soft: rgba(15, 139, 83, 0.08);
  --warn: #b54708;
  --warn-soft: rgba(181, 71, 8, 0.08);
  --soft-strong: rgba(40, 105, 254, 0.08);
  --glow: rgba(40, 105, 254, 0.14);
  --glow-red: rgba(255, 49, 49, 0.14);
  --shadow: none;
  --shadow-strong: none;
  --radius-panel: 32px;
  --radius-card: 28px;
  --radius-pill: 999px;
  --topbar-width: min(1200px, calc(100% - 32px));
  --topbar-mobile-width: calc(100% - 20px);
  --topbar-safe-space: 118px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #ffffff;
  color: var(--ink);
  font-family: var(--font-ui);
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "GRAD" 0;
  text-rendering: optimizeLegibility;
}

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

img {
  display: block;
  max-width: 100%;
}

.backdrop {
  display: none;
}

.page,
.shell,
.sitePage {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: var(--topbar-safe-space) 0 120px;
}

.sc-ai-agent-shared-shell {
  width: min(1200px, calc(100% - 32px));
  position: fixed;
  top: 0;
  left: 50%;
  margin: 0 auto;
  transform: translateX(-50%);
  min-height: var(--topbar-safe-space);
  z-index: 45;
}

.topbar {
  position: fixed;
  top: 18px;
  left: 50%;
  width: var(--topbar-width);
  transform: translateX(-50%);
  z-index: 40;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 74px;
  padding: 10px 12px 10px 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(23, 32, 51, 0.08);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(18px);
  box-shadow: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brandWordmark {
  width: clamp(132px, 14vw, 150px);
  height: auto;
}

.topbarNav,
.topbar > .nav {
  display: inline-flex;
  justify-self: center;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 6px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(23, 32, 51, 0.06);
}

.topbarNav a,
.topbar > .nav a {
  color: var(--muted);
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.topbarNav a:hover,
.topbarNav a.active,
.topbar > .nav a:hover,
.topbar > .nav a.active {
  color: var(--ink);
  background: rgba(23, 32, 51, 0.06);
  transform: translateY(-1px);
}

.topbarActions,
.topbarRight {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.topbarActions {
  justify-self: end;
  justify-content: flex-end;
  margin-left: auto;
}

.topbarInstall {
  justify-self: center;
  min-width: 0;
  width: min(100%, 430px);
  max-width: 100%;
  min-height: 56px;
  padding: 0 26px;
  border: 0;
  border-radius: 999px;
  background: #f5f5f5;
  color: #4f2f2f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-code);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  cursor: pointer;
  box-shadow: none;
  transition: transform 180ms ease, background-color 180ms ease;
}

.topbarInstall span {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.topbarInstall:hover {
  transform: translateY(-1px);
  background: #ededed;
}

.headerActionBtn {
  width: min(190px, 100%);
  max-width: 100%;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--ink);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  white-space: nowrap;
  flex: 0 0 auto;
  box-shadow: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.headerActionBtn:hover {
  transform: translateY(-1px);
  box-shadow: none;
}

.headerActionBtnSecondary {
  background: #ffffff;
  border: 2px solid #4a4a4a;
  box-shadow: none;
  color: #2a2f36;
}

.headerActionBtnPrimary {
  background: linear-gradient(180deg, #1d222c 0%, #050608 100%);
  border-color: rgba(23, 32, 51, 0.18);
  color: #ffffff;
}

.headerActionBtnSecondary:hover {
  box-shadow: none;
  border-color: #232323;
  background: #ffffff;
}

.button,
.buttonGhost,
.miniButton,
.primaryButton,
.softButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 20px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-family: inherit;
  font-size: 16px;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.miniButton {
  min-height: 44px;
  padding: 0 16px;
  font-size: 15px;
}

.button:hover,
.buttonGhost:hover,
.miniButton:hover,
.primaryButton:hover,
.softButton:hover {
  transform: translateY(-1px);
}

.button:disabled,
.buttonGhost:disabled,
.miniButton:disabled,
.primaryButton:disabled,
.softButton:disabled {
  opacity: 0.58;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.button,
.primaryButton {
  color: #ffffff;
  background: #111726;
  box-shadow: none;
}

.button:visited,
.primaryButton:visited,
.button span,
.primaryButton span {
  color: #ffffff;
}

.buttonGhost,
.miniButton,
.softButton {
  color: var(--ink);
  background: #ffffff;
  border: 2px solid #4a4a4a;
}

.buttonGhost:hover,
.miniButton:hover,
.softButton:hover {
  border-color: #232323;
}

.panel,
.card,
.heroPreview,
.pricingPanel,
.statusBar,
.legalPageMain {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
  border-radius: var(--radius-card);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 0 14px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(23, 32, 51, 0.08);
  color: var(--muted);
  font-size: 14px;
  box-shadow: none;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 6px rgba(255, 49, 49, 0.12);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-ui);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.sectionHeading,
.sectionHeader {
  display: grid;
  gap: 14px;
  margin: 0 0 28px;
}

.sectionHeading h2,
.sectionHeader h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.98;
  max-width: 14ch;
}

.sectionHeading p,
.sectionLead {
  margin: 0;
  max-width: 58ch;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.68;
}

.statusBar {
  display: none;
  margin-top: 18px;
  padding: 14px 16px;
}

.statusBar.isVisible {
  display: grid;
  gap: 4px;
}

.statusBar strong {
  font-size: 14px;
}

.statusBar span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.statusBar[data-tone="warn"] {
  background: var(--warn-soft);
  border-color: rgba(181, 71, 8, 0.14);
}

.statusBar[data-tone="good"] {
  background: var(--good-soft);
  border-color: rgba(15, 139, 83, 0.14);
}

.sc-site-footer-shell {
  width: min(1200px, calc(100% - 32px));
  margin: 72px auto 24px;
}

.sc-site-footer {
  position: relative;
  overflow: hidden;
  padding: 32px 30px 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  background: #1c1313;
  box-shadow: none;
  color: rgba(255, 255, 255, 0.74);
}

.sc-site-footer > * {
  position: relative;
  z-index: 1;
}

.sc-site-footer::before {
  content: "";
  position: absolute;
  inset: -80px auto auto -40px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.sc-site-footer-art {
  display: none;
}

.sc-site-footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 28px;
}

.sc-site-footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  min-width: 0;
}

.sc-site-footer-logo {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  flex: 0 0 auto;
  box-shadow: none;
}

.sc-site-footer-brand strong {
  display: block;
  color: #fff;
  font-family: var(--font-ui);
  font-size: 28px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.sc-site-footer-brand p {
  margin: 12px 0 0;
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.74);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.6;
}

.sc-site-footer-button {
  min-height: 54px;
  min-width: 180px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #1c1313;
  font-family: var(--font-ui);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease;
}

.sc-site-footer-button:hover {
  background: #fff;
  transform: translateY(-1px);
}

.sc-site-footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.sc-site-footer-column {
  display: grid;
  align-content: start;
  justify-items: start;
  grid-auto-rows: max-content;
  gap: 10px;
}

.sc-site-footer-eyebrow {
  color: rgba(255, 255, 255, 0.44);
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sc-site-footer-column a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.84);
  font-family: var(--font-ui);
  font-size: 17px;
  line-height: 1.35;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.sc-site-footer-column a:hover {
  color: #fff;
  transform: translateX(2px);
}

.sc-site-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.52);
  font-family: var(--font-ui);
  font-size: 14px;
}

.legalPage main,
.legalPageMain {
  width: min(980px, calc(100vw - 32px));
  margin: 28px auto 120px;
  padding: 30px;
}

.legalPage .eyebrow {
  margin-bottom: 20px;
}

.legalPage .eyebrow::before {
  display: none;
}

.legalPage .eyebrow img {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  flex: 0 0 auto;
}

.legalPage h1 {
  font-size: clamp(2.3rem, 4vw, 3.5rem);
  line-height: 0.98;
  margin-bottom: 16px;
}

.legalPage h2 {
  margin-top: 32px;
  font-size: 1.3rem;
}

.legalPage p,
.legalPage li {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.legalPage a {
  color: var(--blue);
}

.legalPage ul {
  padding-left: 1.25rem;
}

.legalPage .meta {
  display: grid;
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(40, 105, 254, 0.04);
}

.legalPage code {
  background: rgba(40, 105, 254, 0.05);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.15rem 0.35rem;
  font-family: var(--font-code);
  font-size: 0.92em;
}

.legalPage footer {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 1100px) {
  .topbar {
    gap: 10px;
    min-height: 70px;
    padding: 10px 10px 10px 16px;
  }

  .topbarInstall {
    min-height: 52px;
    padding: 0 20px;
    font-size: 15px;
  }

  .headerActionBtn {
    width: min(172px, 100%);
    min-height: 52px;
    padding: 0 20px;
    font-size: 18px;
  }
}

@media (max-width: 820px) {
  :root {
    --topbar-safe-space: 84px;
  }

  .page,
  .shell,
  .sitePage {
    width: min(100%, calc(100% - 20px));
    padding-top: var(--topbar-safe-space);
    padding-bottom: 84px;
  }

  .sc-ai-agent-shared-shell {
    width: min(100%, calc(100% - 20px));
    min-height: var(--topbar-safe-space);
  }

  .topbar {
    top: 10px;
    width: var(--topbar-mobile-width);
    min-height: 60px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    padding: 10px 12px 10px 14px;
  }

  .brand {
    justify-self: start;
  }

  .brandWordmark {
    width: clamp(118px, 42vw, 144px);
  }

  .topbarInstall {
    display: none;
  }

  .topbarActions,
  .topbarRight {
    width: auto;
    justify-self: end;
    justify-content: flex-end;
    gap: 6px;
  }

  .headerActionBtn {
    width: 40px;
    min-width: 40px;
    height: 40px;
    min-height: 40px;
    padding: 0;
    border-radius: 50%;
    font-size: 0;
    line-height: 0;
    flex: 0 0 40px;
  }

  .headerActionBtn::before {
    content: "";
    width: 18px;
    height: 18px;
    display: block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 18px 18px;
  }

  .headerActionBtnSecondary::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232a2f36'%3E%3Cpath d='M12 .5C5.65.5.5 5.73.5 12.18c0 5.16 3.3 9.53 7.88 11.07.58.11.79-.26.79-.57 0-.28-.01-1.21-.02-2.19-3.21.71-3.89-1.39-3.89-1.39-.53-1.36-1.29-1.73-1.29-1.73-1.06-.74.08-.73.08-.73 1.17.09 1.79 1.22 1.79 1.22 1.04 1.82 2.74 1.29 3.41.98.1-.77.41-1.29.74-1.59-2.56-.3-5.26-1.31-5.26-5.82 0-1.29.45-2.34 1.2-3.16-.12-.3-.52-1.51.11-3.15 0 0 .98-.32 3.2 1.21a10.9 10.9 0 0 1 5.82 0c2.22-1.53 3.2-1.21 3.2-1.21.63 1.64.23 2.85.11 3.15.75.82 1.2 1.87 1.2 3.16 0 4.52-2.7 5.52-5.28 5.82.42.37.79 1.09.79 2.2 0 1.59-.01 2.87-.01 3.26 0 .32.21.69.8.57 4.57-1.54 7.86-5.91 7.86-11.07C23.5 5.73 18.35.5 12 .5Z'/%3E%3C/svg%3E");
  }

  .headerActionBtnPrimary::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3.5' y='3.5' width='6.5' height='6.5' rx='1.2'/%3E%3Crect x='14' y='3.5' width='6.5' height='6.5' rx='1.2'/%3E%3Crect x='3.5' y='14' width='6.5' height='6.5' rx='1.2'/%3E%3Crect x='14' y='14' width='6.5' height='6.5' rx='1.2'/%3E%3C/svg%3E");
  }

  .footer,
  .legalPageMain {
    padding: 22px 20px;
  }

  .sc-site-footer-shell {
    width: min(100%, calc(100% - 20px));
    margin-top: 56px;
    margin-bottom: 24px;
  }

  .sc-site-footer {
    padding: 24px 20px 20px;
  }

  .sc-site-footer-top,
  .sc-site-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .sc-site-footer-grid {
    grid-template-columns: 1fr;
  }

  .button,
  .buttonGhost,
  .primaryButton,
  .softButton {
    width: 100%;
  }
}
