/* October AI — Marketing Design System v2 */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&display=swap');

:root {
  --cream: #F5F0E8;
  --cream-dark: #EDE8DF;
  --black: #1A1A1A;
  --black-light: #2C2C2C;
  --muted: #6B6560;
  --border: rgba(26,26,26,0.12);
  --white: #FFFFFF;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: system-ui, -apple-system, sans-serif;
  --max-w: 1200px;
  --nav-h: 112px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { /* smooth scroll handled by Lenis */ }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--black);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

/* ═══════ ENTRY SCREEN ═══════ */
.entry { position: fixed; inset: 0; z-index: 9999; display: flex; }

.entry-half {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px clamp(32px, 6vw, 80px);
  cursor: pointer;
  transition: flex 0.5s var(--ease);
}

.entry-half:hover { flex: 1.08; }
.entry-left { background: var(--black); color: var(--white); }
.entry-right { background: var(--cream); color: var(--black); }
.entry-divider { width: 1px; background: rgba(255,255,255,0.15); z-index: 1; }

.entry-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.entry-left .entry-label { color: rgba(255,255,255,0.5); }
.entry-right .entry-label { color: var(--muted); }

.entry-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 24px;
}

.entry-sub {
  font-size: 16px;
  line-height: 1.6;
  max-width: 400px;
  margin-bottom: 40px;
}

.entry-left .entry-sub { color: rgba(255,255,255,0.55); }
.entry-right .entry-sub { color: var(--muted); }

.entry-bottom {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000;
  text-align: center;
}

.entry-bottom a {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: color 0.2s var(--ease);
}

.entry-bottom a:hover { color: var(--black); }

/* ═══════ BUTTONS ═══════ */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--sans);
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.btn:hover { opacity: 0.85; transform: translateY(-1px); }
.btn-dark { background: var(--black); color: var(--white); }
.btn-light { background: var(--white); color: var(--black); }
.btn-outline { background: transparent; color: var(--black); border: 1px solid var(--black); }
.btn-outline-light { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.3); }

.link-muted {
  font-size: 15px;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1px;
  transition: color 0.2s var(--ease);
}

.link-muted:hover { color: var(--black); border-color: var(--black); }

/* ═══════ NAVIGATION ═══════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(245,240,232,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 0.5px solid var(--border);
  z-index: 1000;
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo {
  text-decoration: none;
  flex-shrink: 0;
  margin-right: auto;
  display: flex;
  align-items: center;
}
.nav-logo-icon {
  /* Brand asset (logo-october.png) at 96 px. Inline style="height:96px"
     on each <img> in HTML acts as a cache-bust override for users who
     have the older external CSS still cached by Cloudflare/browser. */
  height: 96px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-dropdown { position: relative; }

.nav-dropdown-trigger {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--black);
  background: none;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  border-radius: 8px;
  transition: background 0.2s var(--ease);
}

.nav-dropdown-trigger:hover { background: rgba(0,0,0,0.04); }

.nav-dropdown-trigger svg {
  width: 10px; height: 10px;
  opacity: 0.5;
  transition: transform 0.2s var(--ease);
}

.nav-dropdown:hover .nav-dropdown-trigger svg { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  /* 2026-04-27 — was solid var(--white). Now a subtle warm mesh
     layered on top of white: two soft blobs hugging top-left and
     bottom-right corners. Echoes the hero / pricing mesh palette
     so the dropdowns feel part of the same visual system. Kept
     low-opacity so menu copy stays high-contrast and legible. */
  background:
    radial-gradient(circle 220px at 0% 0%, rgba(210,165,105,0.18), transparent 65%),
    radial-gradient(circle 240px at 100% 100%, rgba(185,145,85,0.14), transparent 65%),
    var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 8px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  color: var(--black);
  text-decoration: none;
  border-radius: 8px;
  line-height: 1.4;
  transition: background 0.15s var(--ease);
}

.nav-dropdown-menu a:hover { background: var(--cream); }

.nav-link-standalone {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--black);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background 0.2s var(--ease);
}

.nav-link-standalone:hover { background: rgba(0,0,0,0.04); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  margin-left: auto;
}

.nav-signin {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

.nav-signin:hover { color: var(--black); }

.nav-cta {
  display: inline-block;
  padding: 9px 22px;
  background: var(--black);
  color: var(--white);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s var(--ease);
}

.nav-cta:hover { opacity: 0.85; }

.nav-switch {
  font-size: 12px;
  color: var(--muted);
  cursor: pointer;
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 100px;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
  white-space: nowrap;
}

.nav-switch:hover { color: var(--black); border-color: var(--black); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--black);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 999;
  display: none;
  flex-direction: column;
  padding: 80px 32px 32px;
  overflow-y: auto;
}

.mobile-menu.active { display: flex; }

.mobile-menu-heading {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 28px;
  margin-bottom: 8px;
}

.mobile-menu-heading:first-child { margin-top: 0; }

.mobile-menu a {
  display: block;
  font-size: 17px;
  color: var(--black);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.mobile-menu .btn { margin-top: 32px; text-align: center; }

/* ═══════ SECTIONS ═══════ */
.section { padding: 160px 0; }

.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.section-dark {
  background: var(--black); color: var(--white);
  background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 24px 24px;
}
.section-cream { background: var(--cream); }
.section-cream-dark { background: var(--cream-dark); }

/* ═══════════════════════════════════════════════════════════
   GLOBAL MESH GRADIENT SYSTEM (landing pages)
   2026-04-27 — applied across the whole site via the
   `has-global-mesh` body class. Customer/welcome opt out
   (they have their own inline mesh tuned for the homepage
   composition); legal.html opts out (dense legal copy needs
   a calm background to read).
   Pseudo-elements: ::before = base wash + accent blobs,
                    ::after  = side-edge mesh accents.
   z-index 0 + pointer-events:none so .page-hero-inner /
   .section-inner stays interactive on z-index:2.
   ═══════════════════════════════════════════════════════════ */
body.has-global-mesh .page-hero,
body.has-global-mesh .section { position: relative; overflow: hidden; }
body.has-global-mesh .page-hero-inner,
body.has-global-mesh .section-inner { position: relative; z-index: 2; }

/* PAGE HERO — sub-page hero (cream) */
body.has-global-mesh .page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 50% 60% at 88% 30%, rgba(210,165,105,0.46), transparent 58%),
    radial-gradient(ellipse 45% 50% at 12% 80%, rgba(185,145,85,0.36), transparent 60%),
    radial-gradient(circle 380px at 95% 75%, rgba(225,185,125,0.30), transparent 65%),
    radial-gradient(circle 320px at 8% 20%, rgba(200,160,100,0.28), transparent 65%);
  filter: blur(45px);
  pointer-events: none;
}
body.has-global-mesh .page-hero::after {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 22% 70% at -2% 50%, rgba(210,165,105,0.34), transparent 60%),
    radial-gradient(ellipse 22% 70% at 102% 50%, rgba(185,145,85,0.30), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}

/* SECTION cream — base wash + side accents */
body.has-global-mesh .section.section-cream::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 50% 55% at 0% 25%, rgba(210,165,105,0.30), transparent 62%),
    radial-gradient(ellipse 45% 50% at 100% 75%, rgba(185,145,85,0.26), transparent 62%),
    radial-gradient(circle 320px at 75% 10%, rgba(225,185,125,0.22), transparent 65%);
  filter: blur(35px);
  pointer-events: none;
}
body.has-global-mesh .section.section-cream::after {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 18% 70% at -2% 50%, rgba(210,165,105,0.28), transparent 60%),
    radial-gradient(ellipse 18% 70% at 102% 50%, rgba(185,145,85,0.26), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}

/* SECTION cream-dark */
body.has-global-mesh .section.section-cream-dark::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 50% 55% at 0% 30%, rgba(210,165,105,0.32), transparent 62%),
    radial-gradient(ellipse 45% 50% at 100% 70%, rgba(185,145,85,0.28), transparent 62%),
    radial-gradient(circle 320px at 50% 95%, rgba(225,185,125,0.20), transparent 65%);
  filter: blur(35px);
  pointer-events: none;
}
body.has-global-mesh .section.section-cream-dark::after {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 18% 65% at -2% 55%, rgba(210,165,105,0.30), transparent 60%),
    radial-gradient(ellipse 18% 65% at 102% 45%, rgba(185,145,85,0.28), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}

/* SECTION dark — cool wash + warm mesh */
body.has-global-mesh .section.section-dark::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 55% 50% at 12% 25%, rgba(255,255,255,0.10), transparent 70%),
    radial-gradient(ellipse 60% 55% at 90% 80%, rgba(210,165,105,0.32), transparent 65%),
    radial-gradient(circle 340px at 50% 0%, rgba(225,185,125,0.22), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}
body.has-global-mesh .section.section-dark::after {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 22% 70% at -2% 50%, rgba(210,165,105,0.30), transparent 60%),
    radial-gradient(ellipse 22% 70% at 102% 50%, rgba(185,145,85,0.26), transparent 60%);
  filter: blur(45px);
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════
   SECTION MESH OPT-OUT + DIVIDER SUPPRESSION
   2026-04-27 v3 — Earlier mask-fade approach was actively making
   the seam worse (faded both sides of every boundary to trans-
   parent → visible cream band). Removed.
   This block now does only two things:
   1. [data-mesh="off"] suppresses the per-section mesh entirely
      so a section reads as flat cream/cream-dark — used to give
      the homepage two visual breathing rooms between the loud
      meshed sections.
   2. Hides the section-divider HRs (bare hairlines that competed
      with the mesh visual language).
   The seams between meshed sections are addressed in each page's
   inline mesh CSS via "edge-intensifier" blobs added directly
   to the section ::before backgrounds (see customer/index.html
   and welcome/index.html — radial-gradient blobs centred at -8%
   and 108% vertically).
   ═══════════════════════════════════════════════════════════ */
.section[data-mesh="off"]::before,
.section[data-mesh="off"]::after {
  display: none !important;
  background: none !important;
}

.section-divider, hr.section-divider {
  border: 0 !important;
  background: transparent !important;
  height: 0 !important;
}

.section-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}

.section-dark .section-label { color: rgba(255,255,255,0.5); }

.section-divider {
  border: none;
  border-top: 0.5px solid var(--border);
  margin: 0;
}

.section-dark .section-divider { border-color: rgba(255,255,255,0.1); }

/* Title scale */
.section-title {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 48px;
}

.section-title-hero {
  font-family: var(--serif);
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 32px;
}

.section-title-lg {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 32px;
}

.section-title-xl {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 28px;
}

.section-title-med {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 32px;
}

.section-sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 48px;
}

.section-dark .section-sub { color: rgba(255,255,255,0.6); }

.section-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 600px;
  margin-bottom: 48px;
}

.section-dark .section-text { color: rgba(255,255,255,0.6); }

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ═══════ PULL QUOTE ═══════ */
.pull-quote {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 52px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.35;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: var(--black);
}

.pull-quote .word {
  display: inline-block;
  will-change: transform, opacity;
}

.pull-quote .whitespace { width: 0.3em; }

/* ═══════ GRIDS ═══════ */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 48px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }

.grid-col h3 {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 12px;
}

.grid-col p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 360px;
}

.section-dark .grid-col p { color: rgba(255,255,255,0.6); }
.section-dark .grid-col h3 { color: var(--white); }

/* ═══════ METRICS (with dividers) ═══════ */
.metrics {
  display: flex;
  gap: 0;
  margin-top: 64px;
}

.metric {
  flex: 1;
  text-align: center;
  padding: 0 24px;
  border-right: 0.5px solid var(--border);
}

.metric:first-child { padding-left: 0; }
.metric:last-child { border-right: none; padding-right: 0; }

.metric-val {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 400;
  line-height: 1.1;
}

.metric-label {
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
}

.section-dark .metric { border-color: rgba(255,255,255,0.15); }
.section-dark .metric-label { color: rgba(255,255,255,0.5); }

/* ═══════ STEPS (30/70 grid with dividers) ═══════ */
.steps-list { max-width: 800px; }

.step-item {
  display: grid;
  grid-template-columns: 30% 1fr;
  gap: 0 32px;
  padding: 80px 0 0;
}

.step-item:first-child { padding-top: 0; }

.step-num {
  font-family: var(--serif);
  font-size: 120px;
  font-weight: 300;
  color: var(--black);
  opacity: 0.12;
  line-height: 1;
  grid-column: 1;
  grid-row: 1 / 3;
  align-self: start;
}

.section-dark .step-num { color: var(--white); opacity: 0.1; }

.step-item h3 {
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  grid-column: 2;
}

.step-item p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 480px;
  grid-column: 2;
}

.section-dark .step-item p { color: rgba(255,255,255,0.6); }

.step-divider {
  border: none;
  border-top: 0.5px solid var(--border);
  margin: 0;
}

.section-dark .step-divider { border-color: rgba(255,255,255,0.1); }

/* ═══════ USE CASES (dark, text only) ═══════ */
.uc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}

.uc-grid::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 0.5px;
  background: rgba(255,255,255,0.1);
}

.uc-grid::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  height: 0.5px;
  background: rgba(255,255,255,0.1);
}

.uc-item {
  padding: 48px;
}

.uc-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.uc-title {
  font-family: var(--serif);
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 16px;
}

.uc-text {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  max-width: 400px;
  margin-bottom: 20px;
}

.uc-link {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

.uc-link:hover { color: var(--white); }

/* ═══════ CALCULATOR / PRICING SLIDER ═══════ */
.calc {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.calc-label {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 32px;
}

.calc-slider {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 1px;
  background: linear-gradient(to right, var(--black) 0%, var(--black) 0%, var(--border) 0%, var(--border) 100%);
  outline: none;
  margin-bottom: 12px;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--black);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.calc-slider::-moz-range-thumb {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--black);
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.calc-slider::-moz-range-progress {
  background: var(--black);
  height: 1px;
}

.calc-value {
  font-family: var(--serif);
  font-size: 20px;
  margin-bottom: 48px;
}

.calc-output {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 32px);
  line-height: 2;
  margin-bottom: 48px;
}

.calc-note {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 40px;
}

/* Pricing-specific slider */
.pricing-slider-output {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  margin-bottom: 8px;
}

.pricing-slider-sub {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 12px;
}

.pricing-slider-note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
}

.pricing-slider-note a {
  color: var(--black);
  text-decoration: underline;
}

/* ═══════ PRICING CARD (user-friendly redesign 2026-06-04) ═══════
   Elevated card that groups the slider + a two-tile price split so the
   "first month free" vs "then $X/mo" distinction reads instantly. */
.pricing-card {
  max-width: 600px;
  margin: 0 auto;
  padding: 40px 44px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(26,26,26,0.06);
  text-align: center;
}

.pricing-card-badge {
  display: inline-block;
  background: #1A1A1A;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 28px;
}

.pricing-card-sliderhead {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.pricing-card-sliderhead .calc-label { margin-bottom: 0; }

.pricing-agent-count {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--black);
  white-space: nowrap;
}

.pricing-agent-count span {
  font-size: 14px;
  color: var(--muted);
  font-family: var(--sans, inherit);
}

.pricing-slider-ends {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted);
  margin: 6px 2px 0;
}

/* Two-tile price split */
.pricing-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 32px 0 8px;
}

.pricing-tile {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 18px;
  background: var(--cream, #F5F0E8);
}

.pricing-tile.is-free {
  background: #1A1A1A;
  border-color: #1A1A1A;
}

.pricing-tile-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.pricing-tile.is-free .pricing-tile-label { color: rgba(255,255,255,0.6); }

.pricing-tile-value {
  font-family: var(--serif);
  font-size: clamp(30px, 5vw, 40px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--black);
}

.pricing-tile.is-free .pricing-tile-value { color: #fff; }

.pricing-tile-meta {
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
}

.pricing-tile.is-free .pricing-tile-meta { color: rgba(255,255,255,0.75); }

.pricing-tile-arrow {
  align-self: center;
  font-size: 20px;
  color: var(--muted);
}

@media (max-width: 560px) {
  .pricing-card { padding: 32px 22px; }
  .pricing-tiles { grid-template-columns: 1fr; }
  .pricing-card-sliderhead { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ═══════ FEATURES LIST ═══════ */
.features-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 640px;
  margin: 48px auto;
}

.features-list li {
  padding: 14px 0;
  font-size: 15px;
  border-bottom: 0.5px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
}

.features-check {
  width: 16px; height: 16px;
  flex-shrink: 0;
  color: var(--black);
}

/* ═══════ ADDONS TABLE ═══════
   2026-04-22 — restyled for stronger visual presence: elevated card
   container, bolder section label, heavier typography on prices, fuller
   row separators. The section was fading into the page because every
   element was var(--muted) with hairline borders. */
.addons {
  margin-top: 72px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  padding: 32px 36px;
  background: var(--cream-dark);
  border: 1px solid var(--border);
  border-radius: 16px;
  text-align: center;
}

.addons h4 {
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.addons-table {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  border-collapse: collapse;
  font-size: 15px;
}

.addons-table td {
  padding: 16px 8px;
  border-bottom: 1px solid var(--border);
  color: var(--black);
  font-weight: 500;
  text-align: left;
}

.addons-table td:last-child {
  color: var(--black);
  text-align: right;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.addons-table tr:last-child td { border-bottom: none; }

/* ═══════ PARTNER TEASER ═══════ */
.partner-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.partner-teaser-metrics {
  display: flex;
  gap: 32px;
  margin: 32px 0 40px;
}

.partner-teaser-metric {
  font-family: var(--serif);
  font-size: 18px;
}

/* ═══════ ACADEMY LINKS ═══════ */
.academy-link {
  display: block;
  padding: 20px 0;
  border-bottom: 0.5px solid rgba(255,255,255,0.1);
  color: var(--white);
  text-decoration: none;
  font-size: 16px;
  transition: opacity 0.2s var(--ease);
}

.academy-link:first-child { border-top: 0.5px solid rgba(255,255,255,0.1); }
.academy-link:hover { opacity: 0.7; }

/* ═══════ DEMO ═══════ */
.demo-embed {
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  background: var(--black);
  overflow: hidden;
}

.demo-embed iframe { width: 100%; height: 100%; border: none; }

.demo-note {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: 20px;
  letter-spacing: 0.05em;
}

/* ═══════ HERO ═══════ */
.hero {
  padding: calc(var(--nav-h) + 136px) 0 96px;
  text-align: center;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.hero .section-label { margin-bottom: 28px; }
.hero .section-sub { margin: 0 auto 48px; text-align: center; }

.hero-buttons {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

/* Hero background text */
.hero-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--serif);
  font-size: clamp(200px, 25vw, 300px);
  font-weight: 300;
  opacity: 0.04;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

.hero-inner { position: relative; z-index: 1; }
.hero { position: relative; overflow: hidden; }

/* Hero vertical line anchor */
.hero-line {
  display: block;
  width: 0.5px;
  height: 80px;
  background: var(--border);
  margin: 64px auto 0;
}

/* ═══════ CTA ═══════ */
.cta-inner {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-inner .section-sub { margin: 0 auto 48px; text-align: center; }

.cta-under {
  font-size: 14px;
  color: var(--muted);
  margin-top: 20px;
}

.cta-under a { color: var(--muted); text-decoration: underline; }
.cta-under a:hover { color: var(--black); }
.section-dark .cta-under a { color: rgba(255,255,255,0.5); }
.section-dark .cta-under a:hover { color: var(--white); }

/* ═══════ FORMS ═══════ */
.form { max-width: 480px; margin: 0 auto; }
.form-field { margin-bottom: 20px; }

.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 6px;
  color: rgba(255,255,255,0.7);
}

.form-field input,
.form-field select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-size: 15px;
  font-family: var(--sans);
  outline: none;
  transition: border-color 0.2s var(--ease);
}

.form-field input::placeholder { color: rgba(255,255,255,0.3); }
.form-field input:focus,
.form-field select:focus { border-color: rgba(255,255,255,0.5); }
.form-field select option { background: var(--black); color: var(--white); }

.form-success { text-align: center; padding: 32px 0; }

.form-success h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 16px;
  color: var(--white);
}

.form-success p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}

.form-success-link {
  font-size: 14px;
  padding: 10px 20px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  color: var(--white);
  display: inline-block;
  margin-bottom: 12px;
  word-break: break-all;
}

.form-success-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: color 0.2s var(--ease);
}

.form-success-copy:hover { color: var(--white); }

/* Contact form (light) */
.contact-form { max-width: 480px; }
.contact-form .form-field label { color: var(--black); }

.contact-form .form-field input,
.contact-form .form-field select,
.contact-form .form-field textarea {
  background: var(--white);
  color: var(--black);
  border-color: var(--border);
}

.contact-form .form-field input::placeholder,
.contact-form .form-field textarea::placeholder { color: var(--muted); }

.contact-form .form-field input:focus,
.contact-form .form-field select:focus,
.contact-form .form-field textarea:focus { border-color: var(--black); }

.contact-form .form-field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  color: var(--black);
  font-size: 15px;
  font-family: var(--sans);
  outline: none;
  resize: vertical;
  min-height: 140px;
  transition: border-color 0.2s var(--ease);
}

.contact-form .form-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
  cursor: pointer;
}

.contact-form .form-check input {
  width: 18px; height: 18px;
  accent-color: var(--black);
}

/* ═══════ FOOTER ═══════ */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 80px 0 40px;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-logo {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-logo-icon {
  /* 2026-04-27 — switched from logo-leaf.svg to the full logo-october.png
     lock-up (leaf circle + OCTOBER AI wordmark) at the same 96px height
     used in the nav, so the brand mark reads at the same scale across
     surfaces. invert() filter still keeps the black-on-transparent PNG
     legible on the dark footer background. */
  height: 96px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1) brightness(0.95);
}

.footer-columns { display: flex; gap: 64px; }

.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.2s var(--ease);
}

.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* ═══════ SUBPAGE HERO ═══════ */
.page-hero {
  padding: calc(var(--nav-h) + 120px) 0 80px;
  background: var(--cream);
}

.page-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.page-hero .section-label { margin-bottom: 20px; }
.page-hero .section-title-lg { margin-bottom: 24px; }
.page-hero .section-sub { font-size: 18px; margin-bottom: 0; }

/* ═══════ FAQ ═══════ */
.faq-list { max-width: 720px; }
.faq-item { border-bottom: 0.5px solid var(--border); }

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 500;
  padding: 24px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--black);
}

.faq-q svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
  color: var(--muted);
}

.faq-item.active .faq-q svg { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--ease);
}

.faq-a-inner {
  padding: 0 0 24px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 600px;
}

.faq-item.active .faq-a { max-height: 300px; }

/* ═══════ ACADEMY ═══════ */
.academy-article {
  display: block;
  padding: 32px 0;
  border-bottom: 0.5px solid var(--border);
  text-decoration: none;
  color: var(--black);
}

.academy-article:first-child { border-top: 0.5px solid var(--border); }

.academy-article h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 8px;
  transition: opacity 0.2s var(--ease);
}

.academy-article p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 14px;
  max-width: 720px;
}

.academy-article p:last-of-type { margin-bottom: 0; }

.academy-points {
  list-style: none;
  margin: 18px 0 4px;
  padding: 0;
  max-width: 720px;
}

.academy-points li {
  position: relative;
  padding: 8px 0 8px 22px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--muted);
  border-bottom: 0.5px solid rgba(26,26,26,0.06);
}

.academy-points li:last-child { border-bottom: 0; }

.academy-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 17px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(180,140,80,0.6);
}

.academy-points strong {
  color: var(--black);
  font-weight: 500;
}

.academy-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 16px;
}

.academy-meta::before {
  content: "";
  width: 14px;
  height: 1px;
  background: var(--muted);
  opacity: 0.5;
}

.academy-badge {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px 12px;
}

.academy-read {
  font-size: 14px;
  color: var(--black);
}

.academy-article:hover h3 { opacity: 0.6; }

/* ═══════ RESPONSIVE ═══════ */
@media (max-width: 768px) {
  .entry { flex-direction: column; }
  .entry-half { padding: 40px 24px; min-height: 50vh; justify-content: flex-end; }
  .entry-divider { width: 100%; height: 1px; }
  .entry-title { font-size: 32px; }

  .nav-links { display: none; }
  .nav-link-standalone { display: none; }
  .nav-right .nav-signin,
  .nav-right .nav-cta,
  .nav-right .nav-switch { display: none; }
  .nav-hamburger { display: flex; }

  .section { padding: 100px 0; }
  .section-title { font-size: 36px; }
  .section-title-hero { font-size: 44px; }
  .section-title-lg { font-size: 36px; }
  .section-title-xl { font-size: 36px; }
  .section-title-med { font-size: 28px; }

  .grid-2, .grid-3 { grid-template-columns: 1fr; gap: 32px; }

  .metrics { flex-direction: column; gap: 0; }
  .metric { border-right: none; border-bottom: 0.5px solid var(--border); padding: 20px 0; text-align: left; }
  .metric:last-child { border-bottom: none; }

  .hero { padding: calc(var(--nav-h) + 80px) 0 60px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-bg-text { font-size: 160px; }
  .hero-line { height: 48px; margin-top: 40px; }

  .step-item { grid-template-columns: 1fr; gap: 8px 0; padding: 48px 0 0; }
  .step-item:first-child { padding-top: 0; }
  .step-num { font-size: 64px; grid-row: auto; margin-bottom: 8px; }

  .uc-grid { grid-template-columns: 1fr; }
  .uc-grid::before { display: none; }
  .uc-grid::after { display: none; }
  .uc-item { padding: 40px 0; border-bottom: 0.5px solid rgba(255,255,255,0.1); }
  .uc-item:last-child { border-bottom: none; }

  .partner-teaser { grid-template-columns: 1fr; gap: 48px; }

  .features-list { grid-template-columns: 1fr; }

  .footer-top { flex-direction: column; gap: 40px; }
  .footer-columns { flex-wrap: wrap; gap: 32px; }
  .footer-col { min-width: 140px; }

  .page-hero { padding: calc(var(--nav-h) + 80px) 0 60px; }
}

/* ═══════════════════════════════════════════════
   VISUAL POLISH PASS — 2026-04-22
   Premium finish: focus states, consistent hover,
   softer placeholders, rhythm + readable muted text.
   No layout changes; appended rules only.
   ═══════════════════════════════════════════════ */

/* Darken muted text slightly for readability on cream */
:root { --muted: #5A544F; }

/* Focus-visible ring on all interactive elements */
.btn:focus-visible,
.nav-cta:focus-visible,
.nav-signin:focus-visible,
.link-muted:focus-visible,
.faq-q:focus-visible,
.uc-accord-btn:focus-visible {
  outline: 2px solid var(--black);
  outline-offset: 3px;
  border-radius: 8px;
}

.section-dark .btn:focus-visible,
.section-dark .link-muted:focus-visible {
  outline-color: var(--white);
}

/* Softer, cleaner form focus */
.contact-form .form-field input:focus,
.contact-form .form-field select:focus,
.contact-form .form-field textarea:focus {
  outline: none;
  border-color: var(--black);
  box-shadow: 0 0 0 3px rgba(26,26,26,0.08);
}
.form-field input:focus,
.form-field select:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.12);
}

/* Trust-logo-placeholder — replace dashed look with subtle chip */
.trust-logo-placeholder {
  border-style: solid !important;
  border-color: rgba(26,26,26,0.08) !important;
  color: rgba(26,26,26,0.35) !important;
  background: rgba(255,255,255,0.4);
  letter-spacing: 0.08em;
}

/* Button — slightly stronger press-down + consistent curve */
.btn {
  transition: opacity 0.25s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.btn-dark:hover { box-shadow: 0 6px 20px rgba(26,26,26,0.15); }
.btn-light:hover { box-shadow: 0 6px 20px rgba(26,26,26,0.12); }
.btn:active { transform: translateY(0); }

/* Accordion — subtler default, firmer active */
.uc-accord-btn:hover { color: var(--black); opacity: 0.85; }
.faq-item:hover { border-bottom-color: rgba(26,26,26,0.22); }

/* Section rhythm — tighten on dark, prevent over-pad */
.section-dark { padding: 140px 0; }
@media (max-width: 768px) { .section-dark { padding: 96px 0; } }

/* Hero sub — slightly more generous reading width + size */
.hero .section-sub,
.page-hero .section-sub {
  max-width: 560px;
  line-height: 1.6;
}

/* Nav links — consistent hover feedback */
.nav-link-standalone,
.nav-dropdown-trigger { transition: color 0.2s var(--ease), opacity 0.2s var(--ease); }
.nav-link-standalone:hover,
.nav-dropdown-trigger:hover { opacity: 0.7; }

/* Mobile menu link size bump for tap-targets */
@media (max-width: 768px) {
  .mobile-menu a { padding: 14px 0; font-size: 17px; }
  .hero-line { display: none; }
  .testimonial-quote { font-size: 20px; line-height: 1.55; }
  .pull-quote { font-size: 28px; line-height: 1.35; }
}

/* Headline consistency — tighten leading on small sizes */
.section-title, .section-title-lg, .section-title-hero, .section-title-xl, .section-title-med {
  letter-spacing: -0.01em;
}

/* Academy links — align with muted link style */
.academy-link { transition: opacity 0.2s var(--ease); }
.academy-link:hover { opacity: 0.8; }

/* Divider consistency — never hairline-disappear on high DPI */
hr.section-divider,
hr.step-divider { border: 0; height: 1px; background: var(--border); }

/* Prevent empty sections from looking unfinished — dashed placeholder softened above */
