/* ============================================================
   Anchor — /hello landing page styles
   ============================================================
   Design tokens (colors, fonts) mirrored from client/index.css.
   ============================================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 100 1000;
  font-display: swap;
  src: url("/_site/fonts/dm-sans-variable.woff2") format("woff2");
}

@font-face {
  font-family: "DM Sans";
  font-style: italic;
  font-weight: 100 1000;
  font-display: swap;
  src: url("/_site/fonts/dm-sans-italic-variable.woff2") format("woff2");
}

:root {
  --font-body: system-ui, -apple-system, sans-serif;
  --font-display: "DM Sans", sans-serif;

  --color-bg: #eae6ec;
  --color-text: #1a1523;
  --color-text-light: #1a152394;
  --color-surface: #ffffff;
  --color-border: #dedae1;
}

body {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

/* Skip-link: visible only when focused via keyboard. Lets screen-reader
   and keyboard users jump past the nav directly into #main-content. */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  padding: 8px 16px;
  background: var(--color-text);
  color: var(--color-surface);
  text-decoration: none;
  border-radius: 0 0 6px 0;
  z-index: 100;
}

.skip-link:focus {
  top: 0;
}

/* --- Header ---
   Matches the main app's PlatformHeader: 48px height, logo + sign-in.
*/
.site-header {
  height: 48px;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg);
}

.nav-inner {
  height: 100%;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

/* Logo icon: 17px height, matching PlatformHeader */
.logo-icon {
  height: 17px;
  width: auto;
  margin-left: 4px;
}

/* Logo wordmark: 18px height, matching PlatformHeader */
.logo-wordmark {
  height: 18px;
  width: auto;
  margin-left: 8px;
}

/* --- Nav actions (right side of header) --- */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--color-text-light);
  text-decoration: none;
}

.nav-link:hover {
  color: var(--color-text);
}

.nav-link[aria-current="page"] {
  color: var(--color-text);
  font-weight: 500;
}

/* --- Supported Agents dropdown ---
   Pure CSS: reveals on :hover and :focus-within for keyboard users. */
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nav-dropdown-chevron {
  color: currentColor;
  opacity: 0.7;
  transition: transform 0.15s ease;
}

.nav-dropdown:hover .nav-dropdown-chevron,
.nav-dropdown:focus-within .nav-dropdown-chevron {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 240px;
  padding: 6px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  box-shadow:
    0 1px 3px rgba(26, 21, 35, 0.06),
    0 12px 28px -8px rgba(26, 21, 35, 0.18);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition:
    opacity 0.15s ease,
    transform 0.15s ease,
    visibility 0s 0.15s;
  z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition:
    opacity 0.15s ease,
    transform 0.15s ease,
    visibility 0s 0s;
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 10px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--color-text);
  text-decoration: none;
  border-radius: 4px;
}

.nav-dropdown-menu a:hover {
  background: #14011e0a;
}

.nav-dropdown-logo {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 3px;
}

/* View-all row: push the trailing chevron to the right edge */
.nav-dropdown-all svg {
  margin-left: auto;
}

.nav-dropdown-divider {
  height: 1px;
  margin: 4px 8px;
  background: var(--color-border);
}

.nav-dropdown-all {
  color: var(--color-text-light) !important;
  font-weight: 500 !important;
}

.nav-dropdown-all:hover {
  color: var(--color-text) !important;
}

/* --- Sign-in button --- */
.btn-sign-in {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 14px;
  height: 28px;
  margin-left: 24px;
  background: rgba(26, 21, 35, 0.07);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s ease;
}

.btn-sign-in:hover {
  text-decoration: none;
  background: rgba(26, 21, 35, 0.12);
}

/* --- Hero --- */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 48px 24px 24px;
  text-align: center;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  max-width: 600px;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  color: var(--color-text-light);
  max-width: 580px;
  line-height: 1.5;
}

/* --- Hero CTAs --- */
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

/* Matches the app's <Button variant="heavy"> component shape:
   rad-3 (6px) corners, pad-3 pad-4 padding (hero-sized), no shadow,
   font-4 (16px), system-ui font inherited from body. */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px; /* --pad-2 */
  padding: 12px 16px; /* --pad-3 --pad-4 */
  font-family: var(--font-body);
  font-size: 16px; /* --font-4 */
  font-weight: 500;
  text-decoration: none;
  border-radius: 6px; /* --rad-3 */
  border: none;
  cursor: pointer;
  transition: background 0.15s ease, opacity 0.15s ease;
}

/* Heavy variant */
.btn-primary {
  background: var(--color-text);
  color: #ffffff;
}

.btn-primary:hover {
  opacity: 0.92;
}

/* Skeleton variant — inset 1px border, transparent bg */
.btn-secondary {
  background: transparent;
  color: var(--color-text);
  box-shadow: inset 0 0 0 1px var(--color-border);
}

.btn-secondary:hover {
  background: rgba(26, 21, 35, 0.04);
}

.btn-icon {
  flex-shrink: 0;
}

/* Reassurance note under the primary CTA */
.hero-cta-note {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: -8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--color-text-light);
}

.hero-cta-note-icon {
  color: var(--color-text-light);
  opacity: 0.7;
  flex-shrink: 0;
}

/* --- Hero mockup: Folder explorer snapshot ---
   Mirrors client/components/home_page/FolderExplorer.tsx. Pure HTML so
   crawlers and agents see the structure. */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero-mockup {
  width: 100%;
  max-width: 1080px;
  margin: 40px auto 0;
  padding: 0;
}

.fe {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  box-shadow:
    0 1px 3px rgba(26, 21, 35, 0.04),
    0 24px 48px -16px rgba(26, 21, 35, 0.18),
    0 2px 8px -2px rgba(26, 21, 35, 0.06);
  overflow: hidden;
  text-align: left;
}

/* Topbar — org + breadcrumbs + people */
.fe-topbar {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 40px;
  padding: 0 12px;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface);
}

.fe-org {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 13px;
  color: var(--color-text);
  padding-right: 8px;
  border-right: 1px solid var(--color-border);
  height: 24px;
}

.fe-org-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 5px;
  background: linear-gradient(135deg, #3a2b52, #1a1523);
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.fe-org-name {
  font-family: var(--font-display);
}

.fe-chevron-down {
  color: var(--color-text-light);
}

.fe-crumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 0;
  font-size: 12px;
  color: var(--color-text-light);
}

.fe-crumb {
  white-space: nowrap;
}

.fe-crumb-active {
  color: var(--color-text);
  font-weight: 500;
}

.fe-crumb-sep {
  opacity: 0.4;
}

.fe-people {
  display: flex;
  align-items: center;
}

/* Avatar — works for both <img> (photo) and <span> (fallback/overflow) */
.fe-avatar-xs {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--color-bg);
  color: var(--color-text-light);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1.5px solid var(--color-surface);
  vertical-align: middle;
}

img.fe-avatar-xs {
  display: inline-block;
}

.fe-avatar-more {
  background: var(--color-bg);
  color: var(--color-text-light);
  border: 1.5px solid var(--color-surface);
  font-size: 9px;
}

/* Body — lanes + detail */
.fe-body {
  display: flex;
  height: 420px;
  overflow: hidden;
}

/* Lane (folder column) */
.fe-lane {
  width: 240px;
  min-width: 240px;
  padding: 12px 8px;
  border-right: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 2px;
  overflow: hidden;
}

/* Item (folder or file row) */
.fe-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 8px;
  border-radius: 6px;
  font-size: 13px;
  line-height: 1.2;
  color: var(--color-text);
  background: transparent;
  border: 1px solid transparent;
}

/* Ancestor: the folder in this lane that is currently open in the next lane */
.fe-item-ancestor {
  background: #14011e0a;
}

/* Currently selected item */
.fe-item-selected {
  background: #14011e1a;
}

.fe-icon {
  width: 16px;
  height: 16px;
  color: var(--color-text);
  flex-shrink: 0;
}

/* Colored lucide icon variants — mirrors FILE_TYPE_STYLE / MIME_TYPE_ICONS
   in client/constants.ts. Palette from client/index.css. */
.fe-icon-jade { color: #12a594; }
.fe-icon-red { color: #e5484d; }
.fe-icon-violet { color: #6e56cf; }
.fe-icon-cyan { color: #0090ff; }
.fe-icon-green { color: #30a46c; }
.fe-icon-orange { color: #f76b15; }
.fe-icon-blue { color: #3e63dd; }

/* App "favicon": colored rounded square with a white themed icon inside.
   Mimics the server-generated app favicons rendered by AppFavicon.tsx. */
.fe-app-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 3px;
  flex-shrink: 0;
}

.fe-app-icon svg {
  width: 11px;
  height: 11px;
  color: #ffffff;
}

.fe-app-icon-blue { background: #3e63dd; }
.fe-app-icon-orange { background: #e55f0b; }
.fe-app-icon-green { background: #30a46c; }
.fe-app-icon-red { background: #e5484d; }
.fe-app-icon-violet { background: #6e56cf; }

.fe-name {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fe-type {
  color: var(--color-text-light);
  font-size: 11px;
  font-weight: 400;
  text-transform: none;
}

.fe-chevron {
  width: 12px;
  height: 12px;
  color: var(--color-text);
  opacity: 0.6;
  flex-shrink: 0;
}

/* Detail panel */
.fe-detail {
  width: 260px;
  min-width: 260px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  background: var(--color-surface);
}

.fe-detail-header {
  text-align: center;
  width: 100%;
  margin-top: 4px;
}

.fe-detail-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.02em;
  max-width: 100%;
  color: var(--color-text);
}

.fe-detail-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Larger app-favicon for the detail panel title row */
.fe-detail-app-icon {
  width: 22px;
  height: 22px;
  border-radius: 4px;
}

.fe-detail-app-icon svg {
  width: 14px;
  height: 14px;
}

.fe-detail-type {
  font-size: 13px;
  color: var(--color-text-light);
  margin-top: 4px;
}

.fe-meta {
  width: 100%;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 13px;
}

.fe-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.fe-meta-label {
  color: var(--color-text-light);
  flex-shrink: 0;
}

.fe-meta-value {
  color: var(--color-text);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-align: right;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fe-meta-divider {
  height: 1px;
  background: var(--color-border);
}

.fe-detail-actions {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}

.fe-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 36px;
  padding: 0 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  font-family: var(--font-body);
}

/* Mirrors the app's <Button variant="heavy">: solid dark bg, no shadow, rad-3 */
.fe-btn-primary {
  background: var(--color-text);
  color: #ffffff;
}

/* Mirrors <Button variant="skeleton">: transparent bg with inset 1px border */
.fe-btn-secondary {
  background: transparent;
  color: var(--color-text);
  box-shadow: inset 0 0 0 1px var(--color-border);
}

/* --- Works with --- */
.works-with {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 72px 24px;
  text-align: center;
}

.works-with h2 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-light);
}

.works-with-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.works-with-logos img {
  height: 24px;
  width: auto;
}

/* The Gemini PNG has transparent padding above the wordmark that throws off
   the optical baseline; nudge it up so it aligns with the other logos. */
.works-with-logos img[src$="gemini.png"] {
  transform: translateY(-3px);
}

/* Copilot ships as an icon only — pair it with text to form a wordmark,
   matching the visual weight of the other brand wordmarks in the row. */
.works-with-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: -0.01em;
}

.works-with-wordmark img {
  height: 24px;
  width: 24px;
}

.works-with-note {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-light);
  font-style: italic;
}

.works-with-link {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  text-decoration-color: var(--color-border);
}

.works-with-link:hover {
  text-decoration-color: var(--color-text);
}

/* ============================================================
   Landing Page Sections — Browse & Pick
   ============================================================ */

/* --- Base section --- */
.lp {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px;
  border-top: 1px solid var(--color-border);
}

.lp h2 {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  max-width: 720px;
}

.lp-hero-size {
  font-size: 56px !important;
}

.lp-mega {
  font-size: 80px !important;
  letter-spacing: -0.04em !important;
}

.lp-sub {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  max-width: 600px;
  margin-top: 20px;
}

.lp-sub-sm {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  max-width: 540px;
  margin-top: 16px;
}

.lp-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* --- Section tag badge --- */
.lp-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: ui-monospace, "SF Mono", "Cascadia Code", monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 2px 8px;
  border-radius: 4px;
  opacity: 0.5;
}

/* --- Color variants --- */

/* Dark */
.lp--dark {
  background: var(--color-text);
  border-color: #2a2335;
}
.lp--dark h2,
.lp--dark h3,
.lp--dark .lp-sub,
.lp--dark .lp-sub-sm,
.lp--dark p {
  color: #eae6ec;
}
.lp--dark .lp-sub,
.lp--dark .lp-sub-sm {
  color: #eae6ecaa;
}
.lp--dark .lp-label {
  color: #eae6ec88;
}
.lp--dark .lp-tag {
  color: #eae6ec;
  background: #eae6ec15;
}

/* Light */
.lp--light {
  background: var(--color-surface);
}
.lp--light h2,
.lp--light h3,
.lp--light p {
  color: var(--color-text);
}
.lp--light .lp-sub,
.lp--light .lp-sub-sm {
  color: var(--color-text-light);
}
.lp--light .lp-label {
  color: var(--color-text-light);
}
.lp--light .lp-tag {
  color: var(--color-text);
  background: #1a152308;
}

/* Muted (page background) */
.lp--muted {
  background: var(--color-bg);
}
.lp--muted h2,
.lp--muted h3,
.lp--muted p {
  color: var(--color-text);
}
.lp--muted .lp-sub,
.lp--muted .lp-sub-sm {
  color: var(--color-text-light);
}
.lp--muted .lp-label {
  color: var(--color-text-light);
}
.lp--muted .lp-tag {
  color: var(--color-text);
  background: #1a152308;
}

/* --- Cards (S4) --- */
.lp-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin-top: 40px;
  text-align: left;
}

.lp-card {
  padding: 28px 24px;
  border-radius: 10px;
}

.lp--dark .lp-card {
  background: #ffffff0a;
  border: 1px solid #ffffff12;
}

.lp--light .lp-card,
.lp--muted .lp-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
}

.lp-card-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.lp-card-text {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
}

.lp--dark .lp-card-text {
  color: #eae6ec99;
}

.lp--light .lp-card-text,
.lp--muted .lp-card-text {
  color: var(--color-text-light);
}

/* --- Steps (S11) --- */
.lp-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 840px;
  margin-top: 48px;
  text-align: left;
}

.lp-step {
  position: relative;
  padding-left: 0;
}

.lp-step-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  width: 28px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  border-radius: 50%;
  margin-bottom: 12px;
}

.lp--light .lp-step-num {
  background: var(--color-text);
  color: #ffffff;
}

.lp--dark .lp-step-num {
  background: #eae6ec;
  color: var(--color-text);
}

.lp--muted .lp-step-num {
  background: var(--color-text);
  color: #ffffff;
}

.lp-step-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}

.lp-step-text {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
}

.lp--light .lp-step-text {
  color: var(--color-text-light);
}

/* --- Flow (S12) --- */
.lp-flow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
  justify-content: center;
}

.lp-flow-step {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 8px;
}

.lp--muted .lp-flow-step {
  background: var(--color-surface);
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.lp--dark .lp-flow-step {
  background: #ffffff0a;
  border: 1px solid #ffffff12;
  color: #eae6ec;
}

.lp--light .lp-flow-step {
  background: var(--color-bg);
  color: var(--color-text);
}

.lp-flow-arrow {
  font-size: 20px;
  opacity: 0.4;
}

/* --- Tiers (S18) --- */
.lp-tiers {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.lp-tier {
  padding: 24px 20px;
  border-radius: 10px;
  text-align: center;
  min-width: 180px;
}

.lp--light .lp-tier {
  background: var(--color-bg);
}

.lp--dark .lp-tier {
  background: #ffffff0a;
  border: 1px solid #ffffff12;
}

.lp-tier-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.lp-tier-text {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.4;
}

.lp--light .lp-tier-text {
  color: var(--color-text-light);
}

.lp-tier-arrow {
  font-size: 22px;
  opacity: 0.3;
}

/* --- Schedule (S19) --- */
.lp-schedule {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 600px;
  margin-top: 36px;
  text-align: left;
}

.lp-schedule-item {
  display: flex;
  gap: 16px;
  align-items: baseline;
}

.lp-schedule-time {
  font-family: ui-monospace, "SF Mono", "Cascadia Code", monospace;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  min-width: 110px;
  flex-shrink: 0;
}

.lp--dark .lp-schedule-time {
  color: #eae6ec;
}

.lp-schedule-desc {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
}

.lp--dark .lp-schedule-desc {
  color: #eae6ecaa;
}

/* --- Replace stack (S21) --- */
.lp-replace {
  margin-top: 36px;
  max-width: 600px;
}

.lp-replace-old {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.5;
  text-decoration: line-through;
}

.lp-replace-arrow {
  font-size: 28px;
  margin: 16px 0;
  opacity: 0.3;
}

.lp-replace-new {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
}

/* --- Split / Before-After (S22) --- */
.lp-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 800px;
  margin-top: 40px;
  text-align: left;
}

.lp-split-before,
.lp-split-after {
  padding: 32px 28px;
  border-radius: 10px;
}

.lp-split-before {
  background: var(--color-text);
  color: #eae6ec;
}

.lp-split-before p {
  color: #eae6ecaa !important;
}

.lp-split-after {
  background: var(--color-bg);
  color: var(--color-text);
}

.lp-split-after p {
  color: var(--color-text-light) !important;
}

.lp-split-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
  opacity: 0.6;
}

.lp-split-before p,
.lp-split-after p {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
}

/* --- Badges (S27) --- */
.lp-badges {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

.lp-badge {
  font-family: ui-monospace, "SF Mono", "Cascadia Code", monospace;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 6px 16px;
  border-radius: 100px;
}

.lp--light .lp-badge {
  background: var(--color-text);
  color: #ffffff;
}

.lp--dark .lp-badge {
  background: #eae6ec;
  color: var(--color-text);
}

.lp--muted .lp-badge {
  background: var(--color-text);
  color: #ffffff;
}

/* --- Item types row (S29) --- */
.lp-item-types {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

.lp-item-type {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.lp--dark .lp-item-type {
  color: #eae6ec60;
}

.lp--light .lp-item-type,
.lp--muted .lp-item-type {
  color: var(--color-text-light);
}

.lp-item-sep {
  font-size: 24px;
  opacity: 0.25;
}

.lp--dark .lp-item-sep {
  color: #eae6ec;
}

/* --- Capability list (S35) --- */
.lp-capability-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 600px;
  margin-top: 32px;
}

.lp-capability {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 100px;
}

.lp--dark .lp-capability {
  background: #ffffff0c;
  border: 1px solid #ffffff15;
  color: #eae6eccc;
}

.lp--light .lp-capability {
  background: var(--color-bg);
  color: var(--color-text);
}

.lp--muted .lp-capability {
  background: var(--color-surface);
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

/* --- Contrast / Old vs New (S39) --- */
.lp-contrast {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 800px;
  text-align: left;
}

.lp-contrast-old,
.lp-contrast-new {
  padding: 32px 28px;
  border-radius: 10px;
}

.lp-contrast-old {
  background: var(--color-bg);
}

.lp-contrast-new {
  background: var(--color-text);
}

.lp-contrast-new p {
  color: #eae6ec !important;
}

.lp-contrast-new .lp-contrast-text {
  color: #eae6ecaa !important;
}

.lp-contrast-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
  opacity: 0.5;
}

.lp-contrast-text {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
}

.lp--light .lp-contrast-text {
  color: var(--color-text-light);
}

/* ============================================================
   Feature Showcase Sections — image + text side-by-side
   ============================================================ */

.lp-feature {
  padding: 100px 24px;
}

.lp-feature-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
}

/* --- Text column --- */
.lp-feature-text {
  display: flex;
  flex-direction: column;
}

.lp-feature-text h2 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--color-text);
  margin-top: 4px;
}

.lp-feature-desc {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text-light);
  max-width: 440px;
  margin-top: 16px;
}

.lp-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
  padding: 0;
}

.lp-feature-list li {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  color: var(--color-text);
  padding-left: 20px;
  position: relative;
}

.lp-feature-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-text);
  opacity: 0.18;
}

/* --- Visual column: overlapping mockups --- */
.lp-feature-visual {
  position: relative;
  padding-bottom: 40px;
}

/* --- Chat mockup (AI agent — dark theme, evokes Claude/ChatGPT) --- */
.mockup-chat {
  width: 75%;
  background: #1e1a24;
  border: 1px solid #2e2a36;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.2),
    0 8px 24px -4px rgba(0, 0, 0, 0.3);
}

.mockup-chat-conv {
  padding: 20px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mockup-msg {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.mockup-msg-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  flex-shrink: 0;
  background: #3a3344;
  color: #eae6eccc;
}

.mockup-msg-avatar--ai {
  background: linear-gradient(135deg, #6e56cf, #3e63dd);
  color: #ffffff;
}

.mockup-msg p {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.55;
  color: #eae6eccc;
  margin: 0;
  padding-top: 3px;
}

.mockup-msg strong {
  color: #eae6ec;
  font-weight: 600;
}

.mockup-tool-result {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  padding: 5px 10px;
  background: rgba(18, 165, 148, 0.12);
  border: 1px solid rgba(18, 165, 148, 0.18);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  color: #12a594;
}

.mockup-tool-result svg {
  flex-shrink: 0;
}

/* Input bar — pill shape like Claude/ChatGPT */
.mockup-chat-input {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 12px 12px;
  padding: 10px 14px;
  background: #2e2a36;
  border-radius: 20px;
  border: 1px solid #3a3344;
}

.mockup-chat-plus {
  font-size: 18px;
  font-weight: 300;
  color: #eae6ec55;
  line-height: 1;
}

.mockup-chat-placeholder {
  font-family: var(--font-body);
  font-size: 13px;
  color: #eae6ec40;
}

/* --- Anchor table mockup (overlapping, in front) --- */
.mockup-anchor {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80%;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
  z-index: 2;
  box-shadow:
    0 1px 3px rgba(26, 21, 35, 0.04),
    0 16px 40px -8px rgba(26, 21, 35, 0.2);
}

.mockup-anchor-bar {
  height: 36px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--color-border);
}

.mockup-anchor-icon {
  width: 15px;
  height: 15px;
  color: #12a594;
  flex-shrink: 0;
}

.mockup-anchor-name {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
}

.mockup-anchor-grid {
  overflow: hidden;
}

.mockup-anchor-grid table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
  line-height: 1.4;
}

.mockup-anchor-grid th {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-light);
  text-align: left;
  padding: 8px 14px;
  border-bottom: 1px solid var(--color-border);
  background: #faf9fb;
}

.mockup-anchor-grid td {
  padding: 8px 14px;
  color: var(--color-text);
  border-bottom: 1px solid #f0edf2;
  white-space: nowrap;
}

.mockup-anchor-grid tr:last-child td {
  border-bottom: none;
}

.mockup-status {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  padding: 1px 8px;
  border-radius: 100px;
  letter-spacing: 0.01em;
}

.mockup-status--active {
  background: rgba(48, 164, 108, 0.1);
  color: #30a46c;
}

.mockup-status--lead {
  background: rgba(110, 86, 207, 0.1);
  color: #6e56cf;
}

/* ============================================================
   Feature section — reverse variant (text left, visual right)
   ============================================================ */

.lp-feature--reverse .lp-feature-inner {
  grid-template-columns: 1fr 1.15fr;
}

.lp-feature--reverse .mockup-chat {
  margin-left: auto;
}

.lp-feature-visual--reverse {
  padding-bottom: 40px;
}

/* ============================================================
   App Mockup — dashboard preview
   ============================================================ */

.mockup-app {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80%;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
  z-index: 2;
  box-shadow:
    0 1px 3px rgba(26, 21, 35, 0.04),
    0 16px 40px -8px rgba(26, 21, 35, 0.2);
}

.mockup-app-bar {
  height: 36px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--color-border);
}

.mockup-app-bar .fe-app-icon {
  width: 18px;
  height: 18px;
  border-radius: 4px;
}

.mockup-app-bar .fe-app-icon svg {
  width: 12px;
  height: 12px;
}

.mockup-app-name {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
}

.mockup-app-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* KPI cards row */
.mockup-app-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.mockup-app-kpi {
  background: #faf9fb;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mockup-app-kpi-value {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.mockup-app-kpi-label {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--color-text-light);
}

/* Department progress rows */
.mockup-app-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mockup-app-row {
  display: grid;
  grid-template-columns: 90px 1fr 36px;
  align-items: center;
  gap: 10px;
}

.mockup-app-row-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--color-text);
  white-space: nowrap;
}

.mockup-app-progress {
  height: 6px;
  background: #f0edf2;
  border-radius: 100px;
  overflow: hidden;
}

.mockup-app-progress-fill {
  height: 100%;
  background: #3e63dd;
  border-radius: 100px;
}

.mockup-app-progress-fill--warn {
  background: #e5484d;
}

.mockup-app-row-pct {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
  font-weight: 600;
  color: var(--color-text-light);
  text-align: right;
}

.mockup-app-row-pct--warn {
  color: #e5484d;
}

/* ============================================================
   File Gallery Mockup — file list panel
   ============================================================ */

.mockup-filegallery {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80%;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
  z-index: 2;
  box-shadow:
    0 1px 3px rgba(26, 21, 35, 0.04),
    0 16px 40px -8px rgba(26, 21, 35, 0.2);
}

.mockup-filegallery--standalone {
  position: relative;
  bottom: auto;
  right: auto;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

.mockup-filegallery-bar {
  height: 36px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--color-border);
}

.mockup-filegallery-folder {
  width: 15px;
  height: 15px;
  color: var(--color-text);
  flex-shrink: 0;
}

.mockup-filegallery-path {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
}

.mockup-filegallery-count {
  margin-left: auto;
  font-size: 11px;
  color: var(--color-text-light);
}

.mockup-filegallery-list {
  display: flex;
  flex-direction: column;
}

.mockup-filerow {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-bottom: 1px solid #f0edf2;
}

.mockup-filerow:last-child {
  border-bottom: none;
}

.mockup-filerow .fe-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.mockup-filerow-name {
  flex: 1;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mockup-filerow-type {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--color-text-light);
  background: #f0edf2;
  padding: 2px 7px;
  border-radius: 4px;
  flex-shrink: 0;
}

/* ============================================================
   Dark Callout Box — contained dark card on page bg
   ============================================================ */

.lp-callout-wrap {
  padding: 72px 24px 100px;
}

.lp-callout {
  max-width: 900px;
  margin: 0 auto;
  padding: 56px 48px;
  background: var(--color-text);
  border-radius: 16px;
  text-align: center;
}

.lp-callout h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: #eae6ec;
}

.lp-callout p {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: #eae6ecaa;
  max-width: 540px;
  margin: 14px auto 0;
}

/* Agent logos inside the callout — light pills on dark bg */
.lp-callout-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.lp-callout-logos img {
  height: 20px;
  width: auto;
  padding: 10px 22px;
  background: rgba(255, 255, 255, 0.93);
  border-radius: 10px;
  box-sizing: content-box;
}

/* Gemini PNG has extra top padding — nudge optically */
.lp-callout-logos img[src$="gemini.png"] {
  transform: translateY(-2px);
}


.lp-callout-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: -0.01em;
  padding: 10px 22px;
  background: rgba(255, 255, 255, 0.93);
  border-radius: 10px;
  line-height: 20px;
}

.lp-callout-wordmark img {
  height: 18px;
  width: 18px;
}

.lp-callout-link {
  display: inline-block;
  margin-top: 20px;
  font-family: var(--font-body);
  font-size: 14px;
  color: #eae6ec;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  text-decoration-color: #eae6ec44;
}

.lp-callout-link:hover {
  text-decoration-color: #eae6ec;
}

/* Mid-page callout — no logo row, tighter spacing */
.lp-callout-wrap--mid {
  padding-top: 0;
  padding-bottom: 40px;
}

/* ============================================================
   Pricing Snapshot — dark callout with headline + CTA
   ============================================================ */

.lp-pricing-wrap {
  padding: 0 24px 100px;
}

.lp-pricing {
  max-width: 780px;
  margin: 0 auto;
  padding: 56px 48px;
  background: var(--color-text);
  border-radius: 16px;
  text-align: center;
}

.lp-pricing h2 {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #eae6ec;
  margin: 0;
}

.lp-pricing h2 em {
  font-style: italic;
  font-weight: 700;
  color: #ffffff;
}

.lp-pricing-lede {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  color: #eae6eccc;
  max-width: 560px;
  margin: 18px auto 28px;
}

.lp-pricing-lede strong {
  color: #eae6ec;
  font-weight: 600;
}

.lp-pricing-cta {
  display: inline-block;
  padding: 12px 24px;
  background: #eae6ec;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s ease;
}

.lp-pricing-cta:hover {
  background: #ffffff;
}

/* ============================================================
   Cross-context Section — unified heading + prompts box
   ============================================================ */

.context-section {
  padding: 0 24px 40px;
}

.context-box {
  max-width: 860px;
  margin: 0 auto;
  padding: 56px 48px;
  background: #d8d1e1;
  border-radius: 16px;
  text-align: center;
}

.context-box h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--color-text);
}

.context-desc {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-text-light);
  max-width: 540px;
  margin: 14px auto 0;
}

/* Keyword highlights — light bg variant */
.hl {
  color: var(--color-text);
  background: rgba(110, 86, 207, 0.15);
  padding: 1px 6px;
  border-radius: 4px;
  font-weight: 500;
}

/* Keyword highlights — agent context (email, calendar, etc.) inside prompt cards */
.hl-dark {
  color: #12a594;
  font-style: normal;
  font-weight: 500;
}

/* Keyword highlights — Anchor entities (tables, apps) inside prompt cards */
.hl-anchor {
  color: #eae6ec;
  font-style: normal;
  font-weight: 600;
}

/* Keyword highlights — key phrases inside prompt cards (generic) */
.hl-key {
  color: #12a594;
  font-style: normal;
  font-weight: 500;
}

.context-prompts {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

.context-prompts .prompt-card {
  text-align: left;
}

/* ============================================================
   Prompt Example Cards
   ============================================================ */

.prompt-examples {
  padding: 0 24px 100px;
}

.prompt-examples:has(+ .lp-pricing-wrap) {
  padding-bottom: 40px;
}

.prompt-examples-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  gap: 16px;
}

.prompt-card {
  background: #2d2838;
  border: 1px solid #3d3748;
  border-radius: 18px;
  padding: 14px 14px 14px 18px;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 12px;
}

.prompt-card-text {
  flex: 1;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  color: #eae6ec;
  font-style: normal;
  margin: 0;
}

.prompt-card-send {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #eae6ec;
  color: #1a1523;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.prompt-card-send svg {
  width: 16px;
  height: 16px;
}

/* --- Hamburger menu (hidden on desktop) --- */
.nav-hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  color: var(--color-text);
  cursor: pointer;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

/* --- Responsive --- */
@media (max-width: 1080px) {
  /* Allow the mockup to scroll horizontally when it can't fit. A subtle fade
     hints that more content exists to the right. */
  .hero-mockup {
    max-width: 100%;
    padding: 0 24px;
  }

  .fe {
    overflow-x: auto;
    overflow-y: hidden;
  }
}

@media (max-width: 768px) {
  /* --- Mobile nav: hamburger menu --- */
  .nav-hamburger {
    display: flex;
  }

  .site-header {
    position: relative;
    z-index: 100;
  }

  .nav-actions {
    display: none;
    position: absolute;
    top: 48px;
    left: 0;
    right: 0;
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 8px 24px -8px rgba(26, 21, 35, 0.12);
    padding: 12px 16px;
    flex-direction: column;
    gap: 4px;
    z-index: 99;
  }

  .nav-actions.is-open {
    display: flex;
  }

  .nav-link {
    padding: 10px 12px;
    border-radius: 6px;
    display: block;
  }

  .nav-link:hover {
    background: rgba(26, 21, 35, 0.04);
  }

  .btn-sign-in {
    margin-left: 0;
    margin-top: 8px;
    justify-content: center;
    height: 40px;
  }

  /* On mobile: hide dropdown, just show the link */
  .nav-dropdown-menu {
    display: none !important;
  }

  .nav-dropdown-chevron {
    display: none;
  }

  .nav-dropdown-trigger {
    padding: 10px 12px;
    border-radius: 6px;
    display: block;
  }

  /* --- Mobile hero --- */
  .hero {
    padding: 64px 20px 16px;
  }

  .hero h1 {
    font-size: 36px;
    letter-spacing: -0.03em;
  }

  .hero-subtitle {
    font-size: 17px;
  }

  .hero-mockup {
    padding: 0 16px;
    margin-top: 32px;
  }

  /* Simplified mobile mockup: single folder column */
  .fe {
    overflow: hidden;
  }

  .fe-topbar {
    overflow: hidden;
  }

  .fe-crumbs {
    display: none;
  }

  .fe-people {
    display: none;
  }

  .fe-body {
    height: auto;
  }

  .fe-lane:not(:first-child) {
    display: none;
  }

  .fe-detail {
    display: none;
  }

  .fe-lane {
    width: 100%;
    min-width: 0;
    border-right: none;
  }

  /* --- Mobile landing sections --- */
  .lp {
    padding: 72px 20px;
  }

  .lp h2 {
    font-size: 32px;
  }

  .lp-hero-size {
    font-size: 40px !important;
  }

  .lp-mega {
    font-size: 52px !important;
  }

  .lp-sub {
    font-size: 17px;
  }

  .lp-cards,
  .lp-steps {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .lp-flow {
    flex-direction: column;
    gap: 8px;
  }

  .lp-flow-arrow {
    transform: rotate(90deg);
  }

  .lp-tiers {
    flex-direction: column;
  }

  .lp-tier-arrow {
    transform: rotate(90deg);
  }

  .lp-split {
    grid-template-columns: 1fr;
  }

  .lp-schedule-item {
    flex-direction: column;
    gap: 4px;
  }

  .lp-contrast {
    grid-template-columns: 1fr;
  }

  /* --- Feature sections --- */
  .lp-feature {
    padding: 64px 20px;
  }

  .lp-feature-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .lp-feature-visual {
    padding-bottom: 0;
  }

  .mockup-chat {
    width: 100%;
  }

  .mockup-anchor {
    position: relative;
    bottom: auto;
    right: auto;
    width: 100%;
    margin-top: -16px;
  }

  .lp-feature-text h2 {
    font-size: 28px;
  }

  .lp-feature-desc {
    max-width: 100%;
  }

  .lp-feature--reverse .lp-feature-inner {
    grid-template-columns: 1fr;
  }

  .lp-feature--reverse .mockup-chat {
    margin-left: 0;
  }

  .lp-feature-visual--reverse {
    padding-bottom: 0;
  }

  .mockup-app {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    margin-top: -16px;
  }

  .mockup-filegallery {
    position: relative;
    bottom: auto;
    right: auto;
    width: 100%;
    margin-top: -16px;
  }

  /* --- Callout box --- */
  .lp-callout-wrap {
    padding: 0 20px 72px;
  }

  .lp-callout {
    padding: 40px 24px;
  }

  .lp-callout h2 {
    font-size: 24px;
  }

  .lp-callout p {
    font-size: 15px;
  }

  .lp-callout-logos {
    gap: 8px;
  }

  .lp-callout-logos img {
    height: 16px;
    padding: 8px 16px;
  }

  .lp-callout-wordmark {
    font-size: 14px;
    padding: 8px 16px;
  }

  .lp-callout-wordmark img {
    height: 16px;
    width: 16px;
  }

  /* --- Pricing snapshot --- */
  .lp-pricing-wrap {
    padding: 24px 20px 72px;
  }

  .lp-pricing {
    padding: 40px 24px;
  }

  .lp-pricing h2 {
    font-size: 28px;
  }

  .lp-pricing-lede {
    font-size: 16px;
    margin: 14px auto 24px;
  }

  /* --- Context section --- */
  .context-section {
    padding: 0 20px 24px;
  }

  .context-box {
    padding: 32px 20px;
  }

  .context-box h2 {
    font-size: 24px;
  }

  .context-desc {
    font-size: 15px;
  }

  /* --- Prompt cards --- */
  .prompt-examples {
    padding: 0 20px 72px;
  }

  .prompt-examples-inner {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

/* ============================================================
   System of Record — hub visual + heading
   ============================================================ */

.sor-section {
  padding: 100px 24px;
  text-align: center;
}

.sor-inner {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* --- Hub visual: Anchor center + agent logos on orbital ring --- */
.sor-hub {
  position: relative;
  width: 220px;
  height: 220px;
  margin-bottom: 16px;
}

.sor-ring {
  position: absolute;
  top: 28px;
  left: 28px;
  width: 164px;
  height: 164px;
  border: 1.5px dashed var(--color-border);
  border-radius: 50%;
}

.sor-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 2px 8px rgba(26, 21, 35, 0.08),
    0 8px 24px -4px rgba(26, 21, 35, 0.12);
  animation: sor-pulse 3.5s ease-in-out infinite;
}

@keyframes sor-pulse {
  0%, 100% {
    box-shadow:
      0 2px 8px rgba(26, 21, 35, 0.08),
      0 8px 24px -4px rgba(26, 21, 35, 0.12),
      0 0 0 0 rgba(26, 21, 35, 0.18);
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    box-shadow:
      0 2px 20px rgba(26, 21, 35, 0.18),
      0 8px 40px -4px rgba(26, 21, 35, 0.3),
      0 0 0 28px rgba(26, 21, 35, 0);
    transform: translate(-50%, -50%) scale(1.06);
  }
}

.sor-center img {
  width: 28px;
  height: 28px;
}

.sor-node {
  position: absolute;
  width: 38px;
  height: 38px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 4px rgba(26, 21, 35, 0.06);
}

.sor-node img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  border-radius: 3px;
}

/* 5 nodes at 72° intervals, starting from top (–90°)
   Container: 220px. Ring center: 110,110. Radius: 82px. Node: 38px. */
.sor-node-1 { top: 9px;   left: 91px;  } /* top */
.sor-node-2 { top: 65px;  left: 169px; } /* upper-right */
.sor-node-3 { top: 157px; left: 140px; } /* lower-right */
.sor-node-4 { top: 157px; left: 42px;  } /* lower-left */
.sor-node-5 { top: 65px;  left: 13px;  } /* upper-left */

.sor-section h2 {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--color-text);
}

.sor-desc {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text-light);
  max-width: 480px;
  margin-top: 16px;
}

.sor-cta {
  margin-top: 28px;
}

@media (max-width: 768px) {
  .sor-hub {
    width: 180px;
    height: 180px;
    margin-bottom: 12px;
  }

  .sor-ring {
    top: 24px;
    left: 24px;
    width: 132px;
    height: 132px;
  }

  .sor-center {
    width: 44px;
    height: 44px;
    border-radius: 10px;
  }

  .sor-center img {
    width: 24px;
    height: 24px;
  }

  .sor-node {
    width: 32px;
    height: 32px;
  }

  .sor-node img {
    width: 17px;
    height: 17px;
  }

  /* Recalculated for 180px container, 66px ring radius */
  .sor-node-1 { top: 8px;   left: 74px;  }
  .sor-node-2 { top: 52px;  left: 137px; }
  .sor-node-3 { top: 127px; left: 113px; }
  .sor-node-4 { top: 127px; left: 35px;  }
  .sor-node-5 { top: 52px;  left: 11px;  }
}

/* ============================================================
   Site footer
   ============================================================ */

.site-footer {
  background: var(--color-text);
  color: #eae6ec;
  padding: 64px 24px 32px;
  margin-top: 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(240px, 1fr) 2fr;
  gap: 64px;
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 280px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.footer-logo-icon {
  height: 18px;
  width: auto;
  filter: invert(1);
}

.footer-logo-wordmark {
  height: 19px;
  width: auto;
  filter: invert(1);
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: 13px;
  color: #eae6ecb0;
  line-height: 1.5;
  margin-top: -2px;
}

.footer-address {
  font-family: var(--font-body);
  font-size: 13px;
  font-style: normal;
  color: #eae6eccc;
  line-height: 1.6;
  margin-top: 4px;
}

.footer-email {
  font-family: var(--font-body);
  font-size: 13px;
  color: #eae6ec;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: #eae6ec44;
  align-self: flex-start;
}

.footer-email:hover {
  text-decoration-color: #eae6ec;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #eae6ec88;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-family: var(--font-body);
  font-size: 14px;
  color: #eae6ec;
  text-decoration: none;
}

.footer-col a:hover {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid #eae6ec18;
}

.footer-copy {
  font-family: var(--font-body);
  font-size: 12px;
  color: #eae6ec66;
}

@media (max-width: 840px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-cols {
    gap: 28px;
  }
}

@media (max-width: 520px) {
  .site-footer {
    padding: 48px 20px 24px;
  }

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

/* ============================================================
   Inspiration Gallery — "What will you build?"
   ============================================================ */

.inspire-section {
  padding: 100px 24px 80px;
}

.inspire-header {
  text-align: center;
  margin-bottom: 32px;
}

.inspire-header h2 {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--color-text);
  margin-top: 4px;
}

.inspire-desc {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--color-text-light);
  max-width: 480px;
  margin: 16px auto 0;
  line-height: 1.5;
}

/* --- Grid --- */

.inspire-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
}

/* --- Card --- */

.inspire-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 3px rgba(26, 21, 35, 0.04);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.inspire-card:hover {
  box-shadow:
    0 1px 3px rgba(26, 21, 35, 0.04),
    0 12px 32px -8px rgba(26, 21, 35, 0.18);
  transform: translateY(-2px);
}

.inspire-card[hidden] {
  display: none;
}

/* --- Card visual: mini app mockup --- */

.iv {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.iv-top {
  height: 36px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text);
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
}

.iv-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.iv-body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 180px;
  background: #faf9fb;
  font-size: 10px;
  color: var(--color-text);
}

/* KPI boxes */
.iv-kpis {
  display: flex;
  gap: 6px;
}

.iv-kpi {
  flex: 1;
  padding: 8px 6px;
  background: #fff;
  border: 1px solid #f0edf2;
  border-radius: 6px;
  text-align: center;
}

.iv-kpi b {
  display: block;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

.iv-kpi span {
  font-size: 8px;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Big number display */
.iv-big {
  text-align: center;
  padding: 4px 0;
}

.iv-big b {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--color-text);
}

.iv-big span {
  font-size: 10px;
  color: var(--color-text-light);
}

/* Progress bars */
.iv-rows {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.iv-bar-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.iv-bar-row > span {
  font-size: 9px;
  font-weight: 500;
  color: var(--color-text);
  min-width: 52px;
  white-space: nowrap;
}

.iv-bar {
  flex: 1;
  height: 5px;
  background: #eae6ec;
  border-radius: 100px;
  overflow: hidden;
}

.iv-fill {
  height: 100%;
  border-radius: 100px;
  background: var(--color-text) !important;
}

/* Form fields */
.iv-field {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.iv-field-label {
  font-size: 9px;
  font-weight: 500;
  color: var(--color-text-light);
}

.iv-input {
  height: 24px;
  background: #f0edf2;
  border: 1px solid transparent;
  border-radius: 6px;
}

/* Stars */
.iv-stars {
  font-size: 18px;
  letter-spacing: 3px;
  color: #e55f0b;
  text-align: center;
  padding: 6px 0;
}

/* Radio & check */
.iv-option-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 9px;
  color: var(--color-text);
  flex-wrap: wrap;
}

.iv-radio {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid #b0acb5;
  flex-shrink: 0;
}

.iv-radio--on {
  border-color: #3e63dd;
  background: #3e63dd;
  box-shadow: inset 0 0 0 2px #fff;
}

.iv-check {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  border: 1.5px solid #b0acb5;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.iv-check--on {
  border-color: #30a46c;
  background: #30a46c;
}

.iv-check--on::after {
  content: "\2713";
  color: #fff;
  font-size: 8px;
  font-weight: 700;
}

/* Buttons */
.iv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 9px;
  font-weight: 600;
  white-space: nowrap;
}

.iv-btn--primary {
  background: var(--color-text);
  color: #fff;
}

.iv-btn--outline {
  background: transparent;
  border: 1px solid #dedae1;
  color: var(--color-text);
}

.iv-btn-row {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  align-items: center;
}

/* List rows */
.iv-list-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #f0edf2;
}

.iv-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.iv-list-text {
  font-size: 9px;
  font-weight: 500;
  color: var(--color-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.iv-badge {
  font-size: 8px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 100px;
  white-space: nowrap;
  margin-left: auto;
}

.iv-count {
  font-size: 9px;
  font-weight: 600;
  color: var(--color-text-light);
  margin-left: auto;
  white-space: nowrap;
}

/* Vote rows */
.iv-vote-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #f0edf2;
}

.iv-vote-btn {
  font-size: 9px;
  font-weight: 700;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 3px;
  min-width: 28px;
}

.iv-vote-btn::before {
  content: "\25B2";
  font-size: 7px;
}

.iv-vote-text {
  flex: 1;
  font-size: 9px;
  font-weight: 500;
  color: var(--color-text);
}

/* Columns (kanban / retro) */
.iv-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  flex: 1;
}

.iv-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.iv-col-head {
  font-size: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-text-light);
  padding-bottom: 4px;
  border-bottom: 1px solid #eae6ec;
}

.iv-note {
  font-size: 9px;
  padding: 6px 8px;
  border-radius: 5px;
  color: var(--color-text);
  line-height: 1.3;
}

/* Schedule grid */
.iv-schedule-grid {
  display: grid;
  grid-template-columns: 36px repeat(4, 1fr);
  gap: 3px;
  font-size: 8px;
}

.iv-sched-head {
  text-align: center;
  font-weight: 600;
  color: var(--color-text-light);
  padding-bottom: 2px;
}

.iv-sched-time {
  font-weight: 600;
  color: var(--color-text-light);
  display: flex;
  align-items: center;
}

/* Time slots */
.iv-slot-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  border-bottom: 1px solid #f0edf2;
}

.iv-slot-row:last-child {
  border-bottom: none;
}

.iv-slot-time {
  font-family: ui-monospace, "SF Mono", monospace;
  font-size: 9px;
  font-weight: 600;
  min-width: 48px;
  color: var(--color-text-light);
}

.iv-slot-info {
  font-size: 9px;
  color: var(--color-text);
}

/* --- Prompt area (bottom of card) --- */

.inspire-prompt {
  padding: 14px 14px 14px 16px;
  background: #1e1a24;
  display: flex;
  align-items: flex-end;
  gap: 10px;
  flex: 1;
  min-height: 56px;
}

.inspire-prompt p {
  flex: 1;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.5;
  color: #eae6eccc;
  margin: 0;
}

.inspire-send {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #eae6ec;
  color: #1a1523;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.inspire-send svg {
  width: 13px;
  height: 13px;
}

/* CTA under the grid */
.inspire-cta {
  text-align: center;
  margin-top: 48px;
}

.inspire-cta-note {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-light);
  margin-top: 12px;
}

/* --- Inspire responsive --- */

@media (max-width: 900px) {
  .inspire-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .inspire-section {
    padding: 64px 20px 48px;
  }

  .inspire-header h2 {
    font-size: 32px;
  }

  .inspire-desc {
    font-size: 16px;
  }

  .inspire-tabs {
    gap: 4px;
    margin-bottom: 24px;
  }

  .inspire-tab {
    font-size: 12px;
    padding: 6px 12px;
  }

  .inspire-grid {
    gap: 16px;
  }
}

@media (max-width: 540px) {
  .inspire-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}
