@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;450;500;550;600;650;700&family=Manrope:wght@400;500;600;650;700;750;800&display=swap");
:root {
  --ink: #17213c;
  --muted: #697287;
  --blue: #506bff;
  --line: #e2e6ee;
  --paper: #fcfcfd;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
svg {
  width: 21px;
  height: 21px;
  flex-shrink: 0;
}
button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 5px;
}
img {
  max-width: 100%;
}
.skip-link {
  position: fixed;
  top: -80px;
  left: 20px;
  background: white;
  padding: 16px;
  z-index: 100;
}
.skip-link:focus {
  top: 12px;
}
.header {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  gap: 24px;
  position: sticky;
  top: 0;
  background: #fcfcfdeb;
  backdrop-filter: blur(20px);
  z-index: 20;
  border-bottom: 1px solid #e8ebf080;
}
.brand {
  display: flex;
  gap: 10px;
  align-items: center;
  font-family: Manrope, sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -1.1px;
  white-space: nowrap;
}
.brand img {
  object-fit: contain;
}
.brand-dot {
  color: var(--blue);
}
.header nav {
  display: flex;
  gap: 30px;
  font-size: 13px;
  color: #646d7e;
}
.header nav a:hover,
.login:hover,
.footer a:hover {
  color: var(--blue);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}
.login {
  font-size: 13px;
  font-weight: 600;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  padding: 18px 23px;
  border-radius: 8px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px #506bff40;
}
.primary {
  background: var(--blue);
  color: white;
  box-shadow:
    inset 0 1px 0 #ffffff38,
    0 4px 8px #506bff15;
}
.button.small {
  padding: 12px 16px;
  font-size: 12px;
}
.button.small svg {
  width: 17px;
}
.button.small svg:last-child {
  display: none;
}
.hero {
  position: relative;
  overflow: hidden;
  padding: 66px 5% 0;
}
.hero-atmosphere {
  position: absolute;
  inset: 0 0 120px;
  background: radial-gradient(ellipse at 76% 56%, #a6b9ff 0, transparent 34%),
    radial-gradient(ellipse at 15% 80%, #c5e0ff 0, transparent 38%),
    radial-gradient(ellipse at 55% 100%, #596dfa 0, transparent 55%),
    linear-gradient(180deg, #fcfcfd 10%, #f0f3ff 42%, #d1d9ff 100%);
  z-index: -1;
}
.hero-atmosphere:after,
.closing-glow:after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.13;
  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='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Cpath fill='%23000' filter='url(%23n)' opacity='.5' d='M0 0h180v180H0z'/%3E%3C/svg%3E");
}
.hero-content {
  text-align: center;
  position: relative;
}
.release {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  border: 1px solid #dfe4f4;
  background: #ffffffad;
  border-radius: 30px;
  padding: 9px 13px;
}
.release > span:last-child {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0;
  border-left: 1px solid #d9deea;
  padding-left: 12px;
  color: #627089;
}
.release-dot {
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 0 3px #506bff15;
}
h1,
h2,
h3,
h4,
p {
  margin: 0;
}
h1,
h2 {
  font-family: Manrope, sans-serif;
  font-weight: 600;
  letter-spacing: -3.5px;
  line-height: 1.09;
}
h1 {
  font-size: clamp(52px, 6.1vw, 88px);
  margin: 28px 0 22px;
}
h1 > span {
  color: var(--blue);
}
.hero-content > p {
  font-size: 17px;
  line-height: 1.7;
  color: #657086;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin: 28px 0 18px;
}
.watch-link {
  display: flex;
  gap: 9px;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
}
.watch-link svg {
  width: 17px;
}
.hero-content .hero-note {
  font-size: 11px;
  color: #77829a;
}
.hero-preview {
  position: relative;
  max-width: 1080px;
  margin: 56px auto 0;
  background: #fffffff5;
  border: 1px solid white;
  border-radius: 14px;
  box-shadow: 0 22px 70px #35488c1f;
  padding: 0 26px;
}
.preview-top {
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  border-bottom: 1px solid var(--line);
}
.tiny-logo {
  color: var(--blue);
  font-size: 20px;
  margin-right: 8px;
}
.preview-label {
  font-size: 9px;
  letter-spacing: 1.3px;
  color: #8991a5;
}
.load-row {
  display: flex;
  align-items: center;
  gap: 35px;
  padding: 26px 0;
}
.load-row > div {
  display: grid;
  gap: 9px;
}
.field-label {
  font-size: 9px;
  letter-spacing: 1px;
  color: #8b93a5;
}
.load-row strong {
  font-size: 15px;
  font-weight: 600;
}
.lane-arrow {
  color: #9aa9d7;
  font-size: 25px;
}
.row-rate {
  margin-left: 25px;
}
.load-status {
  margin-left: auto;
  font-size: 10px;
  color: #6274bd;
  background: #eef1ff;
  padding: 7px 10px;
  border-radius: 4px;
}
.preview-bottom {
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 70px;
  gap: 20px;
}
.preview-bottom > span {
  font-size: 11px;
  color: #788196;
}
.action-toolbar {
  display: flex;
  gap: 5px;
  margin: 12px 0;
}
.action-toolbar button {
  display: flex;
  align-items: center;
  gap: 7px;
  border: 1px solid #e4e7f0;
  background: white;
  color: #57627a;
  padding: 9px 13px;
  border-radius: 6px;
  font-size: 11px;
  cursor: pointer;
  transition: 0.2s;
}
.action-toolbar button:hover,
.action-toolbar button[aria-pressed="true"] {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
}
.action-toolbar svg {
  width: 15px;
  height: 15px;
}
.boards {
  max-width: 860px;
  min-height: 155px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  gap: 40px;
}
.boards > span {
  font-size: 9px;
  line-height: 1.7;
  letter-spacing: 1.3px;
  color: #8790a1;
}
.boards img {
  object-fit: contain;
  mix-blend-mode: multiply;
}
.boards > div {
  position: relative;
}
.boards small {
  display: block;
  text-align: center;
  font-size: 9px;
  color: #8890a1;
  position: absolute;
  bottom: -13px;
  left: 0;
  right: 0;
}
.section {
  max-width: 1200px;
  padding: 104px 30px;
  margin: auto;
}
.eyebrow {
  display: block;
  color: var(--blue);
  font-size: 10px;
  letter-spacing: 1.9px;
  font-weight: 700;
  margin-bottom: 22px;
}
h2 {
  font-size: clamp(36px, 4vw, 52px);
  letter-spacing: -2px;
}
.section-intro {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: flex-end;
}
.section-intro > p {
  max-width: 340px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
}
.action-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 48px;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
@media (min-width: 701px) {
  .action-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
.action-card {
  padding: 27px 24px 32px;
  background: white;
  border-right: 1px solid var(--line);
}
.action-card:last-child {
  border: 0;
}
.action-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #a0a7b7;
  font-size: 10px;
  margin-bottom: 33px;
}
.action-card-top svg {
  box-sizing: content-box;
  background: #f0f3ff;
  padding: 12px;
  border-radius: 10px;
  color: var(--blue);
}
.action-card h3 {
  font-size: 24px;
  font-weight: 550;
  letter-spacing: -0.6px;
  display: flex;
  justify-content: space-between;
}
.action-card h3 span {
  font-size: 19px;
  color: #adb5ca;
}
.action-card h4 {
  font-size: 12px;
  font-weight: 600;
  margin: 18px 0 8px;
}
.action-card p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.8;
}
.context-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 11px;
  color: #7b8496;
  margin-top: 24px;
}
.context-note > span {
  display: flex;
  color: var(--blue);
}
.context-note svg {
  width: 16px;
}
.film {
  padding-top: 42px;
}
.film-heading {
  text-align: center;
}
.film-heading h2 {
  font-size: 58px;
}
.film-heading p {
  font-size: 14px;
  color: var(--muted);
  margin-top: 17px;
}
.video-frame {
  margin-top: 35px;
  padding: 9px;
  background: #111a30;
  border-radius: 16px;
  box-shadow: 0 24px 65px #19265b1a;
}
.video-frame video {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
  border-radius: 9px;
  background: #060a16;
}
.film-caption {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: #7d879a;
  margin-top: 16px;
}
.details-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
  padding-top: 35px;
  padding-bottom: 120px;
}
.detail-visual {
  position: relative;
  border-radius: 18px;
  background: radial-gradient(ellipse at 5% 100%, #c2d4ff, transparent 65%),
    linear-gradient(135deg, #f1f4ff, #dfe7ff);
  padding: 48px 28px 63px;
}
.mini-window {
  background: white;
  border: 1px solid #e4e9fa;
  border-radius: 10px;
  box-shadow: 0 18px 35px #4d65ac1a;
  padding: 0 22px;
}
.mini-window-top {
  display: flex;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  font-weight: 600;
}
.mini-window-top > span:last-child {
  margin-left: auto;
  font-size: 8px;
  letter-spacing: 1px;
  color: #99a1b2;
}
.email-to {
  font-size: 10px;
  padding: 15px 0;
  color: #626b80;
}
.email-to > span {
  margin-right: 15px;
  color: #97a0b1;
}
.email-subject {
  font-size: 12px;
  font-weight: 600;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
}
.mini-window > p {
  font-size: 11px;
  line-height: 1.8;
  padding: 20px 0;
  color: #687287;
}
.captured {
  background: #f5f7fe;
  padding: 13px;
  border: 1px solid #e8edfc;
  border-radius: 7px;
}
.captured > span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  color: #5f73d3;
}
.captured svg {
  width: 14px;
  height: 14px;
}
.captured > div {
  display: flex;
  gap: 23px;
  margin-top: 13px;
  font-size: 9px;
  color: #97a0b0;
}
.captured b {
  display: block;
  color: #556079;
  font-weight: 500;
  margin-top: 5px;
}
.email-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 8px;
  color: #8e97aa;
  padding: 18px 0;
}
.email-foot > span {
  padding: 9px;
  background: var(--blue);
  color: white;
  border-radius: 4px;
}
.floating-label {
  position: absolute;
  bottom: 30px;
  right: 13px;
  display: flex;
  align-items: center;
  gap: 9px;
  background: white;
  padding: 13px 18px;
  border-radius: 7px;
  font-size: 11px;
  box-shadow: 0 8px 22px #5266a621;
  transform: rotate(-3deg);
}
.floating-label svg {
  color: var(--blue);
  width: 17px;
}
.detail-copy > p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  margin: 24px 0;
}
.detail-point {
  display: flex;
  gap: 15px;
  margin-top: 22px;
}
.detail-point > svg {
  color: var(--blue);
  width: 18px;
}
.detail-point h3 {
  font-size: 13px;
  font-weight: 600;
}
.detail-point p {
  font-size: 12px;
  line-height: 1.7;
  color: var(--muted);
  margin-top: 6px;
}
.workspace {
  background: #f0f3fb;
  border-top: 1px solid #e7ecf6;
  border-bottom: 1px solid #e7ecf6;
  overflow: hidden;
}
.workspace-inner {
  max-width: 1320px;
}
.workspace-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 60px;
  gap: 35px;
}
.workspace-heading p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
  margin-top: 22px;
}
.text-link svg {
  width: 17px;
}
.dashboard-frame {
  margin-top: 48px;
  border: 1px solid #dfe4f0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 60px #344b8712;
  background: white;
}
.browser-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 43px;
  padding: 0 20px;
  background: #fff;
  font-size: 10px;
  color: #848ca0;
  border-bottom: 1px solid #eaedf6;
}
.browser-bar > span:last-child {
  font-size: 8px;
  letter-spacing: 1.3px;
}
.browser-dots {
  display: flex;
  gap: 5px;
}
.browser-dots i {
  width: 6px;
  height: 6px;
  background: #dce1ec;
  border-radius: 50%;
}
.dashboard-frame > img {
  width: 100%;
  height: auto;
  display: block;
}
.workspace-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
  margin-top: 42px;
  padding: 0 60px;
}
.workspace-benefits > div > span {
  font-size: 10px;
  color: #899bd0;
}
.workspace-benefits h3 {
  font-size: 15px;
  font-weight: 550;
  margin: 10px 0;
}
.workspace-benefits p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.7;
}
.faq {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 90px;
}
.faq > div > p {
  font-size: 12px;
  color: var(--muted);
  margin-top: 25px;
}
.faq a {
  color: var(--blue);
}
details {
  border-bottom: 1px solid var(--line);
}
details:first-child {
  border-top: 1px solid var(--line);
}
summary {
  list-style: none;
  font-size: 14px;
  padding: 23px 30px 23px 0;
  cursor: pointer;
  position: relative;
  font-weight: 500;
}
summary::-webkit-details-marker {
  display: none;
}
summary:after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 19px;
  color: #7e8cac;
  top: 19px;
}
details[open] summary:after {
  content: "−";
}
details p {
  font-size: 13px;
  line-height: 1.8;
  color: var(--muted);
  padding: 0 20px 22px 0;
}
.closing {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  text-align: center;
  padding: 86px 25px 96px;
  background: #eff2ff;
}
.closing-glow {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(ellipse at 20% 95%, #b5ccff 0, transparent 55%),
    radial-gradient(ellipse at 90% 100%, #7d94ff 0, transparent 55%),
    linear-gradient(180deg, #f3f5ff, #e1e8ff);
}
.closing h2 {
  font-size: 70px;
  letter-spacing: -3px;
  margin-bottom: 30px;
}
.closing p {
  font-size: 11px;
  color: #69789c;
  margin-top: 19px;
}
.footer {
  max-width: 1320px;
  margin: auto;
  padding: 36px 30px;
  display: flex;
  gap: 30px;
  align-items: center;
}
.footer .brand {
  font-size: 20px;
}
.footer > p {
  font-size: 10px;
  color: #8c94a5;
}
.footer nav {
  margin-left: auto;
  display: flex;
  gap: 22px;
  font-size: 11px;
  color: #727c90;
}
.footer small {
  font-size: 10px;
  color: #a0a7b5;
}
@media (min-width: 1600px) {
  .hero {
    padding-top: 85px;
  }
  .hero-preview {
    margin-top: 70px;
  }
}
@media (max-width: 1000px) {
  .header nav {
    gap: 18px;
  }
  .header-actions {
    gap: 18px;
  }
  .header {
    padding: 0 4%;
  }
  .section {
    padding: 75px 30px;
  }
  .load-row {
    gap: 22px;
  }
  .row-rate {
    margin-left: 0;
  }
  .load-status {
    display: none;
  }
  .load-row > div:last-of-type {
    margin-left: auto;
  }
  .action-card {
    padding: 22px 17px;
  }
  .details-section {
    gap: 40px;
  }
  .workspace-heading,
  .workspace-benefits {
    padding: 0 10px;
  }
  .faq {
    gap: 45px;
  }
  .footer > p {
    display: none;
  }
  .hero-preview {
    margin-top: 42px;
  }
}
@media (max-width: 700px) {
  .header {
    height: 72px;
    padding: 0 20px;
    gap: 12px;
  }
  .brand {
    font-size: 21px;
    gap: 7px;
  }
  .brand img {
    width: 29px;
    height: 29px;
  }
  .header nav {
    display: none;
  }
  .header-actions {
    gap: 14px;
  }
  .login {
    font-size: 11px;
  }
  .button.small {
    font-size: 11px;
    padding: 10px 12px;
    gap: 7px;
  }
  .button.small svg {
    display: none;
  }
  .hero {
    padding: 45px 20px 0;
  }
  .release {
    font-size: 8px;
    letter-spacing: 0.8px;
  }
  .release > span:last-child {
    font-size: 9px;
    padding-left: 8px;
  }
  .release-dot {
    width: 5px;
    height: 5px;
  }
  h1 {
    font-size: clamp(42px, 9vw, 62px);
    letter-spacing: -2.4px;
    margin: 26px 0 20px;
  }
  .hero-content > p {
    font-size: 14px;
  }
  .desktop-break {
    display: none;
  }
  .hero-actions {
    flex-direction: column;
    gap: 20px;
    margin-top: 25px;
  }
  .hero-content .hero-note {
    font-size: 10px;
  }
  .hero-preview {
    padding: 0 15px;
    margin-top: 35px;
  }
  .preview-top {
    font-size: 10px;
    height: 46px;
  }
  .preview-label {
    display: none;
  }
  .load-row {
    gap: 12px;
    padding: 20px 0;
    flex-wrap: wrap;
  }
  .load-row strong {
    font-size: 12px;
  }
  .field-label {
    font-size: 8px;
  }
  .lane-arrow {
    font-size: 20px;
  }
  .row-rate {
    margin-left: auto !important;
  }
  .row-miles {
    display: none !important;
  }
  .preview-bottom {
    flex-direction: column-reverse;
    gap: 0;
    padding: 4px 0 13px;
  }
  .action-toolbar {
    gap: 6px;
    width: 100%;
    justify-content: center;
    margin: 9px 0 12px;
  }
  .action-toolbar button {
    flex: 1;
    justify-content: center;
    padding: 9px 5px;
    gap: 5px;
    font-size: 10px;
  }
  .preview-bottom > span {
    font-size: 9px;
    text-align: center;
    min-height: 24px;
    line-height: 1.5;
  }
  .boards {
    min-height: 126px;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 25px 0;
  }
  .boards > span {
    width: 100%;
    text-align: center;
    font-size: 8px;
  }
  .boards > span br {
    display: none;
  }
  .boards img {
    max-width: 90px;
    height: 30px;
  }
  .boards small {
    font-size: 8px;
  }
  .hero-atmosphere {
    bottom: 145px;
  }
  .section {
    padding: 65px 22px;
  }
  .section-intro {
    display: block;
  }
  .section-intro > p {
    margin-top: 20px;
    max-width: 100%;
    font-size: 13px;
  }
  h2 {
    font-size: 36px;
    letter-spacing: -1.7px;
  }
  .eyebrow {
    font-size: 9px;
    margin-bottom: 16px;
  }
  .action-grid {
    grid-template-columns: 1fr 1fr;
    margin-top: 28px;
  }
  .action-card {
    padding: 22px 17px;
  }
  .action-card:first-child {
    grid-column: 1 / -1;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .action-card:nth-child(3),
  .action-card:nth-child(5) {
    border-right: 0;
  }
  .action-card:nth-child(2),
  .action-card:nth-child(3) {
    border-bottom: 1px solid var(--line);
  }
  .action-card-top {
    margin-bottom: 25px;
  }
  .action-card h3 {
    font-size: 23px;
  }
  .action-card h4 {
    font-size: 11px;
    line-height: 1.5;
  }
  .action-card p {
    font-size: 11px;
  }
  .context-note {
    font-size: 10px;
    line-height: 1.6;
    align-items: flex-start;
    text-align: left;
  }
  .film {
    padding-top: 10px;
  }
  .film-heading h2 {
    font-size: 43px;
  }
  .film-heading p {
    font-size: 12px;
  }
  .video-frame {
    padding: 5px;
    border-radius: 10px;
    margin-top: 25px;
  }
  .film-caption {
    font-size: 8px;
    gap: 20px;
    line-height: 1.6;
  }
  .details-section {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 0;
  }
  .detail-copy {
    grid-row: 1;
  }
  .detail-visual {
    max-width: 470px;
    width: 100%;
    margin: auto;
    padding: 30px 20px 55px;
  }
  .detail-copy > p {
    font-size: 13px;
  }
  .workspace-heading {
    display: block;
    padding: 0;
  }
  .workspace-heading > div + div {
    margin-top: 24px;
  }
  .workspace-heading p {
    font-size: 13px;
  }
  .dashboard-frame {
    margin-top: 28px;
    overflow-x: auto;
  }
  .dashboard-frame > img {
    min-width: 720px;
  }
  .browser-bar {
    min-width: 720px;
  }
  .workspace-benefits {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 0;
    margin-top: 30px;
  }
  .workspace-benefits > div {
    padding-left: 31px;
    position: relative;
  }
  .workspace-benefits > div > span {
    position: absolute;
    left: 0;
    top: 3px;
  }
  .workspace-benefits h3 {
    margin-top: 0;
  }
  .faq {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .faq summary {
    font-size: 13px;
  }
  .closing {
    padding: 64px 22px;
  }
  .closing h2 {
    font-size: 54px;
  }
  .closing .eyebrow {
    font-size: 8px;
  }
  .footer {
    flex-wrap: wrap;
    gap: 20px;
    padding: 30px 22px;
  }
  .footer nav {
    gap: 18px;
  }
  .footer small {
    width: 100%;
    text-align: center;
    font-size: 9px;
  }
}
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  position: relative;
  z-index: 32;
}
.menu-toggle span {
  display: block;
  width: 17px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.2s;
}
.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.75px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}
.site-menu {
  position: fixed;
  inset: 88px 0 auto;
  min-height: calc(100vh - 88px);
  padding: 40px 6%;
  z-index: 19;
  background: rgba(247, 249, 255, 0.98);
  backdrop-filter: blur(24px);
  display: grid;
  grid-template-columns: minmax(280px, 620px) 1fr;
  gap: 8vw;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-12px);
  transition: 0.25s ease;
  pointer-events: none;
}
.site-menu[aria-hidden="false"] {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.site-menu nav {
  display: grid;
}
.site-menu nav a {
  display: flex;
  gap: 28px;
  align-items: baseline;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font:
    600 clamp(27px, 4vw, 50px) / 1.15 Manrope,
    sans-serif;
  letter-spacing: -1.8px;
}
.site-menu nav a span {
  color: var(--blue);
  font:
    600 9px/1 DM Sans,
    sans-serif;
  letter-spacing: 1px;
}
.site-menu-foot {
  align-self: end;
  padding-bottom: 12px;
}
.site-menu-foot a {
  color: var(--blue);
  font-weight: 600;
}
.site-menu-foot p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 1px;
}
body.menu-open {
  overflow: hidden;
}
.plugin-stage {
  padding: 36px 38px 55px;
}
.plugin-ui {
  overflow: hidden;
  max-width: 445px;
  margin: auto;
  border-radius: 8px;
  background: white;
  box-shadow: 0 24px 60px rgba(50, 70, 130, 0.2);
  color: #344057;
  font-family: Arial, sans-serif;
}
.plugin-bar {
  display: flex;
  height: 48px;
  align-items: center;
  gap: 10px;
  padding: 0 13px;
  background: #5870ff;
  color: white;
}
.plugin-name {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-right: auto;
  font-size: 18px;
  font-weight: 700;
}
.plugin-name img {
  width: 27px;
  height: 27px;
  filter: grayscale(1) brightness(0) invert(1);
}
.plugin-premium,
.plugin-logout {
  border-radius: 5px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}
.plugin-premium {
  padding: 7px 10px;
  background: white;
  color: #5870ff;
  text-transform: none;
}
.plugin-logout {
  padding: 9px 12px;
  border: 1px solid white;
}
.plugin-settings {
  font-size: 25px;
  transform: rotate(90deg);
}
.plugin-body {
  padding: 12px 13px 17px;
}
.plugin-body h3 {
  margin-bottom: 8px;
  color: #6d6d6d;
  font-size: 16px;
}
.plugin-body label {
  position: relative;
  display: block;
  margin-bottom: 10px;
  color: #777;
  font-size: 11px;
}
.plugin-body label > span {
  display: block;
  margin-top: -2px;
  padding: 10px 12px;
  border: 1px solid #b5c2d1;
  border-radius: 6px;
  color: #415169;
  font-size: 13px;
}
.plugin-body label small {
  color: #999;
  font-size: 10px;
}
.quick-insert {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 4px 0 14px;
  color: #777;
  font-size: 11px;
}
.quick-insert span {
  padding: 7px 9px;
  border-radius: 4px;
  background: #239ded;
  color: white;
}
.quick-insert span:nth-of-type(2) {
  background: #46ae50;
}
.quick-insert i {
  margin-left: auto;
  padding: 6px 8px;
  border-radius: 4px;
  background: #5870ff;
  color: white;
  font-style: normal;
}
.plugin-editor {
  overflow: hidden;
  height: 216px;
  border: 2px solid #e6e6e6;
  border-radius: 7px;
  background: white;
}
.editor-tools {
  display: flex;
  align-items: center;
  gap: 13px;
  height: 48px;
  padding: 0 16px;
  border-bottom: 5px solid #d8e0ea;
  color: #464646;
  font-size: 12px;
}
.editor-tools b:first-child {
  margin-right: auto;
}
.plugin-editor p {
  padding: 20px 17px;
  font-size: 13px;
  line-height: 1.65;
}
.plugin-send {
  display: flex;
  gap: 18px;
  margin-top: 12px;
  font-size: 11px;
}
.plugin-send span {
  flex: 1;
  padding: 12px;
  border: 1px solid #b5c2d1;
  border-radius: 6px;
}
.plugin-send b {
  min-width: 85px;
  padding: 12px;
  border-radius: 6px;
  background: #5870ff;
  color: white;
  text-align: center;
  text-transform: uppercase;
}
.plugin-body .account-title {
  margin: 13px 0 3px;
}
.plugin-account {
  color: #777;
  font-size: 10px;
}
.plugin-account span,
.plugin-account b {
  padding: 4px 6px;
  border-radius: 3px;
  background: #cee9d1;
  color: #66856a;
  font-weight: 400;
}
.plugin-account b {
  float: right;
}
.activity-app {
  min-width: 920px;
  padding: 29px 28px 35px;
  background: #f8f9fc;
  color: #273147;
}
.activity-head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.activity-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 10px;
  background: #e7ebff;
  color: var(--blue);
  font-size: 17px;
}
.activity-head h3 {
  font-size: 18px;
  letter-spacing: -0.3px;
}
.activity-head p {
  margin-top: 4px;
  color: #9aa3b5;
  font-size: 9px;
}
.activity-head button {
  margin-left: auto;
  padding: 9px 12px;
  border: 1px solid #e0e4ed;
  border-radius: 7px;
  background: white;
  color: #31394b;
  font-size: 10px;
}
.activity-filters {
  display: flex;
  gap: 10px;
  margin: 22px 0 17px;
}
.activity-filters > div {
  display: flex;
  gap: 3px;
}
.activity-filters span {
  padding: 8px 11px;
  border: 1px solid transparent;
  border-radius: 6px;
  color: #596376;
  font-size: 9px;
}
.activity-filters small {
  color: #a1a9b8;
}
.activity-filters .active {
  border-color: #e1e5ed;
  background: white;
  box-shadow: 0 2px 4px rgba(33, 45, 73, 0.06);
  color: #252f43;
}
.activity-filters .blue {
  border-color: var(--blue);
  background: var(--blue);
  color: white;
}
.activity-table {
  overflow: hidden;
  border-radius: 9px;
  background: white;
  box-shadow: 0 8px 24px rgba(47, 60, 93, 0.08);
}
.activity-row {
  display: grid;
  grid-template-columns: 0.75fr 1fr 1.1fr 0.65fr 0.62fr 0.72fr 1.45fr 1.5fr 0.9fr 0.65fr;
  align-items: center;
  min-height: 47px;
  padding: 0 12px;
  border-top: 1px solid #e8ebf1;
  color: #4d586c;
  font-size: 8.5px;
}
.activity-row.table-head {
  min-height: 34px;
  border-top: 0;
  color: #98a1b3;
  font-size: 7.5px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
.activity-row > span {
  overflow: hidden;
  padding-right: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.activity-row b {
  display: block;
  overflow: hidden;
  color: #2c3548;
  font-weight: 500;
  text-overflow: ellipsis;
}
.activity-row small {
  display: block;
  margin-top: 3px;
  color: #9ca5b5;
}
.activity-row .board-name {
  color: var(--blue);
  font-weight: 600;
}
.activity-row i {
  padding: 5px 7px;
  border-radius: 4px;
  background: #e9edff;
  color: var(--blue);
  font-style: normal;
}
@media (max-width: 1120px) {
  .desktop-nav {
    display: none !important;
  }
  .menu-toggle {
    display: flex;
  }
}
@media (max-width: 700px) {
  .site-menu {
    inset: 72px 0 auto;
    min-height: calc(100vh - 72px);
    grid-template-columns: 1fr;
    padding: 25px 22px 34px;
  }
  .site-menu nav a {
    padding: 11px 0;
    font-size: 30px;
  }
  .site-menu-foot {
    align-self: end;
  }
  .plugin-stage {
    padding: 22px 12px 48px;
  }
  .plugin-ui {
    font-size: 90%;
  }
  .plugin-premium,
  .plugin-settings {
    display: none;
  }
  .editor-tools {
    gap: 10px;
    padding: 0 11px;
  }
  .editor-tools span:nth-last-child(-n + 3) {
    display: none;
  }
  .dashboard-frame {
    overflow-x: auto;
  }
  .activity-app,
  .browser-bar {
    min-width: 920px;
  }
}
.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 530px;
  padding: 118px max(6%, calc((100vw - 1140px) / 2));
  background: #f1f4ff;
}
.page-glow {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(ellipse at 82% 25%, #9db2ff 0, transparent 36%),
    radial-gradient(ellipse at 22% 105%, #bad7ff 0, transparent 47%),
    linear-gradient(145deg, #fbfcff 12%, #e9edff 64%, #d6defe);
}
.page-glow::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.1;
  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='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Cpath fill='%23000' filter='url(%23n)' opacity='.5' d='M0 0h180v180H0z'/%3E%3C/svg%3E");
}
.page-hero h1 {
  margin: 0 0 26px;
  font-size: clamp(62px, 7vw, 98px);
  line-height: 0.98;
}
.page-hero > p {
  max-width: 540px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.contact-location {
  grid-column: 1 / -1;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}
.contact-card {
  min-height: 350px;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
a.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(52, 72, 135, 0.1);
}
.contact-card > span,
.legal-content aside > span {
  color: var(--blue);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
}
.contact-card h2 {
  margin: 24px 0 22px;
  font-size: clamp(26px, 3vw, 40px);
  overflow-wrap: anywhere;
}
.contact-card p {
  max-width: 390px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}
.contact-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-top: 26px;
  border: 1px solid #dde4ff;
  border-radius: 15px;
  background: #eef2ff;
  color: var(--blue);
}
.contact-icon svg {
  width: 29px;
  height: 29px;
}
.contact-card b {
  display: block;
  margin-top: 34px;
  color: var(--blue);
  font-size: 12px;
}
.contact-help {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  padding-top: 0;
  align-items: start;
}
.contact-help p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
}
.contact-help-links {
  display: grid;
  margin-top: 20px;
}
.contact-help-links a {
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  color: var(--blue);
  font-size: 13px;
}
@media (max-width: 700px) {
  .contact-help {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}
.page-cta {
  padding: 90px 25px;
  background: #eff2ff;
  text-align: center;
}
.page-cta h2 {
  margin-bottom: 30px;
}
.legal-hero {
  min-height: 480px;
  padding-top: 95px;
}
.legal-content {
  display: grid;
  grid-template-columns: 240px minmax(0, 760px);
  gap: 90px;
  max-width: 1160px;
  margin: auto;
  padding: 90px 30px 120px;
}
.legal-content aside {
  position: sticky;
  top: 125px;
  align-self: start;
  display: grid;
  gap: 14px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #f8f9fd;
}
.legal-content aside a,
.legal-content aside p {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}
.legal-content aside a:hover {
  color: var(--blue);
}
.legal-content > div > section {
  position: relative;
  padding: 0 0 55px 48px;
  scroll-margin-top: 110px;
}
.legal-content > div > section + section {
  padding-top: 55px;
  border-top: 1px solid var(--line);
}
.legal-content > div > section > span {
  position: absolute;
  left: 0;
  top: 7px;
  color: var(--blue);
  font-size: 10px;
}
.legal-content > div > section + section > span {
  top: 62px;
}
.legal-content h2 {
  margin-bottom: 22px;
  font-size: 29px;
  letter-spacing: -1px;
}
.legal-content p {
  margin-bottom: 17px;
  color: #5f687b;
  font-size: 14px;
  line-height: 1.9;
}
.legal-content p a {
  color: var(--blue);
}
.terms-content aside a {
  color: var(--blue);
  font-weight: 600;
}
@media (max-width: 700px) {
  .page-hero {
    min-height: 430px;
    padding: 85px 22px 70px;
  }
  .page-hero h1 {
    font-size: 58px;
  }
  .page-hero > p {
    font-size: 14px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-card {
    min-height: 300px;
    padding: 28px;
  }
  .contact-card h2 {
    margin-top: 24px;
  }
  .legal-content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 55px 22px 80px;
  }
  .legal-content aside {
    position: static;
  }
  .legal-content > div > section {
    padding-left: 35px;
  }
}
.subpage .page-hero.compact-hero {
  min-height: 0;
  padding-top: 36px;
  padding-bottom: 32px;
}
.subpage .page-hero.compact-hero .eyebrow {
  margin-bottom: 12px;
}
.subpage .page-hero.compact-hero h1 {
  font-size: clamp(32px, 3.2vw, 46px);
  letter-spacing: -1.5px;
  line-height: 1.12;
  margin: 0 0 12px;
}
.subpage .page-hero.compact-hero > p {
  max-width: 760px;
  font-size: 14px;
  line-height: 1.8;
}
.compact-hero + .contact-grid,
.compact-hero + .legal-content {
  padding-top: 32px;
}
/* One blue light palette connects the large atmospheric fields and cards. */
.hero {
  isolation: isolate;
}
.gradient-surface {
  position: relative;
  isolation: isolate;
  --light-x: 65%;
  --light-y: 40%;
}
.gradient-surface::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(
      ellipse at var(--light-x) var(--light-y),
      #8dacf94d 0%,
      #b7d9ff30 32%,
      transparent 70%
    ),
    radial-gradient(ellipse at 100% 100%, #657eff17, transparent 65%);
  transition: opacity 600ms ease;
}
.hero.gradient-surface::before,
.closing.gradient-surface::before,
.page-hero.gradient-surface::before {
  background: radial-gradient(
      ellipse at var(--light-x) var(--light-y),
      #6c89ff70,
      #a4cbff40 30%,
      transparent 68%
    ),
    radial-gradient(ellipse at 10% 85%, #b4dfff50, transparent 60%);
}
.hero-atmosphere,
.closing-glow,
.page-glow {
  z-index: -2;
}
.button.primary.gradient-surface {
  overflow: hidden;
}
.button.primary.gradient-surface::before {
  background: radial-gradient(
    ellipse at var(--light-x) var(--light-y),
    #b4deff70,
    #7893ff50 38%,
    transparent 80%
  );
}
.action-card.gradient-surface,
.contact-card.gradient-surface,
.hero-preview.gradient-surface,
.journal-card.gradient-surface {
  transition:
    border-color 450ms ease,
    box-shadow 450ms ease,
    transform 250ms ease;
}
@media (hover: hover) and (pointer: fine) {
  .gradient-surface:hover::before,
  .gradient-surface:focus-visible::before {
    opacity: 1;
  }
  .action-grid:hover .action-card::before {
    opacity: 0.35;
  }
  .action-grid .action-card:hover::before {
    opacity: 1;
  }
  .action-card.gradient-surface:hover,
  .contact-card.gradient-surface:hover,
  .journal-card.gradient-surface:hover {
    border-color: #a3b3ff;
    box-shadow:
      inset 0 0 32px #8caaff0d,
      0 12px 32px #506bff12;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
}
