:root {
  --bg: #070d1c;
  --panel: #0d162b;
  --panel-2: #101d37;
  --line: #223251;
  --text: #f4f7ff;
  --muted: #9aa9c3;
  --blue: #6f8cff;
  --blue-2: #9caeff;
  --violet: #a68cff;
  --max: 1180px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font:
    16px/1.6 Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
a {
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}
a:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--blue-2);
  outline-offset: 4px;
}
.shell {
  max-width: var(--max);
  margin: auto;
  padding-left: 28px;
  padding-right: 28px;
}
.site-header {
  max-width: var(--max);
  margin: auto;
  padding: 26px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.brand i {
  color: var(--blue);
  font-style: normal;
  margin: 0 2px;
}
.brand-mark {
  width: 28px;
  height: 28px;
  border: 1px solid #718cff;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #b8c4ff;
  font-size: 13px;
  box-shadow: inset 0 0 18px #5269ff33;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 27px;
  color: var(--muted);
  font-size: 14px;
}
.site-header nav a:hover,
.site-footer a:hover {
  color: var(--text);
}
.nav-link {
  color: var(--blue-2) !important;
}
.hero {
  padding-top: 74px;
  padding-bottom: 82px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: 70px;
}
.eyebrow {
  margin: 0 0 20px;
  color: var(--blue-2);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.pulse-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: #8eaeff;
  box-shadow: 0 0 0 5px #728bff1f;
  margin-right: 8px;
}
.hero h1 {
  max-width: 600px;
  margin: 0;
  font-size: clamp(46px, 6vw, 78px);
  line-height: 1.01;
  letter-spacing: -0.065em;
}
.hero-lede {
  max-width: 550px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}
.hero-actions {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
  margin: 34px 0 17px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 11px 18px;
  border-radius: 9px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 750;
}
.button:hover {
  transform: translateY(-2px);
}
.button-primary {
  background: #7890ff;
  color: #081023;
  box-shadow: 0 11px 32px #617cff2e;
}
.button-primary:hover {
  background: #9aabff;
}
.button-quiet {
  border-color: var(--line);
  color: #ccd6ec;
}
.button-quiet:hover {
  border-color: #4b6594;
  background: #0c1830;
}
.microcopy {
  color: #73839e;
  font-size: 12px;
}
.hero-card {
  border: 1px solid #26385e;
  background: linear-gradient(145deg, #111e3b, #0b1428);
  border-radius: 15px;
  box-shadow:
    0 30px 100px #00000052,
    0 0 80px #536cff12;
  overflow: hidden;
  transform: rotate(1deg);
}
.window-bar {
  height: 47px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 17px;
  border-bottom: 1px solid #223355;
  color: #7787a8;
  font-size: 10px;
}
.window-bar span {
  width: 7px;
  height: 7px;
  border-radius: 9px;
  background: #354b73;
}
.window-bar b {
  margin-left: 13px;
  color: #b6c3de;
  font-weight: 600;
}
.window-bar em {
  margin-left: auto;
  color: #87a2ff;
  font-style: normal;
}
.preview-layout {
  display: grid;
  grid-template-columns: 155px 1fr;
  min-height: 360px;
}
.preview-layout aside {
  padding: 21px 13px;
  border-right: 1px solid #20304f;
  background: #0b152a;
  color: #7789a9;
  font-size: 10px;
}
.preview-layout aside small {
  display: block;
  margin-bottom: 14px;
  letter-spacing: 0.12em;
  font-size: 8px;
}
.preview-layout aside strong {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 13px 0;
  color: #d2dcf0;
  font-size: 10px;
  font-weight: 600;
}
.avatar {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 25px;
  height: 25px;
  border-radius: 8px;
  color: white;
  font-size: 10px;
  font-weight: 800;
}
.avatar-blue {
  background: linear-gradient(140deg, #6c8aff, #4e62dc);
}
.avatar-violet {
  background: linear-gradient(140deg, #b580ff, #7657c9);
}
.avatar-orange {
  background: linear-gradient(140deg, #ffab62, #d26a35);
}
.preview-label {
  margin-top: 33px !important;
}
.ghost-line {
  display: block;
  width: 94px;
  height: 6px;
  background: #192947;
  border-radius: 5px;
  margin: 12px 0;
}
.ghost-line.short {
  width: 61px;
}
.preview-main {
  padding: 22px 21px;
  position: relative;
}
.preview-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 18px;
  border-bottom: 1px solid #223251;
}
.preview-heading > div {
  display: grid;
  gap: 1px;
}
.preview-heading b {
  font-size: 12px;
}
.preview-heading small {
  color: #7788a8;
  font-size: 9px;
}
.status-chip {
  margin-left: auto;
  border: 1px solid #2b5e5c;
  color: #75c8b0;
  background: #173a3a;
  border-radius: 5px;
  padding: 2px 6px;
  font-size: 8px;
}
.chat-bubble {
  border-radius: 9px;
  margin-top: 19px;
  font-size: 10px;
}
.bubble-user {
  margin-left: 50px;
  padding: 10px 12px;
  background: #1d3160;
  color: #b8caff;
}
.bubble-agent {
  display: flex;
  gap: 10px;
  padding: 14px 12px;
  background: #111f3c;
  color: #aebbd4;
}
.bubble-agent b {
  color: #e3eaff;
  font-size: 10px;
}
.bubble-agent p {
  margin: 4px 0 10px;
  line-height: 1.45;
}
.tool-chip {
  display: inline-block;
  margin-right: 5px;
  padding: 3px 5px;
  border-radius: 4px;
  background: #1d3258;
  color: #7e9cf7;
  font-size: 8px;
}
.composer {
  position: absolute;
  bottom: 18px;
  left: 21px;
  right: 21px;
  border: 1px solid #2a3c5d;
  border-radius: 7px;
  padding: 9px 10px;
  color: #586b8c;
  font-size: 10px;
}
.composer b {
  float: right;
  color: #8198ff;
}
.trust-strip {
  display: flex;
  align-items: center;
  gap: 17px;
  color: #7083a7;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  border-top: 1px solid #172541;
  border-bottom: 1px solid #172541;
  padding-top: 17px;
  padding-bottom: 17px;
}
.trust-strip i {
  width: 4px;
  height: 4px;
  border-radius: 9px;
  background: #506387;
}
.section {
  padding-top: 120px;
  padding-bottom: 100px;
}
.section-intro {
  max-width: 570px;
}
.section-intro h2 {
  margin: 0;
  font-size: clamp(37px, 5vw, 59px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}
.section-intro h2 span {
  color: #6d83e8;
}
.section-intro > p:last-child {
  max-width: 490px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 17px;
}
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 55px;
}
.feature-card {
  min-height: 290px;
  position: relative;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(145deg, #0d172c, #0a1325);
  overflow: hidden;
}
.feature-wide {
  grid-column: span 2;
  min-height: 220px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.feature-card h3 {
  margin: 32px 0 9px;
  font-size: 24px;
  letter-spacing: -0.025em;
}
.feature-card p {
  max-width: 450px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}
.feature-number {
  color: #7590ff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.feature-visual {
  align-self: center;
  justify-self: end;
  display: flex;
  align-items: center;
}
.feature-visual .avatar {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  margin-left: -13px;
  border: 4px solid #0d172c;
  font-size: 19px;
}
.feature-visual b {
  margin-left: 12px;
  color: #8ea2cb;
  font-size: 13px;
}
.handoff {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 30px;
  color: #b9c7e4;
  font-size: 12px;
}
.handoff span {
  padding: 8px 9px;
  background: #172847;
  border-radius: 6px;
}
.handoff b {
  color: #718bff;
}
.routine {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  color: #8395b5;
  font-size: 12px;
}
.routine b {
  color: #d1daf0;
  font-weight: 600;
}
.calendar-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid #354b74;
  border-radius: 9px;
  color: #84a0ff;
  font-size: 22px;
}
.routine em {
  margin-left: auto;
  padding: 4px 7px;
  border-radius: 4px;
  background: #18373a;
  color: #6ed1b3;
  font-size: 9px;
  font-style: normal;
}
.feature-dark {
  background: linear-gradient(130deg, #131e3d, #172a55);
  border-color: #324f8d;
}
.feature-dark h3 {
  color: #edf2ff;
}
.audit-lines {
  align-self: center;
  justify-self: end;
  display: grid;
  gap: 11px;
  color: #a3b9f6;
  font-size: 13px;
}
.audit-lines span:last-child {
  color: #ffc17e;
}
.quote-section {
  background: #0b1427;
  border-top: 1px solid #192943;
  border-bottom: 1px solid #192943;
}
.quote {
  padding-top: 75px;
  padding-bottom: 77px;
  text-align: center;
}
.quote-mark {
  display: block;
  color: #6f88ff;
  font:
    80px/0 Georgia,
    serif;
}
.quote blockquote {
  max-width: 800px;
  margin: 0 auto;
  color: #dbe4f8;
  font-size: clamp(27px, 4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.04em;
}
.quote p {
  margin: 19px 0 0;
  color: #7485a4;
  font-size: 13px;
}
.centered {
  max-width: 680px;
  margin: auto;
  text-align: center;
}
.centered .eyebrow {
  margin-bottom: 16px;
}
.centered > p:last-child {
  margin-left: auto;
  margin-right: auto;
}
.pricing-card {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 70px;
  margin: 55px auto 0;
  padding: 38px;
  border: 1px solid #3c5594;
  border-radius: 14px;
  background: linear-gradient(135deg, #142348, #101b35);
  box-shadow: 0 25px 70px #0003;
}
.plan-kicker {
  color: #94a8ff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
}
.pricing-card h3 {
  max-width: 490px;
  margin: 15px 0 22px;
  font-size: 31px;
  line-height: 1.14;
  letter-spacing: -0.04em;
}
.pricing-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #b5c3dd;
  font-size: 14px;
}
.pricing-card li:before {
  content: "✓";
  display: inline-block;
  margin-right: 10px;
  color: #7f9aff;
  font-weight: 800;
}
.price {
  border-left: 1px solid #2f477c;
  padding-left: 42px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
.price-label {
  color: #8297c2;
  font-size: 12px;
}
.price strong {
  margin-top: 2px;
  font-size: 62px;
  line-height: 1;
  letter-spacing: -0.07em;
}
.price > span:not(.price-label) {
  margin-top: -3px;
  color: #9eafd1;
  font-size: 14px;
}
.price small {
  margin: 11px 0 22px;
  color: #8092b2;
  font-size: 11px;
}
.price .button {
  width: 100%;
}
.price-note {
  margin: 14px 0 0;
  color: #7d8eac;
  font-size: 11px;
  line-height: 1.5;
}
.pricing-disclaimer {
  margin: 20px auto 0;
  color: #7183a4;
  text-align: center;
  font-size: 12px;
}
.faq-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
}
.faq-list {
  border-top: 1px solid var(--line);
}
details {
  border-bottom: 1px solid var(--line);
  padding: 21px 0;
}
summary {
  cursor: pointer;
  list-style: none;
  color: #e4ebfb;
  font-size: 16px;
  font-weight: 650;
}
summary::-webkit-details-marker {
  display: none;
}
summary:after {
  content: "+";
  float: right;
  color: #7891ff;
  font-size: 21px;
  font-weight: 400;
}
details[open] summary:after {
  content: "−";
}
details p {
  max-width: 570px;
  margin: 13px 30px 0 0;
  color: var(--muted);
  font-size: 14px;
}
.final-cta {
  background: linear-gradient(120deg, #263f99, #343076);
  border-top: 1px solid #4d69cf;
}
.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 75px;
  padding-bottom: 75px;
}
.final-cta h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 61px);
  line-height: 1.03;
  letter-spacing: -0.055em;
}
.final-cta .eyebrow {
  color: #b6c2ff;
}
.final-cta .button-primary {
  background: #e4e9ff;
  color: #1b2a70;
}
.site-footer {
  display: flex;
  align-items: center;
  gap: 35px;
  padding-top: 28px;
  padding-bottom: 28px;
  color: #71819d;
  font-size: 12px;
}
.site-footer > div {
  display: flex;
  gap: 19px;
  margin-left: auto;
}
.site-footer small {
  color: #566783;
}
.legal {
  max-width: 800px;
  padding-top: 90px;
  padding-bottom: 130px;
}
.legal h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(42px, 6vw, 70px);
  line-height: 1.04;
  letter-spacing: -0.06em;
}
.legal h2 {
  margin: 48px 0 8px;
  font-size: 22px;
}
.legal p {
  max-width: 680px;
  color: var(--muted);
  font-size: 16px;
}
.legal-lede {
  margin-top: 25px !important;
  font-size: 20px !important;
  line-height: 1.5;
}
.legal a {
  color: var(--blue-2);
}
.legal-updated {
  margin-top: 55px !important;
  color: #647694 !important;
  font-size: 12px !important;
}
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 55px;
    padding-top: 50px;
  }
  .hero-card {
    max-width: 670px;
    transform: none;
  }
  .faq-section {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .pricing-card {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .price {
    border-left: 0;
    border-top: 1px solid #2f477c;
    padding: 28px 0 0;
  }
  .price .button {
    width: auto;
  }
  .final-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 640px) {
  .shell {
    padding-left: 20px;
    padding-right: 20px;
  }
  .site-header {
    padding: 20px;
    align-items: flex-start;
  }
  .site-header nav {
    gap: 12px;
    font-size: 12px;
  }
  .site-header nav a:not(.nav-link) {
    display: none;
  }
  .brand {
    font-size: 12px;
  }
  .hero h1 {
    font-size: 49px;
  }
  .hero-lede {
    font-size: 17px;
  }
  .preview-layout {
    grid-template-columns: 104px 1fr;
  }
  .preview-layout aside {
    padding: 17px 8px;
  }
  .preview-layout aside strong {
    font-size: 8px;
    gap: 4px;
  }
  .preview-layout aside .avatar {
    width: 20px;
    height: 20px;
    border-radius: 6px;
  }
  .preview-main {
    padding: 17px 12px;
  }
  .bubble-user {
    margin-left: 20px;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .feature-wide {
    grid-column: span 1;
    display: block;
    min-height: 0;
  }
  .feature-visual,
  .audit-lines {
    justify-self: start;
    margin-top: 28px;
  }
  .section {
    padding-top: 78px;
    padding-bottom: 70px;
  }
  .pricing-card {
    padding: 25px;
  }
  .pricing-card h3 {
    font-size: 26px;
  }
  .price strong {
    font-size: 55px;
  }
  .trust-strip {
    gap: 9px;
    font-size: 8px;
    letter-spacing: 0.08em;
    justify-content: space-between;
  }
  .trust-strip i {
    display: none;
  }
  .site-footer {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 19px;
  }
  .site-footer > div {
    order: 3;
    width: 100%;
    margin-left: 0;
  }
  .site-footer small {
    margin-left: auto;
  }
  .final-cta-inner {
    padding-top: 58px;
    padding-bottom: 58px;
  }
}
