:root {
  --bg: #f6f8f5;
  --bg-soft: #eef3f0;
  --bg-panel: #fbfcf8;
  --text: #111513;
  --muted: #68716d;
  --muted-strong: #303936;
  --line: #d8dfd7;
  --line-strong: #aebbb2;
  --accent: #14976f;
  --accent-dark: #0d684f;
  --accent-soft: #e7f4ee;
  --cobalt: #315fcf;
  --amber: #b77924;
  --charcoal: #151816;
  --surface: #ffffff;
  --glass: rgba(255, 255, 255, 0.78);
  --shadow: 0 30px 80px rgba(17, 21, 19, 0.16);
  --shadow-soft: 0 16px 36px rgba(17, 21, 19, 0.08);
  --radius: 8px;
  --font-body: "Archivo", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  color-scheme: light;
  font-family: var(--font-body);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, #f5f7f4 0%, #ffffff 34%, #eef3ef 100%),
    var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    repeating-linear-gradient(90deg, rgba(17, 21, 19, 0.045) 0 1px, transparent 1px 96px),
    repeating-linear-gradient(180deg, rgba(17, 21, 19, 0.035) 0 1px, transparent 1px 96px),
    linear-gradient(90deg, rgba(20, 151, 111, 0.08), transparent 22%, transparent 78%, rgba(49, 95, 207, 0.06));
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.76), transparent 74%);
}

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section-shell,
.site-footer {
  width: min(100% - 40px, 1260px);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  width: min(100% - 40px, 1280px);
  min-height: 62px;
  margin: 16px auto 0;
  padding: 0 10px 0 14px;
  border: 1px solid rgba(186, 198, 189, 0.74);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(249, 251, 248, 0.78)),
    var(--glass);
  box-shadow:
    0 18px 46px rgba(17, 21, 19, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(22px) saturate(1.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
  font-size: 21px;
  font-weight: 820;
  font-variation-settings: "wdth" 88;
  line-height: 1;
}

.brand-logo {
  display: block;
  width: 38px;
  height: 38px;
  border-radius: 9px;
  object-fit: cover;
  box-shadow:
    0 12px 24px rgba(20, 151, 111, 0.22),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.brand-mark {
  position: relative;
  display: inline-block;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: linear-gradient(180deg, #15c98e, #00926b);
  box-shadow: 0 12px 24px rgba(0, 122, 90, 0.22);
  flex: 0 0 auto;
}

.brand-mark::before {
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 0 0, #ffffff 0 2px, transparent 2.5px),
    radial-gradient(circle at 100% 0, #ffffff 0 2px, transparent 2.5px),
    radial-gradient(circle at 0 100%, #ffffff 0 2px, transparent 2.5px),
    radial-gradient(circle at 100% 100%, #ffffff 0 2px, transparent 2.5px);
  content: "";
}

.brand-mark::after {
  position: absolute;
  inset: 9px;
  border: 2px solid #ffffff;
  border-radius: 4px;
  clip-path: polygon(35% 0, 65% 0, 65% 35%, 100% 35%, 100% 65%, 65% 65%, 65% 100%, 35% 100%, 35% 65%, 0 65%, 0 35%, 35% 35%);
  content: "";
}

.brand-mark-large {
  width: 58px;
  height: 58px;
  border-radius: 10px;
}

.brand-mark-large::before {
  inset: 14px;
  background:
    radial-gradient(circle at 0 0, #ffffff 0 3.5px, transparent 4px),
    radial-gradient(circle at 100% 0, #ffffff 0 3.5px, transparent 4px),
    radial-gradient(circle at 0 100%, #ffffff 0 3.5px, transparent 4px),
    radial-gradient(circle at 100% 100%, #ffffff 0 3.5px, transparent 4px);
}

.brand-mark-large::after {
  inset: 15px;
  border-width: 3px;
  border-radius: 6px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 46px;
  color: #2d3633;
  font-size: 14px;
  font-weight: 690;
}

.desktop-nav a,
.footer-columns a {
  transition:
    color 160ms ease,
    opacity 160ms ease;
}

.desktop-nav a:hover,
.footer-columns a:hover {
  color: var(--accent-dark);
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid #111827;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent),
    var(--charcoal);
  color: #ffffff;
  font-size: 14px;
  font-weight: 760;
  box-shadow: 0 12px 24px rgba(17, 21, 19, 0.2);
}

.menu-button {
  display: none;
  justify-self: end;
  width: 42px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--surface);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
}

.mobile-nav {
  position: fixed;
  inset: 72px 16px auto 16px;
  z-index: 18;
  display: none;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.mobile-nav a {
  display: block;
  padding: 14px 12px;
  border-radius: 7px;
  color: var(--muted-strong);
  font-size: 15px;
  font-weight: 680;
}

.mobile-nav a:hover {
  background: var(--accent-soft);
}

.hero {
  display: grid;
  grid-template-columns: minmax(340px, 0.58fr) minmax(760px, 1.42fr);
  align-items: center;
  gap: clamp(34px, 4.6vw, 72px);
  width: min(100% - 32px, 1480px);
  padding: 62px 0 58px;
}

.hero-copy {
  min-width: 0;
  padding-top: 4px;
}

.hero-logo-row {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: #111513;
  font-size: 21px;
  font-weight: 860;
  font-variation-settings: "wdth" 86;
}

.hero-logo-row img {
  display: block;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  box-shadow:
    0 14px 28px rgba(20, 151, 111, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.hero-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 560px;
  margin-bottom: 24px;
}

.hero-kicker span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(180, 191, 182, 0.82);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #38423e;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.hero h1 {
  width: 100%;
  max-width: 650px;
  margin: 0;
  color: var(--text);
  font-size: clamp(54px, 5.2vw, 78px);
  line-height: 0.98;
  font-weight: 890;
  font-variation-settings: "wdth" 82;
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: normal;
}

.hero p {
  max-width: 560px;
  margin: 26px 0 0;
  color: #3d4743;
  font-size: 19px;
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  height: 50px;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 780;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  border: 1px solid #0f1412;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), transparent),
    var(--charcoal);
  color: #ffffff;
  box-shadow:
    0 16px 30px rgba(17, 21, 19, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.button-primary:hover {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent),
    #0b0f0d;
  box-shadow: 0 18px 34px rgba(17, 21, 19, 0.26);
}

.button-secondary {
  border: 1px solid rgba(154, 167, 158, 0.72);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 249, 245, 0.86)),
    #ffffff;
  color: #1e2824;
}

.button-secondary:hover {
  border-color: #7f8e87;
  background: #fbfdfc;
}

.hero-specs {
  display: grid;
  max-width: 590px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 32px 0 0;
  overflow: hidden;
  border: 1px solid rgba(188, 199, 190, 0.78);
  border-radius: 10px;
  background: rgba(188, 199, 190, 0.78);
  box-shadow: 0 16px 34px rgba(17, 21, 19, 0.06);
}

.hero-specs div {
  min-width: 0;
  padding: 16px 15px;
  background: rgba(255, 255, 255, 0.74);
}

.hero-specs dt {
  margin: 0 0 6px;
  color: var(--accent-dark);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-specs dd {
  margin: 0;
  color: #232b28;
  font-size: 14px;
  font-weight: 760;
  line-height: 1.3;
}

.button.full {
  width: 100%;
  height: 48px;
  min-height: 48px;
}

.app-screenshot-frame {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(55, 65, 61, 0.36);
  border-radius: 16px;
  background: #0f1412;
  box-shadow:
    0 34px 86px rgba(17, 21, 19, 0.2),
    0 0 0 10px rgba(255, 255, 255, 0.7);
}

.app-screenshot-frame::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  content: "";
}

.app-screenshot-frame img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.app-screenshot-frame figcaption {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 0 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #111513;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.app-screenshot-frame figcaption span:last-child {
  color: rgba(255, 255, 255, 0.54);
}

.hero > .hero-product-window {
  display: none !important;
}

.product-window {
  min-width: 0;
  overflow: hidden;
  border: 5px solid #101923;
  border-radius: 8px;
  background: #ffffff;
  box-shadow:
    0 30px 75px rgba(15, 23, 42, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.9);
}

.window-top {
  display: grid;
  grid-template-columns: 72px 240px minmax(190px, 1fr) 98px;
  align-items: center;
  gap: 12px;
  height: 50px;
  padding: 0 12px;
  background: #172232;
  color: #d9e3ec;
}

.traffic {
  display: flex;
  gap: 8px;
}

.traffic span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.traffic span:nth-child(1) {
  background: #ff5f57;
}

.traffic span:nth-child(2) {
  background: #ffbd2e;
}

.traffic span:nth-child(3) {
  background: #28c840;
}

.project-switcher {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}

.project-switcher span,
.project-switcher strong {
  min-width: 0;
  overflow: hidden;
  padding: 5px 8px;
  border-radius: 6px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(255, 255, 255, 0.58);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.project-switcher strong {
  color: #111827;
  font-weight: 740;
}

.command-input {
  min-width: 0;
  overflow: hidden;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.08);
  color: #9facba;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.top-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.top-controls span {
  width: 20px;
  height: 20px;
  border: 1px solid rgba(71, 85, 105, 0.3);
  border-radius: 5px;
}

.window-body {
  display: grid;
  min-height: 640px;
  grid-template-columns: 86px minmax(0, 1fr) 205px;
  background: #f5f7f8;
}

.mock-rail {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 9px;
  border-right: 1px solid #dfe6e2;
  background: #ffffff;
}

.rail-item {
  display: grid;
  min-height: 54px;
  place-items: center;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: #344054;
  font-size: 10px;
  font-weight: 720;
}

.rail-item.active {
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.rail-item.bottom {
  margin-top: auto;
}

.pane-grid {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  grid-template-rows: 1fr 0.88fr;
  gap: 10px;
  padding: 10px;
  transition:
    grid-template-columns 240ms ease,
    grid-template-rows 240ms ease;
}

.product-window[data-layout="focus"] .pane-grid {
  grid-template-columns: 1.35fr 0.65fr;
  grid-template-rows: 1.2fr 0.7fr;
}

.product-window[data-layout="columns"] .pane-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: 1fr;
}

.product-window[data-layout="columns"] .workspace-pane {
  min-height: 0;
}

.product-window[data-layout="grid"] .pane-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

.workspace-pane {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #d9e0dc;
  border-radius: 8px;
  background: #ffffff;
}

.workspace-pane header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 12px;
  border-bottom: 1px solid #e4e9e6;
  color: #192231;
  font-size: 12px;
}

.workspace-pane header strong,
.workspace-pane header span:last-child {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.workspace-pane header span:last-child {
  color: #667085;
  font-size: 11px;
}

.app-dot {
  width: 15px;
  height: 15px;
  border-radius: 4px;
}

.gmail {
  background: #ea4335;
}

.slack {
  background: #4a154b;
}

.notion {
  background: #111827;
}

.github {
  background: #24292f;
}

.mail-layout {
  display: grid;
  height: calc(100% - 42px);
  grid-template-columns: 112px minmax(0, 1fr);
}

.mail-layout nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 8px;
  border-right: 1px solid #edf1ee;
}

.mail-layout nav span,
.repo-list span {
  overflow: hidden;
  padding: 7px 8px;
  border-radius: 6px;
  color: #5f6b78;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mail-layout nav .selected {
  background: #e8f0fe;
  color: var(--cobalt);
  font-weight: 730;
}

.message-list {
  padding: 12px;
}

.message {
  display: grid;
  gap: 2px;
  padding: 10px;
  border-bottom: 1px solid #eef2ef;
  color: #53606d;
  font-size: 12px;
}

.message strong {
  color: #182230;
}

.message.selected {
  border-radius: 7px;
  background: #f2f7ff;
}

.chat-list {
  display: grid;
  gap: 10px;
  padding: 16px 14px 10px;
  font-size: 12px;
}

.chat-list p {
  margin: 0;
  color: #475467;
}

.chat-list strong {
  margin-right: 5px;
  color: #182230;
}

.chat-input,
.agent-input {
  margin: 12px;
  padding: 10px 12px;
  border: 1px solid #e1e7e3;
  border-radius: 7px;
  color: #8a95a1;
  font-size: 12px;
}

.notion-pane,
.github-pane {
  display: flex;
  min-height: 0;
  flex-direction: column;
}

.notion-pane h3 {
  margin: 20px 16px 10px;
  color: #101828;
  font-size: 22px;
  line-height: 1.1;
}

.task-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0 16px 18px;
  color: #475467;
  font-size: 13px;
  list-style: none;
}

.task-list li::before {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 8px;
  border: 1px solid #aab5b0;
  border-radius: 50%;
  content: "";
}

.repo-list {
  display: grid;
  gap: 5px;
  padding: 14px;
}

.repo-list span {
  border: 1px solid #edf1ee;
}

.agent-rail {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 12px;
  padding: 14px 12px;
  border-left: 1px solid #dfe6e2;
  background: #ffffff;
}

.agent-rail header {
  color: #111827;
  font-size: 14px;
  font-weight: 780;
}

.agent-prompt,
.agent-response,
.agent-card {
  padding: 12px;
  border: 1px solid #e2e8e4;
  border-radius: 8px;
  color: #475467;
  font-size: 12px;
}

.agent-response {
  background: #edf9f4;
  color: #1f6548;
}

.agent-card {
  display: grid;
  gap: 6px;
  background: #fbfcfb;
}

.agent-card strong {
  color: #182230;
}

.window-status {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 24px;
  padding: 9px 14px;
  border-top: 1px solid #dfe6e2;
  background: #ffffff;
  color: #51606d;
  font-size: 12px;
}

.window-status span:first-child::before {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.hero-product-window {
  position: relative;
  border: 1px solid rgba(30, 41, 59, 0.72);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(245, 250, 249, 0.86)),
    #f7faf9;
  box-shadow:
    0 34px 86px rgba(15, 23, 42, 0.2),
    0 12px 42px rgba(0, 166, 118, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px) saturate(1.18);
}

.hero-product-window::before {
  position: absolute;
  inset: 50px 0 auto;
  height: 1px;
  background: rgba(255, 255, 255, 0.14);
  content: "";
}

.hero-product-window .window-top {
  grid-template-columns: 72px 248px minmax(210px, 1fr) 104px;
  height: 54px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(232, 239, 242, 0.72)),
    rgba(245, 249, 248, 0.86);
  color: #273449;
  box-shadow: inset 0 -1px 0 rgba(148, 163, 184, 0.22);
}

.hero-product-window .command-input {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  height: 32px;
  padding: 0 10px;
  border-color: rgba(148, 163, 184, 0.28);
  background: rgba(255, 255, 255, 0.66);
  color: #667485;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.hero-product-window .command-input svg {
  width: 14px;
  height: 14px;
  color: #7e8b9a;
}

.hero-product-window .command-input kbd {
  padding: 2px 5px;
  border: 1px solid rgba(148, 163, 184, 0.38);
  border-radius: 4px;
  color: #64748b;
  font-size: 10px;
  font-family: inherit;
}

.control-grid,
.control-split,
.control-plus {
  position: relative;
  background:
    linear-gradient(90deg, transparent 47%, currentColor 47% 53%, transparent 53%),
    linear-gradient(180deg, transparent 47%, currentColor 47% 53%, transparent 53%);
  color: rgba(39, 52, 73, 0.42);
}

.control-split {
  background: linear-gradient(90deg, transparent 47%, currentColor 47% 53%, transparent 53%);
}

.control-plus {
  background:
    linear-gradient(currentColor, currentColor) center / 10px 1.5px no-repeat,
    linear-gradient(currentColor, currentColor) center / 1.5px 10px no-repeat;
}

.hero-product-window .window-body {
  height: 570px;
  min-height: 0;
  grid-template-columns: 92px minmax(0, 1fr);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), transparent),
    #f4f8f7;
}

.hero-product-window .mock-rail {
  gap: 7px;
  padding: 16px 8px 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(249, 252, 251, 0.78)),
    rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
}

.rail-item {
  gap: 6px;
  padding: 8px 4px;
  line-height: 1.1;
}

.rail-glyph {
  position: relative;
  width: 20px;
  height: 20px;
  color: currentColor;
}

.projects-glyph {
  background:
    linear-gradient(currentColor, currentColor) 2px 2px / 6px 6px no-repeat,
    linear-gradient(currentColor, currentColor) 12px 2px / 6px 6px no-repeat,
    linear-gradient(currentColor, currentColor) 2px 12px / 6px 6px no-repeat,
    linear-gradient(currentColor, currentColor) 12px 12px / 6px 6px no-repeat;
}

.launcher-glyph {
  border: 2px solid currentColor;
  border-radius: 50%;
}

.launcher-glyph::before,
.launcher-glyph::after {
  position: absolute;
  background: currentColor;
  content: "";
}

.launcher-glyph::before {
  left: 8px;
  top: -2px;
  width: 2px;
  height: 20px;
}

.launcher-glyph::after {
  left: -2px;
  top: 8px;
  width: 20px;
  height: 2px;
}

.palette-glyph {
  border: 2px solid currentColor;
  border-radius: 6px;
  transform: rotate(45deg);
}

.notes-glyph {
  border: 2px solid currentColor;
  border-radius: 4px;
}

.notes-glyph::after {
  position: absolute;
  left: 5px;
  right: 5px;
  top: 6px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 5px 0 currentColor;
  content: "";
}

.settings-glyph {
  border: 2px solid currentColor;
  border-radius: 50%;
}

.settings-glyph::after {
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.launcher-stack {
  display: grid;
  gap: 8px;
  justify-items: center;
  margin: 8px 0 4px;
  padding: 10px 0;
  border-top: 1px solid #edf2ef;
  border-bottom: 1px solid #edf2ef;
}

.launcher-stack span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid #e2e9e5;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.04);
}

.launcher-stack img,
.app-icon {
  display: block;
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.hero-product-window .pane-grid {
  min-height: 0;
  grid-template-columns: 1.05fr 0.95fr 0.95fr;
  grid-template-rows: 1.04fr 0.96fr;
  gap: 10px;
  padding: 10px;
}

.hero-product-window .mail-pane {
  grid-column: 1;
  grid-row: 1;
}

.hero-product-window .slack-pane {
  grid-column: 2 / 4;
  grid-row: 1;
}

.hero-product-window .notion-pane {
  grid-column: 1;
  grid-row: 2;
}

.hero-product-window .github-pane {
  grid-column: 2;
  grid-row: 2;
}

.hero-product-window .agent-rail {
  grid-column: 3;
  grid-row: 2;
}

.hero-product-window .workspace-pane {
  display: flex;
  min-width: 0;
  min-height: 0;
  flex-direction: column;
  border-color: #d8e0dd;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(253, 254, 254, 0.9)),
    #ffffff;
  box-shadow:
    0 8px 18px rgba(15, 23, 42, 0.045),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.pane-header {
  flex: 0 0 auto;
}

.pane-title {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
}

.pane-title strong {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pane-meta {
  color: #637083;
  font-size: 11px;
}

.pane-tabs,
.repo-tabs {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 5px;
  padding: 7px 10px;
  border-bottom: 1px solid #edf2ef;
  color: #667085;
  font-size: 11px;
  font-weight: 650;
}

.pane-tabs span,
.repo-tabs span {
  padding: 5px 8px;
  border-radius: 6px;
}

.pane-tabs .active,
.repo-tabs .active {
  background: #eaf2ff;
  color: var(--cobalt);
}

.hero-product-window .mail-layout {
  flex: 1;
  height: auto;
  min-height: 0;
  grid-template-columns: 112px minmax(0, 1fr);
}

.mail-layout nav span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.mail-layout nav strong {
  color: #8a95a1;
  font-size: 10px;
}

.hero-product-window .message-list {
  min-width: 0;
  overflow: hidden;
  padding: 10px;
}

.hero-product-window .message {
  gap: 4px;
  padding: 9px;
}

.message div {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.message time {
  color: #98a2b3;
  font-size: 10px;
  white-space: nowrap;
}

.message span,
.message small {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.message small {
  color: #667085;
  font-size: 11px;
}

.hero-product-window .chat-list {
  flex: 1;
  gap: 9px;
  min-height: 0;
  overflow: hidden;
  padding: 16px 14px 8px;
}

.hero-product-window .chat-list p {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 9px;
  align-items: start;
  font-size: 11px;
  line-height: 1.38;
}

.chat-list time {
  margin-left: 6px;
  color: #98a2b3;
  font-size: 10px;
  font-weight: 500;
}

.chat-list p > span:last-child {
  min-width: 0;
  overflow: hidden;
}

.avatar {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  font-size: 12px;
  font-weight: 780;
}

.avatar-blue {
  background: #3568d4;
}

.avatar-amber {
  background: #d99522;
}

.hero-product-window .chat-input {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: space-between;
  margin: 10px 14px 14px;
}

.goal-list {
  display: grid;
  gap: 7px;
  padding: 0 16px 12px;
  color: #475467;
  font-size: 12px;
}

.goal-list label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.goal-list input {
  width: 12px;
  height: 12px;
  accent-color: var(--accent);
}

.timeline-table {
  display: grid;
  grid-template-columns: minmax(72px, 1fr) 46px 74px;
  gap: 0;
  margin: 0 14px 14px;
  overflow: hidden;
  border: 1px solid #e2e8e4;
  border-radius: 8px;
  font-size: 11px;
}

.timeline-table > * {
  min-width: 0;
  overflow: hidden;
  padding: 7px 8px;
  border-bottom: 1px solid #edf2ef;
  color: #667085;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.timeline-table > :nth-last-child(-n + 3) {
  border-bottom: 0;
}

.timeline-table strong {
  color: #1f2937;
}

.timeline-table mark {
  border-radius: 999px;
  background: #eaf2ff;
  color: var(--cobalt);
  font-weight: 720;
}

.timeline-table .done {
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.repo-tabs {
  gap: 10px;
}

.hero-product-window .repo-list {
  gap: 7px;
  padding: 12px 14px 14px;
}

.hero-product-window .repo-list span {
  display: grid;
  gap: 2px;
  padding: 8px 10px;
}

.repo-list small {
  min-width: 0;
  overflow: hidden;
  color: #778293;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-product-window .agent-rail {
  overflow: hidden;
  gap: 8px;
  padding: 10px;
  border-left: 1px solid #d8e0dd;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(250, 253, 252, 0.82)),
    rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(12px);
}

.hero-product-window .agent-prompt,
.hero-product-window .agent-response,
.hero-product-window .agent-card {
  padding: 8px;
  font-size: 10px;
  line-height: 1.35;
}

.hero-product-window .agent-input {
  margin: auto 0 0;
  padding: 8px 10px;
  font-size: 10px;
}

.agent-rail header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.agent-rail header small {
  padding: 3px 7px;
  border: 1px solid rgba(0, 150, 106, 0.28);
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 10px;
  font-weight: 760;
}

.agent-card b {
  margin-right: 4px;
  color: #182230;
}

.agent-mini {
  background: #f7fbff;
}

.hero-product-window .window-status {
  background: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.workflow {
  padding: 68px 0 76px;
}

.workflow h2,
.pricing h2 {
  max-width: 620px;
  margin: 0 0 28px;
  text-align: left;
  color: #111827;
  font-size: 42px;
  line-height: 1.1;
  font-weight: 860;
  font-variation-settings: "wdth" 86;
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.workflow-steps article {
  position: relative;
  min-width: 0;
  min-height: 250px;
  padding: 18px;
  border: 1px solid rgba(190, 200, 191, 0.84);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(249, 251, 247, 0.74)),
    #ffffff;
  box-shadow: 0 14px 34px rgba(17, 21, 19, 0.06);
}

.workflow-steps article:not(:last-child)::after {
  display: none;
}

.step-icon {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 32px;
  margin: 0;
  border: 1px solid rgba(53, 65, 83, 0.54);
  border-radius: 7px;
  background:
    linear-gradient(90deg, transparent 48%, rgba(53, 65, 83, 0.54) 48%, rgba(53, 65, 83, 0.54) 52%, transparent 52%),
    linear-gradient(180deg, transparent 48%, rgba(53, 65, 83, 0.54) 48%, rgba(53, 65, 83, 0.54) 52%, transparent 52%);
  opacity: 0.7;
}

.arrange-icon {
  background:
    linear-gradient(90deg, transparent 33%, rgba(53, 65, 83, 0.54) 33%, rgba(53, 65, 83, 0.54) 37%, transparent 37%, transparent 64%, rgba(53, 65, 83, 0.54) 64%, rgba(53, 65, 83, 0.54) 68%, transparent 68%),
    linear-gradient(180deg, transparent 43%, rgba(53, 65, 83, 0.54) 43%, rgba(53, 65, 83, 0.54) 47%, transparent 47%);
}

.save-icon {
  width: 38px;
  background:
    linear-gradient(135deg, transparent 46%, rgba(53, 65, 83, 0.54) 46%, rgba(53, 65, 83, 0.54) 54%, transparent 54%),
    #ffffff;
  border-radius: 7px 7px 14px 14px;
}

.laptop-icon {
  border-width: 0 0 2px;
  border-radius: 0;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(#354153, #354153) border-box;
}

.laptop-icon::before {
  display: block;
  width: 32px;
  height: 20px;
  margin: 0 auto;
  border: 1px solid rgba(53, 65, 83, 0.54);
  border-radius: 7px 7px 0 0;
  content: "";
}

.chat-icon {
  border-radius: 8px 8px 8px 14px;
  background:
    linear-gradient(rgba(53, 65, 83, 0.54), rgba(53, 65, 83, 0.54)) 10px 11px / 22px 1px no-repeat,
    linear-gradient(rgba(53, 65, 83, 0.54), rgba(53, 65, 83, 0.54)) 10px 20px / 16px 1px no-repeat;
}

.step-number {
  display: inline-grid;
  width: 34px;
  height: 26px;
  place-items: center;
  border-radius: 7px;
  background: var(--charcoal);
  color: #ffffff;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
}

.workflow-steps h3 {
  margin: 74px 0 9px;
  color: #111827;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 820;
}

.workflow-steps p {
  margin: 0;
  color: #5d6763;
  font-size: 14px;
  line-height: 1.58;
}

.sessions,
.trust {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(520px, 1.26fr);
  align-items: start;
  gap: clamp(34px, 6vw, 86px);
  padding: 82px 0;
  border-top: 1px solid rgba(190, 200, 191, 0.72);
}

.section-copy h2 {
  margin: 0 0 14px;
  color: #111827;
  font-size: 42px;
  line-height: 1.1;
  font-weight: 860;
  font-variation-settings: "wdth" 86;
}

.section-copy {
  min-width: 0;
}

.section-copy p {
  max-width: 520px;
  margin: 0 0 22px;
  color: #56615c;
  font-size: 17px;
  line-height: 1.64;
}

.check-list,
.trust-list,
.privacy-list {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  color: #303936;
  font-size: 15px;
  list-style: none;
}

.check-list li,
.trust-list li,
.privacy-list li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
}

.check-list li::before,
.trust-list li::before,
.privacy-list li::before {
  width: 14px;
  height: 14px;
  margin-top: 4px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, transparent 48%, var(--accent) 48%, var(--accent) 58%, transparent 58%) 2px 5px / 9px 6px no-repeat,
    var(--accent-soft);
  border: 1px solid rgba(0, 150, 106, 0.34);
  content: "";
}

.layout-mode-group {
  display: none !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 30px;
}

.layout-mode {
  display: grid;
  min-width: 0;
  gap: 9px;
  justify-items: center;
  padding: 12px 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: #344054;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.layout-mode.active,
.layout-mode:hover {
  border-color: var(--accent);
  background: #f3fbf7;
  color: var(--accent-dark);
}

.mode {
  width: 44px;
  height: 28px;
  border: 1px solid #9eb0a7;
  border-radius: 5px;
  background: #ffffff;
}

.mode.balanced {
  background:
    linear-gradient(90deg, var(--accent) 0 47%, transparent 47% 53%, var(--accent) 53% 100%),
    #ffffff;
}

.mode.focus {
  background: linear-gradient(90deg, var(--accent) 0 72%, transparent 72% 100%);
}

.mode.columns {
  background:
    linear-gradient(90deg, var(--accent) 0 30%, transparent 30% 35%, var(--accent) 35% 65%, transparent 65% 70%, var(--accent) 70% 100%),
    #ffffff;
}

.mode.grid {
  background:
    linear-gradient(90deg, transparent 48%, #ffffff 48% 52%, transparent 52%),
    linear-gradient(180deg, transparent 48%, #ffffff 48% 52%, transparent 52%),
    var(--accent);
}

.snap-panel {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 34px;
  padding: 26px;
  border: 1px solid #cfe1d8;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.snap-controls h3 {
  margin: 0 0 14px;
  font-size: 18px;
}

.snap-controls p {
  margin: 16px 0 8px;
  color: #5f6b78;
  font-size: 13px;
}

.mini-layouts {
  display: flex;
  gap: 9px;
}

.mini-layouts span {
  width: 42px;
  height: 32px;
  border: 1px solid #d7dfdb;
  border-radius: 6px;
  background: linear-gradient(90deg, transparent 48%, #aebbb4 48% 52%, transparent 52%);
}

.segmented {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid #d9e0dc;
  border-radius: 7px;
}

.segmented button {
  min-height: 34px;
  border: 0;
  border-right: 1px solid #d9e0dc;
  background: #ffffff;
  color: #5f6b78;
  font-size: 12px;
  font-weight: 680;
}

.segmented button:last-child {
  border-right: 0;
}

.segmented .active {
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.snap-controls label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
  color: #344054;
  font-size: 14px;
}

.snap-controls input {
  accent-color: var(--accent);
}

.apply-button {
  width: 100%;
  min-height: 42px;
  margin-top: 22px;
  border: 1px solid #cdd7d2;
  border-radius: 7px;
  background: #ffffff;
  color: #344054;
  font-size: 13px;
  font-weight: 740;
}

.snap-panel,
.trust-visual {
  display: none !important;
}

.session-proof,
.local-proof {
  display: grid;
  min-width: 0;
  gap: 12px;
}

.session-proof > div,
.local-proof dl {
  border: 1px solid rgba(186, 198, 189, 0.86);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(249, 251, 247, 0.72)),
    #ffffff;
  box-shadow: 0 18px 42px rgba(17, 21, 19, 0.07);
}

.session-proof > div {
  display: grid;
  gap: 5px;
  padding: 22px 24px;
}

.session-proof > div:first-child {
  border-color: rgba(20, 24, 22, 0.86);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent),
    var(--charcoal);
  box-shadow: 0 24px 56px rgba(17, 21, 19, 0.18);
}

.session-proof span {
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 800;
  font-family: var(--font-mono);
  text-transform: uppercase;
}

.session-proof strong {
  color: #111827;
  font-size: 20px;
  line-height: 1.2;
}

.session-proof p {
  max-width: 620px;
  margin: 0;
  color: #56615c;
  font-size: 15px;
  line-height: 1.6;
}

.session-proof > div:first-child span {
  color: #7ee0bd;
}

.session-proof > div:first-child strong {
  color: #ffffff;
}

.session-proof > div:first-child p {
  color: rgba(255, 255, 255, 0.68);
}

.local-proof dl {
  display: grid;
  margin: 0;
  overflow: hidden;
}

.local-proof div {
  display: grid;
  grid-template-columns: 142px minmax(0, 1fr);
  gap: 18px;
  padding: 19px 24px;
  border-bottom: 1px solid rgba(220, 226, 219, 0.84);
}

.local-proof div:last-child {
  border-bottom: 0;
}

.local-proof dt {
  color: #111827;
  font-size: 15px;
  font-weight: 820;
}

.local-proof dd {
  margin: 0;
  color: #56615c;
  font-size: 15px;
  line-height: 1.6;
}

.snap-grid {
  display: grid;
  min-height: 360px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(86px, 1fr));
  gap: 18px;
}

.snap-grid span {
  border: 2px solid rgba(0, 150, 106, 0.68);
  border-radius: 7px;
  background:
    linear-gradient(90deg, transparent 48%, rgba(0, 150, 106, 0.3) 48% 52%, transparent 52%),
    linear-gradient(180deg, transparent 48%, rgba(0, 150, 106, 0.3) 48% 52%, transparent 52%),
    #fbfefd;
}

.trust {
  padding-top: 82px;
}

.trust-visual {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) 220px;
  align-items: center;
  gap: 34px;
  padding: 36px;
  border: 1px solid #cce4da;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(230, 248, 241, 0.96), rgba(255, 255, 255, 0.98)),
    #ffffff;
}

.snap-panel,
.trust-visual {
  display: none !important;
}

.orbit {
  position: relative;
  display: grid;
  width: min(100%, 360px);
  aspect-ratio: 1;
  place-items: center;
  justify-self: center;
  border: 1px dashed rgba(0, 150, 106, 0.5);
  border-radius: 50%;
}

.orbit::before,
.orbit::after {
  position: absolute;
  inset: 16%;
  border: 1px solid rgba(0, 150, 106, 0.16);
  border-radius: 50%;
  content: "";
}

.orbit::after {
  inset: 31%;
}

.laptop {
  position: relative;
  display: grid;
  width: 170px;
  height: 112px;
  place-items: center;
  border: 4px solid #13212f;
  border-radius: 8px 8px 4px 4px;
  background: #ffffff;
  box-shadow: 0 20px 38px rgba(15, 23, 42, 0.14);
}

.laptop::after {
  position: absolute;
  left: 50%;
  bottom: -15px;
  width: 210px;
  height: 9px;
  border-radius: 0 0 10px 10px;
  background: #13212f;
  transform: translateX(-50%);
  content: "";
}

.laptop img {
  width: 58px;
  height: 58px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 14px 28px rgba(0, 166, 118, 0.18);
}

.trust-logo {
  display: block;
}

.orbit-node {
  position: absolute;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid #bdd8cc;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.orbit-node::before {
  width: 18px;
  height: 18px;
  border: 2px solid #344054;
  border-radius: 5px;
  content: "";
}

.orbit-node.lock {
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
}

.orbit-node.data {
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}

.orbit-node.brain {
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.orbit-node.export {
  left: 50%;
  bottom: 15px;
  transform: translateX(-50%);
}

.privacy-list {
  gap: 18px;
}

.pricing {
  padding: 72px 0 78px;
  border-top: 1px solid rgba(190, 200, 191, 0.72);
}

.pricing-grid {
  display: grid;
  max-width: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
}

.pricing-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 28px;
  border: 1px solid rgba(174, 187, 178, 0.9);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(249, 251, 247, 0.74)),
    #ffffff;
  box-shadow: 0 16px 36px rgba(17, 21, 19, 0.06);
}

.pricing-card .button {
  margin-top: auto;
}

.pricing-card h3 {
  margin: 0 0 12px;
  text-align: left;
  font-size: 22px;
  font-weight: 840;
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 8px;
  margin-bottom: 28px;
  color: #56615c;
  font-size: 14px;
}

.price span {
  color: #111827;
  font-size: 48px;
  line-height: 1;
  font-weight: 870;
  font-variation-settings: "wdth" 86;
}

.check-list.compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  margin-bottom: 26px;
  font-size: 13px;
}

.check-list.compact li {
  gap: 8px;
}

.check-list.compact li::before {
  width: 12px;
  height: 12px;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 64px;
  padding: 30px 34px;
  border: 1px solid rgba(20, 24, 22, 0.82);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent),
    var(--charcoal);
  color: #ffffff;
  box-shadow: 0 24px 58px rgba(17, 21, 19, 0.18);
}

.final-cta h2 {
  margin: 0;
  font-size: 31px;
  line-height: 1.2;
  font-weight: 850;
}

.final-cta p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.final-cta .hero-actions {
  margin-top: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(520px, 1.28fr) auto;
  gap: 46px;
  padding: 0 0 46px;
}

.footer-brand p {
  max-width: 270px;
  margin: 18px 0 20px;
  color: #56615c;
  font-size: 14px;
}

.social-links {
  display: flex;
  gap: 14px;
}

.social-links a {
  color: #344054;
  font-size: 13px;
  font-weight: 780;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}

.footer-columns h3 {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 820;
}

.footer-columns a {
  display: block;
  margin: 8px 0;
  color: #65706b;
  font-size: 13px;
}

.legal {
  display: grid;
  align-content: start;
  gap: 12px;
  color: #5f6b78;
  font-size: 12px;
  white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .desktop-nav {
    gap: 30px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 48px;
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero h1,
  .hero p {
    max-width: 820px;
  }

  .product-window {
    width: 100%;
  }

  .app-screenshot-frame {
    width: 100%;
  }

  .window-body {
    min-height: 560px;
  }

  .workflow-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .workflow-steps article:not(:last-child)::after {
    display: none;
  }

  .sessions,
  .trust {
    grid-template-columns: 1fr;
  }

  .session-proof,
  .local-proof {
    max-width: 920px;
  }

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

  .legal {
    grid-auto-flow: column;
    justify-content: start;
    white-space: normal;
  }
}

@media (max-width: 840px) {
  .section-shell,
  .site-footer {
    width: min(100% - 28px, 1240px);
  }

  .site-header {
    display: flex;
    justify-content: space-between;
    min-height: 68px;
    padding: 0 14px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  body.menu-open .mobile-nav {
    display: block;
  }

  .hero {
    width: 100%;
    max-width: calc(100vw - 28px);
    min-height: auto;
    gap: 34px;
    padding: 40px 0 36px;
  }

  .hero-copy {
    width: 100%;
    max-width: calc(100vw - 28px);
  }

  .hero h1 {
    font-size: 38px;
    line-height: 1.08;
    max-width: 100%;
  }

  .hero p {
    margin-top: 22px;
    font-size: 17px;
  }

  .hero-actions {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .hero-kicker {
    margin-bottom: 20px;
  }

  .hero-kicker span {
    min-height: 28px;
    font-size: 10px;
  }

  .hero-specs {
    grid-template-columns: 1fr;
  }

  .app-screenshot-frame {
    max-width: calc(100vw - 28px);
    border-radius: 12px;
    box-shadow:
      0 18px 46px rgba(15, 23, 42, 0.14),
      0 0 0 5px rgba(255, 255, 255, 0.76);
  }

  .app-screenshot-frame img {
    height: auto;
    object-position: center;
  }

  .app-screenshot-frame figcaption {
    min-height: 44px;
    padding: 10px 12px;
    font-size: 10px;
  }

  .product-window {
    width: 100%;
    max-width: calc(100vw - 28px);
    border-width: 4px;
  }

  .window-top {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .command-input {
    display: none;
  }

  .top-controls {
    display: none;
  }

  .window-body {
    min-height: 680px;
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .hero-product-window .window-body {
    height: 780px;
    min-height: 780px;
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .agent-rail {
    display: none;
  }

  .pane-grid,
  .hero-product-window .pane-grid,
  .product-window[data-layout="columns"] .pane-grid,
  .product-window[data-layout="focus"] .pane-grid,
  .product-window[data-layout="grid"] .pane-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, minmax(126px, 1fr));
  }

  .hero-product-window .mail-pane,
  .hero-product-window .slack-pane,
  .hero-product-window .notion-pane,
  .hero-product-window .github-pane,
  .hero-product-window .agent-rail {
    grid-column: 1;
    grid-row: auto;
  }

  .hero-product-window .agent-rail {
    display: flex;
  }

  .mail-layout {
    grid-template-columns: 86px minmax(0, 1fr);
  }

  .workflow {
    padding-top: 42px;
  }

  .workflow h2,
  .pricing h2,
  .section-copy h2 {
    font-size: 32px;
  }

  .workflow-steps {
    grid-template-columns: 1fr;
  }

  .workflow-steps article {
    display: block;
    min-height: auto;
  }

  .workflow-steps article .step-number,
  .workflow-steps article h3,
  .workflow-steps article p {
    grid-column: auto;
  }

  .step-icon {
    position: static;
    margin: 18px 0 0;
  }

  .workflow-steps h3 {
    margin-top: 18px;
  }

  .layout-mode-group {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .snap-panel {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .snap-grid {
    min-height: 320px;
  }

  .trust-visual {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .local-proof div {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 16px 18px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .final-cta {
    display: grid;
    padding: 24px;
  }

  .final-cta .hero-actions {
    width: 100%;
  }

  .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .brand {
    font-size: 19px;
  }

  .brand img {
    width: 31px;
    height: 31px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .project-switcher span:first-child {
    display: none;
  }

  .window-body {
    grid-template-columns: 1fr;
  }

  .hero-product-window .window-body {
    grid-template-columns: 1fr;
  }

  .mock-rail {
    display: none;
  }

  .window-status {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .workflow-steps article {
    grid-template-columns: 1fr;
  }

  .workflow-steps article .step-number,
  .workflow-steps article h3,
  .workflow-steps article p {
    grid-column: 1;
  }

  .step-icon {
    grid-row: auto;
  }

  .layout-mode-group,
  .check-list.compact,
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .snap-grid {
    grid-template-columns: 1fr;
  }

  .orbit {
    width: min(100%, 280px);
  }

  .laptop {
    width: 136px;
    height: 92px;
  }

  .laptop::after {
    width: 166px;
  }

  .legal {
    grid-auto-flow: row;
  }
}
