
:root {
  color-scheme: light;
  --cream: #fff7e8;
  --cream-2: #fffdf6;
  --ink: #1d2330;
  --muted: #657184;
  --blue: #4057ff;
  --purple: #8d5cff;
  --coral: #ff795d;
  --mint: #72d6b1;
  --yellow: #ffd166;
  --line: rgba(29,35,48,.11);
  --soft: rgba(255,255,255,.64);
  --shadow: 0 24px 70px rgba(40, 52, 90, .13);
  --sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--sans);
  background:
    linear-gradient(90deg, rgba(29,35,48,.035) 1px, transparent 1px),
    linear-gradient(rgba(29,35,48,.035) 1px, transparent 1px),
    linear-gradient(180deg, var(--cream), #f3f7ff 58%, #fff7e8 100%);
  background-size: 28px 28px, 28px 28px, auto;
  letter-spacing: -.018em;
}
a { color: inherit; text-decoration: none; }
::selection { background: var(--yellow); color: var(--ink); }

.page-glow {
  position: fixed;
  pointer-events: none;
  filter: blur(16px);
  opacity: .55;
  z-index: 0;
}
.page-glow.one {
  width: 390px;
  height: 390px;
  right: -90px;
  top: 80px;
  background: radial-gradient(circle, rgba(141,92,255,.36), transparent 68%);
}
.page-glow.two {
  width: 330px;
  height: 330px;
  left: -80px;
  bottom: 120px;
  background: radial-gradient(circle, rgba(114,214,177,.34), transparent 67%);
}
.header, main, .footer { position: relative; z-index: 1; }
.header {
  width: min(1180px, calc(100% - 34px));
  margin: 18px auto 0;
  padding: 12px;
  min-height: 68px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  background: rgba(255,253,246,.75);
  border: 1px solid rgba(255,255,255,.74);
  border-radius: 26px;
  box-shadow: 0 16px 48px rgba(40,52,90,.08);
  backdrop-filter: blur(20px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: -.05em;
  font-size: 22px;
}
.brand-glyph {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background:
    radial-gradient(circle at 24% 20%, rgba(255,255,255,.75), transparent 28%),
    linear-gradient(135deg, var(--blue), var(--purple) 54%, var(--coral));
  color: white;
  font-weight: 1000;
  font-size: 22px;
  box-shadow: 0 12px 28px rgba(64,87,255,.28);
}
.nav {
  justify-self: center;
  display: flex;
  gap: 8px;
  padding: 4px;
  background: rgba(29,35,48,.04);
  border-radius: 18px;
}
.nav a {
  padding: 10px 13px;
  border-radius: 14px;
  color: #4f5a70;
  font-size: 14px;
  font-weight: 730;
}
.nav a:hover, .nav a.active {
  background: white;
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(40,52,90,.08);
}
.top-cta {
  padding: 12px 15px;
  border-radius: 16px;
  background: var(--ink);
  color: white;
  font-size: 13px;
  font-weight: 850;
}
.menu { display: none; }

main {
  width: min(1180px, calc(100% - 34px));
  margin: 0 auto;
}
.hero {
  padding: 88px 0 70px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 520px;
  gap: 58px;
  align-items: center;
}
.badge, .kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.86);
  color: #526078;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: -.02em;
  box-shadow: 0 10px 30px rgba(40,52,90,.06);
}
.badge span {
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(114,214,177,.16);
}
.kicker {
  color: var(--blue);
  font-weight: 850;
}
h1, h2, h3 {
  margin: 0;
  letter-spacing: -.075em;
  line-height: .92;
}
h1 {
  max-width: 830px;
  font-size: clamp(54px, 8vw, 112px);
  font-weight: 950;
}
h2 {
  font-size: clamp(34px, 5vw, 70px);
  font-weight: 920;
}
h3 {
  font-size: 28px;
  font-weight: 900;
}
.lead, .page-hero p {
  max-width: 760px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.62;
  letter-spacing: -.025em;
}
.hero-actions {
  margin-top: 34px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 17px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 880;
}
.button.primary {
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  box-shadow: 0 18px 42px rgba(64,87,255,.25);
}
.button.ghost {
  background: rgba(255,255,255,.7);
  border-color: rgba(255,255,255,.92);
}
.app-card {
  padding: 16px;
  border-radius: 32px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transform: rotate(1.2deg);
}
.app-top {
  min-height: 46px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #667188;
  font-family: var(--mono);
  font-size: 12px;
  padding: 0 8px 10px;
}
.traffic {
  display: flex;
  gap: 7px;
}
.traffic i {
  width: 11px;
  height: 11px;
  border-radius: 99px;
  background: var(--coral);
}
.traffic i:nth-child(2) { background: var(--yellow); }
.traffic i:nth-child(3) { background: var(--mint); }
.app-grid {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 14px;
}
.sidebar-card, .doc-card {
  border-radius: 24px;
  background: rgba(255,253,246,.85);
  border: 1px solid var(--line);
  padding: 18px;
}
.sidebar-card {
  display: grid;
  align-content: start;
  gap: 10px;
}
.sidebar-card b {
  margin-bottom: 8px;
  font-size: 13px;
  color: var(--ink);
}
.sidebar-card span {
  display: block;
  color: #657184;
  font-size: 13px;
  padding: 9px 10px;
  border-radius: 12px;
}
.sidebar-card .active-pill {
  background: rgba(64,87,255,.1);
  color: var(--blue);
  font-weight: 850;
}
.doc-label {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #8a4c3e;
  background: rgba(255,121,93,.16);
  font-family: var(--mono);
  font-size: 12px;
}
.doc-card h2 {
  font-size: 34px;
  line-height: .96;
}
.doc-card p {
  color: var(--muted);
  line-height: 1.65;
}
.doc-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.doc-meta span {
  border-radius: 999px;
  background: rgba(29,35,48,.06);
  padding: 8px 10px;
  color: #526078;
  font-size: 12px;
  font-weight: 760;
}
.section {
  padding: 66px 0;
}
.strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.strip div {
  min-height: 138px;
  padding: 22px;
  border-radius: 26px;
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(255,255,255,.76);
  box-shadow: 0 16px 42px rgba(40,52,90,.06);
}
.strip strong {
  display: block;
  margin-bottom: 12px;
  font-size: 24px;
  letter-spacing: -.05em;
}
.strip span {
  color: var(--muted);
  line-height: 1.55;
}
.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 58px;
  align-items: start;
}
.big-copy {
  margin: 0;
  color: #3f4a5e;
  font-size: clamp(23px, 2.8vw, 38px);
  line-height: 1.34;
  letter-spacing: -.055em;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.cards article {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  padding: 26px;
  border-radius: 32px;
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(255,255,255,.82);
  box-shadow: 0 16px 42px rgba(40,52,90,.06);
}
.cards article::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  right: -60px;
  bottom: -70px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(64,87,255,.14), transparent 66%);
}
.icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,121,93,.2), rgba(141,92,255,.18));
  color: var(--blue);
  font-size: 24px;
}
.cards p, .product-flow p, .workflow-grid p {
  color: var(--muted);
  line-height: 1.66;
}
.canvas {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 40px;
  align-items: center;
  padding: 44px;
  border-radius: 40px;
  background:
    radial-gradient(circle at 80% 20%, rgba(255,209,102,.22), transparent 28%),
    linear-gradient(135deg, rgba(255,255,255,.72), rgba(255,255,255,.38));
  border: 1px solid rgba(255,255,255,.82);
  box-shadow: var(--shadow);
}
.workflow-bubbles {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.workflow-bubbles span {
  padding: 13px 15px;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.86);
  color: #455169;
  font-weight: 780;
}
.workflow-bubbles span:nth-child(3n+1) { background: rgba(114,214,177,.18); }
.workflow-bubbles span:nth-child(3n+2) { background: rgba(255,121,93,.14); }
.workflow-bubbles span:nth-child(3n+3) { background: rgba(141,92,255,.13); }
.page-hero {
  max-width: 930px;
  padding: 86px 0 42px;
}
.product-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.product-flow article, .workflow-grid article {
  padding: 28px;
  min-height: 240px;
  border-radius: 34px;
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(255,255,255,.82);
  box-shadow: 0 16px 42px rgba(40,52,90,.06);
}
.product-flow span, .workflow-grid b {
  display: inline-flex;
  margin-bottom: 48px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(64,87,255,.1);
  color: var(--blue);
  font-family: var(--mono);
  font-size: 12px;
}
.feature-table {
  display: grid;
  gap: 10px;
}
.table-row {
  display: grid;
  grid-template-columns: .8fr 1fr .8fr;
  gap: 18px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,.56);
  border: 1px solid rgba(255,255,255,.78);
}
.table-row.head {
  color: var(--blue);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 850;
}
.table-row span:first-child {
  font-weight: 900;
}
.workflow-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.statement, .contact-panel {
  padding: 40px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 85% 8%, rgba(255,209,102,.25), transparent 22%),
    linear-gradient(135deg, #1d2330, #293653);
  color: white;
  box-shadow: var(--shadow);
}
.statement h2, .statement p, .contact-panel h2, .contact-panel p {
  color: white;
}
.statement p, .contact-panel p {
  color: rgba(255,255,255,.72);
  max-width: 720px;
  line-height: 1.7;
}
.contact-panel {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 40px;
}
.contact-list {
  display: grid;
  gap: 10px;
  align-content: center;
}
.contact-list span {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.12);
}
.policy {
  max-width: 860px;
  padding: 40px;
  border-radius: 34px;
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(255,255,255,.82);
}
.policy h2 {
  margin: 32px 0 0;
  font-size: 34px;
}
.policy h2:first-child { margin-top: 0; }
.policy p {
  color: var(--muted);
  line-height: 1.7;
}
.policy a {
  color: var(--blue);
  font-weight: 850;
}
.footer {
  width: min(1180px, calc(100% - 34px));
  margin: 38px auto 18px;
  padding: 28px;
  border-radius: 34px;
  background: rgba(255,253,246,.72);
  border: 1px solid rgba(255,255,255,.82);
  box-shadow: 0 16px 48px rgba(40,52,90,.08);
}
.footer-shell {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
}
.footer-main p {
  max-width: 520px;
  color: var(--muted);
  line-height: 1.68;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.footer h4 {
  margin: 0 0 12px;
  color: var(--blue);
  font-family: var(--mono);
  font-size: 12px;
}
.footer a {
  display: block;
  margin: 9px 0;
  color: #526078;
}
.footer a:hover {
  color: var(--ink);
}
.footer-bottom {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #667188;
  font-size: 13px;
}
@media (max-width: 930px) {
  .header {
    grid-template-columns: 1fr auto;
  }
  .menu {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 12px;
    border: 1px solid rgba(29,35,48,.12);
    background: white;
    border-radius: 14px;
    font-weight: 850;
  }
  .nav {
    display: none;
    grid-column: 1 / -1;
    justify-self: stretch;
    flex-wrap: wrap;
  }
  .nav.open { display: flex; }
  .top-cta { display: none; }
  .hero, .split, .canvas, .contact-panel, .footer-shell {
    grid-template-columns: 1fr;
  }
  .app-grid {
    grid-template-columns: 1fr;
  }
  .strip, .cards, .product-flow, .workflow-grid, .footer-links {
    grid-template-columns: 1fr;
  }
  h1 { font-size: clamp(46px, 14vw, 78px); }
  h2 { font-size: clamp(34px, 11vw, 56px); }
  .canvas, .statement, .contact-panel, .policy {
    padding: 26px;
    border-radius: 28px;
  }
  .table-row {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    display: block;
  }
}
