@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;1,500&family=Montserrat:wght@400;500;600;700;800&display=swap");

:root {
  --ink: #0b2136;
  --ink-2: #263b50;
  --muted: #65717d;
  --paper: #f7f2e9;
  --paper-2: #eee5d9;
  --cream: #fffaf2;
  --white: #fffdf9;
  --sage: #9db6a2;
  --sage-dark: #527b65;
  --sage-pale: #dfe9e1;
  --gold: #c5a06b;
  --rust: #955742;
  --line: rgba(11, 33, 54, .14);
  --shadow: 0 28px 80px rgba(11, 33, 54, .14);
  --display: "Cormorant Garamond", Georgia, serif;
  --sans: "Montserrat", "Avenir Next", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--paper); scroll-padding-top: 90px; }
body { margin: 0; overflow-x: hidden; color: var(--ink); background: var(--paper); font-family: var(--sans); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: inherit; }
img { display: block; max-width: 100%; }
button, input, select { font: inherit; }
.container { width: min(1220px, calc(100% - 48px)); margin-inline: auto; }
.skip-link { position: fixed; z-index: 100; top: 12px; left: 12px; transform: translateY(-180%); padding: 10px 15px; border-radius: 6px; background: white; }
.skip-link:focus { transform: none; }

.site-header { position: sticky; z-index: 50; top: 0; border-bottom: 1px solid rgba(11, 33, 54, .08); background: rgba(250, 247, 241, .91); backdrop-filter: blur(16px); }
.nav { min-height: 78px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 34px; }
.brand { display: inline-flex; align-items: center; gap: 11px; width: fit-content; font-size: 22px; font-weight: 800; letter-spacing: -.04em; text-decoration: none; }
.brand-mark { position: relative; width: 38px; height: 34px; }
.brand-mark span { position: absolute; left: 2px; height: 8px; transform: skew(28deg); border-radius: 2px; }
.brand-mark span:nth-child(1) { top: 2px; width: 30px; background: #45627e; }
.brand-mark span:nth-child(2) { top: 13px; width: 25px; background: var(--sage-dark); }
.brand-mark span:nth-child(3) { top: 24px; left: 12px; width: 22px; background: #172029; }
.nav-links, .nav-actions { display: flex; align-items: center; gap: 26px; }
.nav-links a, .text-link { font-size: 12px; font-weight: 700; text-decoration: none; }
.nav-links a:hover, .text-link:hover { color: var(--sage-dark); }
.nav-menu { position: relative; }
.nav-menu-trigger { display: inline-flex; align-items: center; gap: 6px; border: 0; padding: 10px 0; color: var(--ink); background: transparent; font-size: 12px; font-weight: 700; cursor: pointer; }
.nav-menu-trigger::after { content: ""; width: 6px; height: 6px; margin-top: -3px; transform: rotate(45deg); border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transition: transform .18s ease; }
.nav-menu:hover .nav-menu-trigger, .nav-menu:focus-within .nav-menu-trigger { color: var(--sage-dark); }
.nav-menu:hover .nav-menu-trigger::after, .nav-menu:focus-within .nav-menu-trigger::after { transform: translateY(3px) rotate(225deg); }
.nav-mega { position: absolute; z-index: 60; top: calc(100% + 16px); left: 50%; width: min(780px, calc(100vw - 48px)); display: grid; grid-template-columns: .95fr 1.05fr; gap: 16px; padding: 18px; border: 1px solid var(--line); border-radius: 20px; background: rgba(255, 253, 249, .98); box-shadow: 0 30px 76px rgba(11, 33, 54, .2); opacity: 0; transform: translate(-50%, -8px); visibility: hidden; pointer-events: none; transition: opacity .18s ease, transform .18s ease, visibility .18s ease; }
.nav-mega::before { content: ""; position: absolute; right: 0; bottom: 100%; left: 0; height: 18px; }
.nav-menu:hover .nav-mega, .nav-menu:focus-within .nav-mega { opacity: 1; transform: translate(-50%, 0); visibility: visible; pointer-events: auto; }
.nav-mega-intro { grid-column: 1 / -1; min-width: 0; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 17px 20px; border: 1px solid rgba(197, 160, 107, .5); border-radius: 14px; background: linear-gradient(105deg, rgba(197, 160, 107, .17), rgba(238, 242, 235, .72)); }
.nav-mega-intro-copy { display: grid; gap: 3px; }
.nav-mega-intro .nav-mega-label { margin: 0; color: var(--gold-dark); font-size: 10px; }
.nav-mega-intro strong { color: var(--ink); font-family: var(--display); font-size: 22px; font-weight: 500; line-height: 1.1; }
.nav-mega-proof { flex: 0 0 auto; padding: 8px 11px; border: 1px solid rgba(197, 160, 107, .48); border-radius: 999px; color: var(--ink); background: rgba(255, 253, 249, .7); font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.nav-mega-group { min-width: 0; display: grid; align-content: start; gap: 5px; padding: 10px; }
.nav-mega-label { margin: 0 0 7px; color: var(--sage-dark); font-size: 9px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.nav-mega a { display: grid; gap: 4px; padding: 14px 16px; border-radius: 11px; color: var(--ink); text-decoration: none; }
.nav-mega a:hover, .nav-mega a:focus-visible { color: var(--ink); background: var(--sage-pale); outline: none; }
.nav-mega a strong { font-size: 13px; }
.nav-mega a small { color: var(--muted); font-size: 10px; font-weight: 500; line-height: 1.5; }
.nav-mega-feature { padding: 10px; border: 1px solid rgba(197, 160, 107, .78); border-radius: 15px; color: white; background: radial-gradient(circle at 88% 8%, rgba(197, 160, 107, .3), transparent 16rem), var(--ink); box-shadow: inset 0 0 0 1px rgba(197, 160, 107, .12), 0 14px 30px rgba(11, 33, 54, .16); }
.nav-mega-feature .nav-mega-label { color: var(--gold); }
.nav-mega-feature a { height: 100%; align-content: center; padding: 22px; color: white; border: 1px solid rgba(197, 160, 107, .22); background: rgba(255, 255, 255, .025); }
.nav-mega-feature a:hover, .nav-mega-feature a:focus-visible { color: white; background-color: rgba(255, 255, 255, .07); }
.nav-mega-feature a strong { font-family: var(--display); font-size: 31px; font-weight: 500; line-height: 1.05; }
.nav-mega-feature a small { max-width: 300px; margin-top: 6px; color: rgba(255, 255, 255, .72); font-size: 10px; }
.nav-mega-feature a span { width: fit-content; margin-top: 16px; padding: 6px 9px; border: 1px solid rgba(197, 160, 107, .42); border-radius: 999px; color: var(--gold); background: rgba(197, 160, 107, .1); font-size: 10px; font-weight: 800; }
.nav-actions { justify-content: flex-end; gap: 18px; }
.nav-toggle, .mobile-nav, .cta-short { display: none; }
.nav-toggle { width: 44px; height: 44px; align-content: center; justify-items: center; gap: 4px; border: 1px solid var(--line); border-radius: 50%; color: var(--ink); background: rgba(255, 253, 249, .9); }
.nav-toggle span { width: 17px; height: 1.5px; border-radius: 999px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }
.mobile-nav { grid-column: 1 / -1; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: 10px; max-height: calc(100vh - 78px); padding: 4px 0 18px; overflow-y: auto; overscroll-behavior: contain; }
.mobile-nav a { text-decoration: none; }
.mobile-nav-intro { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 14px 16px; border: 1px solid rgba(197, 160, 107, .5); border-radius: 13px; background: linear-gradient(105deg, rgba(197, 160, 107, .17), rgba(238, 242, 235, .72)); }
.mobile-nav-intro div { display: grid; gap: 2px; }
.mobile-nav-intro span, .mobile-nav-section-label, .mobile-nav-feature > small { color: var(--gold-dark); font-size: 8px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.mobile-nav-intro strong { color: var(--ink); font-family: var(--display); font-size: 19px; font-weight: 500; line-height: 1.1; }
.mobile-nav-intro small { flex: 0 0 auto; padding: 6px 8px; border: 1px solid rgba(197, 160, 107, .42); border-radius: 999px; color: var(--ink); background: rgba(255, 253, 249, .68); font-size: 7px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.mobile-nav-feature { min-height: 164px; display: grid; align-content: center; gap: 7px; padding: 18px; border: 1px solid rgba(197, 160, 107, .78); border-radius: 14px; color: white; background: radial-gradient(circle at 90% 8%, rgba(197, 160, 107, .3), transparent 13rem), var(--ink); box-shadow: inset 0 0 0 1px rgba(197, 160, 107, .12), 0 10px 22px rgba(11, 33, 54, .14); }
.mobile-nav-feature > small { color: var(--gold); }
.mobile-nav-feature strong { font-family: var(--display); font-size: 25px; font-weight: 500; line-height: 1.05; }
.mobile-nav-feature span { color: rgba(255, 255, 255, .7); font-size: 9px; font-weight: 600; line-height: 1.5; }
.mobile-nav-group { display: grid; align-content: start; gap: 3px; padding: 12px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255, 253, 249, .76); }
.mobile-nav-section-label { margin: 0 0 3px; color: var(--sage-dark); }
.mobile-nav-group a { min-height: 42px; display: grid; align-content: center; gap: 2px; padding: 7px 9px; border-radius: 9px; color: var(--ink); }
.mobile-nav-group a:active, .mobile-nav-group a:focus-visible { background: var(--sage-pale); outline: none; }
.mobile-nav-group strong { font-size: 10px; }
.mobile-nav-group small { color: var(--muted); font-size: 8px; font-weight: 500; }
.mobile-nav-utility { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr; gap: 7px; }
.mobile-nav-utility a { min-height: 44px; display: flex; align-items: center; justify-content: center; padding: 0 12px; border: 1px solid var(--ink); border-radius: 9px; color: white; background: var(--ink); box-shadow: 0 7px 16px rgba(11, 33, 54, .12); font-size: 9px; font-weight: 800; text-align: center; }
.mobile-nav[hidden] { display: none !important; }

.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; border: 1px solid var(--ink); border-radius: 999px; padding: 0 24px; color: white; background: var(--ink); box-shadow: 0 12px 26px rgba(11, 33, 54, .12); font-size: 12px; font-weight: 800; text-align: center; text-decoration: none; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.button:hover { transform: translateY(-2px); background: #163650; box-shadow: 0 16px 32px rgba(11, 33, 54, .18); }
.button-small { min-height: 42px; padding-inline: 18px; font-size: 11px; }
.button.secondary { color: var(--ink); background: transparent; box-shadow: none; }
.button.secondary:hover { background: rgba(255, 255, 255, .5); }
.button.light { border-color: white; color: var(--ink); background: white; }
.button.wide { width: 100%; }

.eyebrow { margin: 0 0 18px; color: var(--sage-dark); font-size: 10px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
h1, h2 { font-family: var(--display); font-weight: 600; letter-spacing: -.045em; line-height: .98; }

.hero { overflow: hidden; padding: 100px 0 0; background: radial-gradient(circle at 50% 10%, rgba(157, 182, 162, .25), transparent 35rem), linear-gradient(rgba(11, 33, 54, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(11, 33, 54, .025) 1px, transparent 1px), linear-gradient(180deg, #fbf8f3, var(--paper)); background-size: auto, 24px 24px, 24px 24px, auto; }
.hero-copy-wrap { position: relative; z-index: 2; text-align: center; }
.hero h1 { max-width: 1060px; margin: 0 auto; font-size: clamp(64px, 8.5vw, 112px); }
.hero h1 em { color: var(--sage-dark); font-weight: 500; }
.hero-copy { max-width: 800px; margin: 28px auto 0; color: var(--ink-2); font-size: clamp(16px, 2vw, 20px); line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 34px; }
.hero-note { margin: 15px 0 0; color: var(--muted); font-size: 11px; }
.hero-note strong { color: var(--ink); }
.hero-product { position: relative; margin-top: 70px; padding-bottom: 72px; }
.hero-gallery { position: relative; min-height: 760px; }
.product-preview { position: absolute; margin: 0; }
.preview-dashboard { z-index: 1; top: 0; left: 6%; width: 88%; }
.preview-quotes { z-index: 2; top: 365px; left: 0; width: 62%; transform: rotate(-.65deg); }
.preview-payments { z-index: 3; top: 345px; right: 0; width: 55%; transform: rotate(.65deg); }
.preview-window { overflow: hidden; border: 1px solid rgba(11, 33, 54, .18); border-radius: 18px; background: white; box-shadow: 0 30px 80px rgba(11, 33, 54, .2); }
.browser-bar { height: 38px; display: flex; align-items: center; gap: 6px; padding: 0 13px; border-bottom: 1px solid rgba(11, 33, 54, .1); background: #f4f1ec; }
.browser-bar > span { width: 8px; height: 8px; border-radius: 50%; background: #d6cfc6; }
.browser-bar div { width: 210px; margin: auto; padding: 5px 12px; border: 1px solid rgba(11, 33, 54, .1); border-radius: 5px; color: #8a8f93; background: white; font-size: 8px; text-align: center; }
.product-preview picture { display: block; aspect-ratio: 1905 / 850; overflow: hidden; background: #f6f1e9; }
.product-preview img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.mobile-hero-screen { display: none; }
.product-preview figcaption { position: absolute; z-index: 4; top: -18px; left: 20px; display: grid; gap: 1px; padding: 10px 14px; border: 1px solid rgba(11, 33, 54, .13); border-radius: 11px; color: var(--ink); background: rgba(255, 253, 249, .97); box-shadow: 0 12px 28px rgba(11, 33, 54, .12); }
.product-preview figcaption strong { font-size: 10px; line-height: 1.35; }
.product-preview figcaption small { color: var(--sage-dark); font-size: 7px; font-weight: 700; letter-spacing: .03em; }

.audience-strip { border-block: 1px solid var(--line); background: var(--ink); color: white; }
.audience-inner { min-height: 92px; display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 48px; }
.audience-inner p { margin: 0; color: #bdd0c1; font-family: var(--display); font-size: 21px; font-style: italic; }
.audience-inner div { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; }
.audience-inner span { color: rgba(255, 255, 255, .72); font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }

.section { padding: 118px 0; }
.tour-heading, .pricing-heading { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(340px, .9fr); align-items: end; gap: 86px; }
.product-intro h2, .tour-heading h2, .workflow-heading h2, .roles-grid h2, .pricing-heading h2, .faq-grid h2 { margin: 0; font-size: clamp(52px, 6.5vw, 82px); }

.product-section { background: #faf7f1; }
.product-intro { max-width: 850px; margin-left: calc((100% - min(1220px, calc(100% - 48px))) / 2); }
.capability-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 58px; }
.capability-grid article { min-height: 215px; display: grid; grid-template-rows: 42px 1fr; gap: 26px; padding: 28px; border: 1px solid var(--line); border-radius: 18px; background: white; transition: transform .18s ease, box-shadow .18s ease; }
.capability-grid article:hover { transform: translateY(-4px); box-shadow: 0 20px 45px rgba(11, 33, 54, .08); }
.capability-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 11px; color: var(--sage-dark); background: var(--sage-pale); }
.capability-icon svg, .role-icon svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.capability-copy { align-self: start; }
.capability-grid h3 { margin: 0 0 10px; font-size: 16px; }
.capability-grid p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.75; }

.tour-section { overflow: hidden; color: white; background: var(--ink); }
.tour-heading p:last-child { margin: 0; color: rgba(255, 255, 255, .64); font-size: 14px; line-height: 1.75; }
.tour-operator-note { display: grid; gap: 5px; max-width: 470px; padding: 5px 0 5px 22px; border-left: 2px solid var(--gold); }
.tour-operator-note strong { color: white; font-family: var(--display); font-size: 22px; font-weight: 500; line-height: 1.2; }
.tour-operator-note span { display: block; }
.tour-section .eyebrow { color: #bad1bf; }
.tour-shell { margin-top: 52px; }
.tour-tabs { display: grid; grid-template-columns: repeat(5, 1fr); border: 1px solid rgba(255, 255, 255, .16); border-radius: 16px 16px 0 0; overflow: hidden; }
.tour-tabs button { position: relative; min-height: 105px; display: grid; grid-template-columns: 34px 1fr; align-content: center; gap: 1px 8px; border: 0; border-right: 1px solid rgba(255, 255, 255, .13); padding: 18px; color: rgba(255, 255, 255, .52); background: transparent; text-align: left; cursor: pointer; }
.tour-tabs button:last-child { border: 0; }
.tour-tabs button::after { content: ""; position: absolute; inset: auto 0 0; height: 3px; transform: scaleX(0); transform-origin: left; background: var(--sage); }
.tour-tabs button[aria-selected="true"] { color: white; background: rgba(255, 255, 255, .06); }
.tour-tabs button[aria-selected="true"]::after { animation: tour-progress 12s linear forwards; }
.tour-shell.is-paused .tour-tabs button[aria-selected="true"]::after { animation-play-state: paused; }
@keyframes tour-progress { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.tour-tabs span { grid-row: 1 / 3; color: var(--gold); font-family: var(--display); font-size: 25px; }
.tour-tabs strong { font-size: 13px; }
.tour-tabs small { font-size: 9px; }
.tour-stage { overflow-anchor: none; border: 1px solid rgba(255, 255, 255, .16); border-top: 0; border-radius: 0 0 18px 18px; background: #06192a; overflow: hidden; }
.tour-panel { min-height: 570px; display: grid; grid-template-columns: 280px minmax(0, 1fr); align-items: stretch; gap: 26px; margin: 0; padding: 26px; animation: reveal .45s ease both; }
.tour-panel[hidden] { display: none; }
.tour-panel figcaption { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 16px 6px; }
.tour-panel figcaption > strong { margin-top: 12px; font-family: var(--display); font-size: 34px; font-weight: 500; line-height: 1.04; }
.tour-panel figcaption > span:not(.tour-kicker) { margin-top: 15px; color: rgba(255, 255, 255, .68); font-size: 11px; line-height: 1.75; }
.tour-panel figcaption ul { display: grid; gap: 9px; margin: 22px 0 0; padding: 19px 0 0; border-top: 1px solid rgba(255, 255, 255, .13); color: rgba(255, 255, 255, .78); font-size: 10px; line-height: 1.45; list-style: none; }
.tour-panel figcaption li { position: relative; padding-left: 18px; }
.tour-panel figcaption li::before { content: "✓"; position: absolute; left: 0; color: #bad1bf; font-weight: 800; }
.tour-kicker { color: #bad1bf; font-size: 9px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.tour-media { min-width: 0; align-self: center; overflow: hidden; aspect-ratio: 8 / 5; border: 1px solid rgba(255, 255, 255, .18); border-radius: 14px; color: var(--ink); background: #f5f0e8; box-shadow: 0 24px 55px rgba(0, 0, 0, .24); }
.screenshot-media { display: grid; place-items: center; background: #f3eee6; }
.screenshot-media img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.mobile-calendar-demo, .mobile-report-demo { display: none; }
.demo-window-bar { height: 42px; display: flex; align-items: center; gap: 6px; padding: 0 14px; border-bottom: 1px solid rgba(11, 33, 54, .12); background: #fffdf9; }
.demo-window-bar > span { width: 7px; height: 7px; border-radius: 50%; background: #d5cec5; }
.demo-window-bar > strong { margin-left: 8px; font-size: 9px; letter-spacing: .02em; }
.demo-window-bar > em { display: flex; align-items: center; gap: 5px; margin-left: auto; color: var(--sage-dark); font-size: 8px; font-style: normal; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.demo-window-bar > em > i { width: 7px; height: 7px; border-radius: 50%; background: #5d9b74; box-shadow: 0 0 0 4px rgba(93, 155, 116, .12); }
.demo-section-heading { display: flex; align-items: end; justify-content: space-between; gap: 10px; }
.demo-section-heading span { font-size: 12px; font-weight: 800; }
.demo-section-heading small { color: var(--muted); font-size: 7px; }

.crm-demo { position: relative; background: #f7f2e9; }
.crm-demo-content { height: 100%; padding: 14px; }
.crm-demo-header { min-height: 49px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.crm-demo-header > div { display: grid; gap: 2px; }
.crm-demo-header small, .crm-detail-heading small { color: var(--sage-dark); font-size: 5px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.crm-demo-header strong { font-family: var(--display); font-size: 22px; font-weight: 500; line-height: 1; }
.crm-demo-header button, .crm-detail-heading button { min-height: 29px; border: 0; border-radius: 999px; padding: 0 10px; color: white; background: var(--ink); font-size: 6px; font-weight: 800; }
.crm-demo-tabs { width: max-content; display: flex; gap: 3px; margin: 4px 0 10px auto; padding: 3px; border: 1px solid rgba(11, 33, 54, .12); border-radius: 7px; background: rgba(255, 255, 255, .7); }
.crm-demo-tabs button { min-height: 27px; border: 0; border-radius: 5px; padding: 0 12px; color: var(--muted); background: transparent; font-size: 6px; font-weight: 800; cursor: pointer; }
.crm-demo-tabs button.is-active { color: white; background: var(--ink); }
.crm-demo-screens { position: relative; height: calc(100% - 90px); overflow: hidden; }
.crm-demo-screen { position: absolute; inset: 0; overflow: hidden; opacity: 0; transform: translateX(18px); pointer-events: none; transition: opacity .28s ease, transform .36s cubic-bezier(.2, .8, .2, 1); }
.crm-demo-screen.is-active { opacity: 1; transform: none; pointer-events: auto; }
.crm-screen-heading { min-height: 35px; display: flex; align-items: start; justify-content: space-between; gap: 12px; }
.crm-screen-heading > div { display: grid; gap: 2px; }
.crm-screen-heading strong { font-size: 10px; }
.crm-screen-heading small { color: var(--muted); font-size: 5px; }
.crm-screen-heading > span { padding: 4px 7px; border-radius: 999px; color: var(--sage-dark); background: rgba(82, 123, 101, .12); font-size: 5px; font-weight: 800; }
.crm-card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.crm-record-card { min-width: 0; display: grid; align-content: start; gap: 7px; padding: 11px; border: 1px solid rgba(11, 33, 54, .12); border-radius: 8px; color: var(--ink); background: rgba(255, 253, 249, .94); box-shadow: 0 7px 20px rgba(11, 33, 54, .04); text-align: left; }
.crm-record-button { width: 100%; font: inherit; cursor: pointer; }
.crm-record-card > header { display: flex; align-items: start; justify-content: space-between; gap: 8px; }
.crm-record-card > header > div { min-width: 0; display: grid; gap: 2px; }
.crm-record-card > header strong { overflow: hidden; font-size: 9px; white-space: nowrap; text-overflow: ellipsis; }
.crm-record-card > header small { overflow: hidden; color: var(--muted); font-size: 5px; white-space: nowrap; text-overflow: ellipsis; }
.crm-record-card > header b { color: var(--sage-dark); font-family: var(--display); font-size: 16px; font-weight: 500; }
.crm-linked-record, .crm-contact-line { display: grid; gap: 2px; padding: 6px 7px; border: 1px solid rgba(11, 33, 54, .09); border-radius: 5px; background: white; }
.crm-linked-record small, .crm-contact-line small { color: var(--muted); font-size: 4px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.crm-linked-record strong, .crm-contact-line strong { overflow: hidden; font-size: 6px; white-space: nowrap; text-overflow: ellipsis; }
.crm-tags { display: flex; flex-wrap: wrap; gap: 4px; }
.crm-tags span { padding: 3px 6px; border-radius: 999px; color: var(--sage-dark); background: rgba(82, 123, 101, .12); font-size: 4px; font-weight: 800; }
.crm-record-card > p { min-height: 22px; margin: 0; color: var(--muted); font-size: 5px; line-height: 1.45; }
.crm-record-card dl { display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px; margin: 0; padding-top: 7px; border-top: 1px solid rgba(11, 33, 54, .09); }
.crm-record-card dl div { min-width: 0; display: grid; gap: 2px; }
.crm-record-card dt { color: var(--muted); font-size: 4px; font-weight: 800; text-transform: uppercase; }
.crm-record-card dd { margin: 0; font-size: 7px; font-weight: 800; }
.crm-record-card > footer { display: flex; align-items: center; justify-content: space-between; color: var(--muted); font-size: 5px; }
.crm-record-card > footer span { color: var(--sage-dark); font-weight: 800; }
.crm-detail-heading { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.crm-detail-heading > div { display: grid; gap: 2px; }
.crm-detail-heading strong { font-family: var(--display); font-size: 18px; font-weight: 500; line-height: 1; }
.crm-detail-heading button { border: 1px solid rgba(11, 33, 54, .12); color: var(--ink); background: white; cursor: pointer; }
.crm-stat-pills { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 8px; }
.crm-stat-pills span { display: flex; align-items: baseline; gap: 5px; padding: 5px 7px; border: 1px solid rgba(11, 33, 54, .1); border-radius: 6px; color: var(--muted); background: rgba(255, 255, 255, .7); font-size: 4px; font-weight: 800; text-transform: uppercase; }
.crm-stat-pills b { color: var(--ink); font-size: 6px; }
.crm-detail-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 8px; margin-top: 9px; }
.crm-detail-grid > section { min-width: 0; padding: 10px; border: 1px solid rgba(11, 33, 54, .12); border-radius: 8px; background: rgba(255, 253, 249, .94); }
.crm-detail-grid > section > header { display: grid; gap: 2px; }
.crm-detail-grid > section > header strong { font-size: 8px; }
.crm-detail-grid > section > header small { color: var(--muted); font-size: 5px; }
.crm-profile-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; margin-top: 8px; }
.crm-profile-grid span { min-width: 0; display: grid; gap: 2px; padding: 7px; border: 1px solid rgba(11, 33, 54, .09); border-radius: 5px; background: white; }
.crm-profile-grid small { color: var(--muted); font-size: 4px; font-weight: 800; text-transform: uppercase; }
.crm-profile-grid b { overflow: hidden; font-size: 5px; white-space: nowrap; text-overflow: ellipsis; }
.crm-contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px; margin-top: 8px; }
.crm-contact-cards article, .crm-contact-cards button { min-width: 0; display: grid; gap: 3px; padding: 7px; border: 1px solid rgba(11, 33, 54, .09); border-radius: 5px; color: var(--ink); background: white; text-align: left; }
.crm-contact-cards button { font: inherit; cursor: pointer; }
.crm-contact-cards strong { overflow: hidden; font-size: 6px; white-space: nowrap; text-overflow: ellipsis; }
.crm-contact-cards small { color: var(--sage-dark); font-size: 4px; font-weight: 800; }
.crm-contact-cards span { overflow: hidden; color: var(--muted); font-size: 4px; white-space: nowrap; text-overflow: ellipsis; }
.crm-demo-toast { position: absolute; z-index: 4; right: 14px; bottom: 12px; max-width: calc(100% - 28px); padding: 7px 10px; border-radius: 999px; color: white; background: var(--sage-dark); box-shadow: 0 8px 18px rgba(82, 123, 101, .25); font-size: 5px; font-weight: 800; opacity: 0; transform: translateY(4px); transition: opacity .2s ease, transform .2s ease; }
.crm-demo-toast.is-visible { opacity: 1; transform: none; }
.crm-mobile-nav { display: none; }

/* Mirrors the responsive Relationships workspace in the product. */
.crm-demo { display: grid; grid-template-columns: minmax(0, 1fr); }
.crm-demo-content { min-width: 0; display: grid; grid-template-columns: 1fr auto; grid-template-rows: 72px minmax(0, 1fr); column-gap: 16px; padding: 16px; }
.crm-demo-header { min-height: 0; }
.crm-demo-header strong { font-size: 32px; }
.crm-demo-tabs { align-self: center; margin: 0; }
.crm-demo-tabs button { min-height: 38px; padding: 0 18px; font-size: 9px; }
.crm-demo-tabs button:focus { outline: none; }
.crm-demo-tabs button:focus-visible { box-shadow: inset 0 0 0 2px rgba(200, 160, 106, .55); }
.crm-demo-screens { grid-column: 1 / -1; height: auto; min-height: 0; }
.crm-demo-screen:not(.crm-detail-screen) { padding: 14px; border: 1px solid rgba(11, 33, 54, .12); border-radius: 8px; background: rgba(255, 253, 249, .94); box-shadow: 0 7px 20px rgba(11, 33, 54, .05); }
.crm-screen-heading { min-height: 40px; align-items: center; margin-bottom: 9px; }
.crm-screen-heading > strong { font-size: 12px; }
.crm-screen-heading > button, .crm-detail-grid > section > header button { min-height: 32px; border: 0; border-radius: 999px; padding: 0 12px; color: white; background: var(--ink); font-size: 7px; font-weight: 800; }
.crm-card-grid { grid-template-columns: 1fr; gap: 9px; }
.crm-record-card { padding: 14px; box-shadow: none; }
.crm-secondary-record { display: none; }
[data-crm-screen="customers"] .crm-record-card { grid-template-columns: minmax(155px, .95fr) minmax(120px, .7fr) minmax(145px, .85fr) minmax(240px, 1.2fr); align-items: center; }
[data-crm-screen="companies"] .crm-record-card, [data-crm-screen="venues"] .crm-record-card { grid-template-columns: minmax(170px, 1fr) minmax(175px, .95fr) minmax(145px, .85fr) minmax(220px, 1.05fr); grid-template-rows: 1fr auto; align-items: center; }
[data-crm-screen="companies"] .crm-record-card > header, [data-crm-screen="venues"] .crm-record-card > header { grid-column: 1; grid-row: 1 / 3; }
[data-crm-screen="companies"] .crm-contact-line, [data-crm-screen="venues"] .crm-contact-line { grid-column: 2; grid-row: 1 / 3; }
[data-crm-screen="companies"] .crm-record-card > p, [data-crm-screen="venues"] .crm-record-card > p { grid-column: 3; grid-row: 1 / 3; align-self: center; }
[data-crm-screen="companies"] .crm-record-card > dl, [data-crm-screen="venues"] .crm-record-card > dl { grid-column: 4; grid-row: 1; }
[data-crm-screen="companies"] .crm-record-card > footer, [data-crm-screen="venues"] .crm-record-card > footer { grid-column: 4; grid-row: 2; min-height: 24px; justify-content: center; border: 1px solid rgba(11, 33, 54, .09); border-radius: 5px; background: white; }
.crm-record-card > header b { display: none; }
.crm-linked-record, .crm-contact-line { border: 0; padding: 0; background: transparent; }
.crm-record-card > header strong { font-size: 11px; }
.crm-record-card > header small, .crm-contact-line span { color: var(--muted); font-size: 7px; }
.crm-linked-record small, .crm-contact-line small, .crm-record-card > p small { display: block; margin-bottom: 3px; color: var(--muted); font-size: 6px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.crm-linked-record strong, .crm-contact-line strong { font-size: 8px; }
.crm-contact-line { gap: 3px; }
.crm-tags span { padding: 5px 8px; font-size: 6px; }
.crm-record-card > p { font-size: 7px; }
.crm-record-card dl { padding: 0; border: 0; }
.crm-record-card dl div { min-height: 48px; align-content: center; padding: 5px; border: 1px solid rgba(11, 33, 54, .09); border-radius: 5px; background: white; text-align: center; }
.crm-record-card dt { font-size: 6px; }
.crm-record-card dd { font-size: 9px; }
.crm-record-card > footer { font-size: 7px; }
.crm-detail-heading { min-height: 42px; }
.crm-detail-heading strong { font-size: 24px; }
.crm-detail-grid { grid-template-columns: 1fr; gap: 7px; }
.crm-detail-grid > section { padding: 12px; }
.crm-detail-grid > section > header { min-height: 28px; display: flex; align-items: center; justify-content: space-between; }
.crm-detail-grid > section > header strong { font-size: 10px; }
.crm-profile-grid { grid-template-columns: repeat(4, 1fr); }
.crm-profile-notes { grid-column: 1 / -1; }
.crm-profile-notes b { white-space: normal; }
.crm-profile-grid small { font-size: 6px; }
.crm-profile-grid b { font-size: 7px; }
.crm-contact-cards article, .crm-contact-cards button { min-height: 64px; align-content: start; }
.crm-contact-cards strong { font-size: 8px; }
.crm-contact-cards small, .crm-contact-cards span { font-size: 6px; }

.quote-demo { position: relative; background: #f2ede5; }
.quote-app-header { height: 46px; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 0 15px; border-bottom: 1px solid rgba(11, 33, 54, .12); background: #fffdf9; }
.quote-app-header > strong { font-family: var(--display); font-size: 17px; font-weight: 600; }
.quote-app-header > div { display: flex; gap: 6px; }
.quote-app-header > div span { padding: 6px 9px; border: 1px solid rgba(11, 33, 54, .12); border-radius: 6px; background: white; font-size: 6px; font-weight: 800; }
.quote-app-workspace { height: calc(100% - 46px); display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(230px, .7fr); gap: 10px; padding: 10px; }
.quote-app-main { min-width: 0; display: grid; grid-template-rows: .72fr 1.15fr 1.45fr; gap: 9px; }
.app-section-card { min-width: 0; overflow: hidden; padding: 11px; border: 1px solid rgba(11, 33, 54, .12); border-radius: 8px; background: rgba(255, 253, 249, .94); box-shadow: 0 7px 20px rgba(11, 33, 54, .04); }
.app-section-card > header { display: grid; gap: 2px; }
.app-section-card > header strong { font-size: 10px; }
.app-section-card > header small { overflow: hidden; color: var(--muted); font-size: 6px; white-space: nowrap; text-overflow: ellipsis; }
.app-section-card label { display: grid; gap: 4px; color: var(--muted); font-size: 5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.app-section-card label > span { min-width: 0; display: flex; align-items: center; min-height: 24px; padding: 0 8px; border: 1px solid rgba(11, 33, 54, .12); border-radius: 5px; color: var(--ink); background: white; font-size: 7px; font-weight: 700; letter-spacing: 0; text-transform: none; }
.app-section-card.compact label { margin-top: 8px; }
.app-field-grid { display: grid; gap: 6px; margin-top: 8px; }
.app-field-grid.two { grid-template-columns: 1fr 1fr; }
.app-field-grid.four { grid-template-columns: repeat(4, 1fr); }
.app-field-grid .wide { grid-column: span 3; }
.app-field-grid .is-updating span { transition: color .2s ease, border-color .2s ease, box-shadow .2s ease; }
.quote-app-pricing { padding: 12px; }
.app-cost-breakdown { display: grid; gap: 5px; margin-top: 11px; padding-bottom: 8px; border-bottom: 1px solid rgba(11, 33, 54, .1); }
.app-cost-breakdown > b, .app-margin-heading { color: var(--muted); font-size: 5px; letter-spacing: .1em; text-transform: uppercase; }
.app-cost-breakdown > span, .app-pricing-rows > div { display: flex; align-items: center; justify-content: space-between; gap: 6px; color: var(--muted); font-size: 6px; }
.app-cost-breakdown > span strong, .app-pricing-rows dd { color: var(--ink); font-weight: 800; }
.app-pricing-rows { display: grid; gap: 6px; margin: 8px 0; }
.app-pricing-rows dt, .app-pricing-rows dd { margin: 0; }
.app-subtotal { margin-top: 8px; }
.app-subtotal span { margin-top: 4px; }
.app-margin-heading { margin-top: 9px; padding-top: 8px; border-top: 1px solid rgba(11, 33, 54, .1); font-weight: 800; }
.app-margin-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; margin-top: 6px; }
.app-margin-options > span { display: grid; place-items: center; gap: 1px; padding: 5px 2px; border: 1px solid rgba(11, 33, 54, .12); border-radius: 5px; color: var(--muted); background: white; font-size: 5px; font-weight: 800; }
.app-margin-options small { font-size: 5px; }
.app-margin-options strong { font-size: 6px; }
.app-margin-options .is-selected { border-color: var(--ink); color: white; background: var(--ink); }
.app-final-rows { gap: 5px; margin-top: 8px; }
.app-final-rows .app-total { margin-top: 2px; padding-top: 6px; border-top: 1px solid rgba(11, 33, 54, .12); color: var(--ink); font-size: 7px; font-weight: 800; }
.quote-recalc { position: absolute; right: 14px; bottom: 13px; z-index: 2; padding: 6px 9px; border-radius: 999px; color: white; background: var(--sage-dark); box-shadow: 0 8px 18px rgba(82, 123, 101, .22); font-size: 6px; font-weight: 800; opacity: 0; transform: translateY(4px); transition: opacity .2s ease, transform .2s ease; }
.quote-demo.is-calculating .quote-recalc { opacity: 1; transform: none; }
.quote-demo.is-calculating .is-updating span { border-color: var(--sage-dark); color: var(--sage-dark); box-shadow: 0 0 0 3px rgba(82, 123, 101, .09); }

.queue-demo { position: relative; background: #f6f2eb; }
.queue-app-header { height: 34px; display: flex; align-items: center; gap: 9px; padding: 0 10px; border-bottom: 1px solid rgba(11, 33, 54, .12); background: white; }
.queue-app-header strong { font-size: 8px; }
.queue-app-header span { color: var(--muted); font-size: 6px; }
.queue-app-header em { display: flex; align-items: center; gap: 5px; margin-left: auto; color: var(--sage-dark); font-size: 6px; font-style: normal; font-weight: 800; text-transform: uppercase; }
.queue-app-header em i { width: 6px; height: 6px; border-radius: 50%; background: #5d9b74; box-shadow: 0 0 0 3px rgba(93, 155, 116, .12); }
.queue-app-toolbar { height: 45px; display: flex; align-items: center; gap: 8px; padding: 0 9px; border-bottom: 1px solid rgba(11, 33, 54, .08); background: rgba(255, 253, 249, .92); }
.queue-app-toolbar > div { display: flex; gap: 4px; }
.queue-app-toolbar > div span, .queue-app-toolbar > div b { padding: 5px 7px; border: 1px solid rgba(11, 33, 54, .12); border-radius: 999px; background: white; font-size: 5px; }
.queue-app-toolbar > div b { border-color: var(--ink); color: white; background: var(--ink); }
.queue-app-toolbar > small { margin-left: auto; color: var(--muted); font-size: 5px; }
.queue-app-toolbar > p { display: flex; margin: 0; padding: 2px; border: 1px solid rgba(11, 33, 54, .12); border-radius: 5px; background: white; }
.queue-app-toolbar > p span, .queue-app-toolbar > p b { padding: 4px 6px; border-radius: 3px; font-size: 5px; }
.queue-app-toolbar > p b { color: white; background: var(--ink); }
.queue-no-shows { height: 34px; display: flex; align-items: center; gap: 7px; margin: 7px 9px 0; padding: 0 9px; border: 1px dashed #cbd3da; border-radius: 6px; background: rgba(248, 250, 252, .82); }
.queue-no-shows > span { width: 20px; height: 20px; display: grid; place-items: center; border-radius: 50%; background: #e2e8ee; font-size: 7px; }
.queue-no-shows strong { font-size: 6px; }
.queue-no-shows small { overflow: hidden; color: var(--muted); font-size: 5px; white-space: nowrap; text-overflow: ellipsis; }
.queue-no-shows > b { margin-left: auto; font-size: 6px; }
.real-queue-board { height: calc(100% - 120px); display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 6px; padding: 7px 9px 9px; }
.real-queue-column { min-width: 0; overflow: hidden; padding: 7px; border: 1px solid; border-radius: 6px; }
.real-queue-column.waiting { border-color: #d9e0e6; background: rgba(248, 250, 252, .78); }
.real-queue-column.on-deck { border-color: #ead8a9; background: rgba(255, 250, 231, .82); }
.real-queue-column.ready { border-color: #c7dcf3; background: rgba(239, 246, 255, .82); }
.real-queue-column.in-service { border-color: #ddcff0; background: rgba(248, 245, 255, .84); }
.real-queue-column.complete { border-color: #c7e5d4; background: rgba(240, 253, 245, .82); }
.real-queue-column.is-drop-target { border-color: var(--sage-dark); box-shadow: inset 0 0 0 1px rgba(82, 123, 101, .24), 0 0 0 3px rgba(82, 123, 101, .08); }
.real-queue-column > header { display: flex; align-items: center; justify-content: space-between; gap: 4px; padding: 0 2px 6px; }
.real-queue-column > header strong { font-size: 6px; }
.real-queue-column > header b { min-width: 17px; padding: 3px 5px; border-radius: 999px; background: white; font-size: 5px; text-align: center; }
.real-guest-card { width: 100%; display: grid; gap: 4px; margin: 0 0 6px; padding: 7px; border: 1px solid rgba(11, 33, 54, .12); border-radius: 6px; color: var(--ink); background: white; box-shadow: 0 4px 10px rgba(11, 33, 54, .05); text-align: left; }
.real-guest-card > span { min-width: 0; display: flex; align-items: center; justify-content: space-between; gap: 4px; }
.real-guest-card > span strong { overflow: hidden; font-size: 6px; white-space: nowrap; text-overflow: ellipsis; }
.real-guest-card > span i { color: var(--muted); font-size: 5px; font-style: normal; white-space: nowrap; }
.real-guest-card > b { overflow: hidden; color: var(--muted); font-size: 5px; white-space: nowrap; text-overflow: ellipsis; }
.real-guest-card > small { overflow: hidden; color: var(--muted); font-size: 5px; white-space: nowrap; text-overflow: ellipsis; }
.real-guest-card > button { min-height: 23px; border: 0; border-radius: 5px; color: white; background: var(--ink); font-size: 5px; font-weight: 800; }
.real-guest-card.is-featured { cursor: pointer; transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
.real-guest-card.is-featured.is-moving { position: relative; z-index: 6; border-color: var(--sage-dark); box-shadow: 0 12px 24px rgba(11, 33, 54, .2); transition: transform .58s cubic-bezier(.2, .8, .2, 1), border-color .2s ease, box-shadow .2s ease; }
.real-guest-card.is-featured:hover, .real-guest-card.is-featured:focus { border-color: var(--gold); box-shadow: 0 7px 16px rgba(11, 33, 54, .12); transform: translateY(-1px); outline: none; }
.guest-drawer-shade { position: absolute; z-index: 8; inset: 0; display: flex; justify-content: flex-end; background: rgba(15, 34, 55, .38); opacity: 0; pointer-events: none; transition: opacity .25s ease; }
.guest-drawer-shade.is-open { opacity: 1; pointer-events: auto; }
.guest-drawer { width: 54%; height: 100%; display: flex; flex-direction: column; border-left: 1px solid rgba(11, 33, 54, .14); background: #fffdf9; box-shadow: -16px 0 35px rgba(7, 28, 43, .2); transform: translateX(100%); transition: transform .34s cubic-bezier(.2, .8, .2, 1); }
.guest-drawer-shade.is-open .guest-drawer { transform: none; }
.guest-drawer > header { display: flex; align-items: start; justify-content: space-between; gap: 8px; padding: 11px 12px 8px; border-bottom: 1px solid rgba(11, 33, 54, .1); }
.guest-drawer > header p { margin: 0; color: var(--muted); font-size: 5px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.guest-drawer > header p span { margin-left: 5px; padding: 2px 4px; border-radius: 999px; color: var(--ink); background: #edf0f2; }
.guest-drawer > header strong { display: block; margin-top: 3px; font-size: 13px; }
.guest-drawer > header small { display: block; margin-top: 2px; color: var(--muted); font-size: 5px; }
.guest-drawer > header button { width: 24px; height: 24px; border: 1px solid rgba(11, 33, 54, .12); border-radius: 5px; color: var(--ink); background: white; font-size: 13px; }
.guest-drawer-tabs { display: grid; grid-template-columns: 1fr 1fr; padding: 0 12px; border-bottom: 1px solid rgba(11, 33, 54, .1); }
.guest-drawer-tabs button { min-height: 31px; border: 0; border-bottom: 2px solid transparent; color: var(--muted); background: transparent; font-size: 6px; font-weight: 800; }
.guest-drawer-tabs button.is-active { border-color: var(--ink); color: var(--ink); }
.guest-drawer-tabs button span { margin-left: 3px; padding: 1px 4px; border-radius: 999px; background: #edf0f2; }
.guest-drawer-panel { min-height: 0; display: none; overflow: hidden; padding: 10px 12px; }
.guest-drawer-panel.is-active { display: block; }
.guest-drawer-panel > label { display: grid; gap: 4px; color: var(--muted); font-size: 5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.guest-drawer-panel > label span { min-height: 25px; display: flex; align-items: center; justify-content: space-between; padding: 0 8px; border: 1px solid rgba(11, 33, 54, .12); border-radius: 5px; color: var(--ink); background: white; font-size: 6px; letter-spacing: 0; text-transform: none; }
.guest-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-top: 8px; }
.guest-detail-grid section, .guest-clearance, .guest-waiver { display: grid; gap: 3px; padding: 8px; border: 1px solid rgba(11, 33, 54, .1); border-radius: 6px; background: rgba(255, 255, 255, .7); }
.guest-detail-grid b { color: var(--muted); font-size: 5px; text-transform: uppercase; }
.guest-detail-grid strong { font-size: 6px; }
.guest-detail-grid small, .guest-clearance small, .guest-waiver small { color: var(--muted); font-size: 5px; }
.guest-detail-grid i { color: var(--sage-dark); font-size: 4px; font-style: normal; font-weight: 800; letter-spacing: .08em; }
.guest-clearance { margin-top: 6px; }
.guest-clearance > span, .guest-waiver { display: flex; align-items: center; justify-content: space-between; }
.guest-clearance strong, .guest-waiver strong { font-size: 6px; }
.guest-clearance b { padding: 2px 5px; border-radius: 999px; color: #27613d; background: #dff3e6; font-size: 4px; }
.guest-waiver { margin-top: 6px; }
.guest-waiver div { display: grid; gap: 2px; }
.guest-waiver > b { padding: 4px 7px; border: 1px solid rgba(11, 33, 54, .12); border-radius: 5px; font-size: 5px; }
.messages-panel { height: calc(100% - 85px); }
.messages-panel > header { display: flex; justify-content: space-between; gap: 6px; }
.messages-panel > header strong, .messages-panel > header small { display: block; }
.messages-panel > header strong { font-size: 7px; }
.messages-panel > header small, .messages-panel > header b { color: var(--muted); font-size: 5px; }
.message-history { height: calc(100% - 92px); display: flex; flex-direction: column; gap: 6px; margin-top: 8px; padding: 7px; border: 1px solid rgba(11, 33, 54, .1); border-radius: 6px; background: #f6f3ee; }
.message-history p { max-width: 87%; margin: 0; padding: 6px 7px; border-radius: 6px; font-size: 5px; line-height: 1.45; }
.message-history p small { display: block; margin-top: 4px; font-size: 4px; font-weight: 700; text-transform: uppercase; }
.message-out { align-self: flex-end; color: white; background: var(--ink); }
.message-out small { color: rgba(255, 255, 255, .58); }
.message-in { background: white; box-shadow: 0 3px 8px rgba(11, 33, 54, .06); }
.message-in small { color: var(--muted); }
.message-composer { margin-top: 7px; padding: 6px; border: 1px solid rgba(11, 33, 54, .1); border-radius: 6px; background: white; box-shadow: 0 -4px 12px rgba(7, 28, 43, .04); }
.message-composer > div { display: flex; gap: 5px; }
.message-composer > div span { min-height: 31px; flex: 1; padding: 7px; border: 1px solid rgba(11, 33, 54, .12); border-radius: 5px; color: var(--muted); font-size: 5px; }
.message-composer > div button { width: 28px; border: 0; border-radius: 5px; color: white; background: var(--ink); }
.message-composer > small { display: flex; justify-content: space-between; margin-top: 4px; color: var(--muted); font-size: 4px; }
.queue-action-toast { position: absolute; z-index: 12; right: 12px; bottom: 10px; padding: 7px 10px; border-radius: 999px; color: white; background: var(--sage-dark); box-shadow: 0 8px 18px rgba(82, 123, 101, .25); font-size: 5px; font-weight: 800; opacity: 0; transform: translateY(4px); transition: opacity .2s ease, transform .2s ease; }
.queue-action-toast.is-visible { opacity: 1; transform: none; }
@keyframes reveal { from { opacity: 0; transform: translateY(8px); } }

.workflow-section { background: linear-gradient(180deg, var(--paper), var(--paper-2)); }
.workflow-heading { max-width: 870px; }
.workflow-line { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; margin-top: 64px; }
.workflow-line::before { content: ""; position: absolute; top: 23px; left: 24px; right: 24px; height: 1px; background: rgba(11, 33, 54, .2); }
.workflow-line article { position: relative; padding-right: 25px; }
.workflow-line article > span { position: relative; z-index: 2; width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid rgba(11, 33, 54, .2); border-radius: 50%; color: white; background: var(--sage-dark); font-family: var(--display); font-size: 20px; box-shadow: 0 0 0 8px var(--paper-2); }
.workflow-line article div { margin-top: 27px; }
.workflow-line small { color: var(--sage-dark); font-size: 8px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.workflow-line h3 { margin: 8px 0 10px; font-size: 14px; line-height: 1.4; }
.workflow-line p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.7; }

.roles-section { background: #fbf8f2; }
.roles-grid { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: 86px; align-items: center; }
.roles-grid > div:first-child > p:not(.eyebrow) { max-width: 570px; margin: 24px 0 0; color: var(--muted); font-size: 15px; }
.role-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.role-cards article { min-height: 160px; display: flex; padding: 28px 30px; border: 1px solid var(--line); border-radius: 17px; background: white; }
.role-copy { min-width: 0; width: 100%; display: flex; flex-direction: column; gap: 36px; }
.role-cards span { color: var(--sage-dark); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.role-cards strong { max-width: 260px; font-family: var(--display); font-size: 23px; font-weight: 500; line-height: 1.1; }

.pricing-section { background: var(--paper); }
.pricing-heading { grid-template-columns: minmax(0, 1fr); align-items: start; gap: 28px; }
.pricing-heading > p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.8; }
.pricing-billing-selector { width: max-content; display: flex; justify-content: center; gap: 4px; margin-top: 42px; padding: 5px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255, 255, 255, .72); }
.pricing-billing-selector button { min-height: 42px; display: inline-flex; align-items: center; gap: 8px; padding: 0 17px; border: 0; border-radius: 999px; color: var(--muted); background: transparent; font: inherit; font-size: 10px; font-weight: 800; cursor: pointer; }
.pricing-billing-selector button[aria-pressed="true"] { color: white; background: var(--ink); box-shadow: 0 8px 20px rgba(11, 33, 54, .16); }
.pricing-billing-selector button span { padding: 5px 8px; border-radius: 999px; color: var(--sage-dark); background: var(--sage-pale); font-size: 7px; letter-spacing: .08em; text-transform: uppercase; }
.pricing-billing-selector button[aria-pressed="true"] span { color: var(--ink); background: #dfeadd; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); align-items: stretch; gap: 16px; margin-top: 30px; }
.price-card { position: relative; min-height: 650px; display: flex; flex-direction: column; padding: 30px; border: 1px solid var(--line); border-radius: 22px; background: var(--white); }
.price-card.featured { border: 2px solid var(--sage-dark); box-shadow: 0 25px 65px rgba(11, 33, 54, .13); }
.price-card.dark { border-color: var(--ink); color: white; background: var(--ink); }
.popular { position: absolute; top: -14px; right: 20px; padding: 7px 12px; border-radius: 999px; color: white; background: var(--sage-dark); font-size: 8px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.plan-for { margin: 0; color: var(--sage-dark); font-size: 8px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.dark .plan-for { color: #b8cfbd; }
.price-card h3 { margin: 13px 0 0; font-family: var(--display); font-size: 48px; font-weight: 500; line-height: 1; }
.plan-copy { min-height: 76px; margin: 16px 0 0; color: var(--muted); font-size: 12px; line-height: 1.7; }
.dark .plan-copy, .dark .trial-line { color: rgba(255, 255, 255, .62); }
.price { display: flex; align-items: baseline; gap: 8px; margin: 28px 0 0; }
.price strong { font-family: var(--display); font-size: 50px; font-weight: 600; letter-spacing: -.04em; }
.price span { color: var(--muted); font-size: 10px; }
.dark .price span { color: rgba(255, 255, 255, .58); }
.price-detail { min-height: 18px; margin: 4px 0 20px; color: var(--muted); font-size: 9px; }
.dark .price-detail { color: rgba(255, 255, 255, .58); }
.trial-line { margin: 16px 0 13px; color: var(--sage-dark); font-size: 9px; font-weight: 800; text-align: center; text-transform: uppercase; letter-spacing: .1em; }
.price-card ul { display: grid; gap: 12px; margin: 6px 0 0; padding: 22px 0 0; border-top: 1px solid var(--line); list-style: none; }
.dark ul { border-color: rgba(255, 255, 255, .16); }
.price-card li { position: relative; padding-left: 23px; color: var(--ink-2); font-size: 11px; line-height: 1.5; }
.price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--sage-dark); font-weight: 800; }
.dark li { color: rgba(255, 255, 255, .78); }
.dark li::before { color: #b8cfbd; }
.pricing-note { margin-top: 24px; color: var(--muted); font-size: 10px; text-align: center; }
.pricing-note a { color: var(--ink); font-weight: 700; }

.faq-section { background: #fbf8f2; }
.faq-grid { display: grid; grid-template-columns: minmax(0, .75fr) minmax(420px, 1.25fr); gap: 100px; align-items: start; }
.faq-grid > div:first-child > p:not(.eyebrow) { margin: 24px 0 0; color: var(--muted); font-size: 13px; line-height: 1.75; }
.text-arrow { display: inline-block; margin-top: 22px; color: var(--sage-dark); font-size: 12px; font-weight: 800; text-decoration: none; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 23px 42px 23px 0; font-size: 13px; font-weight: 700; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 6px; top: 18px; color: var(--sage-dark); font-family: var(--display); font-size: 27px; font-weight: 400; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list p { max-width: 680px; margin: -3px 0 23px; color: var(--muted); font-size: 12px; line-height: 1.8; }

.final-cta { background: var(--paper-2); }
.cta-panel { padding: clamp(55px, 8vw, 94px) 30px; border-radius: 30px; color: white; background: radial-gradient(circle at 80% 20%, rgba(157, 182, 162, .25), transparent 28rem), var(--ink); box-shadow: var(--shadow); text-align: center; }
.cta-panel .eyebrow { color: #bad1bf; }
.cta-panel h2 { max-width: 900px; margin: 0 auto; font-size: clamp(56px, 7.5vw, 92px); }
.cta-panel > p:not(.eyebrow) { max-width: 700px; margin: 24px auto 30px; color: rgba(255, 255, 255, .65); font-size: 14px; line-height: 1.75; }
.cta-panel > div { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 20px; }
.cta-panel > div > a:last-child { color: rgba(255, 255, 255, .8); font-size: 11px; font-weight: 700; }

.site-footer { padding: 54px 0 34px; border-top: 1px solid var(--line); background: #faf7f1; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .75fr .75fr; gap: 55px; }
.footer-copy { max-width: 430px; margin: 16px 0 0; color: var(--muted); font-size: 11px; }
.footer-links { display: grid; align-content: start; gap: 11px; font-size: 11px; }
.footer-links strong { margin-bottom: 6px; font-size: 8px; letter-spacing: .15em; text-transform: uppercase; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { color: var(--sage-dark); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 42px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--muted); font-size: 9px; }

/* Shared legal pages */
.legal-hero { padding: 84px 0 48px; }
.legal-hero h1 { max-width: 800px; margin: 0; font-size: clamp(52px, 7vw, 82px); }
.legal-meta { margin-top: 20px; color: var(--muted); font-size: 11px; }
.legal-layout { display: grid; grid-template-columns: 260px minmax(0, 780px); gap: 70px; align-items: start; padding-bottom: 110px; }
.legal-nav { position: sticky; top: 108px; display: grid; gap: 10px; padding: 22px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255, 250, 242, .75); font-size: 10px; }
.legal-nav strong { margin-bottom: 8px; font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.legal-nav a { color: var(--muted); text-decoration: none; }
.legal-content { padding: 42px; border: 1px solid var(--line); border-radius: 22px; background: rgba(255, 250, 242, .88); box-shadow: 0 18px 50px rgba(11, 33, 54, .07); }
.legal-content section + section { margin-top: 40px; padding-top: 34px; border-top: 1px solid var(--line); }
.legal-content h2 { margin: 0 0 18px; font-size: 34px; line-height: 1.05; }
.legal-content h3 { margin: 24px 0 10px; font-size: 14px; }
.legal-content p, .legal-content li { color: var(--ink-2); font-size: 12px; }
.legal-content ul { padding-left: 20px; }
.legal-callout { padding: 18px; border-left: 4px solid var(--sage-dark); border-radius: 0 12px 12px 0; background: var(--sage-pale); }
.not-found { min-height: calc(100vh - 76px); display: grid; place-items: center; padding: 60px 20px; text-align: center; }
.not-found h1 { font-size: clamp(70px, 12vw, 130px); }

/* Public solution and industry pages */
.landing-hero { overflow: hidden; padding: 104px 0 92px; background: radial-gradient(circle at 76% 12%, rgba(157, 182, 162, .28), transparent 31rem), linear-gradient(rgba(11, 33, 54, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(11, 33, 54, .025) 1px, transparent 1px), linear-gradient(180deg, #fbf8f3, var(--paper)); background-size: auto, 24px 24px, 24px 24px, auto; }
.landing-hero-grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr); align-items: center; gap: 72px; }
.landing-hero h1 { max-width: 760px; margin: 0; font-size: clamp(58px, 7.4vw, 94px); }
.landing-hero h1 em { color: var(--sage-dark); font-weight: 500; }
.landing-lede { max-width: 690px; margin: 26px 0 0; color: var(--ink-2); font-size: 17px; line-height: 1.8; }
.landing-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.landing-proof { position: relative; min-height: 480px; display: grid; place-items: center; }
.landing-window { position: relative; width: 100%; overflow: hidden; border: 1px solid rgba(11, 33, 54, .18); border-radius: 22px; background: white; box-shadow: var(--shadow); }
.landing-window img { width: 100%; aspect-ratio: 1.42 / 1; object-fit: cover; object-position: top center; }
.landing-window-screenshot img { height: auto; aspect-ratio: auto; object-fit: contain; }
.ops-preview { min-height: 405px; padding: 22px; background: #f3eee6; }
.ops-preview-header { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 18px; }
.ops-preview-header div { display: grid; gap: 2px; }
.ops-preview-header strong { font-size: 13px; }
.ops-preview-header small { color: var(--muted); font-size: 8px; }
.ops-preview-header span { padding: 6px 9px; border-radius: 999px; color: var(--sage-dark); background: var(--sage-pale); font-size: 7px; font-weight: 800; }
.ops-preview-board { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.ops-preview-column { min-width: 0; min-height: 306px; padding: 10px; border: 1px solid var(--line); border-radius: 11px; background: rgba(255, 253, 249, .76); }
.ops-preview-column > strong { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 9px; font-size: 8px; }
.ops-preview-column > strong b { min-width: 18px; padding: 2px 5px; border-radius: 999px; color: var(--sage-dark); background: var(--sage-pale); font-size: 7px; text-align: center; }
.ops-preview-card { display: grid; gap: 7px; margin-top: 7px; padding: 11px; border: 1px solid var(--line); border-radius: 8px; background: white; box-shadow: 0 5px 12px rgba(11, 33, 54, .045); }
.ops-preview-card strong { font-size: 8px; }
.ops-preview-card small { overflow: hidden; color: var(--muted); font-size: 6px; white-space: nowrap; text-overflow: ellipsis; }
.ops-preview-card span { color: var(--sage-dark); font-size: 6px; font-weight: 800; }
.landing-window-label { position: absolute; z-index: 2; right: -20px; bottom: 28px; max-width: 255px; display: grid; gap: 4px; padding: 17px 19px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255, 253, 249, .97); box-shadow: 0 18px 40px rgba(11, 33, 54, .16); }
.landing-window-label small { color: var(--sage-dark); font-size: 8px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.landing-window-label strong { font-family: var(--display); font-size: 22px; font-weight: 600; line-height: 1.1; }
.landing-intro { color: white; background: var(--ink); }
.landing-intro-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); align-items: start; gap: 90px; }
.landing-intro h2, .landing-section-heading h2, .lifecycle-copy h2, .industry-home-heading h2, .day-of-home-copy h2 { margin: 0; font-size: clamp(48px, 6vw, 76px); }
.landing-intro .eyebrow { color: #bad1bf; }
.landing-intro-copy { display: grid; gap: 20px; }
.landing-intro-copy p { margin: 0; color: rgba(255, 255, 255, .7); font-size: 14px; line-height: 1.85; }
.landing-intro-copy strong { color: white; }
.landing-feature-section { background: #faf7f1; }
.landing-section-heading { max-width: 870px; }
.landing-section-heading > p:not(.eyebrow) { max-width: 730px; margin: 24px 0 0; color: var(--muted); font-size: 14px; line-height: 1.8; }
.landing-feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 54px; }
.landing-feature-grid article { min-height: 245px; display: grid; align-content: start; gap: 21px; padding: 32px; border: 1px solid var(--line); border-radius: 19px; background: var(--white); }
.landing-feature-grid .capability-icon { width: 46px; height: 46px; }
.landing-feature-grid h3 { margin: 0; font-family: var(--display); font-size: 31px; font-weight: 600; line-height: 1.05; }
.landing-feature-grid p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.8; }
.landing-feature-grid ul { display: grid; gap: 8px; margin: 0; padding: 17px 0 0; border-top: 1px solid var(--line); color: var(--ink-2); font-size: 10px; list-style: none; }
.landing-feature-grid li { position: relative; padding-left: 17px; }
.landing-feature-grid li::before { content: "✓"; position: absolute; left: 0; color: var(--sage-dark); font-weight: 800; }
.service-strip { border-block: 1px solid var(--line); background: var(--paper-2); }
.service-strip-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px; padding-block: 30px; }
.service-strip span { padding: 9px 13px; border: 1px solid var(--line); border-radius: 999px; color: var(--ink-2); background: rgba(255, 253, 249, .65); font-size: 9px; font-weight: 700; }
.lifecycle-section { background: linear-gradient(180deg, var(--paper), var(--paper-2)); }
.lifecycle-grid { display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); align-items: center; gap: 82px; }
.lifecycle-copy > p:not(.eyebrow) { margin: 24px 0 0; color: var(--muted); font-size: 14px; line-height: 1.8; }
.lifecycle-rail { display: grid; gap: 8px; }
.lifecycle-rail span { min-height: 60px; display: flex; align-items: center; gap: 15px; padding: 0 19px; border: 1px solid var(--line); border-radius: 12px; background: rgba(255, 253, 249, .78); font-size: 11px; font-weight: 700; }
.lifecycle-rail span::before { content: attr(data-step); width: 28px; height: 28px; display: grid; place-items: center; flex: 0 0 28px; border-radius: 50%; color: white; background: var(--sage-dark); font-family: var(--display); font-size: 14px; }
.lifecycle-rail span:last-child { border-color: var(--ink); color: white; background: var(--ink); }
.landing-quote { background: #fbf8f2; }
.landing-quote blockquote { max-width: 1040px; margin: 0 auto; color: var(--ink); font-family: var(--display); font-size: clamp(39px, 5.2vw, 66px); font-weight: 500; letter-spacing: -.035em; line-height: 1.08; text-align: center; }
.landing-quote blockquote em { color: var(--sage-dark); font-weight: 500; }

/* Homepage entry points */
.industry-home-section { background: #fbf8f2; }
.industry-home-heading { max-width: 900px; }
.industry-home-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 50px; }
.industry-home-card { min-height: 270px; display: flex; flex-direction: column; padding: 30px; border: 1px solid var(--line); border-radius: 20px; background: var(--white); text-decoration: none; transition: transform .18s ease, box-shadow .18s ease; }
.industry-home-card:hover { transform: translateY(-4px); box-shadow: 0 20px 45px rgba(11, 33, 54, .09); }
.industry-home-card small { color: var(--sage-dark); font-size: 8px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.industry-home-card h3 { margin: 29px 0 13px; font-family: var(--display); font-size: 35px; font-weight: 600; line-height: 1; }
.industry-home-card p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.75; }
.industry-home-card span { margin-top: auto; padding-top: 25px; color: var(--sage-dark); font-size: 10px; font-weight: 800; }
.day-of-home-section { color: white; background: var(--ink); }
.day-of-home-grid { display: grid; grid-template-columns: minmax(0, .85fr) minmax(430px, 1.15fr); align-items: center; gap: 78px; }
.day-of-home-copy .eyebrow { color: #bad1bf; }
.day-of-home-copy > p:not(.eyebrow) { margin: 24px 0 30px; color: rgba(255, 255, 255, .68); font-size: 14px; line-height: 1.8; }
.day-of-home-visual { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 18px; border: 1px solid rgba(255, 255, 255, .15); border-radius: 22px; background: rgba(255, 255, 255, .045); }
.day-of-home-visual article { min-height: 130px; display: grid; align-content: space-between; gap: 16px; padding: 20px; border: 1px solid rgba(255, 255, 255, .13); border-radius: 13px; background: rgba(255, 255, 255, .05); }
.day-of-home-visual small { color: #bad1bf; font-size: 8px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.day-of-home-visual strong { font-family: var(--display); font-size: 24px; font-weight: 500; line-height: 1.1; }

@media (max-width: 1040px) {
  .nav { grid-template-columns: 1fr auto auto; gap: 12px; }
  .hero-gallery { min-height: 820px; }
  .preview-dashboard { left: 0; width: 100%; }
  .preview-quotes { top: 315px; width: 68%; }
  .preview-payments { top: 405px; width: 62%; }
  .preview-quotes picture, .preview-payments picture { aspect-ratio: 4 / 3; }
  .nav-links { display: none; }
  .nav-toggle { display: grid; grid-column: 3; }
  .nav-actions { grid-column: 2; grid-row: 1; }
  .mobile-nav { display: grid; }
  .legal-header-nav { grid-template-columns: 1fr auto; }
  .legal-header-nav .nav-links { grid-column: 2; display: flex; }
  .legal-header-nav .nav-links .button { min-height: 42px; padding-inline: 17px; font-size: 10px; }
  .capability-grid { grid-template-columns: 1fr 1fr; }
  .tour-panel { min-height: 0; grid-template-columns: 1fr; gap: 20px; padding: 24px; }
  .tour-panel figcaption { width: 100%; max-width: 720px; padding: 6px 2px; }
  .tour-media { width: 100%; }
  .crm-demo { grid-template-columns: 1fr; }
  .crm-desktop-sidebar { display: none; }
  .crm-demo-content { padding-bottom: 66px; }
  .crm-mobile-nav { position: absolute; z-index: 3; inset: auto 0 0; height: 56px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 3px; padding: 5px 7px 7px; border-top: 1px solid var(--line); background: rgba(255, 250, 241, .98); box-shadow: 0 -10px 25px rgba(7, 28, 43, .08); }
  .crm-mobile-nav span { display: grid; place-items: center; align-content: center; gap: 3px; border-radius: 8px; color: var(--muted); }
  .crm-mobile-nav svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
  .crm-mobile-nav small { font-size: 5px; font-weight: 800; }
  .crm-mobile-nav .is-active { color: white; background: var(--ink); box-shadow: 0 6px 14px rgba(7, 28, 43, .16); }
  .workflow-line { grid-template-columns: 1fr; gap: 20px; }
  .workflow-line::before { top: 20px; bottom: 20px; left: 22px; width: 1px; height: auto; }
  .workflow-line article { display: grid; grid-template-columns: 46px 1fr; gap: 22px; padding: 0; }
  .workflow-line article > span { box-shadow: 0 0 0 6px var(--paper-2); }
  .workflow-line article div { margin: 2px 0 0; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 720px; }
  .price-card { min-height: 0; }
  .plan-copy { min-height: 0; }
  .landing-hero-grid { grid-template-columns: 1fr; gap: 45px; }
  .landing-proof { min-height: 0; max-width: 760px; }
  .landing-window-label { right: 22px; }
  .industry-home-grid { grid-template-columns: 1fr 1fr; }
  .industry-home-card:last-child { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  .container { width: min(100% - 32px, 1220px); }
  .nav { min-height: 70px; }
  .nav-actions .text-link { display: none; }
  .button-small { min-height: 40px; }
  .hero { padding-top: 72px; }
  .hero h1 { font-size: clamp(58px, 15vw, 84px); }
  .hero-product { margin-top: 50px; padding-bottom: 48px; }
  .audience-inner { grid-template-columns: 1fr; gap: 12px; padding-block: 24px; text-align: center; }
  .audience-inner div { justify-content: center; }
  .section { padding: 84px 0; }
  .tour-heading, .pricing-heading, .roles-grid, .faq-grid { grid-template-columns: 1fr; gap: 30px; }
  .product-intro { width: min(100% - 32px, 1220px); margin-inline: auto; }
  .tour-tabs { grid-template-columns: repeat(5, 1fr); }
  .tour-panel { gap: 18px; padding: 22px; }
  .tour-panel figcaption { width: 100%; padding: 4px 2px; }
  .tour-panel figcaption > strong { max-width: 620px; }
  .tour-media { width: 100%; aspect-ratio: 4 / 3; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .legal-layout { grid-template-columns: 1fr; gap: 28px; }
  .legal-nav { position: static; grid-template-columns: 1fr 1fr; }
  .legal-nav strong { grid-column: 1 / -1; }
  .landing-hero { padding: 76px 0 70px; }
  .landing-intro-grid, .lifecycle-grid, .day-of-home-grid { grid-template-columns: 1fr; gap: 38px; }
  .landing-feature-grid { grid-template-columns: 1fr; }
  .day-of-home-visual { max-width: 680px; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 24px, 1220px); }
  html { scroll-padding-top: 68px; }
  .brand { font-size: 19px; }
  .brand-mark { transform: scale(.88); transform-origin: left center; margin-right: -4px; }
  .nav { min-height: 66px; grid-template-columns: 1fr auto auto; gap: 8px; }
  .nav-actions .button { min-height: 42px; padding-inline: 15px; font-size: 10px; }
  .cta-full { display: none; }
  .cta-short { display: inline; }
  .mobile-nav { grid-template-columns: 1fr; max-height: calc(100vh - 66px); padding-bottom: 14px; }
  .mobile-nav-intro { grid-column: auto; display: grid; gap: 3px; padding: 5px 3px 8px; border: 0; border-radius: 0; background: transparent; }
  .mobile-nav-intro strong { font-family: inherit; font-size: 13px; font-weight: 800; }
  .mobile-nav-intro small { display: none; }
  .mobile-nav-feature { min-height: 76px; grid-template-columns: 1fr auto; align-content: center; gap: 3px 12px; padding: 13px 15px; border-color: rgba(197, 160, 107, .7); color: var(--ink); background: linear-gradient(105deg, rgba(197, 160, 107, .22), rgba(255, 253, 249, .92)); box-shadow: 0 6px 14px rgba(11, 33, 54, .08); }
  .mobile-nav-feature::after { content: "→"; grid-column: 2; grid-row: 1 / 4; align-self: center; color: var(--gold-dark); font-size: 17px; }
  .mobile-nav-feature > small { color: var(--gold-dark); font-size: 7px; }
  .mobile-nav-feature strong { font-family: inherit; font-size: 15px; font-weight: 800; }
  .mobile-nav-feature span { max-width: 270px; color: var(--muted); font-size: 8px; line-height: 1.35; }
  .mobile-nav-group { gap: 6px; padding: 4px 0 0; border: 0; border-radius: 0; background: transparent; }
  .mobile-nav-section-label { margin: 0 2px; }
  .mobile-nav-group a { position: relative; min-height: 48px; padding: 8px 34px 8px 12px; border: 1px solid var(--line); border-radius: 10px; background: rgba(255, 253, 249, .82); }
  .mobile-nav-group a::after { content: "›"; position: absolute; top: 50%; right: 13px; transform: translateY(-52%); color: var(--sage-dark); font-size: 19px; font-weight: 500; }
  .mobile-nav-utility { grid-column: auto; grid-template-columns: 1fr; }
  .legal-header-nav .nav-links > a:first-child { display: none; }
  .hero { padding-top: 56px; }
  .hero .eyebrow { max-width: 310px; margin-inline: auto; font-size: 9px; line-height: 1.55; }
  .hero h1 { font-size: clamp(45px, 13.5vw, 62px); }
  .hero-copy { font-size: 15px; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-note { margin-top: 13px; }
  .hero-product { margin-top: 38px; padding-bottom: 38px; }
  .browser-bar { display: none; }
  .hero-gallery { min-height: 0; display: flex; flex-direction: column; padding-top: 12px; }
  .product-preview { position: relative; top: auto; right: auto; left: auto; width: 96%; }
  .preview-dashboard { z-index: 1; width: 100%; align-self: center; transform: rotate(1.15deg); }
  .preview-quotes { z-index: 2; align-self: flex-start; margin-top: -34px; transform: rotate(-1.35deg); }
  .preview-payments { z-index: 3; align-self: flex-end; margin-top: -34px; transform: rotate(.55deg); }
  .preview-window { border-radius: 11px; box-shadow: 0 22px 55px rgba(11, 33, 54, .18); }
  .hero-gallery .product-preview picture { display: none; }
  .mobile-hero-screen { display: block; height: 465px; overflow: hidden; padding: 18px; color: var(--ink); background: #f9f5ee; }
  .mobile-hero-screen h3 { margin: 0; font-family: var(--display); font-size: 31px; font-weight: 500; letter-spacing: -.025em; }
  .mobile-dashboard-screen { display: grid; align-content: start; gap: 11px; }
  .mobile-dashboard-stat { min-height: 115px; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 17px; border: 1px solid var(--line); border-radius: 9px; background: rgba(255, 253, 249, .92); box-shadow: 0 5px 12px rgba(11, 33, 54, .035); }
  .mobile-dashboard-stat > div { display: grid; gap: 5px; }
  .mobile-dashboard-stat strong { font-size: 13px; }
  .mobile-dashboard-stat b { font-size: 27px; }
  .mobile-dashboard-stat span { color: var(--muted); font-size: 9px; }
  .mobile-dashboard-stat i { width: 40px; height: 40px; display: grid; place-items: center; flex: 0 0 40px; border-radius: 8px; color: var(--sage-dark); background: rgba(52, 92, 82, .1); font-style: normal; }
  .mobile-dashboard-stat i svg { width: 20px; height: 20px; fill: none !important; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
  .mobile-quotes-screen h3 { margin-bottom: 13px; font-family: var(--sans); font-size: 17px; font-weight: 800; }
  .mobile-quote-control { min-height: 39px; display: flex; align-items: center; justify-content: space-between; margin-bottom: 7px; padding: 0 12px; border: 1px solid var(--line); border-radius: 7px; color: var(--muted); background: white; font-size: 9px; }
  .mobile-quote-control strong { color: var(--ink); font-size: 9px; }
  .mobile-quotes-screen > small { display: block; margin: 7px 0; color: var(--muted); font-size: 8px; }
  .mobile-quote-card { position: relative; display: grid; gap: 5px; padding: 14px; border: 1px solid var(--line); border-radius: 8px; background: white; }
  .mobile-quote-card > strong { font-size: 11px; }
  .mobile-quote-card p { margin: 0; color: var(--muted); font-size: 8px; line-height: 1.4; }
  .mobile-quote-card > b { margin: 2px 0 5px; font-size: 7px; letter-spacing: .12em; text-transform: uppercase; }
  .mobile-quote-card > div { color: var(--ink-2); font-size: 8px; }
  .mobile-quote-card > small { margin-top: 3px; color: var(--muted); font-size: 6px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
  .mobile-quote-card em { position: absolute; right: 12px; bottom: 12px; padding: 5px 8px; border: 1px solid rgba(52, 92, 82, .18); border-radius: 6px; color: var(--sage-dark); background: var(--sage-pale); font-size: 7px; font-style: normal; font-weight: 800; }
  .mobile-payment-screen { display: grid; align-content: start; gap: 11px; padding: 14px; background: #eeece6; }
  .mobile-payment-screen section { padding: 17px; border: 1px solid var(--line); border-radius: 9px; background: #fffaf2; }
  .mobile-payment-screen section > small { display: block; color: var(--muted); font-size: 7px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
  .mobile-payment-screen h3 { margin-top: 6px; font-family: var(--sans); font-size: 19px; font-weight: 800; letter-spacing: 0; }
  .mobile-payment-progress { height: 7px; margin: 14px 0; overflow: hidden; border-radius: 999px; background: #dfdfdc; }
  .mobile-payment-progress span { width: 50%; height: 100%; display: block; border-radius: inherit; background: #286b62; }
  .mobile-payment-screen dl { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin: 0; text-align: center; }
  .mobile-payment-screen dl div { display: grid; gap: 4px; }
  .mobile-payment-screen dt { color: var(--muted); font-size: 6px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
  .mobile-payment-screen dd { margin: 0; font-size: 9px; font-weight: 800; }
  .mobile-payment-screen dl div:nth-child(2) dd { color: #286b62; }
  .mobile-payment-screen hr { margin: 16px 0; border: 0; border-top: 1px solid var(--line); }
  .mobile-next-payment { display: flex; align-items: end; justify-content: space-between; gap: 10px; margin-top: 8px; }
  .mobile-next-payment > div { display: grid; gap: 3px; }
  .mobile-next-payment strong, .mobile-next-payment b { font-size: 12px; }
  .mobile-next-payment span { color: var(--muted); font-size: 8px; }
  .mobile-pay-button { width: 100%; min-height: 42px; display: grid; place-items: center; margin-top: 13px; border-radius: 7px; color: white; background: var(--ink); font-size: 9px; font-weight: 800; }
  .mobile-payment-screen section > p { margin: 9px 0 0; color: var(--muted); font-size: 7px; text-align: center; }
  .mobile-payment-history { min-height: 95px; background: white !important; }
  .mobile-payment-history h3 { margin: 0 0 11px; font-size: 14px; }
  .mobile-payment-history > div { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 10px; border: 1px solid var(--line); border-radius: 7px; }
  .mobile-payment-history span { display: grid; gap: 3px; }
  .mobile-payment-history strong, .mobile-payment-history b { font-size: 9px; }
  .mobile-payment-history small { color: var(--muted); font-size: 6px; }
  .product-preview figcaption { top: -11px; left: 12px; padding: 8px 11px; border-radius: 9px; }
  .product-preview figcaption strong { font-size: 9px; }
  .product-preview figcaption small { font-size: 6px; }
  .audience-inner { padding-block: 22px; }
  .audience-inner p { font-size: 19px; }
  .audience-inner div { gap: 10px 14px; }
  .section { padding: 68px 0; }
  .product-intro h2, .tour-heading h2, .workflow-heading h2, .roles-grid h2, .pricing-heading h2, .faq-grid h2 { font-size: clamp(43px, 12.5vw, 56px); }
  .roles-grid > div:first-child > p:not(.eyebrow) { font-size: 14px; }
  .capability-grid, .role-cards { grid-template-columns: 1fr; }
  .capability-grid { gap: 12px; margin-top: 38px; }
  .capability-grid article { min-height: 170px; gap: 20px; padding: 24px; }
  .tour-shell { margin-top: 36px; }
  .tour-tabs { position: relative; z-index: 2; display: flex; overflow-x: auto; overscroll-behavior-inline: contain; scroll-snap-type: inline mandatory; scrollbar-width: none; touch-action: pan-x pan-y; }
  .tour-tabs::-webkit-scrollbar { display: none; }
  .tour-tabs button { min-width: 172px; min-height: 74px; flex: 0 0 172px; scroll-snap-align: start; border-right: 1px solid rgba(255, 255, 255, .13); border-bottom: 0; padding: 14px; pointer-events: auto; touch-action: manipulation; }
  .tour-panel figcaption { padding: 22px 18px; }
  .tour-panel { padding: 0; gap: 0; }
  .tour-panel figcaption > strong { font-size: 30px; }
  .tour-panel figcaption ul { margin-top: 16px; padding-top: 15px; }
  .tour-media { border-inline: 0; border-bottom: 0; border-radius: 0; box-shadow: none; }
  .desktop-tour-capture { display: none; }
  .tour-media, .plan-tour-media, .reporting-tour-media { min-height: 700px; aspect-ratio: auto; }
  .crm-demo { min-height: 700px; aspect-ratio: auto; }
  .crm-demo-content { height: 700px; display: block; padding: 16px 12px 74px; }
  .crm-demo-header { min-height: 61px; align-items: end; }
  .crm-demo-header strong { font-size: 31px; }
  .crm-demo-tabs { width: 100%; display: grid; grid-template-columns: repeat(3, 1fr); margin: 12px 0; }
  .crm-demo-tabs button { min-height: 35px; padding: 0 6px; font-size: 7px; }
  .crm-demo-screens { height: calc(100% - 120px); }
  .crm-demo-screen:not(.crm-detail-screen) { padding: 12px; }
  .crm-screen-heading { min-height: 39px; margin-bottom: 7px; }
  .crm-screen-heading > strong { font-size: 11px; }
  .crm-screen-heading > button { min-height: 31px; padding-inline: 10px; font-size: 7px; }
  .crm-card-grid { grid-template-columns: 1fr; gap: 8px; }
  .crm-record-card, [data-crm-screen="customers"] .crm-record-card, [data-crm-screen="companies"] .crm-record-card, [data-crm-screen="venues"] .crm-record-card { display: grid; grid-template-columns: 1fr; grid-template-rows: auto; gap: 7px; padding: 12px; }
  .crm-secondary-record { display: none !important; }
  [data-crm-screen="companies"] .crm-record-card > header, [data-crm-screen="venues"] .crm-record-card > header, [data-crm-screen="companies"] .crm-contact-line, [data-crm-screen="venues"] .crm-contact-line, [data-crm-screen="companies"] .crm-record-card > p, [data-crm-screen="venues"] .crm-record-card > p, [data-crm-screen="companies"] .crm-record-card > dl, [data-crm-screen="venues"] .crm-record-card > dl, [data-crm-screen="companies"] .crm-record-card > footer, [data-crm-screen="venues"] .crm-record-card > footer { grid-column: auto; grid-row: auto; }
  .crm-record-card > header strong { font-size: 10px; }
  .crm-record-card > header small { font-size: 7px; }
  .crm-linked-record small, .crm-contact-line small { font-size: 5px; }
  .crm-linked-record strong, .crm-contact-line strong { font-size: 7px; }
  .crm-tags span { font-size: 5px; }
  .crm-record-card > p { min-height: 0; font-size: 7px; }
  .crm-record-card dt { font-size: 5px; }
  .crm-record-card dd { font-size: 8px; }
  .crm-record-card > footer { font-size: 6px; }
  .crm-detail-heading { align-items: end; }
  .crm-detail-heading strong { font-size: 21px; }
  .crm-detail-heading button { min-height: 32px; font-size: 7px; }
  .crm-stat-pills { gap: 4px; }
  .crm-stat-pills span { gap: 4px; padding: 5px 6px; font-size: 5px; }
  .crm-stat-pills b { font-size: 7px; }
  .crm-detail-grid { grid-template-columns: 1fr; gap: 7px; margin-top: 8px; }
  .crm-detail-grid > section { padding: 10px; }
  .crm-detail-grid > section > header strong { font-size: 9px; }
  .crm-detail-grid > section > header small { font-size: 6px; }
  .crm-profile-grid { grid-template-columns: 1fr; gap: 5px; }
  .crm-profile-notes { grid-column: auto; }
  .crm-profile-grid small { font-size: 5px; }
  .crm-profile-grid b { font-size: 6px; }
  .crm-contact-cards { grid-template-columns: 1fr; }
  .crm-contact-cards article:nth-child(n+2) { display: none; }
  .crm-contact-cards strong { font-size: 7px; }
  .crm-contact-cards small, .crm-contact-cards span { font-size: 5px; }
  .crm-mobile-nav { display: grid; }
  .crm-demo-toast { right: 12px; bottom: 70px; font-size: 7px; text-align: center; }
  .mobile-app-demo { position: relative; width: 100%; height: 100%; display: block; overflow: hidden; color: var(--ink); background: #f7f2e9; text-align: left; }
  .mobile-app-content { height: 100%; overflow: hidden; padding: 16px 12px 74px; }
  .mobile-page-title { margin: 0 0 15px; font-family: var(--display); font-size: 31px; font-weight: 500; line-height: .95; }
  .mobile-app-card { padding: 13px; border: 1px solid rgba(11, 33, 54, .14); border-radius: 9px; background: rgba(255, 252, 247, .9); box-shadow: 0 10px 30px rgba(7, 28, 43, .07); }
  .mobile-card-heading { display: flex; flex-direction: column; align-items: stretch; gap: 10px; }
  .mobile-card-heading > div:first-child { display: grid; gap: 3px; }
  .mobile-card-heading strong { font-size: 11px; }
  .mobile-card-heading small { color: var(--muted); font-size: 7px; line-height: 1.45; }
  .mobile-view-toggle { width: max-content; display: flex; padding: 3px; border: 1px solid var(--line); border-radius: 7px; background: rgba(255, 255, 255, .7); }
  .mobile-view-toggle b, .mobile-view-toggle span { min-height: 29px; display: grid; place-items: center; padding: 0 10px; border-radius: 5px; font-size: 7px; }
  .mobile-view-toggle b { color: white; background: var(--ink); }
  .mobile-view-toggle span { color: var(--muted); }
  .mobile-month-bar { display: grid; gap: 9px; margin-top: 12px; padding: 10px; border: 1px solid var(--line); border-radius: 7px; background: rgba(255, 255, 255, .55); }
  .mobile-month-bar > div:first-child { display: grid; gap: 2px; }
  .mobile-month-bar strong { font-size: 11px; }
  .mobile-month-bar small { color: var(--muted); font-size: 7px; }
  .mobile-month-controls { display: flex; align-items: center; gap: 5px; }
  .mobile-month-controls b, .mobile-month-controls span { min-height: 29px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 5px; background: white; font-size: 7px; }
  .mobile-month-controls b { width: 29px; font-size: 13px; }
  .mobile-month-controls span { padding: 0 9px; }
  .mobile-service-legend { display: flex; flex-wrap: wrap; gap: 4px 8px; padding: 9px 1px; color: var(--muted); font-size: 6px; }
  .mobile-service-legend span { display: flex; align-items: center; gap: 3px; }
  .mobile-service-legend i { width: 5px; height: 5px; border-radius: 50%; background: var(--sage-dark); }
  .mobile-service-legend span:nth-child(2) i { background: #b5564e; }
  .mobile-service-legend span:nth-child(3) i { background: #b38b49; }
  .mobile-service-legend span:nth-child(4) i { background: #756494; }
  .mobile-service-legend span:nth-child(5) i { background: #4f7894; }
  .mobile-month-grid { display: grid; grid-template-columns: repeat(7, 1fr); overflow: hidden; border: 1px solid var(--line); border-radius: 7px; background: rgba(255, 255, 255, .48); }
  .mobile-month-grid > b { min-height: 21px; display: grid; place-items: center; border-bottom: 1px solid var(--line); color: var(--muted); background: rgba(15, 34, 55, .06); font-size: 6px; text-transform: uppercase; }
  .mobile-month-grid > span { position: relative; min-height: 32px; padding: 4px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); font-size: 7px; font-weight: 700; }
  .mobile-month-grid > span:nth-child(7n) { border-right: 0; }
  .mobile-month-grid .is-blank { background: rgba(255, 255, 255, .22); }
  .mobile-month-grid .is-selected { background: rgba(15, 34, 55, .09); box-shadow: inset 0 0 0 1px rgba(200, 160, 106, .45); }
  .mobile-month-grid .has-event em { position: absolute; top: 3px; right: 3px; min-width: 12px; padding: 1px 3px; border-radius: 999px; color: var(--sage-dark); background: rgba(52, 92, 82, .13); font-size: 5px; font-style: normal; text-align: center; }
  .mobile-month-grid .has-event i { position: absolute; left: 5px; bottom: 5px; width: 5px; height: 5px; border-radius: 50%; background: #b5564e; }
  .mobile-selected-date { margin-top: 10px; padding: 10px; border: 1px solid var(--line); border-radius: 7px; background: rgba(255, 255, 255, .55); }
  .mobile-selected-date > header { display: flex; align-items: start; justify-content: space-between; }
  .mobile-selected-date > header div { display: grid; gap: 2px; }
  .mobile-selected-date > header strong { font-size: 9px; }
  .mobile-selected-date > header small { color: var(--muted); font-size: 6px; }
  .mobile-selected-date > header > b { padding: 3px 6px; border-radius: 999px; color: var(--sage-dark); background: rgba(52, 92, 82, .13); font-size: 6px; }
  .mobile-selected-date article { display: grid; gap: 4px; margin-top: 8px; padding: 9px; border: 1px solid var(--line); border-radius: 7px; background: white; }
  .mobile-selected-date article div { display: flex; align-items: center; gap: 5px; }
  .mobile-selected-date article i { width: 6px; height: 6px; border-radius: 50%; background: #b5564e; }
  .mobile-selected-date article strong { font-size: 8px; }
  .mobile-selected-date article span, .mobile-selected-date article small { color: var(--muted); font-size: 6px; line-height: 1.35; }
  .mobile-selected-date article > b { margin-top: 2px; color: var(--sage-dark); font-size: 6px; }
  .mobile-app-nav { position: absolute; z-index: 3; inset: auto 0 0; height: 62px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 3px; padding: 6px 7px 8px; border-top: 1px solid var(--line); background: rgba(255, 250, 241, .98); box-shadow: 0 -10px 25px rgba(7, 28, 43, .08); }
  .mobile-app-nav span { display: grid; place-items: center; align-content: center; gap: 3px; border-radius: 8px; color: var(--muted); font-size: 12px; }
  .mobile-app-nav svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
  .mobile-app-nav small { font-size: 5px; font-weight: 800; }
  .mobile-app-nav .is-active { color: white; background: var(--ink); box-shadow: 0 6px 14px rgba(7, 28, 43, .16); }
  .mobile-report-content { overflow: hidden; }
  .mobile-report-filters { padding-bottom: 12px; }
  .mobile-filter-fields { display: grid; gap: 7px; margin-top: 11px; }
  .mobile-filter-fields label { display: grid; gap: 3px; color: var(--muted); font-size: 6px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
  .mobile-filter-fields span { min-height: 29px; display: flex; align-items: center; padding: 0 9px; border: 1px solid var(--line); border-radius: 6px; color: var(--ink); background: white; font-size: 7px; font-weight: 700; letter-spacing: 0; text-transform: none; }
  .mobile-filter-actions { display: flex; gap: 6px; margin-top: 9px; }
  .mobile-filter-actions b, .mobile-filter-actions span { min-height: 29px; display: grid; place-items: center; padding: 0 11px; border-radius: 6px; font-size: 7px; }
  .mobile-filter-actions b { color: white; background: var(--ink); }
  .mobile-filter-actions span { border: 1px solid var(--line); background: white; }
  .mobile-kpi-card { margin-top: 9px; }
  .mobile-kpi-card > b { display: block; margin-top: 10px; font-size: 20px; }
  .mobile-kpi-card > p { min-height: 18px; margin: 4px 0 9px; color: var(--muted); font-size: 7px; line-height: 1.4; }
  .mobile-kpi-card > footer { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 7px 8px; border: 1px solid var(--line); border-radius: 6px; background: rgba(255, 255, 255, .65); color: var(--muted); font-size: 6px; }
  .mobile-kpi-card > footer strong { font-size: 6px; }
  .quote-demo { min-height: 700px; aspect-ratio: auto; }
  .quote-app-header { height: 52px; padding-inline: 12px; }
  .quote-app-header > strong { font-size: 16px; }
  .quote-app-header > div span:first-child { display: none; }
  .quote-app-workspace { height: auto; grid-template-columns: 1fr; }
  .quote-app-main { display: block; }
  .quote-app-main .compact, .quote-app-main .customer-card { display: none; }
  .app-section-card { padding: 13px; }
  .app-section-card > header strong { font-size: 12px; }
  .app-section-card > header small { font-size: 7px; }
  .app-section-card label { font-size: 7px; }
  .app-section-card label > span { min-height: 38px; font-size: 10px; }
  .app-field-grid.four { grid-template-columns: 1fr 1fr; }
  .app-field-grid .wide { grid-column: span 1; }
  .quote-app-pricing { margin-top: 10px; }
  .app-cost-breakdown > b, .app-margin-heading { font-size: 7px; }
  .app-cost-breakdown > span, .app-pricing-rows > div { font-size: 9px; }
  .app-margin-options > span, .app-margin-options small { font-size: 7px; }
  .app-margin-options strong { font-size: 8px; }
  .quote-recalc { bottom: 9px; }
  .queue-demo { min-height: 700px; aspect-ratio: auto; }
  .queue-app-header { height: 44px; }
  .queue-app-header strong { font-size: 10px; }
  .queue-app-header span { font-size: 7px; }
  .queue-app-toolbar { height: 52px; }
  .queue-app-toolbar > small { display: none; }
  .queue-app-toolbar > div span:nth-child(3) { display: none; }
  .queue-app-toolbar > div span, .queue-app-toolbar > div b { min-height: 30px; display: grid; place-items: center; font-size: 7px; }
  .queue-no-shows { height: 40px; }
  .real-queue-board { height: calc(100% - 143px); grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 5px; padding: 7px; }
  .real-queue-column.in-service, .real-queue-column.complete { display: none; }
  .real-queue-column { padding: 6px; }
  .real-queue-column > header strong { font-size: 7px; }
  .real-queue-column > header b { font-size: 6px; }
  .real-guest-card { gap: 5px; padding: 7px 6px; }
  .real-guest-card > span strong { font-size: 8px; }
  .real-guest-card > b, .real-guest-card > small { font-size: 6px; }
  .real-guest-card > span i, .real-guest-card > small:nth-of-type(2) { display: none; }
  .real-guest-card > button { min-height: 32px; font-size: 7px; }
  .guest-drawer { width: 100%; }
  .guest-drawer > header { padding: 14px; }
  .guest-drawer > header p, .guest-drawer > header small { font-size: 7px; }
  .guest-drawer > header strong { font-size: 17px; }
  .guest-drawer-tabs button { min-height: 44px; font-size: 8px; }
  .guest-drawer-panel { padding: 12px 14px; }
  .guest-drawer-panel > label, .guest-detail-grid b { font-size: 7px; }
  .guest-drawer-panel > label span { min-height: 38px; font-size: 9px; }
  .guest-detail-grid strong, .guest-clearance strong, .guest-waiver strong { font-size: 8px; }
  .guest-detail-grid small, .guest-clearance small, .guest-waiver small { font-size: 6px; }
  .messages-panel > header strong { font-size: 9px; }
  .messages-panel > header small, .messages-panel > header b { font-size: 6px; }
  .message-history p { font-size: 7px; }
  .message-composer > div span { min-height: 42px; font-size: 7px; }
  .queue-action-toast { max-width: calc(100% - 24px); right: 12px; font-size: 7px; text-align: center; }
  .workflow-line { margin-top: 44px; }
  .workflow-line article { gap: 17px; }
  .role-cards article { min-height: 142px; padding: 24px; }
  .role-copy { gap: 28px; }
  .role-cards strong { font-size: 22px; }
  .price-card { padding: 26px 22px; }
  .price-card h3 { font-size: 44px; }
  .price { margin-block: 24px 20px; }
  .faq-list summary { min-height: 58px; display: flex; align-items: center; padding-block: 18px; }
  .cta-panel { padding-inline: 20px; border-radius: 22px; }
  .cta-panel h2 { font-size: clamp(44px, 13vw, 58px); }
  .cta-panel > div { display: grid; gap: 16px; }
  .cta-panel .button { width: 100%; }
  .faq-grid { grid-template-columns: minmax(0, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px 22px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .site-footer { padding-top: 44px; }
  .legal-content { padding: 28px 20px; }
  .legal-nav { grid-template-columns: 1fr; }
  .legal-nav strong { grid-column: auto; }
  .landing-hero h1 { font-size: clamp(45px, 13vw, 62px); }
  .landing-lede { font-size: 15px; }
  .landing-actions { display: grid; }
  .landing-actions .button { width: 100%; }
  .landing-window { border-radius: 14px; }
  .ops-preview { min-height: 350px; padding: 13px; }
  .ops-preview-board { gap: 5px; }
  .ops-preview-column { min-height: 260px; padding: 7px; }
  .ops-preview-card { padding: 8px 6px; }
  .landing-window-label { position: relative; right: auto; bottom: auto; max-width: none; margin: -1px 0 0; border-radius: 0 0 13px 13px; box-shadow: none; }
  .landing-intro h2, .landing-section-heading h2, .lifecycle-copy h2, .industry-home-heading h2, .day-of-home-copy h2 { font-size: clamp(42px, 12vw, 58px); }
  .landing-feature-grid { margin-top: 38px; }
  .landing-feature-grid article { min-height: 0; padding: 25px 22px; }
  .landing-feature-grid h3 { font-size: 28px; }
  .industry-home-grid { grid-template-columns: 1fr; margin-top: 38px; }
  .industry-home-card:last-child { grid-column: auto; }
  .industry-home-card { min-height: 235px; padding: 25px 22px; }
  .day-of-home-visual { grid-template-columns: 1fr; }
  .day-of-home-visual article { min-height: 110px; }
  .lifecycle-rail span { min-height: 55px; }
}

@media (max-width: 560px) and (prefers-reduced-motion: no-preference) {
  .hero-gallery .product-preview { will-change: transform; transform-origin: center center; }
  .hero-gallery .preview-dashboard { animation: mobile-preview-sway-center 8s ease-in-out infinite alternate; }
  .hero-gallery .preview-quotes { animation: mobile-preview-sway-left 9.5s ease-in-out -2.5s infinite alternate; }
  .hero-gallery .preview-payments { animation: mobile-preview-sway-right 10.5s ease-in-out -5s infinite alternate; }
}

@keyframes mobile-preview-sway-center {
  from { transform: rotate(.7deg); }
  to { transform: rotate(1.55deg); }
}

@keyframes mobile-preview-sway-left {
  from { transform: rotate(-1.75deg); }
  to { transform: rotate(-.8deg); }
}

@keyframes mobile-preview-sway-right {
  from { transform: rotate(.15deg); }
  to { transform: rotate(.9deg); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
