:root {
  color-scheme: light;
  --background: #ffffff;
  --foreground: #171717;
  --muted: #666666;
  --surface: #fafafa;
  --subtle: #f3f3f3;
  --border: #e5e5e5;
  --strong-border: #d4d4d4;
  --primary: #171717;
  --on-primary: #ffffff;
  --primary-hover: #383838;
  --focus: #737373;
  --shadow: 0 24px 70px -30px rgb(0 0 0 / 15%);
  font-family: 'Geist Variable', 'Geist Fallback', sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
:root[data-theme='dark'] {
  color-scheme: dark;
  --background: #0a0a0a;
  --foreground: #ededed;
  --muted: #a1a1a1;
  --surface: #101010;
  --subtle: #1a1a1a;
  --border: #292929;
  --strong-border: #404040;
  --primary: #ededed;
  --on-primary: #0a0a0a;
  --primary-hover: #d4d4d4;
  --focus: #a3a3a3;
  --shadow: 0 24px 70px -30px rgb(0 0 0 / 55%);
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    color-scheme: dark;
    --background: #0a0a0a;
    --foreground: #ededed;
    --muted: #a1a1a1;
    --surface: #101010;
    --subtle: #1a1a1a;
    --border: #292929;
    --strong-border: #404040;
    --primary: #ededed;
    --on-primary: #0a0a0a;
    --primary-hover: #d4d4d4;
    --focus: #a3a3a3;
    --shadow: 0 24px 70px -30px rgb(0 0 0 / 55%);
  }
  :root:not([data-theme]) .wordmark img { filter: invert(1); }
}
* { box-sizing: border-box; }
html { scroll-padding-top: 112px; }
body { margin: 0; background: var(--background); color: var(--foreground); font-size: 15px; line-height: 1.6; }
button, select { font: inherit; }
button, a, select { -webkit-tap-highlight-color: transparent; }
button, select { cursor: pointer; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
button, a, select { transition: background-color 150ms ease, color 150ms ease, border-color 150ms ease; }
a:hover { color: var(--muted); }
:focus-visible { outline: 2px solid var(--focus); outline-offset: 5px; }
main:focus { outline: none; }
::selection { background: var(--foreground); color: var(--background); }
button svg, a svg { flex-shrink: 0; }
svg { display: inline-block; vertical-align: middle; flex-shrink: 0; }
img { max-width: 100%; }
h1, h2, h3, p, figure { margin: 0; }
h1, h2, h3 { font-weight: 500; }
h1 { font-size: clamp(42px, 6vw, 76px); line-height: 1.07; letter-spacing: -0.065em; }
h1 > span { color: var(--muted); }
h2 { font-size: clamp(30px, 3.5vw, 44px); line-height: 1.16; letter-spacing: -0.045em; }
h3 { font-size: 18px; line-height: 1.4; letter-spacing: -0.025em; }
p { color: var(--muted); }
.container { width: min(1120px, calc(100% - 64px)); margin-inline: auto; }
.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; }
.skip-link { position: fixed; top: -80px; left: 16px; z-index: 100; padding: 12px 20px; background: var(--primary); color: var(--on-primary); border-radius: 6px; }
.skip-link:focus { top: 12px; }
.site-header { position: relative; z-index: 10; border-bottom: 1px solid var(--border); background: var(--background); }
.header-inner { display: flex; align-items: center; min-height: 88px; gap: 50px; }
.wordmark { display: inline-flex; align-items: center; flex-shrink: 0; }
.wordmark img { width: 196px; height: 44px; object-fit: contain; }
[data-theme='dark'] .wordmark img { filter: invert(1); }
.header-navigation { display: flex; align-items: center; flex: 1; justify-content: space-between; gap: 24px; }
.header-navigation nav { display: flex; align-items: center; gap: 28px; }
.header-navigation nav a { font-size: 13px; color: var(--muted); padding-block: 8px; }
.header-navigation nav a:hover, .header-navigation nav a[aria-current='page'] { color: var(--foreground); }
.header-actions { display: flex; align-items: center; gap: 11px; }
.text-button { background: none; border: 0; padding: 8px 0; font-size: 13px; white-space: nowrap; }
.text-button:hover { color: var(--muted); }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 14px; padding: 12px 20px; border: 1px solid var(--primary); background: var(--primary); color: var(--on-primary); border-radius: 6px; font-size: 13px; font-weight: 500; line-height: 20px; white-space: nowrap; }
.button:hover { background: var(--primary-hover); border-color: var(--primary-hover); color: var(--on-primary); }
.button-secondary { background: var(--background); color: var(--foreground); border-color: var(--strong-border); }
.button-secondary:hover { background: var(--subtle); color: var(--foreground); border-color: var(--strong-border); }
.button-small { padding: 8px 12px; gap: 9px; font-size: 12px; }
.button-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px; }
.icon-button { display: inline-flex; justify-content: center; align-items: center; width: 40px; height: 40px; border: 1px solid var(--border); border-radius: 6px; background: var(--background); }
.icon-button:hover { background: var(--subtle); }
.menu-toggle { display: none; }
.header-account-actions { display: grid; align-items: center; gap: 20px; }
.header-account-actions > * { grid-area: 1 / 1; justify-self: end; visibility: hidden; }
.header-account-actions .guest-action { display: flex; align-items: center; gap: inherit; }
[data-session-ready][data-authenticated] .header-account-actions .guest-action,
[data-session-ready]:not([data-authenticated]) .header-account-actions .member-action { display: none; }
[data-session-ready][data-authenticated] .header-account-actions .member-action,
[data-session-ready]:not([data-authenticated]) .header-account-actions .guest-action { visibility: visible; }
.hero { padding-top: 78px; text-align: center; }
.hero-description { max-width: 640px; margin: 26px auto 28px; font-size: 17px; line-height: 1.7; letter-spacing: -0.02em; text-wrap: balance; }
.availability-note { display: block; color: var(--muted); margin-top: 16px; font-size: 11px; }
.product-example { text-align: left; margin-top: 64px; border: 1px solid var(--border); border-radius: 10px; box-shadow: var(--shadow); overflow: hidden; background: var(--background); }
.example-topbar { display: flex; align-items: center; justify-content: space-between; min-height: 52px; padding: 12px 22px; border-bottom: 1px solid var(--border); background: var(--surface); font-size: 12px; }
.example-topbar > span:first-child { display: flex; align-items: center; gap: 10px; }
.example-mark { display: inline-grid; place-items: center; width: 22px; height: 22px; background: var(--foreground); color: var(--background); border-radius: 5px; font-size: 15px; font-weight: 600; }
.example-badge { font-size: 10px; color: var(--muted); border: 1px solid var(--border); border-radius: 4px; padding: 2px 7px; }
.example-grid { display: grid; grid-template-columns: 1.08fr 1fr; }
.conversation { padding: 24px 28px; display: flex; flex-direction: column; }
.panel-label { display: flex; gap: 9px; align-items: center; color: var(--muted); font-size: 11px; }
.panel-label > span { margin-left: auto; font-size: 10px; }
.user-message { margin: 28px 0 24px 64px; background: var(--subtle); border: 1px solid var(--border); border-radius: 8px 8px 2px 8px; padding: 14px 17px; font-size: 13px; line-height: 1.6; }
.assistant-message { display: flex; gap: 13px; font-size: 12px; }
.assistant-symbol { font-size: 26px; line-height: 1.1; }
.assistant-message p { color: var(--foreground); max-width: 340px; }
.tool-call { display: flex; align-items: center; gap: 7px; color: var(--muted); font-size: 10px; margin-top: 12px; }
.tool-call + .tool-call { margin-top: 7px; }
.assistant-result { margin-top: 17px; }
.example-composer { display: flex; align-items: center; justify-content: space-between; margin-top: 27px; padding: 9px 10px 9px 14px; border: 1px solid var(--border); border-radius: 6px; color: var(--muted); font-size: 11px; }
.composer-arrow { width: 25px; height: 25px; display: grid; place-items: center; border: 1px solid var(--border); border-radius: 4px; font-size: 16px; }
.workspace-preview { background: var(--surface); border-left: 1px solid var(--border); padding: 24px 30px; }
.workspace-preview .panel-label > svg:last-child { margin-left: auto; }
.records-heading { display: flex; justify-content: space-between; align-items: end; margin: 30px 0 18px; }
.eyebrow { display: inline-block; font-size: 10px; line-height: 1.5; font-weight: 500; letter-spacing: 0.09em; color: var(--muted); }
.records-heading .eyebrow { font-size: 8px; }
.records-heading h2 { font-size: 20px; line-height: 1.4; letter-spacing: -0.025em; margin-top: 4px; }
.subtle-label { font-size: 10px; color: var(--muted); }
.contact-record { display: flex; align-items: center; gap: 11px; padding: 11px 0; border-top: 1px solid var(--border); }
.avatar { display: grid; place-items: center; width: 30px; height: 30px; border: 1px solid var(--border); border-radius: 50%; font-size: 9px; color: var(--muted); background: var(--background); }
.contact-record > div { display: flex; flex-direction: column; }
.contact-record strong { font-weight: 500; font-size: 11px; }
.contact-record > div > span { font-size: 9px; color: var(--muted); margin-top: 1px; }
.record-status { margin-left: auto; font-size: 9px; padding: 2px 7px; border: 1px solid var(--border); border-radius: 4px; color: var(--muted); background: var(--background); }
.workflow-preview { border: 1px solid var(--border); background: var(--background); border-radius: 6px; padding: 13px 15px; margin-top: 17px; }
.workflow-preview > div:first-child { display: flex; align-items: center; gap: 7px; }
.workflow-preview strong { font-size: 10px; font-weight: 500; }
.workflow-steps { display: flex; align-items: center; justify-content: space-between; gap: 5px; font-size: 9px; color: var(--muted); margin-top: 12px; }
.product-example figcaption { padding: 10px 22px; border-top: 1px solid var(--border); color: var(--muted); background: var(--surface); font-size: 9px; text-align: center; letter-spacing: 0.015em; }
.section-space { padding-block: 112px; }
.section-intro h2 { margin-top: 18px; }
.section-intro > p { max-width: 465px; font-size: 15px; margin-top: 20px; }
.foundation > .section-intro { text-align: center; }
.foundation > .section-intro p { margin-inline: auto; max-width: 540px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 64px; }
.feature-grid article { padding-inline: 30px; border-left: 1px solid var(--border); }
.feature-grid article:first-child { border-left: 0; padding-left: 0; }
.feature-grid article:last-child { padding-right: 0; }
.feature-icon { display: inline-grid; place-items: center; width: 42px; height: 42px; border: 1px solid var(--border); border-radius: 8px; background: var(--surface); margin-bottom: 23px; }
.feature-grid p { font-size: 13px; line-height: 1.8; margin: 14px 0 24px; }
.text-link { display: inline-flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 500; }
.text-link:hover { text-decoration: underline; text-underline-offset: 4px; }
.workflow-section { border-block: 1px solid var(--border); background: var(--surface); padding-block: 96px; }
.workflow-layout { display: grid; grid-template-columns: 1fr 0.85fr; gap: 110px; align-items: center; }
.workflow-layout .text-link { margin-top: 26px; }
.steps-list { list-style: none; margin: 0; padding: 0; }
.steps-list li { display: flex; gap: 24px; padding: 28px 0; border-top: 1px solid var(--border); }
.steps-list li:first-child { border-top: 0; padding-top: 0; }
.steps-list li:last-child { padding-bottom: 0; }
.step-number { font-size: 11px; padding-top: 5px; color: var(--muted); }
.steps-list h3 { font-size: 16px; }
.steps-list p { font-size: 13px; margin-top: 7px; }
.industry-section { display: grid; grid-template-columns: 1fr 1.25fr; gap: 100px; }
.industry-label { display: flex; align-items: start; gap: 13px; padding-top: 5px; }
.industry-label .eyebrow { padding-top: 3px; }
.industry-section p { margin: 24px 0; max-width: 510px; }
.closing-cta { text-align: center; padding: 84px 24px 92px; border: 1px solid var(--border); background: var(--surface); border-radius: 10px; margin-bottom: 96px; }
.closing-cta h2 { font-size: clamp(36px, 4vw, 52px); margin-top: 22px; }
.closing-cta p { margin: 22px 0 28px; }
.site-footer { border-top: 1px solid var(--border); }
.footer-top { display: flex; justify-content: space-between; padding-block: 60px; }
.footer-top p { font-size: 12px; line-height: 1.8; margin-top: 14px; }
.footer-top nav { display: flex; gap: 100px; padding-top: 10px; }
.footer-top nav div { display: flex; flex-direction: column; gap: 10px; min-width: 110px; font-size: 12px; }
.footer-top nav span { font-size: 11px; color: var(--muted); margin-bottom: 8px; }
.footer-bottom { display: flex; justify-content: space-between; border-top: 1px solid var(--border); padding-block: 24px; font-size: 10px; color: var(--muted); }
.page-hero { text-align: center; padding-block: 92px 80px; }
.page-hero h1 { margin-top: 24px; font-size: clamp(42px, 5.5vw, 66px); }
.page-hero > p { margin: 26px auto 0; max-width: 540px; font-size: 17px; }
.status-label { display: inline-block; font-size: 10px; color: var(--muted); padding: 4px 8px; border: 1px solid var(--border); border-radius: 4px; background: var(--surface); }
.page-hero > .status-label { margin-top: 24px; }
.feature-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 120px; padding: 72px 0; border-top: 1px solid var(--border); align-items: center; }
.detail-heading .feature-icon { display: grid; margin-bottom: 20px; }
.detail-heading h2 { margin: 18px 0 22px; font-size: 36px; }
.detail-heading p { max-width: 420px; font-size: 14px; }
.detail-card { border: 1px solid var(--border); padding: 28px; border-radius: 8px; background: var(--surface); }
.detail-card h3 { margin-bottom: 22px; }
.check-list { list-style: none; padding: 0; margin: 20px 0; display: flex; flex-direction: column; gap: 18px; }
.check-list li { display: flex; align-items: center; gap: 12px; font-size: 13px; }
.check-list svg { width: 16px; height: 16px; }
.card-footnote { border-top: 1px solid var(--border); padding-top: 20px; margin-top: 24px; font-size: 12px; color: var(--muted); }
.operations-card > div { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--border); font-size: 12px; }
.operations-card > div > span:last-child { color: var(--muted); font-size: 10px; }
.operations-card > p { font-size: 12px; margin-top: 22px; }
.simple-steps { padding-left: 20px; color: var(--muted); font-size: 12px; line-height: 2.6; }
.detail-card > .eyebrow + h3 { margin-top: 18px; }
.release-panel { display: flex; align-items: center; justify-content: space-between; gap: 40px; border-block: 1px solid var(--border); padding-block: 56px; margin-block: 24px 80px; }
.release-panel h2 { margin: 14px 0 20px; font-size: 32px; }
.release-panel p { max-width: 640px; font-size: 14px; }
.pricing-layout { display: grid; grid-template-columns: 0.95fr 1fr; gap: 100px; align-items: start; padding-block: 10px 112px; }
.pricing-card { padding: 36px; border: 1px solid var(--strong-border); border-radius: 10px; background: var(--surface); }
.pricing-card h2 { font-size: 32px; margin-top: 24px; }
.pricing-card .pricing-announcement { font-size: 19px; color: var(--foreground); margin-block: 28px 14px; letter-spacing: -0.025em; }
.pricing-card p { font-size: 13px; }
.pricing-card hr { border: 0; border-top: 1px solid var(--border); margin-block: 28px; }
.pricing-card .check-list { margin-bottom: 32px; }
.pricing-card .button { width: 100%; }
.pricing-context { padding-top: 22px; }
.pricing-context h2 { font-size: 32px; margin-block: 18px 20px; }
.pricing-context p { font-size: 14px; }
.pricing-fact { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--border); }
.pricing-fact h3 { font-size: 15px; margin-bottom: 10px; }
.pricing-fact p { font-size: 13px; }
.pricing-context .text-link { margin-top: 28px; }
.not-found { text-align: center; padding-block: 130px 160px; }
.not-found h1 { margin-block: 24px; }
.not-found p { margin-bottom: 30px; }
@media (min-width: 1500px) {
  .hero { padding-top: 96px; }
}
@media (max-width: 1100px) {
  .header-inner { gap: 30px; }
  .header-navigation nav { gap: 18px; }
  .header-navigation { gap: 16px; }
  .workflow-layout, .industry-section { gap: 60px; }
  .feature-detail { gap: 60px; }
  .pricing-layout { gap: 60px; }
}
@media (max-width: 899px) {
  .header-inner { min-height: 76px; justify-content: space-between; }
  .menu-toggle { display: inline-flex; }
  .header-navigation { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--background); padding: 24px 32px; border-bottom: 1px solid var(--border); box-shadow: var(--shadow); }
  .header-navigation.is-open { display: flex; align-items: stretch; flex-direction: column; gap: 24px; }
  .header-navigation nav { flex-direction: column; align-items: stretch; gap: 8px; }
  .header-navigation nav a { font-size: 15px; padding: 8px 0; }
  .header-actions { border-top: 1px solid var(--border); padding-top: 20px; }
  .hero { padding-top: 64px; }
  .hero-description { font-size: 16px; }
  .example-grid { grid-template-columns: 1fr 0.9fr; }
  .conversation, .workspace-preview { padding: 22px 20px; }
  .panel-label > span { display: none; }
  .user-message { margin-left: 28px; }
  .assistant-message { font-size: 11px; }
  .workflow-preview { padding: 12px 10px; }
  .workflow-steps { font-size: 8px; }
  .feature-grid article { padding-inline: 20px; }
  .feature-grid h3 { font-size: 16px; }
  .workflow-layout { gap: 48px; grid-template-columns: 1fr 1fr; }
  .section-space { padding-block: 80px; }
  .workflow-section { padding-block: 72px; }
  .feature-detail { gap: 32px; padding-block: 56px; }
  .detail-heading h2 { font-size: 30px; }
  .detail-card { padding: 22px; }
  .release-panel { align-items: start; flex-direction: column; }
  .pricing-layout { gap: 32px; }
  .pricing-card { padding: 26px; }
}
@media (max-width: 639px) {
  .container { width: calc(100% - 40px); }
  .header-inner { min-height: 72px; }
  .wordmark img { width: 184px; }
  .header-navigation { padding-inline: 20px; }
  .hero { padding-top: 48px; }
  h1 { font-size: clamp(36px, 8.4vw, 52px); }
  .hero-description { font-size: 14px; margin-block: 22px 26px; max-width: 360px; }
  .desktop-break { display: none; }
  .button { font-size: 12px; padding: 11px 15px; gap: 9px; }
  .button-row { gap: 10px; }
  .availability-note { font-size: 10px; }
  .product-example { margin-top: 40px; }
  .example-topbar { padding: 12px 15px; font-size: 10px; gap: 10px; }
  .example-badge { font-size: 8px; }
  .example-grid { grid-template-columns: 1fr; }
  .conversation { padding: 22px 18px; }
  .panel-label > span { display: inline; }
  .user-message { max-width: 320px; align-self: end; font-size: 12px; }
  .assistant-message { font-size: 12px; }
  .tool-call { font-size: 10px; }
  .workspace-preview { border-left: 0; border-top: 1px solid var(--border); padding: 22px 18px; }
  .records-heading { margin-top: 24px; }
  .workflow-steps { font-size: 10px; }
  .product-example figcaption { font-size: 8px; padding-inline: 10px; }
  .section-space { padding-block: 64px; }
  .section-intro > p { font-size: 14px; }
  .feature-grid { grid-template-columns: 1fr; margin-top: 36px; gap: 28px; }
  .feature-grid article { padding: 28px 0 0; border-left: 0; border-top: 1px solid var(--border); }
  .feature-grid article:first-child { padding-top: 0; border-top: 0; }
  .feature-icon { margin-bottom: 18px; }
  .feature-grid h3 { font-size: 18px; }
  .feature-grid p { margin-bottom: 18px; }
  .workflow-layout { grid-template-columns: 1fr; gap: 40px; }
  .workflow-section { padding-block: 64px; }
  .industry-section { grid-template-columns: 1fr; gap: 28px; }
  .industry-section p { font-size: 14px; }
  .closing-cta { padding: 56px 18px; margin-bottom: 64px; }
  .closing-cta p { font-size: 13px; }
  .closing-cta .eyebrow { font-size: 9px; }
  .footer-top { flex-direction: column; gap: 34px; padding-block: 40px; }
  .footer-top nav { gap: 60px; }
  .footer-bottom { gap: 16px; font-size: 9px; }
  .page-hero { padding-block: 56px; }
  .page-hero h1 { font-size: clamp(36px, 8.4vw, 52px); }
  .page-hero > p { font-size: 14px; }
  .feature-detail { grid-template-columns: 1fr; gap: 28px; padding-block: 44px; }
  .detail-heading h2 { font-size: 32px; }
  .release-panel { padding-block: 40px; margin-block: 0 56px; gap: 24px; }
  .pricing-layout { grid-template-columns: 1fr; gap: 40px; padding-bottom: 64px; }
  .pricing-context { padding-top: 0; }
  .not-found { padding-block: 90px 110px; }
  .not-found p { font-size: 14px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; scroll-behavior: auto !important; }
}
