:root {
  --ink: #26332d;
  --muted: #65716b;
  --green: #6b927f;
  --green-dark: #3f6b58;
  --coral: #d6a28f;
  --blue: #5f8aa3;
  --canvas: #f7f3ea;
  --paper: #ffffff;
  --line: #d8d2c4;
  --soft-green: #edf4ef;
  --soft-coral: #fbefe9;
  --soft-blue: #e5edf2;
  --shadow: 0 24px 60px rgba(38, 51, 45, 0.12);
  --radius: 8px;
  --font-body: "Inter", Arial, sans-serif;
  --font-display: "Sora", "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

[hidden] {
  display: none !important;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  font-family: var(--font-body);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(247, 243, 234, 0.92);
  border-bottom: 1px solid rgba(216, 210, 196, 0.75);
  backdrop-filter: blur(12px);
}

.site-header .brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-width: 188px;
  min-height: 42px;
}

.site-header .brand img {
  display: block;
  width: 188px;
  height: auto;
}

.logo-text-fallback {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 900;
  letter-spacing: 0;
}

.logo-text-fallback .logo-retain {
  color: var(--ink);
}

.logo-text-fallback .logo-simply {
  color: var(--green);
  margin-left: -0.08em;
}

.site-footer .logo-text-fallback {
  min-height: 30px;
  padding: 5px 10px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--green-dark);
  font-family: var(--font-body);
  font-size: 0.92rem;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--ink);
}

.header-action {
  min-width: 106px;
  padding: 10px 14px;
  color: var(--paper);
  background: var(--green-dark);
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 800;
  text-align: center;
}

.turnstile-slot {
  min-height: 70px;
}

@media (max-width: 1320px) {
  .site-header {
    gap: 16px;
  }

  .nav-links {
    gap: 16px;
    font-size: 0.88rem;
  }
}

.section-band {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 68px);
}

.secondary-story {
  display: none;
}

.soft-section {
  background: var(--soft-green);
}

section[id] {
  scroll-margin-top: 86px;
}

#top {
  scroll-margin-top: 86px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 170px);
  padding-top: clamp(24px, 4vw, 34px);
  padding-bottom: clamp(24px, 4vw, 34px);
  background:
    linear-gradient(135deg, rgba(63, 111, 88, 0.12), rgba(217, 108, 74, 0.08) 50%, rgba(62, 111, 143, 0.11)),
    var(--canvas);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.55rem, 4.6vw, 4.95rem);
  line-height: 0.98;
}

h2 {
  font-size: clamp(2rem, 3.4vw, 4rem);
  line-height: 1.05;
}

h3 {
  font-size: 1.08rem;
  line-height: 1.25;
}

.hero-text,
.builder-copy p,
.contact-layout p,
.brand-showcase p,
.feature-grid p,
.locked-preview p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero-text {
  max-width: 680px;
  margin: 22px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  color: var(--paper);
  background: var(--green);
}

.button.primary:hover {
  background: var(--green-dark);
}

.button.secondary {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--line);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}

.setup-expectations {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.setup-expectations span {
  padding: 8px 10px;
  color: var(--green-dark);
  background: var(--soft-green);
  border: 1px solid rgba(63, 111, 88, 0.18);
  border-radius: var(--radius);
  font-size: 0.84rem;
  font-weight: 900;
}

.first-use-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.first-use-strip b {
  color: var(--ink);
}

.first-use-strip span {
  padding: 7px 9px;
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(63, 111, 88, 0.18);
  border-radius: var(--radius);
}

.first-use-strip a {
  padding: 7px 9px;
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(63, 111, 88, 0.18);
  border-radius: var(--radius);
}

.trust-row span {
  padding: 8px 10px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.84rem;
  font-weight: 800;
}

.owner-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  min-height: 520px;
  background:
    linear-gradient(135deg, rgba(107, 146, 127, 0.16), rgba(214, 162, 143, 0.08) 56%, rgba(95, 138, 163, 0.12)),
    var(--canvas);
}

.owner-focus-card,
.owner-note,
.owner-work-grid article,
.automation-flow article {
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.owner-focus-card h2 {
  margin-top: 16px;
  font-size: clamp(1.7rem, 2.7vw, 3rem);
}

.owner-focus-card p,
.owner-note p,
.owner-work-grid p,
.automation-flow p {
  color: var(--muted);
  line-height: 1.7;
}

.owner-section {
  border-top: 1px solid rgba(216, 210, 196, 0.75);
}

.owner-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.owner-metrics article {
  min-height: 160px;
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.owner-metrics span,
.owner-metrics small {
  display: block;
  color: var(--muted);
  font-weight: 800;
}

.owner-metrics strong {
  display: block;
  margin: 12px 0 6px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3.3rem);
}

.owner-note {
  margin-top: 16px;
  box-shadow: none;
}

.ai-funnel-panel {
  margin-top: 18px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.ai-funnel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.ai-funnel-head h3 {
  font-size: clamp(1.45rem, 2vw, 2.2rem);
}

.ai-funnel-head > span {
  flex: 0 0 auto;
  padding: 7px 10px;
  color: var(--green-dark);
  background: var(--soft-green);
  border: 1px solid rgba(63, 111, 88, 0.18);
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 900;
}

.funnel-stage-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.funnel-stage-grid article {
  min-height: 130px;
  padding: 16px;
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.funnel-stage-grid span,
.funnel-stage-grid small,
.signal-list span,
.signal-list small {
  display: block;
  color: var(--muted);
  font-weight: 800;
}

.funnel-stage-grid strong {
  display: block;
  margin: 10px 0 8px;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2vw, 2.15rem);
}

.funnel-stage-grid small,
.signal-list small {
  font-size: 0.78rem;
  line-height: 1.45;
}

.funnel-insight-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 14px;
  margin-top: 16px;
}

.recommendation-list,
.signal-list {
  display: grid;
  gap: 9px;
  margin-top: 12px;
}

.campaign-attribution {
  margin-top: 16px;
}

.campaign-attribution-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.recommendation-list article,
.signal-list article,
.campaign-attribution-grid article,
.recommendation-list p,
.signal-list p,
.campaign-attribution-grid p {
  margin: 0;
  padding: 14px;
  color: var(--muted);
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  line-height: 1.55;
}

.signal-list article {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 12px;
  align-items: center;
}

.signal-list span {
  color: var(--ink);
  text-transform: capitalize;
}

.signal-list strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.signal-list small {
  grid-column: 1 / -1;
}

.campaign-attribution-grid span,
.campaign-attribution-grid strong,
.campaign-attribution-grid small {
  display: block;
}

.campaign-attribution-grid span {
  color: var(--green-dark);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.campaign-attribution-grid strong {
  margin: 8px 0;
  color: var(--ink);
  overflow-wrap: anywhere;
}

.campaign-attribution-grid small {
  font-weight: 800;
}

.owner-table {
  margin-top: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.owner-table-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.2fr;
  gap: 12px;
  padding: 18px 20px;
  border-top: 1px solid var(--line);
}

.owner-table-row:first-child {
  border-top: 0;
}

.owner-table-row span {
  color: var(--muted);
  font-weight: 750;
}

.owner-table-head {
  background: var(--soft-green);
}

.owner-table-head span {
  color: var(--ink);
}

.owner-work-grid,
.automation-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.automation-flow {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.automation-flow article {
  box-shadow: none;
}

.pro-grant-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(320px, 1fr);
  gap: 18px;
  align-items: start;
}

.upgrade-queue-panel {
  margin-top: 22px;
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.upgrade-queue-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.upgrade-queue-list article {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(260px, 1.4fr);
  gap: 16px;
  align-items: center;
  padding: 16px;
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.upgrade-queue-list span,
.upgrade-queue-list strong {
  display: block;
  color: var(--ink);
  font-weight: 900;
}

.upgrade-queue-list small,
.upgrade-queue-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-weight: 700;
}

.upgrade-queue-list strong {
  min-width: 46px;
  padding: 9px 11px;
  color: var(--paper);
  background: var(--green);
  border-radius: var(--radius);
  text-align: center;
}

.owner-ops-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.owner-ops-panel {
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.owner-ops-panel .ai-funnel-head {
  margin-bottom: 12px;
}

.owner-ops-panel .ai-funnel-head h3 {
  font-size: 1.25rem;
}

.owner-ops-list {
  display: grid;
  gap: 10px;
}

.owner-ops-list article {
  padding: 14px;
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.owner-ops-list strong,
.owner-ops-list span {
  display: block;
  overflow-wrap: anywhere;
}

.owner-ops-list strong {
  color: var(--ink);
  font-weight: 900;
}

.owner-ops-list span {
  margin-top: 5px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: capitalize;
}

.owner-ops-list p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.owner-ops-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.owner-ops-actions button {
  min-height: 34px;
  padding: 7px 10px;
  color: var(--green-dark);
  background: var(--soft-green);
  border: 1px solid rgba(63, 111, 88, 0.22);
  border-radius: var(--radius);
  font-weight: 900;
  cursor: pointer;
}

.owner-ops-actions button:hover {
  background: #e2eee7;
}

.turnstile-placeholder {
  padding: 12px 14px;
  color: var(--muted);
  background: #f5f2ea;
  border: 1px dashed #cfc7b6;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1.45;
}

.turnstile-placeholder[data-ready="true"] {
  color: var(--green-dark);
  background: var(--soft-green);
  border-style: solid;
  border-color: rgba(63, 111, 88, 0.2);
}

.pro-grant-form,
.pro-grant-policy article {
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.event-lead-review {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  gap: 16px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.event-lead-review p,
.event-lead-list span,
.event-lead-list small {
  color: var(--muted);
  line-height: 1.55;
}

.event-lead-list {
  display: grid;
  gap: 10px;
}

.event-lead-list .mini-list-summary {
  margin-bottom: 2px;
}

.event-lead-list article {
  display: grid;
  grid-template-columns: minmax(140px, 0.8fr) minmax(160px, 1.2fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.space-page-review .event-lead-list article {
  grid-template-columns: minmax(140px, 0.75fr) minmax(160px, 1fr) auto auto;
}

.event-lead-list strong {
  color: var(--ink);
}

.event-lead-list small {
  padding: 6px 8px;
  color: var(--green-dark);
  background: var(--soft-green);
  border-radius: var(--radius);
  font-weight: 900;
  text-align: center;
}

.pipeline-label-form {
  display: grid;
  gap: 10px;
}

.pipeline-label-form h3,
.pipeline-label-form p {
  margin: 0;
}

.pipeline-label-inputs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.pipeline-label-form button {
  min-height: 42px;
}

.pipeline-label-form p {
  color: var(--muted);
  font-weight: 750;
}

.pro-grant-form {
  display: grid;
  gap: 16px;
}

.pro-grant-policy {
  display: grid;
  gap: 12px;
}

.pro-grant-policy p {
  color: var(--muted);
  line-height: 1.65;
}

.automation-flow span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  color: var(--paper);
  background: var(--green);
  border-radius: 50%;
  font-weight: 900;
}

.product-visual {
  min-width: 0;
}

.app-window {
  display: grid;
  grid-template-columns: 190px 1fr;
  min-height: 510px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(38, 51, 45, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.app-sidebar {
  padding: 18px;
  background: #eef3ee;
  border-right: 1px solid var(--line);
  color: var(--ink);
}

.app-mark {
  display: flex;
  align-items: center;
  margin-bottom: 28px;
}

.app-mark img {
  display: block;
  width: 150px;
  height: auto;
}

.side-item {
  display: block;
  width: 100%;
  min-height: 38px;
  margin-bottom: 8px;
  padding: 8px 12px;
  color: var(--muted);
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius);
  text-align: left;
  cursor: default;
}

.side-item.active {
  color: var(--green-dark);
  background: var(--paper);
  border-color: #cfddd3;
}

.side-item.locked {
  border-color: #d9e2dc;
  opacity: 0.72;
}

.app-main {
  min-width: 0;
  padding: 24px;
}

.app-topbar,
.preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.app-kicker {
  margin: 0 0 5px;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.app-topbar h2 {
  font-size: clamp(1.4rem, 2vw, 2rem);
}

.company-pill {
  max-width: 220px;
  padding: 8px 12px;
  overflow: hidden;
  color: var(--green-dark);
  background: var(--soft-green);
  border: 1px solid #c8ddce;
  border-radius: var(--radius);
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.metric,
.stage,
.order-list article,
.price-card,
.feature-grid article,
.brand-showcase,
.builder-panel,
.builder-preview,
.space-page-preview,
.space-benefits article,
.contact-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.metric {
  padding: 16px;
}

.metric span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.metric strong {
  display: block;
  margin-top: 8px;
  font-size: 2rem;
  font-weight: 800;
}

.metric.premium {
  color: #2f5875;
  background: var(--soft-blue);
  border-color: #c9d9e3;
}

.pipeline-preview {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.stage {
  min-height: 98px;
  padding: 14px;
}

.stage span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.1;
  white-space: nowrap;
}

.stage b {
  display: block;
  margin-top: 15px;
  font-size: 2rem;
}

.stage.selected {
  color: var(--paper);
  background: var(--green);
  border-color: var(--green);
}

.stage.selected span {
  color: rgba(255, 255, 255, 0.78);
}

.order-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.order-list article {
  padding: 16px;
}

.product-visual .order-list article:nth-child(2) {
  display: none;
}

.order-list h3 {
  margin-top: 10px;
}

.order-list p {
  margin: 7px 0 0;
  color: var(--muted);
}

.status {
  display: inline-block;
  padding: 5px 8px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
}

.status.custom {
  color: #2e5844;
  background: var(--soft-green);
}

.status.market {
  color: #2f5875;
  background: var(--soft-blue);
}

.status.pro {
  color: var(--green-dark);
  background: var(--soft-green);
}

.road-stats {
  background: var(--paper);
}

.completion-snapshot {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.completion-snapshot article {
  display: grid;
  gap: 10px;
  padding: 16px;
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.completion-snapshot span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.completion-snapshot strong {
  color: var(--green-dark);
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.3rem);
  line-height: 1;
}

.completion-snapshot p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.road-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.road-stats-grid article {
  display: grid;
  gap: 10px;
  padding: 18px;
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.road-stats-grid span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.road-stats-grid strong {
  color: var(--green-dark);
  font-family: var(--font-display);
  font-size: 2.15rem;
  line-height: 1;
}

.road-stats-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.road-meter {
  height: 10px;
  overflow: hidden;
  background: #e7dfd1;
  border-radius: 999px;
}

.road-meter i {
  display: block;
  width: var(--progress);
  height: 100%;
  background: linear-gradient(90deg, var(--green), #8fae9b);
  border-radius: inherit;
}

.setup-board {
  background: var(--paper);
}

.owner-handoff {
  background: #fbfaf7;
}

.handoff-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.handoff-grid article {
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.handoff-grid h3,
.handoff-grid p {
  margin: 10px 0 0;
}

.handoff-grid p {
  color: var(--muted);
  line-height: 1.55;
}

.simple-setup-guide {
  background: var(--paper);
}

.simple-setup-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.simple-setup-grid article {
  display: grid;
  gap: 8px;
  padding: 18px;
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.simple-setup-grid span {
  color: var(--green-dark);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.simple-setup-grid h3,
.simple-setup-grid p {
  margin: 0;
}

.simple-setup-grid p {
  color: var(--muted);
  line-height: 1.5;
}

.setup-split {
  background: #fbfaf7;
}

.permission-setup {
  background: var(--canvas);
}

.stripe-decision {
  background: #fbfaf7;
}

.permission-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.stripe-decision-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.stripe-decision-grid article {
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.permission-grid article,
.permission-note-box {
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.permission-grid h3,
.permission-grid p,
.permission-grid strong,
.permission-note-box h3,
.permission-note-box p {
  margin: 10px 0 0;
}

.permission-grid strong {
  display: block;
  color: var(--green-dark);
}

.permission-note-box {
  margin-top: 14px;
  background: #fbfaf7;
}

.permission-note-box p {
  color: var(--muted);
  line-height: 1.55;
}

.setup-role-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.setup-role-grid article {
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.setup-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.setup-priority-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}

.setup-priority-strip article {
  display: grid;
  gap: 8px;
  padding: 14px;
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.setup-priority-strip span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--paper);
  background: var(--green);
  border-radius: 50%;
  font-weight: 900;
}

.setup-priority-strip strong {
  color: var(--green-dark);
  font-family: var(--font-display);
}

.setup-priority-strip p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.setup-checklist label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-height: 48px;
  padding: 13px 14px;
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  font-weight: 800;
  line-height: 1.35;
}

.setup-checklist input {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--green);
}

.setup-list {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.55;
}

.env-table-wrap {
  overflow-x: auto;
}

.env-table-wrap h2,
.env-table-wrap p {
  margin-top: 0;
}

.setup-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.setup-table th,
.setup-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.setup-table th {
  color: var(--green-dark);
  background: var(--soft-green);
}

.brand-kit,
.features {
  background: var(--paper);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 34px;
}

.brand-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1fr);
  gap: 20px;
  align-items: stretch;
}

.brand-showcase {
  display: grid;
  align-content: center;
  gap: 24px;
  padding: clamp(24px, 4vw, 44px);
  background: linear-gradient(135deg, var(--canvas), #fbfaf7);
}

.brand-showcase img {
  width: min(360px, 100%);
}

.brand-principles {
  display: grid;
  gap: 12px;
}

.brand-principles article {
  display: grid;
  grid-template-columns: 48px 1fr;
  column-gap: 16px;
  align-items: start;
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.brand-principles span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--green-dark);
  background: var(--soft-green);
  border-radius: 50%;
  font-weight: 900;
}

.brand-principles h3 {
  margin-bottom: 7px;
}

.brand-principles p {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.seller-paths {
  background: #fbfaf7;
}

.value-stats {
  background: linear-gradient(180deg, #fbfaf7, var(--canvas));
}

.seller-paths .section-heading p:not(.eyebrow),
.value-stats .section-heading p:not(.eyebrow),
.lead-planner .section-heading p:not(.eyebrow),
.seller-path-grid p,
.value-stats-grid p,
.value-proof p,
.planner-results p,
.planner-results li {
  color: var(--muted);
  line-height: 1.7;
}

.value-stats-grid,
.value-visual-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.value-stats-grid article,
.value-visual-card,
.value-proof {
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.value-stats-grid span,
.value-visual-card > span {
  display: block;
  color: var(--green-dark);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.value-stats-grid strong {
  display: block;
  margin: 12px 0 10px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 3.4rem);
}

.value-stats-grid p,
.value-visual-card p,
.value-proof p {
  margin-bottom: 0;
}

.value-visual-card {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 330px;
}

.value-visual-card h3 {
  font-size: clamp(1.15rem, 1.55vw, 1.55rem);
}

.stat-chart-card {
  background: linear-gradient(180deg, var(--paper), #fbfaf7);
}

.profit-card {
  background: linear-gradient(180deg, var(--paper), #fbfaf7);
}

.retention-lift {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) 42px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 142px;
}

.lift-input,
.lift-output {
  display: grid;
  align-content: center;
  min-height: 108px;
  padding: 16px;
  border: 1px solid rgba(63, 111, 88, 0.2);
  border-radius: var(--radius);
}

.lift-input {
  background: var(--soft-green);
}

.lift-output {
  color: var(--paper);
  background: var(--green);
}

.lift-input small,
.lift-output small {
  font-weight: 900;
}

.lift-input strong,
.lift-output strong {
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 4.6vw, 4rem);
  line-height: 1;
}

.lift-arrow {
  position: relative;
  height: 4px;
  background: var(--green);
  border-radius: 999px;
}

.lift-arrow::after {
  position: absolute;
  top: 50%;
  right: -1px;
  width: 13px;
  height: 13px;
  border-top: 4px solid var(--green);
  border-right: 4px solid var(--green);
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.roi-tile-chart {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  min-height: 142px;
}

.roi-tile-chart div {
  display: grid;
  align-content: center;
  min-height: 126px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.roi-tile-chart div:first-child {
  background: var(--soft-green);
}

.roi-tile-chart small,
.roi-tile-chart span {
  color: var(--muted);
  font-weight: 900;
}

.roi-tile-chart strong {
  margin: 10px 0 4px;
  color: var(--green-dark);
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 3.45rem);
  line-height: 1;
}

.crm-value-chart {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 142px;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.crm-donut {
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  background: conic-gradient(var(--green-dark) 0 32%, var(--green) 32% 58%, #9fb8a8 58% 78%, #c7d7ce 78% 100%);
  border-radius: 50%;
}

.crm-donut span {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  color: var(--green-dark);
  background: #fff;
  border-radius: 50%;
  font-weight: 900;
}

.crm-data-points {
  display: grid;
  gap: 7px;
}

.crm-data-points b {
  padding-left: 12px;
  border-left: 7px solid var(--green);
  color: var(--green-dark);
  font-size: 0.86rem;
  font-weight: 900;
}

.crm-data-points b:nth-child(2) {
  border-color: var(--green-dark);
}

.crm-data-points b:nth-child(3) {
  border-color: #9fb8a8;
}

.crm-data-points b:nth-child(4),
.crm-data-points b:nth-child(5) {
  border-color: #c7d7ce;
}

.value-proof {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.use-cases {
  background: var(--paper);
}

.usecase-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 1100px;
  margin: 0 auto 16px;
}

.usecase-metrics article,
.usecase-layout article {
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.usecase-metrics span {
  display: block;
  color: var(--green-dark);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.usecase-metrics strong {
  display: block;
  margin: 12px 0 8px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3.1rem);
}

.usecase-metrics p,
.usecase-layout p,
.usecase-layout li {
  color: var(--muted);
  line-height: 1.7;
}

.usecase-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 1100px;
  margin: 0 auto 16px;
}

.usecase-layout ul {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding-left: 20px;
}

.source-note {
  font-size: 0.84rem;
}

.source-note a {
  color: var(--green-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.seller-path-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.seller-path-grid article {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 310px;
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.seller-path-grid span,
.planner-results span {
  align-self: flex-start;
  padding: 6px 9px;
  color: var(--green-dark);
  background: var(--soft-green);
  border-radius: var(--radius);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.seller-path-grid p {
  margin: 0 0 auto;
}

.lead-planner {
  background: linear-gradient(180deg, var(--canvas), #efe9dc);
}

.lead-planner-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 0.72fr) minmax(320px, 0.88fr);
  gap: 18px;
  align-items: stretch;
}

.lead-planner .section-heading {
  margin-bottom: 0;
}

.planner-form,
.planner-results {
  display: grid;
  gap: 16px;
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.planner-results {
  align-content: start;
  background: #fbfaf7;
}

.planner-results ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 19px;
}

.swatch {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 150px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
}

.swatch span,
.swatch b {
  display: block;
}

.swatch b {
  margin-top: 6px;
  font-size: 0.8rem;
  opacity: 0.75;
}

.swatch.ink,
.swatch.green,
.swatch.blue {
  color: var(--paper);
}

.swatch.ink { background: var(--ink); }
.swatch.green { background: var(--green); }
.swatch.coral {
  color: var(--ink);
  background: var(--soft-coral);
  border-color: var(--coral);
}
.swatch.blue { background: var(--blue); }
.swatch.canvas { background: var(--canvas); }
.swatch.paper { background: var(--paper); }

.builder {
  background: linear-gradient(180deg, var(--canvas), #efe9dc);
  padding-bottom: clamp(34px, 5vw, 62px);
}

.builder-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  gap: 18px 24px;
  align-items: stretch;
  max-width: 1280px;
  margin: 0 auto;
}

.builder-copy {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.7fr);
  gap: 22px;
  align-items: end;
  max-width: none;
}

.builder-copy h2 {
  max-width: 720px;
  font-size: clamp(2rem, 3.5vw, 3.6rem);
}

.builder-copy p:not(.eyebrow) {
  max-width: 520px;
  margin: 0 0 4px;
}

.builder-panel,
.contact-form {
  display: grid;
  gap: 18px;
  padding: 22px;
}

.builder-panel,
.builder-preview {
  align-self: stretch;
  min-height: 0;
}

.form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.82fr);
  gap: 12px;
}

label,
legend {
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
}

input,
select {
  width: 100%;
  min-height: 44px;
  margin-top: 8px;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

input:focus,
select:focus {
  outline: 3px solid rgba(63, 111, 88, 0.22);
  border-color: var(--green);
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin-top: 10px;
}

.option-grid label,
.theme-picker label {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 9px 10px;
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 700;
}

.option-grid input,
.theme-picker input {
  width: auto;
  min-height: auto;
  margin: 0;
}

.theme-picker {
  display: grid;
  gap: 9px;
  margin-top: 10px;
}

.theme-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
}

.theme-dot.green { background: var(--green); }
.theme-dot.blue { background: var(--blue); }
.theme-dot.coral {
  background: var(--soft-coral);
  border: 1px solid var(--coral);
}

.locked-field {
  position: relative;
  opacity: 0.76;
}

.locked-field span {
  display: inline-block;
  margin-top: 8px;
  color: var(--green-dark);
  font-size: 0.78rem;
}

.form-note {
  min-height: 20px;
  margin: -6px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.setup-note {
  margin: 0;
  padding: 12px;
  color: var(--green-dark);
  background: var(--soft-green);
  border: 1px solid rgba(63, 111, 88, 0.2);
  border-radius: var(--radius);
  line-height: 1.55;
}

.setup-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.setup-steps span {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 8px;
  color: var(--green-dark);
  background: #fbfaf7;
  border: 1px solid rgba(63, 111, 88, 0.18);
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
}

.setup-steps b {
  display: inline-grid;
  place-items: center;
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  color: var(--paper);
  background: var(--green);
  border-radius: 50%;
  font-size: 0.72rem;
}

.optional-details {
  padding: 12px;
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.optional-details summary {
  color: var(--green-dark);
  font-size: 0.88rem;
  font-weight: 900;
  cursor: pointer;
}

.optional-details label {
  display: block;
  margin-top: 12px;
}

.builder-preview {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px;
}

.preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.preview-header span {
  color: var(--green-dark);
  font-weight: 900;
}

.preview-header strong {
  text-align: right;
}

.preview-limits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.preview-limits div {
  min-height: 72px;
  padding: 12px;
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.preview-limits b,
.preview-limits span {
  display: block;
}

.preview-limits b {
  font-size: 1.35rem;
}

.preview-limits span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.channel-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.channel-list span {
  padding: 8px 10px;
  color: var(--blue);
  background: var(--soft-blue);
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 800;
}

.locked-preview {
  padding: 12px;
  background: var(--soft-blue);
  border: 1px solid #c9d9e3;
  border-radius: var(--radius);
}

.locked-preview span {
  display: inline-block;
  margin-bottom: 8px;
  padding: 5px 8px;
  color: var(--paper);
  background: var(--green-dark);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
}

.locked-preview p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
}

.spacesimply {
  background: #fbfaf7;
  padding-top: clamp(34px, 5vw, 62px);
}

.spacesimply-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(340px, 1fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: center;
}

.spacesimply .section-heading {
  margin-bottom: 0;
}

.spacesimply .section-heading p:not(.eyebrow),
.space-page-card p,
.space-benefits p {
  color: var(--muted);
  line-height: 1.7;
}

.space-page-preview {
  overflow: hidden;
  box-shadow: var(--shadow);
}

.space-browser-bar {
  display: grid;
  grid-template-columns: 10px 10px 10px 1fr;
  gap: 8px;
  align-items: center;
  padding: 12px 14px;
  background: #eef3ee;
  border-bottom: 1px solid var(--line);
}

.space-browser-bar span {
  width: 10px;
  height: 10px;
  background: var(--soft-coral);
  border: 1px solid var(--coral);
  border-radius: 50%;
}

.space-browser-bar span:nth-child(2) {
  background: #d9bd78;
}

.space-browser-bar span:nth-child(3) {
  background: var(--green);
}

.space-browser-bar strong {
  overflow: hidden;
  color: var(--muted);
  font-size: 0.72rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.space-page-card {
  padding: clamp(22px, 4vw, 38px);
}

.space-page-card h3 {
  font-size: clamp(1.85rem, 3vw, 3rem);
}

.space-form {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.space-form span,
.space-form button {
  min-height: 44px;
  padding: 12px 14px;
  border-radius: var(--radius);
  font-weight: 800;
}

.space-form span {
  color: var(--muted);
  background: #fbfaf7;
  border: 1px solid var(--line);
}

.space-form button {
  color: var(--paper);
  background: var(--green);
  border: 0;
}

.space-benefits {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.space-benefits article {
  padding: 18px;
}

.space-benefits p {
  margin-bottom: 0;
}

.community {
  background: linear-gradient(180deg, #fbfaf7, var(--canvas));
}

.community-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(360px, 1.15fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: start;
}

.community .section-heading {
  margin-bottom: 0;
}

.community .section-heading p:not(.eyebrow),
.community-preview p {
  color: var(--muted);
  line-height: 1.7;
}

.community-preview {
  display: grid;
  gap: 12px;
}

.community-preview article {
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.community-preview span {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 9px;
  color: var(--green-dark);
  background: var(--soft-green);
  border-radius: var(--radius);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.plugins {
  background: var(--ink);
  color: var(--paper);
}

.plugins .eyebrow {
  color: #a9c9b8;
}

.plugins .section-heading {
  margin-bottom: 0;
}

.plugins .section-heading p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.02rem;
  line-height: 1.7;
}

.plugins-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
}

.connector-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.connector-grid div {
  min-height: 118px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.connector-grid span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  color: var(--ink);
  background: var(--canvas);
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 900;
}

.connector-grid .connector-icon {
  color: var(--green-dark);
  background: #f4f8f5;
  border: 1px solid rgba(255, 255, 255, 0.36);
}

.connector-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.connector-grid b,
.connector-grid small {
  display: block;
}

.connector-grid b {
  font-size: 0.98rem;
}

.connector-grid small {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.78rem;
  font-weight: 700;
}

.referral-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
}

.referral-card,
.origin-layout {
  background: var(--canvas);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.referrals {
  background: linear-gradient(135deg, var(--canvas), #efe9dc);
}

.referral-card {
  padding: 24px;
}

.referral-card p,
.origin-layout p {
  color: var(--muted);
  line-height: 1.7;
}

.referral-card p {
  margin: 0 0 18px;
}

.referral-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  line-height: 1.55;
}

.trust-security {
  background: #fbfaf7;
}

.trust-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
}

.trust-security .section-heading {
  margin-bottom: 0;
}

.trust-security .section-heading p:not(.eyebrow),
.trust-grid p {
  color: var(--muted);
  line-height: 1.7;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.trust-grid article {
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.trust-grid p {
  margin-bottom: 0;
}

.origin {
  background: var(--paper);
}

.origin-layout {
  max-width: 980px;
  padding: clamp(24px, 5vw, 48px);
}

.origin-layout p:last-child {
  max-width: 820px;
}

.feature-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1180px;
  margin: 0 auto;
}

.feature-story {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(20px, 4vw, 44px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto 18px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.feature-story h3 {
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.feature-story p {
  max-width: 560px;
  color: var(--muted);
  line-height: 1.65;
}

.feature-story img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-grid article,
.price-card {
  padding: 22px;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  color: var(--green-dark);
  background: var(--soft-green);
  border: 1px solid #cfddd3;
  border-radius: var(--radius);
}

.feature-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pricing {
  background: var(--canvas);
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.price-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 440px;
}

.featured-price {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
}

.price-label {
  align-self: flex-start;
  padding: 6px 9px;
  color: var(--ink);
  background: var(--canvas);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 900;
}

.price {
  margin: 0;
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
}

.price-card ul {
  display: grid;
  gap: 11px;
  margin: 0 0 auto;
  padding-left: 19px;
  line-height: 1.5;
}

.pricing-note {
  max-width: 780px;
  margin: 18px auto 0;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.6;
  text-align: center;
}

.featured-price .button.secondary {
  color: var(--ink);
}

.contact {
  background: var(--paper);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(24px, 6vw, 80px);
  align-items: start;
}

.contact-form {
  background: var(--canvas);
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--green-dark);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.45;
}

.workspace-alert {
  max-width: 1180px;
  margin: 0 auto 16px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf0;
  color: var(--ink);
  font-weight: 800;
}

.workspace-alert.success {
  border-color: rgba(63, 111, 88, 0.35);
  background: #f0f7f3;
  color: #284d3c;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 68px);
  color: var(--muted);
  background: var(--ink);
}

.site-footer span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.82);
}

.page-hero {
  background:
    linear-gradient(135deg, rgba(63, 111, 88, 0.12), rgba(217, 108, 74, 0.08) 52%, rgba(62, 111, 143, 0.1)),
    var(--canvas);
  padding-bottom: clamp(42px, 6vw, 76px);
}

.page-hero h1 {
  max-width: 940px;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.expo-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(107, 146, 127, 0.16), rgba(214, 162, 143, 0.08) 54%, rgba(95, 138, 163, 0.12)),
    var(--canvas);
}

.expo-summary,
.expo-tier-grid article,
.expo-agenda article {
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.expo-summary {
  box-shadow: var(--shadow);
}

.expo-summary h2 {
  margin-top: 16px;
  font-size: clamp(1.7rem, 2.7vw, 3rem);
}

.expo-summary p,
.expo-tier-grid p,
.expo-agenda p,
.expo-attendee-layout p {
  color: var(--muted);
  line-height: 1.7;
}

.expo-section {
  background: #fbfaf7;
  border-top: 1px solid rgba(216, 210, 196, 0.72);
}

.expo-tier-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.expo-tier-grid article {
  min-height: 260px;
}

.expo-tier-grid .price {
  font-size: 2.2rem;
}

.expo-agenda {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.expo-agenda span {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 9px;
  color: var(--green-dark);
  background: var(--soft-green);
  border-radius: var(--radius);
  font-weight: 900;
}

.expo-attendee-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
}

.content-page {
  background: #fbfaf7;
}

.content-grid,
.faq-list,
.policy-stack {
  display: grid;
  gap: 14px;
  max-width: 1100px;
  margin: 0 auto;
}

.content-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.content-grid article,
.faq-list article,
.policy-stack article,
.support-search {
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.content-grid p,
.content-grid li,
.faq-list p,
.policy-stack p {
  color: var(--muted);
  line-height: 1.7;
}

.content-grid ul {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding-left: 20px;
}

.support-search {
  max-width: 760px;
  margin: 0 auto 16px;
}

.empty-help {
  max-width: 760px;
  margin: 18px auto 0;
  padding: 16px 18px;
  color: var(--muted);
  background: var(--soft-blue);
  border: 1px solid #cbdce6;
  border-radius: var(--radius);
  font-weight: 800;
}

.support-ticket-panel {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 18px;
  max-width: 1100px;
  margin: 22px auto 0;
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.support-ticket-panel p {
  color: var(--muted);
  line-height: 1.7;
}

.ticket-form {
  display: grid;
  gap: 12px;
}

.ticket-form textarea {
  resize: vertical;
}

.crm-shell {
  display: grid;
  grid-template-columns: 232px minmax(0, 1fr);
  min-height: 100vh;
  background: #f3eee4;
}

.crm-sidebar {
  position: sticky;
  top: 0;
  z-index: 12;
  align-self: start;
  height: 100vh;
  overflow-y: auto;
  scrollbar-gutter: stable;
  padding: 18px;
  color: var(--paper);
  background: var(--ink);
}

.crm-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  margin-bottom: 20px;
  padding: 6px 8px;
  background: var(--paper);
  border-radius: 8px;
}

.crm-logo img {
  display: block;
  width: 176px;
  max-width: 100%;
  height: auto;
}

.crm-sidebar nav {
  display: grid;
  gap: 6px;
}

.crm-sidebar nav a {
  display: flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.78);
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 800;
}

.crm-sidebar nav a.active,
.crm-sidebar nav a:hover {
  color: var(--ink);
  background: var(--canvas);
}

.crm-sidebar nav a.nav-secondary {
  min-height: 32px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.82rem;
  font-weight: 700;
}

.crm-sidebar nav a.nav-secondary.active,
.crm-sidebar nav a.nav-secondary:hover {
  color: var(--ink);
}
.crm-main {
  min-width: 0;
  padding: clamp(18px, 4vw, 42px);
}

.crm-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.crm-header h1 {
  font-size: clamp(2rem, 3.4vw, 3.4rem);
}

.crm-account-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
}

.crm-account-pill {
  max-width: 260px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 10px 14px;
  color: var(--ink);
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 700;
}

.crm-sign-out,
.admin-account-grid button {
  border: 1px solid var(--line);
  background: #fffdf8;
  color: var(--ink);
  border-radius: 8px;
  padding: 10px 14px;
  font-weight: 800;
  cursor: pointer;
}

.crm-sign-out:hover,
.admin-account-grid button:hover:not(:disabled) {
  border-color: var(--green);
}

.admin-account-panel {
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  padding: 16px;
}

.admin-account-panel summary {
  cursor: pointer;
  font-weight: 800;
}

.admin-account-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.admin-account-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: #ffffff;
}

.admin-account-grid label {
  display: grid;
  gap: 8px;
  margin: 12px 0;
  font-weight: 800;
}

.admin-account-grid input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 12px;
  font: inherit;
}

.danger-zone {
  border-color: #e4c6bb !important;
}

.danger-zone h3 {
  color: #7f2f1d;
}

.admin-account-grid button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}
.crm-quick-nav {
  position: sticky;
  top: 0;
  z-index: 11;
  display: flex;
  gap: 8px;
  margin: -6px 0 18px;
  padding: 8px 0 10px;
  overflow-x: auto;
  background: #f3eee4;
  border-bottom: 1px solid rgba(216, 210, 196, 0.88);
  scrollbar-width: thin;
}

.crm-quick-nav a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 11px;
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(63, 111, 88, 0.18);
  border-radius: var(--radius);
  font-size: 0.84rem;
  font-weight: 900;
  white-space: nowrap;
}

.crm-quick-nav a:hover {
  color: var(--paper);
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.crm-quick-nav a.active {
  color: var(--paper);
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.crm-floating-menu {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 30;
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  color: var(--paper);
  background: var(--green-dark);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: var(--radius);
  box-shadow: 0 14px 30px rgba(38, 51, 45, 0.18);
  font-weight: 900;
}

.crm-main section[id],
.crm-main article[id],
.crm-main details[id] {
  scroll-margin-top: 74px;
}

.crm-sectioned .crm-main > section,
.crm-sectioned .crm-main > details {
  display: none;
}

.crm-sectioned .crm-main > section.is-visible,
.crm-sectioned .crm-main > details.is-visible {
  display: grid;
}

.crm-sectioned .crm-main > section.crm-dashboard.is-visible,
.crm-sectioned .crm-main > section.crm-panel.is-visible,
.crm-sectioned .crm-main > section.crm-grid-two.is-visible,
.crm-sectioned .crm-main > section.crm-board.is-visible {
  display: grid;
}

.crm-plan-pill {
  padding: 10px 14px;
  color: var(--green-dark);
  background: var(--soft-green);
  border: 1px solid #c8ddce;
  border-radius: var(--radius);
  font-weight: 900;
  text-transform: capitalize;
}

.crm-dashboard,
.crm-panel,
.crm-board article,
.crm-metrics article {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.crm-dashboard,
.crm-panel {
  padding: 22px;
}

.crm-dashboard {
  border-color: rgba(63, 111, 88, 0.28);
  box-shadow: 0 18px 42px rgba(38, 51, 45, 0.08);
}

.renewal-reminder {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 14px;
  padding: 16px;
  background: #eef5f0;
  border: 1px solid rgba(63, 111, 88, 0.18);
  border-radius: var(--radius);
}

.renewal-reminder h3,
.renewal-reminder p {
  margin: 6px 0 0;
}

.renewal-reminder p {
  color: var(--muted);
  line-height: 1.5;
}

.renewal-reminder a {
  flex: 0 0 auto;
  padding: 10px 13px;
  color: var(--paper);
  background: var(--green-dark);
  border-radius: var(--radius);
  font-weight: 900;
  text-decoration: none;
}

.dashboard-recent-work {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(0, 1.45fr);
  gap: 14px;
  margin-top: 14px;
  padding: 14px;
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.dashboard-recent-work[hidden] {
  display: none;
}

.dashboard-recent-intro {
  display: grid;
  align-content: center;
  gap: 4px;
}

.dashboard-recent-intro span,
.dashboard-recent-list button span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.dashboard-recent-intro strong {
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.25;
}

.dashboard-recent-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.dashboard-recent-list button {
  display: grid;
  gap: 6px;
  min-height: 72px;
  padding: 12px;
  text-align: left;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}

.dashboard-recent-list button:hover,
.dashboard-recent-list button:focus-visible {
  border-color: rgba(63, 111, 88, 0.5);
  box-shadow: 0 10px 24px rgba(38, 51, 45, 0.08);
}

.dashboard-recent-list button strong {
  overflow: hidden;
  font-size: 0.95rem;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.habit-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 16px;
  margin-top: 14px;
  padding: 16px;
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.habit-panel h3,
.habit-panel p {
  margin: 6px 0 0;
}

.habit-panel p {
  color: var(--muted);
  line-height: 1.5;
}

.habit-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.habit-actions a {
  display: grid;
  gap: 8px;
  min-height: 88px;
  padding: 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
}

.habit-actions span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--paper);
  background: var(--green);
  border-radius: 999px;
}

.smart-upgrade-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 14px;
  padding: 16px;
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.smart-upgrade-panel:empty {
  display: none;
}

.smart-upgrade-panel h3,
.smart-upgrade-panel p {
  margin: 8px 0 0;
}

.smart-upgrade-panel p {
  color: var(--muted);
  line-height: 1.55;
}

.smart-upgrade-panel a {
  flex: 0 0 auto;
  padding: 10px 12px;
  color: var(--paper);
  background: var(--green-dark);
  border-radius: 8px;
  font-weight: 900;
}

.crm-section-heading {
  margin-bottom: 18px;
}

.crm-section-heading h2 {
  font-size: clamp(1.45rem, 2.3vw, 2.3rem);
}

.crm-section-heading p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.crm-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.crm-metrics article {
  min-height: 96px;
  padding: 16px;
}

.crm-metrics span {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.crm-metrics strong {
  display: block;
  margin-top: 16px;
  font-size: 1.18rem;
  line-height: 1.2;
}

.locked-card {
  color: #2f5875;
  background: var(--soft-blue) !important;
  border-color: #c9d9e3 !important;
}

.record-workbench {
  margin-top: 18px;
}

.record-builder-grid,
.record-live-preview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.record-mini-form,
.record-live-preview article {
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
}

.record-mini-form {
  display: grid;
  gap: 12px;
}

.compact-work-form {
  margin-bottom: 12px;
}

.simple-list {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.simple-list div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 3px;
  padding: 12px 14px;
  background: #eef5f0;
  border: 1px solid rgba(63, 111, 88, 0.18);
  border-radius: var(--radius);
}

.simple-list strong {
  color: var(--ink);
}

.simple-list span {
  grid-column: 1;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.35;
}

.simple-list button {
  grid-row: 1 / span 2;
  grid-column: 2;
  align-self: center;
  min-height: 34px;
  padding: 0 12px;
  color: var(--green);
  background: #fff;
  border: 1px solid rgba(63, 111, 88, 0.28);
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
}

.simple-list button:hover,
.simple-list button:focus-visible {
  background: var(--soft-green);
}

.plugin-request-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) auto;
  gap: 10px;
  align-items: end;
  margin: 14px 0;
  padding: 14px;
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.plugin-request-form button {
  min-height: 46px;
  color: var(--paper);
  background: var(--green-dark);
  border: 0;
  border-radius: var(--radius);
  font-weight: 900;
  cursor: pointer;
}

.plugin-request-form .form-status {
  grid-column: 1 / -1;
  margin: 0;
}

.assistant-draft-form {
  display: grid;
  gap: 12px;
  margin-top: 14px;
  padding: 14px;
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.assistant-draft-form button {
  min-height: 44px;
  color: var(--paper);
  background: var(--green-dark);
  border: 0;
  border-radius: var(--radius);
  font-weight: 900;
  cursor: pointer;
}

.assistant-draft-result {
  color: var(--muted);
  line-height: 1.55;
}

.assistant-draft-result p {
  margin: 0;
}

.assistant-draft-result small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.record-mini-form h3,
.record-live-preview h3 {
  font-size: 1.04rem;
}

.record-mini-form button {
  min-height: 42px;
  color: var(--paper);
  background: var(--green-dark);
  border: 0;
  border-radius: var(--radius);
  font-weight: 900;
  cursor: pointer;
}

.record-live-preview {
  margin-top: 12px;
}

.record-live-preview article {
  border-color: rgba(63, 111, 88, 0.2);
}

.record-live-preview article {
  cursor: pointer;
}

.record-live-preview article:focus-within,
.record-live-preview article:hover {
  border-color: rgba(63, 111, 88, 0.45);
  box-shadow: 0 10px 22px rgba(38, 51, 45, 0.08);
}

.record-live-preview p,
.record-live-preview small {
  color: var(--muted);
}

.record-live-preview small {
  display: block;
  margin-top: 8px;
  line-height: 1.45;
}

.record-card-button {
  display: block;
  width: 100%;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
}

.record-detail-drawer {
  margin-top: 12px;
  padding: 16px;
  background: #eef5f0;
  border: 1px solid rgba(63, 111, 88, 0.18);
  border-radius: var(--radius);
}

.record-detail-drawer h3,
.record-detail-drawer p {
  margin: 8px 0 0;
}

.record-detail-drawer p,
.record-detail-drawer li {
  color: var(--muted);
  line-height: 1.55;
}

.record-detail-drawer ul {
  display: grid;
  gap: 6px;
  margin: 12px 0 0;
  padding-left: 18px;
}

.record-detail-form {
  display: grid;
  gap: 12px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(63, 111, 88, 0.18);
}

.record-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.record-detail-grid.subtle-detail-grid {
  padding: 12px;
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(63, 111, 88, 0.14);
  border-radius: 8px;
}

.record-detail-form label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-weight: 800;
}

.record-detail-form input,
.record-detail-form select,
.record-detail-form textarea {
  min-height: 44px;
  padding: 10px 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.record-detail-form textarea {
  resize: vertical;
  line-height: 1.45;
}

.record-detail-form button {
  justify-self: start;
  min-height: 42px;
  padding: 0 18px;
  color: #fff;
  background: var(--green);
  border: 0;
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
}

.record-detail-form .form-status {
  margin: 0;
  color: var(--muted);
}

.saved-records-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  gap: 16px;
  margin-top: 14px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.saved-records-panel h3,
.saved-records-panel p {
  margin: 8px 0 0;
}

.saved-records-panel p {
  color: var(--muted);
  line-height: 1.55;
}

.saved-record-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.saved-record-list button {
  min-height: 104px;
  padding: 12px;
  color: var(--ink);
  text-align: left;
  background: #fbfaf6;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}

.saved-record-list button:hover,
.saved-record-list button:focus-visible {
  border-color: rgba(63, 111, 88, 0.45);
  box-shadow: 0 10px 22px rgba(18, 28, 23, 0.08);
}

.saved-record-list span,
.saved-record-list small {
  display: block;
  color: var(--muted);
  font-weight: 800;
}

.saved-record-list strong {
  display: block;
  margin: 8px 0;
  font-size: 1rem;
  line-height: 1.25;
}

.upgrade-panel {
  align-items: center;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  margin-bottom: 22px;
  padding: 20px;
  background: var(--soft-green);
  border: 1px solid rgba(63, 111, 88, 0.22);
  border-radius: var(--radius);
}

.upgrade-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  max-width: 520px;
}

.upgrade-actions .button.secondary {
  background: transparent;
  color: var(--green-dark);
  border-color: transparent;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.upgrade-panel h2 {
  font-size: clamp(1.4rem, 2vw, 2rem);
}

.upgrade-panel p {
  margin: 8px 0 0;
  color: var(--muted);
}

.upgrade-panel .form-status {
  grid-column: 1 / -1;
  margin: 0;
}

.sso-options {
  display: grid;
  gap: 10px;
}

.sso-options button {
  min-height: 46px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 900;
  cursor: pointer;
}

.sso-options button:hover {
  border-color: rgba(63, 111, 88, 0.34);
}

.login-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 900;
}

.login-divider::before,
.login-divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: var(--line);
}

.quiet-card {
  color: var(--muted);
  background: #fbfaf7 !important;
  border-color: rgba(216, 210, 196, 0.82) !important;
}

.quiet-pro,
.locked-card {
  opacity: 0.82;
}

.onboarding-panel {
  margin-top: 18px;
  border-color: rgba(63, 111, 88, 0.24);
}

.onboarding-intro {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.onboarding-intro .crm-section-heading {
  max-width: 760px;
  margin-bottom: 0;
}

.role-switch {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(108px, 1fr));
  gap: 4px;
  padding: 4px;
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.role-switch button {
  min-height: 38px;
  padding: 8px 12px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 6px;
  font-weight: 900;
  cursor: pointer;
}

.role-switch button.active {
  color: var(--paper);
  background: var(--green-dark);
}

.onboarding-layout {
  display: grid;
  grid-template-columns: minmax(210px, 0.64fr) minmax(340px, 1.32fr) minmax(220px, 0.72fr);
  gap: 12px;
  margin-top: 18px;
}

.onboarding-progress,
.first-action-card,
.onboarding-step {
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.first-action-card {
  border-color: rgba(63, 111, 88, 0.22);
  box-shadow: inset 0 0 0 1px rgba(63, 111, 88, 0.06);
}

.onboarding-progress,
.first-action-card {
  padding: 14px;
}

.onboarding-progress {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-content: start;
  align-items: center;
  gap: 12px;
}

.progress-ring {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--green-dark);
  background: var(--soft-green);
  border: 1px solid #c8ddce;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 900;
}

.onboarding-progress p,
.first-action-card p,
.onboarding-step p {
  color: var(--muted);
  line-height: 1.55;
}

.onboarding-progress p,
.onboarding-step p {
  margin: 6px 0 0;
}

.progress-track {
  grid-column: 1 / -1;
  height: 9px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.progress-track span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--green);
  border-radius: inherit;
  transition: width 180ms ease;
}

.progress-caption {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.84rem;
  font-weight: 900;
}

.onboarding-checklist {
  display: grid;
  gap: 10px;
}

.onboarding-step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 10px;
  align-items: start;
  min-height: 82px;
  padding: 10px;
}

.onboarding-step button {
  min-width: 78px;
  min-height: 34px;
  padding: 8px 10px;
  color: var(--green-dark);
  background: var(--soft-green);
  border: 1px solid #c8ddce;
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 900;
  cursor: pointer;
}

.onboarding-step.complete button {
  color: var(--paper);
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.onboarding-step a {
  color: var(--ink);
  font-weight: 900;
}

.onboarding-step strong {
  max-width: 96px;
  padding: 6px 8px;
  color: var(--green-dark);
  background: var(--soft-green);
  border-radius: 999px;
  font-size: 0.72rem;
  text-align: center;
}

.first-action-card {
  display: grid;
  align-content: start;
  gap: 12px;
}

.first-action-card p {
  margin: 0;
}

.first-action-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 12px;
  color: var(--paper);
  background: var(--green-dark);
  border-radius: var(--radius);
  font-weight: 900;
}

.permission-note {
  padding: 12px;
  color: var(--muted);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.55;
}

.crm-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.crm-board article {
  min-height: 138px;
  padding: 16px;
}

.crm-board h3 {
  margin-bottom: 14px;
}

.empty-state {
  min-height: 72px;
  padding: 14px;
  color: var(--muted);
  background: #fbfaf7;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  line-height: 1.5;
}

.inline-empty-state {
  display: grid;
  gap: 8px;
  min-height: 84px;
  padding: 14px;
  color: var(--muted);
  background: #fbfaf7;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  line-height: 1.5;
}

.inline-empty-state strong {
  color: var(--green-dark);
  font-weight: 900;
}

.inline-empty-state a {
  justify-self: start;
  color: var(--green-dark);
  font-weight: 900;
}

.crm-grid-two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.crm-workline {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
  background: var(--soft-green);
  border-color: rgba(63, 111, 88, 0.2);
}

.crm-workline p {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.7;
}

.workline-steps {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 8px;
}

.workline-steps span {
  padding: 9px 10px;
  color: var(--green-dark);
  background: var(--soft-green);
  border: 1px solid #c8ddce;
  border-radius: var(--radius);
  font-weight: 900;
  white-space: nowrap;
}

.module-map {
  margin-top: 18px;
}

.module-map-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.module-map-grid a {
  display: grid;
  gap: 8px;
  min-height: 84px;
  padding: 14px;
  color: var(--ink);
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.module-map-grid span {
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.module-map-grid strong {
  align-self: end;
  font-size: 0.95rem;
  line-height: 1.25;
}

.pro-preview-group {
  scroll-margin-top: 18px;
}

.pro-preview-group,
#growth,
#trust-controls {
  opacity: 0.88;
}

.crm-later {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(216, 210, 196, 0.86);
}

.crm-later summary {
  display: grid;
  grid-template-columns: minmax(0, 0.34fr) minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 58px;
  padding: 14px 16px;
  color: var(--ink);
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}

.crm-later summary::marker {
  color: var(--green-dark);
}

.crm-later summary span {
  color: var(--green-dark);
  font-weight: 900;
}

.crm-later summary strong {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.35;
}

.crm-later > .crm-grid-two,
.crm-later > .crm-panel {
  margin-top: 18px;
}

.migration-workflow {
  display: grid;
  gap: 18px;
  margin-top: 18px;
  border-color: rgba(63, 111, 88, 0.28);
}

.migration-pilot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.migration-pilot-grid article {
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 14px;
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.migration-pilot-grid span {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--paper);
  background: var(--green-dark);
  border-radius: 50%;
  font-weight: 900;
}

.migration-pilot-grid h3,
.migration-pilot-grid p {
  margin: 0;
}

.migration-pilot-grid p {
  color: var(--muted);
  line-height: 1.45;
}

.quick-capture {
  margin-top: 18px;
  border-color: rgba(63, 111, 88, 0.3);
  box-shadow: 0 18px 42px rgba(38, 51, 45, 0.08);
}

.quick-capture-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.28fr) auto;
  gap: 12px;
  align-items: end;
}

.quick-capture-form button {
  min-height: 52px;
  padding: 12px 16px;
  color: var(--paper);
  background: var(--green-dark);
  border: 0;
  border-radius: var(--radius);
  font-weight: 900;
}

.quick-capture-result {
  margin-top: 12px;
  padding: 12px;
  color: var(--muted);
  background: var(--soft-green);
  border: 1px solid #c8ddce;
  border-radius: var(--radius);
  font-weight: 800;
}

.quick-capture-result strong,
.quick-capture-result span {
  display: block;
}

.capture-review-list {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.capture-review-card {
  padding: 14px;
  background: var(--paper);
  border: 1px solid rgba(63, 111, 88, 0.18);
  border-radius: var(--radius);
}

.capture-review-card.quiet {
  background: #fbfaf7;
  border-color: var(--line);
}

.capture-review-card h3 {
  margin-top: 9px;
  font-size: 1rem;
}

.capture-review-card p {
  margin: 7px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.review-list {
  display: grid;
  gap: 12px;
}

.mini-list-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.mini-list-summary span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 10px;
  color: var(--green-dark);
  background: var(--soft-green);
  border: 1px solid #c8ddce;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 800;
}

.mini-list-summary strong {
  margin-right: 5px;
  color: var(--ink);
}

.review-item,
.support-preview-card {
  padding: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.review-item p,
.support-preview-card p {
  color: var(--muted);
  line-height: 1.6;
}

.review-item-heading,
.review-bulk-actions,
.review-select {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.review-item-heading {
  justify-content: space-between;
}

.review-bulk-actions {
  justify-content: space-between;
  padding: 12px;
  background: var(--canvas);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.review-bulk-actions label,
.review-select {
  color: var(--green-dark);
  font-size: 0.88rem;
  font-weight: 900;
}

.review-bulk-actions small {
  color: var(--muted);
  font-weight: 800;
}

.review-duplicate-warning,
.review-validation-warning {
  display: grid;
  gap: 4px;
  margin-top: 10px;
  padding: 10px 12px;
  color: #60450c;
  background: #fff6d6;
  border: 1px solid #ead180;
  border-radius: var(--radius);
}

.review-duplicate-warning strong,
.review-validation-warning strong {
  font-size: 0.86rem;
}

.review-duplicate-warning span,
.review-validation-warning span {
  color: #60450c;
  font-size: 0.9rem;
  line-height: 1.45;
}

.review-edit-form {
  display: grid;
  gap: 8px;
  margin-top: 12px;
  padding: 12px;
  background: var(--canvas);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.review-edit-form label {
  display: grid;
  gap: 6px;
  color: var(--green-dark);
  font-size: 0.88rem;
  font-weight: 900;
}

.review-edit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.review-edit-grid p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
}

.review-edit-form input,
.review-edit-form textarea {
  width: 100%;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
}

.review-edit-form input {
  min-height: 38px;
  padding: 8px 10px;
}

.review-edit-form textarea {
  min-height: 88px;
  padding: 8px 10px;
  resize: vertical;
  font: 0.88rem/1.45 ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
}

.review-edit-form small {
  color: var(--muted);
  font-weight: 800;
}

.import-warning-list {
  display: grid;
  gap: 4px;
  margin-top: 8px;
  padding: 8px 10px;
  color: #60450c;
  background: #fff6d6;
  border: 1px solid #ead180;
  border-radius: var(--radius);
}

.import-warning-list span {
  display: block;
  color: #60450c;
  font-size: 0.88rem;
  line-height: 1.4;
}

.review-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.review-actions button {
  min-height: 36px;
  padding: 8px 11px;
  color: var(--ink);
  background: var(--canvas);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 900;
}

.support-preview-grid,
.settings-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.settings-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.settings-grid label span {
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 900;
}

.team-settings-panel {
  display: grid;
  gap: 14px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(216, 210, 196, 0.86);
}

.team-settings-panel p {
  color: var(--muted);
  line-height: 1.55;
}

.marketplace-settings-panel {
  display: grid;
  gap: 14px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(216, 210, 196, 0.86);
}

.marketplace-settings-panel p {
  color: var(--muted);
  line-height: 1.55;
}

.trust-settings-panel {
  display: grid;
  gap: 14px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(216, 210, 196, 0.86);
}

.trust-settings-panel p {
  color: var(--muted);
  line-height: 1.55;
}

.phone-verify-form {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  gap: 12px;
  align-items: end;
}

.phone-verify-form label {
  display: grid;
  gap: 6px;
  font-weight: 900;
}

.phone-verify-form input {
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.phone-verify-form button {
  min-height: 44px;
  padding: 0 16px;
  color: #fff;
  background: var(--green);
  border: 0;
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
}

.phone-verify-form .form-status {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
}

.trust-check-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.trust-check-grid article {
  padding: 14px;
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.trust-check-grid span {
  display: block;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.trust-check-grid strong {
  display: block;
  margin-top: 7px;
}

.trust-check-grid p {
  margin-bottom: 0;
}

.offline-export-panel {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(216, 210, 196, 0.86);
}

.offline-export-panel p {
  color: var(--muted);
  line-height: 1.55;
}

.export-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.export-trust-grid article {
  padding: 14px;
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.export-trust-grid span,
.export-trust-grid strong {
  display: block;
}

.export-trust-grid span {
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.export-trust-grid strong {
  margin-top: 7px;
  color: var(--ink);
  line-height: 1.35;
}

.offline-export-panel button {
  justify-self: start;
  min-height: 40px;
  padding: 8px 13px;
  color: var(--paper);
  background: var(--green-dark);
  border: 0;
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
}

.marketplace-connection-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.marketplace-connection-grid article {
  padding: 14px;
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.marketplace-connection-grid span,
.marketplace-connection-grid strong {
  display: block;
  color: var(--ink);
}

.marketplace-connection-grid span {
  font-weight: 900;
}

.marketplace-connection-grid strong {
  margin-top: 8px;
  color: var(--green-dark);
  font-size: 0.82rem;
  text-transform: capitalize;
}

.marketplace-connection-grid button {
  margin-top: 10px;
  min-height: 36px;
  padding: 7px 11px;
  color: var(--paper);
  background: var(--green-dark);
  border: 0;
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
}

.team-invite-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(160px, 0.32fr) auto;
  gap: 12px;
  align-items: end;
}

.team-invite-form button {
  min-height: 44px;
  padding: 10px 14px;
  color: var(--paper);
  background: var(--green-dark);
  border: 0;
  border-radius: var(--radius);
  font-weight: 900;
}

.team-member-list {
  display: grid;
  gap: 8px;
}

.role-permission-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.role-permission-grid article {
  padding: 14px;
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.role-permission-grid h4,
.role-permission-grid p {
  margin: 0;
}

.role-permission-grid h4 {
  color: var(--ink);
  font-size: 1rem;
}

.role-permission-grid p {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.5;
}

.team-message {
  margin: 0;
  padding: 10px 12px;
  color: var(--green-dark);
  background: var(--soft-green);
  border: 1px solid #c8ddce;
  border-radius: var(--radius);
  font-weight: 800;
}

.team-member-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 44px;
  padding: 10px 12px;
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.team-member-row span,
.team-member-row b,
.team-member-row select {
  overflow-wrap: anywhere;
}

.team-member-row b,
.team-member-row select {
  color: var(--green-dark);
  font-size: 0.8rem;
  text-transform: capitalize;
}

.team-member-row select {
  min-height: 36px;
  padding: 6px 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-weight: 900;
}

.plugin-list {
  display: grid;
  gap: 10px;
}

.canva-import-form,
.csv-import-form {
  display: grid;
  gap: 10px;
  margin: 12px 0;
  padding: 14px;
  border-radius: var(--radius);
}

.migration-workflow .csv-import-form {
  margin: 0;
  background: var(--canvas);
  border: 1px solid var(--line);
}

.csv-file-picker {
  display: grid;
  gap: 7px;
  padding: 12px;
  background: #fbfaf7;
  border: 1px dashed rgba(63, 111, 88, 0.34);
  border-radius: var(--radius);
}

.csv-file-picker input {
  padding: 10px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.csv-file-picker span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.canva-import-form h3,
.canva-import-form p,
.csv-import-form h3,
.csv-import-form p {
  margin: 0;
}

.canva-import-form p,
.csv-import-form p {
  color: var(--muted);
  line-height: 1.5;
}

.canva-import-form button,
.csv-import-form button {
  justify-self: start;
  min-height: 38px;
  padding: 8px 12px;
  color: var(--paper);
  background: var(--green-dark);
  border: 0;
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
}

.recent-import-history {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.recent-import-history > h3 {
  font-size: 1rem;
}

.recent-import-list {
  display: grid;
  gap: 8px;
}

.recent-import-list article {
  display: grid;
  grid-template-columns: 0.35fr 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.recent-import-warning-details {
  grid-column: 1 / -1;
  padding-top: 4px;
}

.recent-import-warning-details summary {
  color: #60450c;
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 900;
}

.recent-import-warning-details span[role="list"] {
  display: grid;
  gap: 4px;
  margin-top: 6px;
  padding: 8px 10px;
  color: #60450c;
  background: #fff6d6;
  border: 1px solid #ead180;
  border-radius: var(--radius);
}

.recent-import-warning-details span[role="listitem"] {
  color: #60450c;
  font-size: 0.88rem;
  line-height: 1.4;
}

.recent-import-list span,
.recent-import-list small {
  color: var(--muted);
  font-weight: 800;
}

.recent-import-list strong {
  color: var(--ink);
}

.migration-roadmap {
  display: grid;
  gap: 10px;
  margin: 12px 0;
  padding: 14px;
}

.migration-roadmap h3,
.migration-roadmap p,
.migration-roadmap small {
  margin: 0;
}

.migration-roadmap p,
.migration-roadmap small {
  color: var(--muted);
  line-height: 1.5;
}

.migration-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.migration-chip-list span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 9px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
}

.support-ticket-list-panel {
  display: grid;
  gap: 14px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(216, 210, 196, 0.86);
}

.support-ticket-list-panel p {
  color: var(--muted);
  line-height: 1.55;
}

.support-ticket-list {
  display: grid;
  gap: 10px;
}

.support-ticket-list article {
  padding: 14px;
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.support-ticket-list h4,
.support-ticket-list p {
  margin: 8px 0 0;
}

.support-ticket-list small {
  display: block;
  margin-top: 8px;
  color: var(--green-dark);
  font-weight: 900;
  text-transform: capitalize;
}

.owner-dashboard {
  display: grid;
  gap: 22px;
}

.owner-token-form {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto;
  align-items: end;
  gap: 12px;
  max-width: 980px;
  margin: 0 auto;
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.owner-token-form .form-status {
  grid-column: 1 / -1;
}

.owner-metric-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  max-width: 1180px;
  margin: 0 auto;
}

.owner-metric-grid article,
.owner-queue-card,
.owner-list-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.owner-metric-grid article {
  display: grid;
  gap: 8px;
  padding: 16px;
}

.owner-metric-grid span,
.owner-metric-grid small,
.owner-list-item span,
.owner-list-item small {
  color: var(--muted);
  line-height: 1.45;
}

.owner-metric-grid strong {
  color: var(--ink);
  font-family: Sora, Inter, Arial, sans-serif;
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.owner-queue-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.owner-goals-panel {
  display: grid;
  gap: 16px;
  max-width: 1180px;
  margin: 18px auto;
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.owner-goals-panel p {
  color: var(--muted);
  line-height: 1.6;
}

.owner-queue-card {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.owner-queue-card p {
  color: var(--muted);
  line-height: 1.55;
}

.owner-list {
  display: grid;
  gap: 10px;
}

.owner-list-item {
  display: grid;
  gap: 6px;
  padding: 12px;
}

.integration-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 48px;
  padding: 12px;
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.integration-row span,
.integration-row b {
  overflow-wrap: anywhere;
}

.integration-row b {
  color: var(--green-dark);
  font-size: 0.8rem;
}

.template-stack,
.record-preview,
.status-card-preview,
.event-capture-tools,
.costing-preview {
  display: grid;
  gap: 10px;
}

.event-capture-tools {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.event-capture-tools > div {
  padding: 14px;
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.event-capture-tools p {
  color: var(--muted);
  line-height: 1.55;
}

.template-stack div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 46px;
  padding: 12px;
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
}

.intent-preview {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(220px, 1fr);
  gap: 14px;
  align-items: start;
  padding: 14px;
}

.intent-preview h3,
.intent-preview p {
  margin: 8px 0 0;
}

.intent-preview p,
.intent-preview dd {
  color: var(--muted);
  line-height: 1.5;
}

.intent-preview dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.intent-preview dl div {
  display: grid;
  gap: 3px;
  padding: 10px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.intent-preview dt {
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.intent-preview dd {
  margin: 0;
}

.goal-calculator {
  display: grid;
  gap: 12px;
  margin-bottom: 14px;
  padding: 16px;
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.goal-calculator h3 {
  margin: 0;
  font-size: 1rem;
}

.goal-grid label {
  display: grid;
  align-content: start;
  gap: 8px;
  min-width: 0;
  font-size: 0.9rem;
  line-height: 1.25;
}

.goal-grid input {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 8px;
}

.goal-grid,
.goal-results {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
}

.goal-results div {
  min-height: 70px;
  padding: 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.goal-results strong,
.goal-results span {
  display: block;
}

.goal-results strong {
  font-size: 1.45rem;
}

.goal-results span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
}

.growth-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.growth-grid article {
  min-height: 112px;
  padding: 16px;
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.growth-grid span,
.growth-grid small {
  display: block;
  color: var(--muted);
  font-weight: 900;
}

.growth-grid strong {
  display: block;
  margin: 10px 0;
  font-size: 2rem;
}

.campaign-table {
  display: grid;
  gap: 6px;
  margin-top: 14px;
}

.campaign-table div {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  padding: 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.campaign-table span {
  color: var(--muted);
  font-weight: 800;
}

.record-preview {
  padding: 16px;
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.costing-preview {
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  margin-top: 14px;
  padding: 16px;
  background: var(--soft-green);
  border: 1px solid #c8ddce;
  border-radius: var(--radius);
}

.crm-grid-two #orders .costing-preview {
  grid-template-columns: 1fr;
}

.crm-grid-two #orders .pricing-results {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.costing-preview p {
  color: var(--muted);
  line-height: 1.6;
}

.machine-profile-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.machine-profile-row span {
  padding: 7px 9px;
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(63, 111, 88, 0.18);
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 900;
}

.pricing-helper {
  display: grid;
  gap: 12px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(63, 111, 88, 0.18);
  border-radius: var(--radius);
}

.pricing-helper-grid,
.pricing-results {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.pricing-helper label {
  min-width: 0;
}

.pricing-helper input,
.pricing-helper select {
  min-height: 40px;
  margin-top: 6px;
}

.pricing-results {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pricing-results div {
  min-height: 68px;
  padding: 11px;
  background: var(--paper);
  border: 1px solid rgba(63, 111, 88, 0.16);
  border-radius: var(--radius);
}

.pricing-results span,
.pricing-results strong {
  display: block;
}

.pricing-results span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
}

.pricing-results strong {
  margin-top: 8px;
  font-size: 1.15rem;
}

.pricing-results .suggested-price {
  color: var(--paper);
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.quote-workflow {
  display: grid;
  gap: 18px;
}

.quote-workflow-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.25fr) repeat(3, minmax(150px, 0.75fr));
  gap: 14px;
  align-items: stretch;
}

.quote-flow-card,
.quote-mini-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: var(--surface);
}

.quote-flow-card span {
  display: inline-grid;
  place-items: center;
  min-width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--soft-green);
  color: var(--green);
  font-weight: 800;
  margin-bottom: 10px;
}

.quote-flow-card h3,
.quote-mini-card h3 {
  margin: 0 0 6px;
}

.quote-flow-card p,
.quote-mini-card p {
  margin: 0;
  color: var(--muted);
}

.quote-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.proof-workflow-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 14px;
  align-items: start;
}

.proof-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.approval-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: var(--wash);
}

.approval-card {
  width: min(640px, 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.approval-card h1 {
  margin: 10px 0;
  font-size: clamp(2rem, 5vw, 3.25rem);
}

.approval-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 16px;
  margin: 18px 0;
}

.approval-total strong {
  font-size: 1.65rem;
}

.approval-form {
  display: grid;
  gap: 12px;
}

.approval-form input,
.approval-form textarea {
  width: 100%;
}

.approval-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 8px;
  background: var(--ink);
  color: white;
  font-weight: 800;
}

.button-link.secondary {
  background: var(--soft-green);
  color: var(--green);
}

.approval-note {
  margin-top: 14px;
  color: var(--muted);
}

.pricing-results .suggested-price span {
  color: rgba(255, 255, 255, 0.72);
}

.costing-preview dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.costing-preview dl div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 12px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(63, 111, 88, 0.18);
  border-radius: var(--radius);
}

.costing-preview dt {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 900;
}

.costing-preview dd {
  margin: 0;
  color: var(--ink);
  font-weight: 900;
  text-align: right;
}

.record-preview dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.record-preview dl div {
  padding: 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.record-preview dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
}

.record-preview dd {
  margin: 6px 0 0;
  font-weight: 900;
}

.order-timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.order-timeline.compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.order-timeline span {
  min-height: 58px;
  display: grid;
  place-items: center;
  padding: 10px;
  color: var(--muted);
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 900;
  text-align: center;
}

.order-timeline span.active {
  color: var(--paper);
  background: var(--green);
  border-color: var(--green);
}

.status-lookup-shell {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 18px;
  max-width: 1040px;
  margin: 0 auto;
}

.status-lookup-form,
.status-result-card {
  display: grid;
  gap: 12px;
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.status-result-card p {
  color: var(--muted);
  line-height: 1.65;
}

.status-detail-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.status-detail-list div {
  padding: 10px;
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.status-detail-list dt,
.status-detail-list dd {
  margin: 0;
}

.status-detail-list dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.status-detail-list dd {
  margin-top: 4px;
  color: var(--ink);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.event-signup-page {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(107, 146, 127, 0.18), rgba(214, 162, 143, 0.08)),
    var(--canvas);
}

.login-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.55fr);
  gap: clamp(24px, 5vw, 62px);
  align-items: center;
  min-height: calc(100vh - 170px);
  background:
    linear-gradient(135deg, rgba(107, 146, 127, 0.14), rgba(95, 138, 163, 0.1)),
    var(--canvas);
}

.login-form {
  box-shadow: var(--shadow);
}

.small-form-note {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.event-signup-shell {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 18px;
}

.event-signup-card {
  width: min(100%, 480px);
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(38, 51, 45, 0.16);
}

.event-signup-card h1 {
  font-size: clamp(2rem, 8vw, 3.4rem);
}

.event-signup-card p {
  color: var(--muted);
  line-height: 1.6;
}

.event-signup-form {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.event-signup-form button {
  min-height: 52px;
  color: var(--paper);
  background: var(--green-dark);
  border: 0;
  border-radius: var(--radius);
  font-weight: 900;
}

.check-row {
  display: flex;
  align-items: center;
  grid-template-columns: none;
  gap: 10px;
}

.check-row input {
  width: auto;
}

.event-signup-card footer {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
}

.crm-space-builder {
  margin-top: 18px;
}

.crm-space-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(360px, 1.25fr);
  gap: 18px;
  align-items: stretch;
}

.event-page-settings {
  display: grid;
  gap: 14px;
}

.event-page-settings > button {
  min-height: 50px;
  color: var(--paper);
  background: var(--green);
  border: 0;
  border-radius: var(--radius);
  font-weight: 900;
}

.event-page-limit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 50px;
  padding: 12px;
  background: var(--soft-green);
  border: 1px solid #c8ddce;
  border-radius: var(--radius);
  font-weight: 900;
}

.event-page-limit span {
  color: var(--green-dark);
}

.crm-event-preview {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 16px;
  padding: 18px;
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.qr-card {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  align-self: start;
  aspect-ratio: 1;
  padding: 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.qr-card div {
  background: var(--ink);
  border-radius: 3px;
}

.qr-card div:nth-child(2),
.qr-card div:nth-child(5),
.qr-card div:nth-child(8),
.qr-card div:nth-child(11),
.qr-card div:nth-child(13) {
  background: var(--green);
}

.qr-card div:nth-child(4),
.qr-card div:nth-child(7),
.qr-card div:nth-child(10),
.qr-card div:nth-child(16) {
  background: transparent;
}

.event-phone-preview {
  min-width: 0;
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.event-phone-preview h3 {
  font-size: clamp(1.55rem, 2.6vw, 2.35rem);
}

.event-phone-preview strong {
  display: block;
  margin-top: 10px;
  color: var(--green-dark);
  font-size: 1rem;
}

.event-phone-preview p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.6;
}

.live-event-preview,
.event-live-card {
  display: grid;
  gap: 6px;
  margin-top: 14px;
  padding: 12px;
  background: var(--soft-blue);
  border: 1px solid #cbdce6;
  border-radius: var(--radius);
}

.live-event-preview span,
.event-live-card span {
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.live-event-preview b,
.event-live-card strong {
  color: var(--ink);
  line-height: 1.3;
}

.event-live-card p {
  margin: 0;
}

.phone-form-preview {
  display: grid;
  gap: 9px;
  margin-top: 18px;
}

.phone-form-preview span,
.phone-form-preview button {
  min-height: 38px;
  padding: 10px 12px;
  border-radius: var(--radius);
  font-weight: 800;
}

.phone-form-preview span {
  color: var(--muted);
  background: #fbfaf7;
  border: 1px solid var(--line);
}

.phone-form-preview button {
  color: var(--paper);
  background: var(--green);
  border: 0;
}

.marketplace-listing {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
  padding: 16px;
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.marketplace-listing h3 {
  margin-top: 8px;
}

.marketplace-listing p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.marketplace-listing b {
  flex: 0 0 auto;
  padding: 9px 11px;
  color: var(--paper);
  background: var(--green);
  border-radius: var(--radius);
  font-size: 0.82rem;
}

.fairs-directory {
  background: #fbfaf7;
}

.directory-search {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(180px, 0.8fr) minmax(150px, 0.58fr) minmax(150px, 0.58fr) auto;
  gap: 12px;
  align-items: end;
  max-width: 1180px;
  margin-bottom: 18px;
}

.buyer-event-loop {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 1180px;
  margin: 0 auto 18px;
}

.buyer-event-loop article,
.saved-event-panel {
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.buyer-event-loop span {
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.buyer-event-loop strong {
  display: block;
  margin-top: 8px;
  font-size: 1.04rem;
}

.buyer-event-loop p,
.saved-event-panel p {
  color: var(--muted);
  line-height: 1.55;
}

.directory-list {
  display: grid;
  gap: 12px;
}

.directory-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.28fr);
  gap: 18px;
  align-items: center;
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.directory-card h3 {
  margin-top: 9px;
}

.directory-card p {
  color: var(--muted);
  line-height: 1.55;
}

.directory-card small {
  display: block;
  margin-top: 8px;
  color: var(--green-dark);
  font-weight: 800;
  line-height: 1.45;
}

.event-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}

.event-trust-row span {
  padding: 6px 8px;
  color: var(--green-dark);
  background: var(--soft-green);
  border: 1px solid rgba(63, 111, 88, 0.18);
  border-radius: var(--radius);
  font-size: 0.76rem;
  font-weight: 900;
}

.event-vendor-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.event-vendor-strip a {
  display: grid;
  gap: 4px;
  padding: 10px;
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.event-vendor-strip strong,
.event-vendor-strip small {
  display: block;
}

.event-vendor-strip strong {
  color: var(--ink);
  font-size: 0.88rem;
}

.event-vendor-strip small {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
}

.directory-meta {
  display: grid;
  gap: 8px;
  justify-items: end;
}

.directory-meta b,
.directory-meta span {
  display: block;
}

.directory-meta span {
  color: var(--muted);
  font-weight: 900;
}

.directory-meta small {
  color: var(--green-dark);
  font-weight: 900;
}

.directory-meta button {
  min-height: 38px;
  padding: 8px 11px;
  color: var(--paper);
  background: var(--green-dark);
  border: 0;
  border-radius: var(--radius);
  font-weight: 900;
}

.booth-booking-panel {
  display: grid;
  gap: 16px;
  max-width: 980px;
  margin: 18px auto 0;
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.booth-booking-panel p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.6;
}

.booth-booking-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.saved-event-panel {
  display: grid;
  gap: 14px;
  max-width: 1180px;
  margin: 18px auto 0;
}

.saved-event-list {
  display: grid;
  gap: 10px;
}

.saved-event-list article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.saved-event-list strong,
.saved-event-list span {
  display: block;
}

.saved-event-list span {
  color: var(--muted);
  font-weight: 800;
}

.forum-category-list {
  display: grid;
  gap: 10px;
}

.forum-category-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 48px;
  padding: 12px;
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.forum-category-list span {
  font-weight: 800;
}

.forum-category-list b {
  color: var(--green-dark);
  font-size: 0.78rem;
}

body.theme-blue {
  --green: #3e6f8f;
  --green-dark: #2f5875;
  --soft-green: #e5edf2;
}

body.theme-coral {
  --green: #5f8aa3;
  --green-dark: #2f5875;
  --soft-green: #fbefe9;
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .product-visual {
    width: 100%;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .crm-shell {
    grid-template-columns: 1fr;
  }

  .crm-sidebar {
    position: sticky;
    top: 0;
    z-index: 20;
    height: auto;
    max-height: 48vh;
  }

  .crm-sidebar nav {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .crm-metrics,
  .habit-panel,
  .onboarding-layout,
  .crm-board,
  .crm-space-layout,
  .crm-grid-two,
  .expo-tier-grid,
  .expo-agenda,
  .module-map-grid,
  .support-preview-grid,
  .settings-grid,
  .team-invite-form,
  .funnel-stage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .crm-workline,
  .onboarding-intro,
  .quick-capture-form {
    grid-template-columns: 1fr;
  }

  .onboarding-intro {
    display: grid;
  }
}

@media (max-width: 520px) {
  .builder-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

  .builder-layout {
    grid-template-columns: 1fr;
    max-width: 720px;
  }

  .builder-copy {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .builder-panel,
  .builder-preview {
    min-height: 0;
  }

  .builder-panel,
  .builder-preview {
    padding: 18px;
  }

  .builder-panel .form-row {
    grid-template-columns: 1fr;
  }

  .app-window {
    grid-template-columns: 1fr;
  }

  .app-sidebar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .app-mark {
    grid-column: 1 / -1;
    margin-bottom: 8px;
  }

  .side-item {
    margin: 0;
  }

  .metric-grid,
  .pipeline-preview,
  .brand-grid,
  .swatch-grid,
  .seller-path-grid,
  .value-stats-grid,
  .value-visual-grid,
  .usecase-metrics,
  .usecase-layout,
  .lead-planner-layout,
  .funnel-insight-layout,
  .expo-hero,
  .expo-attendee-layout,
  .owner-hero,
  .owner-metrics,
  .owner-work-grid,
  .pro-grant-layout,
  .automation-flow,
  .spacesimply-layout,
  .login-hero,
  .community-layout,
  .plugins-layout,
  .referral-layout,
  .trust-layout,
  .pricing-grid,
  .completion-snapshot,
  .handoff-grid,
  .owner-metric-grid,
  .owner-queue-grid,
  .feature-story,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .preview-limits {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .crm-sidebar nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand img {
    width: 156px;
  }

  .header-action {
    min-width: auto;
    padding: 9px 11px;
    font-size: 0.84rem;
  }

  .section-band {
    padding: 44px 16px;
  }

  .hero {
    padding: 24px 16px;
  }

  h1 {
    font-size: 2.12rem;
    line-height: 1.02;
  }

  .hero-text {
    margin-top: 16px;
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .hero-actions {
    margin-top: 20px;
  }

  .trust-row {
    display: none;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .product-visual {
    margin-top: 8px;
  }

  .app-window {
    display: block;
    min-height: 0;
  }

  .product-visual .app-sidebar {
    display: block;
    padding: 12px;
  }

  .product-visual .app-mark {
    margin-bottom: 0;
  }

  .product-visual .side-item {
    display: none;
  }

  .app-main,
  .builder-panel,
  .builder-preview,
  .planner-form,
  .planner-results,
  .feature-grid article,
  .seller-path-grid article,
  .price-card,
  .contact-form {
    padding: 16px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .app-topbar,
  .preview-header,
  .ai-funnel-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .company-pill {
    max-width: 100%;
  }

  .metric-grid,
  .connector-grid,
  .space-benefits,
  .trust-grid,
  .value-stats-grid,
  .value-visual-grid,
  .usecase-metrics,
  .usecase-layout,
  .funnel-stage-grid,
  .campaign-attribution-grid,
  .expo-tier-grid,
  .expo-agenda,
  .preview-limits,
  .setup-steps,
  .option-grid,
  .export-trust-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .product-visual .metric-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 14px;
  }

  .product-visual .metric {
    min-height: 82px;
    padding: 10px;
  }

  .product-visual .metric strong {
    font-size: 1.45rem;
  }

  .product-visual .pipeline-preview,
  .product-visual .order-list {
    display: none;
  }

  .stage {
    min-height: 88px;
  }

  .crm-main {
    padding: 16px;
  }

  .crm-quick-nav {
    top: 0;
    margin-right: -16px;
    margin-left: -16px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .crm-floating-menu {
    display: inline-flex;
  }

  .crm-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .crm-metrics,
  .onboarding-layout,
  .record-builder-grid,
  .record-live-preview,
  .saved-records-panel,
  .upgrade-panel,
  .plugin-request-form,
  .crm-board,
  .crm-space-layout,
  .crm-event-preview,
  .crm-grid-two,
  .crm-workline,
  .workline-steps,
  .module-map-grid,
  .quote-workflow-grid,
  .quote-list,
  .proof-workflow-grid,
  .proof-list,
  .migration-pilot-grid,
  .quick-capture-form,
  .owner-token-form,
  .owner-metric-grid,
  .owner-queue-grid,
  .support-preview-grid,
  .settings-grid,
    .event-capture-tools,
    .costing-preview,
    .pricing-helper-grid,
    .pricing-results,
    .team-invite-form,
    .owner-table-row,
  .goal-grid,
  .goal-results,
  .growth-grid,
  .booth-booking-grid,
  .event-vendor-strip,
  .campaign-table div,
  .record-preview dl,
  .order-timeline,
  .status-lookup-shell,
  .content-grid,
  .support-ticket-panel,
  .crm-sidebar nav {
    grid-template-columns: 1fr;
  }

  .habit-actions {
    grid-template-columns: 1fr;
  }

  .saved-record-list {
    grid-template-columns: 1fr;
  }

  .onboarding-step {
    grid-template-columns: 1fr;
  }

  .onboarding-step button,
  .onboarding-step strong {
    max-width: none;
    width: 100%;
  }

  .integration-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .marketplace-listing,
  .directory-card,
  .directory-search,
  .forum-category-list div {
    align-items: flex-start;
    flex-direction: column;
    grid-template-columns: 1fr;
  }

.directory-meta {
  justify-items: start;
}
}

.public-space-page .page-hero {
  min-height: auto;
}

.public-space-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(300px, 1fr);
  gap: 22px;
  align-items: start;
}

.space-event-strip {
  display: grid;
  gap: 12px;
}

.space-event-strip article {
  display: grid;
  gap: 7px;
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.space-event-strip span {
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.space-event-strip strong {
  color: var(--ink);
  font-size: 1.1rem;
}

.space-event-strip a {
  color: var(--green-dark);
  font-size: 1.1rem;
  font-weight: 900;
  text-decoration: none;
}

.space-event-strip a:hover,
.space-event-strip a:focus {
  text-decoration: underline;
}

.space-event-strip p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

@media (max-width: 760px) {
  .public-space-layout {
    grid-template-columns: 1fr;
  }
}

.page-note {
  background: var(--soft-blue);
  border: 1px solid rgba(64, 116, 148, 0.22);
  border-radius: 8px;
  color: var(--ink);
  font-weight: 700;
  margin-top: 22px;
  max-width: 680px;
  padding: 14px 16px;
}

.checkbox-row {
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.checkbox-row input {
  height: 18px;
  width: 18px;
}

.compact-footer {
  margin-top: 0;
}

@media (max-width: 760px) {
  .costing-preview,
  .pricing-helper-grid,
  .pricing-results {
    grid-template-columns: 1fr;
  }

  .record-detail-grid {
    grid-template-columns: 1fr;
  }

  .pricing-helper {
    min-width: 0;
  }
}

.readiness-dashboard {
  background: #fbfaf7;
}

.readiness-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 1100px;
  margin: 0 auto 18px;
}

.readiness-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-weight: 800;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  display: inline-block;
}

.dot.green { background: #1f8f5f; }
.dot.yellow { background: #d99a21; }
.dot.red { background: #c2413a; }

.feature-readiness-grid,
.codex-status-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}

.feature-status,
.codex-status {
  display: grid;
  gap: 10px;
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-left-width: 6px;
  border-radius: var(--radius);
}

.feature-status h3,
.codex-status h3,
.feature-status p,
.codex-status p {
  margin: 0;
}

.feature-status p,
.codex-status p {
  color: var(--muted);
  line-height: 1.55;
}

.feature-status.green,
.codex-status.main {
  border-left-color: #1f8f5f;
}

.feature-status.yellow,
.codex-status.caution {
  border-left-color: #d99a21;
}

.feature-status.red,
.codex-status.blocked {
  border-left-color: #c2413a;
}

.status.ready {
  color: #1f6f4d;
  background: #dff4e9;
}

.status.caution {
  color: #8a5a00;
  background: #fff0c2;
}

.status.blocked {
  color: #8f241f;
  background: #ffe0dd;
}

@media (max-width: 980px) {
  .feature-readiness-grid,
  .codex-status-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .feature-readiness-grid,
  .codex-status-grid {
    grid-template-columns: 1fr;
  }
}

.crm-header-link {
  border: 1px solid rgba(63, 111, 88, 0.3);
  background: var(--soft-green);
  color: var(--green-dark);
  border-radius: 8px;
  padding: 10px 14px;
  font-weight: 800;
}

.contacts-home {
  display: grid;
  gap: 18px;
}

.contact-add-form {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
}

.contact-add-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 12px;
}

.contact-add-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

.contact-add-form input,
.contact-add-form select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  font: inherit;
  background: #fff;
}

.contact-add-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-add-actions button {
  border: 0;
  border-radius: 8px;
  padding: 11px 16px;
  background: var(--green);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.contact-add-actions a {
  color: var(--green-dark);
  font-weight: 800;
}

.contact-list {
  display: grid;
  gap: 10px;
}

.contact-list-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.contact-list-card strong,
.contact-list-card span,
.contact-list-card small {
  display: block;
}

.contact-list-card span,
.contact-list-card small {
  color: var(--muted);
  font-weight: 800;
}

/* CRM launch correction: keep primary workflow choices in front of the user. */
.crm-shell {
  grid-template-columns: 1fr;
}

.crm-sidebar {
  display: flex;
  align-items: center;
  gap: 16px;
  height: auto;
  min-height: 78px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 12px clamp(16px, 3vw, 28px);
}

.crm-logo {
  flex: 0 0 auto;
  min-height: 48px;
  margin: 0;
}

.crm-logo img {
  width: 154px;
}

.crm-sidebar nav {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: max-content;
}

.crm-sidebar nav a {
  min-height: 38px;
  border-color: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 8px 13px;
  white-space: nowrap;
}

.crm-sidebar nav a.nav-secondary {
  opacity: 0.82;
}

.crm-main {
  padding-top: clamp(16px, 3vw, 30px);
}

@media (max-width: 760px) {
  .crm-sidebar {
    align-items: stretch;
    flex-direction: column;
    max-height: none;
  }

  .crm-sidebar nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-width: 0;
    width: 100%;
  }

  .crm-sidebar nav a {
    justify-content: center;
    white-space: normal;
  }
}
/* RetainSimply calm visual system refresh: inspired by the founder-approved one-page style. */
:root {
  --ink: #182820;
  --muted: #5f6f69;
  --green: #6f957f;
  --green-dark: #397057;
  --coral: #ef7044;
  --blue: #4f86be;
  --canvas: #f8f4ea;
  --paper: #fffdf7;
  --line: #ded8c8;
  --soft-green: #eef5e9;
  --soft-coral: #fff1ea;
  --soft-blue: #ecf4fb;
  --shadow: 0 18px 42px rgba(24, 40, 32, 0.08);
  --radius: 10px;
}

body {
  background: var(--canvas);
}

.site-header {
  background: rgba(248, 244, 234, 0.94);
  border-bottom-color: rgba(222, 216, 200, 0.82);
  box-shadow: 0 8px 28px rgba(24, 40, 32, 0.04);
}

.nav-links a,
.crm-sidebar nav a,
.crm-quick-nav a {
  border-radius: 999px;
}

.header-action,
.button,
button[type="submit"],
.quick-capture-form button,
.record-mini-form button,
.contact-add-actions button,
.crm-sign-out,
.admin-account-grid button,
.event-page-settings > button,
.phone-form-preview button,
.space-form button {
  border-radius: 10px;
  box-shadow: none;
}

.button.primary,
.header-action,
button[type="submit"] {
  background: var(--green-dark);
}

.button.secondary,
.crm-sign-out,
.admin-account-grid button {
  background: var(--paper);
  border-color: var(--line);
}

.calm-story-hero {
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.72fr);
  min-height: auto;
  padding-top: clamp(48px, 7vw, 82px);
  padding-bottom: clamp(34px, 6vw, 70px);
  background: var(--canvas);
}

.calm-story-hero h1 {
  max-width: 820px;
  font-size: clamp(2.65rem, 5.8vw, 5.45rem);
  line-height: 1.04;
}

.calm-story-hero .hero-text {
  max-width: 700px;
  font-size: clamp(1.2rem, 2vw, 1.75rem);
  line-height: 1.45;
}

.calm-story-hero .hero-text::before {
  content: "";
  display: block;
  width: 58px;
  height: 5px;
  margin: 0 0 24px;
  background: var(--green-dark);
  border-radius: 999px;
}

.retention-visual {
  display: grid;
  gap: 22px;
  align-content: center;
}

.line-hero-icon {
  justify-self: end;
  width: min(100%, 360px);
  padding: 14px;
}

.line-hero-icon svg,
.visual-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 3.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.line-hero-icon svg {
  color: var(--ink);
}

.line-hero-icon .soft-fill {
  fill: var(--soft-green);
  stroke: none;
}

.opportunity-card,
.metric-ribbon,
.price-card,
.feature-grid article,
.value-visual-card,
.content-grid article,
.owner-queue-card,
.crm-dashboard,
.crm-panel,
.crm-board article,
.crm-metrics article,
.quiet-card,
.locked-card,
.support-preview-card,
.directory-card,
.status-result-card,
.event-live-card,
.space-page-card,
.referral-card {
  background: rgba(255, 253, 247, 0.86);
  border: 1px solid rgba(222, 216, 200, 0.95);
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(24, 40, 32, 0.055);
}

.opportunity-card {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: clamp(22px, 3vw, 34px);
}

.opportunity-card h2,
.section-rule-title h2 {
  color: var(--green-dark);
  font-size: clamp(1.45rem, 2.2vw, 2.15rem);
}

.opportunity-card p {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.55;
}

.visual-icon {
  display: inline-grid;
  place-items: center;
  width: 74px;
  height: 74px;
  color: var(--green-dark);
  background: var(--soft-green);
  border-radius: 50%;
}

.visual-icon.blue {
  color: var(--blue);
  background: var(--soft-blue);
}

.visual-icon.coral {
  color: var(--coral);
  background: var(--soft-coral);
}

.visual-icon svg {
  width: 52px;
  height: 52px;
}

.outcome-strip {
  padding-top: clamp(24px, 4vw, 46px);
  background: var(--canvas);
}

.section-rule-title {
  display: grid;
  grid-template-columns: minmax(40px, 1fr) auto minmax(40px, 1fr);
  gap: 24px;
  align-items: center;
  margin: 0 auto 22px;
  max-width: 980px;
  text-align: center;
}

.section-rule-title.compact {
  margin-top: 42px;
}

.section-rule-title span {
  height: 2px;
  background: rgba(57, 112, 87, 0.5);
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1060px;
  margin: 0 auto;
}

.outcome-grid article {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 12px;
  min-height: 190px;
  padding: 24px 18px 20px;
  background: rgba(255, 253, 247, 0.82);
  border: 1px solid var(--line);
  border-radius: 16px;
  text-align: center;
}

.outcome-grid article > b {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--paper);
  background: var(--green-dark);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.18rem;
}

.outcome-grid article:nth-child(2) > b { background: var(--blue); }
.outcome-grid article:nth-child(3) > b { background: var(--coral); }

.outcome-grid h3 {
  font-size: 1.18rem;
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 980px;
  margin: 0 auto 32px;
}

.proof-row div {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.proof-row .visual-icon {
  width: 64px;
  height: 64px;
}

.proof-row .visual-icon svg {
  width: 44px;
  height: 44px;
}

.metric-ribbon {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 980px;
  margin: 0 auto;
  padding: 18px;
}

.metric-ribbon article {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 18px 16px;
  text-align: center;
}

.metric-ribbon article + article {
  border-left: 1px solid var(--line);
}

.metric-ribbon strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  line-height: 1;
}

.metric-ribbon small {
  color: var(--green-dark);
  font-size: 1rem;
  font-weight: 800;
}

.crm-shell {
  background: var(--canvas);
}

.crm-main {
  background: transparent;
}

.crm-sidebar {
  background: rgba(255, 253, 247, 0.86);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(24, 40, 32, 0.045);
}

.crm-sidebar nav a {
  color: var(--muted);
  background: transparent;
  border: 1px solid transparent;
}

.crm-sidebar nav a.active,
.crm-sidebar nav a:hover,
.crm-quick-nav a.active,
.crm-quick-nav a:hover {
  color: var(--green-dark);
  background: var(--soft-green);
  border-color: rgba(57, 112, 87, 0.22);
}

.crm-header {
  align-items: flex-start;
  border-bottom: 1px solid rgba(222, 216, 200, 0.72);
}

.crm-header h1,
.crm-section-heading h2,
.page-hero h1 {
  line-height: 1.05;
}

.crm-metrics article strong {
  color: var(--ink);
}

.record-mini-form,
.quick-capture-form,
.ticket-form,
.contact-add-form,
.csv-import-form,
.canva-import-form,
.space-form,
.phone-verify-form,
.team-invite-form,
.pipeline-label-form {
  background: transparent;
}

input,
select,
textarea {
  border-radius: 10px;
  border-color: var(--line);
  background: #fffefa;
}

@media (max-width: 980px) {
  .calm-story-hero,
  .outcome-grid,
  .proof-row,
  .metric-ribbon {
    grid-template-columns: 1fr;
  }

  .line-hero-icon {
    justify-self: center;
  }

  .opportunity-card {
    grid-template-columns: 1fr;
  }

  .metric-ribbon article + article {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 680px) {
  .calm-story-hero h1 {
    font-size: clamp(2.25rem, 12vw, 3.35rem);
  }

  .section-rule-title {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .section-rule-title span {
    max-width: 180px;
    width: 100%;
    justify-self: center;
  }
}
.logo-options-hero {
  padding-bottom: clamp(24px, 4vw, 44px);
}

.logo-options-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.14rem;
  line-height: 1.65;
}

.logo-option-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  padding-top: 18px;
}

.logo-option-card {
  position: relative;
  display: grid;
  gap: 20px;
  align-content: start;
  min-height: 430px;
  padding: clamp(22px, 3vw, 34px);
  background: rgba(255, 253, 247, 0.88);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(24, 40, 32, 0.06);
}

.logo-option-number {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--paper);
  background: var(--green-dark);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.24rem;
  font-weight: 800;
}

.logo-option-number.blue {
  background: var(--blue);
}

.logo-option-number.coral {
  background: var(--coral);
}

.logo-sample {
  display: grid;
  gap: 14px;
  align-items: center;
  min-height: 150px;
  padding: 20px;
  background: var(--canvas);
  border: 1px solid rgba(222, 216, 200, 0.78);
  border-radius: 16px;
}

.logo-sample.mark-left {
  grid-template-columns: 78px minmax(0, 1fr);
}

.logo-sample.stacked-mark {
  justify-items: center;
  text-align: center;
}

.logo-sample.badge-mark {
  grid-template-columns: 82px minmax(0, 1fr);
}

.sample-mark {
  display: inline-grid;
  place-items: center;
  width: 78px;
  height: 78px;
  color: var(--green-dark);
  background: var(--soft-green);
  border-radius: 50%;
}

.sample-mark.blue {
  color: var(--blue);
  background: var(--soft-blue);
}

.sample-mark.coral {
  color: var(--coral);
  background: var(--soft-coral);
}

.sample-mark svg {
  width: 56px;
  height: 56px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sample-word {
  display: inline-flex;
  align-items: baseline;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 900;
  letter-spacing: 0;
}

.sample-word b {
  font: inherit;
}

.sample-word em {
  margin-left: -0.08em;
  color: var(--green);
  font: inherit;
  font-style: normal;
}

.logo-option-card h2 {
  color: var(--green-dark);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.logo-option-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.logo-review-notes {
  padding-top: 20px;
}

@media (max-width: 980px) {
  .logo-option-board {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .logo-sample.mark-left,
  .logo-sample.badge-mark {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
}
.refined-logo-card {
  min-height: 500px;
}

.new-logo-sample {
  display: grid;
  place-items: center;
  min-height: 210px;
  padding: clamp(14px, 2vw, 24px);
  background: linear-gradient(180deg, rgba(255,253,247,0.92), rgba(248,244,234,0.78));
  border: 1px solid rgba(222, 216, 200, 0.86);
  border-radius: 18px;
}

.new-logo-svg {
  width: 100%;
  max-width: 520px;
  height: auto;
  overflow: visible;
}

.logo-option-card.refined-logo-card h2 {
  margin-top: 2px;
}

.connected-tag-sample .new-logo-svg {
  max-width: 560px;
}

.logo-option-board:has(.connected-tag-sample) {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 980px) {
  .logo-option-board:has(.connected-tag-sample) {
    grid-template-columns: 1fr;
  }
}
.logo-review-header .brand,
.logo-review-header .brand img {
  display: none;
}

.logo-review-home {
  min-width: 150px;
  color: var(--green-dark);
  font-family: "Quicksand", "Nunito Sans", Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.fresh-logo-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  padding-top: 18px;
}

.fresh-logo-card {
  display: grid;
  gap: 18px;
  align-content: start;
  min-height: 390px;
  padding: clamp(22px, 3vw, 34px);
  background: rgba(255, 253, 247, 0.9);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(24, 40, 32, 0.06);
}

.fresh-logo-sample {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(14px, 2vw, 22px);
  align-items: center;
  min-height: 170px;
  padding: clamp(18px, 3vw, 28px);
  background: linear-gradient(180deg, rgba(255,253,247,0.94), rgba(248,244,234,0.75));
  border: 1px solid rgba(222, 216, 200, 0.86);
  border-radius: 18px;
}

.fresh-mark {
  display: inline-grid;
  place-items: center;
  width: 82px;
  height: 82px;
  color: var(--green-dark);
  background: var(--soft-green);
  border-radius: 50%;
}

.fresh-mark.blue {
  color: var(--blue);
  background: var(--soft-blue);
}

.fresh-mark.coral {
  color: var(--coral);
  background: var(--soft-coral);
}

.fresh-mark svg {
  width: 60px;
  height: 60px;
  fill: none;
  stroke: currentColor;
  stroke-width: 4.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fresh-word {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  color: var(--ink);
  line-height: 0.96;
  letter-spacing: -0.035em;
}

.fresh-word span,
.fresh-word em {
  font-style: normal;
}

.fresh-word em {
  margin-left: 0.04em;
  color: var(--green);
}

.fresh-word-rounded {
  font-family: "Quicksand", "Nunito Sans", Arial, sans-serif;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 600;
  text-transform: lowercase;
}

.fresh-word-clean {
  font-family: "Manrope", "Nunito Sans", Arial, sans-serif;
  font-size: clamp(2.1rem, 4.8vw, 4rem);
  font-weight: 500;
}

.fresh-word-market {
  font-family: "Nunito Sans", "Manrope", Arial, sans-serif;
  font-size: clamp(2.2rem, 4.8vw, 4.1rem);
  font-weight: 600;
  letter-spacing: -0.045em;
}

.logo-four-fresh {
  grid-template-columns: 1fr;
}

.tag-r-svg {
  width: 100%;
  max-width: 520px;
  height: auto;
  overflow: visible;
}

.fresh-logo-card h2 {
  color: var(--green-dark);
  font-size: clamp(1.3rem, 2vw, 1.72rem);
}

.fresh-logo-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.62;
}

@media (max-width: 980px) {
  .fresh-logo-board {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .fresh-logo-sample {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
}
.identity-board {
  display: grid;
  gap: 28px;
  padding-top: 18px;
}

.identity-card {
  display: grid;
  grid-template-columns: 54px minmax(0, 1.2fr) minmax(220px, 0.55fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  padding: clamp(22px, 3vw, 36px);
  background: rgba(255, 253, 247, 0.9);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 14px 34px rgba(24, 40, 32, 0.06);
}

.identity-sample {
  display: grid;
  place-items: center;
  min-height: 230px;
  padding: clamp(12px, 2vw, 22px);
  background: linear-gradient(180deg, rgba(255,253,247,0.96), rgba(248,244,234,0.76));
  border: 1px solid rgba(222, 216, 200, 0.86);
  border-radius: 18px;
}

.identity-sample svg {
  width: 100%;
  max-width: 680px;
  height: auto;
  overflow: visible;
}

.identity-card h2 {
  color: var(--green-dark);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
}

.identity-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.tag-fill {
  fill: #fff1ea;
}

.tag-line,
.tag-thread {
  fill: none;
  stroke: #ef7044;
  stroke-width: 8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tag-thread {
  stroke-width: 6;
}

.r-body {
  fill: #182820;
}

.r-cut {
  fill: #fffdf7;
}

.system-word {
  font-family: "Quicksand", "Nunito Sans", Arial, sans-serif;
  font-size: 64px;
  font-weight: 600;
  letter-spacing: -2px;
  fill: #182820;
}

.system-word.green,
.loop-name.green,
.stamp-word.green {
  fill: #6f957f;
}

.loop-bg,
.leaf,
.small-line {
  fill: none;
  stroke: #397057;
  stroke-width: 8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.leaf {
  stroke: #6f957f;
  stroke-width: 6;
}

.small-line {
  stroke: #d8d2c4;
  stroke-width: 3;
}

.loop-name {
  font-family: "Fraunces", Georgia, serif;
  font-size: 68px;
  font-weight: 500;
  letter-spacing: -2px;
  fill: #182820;
}

.loop-tagline,
.stamp-tagline {
  font-family: "Manrope", Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  fill: #5f6f69;
}

.stamp-ring,
.stamp-icon,
.stamp-check {
  fill: none;
  stroke: #4f86be;
  stroke-width: 7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stamp-soft {
  fill: #ecf4fb;
  stroke: none;
}

.stamp-icon {
  stroke: #ef7044;
}

.stamp-check {
  stroke: #397057;
}

.stamp-word {
  font-family: "Manrope", "Nunito Sans", Arial, sans-serif;
  font-size: 62px;
  font-weight: 500;
  letter-spacing: -2px;
  fill: #182820;
}

@media (max-width: 980px) {
  .identity-card {
    grid-template-columns: 1fr;
  }
}
.contact-tag-r-system {
  min-height: 250px;
}

.contact-tag-r-system svg {
  max-width: 760px;
}

.contact-tag-fill {
  fill: #fff1ea;
}

.contact-tag-line,
.contact-person,
.tag-connect {
  fill: none;
  stroke: #d97850;
  stroke-width: 8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-person {
  stroke: #397057;
  stroke-width: 7;
}

.tag-connect {
  stroke-width: 7;
}

.large-r {
  fill: #182820;
}

.large-r-cut {
  fill: #fffdf7;
}

.single-line-word {
  font-family: "Quicksand", "Nunito Sans", Arial, sans-serif;
  font-size: 66px;
  font-weight: 600;
  letter-spacing: -3px;
  dominant-baseline: middle;
}

.retain-tail {
  fill: #182820;
}

.simply-tail {
  fill: #7d9486;
}

.preferred-identity-card .identity-sample {
  background: linear-gradient(180deg, rgba(255,253,247,0.98), rgba(248,244,234,0.72));
}
/* Founder direction: lighter maker-friendly UI, not chunky corporate blocks. */
:root {
  --ink: #173126;
  --muted: #64746c;
  --green: #7e8f7d;
  --green-dark: #2f6b52;
  --coral: #d77435;
  --blue: #4f86be;
  --canvas: #fbf7ef;
  --paper: #fffefa;
  --line: #e4dccd;
  --soft-green: #f0f6ed;
  --soft-coral: #fff0e8;
  --soft-blue: #edf5fb;
  --shadow: 0 10px 28px rgba(23, 49, 38, 0.06);
  --radius: 12px;
  --font-display: "Inter", "Segoe UI", Arial, sans-serif;
}

body {
  background: var(--canvas);
  color: var(--ink);
}

.site-header {
  padding-top: 10px;
  padding-bottom: 10px;
  background: rgba(251, 247, 239, 0.96);
  box-shadow: 0 6px 18px rgba(23, 49, 38, 0.035);
}

.site-header .brand {
  min-width: 210px;
  min-height: 54px;
}

.site-header .brand img,
.crm-logo img,
.brand-showcase img {
  object-fit: contain;
  object-position: left center;
}

.site-header .brand img {
  width: 214px;
  max-height: 58px;
}

.crm-logo img {
  width: 196px;
  max-height: 70px;
}

h1,
h2,
h3,
.logo-text-fallback,
.sample-word {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  font-weight: 700;
  line-height: 1.08;
}

h2 {
  font-weight: 700;
  line-height: 1.12;
}

.calm-story-hero h1,
.page-hero h1,
.crm-header h1 {
  font-weight: 700;
  letter-spacing: 0;
}

.nav-links {
  gap: 18px;
  font-size: 0.92rem;
  font-weight: 650;
}

.nav-links a {
  padding: 8px 4px;
}

.nav-links a:hover {
  color: var(--green-dark);
}

.header-action,
.button,
button[type="submit"],
.quick-capture-form button,
.record-mini-form button,
.contact-add-actions button,
.crm-sign-out,
.admin-account-grid button,
.event-page-settings > button,
.phone-form-preview button,
.space-form button {
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 12px;
  font-weight: 700;
  box-shadow: none;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.header-action,
.button.primary,
button[type="submit"] {
  color: #fffefa;
  background: #5f806d;
  border: 1px solid #5f806d;
}

.header-action:hover,
.button.primary:hover,
button[type="submit"]:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-1px);
}

.button.secondary,
.crm-sign-out,
.admin-account-grid button,
.crm-header-link {
  color: var(--green-dark);
  background: rgba(255, 254, 250, 0.78);
  border: 1px solid var(--line);
}

.button.secondary:hover,
.crm-sign-out:hover,
.admin-account-grid button:hover,
.crm-header-link:hover {
  color: var(--ink);
  background: var(--soft-green);
  border-color: rgba(47, 107, 82, 0.28);
}

.opportunity-card,
.metric-ribbon,
.price-card,
.feature-grid article,
.value-visual-card,
.content-grid article,
.owner-queue-card,
.crm-dashboard,
.crm-panel,
.crm-board article,
.crm-metrics article,
.quiet-card,
.locked-card,
.support-preview-card,
.directory-card,
.status-result-card,
.event-live-card,
.space-page-card,
.referral-card,
.outcome-grid article,
.logo-option-card,
.fresh-logo-card {
  background: rgba(255, 254, 250, 0.82);
  border: 1px solid rgba(228, 220, 205, 0.92);
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(23, 49, 38, 0.045);
}

.visual-icon,
.sample-mark {
  color: var(--green-dark);
  background: rgba(240, 246, 237, 0.95);
  border-radius: 50%;
}

.visual-icon svg,
.sample-mark svg,
.line-hero-icon svg {
  stroke-width: 2.5;
}

.outcome-grid article > b,
.logo-option-number {
  width: 38px;
  height: 38px;
  font-weight: 700;
  box-shadow: none;
}

.metric-ribbon strong,
.crm-metrics article strong,
.stat-card strong {
  font-weight: 700;
}

.crm-sidebar {
  background: rgba(255, 254, 250, 0.9);
}

.crm-sidebar nav a,
.crm-quick-nav a {
  border-radius: 12px;
  font-weight: 700;
}

input,
select,
textarea {
  border-radius: 12px;
  background: #fffefa;
  box-shadow: none;
}

/* 2026-05-25 cohesive maker-friendly UI pass: light, simple, icon-led. */
:root {
  --ink: #173126;
  --muted: #607269;
  --green: #7e927f;
  --green-dark: #2f6b52;
  --coral: #d77435;
  --blue: #4f86be;
  --canvas: #fbf7ef;
  --paper: #fffefa;
  --line: #e6decf;
  --soft-green: #f0f6ed;
  --soft-coral: #fff1e8;
  --soft-blue: #eef6fb;
  --shadow: 0 8px 24px rgba(23, 49, 38, 0.055);
  --radius: 12px;
}

body {
  background: var(--canvas);
}

.site-header {
  min-height: 70px;
  background: rgba(251, 247, 239, 0.97);
  border-bottom: 1px solid rgba(230, 222, 207, 0.95);
  box-shadow: 0 5px 18px rgba(23, 49, 38, 0.035);
}

.nav-links a,
.header-action,
.button,
button[type="submit"],
.crm-header-link,
.crm-quick-nav a,
.crm-sidebar nav a {
  letter-spacing: 0;
}

.header-action,
.button,
button[type="submit"],
.crm-header-link,
.first-action-link,
.record-card-button,
.space-form button,
.quick-capture-form button,
.record-mini-form button,
.contact-add-actions button,
.admin-account-grid button,
.event-page-settings > button,
.phone-form-preview button {
  border-radius: 13px;
  font-weight: 720;
  box-shadow: none;
}

.header-action,
.button.primary,
button[type="submit"],
.first-action-link {
  background: #63836f;
  border-color: #63836f;
  color: #fffefa;
}

.header-action:hover,
.button.primary:hover,
button[type="submit"]:hover,
.first-action-link:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.button.secondary,
.crm-header-link,
.crm-sign-out,
.admin-account-grid button {
  background: rgba(255, 254, 250, 0.88);
  border: 1px solid var(--line);
  color: var(--green-dark);
}

.hero,
.page-hero {
  background: var(--canvas);
}

.hero {
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.95fr);
  min-height: auto;
  padding-top: clamp(42px, 7vw, 78px);
  padding-bottom: clamp(42px, 7vw, 78px);
}

.hero h1,
.page-hero h1,
.crm-header h1 {
  max-width: 820px;
  color: var(--ink);
  font-size: clamp(2.3rem, 4.2vw, 4.2rem);
  line-height: 1.06;
  font-weight: 740;
}

.hero-text,
.page-hero p:not(.eyebrow),
.section-heading p,
.content-grid p,
.price-card li,
.crm-section-heading p,
.crm-panel p,
.crm-dashboard p {
  color: var(--muted);
  line-height: 1.65;
}

.eyebrow {
  color: var(--green-dark);
  font-size: 0.76rem;
  font-weight: 760;
  text-transform: none;
}

.product-visual,
.app-window {
  border-radius: 18px;
}

.product-visual {
  padding: clamp(8px, 1.5vw, 16px);
  background: linear-gradient(180deg, rgba(255, 254, 250, 0.75), rgba(240, 246, 237, 0.72));
  border: 1px solid rgba(230, 222, 207, 0.9);
  box-shadow: var(--shadow);
}

.app-window {
  overflow: hidden;
  background: #fffefa;
  border: 1px solid rgba(230, 222, 207, 0.9);
  box-shadow: none;
}

.product-visual .app-sidebar,
.app-sidebar {
  background: #f4f7ef;
  border-right: 1px solid var(--line);
}

.product-visual .side-item,
.side-item {
  color: var(--green-dark);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 12px;
}

.product-visual .side-item.active,
.side-item.active {
  background: #fffefa;
  border-color: var(--line);
  color: var(--ink);
}

.metric,
.stage,
.order-list article,
.brand-showcase,
.brand-principles article,
.value-visual-card,
.seller-path-grid article,
.builder-panel,
.builder-preview,
.space-page-card,
.space-benefits article,
.feature-grid article,
.price-card,
.referral-card,
.trust-grid article,
.contact-form,
.upgrade-panel,
.content-grid article,
.crm-dashboard,
.crm-panel,
.crm-board article,
.crm-metrics article,
.onboarding-progress,
.first-action-card {
  background: rgba(255, 254, 250, 0.86);
  border: 1px solid rgba(230, 222, 207, 0.96);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.feature-icon,
.visual-icon,
.connector-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--green-dark);
  background: rgba(240, 246, 237, 0.96);
  border-radius: 50%;
}

.feature-icon svg,
.visual-icon svg,
.connector-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.price-card.featured-price {
  border-color: rgba(47, 107, 82, 0.28);
  background: linear-gradient(180deg, #fffefa, #f3f8f0);
}

.upgrade-panel {
  align-items: start;
  gap: clamp(18px, 3vw, 32px);
  padding: clamp(22px, 4vw, 34px);
}

.upgrade-panel h2 {
  font-size: clamp(2rem, 3.2vw, 3.2rem);
}

.upgrade-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  width: min(100%, 420px);
}

.upgrade-actions .button,
.upgrade-actions button {
  width: 100%;
  justify-content: center;
}

.sso-options[hidden],
.login-divider[hidden] {
  display: none !important;
}

.login-hero {
  align-items: start;
}

.login-form {
  max-width: 520px;
}

/* CRM: top navigation instead of a long dark side rail. */
.crm-shell {
  display: block;
  background: var(--canvas);
}

.crm-sidebar {
  position: sticky;
  top: 0;
  z-index: 24;
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  height: auto;
  max-height: none;
  padding: 10px clamp(14px, 3vw, 30px);
  overflow-x: auto;
  overflow-y: hidden;
  color: var(--ink);
  background: rgba(251, 247, 239, 0.97);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 5px 18px rgba(23, 49, 38, 0.035);
}

.crm-logo {
  flex: 0 0 auto;
  justify-content: flex-start;
  min-width: 190px;
  min-height: 52px;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
}

.crm-sidebar nav {
  display: flex;
  align-items: center;
  gap: 7px;
  overflow-x: auto;
  padding: 4px 0;
}

.crm-sidebar nav a {
  flex: 0 0 auto;
  min-height: 36px;
  padding: 8px 11px;
  color: var(--green-dark);
  background: rgba(255, 254, 250, 0.75);
  border: 1px solid rgba(230, 222, 207, 0.85);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 720;
  white-space: nowrap;
}

.crm-sidebar nav a.nav-secondary {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 650;
}

.crm-sidebar nav a.active,
.crm-sidebar nav a:hover,
.crm-sidebar nav a.nav-secondary.active,
.crm-sidebar nav a.nav-secondary:hover {
  color: var(--ink);
  background: var(--soft-green);
  border-color: rgba(47, 107, 82, 0.28);
}

.crm-main {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(18px, 4vw, 40px);
}

.crm-header {
  align-items: flex-start;
  padding: clamp(18px, 3vw, 26px);
  background: rgba(255, 254, 250, 0.72);
  border: 1px solid rgba(230, 222, 207, 0.92);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.crm-account-actions {
  gap: 8px;
}

.crm-account-pill,
.crm-plan-pill {
  border-radius: 999px;
  background: var(--soft-green);
  border: 1px solid rgba(47, 107, 82, 0.18);
  color: var(--green-dark);
}

.crm-quick-nav {
  top: 73px;
  margin: 14px 0 22px;
  padding: 8px 0 12px;
  background: rgba(251, 247, 239, 0.95);
  border-bottom: 1px solid rgba(230, 222, 207, 0.9);
}

.crm-quick-nav a {
  background: rgba(255, 254, 250, 0.88);
  border-color: var(--line);
  color: var(--green-dark);
  border-radius: 999px;
}

.crm-quick-nav a.active,
.crm-quick-nav a:hover {
  background: var(--soft-green);
  border-color: rgba(47, 107, 82, 0.28);
  color: var(--ink);
}

.crm-dashboard {
  padding: clamp(22px, 4vw, 34px);
}

.crm-metrics {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.crm-metrics article strong {
  font-size: clamp(1.25rem, 2vw, 1.7rem);
}

.habit-panel,
.renewal-reminder {
  border-radius: 14px;
  background: rgba(240, 246, 237, 0.68);
  border-color: rgba(47, 107, 82, 0.16);
}

.habit-actions a {
  border-radius: 13px;
  background: #fffefa;
  border: 1px solid var(--line);
}

.quick-capture-form {
  align-items: end;
}

@media (max-width: 980px) {
  .hero,
  .page-hero,
  .login-hero {
    grid-template-columns: 1fr;
  }

  .crm-sidebar {
    align-items: flex-start;
    flex-direction: column;
  }

  .crm-sidebar nav {
    width: 100%;
  }

  .crm-header {
    display: grid;
  }

  .crm-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header .brand img,
  .crm-logo img {
    width: 184px;
  }

  .nav-links {
    gap: 10px;
  }

  .crm-metrics {
    grid-template-columns: 1fr;
  }
}
/* 2026-05-25 visible redesign correction: homepage must not look like a generic SaaS dashboard. */
body {
  background:
    linear-gradient(90deg, rgba(255, 254, 250, 0.94), rgba(250, 246, 235, 0.88)),
    var(--canvas);
}

.site-header {
  background: rgba(255, 254, 250, 0.96);
}

.hero.section-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.9fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  min-height: calc(100vh - 88px);
  padding-top: clamp(42px, 7vw, 92px);
  padding-bottom: clamp(38px, 6vw, 74px);
  background:
    radial-gradient(circle at 82% 22%, rgba(126, 146, 127, 0.16), transparent 28%),
    linear-gradient(180deg, #fffefa 0%, #fbf7ef 100%);
  border-bottom: 1px solid rgba(230, 222, 207, 0.8);
}

.hero-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--green-dark);
  font-size: 0.92rem;
  font-weight: 760;
}

.hero-copy .eyebrow::after {
  content: "";
  display: inline-block;
  width: 48px;
  height: 4px;
  background: var(--green-dark);
  border-radius: 999px;
}

.hero h1 {
  max-width: 770px;
  font-size: clamp(2.85rem, 5vw, 5.45rem);
  line-height: 1.02;
  font-weight: 760;
}

.hero-text {
  max-width: 610px;
  font-size: clamp(1.08rem, 1.6vw, 1.3rem);
}

.setup-expectations span,
.trust-row span {
  background: rgba(255, 254, 250, 0.9);
  border: 1px solid rgba(230, 222, 207, 0.95);
  border-radius: 999px;
}

.maker-hero-visual {
  display: grid;
  gap: 16px;
  align-self: stretch;
  align-content: center;
}

.maker-hero-card {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: center;
  padding: clamp(22px, 4vw, 44px);
  background:
    linear-gradient(180deg, rgba(255, 254, 250, 0.96), rgba(244, 248, 241, 0.88));
  border: 1px solid rgba(230, 222, 207, 0.98);
  border-radius: 28px;
  box-shadow: 0 18px 45px rgba(23, 49, 38, 0.08);
}

.maker-hero-card::before,
.maker-hero-card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.maker-hero-card::before {
  width: 92px;
  height: 92px;
  left: 28px;
  top: 26px;
  background: rgba(215, 116, 53, 0.11);
}

.maker-hero-card::after {
  width: 138px;
  height: 138px;
  right: 22px;
  bottom: 18px;
  background: rgba(79, 134, 190, 0.08);
}

.hero-line-art {
  position: relative;
  z-index: 1;
  width: min(100%, 430px);
  height: auto;
  fill: none;
  stroke: #173126;
  stroke-width: 5.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-line-art .hero-soft {
  fill: rgba(126, 146, 127, 0.13);
  stroke: none;
}

.hero-line-art rect:nth-of-type(2),
.hero-line-art path:nth-of-type(n+8),
.hero-line-art circle:nth-of-type(n+5) {
  stroke: var(--coral);
}

.maker-icon-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.maker-icon-row article {
  min-height: 150px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 18px;
  background: rgba(255, 254, 250, 0.94);
  border: 1px solid rgba(230, 222, 207, 0.96);
  border-radius: 22px;
  box-shadow: 0 10px 26px rgba(23, 49, 38, 0.055);
}

.maker-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
}

.maker-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.maker-icon.green {
  color: var(--green-dark);
  background: rgba(240, 246, 237, 1);
}

.maker-icon.blue {
  color: var(--blue);
  background: rgba(238, 246, 251, 1);
}

.maker-icon.coral {
  color: var(--coral);
  background: rgba(255, 241, 232, 1);
}

.maker-icon-row strong {
  color: var(--ink);
  font-size: 1.08rem;
}

.maker-icon-row small {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.35;
}

.brand-kit {
  background: #fffefa;
}

.brand-grid {
  align-items: stretch;
}

.brand-principles article {
  position: relative;
  padding-left: 72px;
}

.brand-principles article span {
  position: absolute;
  left: 22px;
  top: 22px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: #fffefa;
  background: var(--green-dark);
  border-radius: 50%;
}

.feature-grid article,
.price-card,
.seller-path-grid article,
.value-visual-card {
  border-radius: 20px;
}

@media (max-width: 980px) {
  .hero.section-band {
    grid-template-columns: 1fr;
  }

  .maker-hero-card {
    min-height: 300px;
  }
}

@media (max-width: 640px) {
  .maker-icon-row {
    grid-template-columns: 1fr;
  }

  .maker-icon-row article {
    min-height: 118px;
  }
}
/* 2026-05-25 full homepage reset: one calm maker-friendly system, not mixed corporate blocks. */
:root {
  --rs-paper: #fffefa;
  --rs-warm: #fbf6ec;
  --rs-line: #e6ddce;
  --rs-ink: #183126;
  --rs-muted: #607066;
  --rs-green: #5b8a68;
  --rs-sage: #7e927f;
  --rs-blue: #4f86be;
  --rs-orange: #d77435;
}
body { color: var(--rs-ink); background: var(--rs-paper); }
.site-header { border-bottom: 1px solid rgba(230, 221, 206, 0.9); background: rgba(255, 254, 250, 0.98); box-shadow: none; }
.nav-links a, .header-action, .button, button, input, select, textarea { border-radius: 14px; }
.nav-links a, .header-action { border-radius: 999px; }
.button.primary, button[type="submit"] { color: #fffefa; background: var(--rs-green); box-shadow: 0 10px 24px rgba(24, 49, 38, 0.12); }
.button.secondary { color: var(--rs-ink); background: #fffefa; border: 1px solid var(--rs-line); }
.calm-home { background: radial-gradient(circle at 88% 8%, rgba(126, 146, 127, 0.16), transparent 24rem), linear-gradient(180deg, #fffefa 0%, #fbf6ec 48%, #fffefa 100%); }
.calm-hero, .calm-section { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.calm-hero { display: grid; grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.82fr); gap: clamp(28px, 5vw, 68px); align-items: center; min-height: calc(100vh - 82px); padding: clamp(48px, 8vw, 96px) 0 clamp(44px, 7vw, 82px); }
.calm-hero-copy h1 { max-width: 780px; margin: 0; font-size: clamp(3.1rem, 6vw, 6.4rem); line-height: 0.98; letter-spacing: 0; color: var(--rs-ink); }
.calm-hero-copy .hero-text { max-width: 660px; margin-top: 22px; color: var(--rs-muted); font-size: clamp(1.12rem, 1.65vw, 1.32rem); line-height: 1.6; }
.eyebrow { color: var(--rs-green); font-weight: 800; }
.calm-hero-panel, .calm-card, .calm-builder-card, .space-lite-preview { background: rgba(255, 254, 250, 0.92); border: 1px solid var(--rs-line); border-radius: 22px; box-shadow: 0 14px 34px rgba(24, 49, 38, 0.07); }
.calm-hero-panel { padding: clamp(20px, 3vw, 30px); }
.panel-topline, .mini-record, .calm-step-list li { display: flex; gap: 14px; align-items: center; }
.panel-topline { justify-content: space-between; margin-bottom: 18px; }
.soft-badge { display: inline-flex; width: fit-content; align-items: center; padding: 7px 12px; color: var(--rs-green); background: rgba(240, 246, 237, 0.95); border-radius: 999px; font-weight: 800; font-size: 0.86rem; }
.calm-step-list { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.calm-step-list li { padding: 14px; background: #fffefa; border: 1px solid rgba(230, 221, 206, 0.88); border-radius: 18px; }
.calm-step-list b, .mini-record b, .calm-card h3, .space-lite-preview h3 { color: var(--rs-ink); }
.calm-step-list small, .mini-record small, .calm-card p, .calm-heading p, .space-lite-preview p { color: var(--rs-muted); line-height: 1.5; }
.line-icon { display: grid; flex: 0 0 auto; place-items: center; width: 58px; height: 58px; color: var(--rs-green); background: #f0f6ed; border-radius: 50%; }
.line-icon svg { width: 34px; height: 34px; fill: none; stroke: currentColor; stroke-width: 2.7; stroke-linecap: round; stroke-linejoin: round; }
.line-icon.blue { color: var(--rs-blue); background: #eef6fb; }
.line-icon.coral { color: var(--rs-orange); background: #fff1e8; }
.mini-record { display: grid; margin-top: 16px; padding: 18px; background: linear-gradient(135deg, rgba(240, 246, 237, 0.95), rgba(255, 241, 232, 0.78)); border: 1px solid rgba(230, 221, 206, 0.88); border-radius: 18px; }
.mini-record span { color: var(--rs-orange); font-weight: 800; font-size: 0.86rem; }
.calm-section { padding: clamp(46px, 7vw, 86px) 0; }
.calm-section.soft { width: 100%; padding-inline: max(16px, calc((100% - 1180px) / 2)); background: rgba(251, 246, 236, 0.86); border-block: 1px solid rgba(230, 221, 206, 0.76); }
.calm-heading { max-width: 760px; margin: 0 auto 28px; text-align: center; }
.calm-heading.left { margin-inline: 0; text-align: left; }
.calm-heading h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.65rem); line-height: 1.08; letter-spacing: 0; }
.calm-card-grid { display: grid; gap: 16px; }
.calm-card-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.calm-card { padding: clamp(20px, 3vw, 28px); }
.calm-card h3 { margin: 16px 0 8px; font-size: 1.28rem; letter-spacing: 0; }
.calm-card.compact h3 { margin-top: 0; }
.calm-builder-card, .calm-split { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr); gap: clamp(24px, 5vw, 56px); align-items: center; }
.calm-builder-card { padding: clamp(24px, 5vw, 44px); }
.calm-form { display: grid; gap: 14px; padding: 0; background: transparent; border: 0; box-shadow: none; }
.calm-form label { color: var(--rs-ink); font-weight: 750; }
.calm-form input, .calm-form select, .contact-form input, .contact-form select, .contact-form textarea { background: #fffefa; border: 1px solid var(--rs-line); }
.number-dot { display: grid; place-items: center; width: 42px; height: 42px; color: #fffefa; background: var(--rs-green); border-radius: 50%; font-weight: 900; }
.number-dot.blue { background: var(--rs-blue); }
.number-dot.coral { background: var(--rs-orange); }
.path-card h3 { margin-top: 18px; }
.space-lite-preview { min-height: 300px; padding: clamp(24px, 4vw, 38px); background: radial-gradient(circle at 84% 16%, rgba(126, 146, 127, 0.18), transparent 7rem), #fffefa; }
.space-lite-preview h3 { margin: 20px 0 10px; font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1; }
.field-lines { display: grid; gap: 10px; margin-top: 22px; }
.field-lines span { display: block; height: 46px; background: #fffefa; border: 1px solid var(--rs-line); border-radius: 14px; }
.field-lines button { min-height: 48px; color: #fffefa; background: var(--rs-green); border: 0; font-weight: 800; }
.pricing-simple .calm-card h3 { font-size: clamp(2rem, 3vw, 3rem); }
.featured-price-simple { border-color: rgba(215, 116, 53, 0.38); background: linear-gradient(180deg, #fffefa, #fff6ef); }
.trust-row-section { padding-bottom: clamp(62px, 8vw, 110px); }
.feature-grid article, .price-card, .seller-path-grid article, .value-visual-card, .brand-principles article, .brand-showcase, .builder-panel, .builder-preview, .contact-form, .referral-card, .trust-grid article, .community-preview article, .space-benefits article, .connector-grid div { border-radius: 20px !important; border-color: var(--rs-line) !important; background: rgba(255, 254, 250, 0.94) !important; box-shadow: 0 10px 26px rgba(24, 49, 38, 0.055) !important; }
@media (max-width: 900px) { .calm-hero, .calm-builder-card, .calm-split, .calm-card-grid.three { grid-template-columns: 1fr; } .calm-hero { min-height: auto; } }
@media (max-width: 560px) { .calm-hero-copy h1 { font-size: clamp(2.6rem, 14vw, 4rem); } .calm-hero, .calm-section { width: min(100% - 24px, 1180px); } }

/* 2026-05-25 CRM calmness pass: make daily actions obvious and defer lower-frequency tools. */
.crm-shell {
  background: linear-gradient(180deg, #fffefa 0%, #fbf6ec 100%);
}

.crm-sidebar {
  background: rgba(255, 254, 250, 0.98) !important;
  border-right: 1px solid var(--rs-line, #e6ddce) !important;
}

.crm-sidebar nav {
  gap: 8px !important;
}

.crm-sidebar nav a,
.crm-quick-nav a,
.crm-header-link,
.first-action-link {
  border-radius: 999px !important;
}

.crm-sidebar nav a {
  color: var(--rs-ink, #183126) !important;
  background: transparent !important;
  border: 1px solid transparent !important;
}

.crm-sidebar nav a.active,
.crm-sidebar nav a:hover,
.crm-quick-nav a.active,
.crm-header-link.active,
.first-action-link {
  color: #fffefa !important;
  background: var(--rs-green, #5b8a68) !important;
  border-color: var(--rs-green, #5b8a68) !important;
}

.crm-quick-nav {
  position: sticky;
  top: 76px;
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 12px;
  margin-bottom: 18px;
  background: rgba(255, 254, 250, 0.94);
  border: 1px solid var(--rs-line, #e6ddce);
  border-radius: 20px;
  box-shadow: 0 10px 26px rgba(24, 49, 38, 0.055);
}

.crm-section-heading h2,
.crm-header h1 {
  letter-spacing: 0;
}

.crm-metrics,
.habit-actions,
.workline-steps {
  gap: 12px;
}

.crm-metrics article,
.habit-panel,
.crm-panel,
.renewal-reminder,
.smart-upgrade-panel,
.dashboard-recent-work,
.dashboard-recent-list button,
.onboarding-progress,
.first-action-card {
  border-color: var(--rs-line, #e6ddce) !important;
  background: rgba(255, 254, 250, 0.94) !important;
  border-radius: 20px !important;
  box-shadow: 0 10px 26px rgba(24, 49, 38, 0.055) !important;
}

.crm-panel details:not([open]) {
  background: rgba(255, 254, 250, 0.78);
}

@media (max-width: 760px) {
  .dashboard-recent-work,
  .dashboard-recent-list {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 980px) {
  .crm-quick-nav {
    top: 0;
  }
}

.migration-demo-note {
  margin-top: 16px;
  padding: 18px;
  background: rgba(240, 246, 237, 0.78);
  border: 1px solid var(--rs-line, #e6ddce);
  border-radius: 18px;
}

.migration-demo-note h3 {
  margin: 8px 0 6px;
  color: var(--rs-ink, #183126);
}

.migration-demo-note p {
  margin: 0;
  color: var(--rs-muted, #607066);
}

.crm-header-link.quiet-link {
  color: var(--rs-ink, #183126) !important;
  background: rgba(255, 254, 250, 0.88) !important;
  border-color: var(--rs-line, #e6ddce) !important;
}

/* 2026-05-25 owner polish: larger logo, orange tag accents, tighter mobile hero spacing. */
.site-header .brand {
  min-width: 224px;
  min-height: 58px;
}

.site-header .brand img {
  width: 226px;
  max-height: 62px;
}

.soft-badge::before,
.eyebrow.tag-accent::before {
  content: "";
  display: inline-block;
  width: 0.78em;
  height: 0.78em;
  margin-right: 0.45em;
  background: #d77435;
  clip-path: polygon(12% 50%, 48% 14%, 88% 14%, 88% 54%, 52% 90%);
  vertical-align: -0.08em;
}

.soft-badge::after {
  content: "";
  width: 0.2em;
  height: 0.2em;
  margin-left: -0.52em;
  margin-right: 0.34em;
  background: #fffefa;
  border-radius: 50%;
  order: -1;
  transform: translateX(0.92em);
}

@media (max-width: 900px) {
  .calm-hero {
    gap: 22px;
    padding-top: 28px;
    padding-bottom: 30px;
  }

  .calm-hero-panel {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 58px;
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .site-header .brand {
    min-width: 196px;
    min-height: 48px;
  }

  .site-header .brand img,
  .crm-logo img {
    width: 196px;
  }

  .calm-hero {
    width: min(100% - 24px, 1180px);
    gap: 18px;
    padding-top: 18px;
    padding-bottom: 22px;
  }

  .calm-hero-copy .hero-text {
    margin-top: 14px;
  }
}

/* 2026-05-25 reference-card visual pass: line icons, softer rhythm, less corporate weight. */
body {
  font-weight: 500;
}

.site-header {
  backdrop-filter: blur(14px);
}

.nav-links a {
  color: var(--rs-muted, #607066);
  font-weight: 750;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--rs-ink, #183126);
  background: rgba(240, 246, 237, 0.92);
}

.header-action,
.button.primary,
button[type="submit"] {
  background: #6f8f76;
  border: 1px solid rgba(91, 138, 104, 0.28);
}

.header-action:hover,
.button.primary:hover,
button[type="submit"]:hover {
  background: #5b8a68;
}

.button.secondary {
  background: rgba(255, 254, 250, 0.92);
  border-color: rgba(215, 116, 53, 0.2);
}

.calm-home {
  background:
    radial-gradient(circle at 88% 9%, rgba(240, 246, 237, 0.94), transparent 16rem),
    radial-gradient(circle at 8% 48%, rgba(255, 241, 232, 0.72), transparent 18rem),
    linear-gradient(180deg, #fffefa 0%, #fbf6ec 45%, #fffefa 100%);
}

.calm-hero {
  align-items: center;
  min-height: auto;
  padding-top: clamp(34px, 6vw, 76px);
}

.calm-hero-copy h1,
.calm-heading h2,
.page-hero h1 {
  font-family: Inter, system-ui, sans-serif;
  font-weight: 850;
}

.calm-hero-copy h1 {
  max-width: 720px;
  font-size: clamp(2.75rem, 5.4vw, 5.45rem);
}

.calm-hero-copy .hero-text {
  max-width: 610px;
}

.calm-heading {
  position: relative;
}

.calm-heading:not(.left)::before,
.calm-heading:not(.left)::after {
  content: "";
  position: absolute;
  top: 0.94rem;
  width: min(18vw, 180px);
  height: 2px;
  background: rgba(91, 138, 104, 0.42);
}

.calm-heading:not(.left)::before {
  right: calc(50% + 190px);
}

.calm-heading:not(.left)::after {
  left: calc(50% + 190px);
}

.reference-hero-art {
  display: grid;
  place-items: center;
  min-height: 190px;
  margin: 2px 0 18px;
  border: 1px solid rgba(230, 221, 206, 0.82);
  border-radius: 20px;
  background: #fffefa;
}

.reference-hero-art svg {
  width: min(100%, 330px);
  height: auto;
  fill: none;
  stroke: #17261f;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reference-hero-art .soft-fill {
  fill: #eef4e9;
  stroke: none;
}

.reference-hero-art rect:nth-of-type(2),
.reference-hero-art path:nth-of-type(n+4),
.reference-hero-art circle:nth-of-type(n+3) {
  stroke: #5b8a68;
}

.calm-card-grid.three {
  gap: 18px;
}

.calm-card,
.calm-builder-card,
.calm-hero-panel,
.space-lite-preview {
  border-radius: 18px;
  box-shadow: 0 8px 18px rgba(24, 49, 38, 0.045);
}

.calm-card {
  position: relative;
  overflow: hidden;
}

.calm-card::before {
  content: "";
  position: absolute;
  inset: 14px auto auto 14px;
  width: 72px;
  height: 72px;
  background: rgba(240, 246, 237, 0.88);
  border-radius: 50%;
  z-index: 0;
}

.calm-card > * {
  position: relative;
  z-index: 1;
}

.calm-card .line-icon,
.path-card .line-icon {
  margin-bottom: 8px;
  background: transparent;
}

.path-card .number-dot {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  font-size: 0.95rem;
}

.pricing-simple .calm-card::before {
  background: rgba(238, 246, 251, 0.88);
}

.pricing-simple .featured-price-simple::before {
  background: rgba(255, 241, 232, 0.95);
}

.trust-row-section .calm-card.compact {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px 16px;
  align-items: start;
}

.trust-row-section .calm-card.compact h3 {
  margin-top: 4px;
}

.trust-row-section .calm-card.compact p {
  grid-column: 2;
  margin-top: -6px;
}

.setup-expectations span {
  background: rgba(255, 254, 250, 0.7);
  border: 1px solid rgba(230, 221, 206, 0.86);
}

@media (max-width: 900px) {
  .calm-heading:not(.left)::before,
  .calm-heading:not(.left)::after {
    display: none;
  }

  .reference-hero-art {
    min-height: 150px;
  }
}

@media (max-width: 560px) {
  .calm-hero-copy h1 {
    font-size: clamp(2.4rem, 12vw, 3.5rem);
  }

  .calm-card::before {
    width: 62px;
    height: 62px;
  }

  .trust-row-section .calm-card.compact {
    grid-template-columns: 1fr;
  }

  .trust-row-section .calm-card.compact p {
    grid-column: auto;
    margin-top: 0;
  }
}

/* 2026-05-25 spacing correction: compact icon-led homepage, not big empty panels. */
.calm-hero {
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.68fr);
  gap: clamp(22px, 3.4vw, 44px);
  padding-top: clamp(24px, 4vw, 52px);
  padding-bottom: clamp(26px, 4.8vw, 58px);
}

.calm-hero-copy h1 {
  max-width: 680px;
  font-size: clamp(2.65rem, 4.8vw, 5rem);
}

.calm-hero-copy .hero-text {
  max-width: 590px;
  margin-top: 16px;
}

.calm-hero-panel {
  padding: clamp(16px, 2.1vw, 22px);
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(24, 49, 38, 0.045);
}

.action-icon-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin: 10px 0 14px;
}

.action-icon {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  min-width: 0;
  color: var(--rs-green, #5b8a68);
  background: radial-gradient(circle, rgba(240, 246, 237, 0.96), rgba(255, 254, 250, 0.78));
  border: 1px solid rgba(230, 221, 206, 0.76);
  border-radius: 50%;
}

.action-icon.blue {
  color: var(--rs-blue, #4f86be);
  background: radial-gradient(circle, rgba(238, 246, 251, 0.98), rgba(255, 254, 250, 0.78));
}

.action-icon.coral {
  color: var(--rs-orange, #d77435);
  background: radial-gradient(circle, rgba(255, 241, 232, 0.98), rgba(255, 254, 250, 0.78));
}

.action-icon svg {
  width: 68%;
  height: 68%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.calm-step-list {
  gap: 8px;
}

.calm-step-list li {
  padding: 10px 12px;
  border-radius: 14px;
}

.line-icon {
  width: 48px;
  height: 48px;
}

.line-icon svg {
  width: 29px;
  height: 29px;
}

.mini-record {
  margin-top: 10px;
  padding: 13px 14px;
  border-radius: 14px;
}

.calm-section {
  padding-top: clamp(34px, 5vw, 58px);
  padding-bottom: clamp(34px, 5vw, 58px);
}

.calm-section.soft {
  padding-top: clamp(34px, 5vw, 56px);
  padding-bottom: clamp(34px, 5vw, 56px);
}

.calm-heading {
  margin-bottom: 20px;
}

.calm-heading h2 {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
}

.calm-card,
.calm-builder-card,
.space-lite-preview {
  border-radius: 16px;
  box-shadow: 0 7px 18px rgba(24, 49, 38, 0.04);
}

.calm-card {
  padding: clamp(16px, 2.2vw, 22px);
}

.calm-card::before {
  width: 58px;
  height: 58px;
}

.calm-card h3 {
  margin-top: 10px;
}

.calm-builder-card,
.calm-split {
  gap: clamp(20px, 3.5vw, 38px);
}

@media (max-width: 900px) {
  .calm-hero {
    padding-top: 18px;
    padding-bottom: 24px;
  }

  .action-icon-strip {
    grid-template-columns: repeat(5, minmax(42px, 1fr));
  }
}

@media (max-width: 560px) {
  .calm-hero-copy h1 {
    font-size: clamp(2.25rem, 10vw, 3.25rem);
  }

  .action-icon-strip {
    gap: 6px;
  }

  .calm-section,
  .calm-section.soft {
    padding-top: 28px;
    padding-bottom: 28px;
  }
}

/* 2026-05-25 cleanup: remove hero label row and path numbers for a quieter scan. */
.calm-hero-panel .panel-topline {
  display: none;
}

.calm-hero-panel .action-icon-strip {
  margin-top: 0;
}

.path-card .number-dot {
  display: none;
}

.path-card .line-icon {
  margin-top: 0;
}

/* 2026-05-25 seller proof: sourced stats with compact visual cards. */
.seller-proof-section {
  padding-top: clamp(30px, 4.4vw, 52px);
}

.seller-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.seller-proof-card {
  position: relative;
  display: grid;
  gap: 8px;
  min-height: 0;
  padding: 18px;
  background: rgba(255, 254, 250, 0.94);
  border: 1px solid var(--rs-line, #e6ddce);
  border-radius: 16px;
  box-shadow: 0 7px 18px rgba(24, 49, 38, 0.04);
}

.seller-proof-card .action-icon {
  width: 64px;
  height: 64px;
}

.seller-proof-card strong {
  display: block;
  margin-top: 4px;
  color: var(--rs-ink, #183126);
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 1;
}

.seller-proof-card h3 {
  margin: 0;
  color: var(--rs-ink, #183126);
  font-size: 1.12rem;
  letter-spacing: 0;
}

.seller-proof-card p {
  margin: 0;
  color: var(--rs-muted, #607066);
  line-height: 1.48;
}

.seller-proof-card a {
  width: fit-content;
  color: var(--rs-green, #5b8a68);
  font-weight: 800;
  text-decoration: none;
}

.seller-proof-card a:hover,
.seller-proof-card a:focus-visible {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .seller-proof-grid {
    grid-template-columns: 1fr;
  }

  .seller-proof-card {
    grid-template-columns: auto 1fr;
    align-items: center;
  }

  .seller-proof-card p,
  .seller-proof-card a {
    grid-column: 2;
  }
}

@media (max-width: 560px) {
  .seller-proof-card {
    grid-template-columns: 1fr;
  }

  .seller-proof-card p,
  .seller-proof-card a {
    grid-column: auto;
  }
}

/* 2026-05-25 beta gate. */
.beta-gate-body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(240, 246, 237, 0.94), transparent 18rem),
    radial-gradient(circle at 86% 74%, rgba(255, 241, 232, 0.82), transparent 20rem),
    #fffefa;
}

.beta-gate {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: clamp(20px, 4vw, 48px);
}

.beta-gate-panel {
  width: min(720px, 100%);
  padding: clamp(24px, 5vw, 46px);
  background: rgba(255, 254, 250, 0.96);
  border: 1px solid var(--rs-line, #e6ddce);
  border-radius: 20px;
  box-shadow: 0 18px 48px rgba(24, 49, 38, 0.08);
}

.beta-gate-head {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin-bottom: 24px;
  text-align: center;
}

.beta-gate-head h1 {
  margin: 0;
  color: var(--rs-ink, #183126);
  font-size: clamp(2.7rem, 8vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.beta-gate-head img {
  width: min(300px, 86%);
  height: auto;
}

.beta-gate-head p {
  max-width: 560px;
  margin: 0;
  color: var(--rs-muted, #607066);
  font-size: 1.05rem;
  line-height: 1.58;
}

.beta-signup-form {
  display: grid;
  gap: 14px;
}

.beta-signup-form label {
  display: grid;
  gap: 7px;
  color: var(--rs-ink, #183126);
  font-weight: 800;
}

.beta-signup-form input,
.beta-signup-form select,
.beta-signup-form textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid var(--rs-line, #e6ddce);
  border-radius: 14px;
  background: #fffefa;
  color: var(--rs-ink, #183126);
  font: inherit;
  padding: 13px 14px;
}

.beta-signup-form textarea {
  resize: vertical;
}

.beta-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.beta-signup-form .button {
  width: 100%;
  min-height: 52px;
}

.beta-signup-form .form-status {
  min-height: 1.4em;
  margin: 0;
  color: var(--rs-green, #5b8a68);
  font-weight: 800;
  text-align: center;
}

.beta-provider {
  display: grid;
  justify-items: center;
  gap: 10px;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(31, 44, 34, 0.12);
  color: rgba(31, 44, 34, 0.66);
  font-size: 0.82rem;
  line-height: 1.4;
  text-align: center;
}

.beta-provider-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.beta-legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 14px;
  margin: 0;
  font-size: 0.8rem;
}

.beta-legal-links a {
  color: #315f45;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.beta-legal-links a:hover {
  color: #a55321;
}
.beta-trust-note {
  max-width: 560px;
  margin: 0;
  color: rgba(31, 44, 34, 0.62);
  font-size: 0.78rem;
  line-height: 1.55;
}

.beta-provider strong {
  color: rgba(31, 44, 34, 0.82);
  font-weight: 700;
}

.beta-provider a {
  color: #477558;
  font-weight: 700;
  text-decoration: none;
}

.beta-provider a:hover {
  text-decoration: underline;
}

.smittinn-mark {
  display: inline-grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border: 1px solid rgba(199, 117, 58, 0.35);
  border-radius: 999px;
  background: rgba(199, 117, 58, 0.1);
  color: #c7753a;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0;
}

.beta-visual {
  margin: 22px auto 24px;
  overflow: hidden;
  border: 1px solid rgba(230, 221, 206, 0.9);
  border-radius: 18px;
  background: #fffefa;
  box-shadow: 0 14px 34px rgba(24, 49, 38, 0.07);
}

.beta-visual img {
  display: block;
  width: 100%;
  height: auto;
}
.beta-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 0;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(240, 246, 237, 0.96);
  color: #477558;
  font-size: 0.9rem;
  font-weight: 800;
}

.beta-gate-head h1 {
  max-width: 640px;
  font-size: clamp(2rem, 5.8vw, 3.55rem);
  line-height: 1.05;
}
/* 2026-05-25 owner beta signup directory. */
.beta-signups-shell {
  width: min(980px, 100%);
}

.beta-signup-directory-list {
  display: grid;
  gap: 12px;
}

.beta-signup-directory-card {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(230, 221, 206, 0.95);
  border-radius: 14px;
  background: #fffefa;
}

.beta-signup-directory-card div {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}

.beta-signup-directory-card strong {
  color: var(--rs-ink, #183126);
  font-size: 1.05rem;
}

.beta-signup-directory-card a {
  color: #477558;
  font-weight: 800;
  text-decoration: none;
}

.beta-signup-directory-card span {
  width: fit-content;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(240, 246, 237, 0.96);
  color: #477558;
  font-size: 0.85rem;
  font-weight: 800;
}

.beta-signup-directory-card p {
  margin: 0;
  color: var(--rs-muted, #607066);
  line-height: 1.45;
}

.beta-signup-directory-card small {
  color: rgba(31, 44, 34, 0.58);
  font-weight: 700;
}
.owner-action-row {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 14px;
}

@media (max-width: 640px) {
  .owner-action-row {
    justify-content: stretch;
  }

  .owner-action-row .button {
    width: 100%;
  }
}
.beta-add-link {
  width: fit-content;
  justify-self: start;
}

.beta-extra-links {
  display: grid;
  gap: 12px;
}

.beta-directory-opt-in {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  padding: 13px 14px;
  border: 1px solid rgba(230, 221, 206, 0.95);
  border-radius: 14px;
  background: rgba(240, 246, 237, 0.42);
  font-weight: 700;
}

.beta-directory-opt-in input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.beta-signup-links {
  display: grid;
  gap: 4px;
  margin: 0;
  padding-left: 18px;
}

.beta-signup-links a {
  overflow-wrap: anywhere;
}
.beta-directory-head {
  gap: 14px;
}

.beta-directory-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.beta-directory-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 14px;
}

.beta-directory-stats span {
  padding: 7px 10px;
  border: 1px solid rgba(230, 221, 206, 0.95);
  border-radius: 999px;
  background: rgba(240, 246, 237, 0.72);
  color: #477558;
  font-size: 0.9rem;
  font-weight: 800;
}

.beta-directory-stats strong {
  color: var(--rs-ink, #183126);
}

.beta-signup-directory-card.vendor-opt-in {
  border-color: rgba(199, 117, 58, 0.42);
  background: linear-gradient(135deg, #fffefa, rgba(255, 240, 232, 0.46));
}

@media (max-width: 680px) {
  .beta-directory-actions,
  .beta-directory-actions .button {
    width: 100%;
  }
}

/* 2026-05-25 homepage beta waitlist posture. */
.beta-home-section {
  padding-top: clamp(30px, 4.8vw, 58px);
}

.beta-home-split {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(360px, 1fr);
  gap: clamp(20px, 4vw, 46px);
  align-items: center;
}

.beta-home-copy,
.beta-home-visual,
.waitlist-product-option {
  background: rgba(255, 254, 250, 0.94);
  border: 1px solid var(--rs-line, #e6ddce);
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(24, 49, 38, 0.045);
}

.beta-home-copy {
  padding: clamp(20px, 3.6vw, 34px);
}

.beta-home-copy h2 {
  margin: 0 0 10px;
  color: var(--rs-ink, #183126);
  font-size: clamp(1.85rem, 3vw, 2.75rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.beta-home-copy > p {
  margin: 0 0 18px;
  color: var(--rs-muted, #607066);
  line-height: 1.58;
}

.beta-home-form {
  gap: 12px;
}

.beta-home-form .button {
  min-height: 48px;
}

.beta-home-visual {
  margin: 0;
  overflow: hidden;
}

.beta-home-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.waitlist-product-card {
  align-items: start;
}

.waitlist-product-grid {
  display: grid;
  gap: 12px;
}

.waitlist-product-option {
  display: grid;
  gap: 6px;
  padding: 16px;
  color: inherit;
  text-decoration: none;
}

.waitlist-product-option strong {
  color: var(--rs-ink, #183126);
  font-size: 1.05rem;
}

.waitlist-product-option span {
  color: var(--rs-muted, #607066);
  line-height: 1.5;
}

.waitlist-product-option:hover {
  border-color: rgba(91, 138, 104, 0.38);
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .beta-home-split {
    grid-template-columns: 1fr;
  }
}
/* 2026-05-25 homepage craft card style anchor. */
.calm-home {
  background:
    radial-gradient(circle at 12% 8%, rgba(240, 246, 237, 0.78), transparent 18rem),
    radial-gradient(circle at 88% 26%, rgba(255, 241, 232, 0.68), transparent 18rem),
    linear-gradient(180deg, #fffefa 0%, #fbf7ef 48%, #fffefa 100%);
}

.calm-hero,
.calm-section {
  position: relative;
}

.calm-hero::before,
.beta-home-section::after,
.craft-path-section::before,
.craft-trust-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: 0.52;
  background-repeat: no-repeat;
  background-size: contain;
}

.calm-hero::before {
  left: max(-38px, -4vw);
  bottom: 10px;
  width: 122px;
  height: 164px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 120 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%237e927f' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M46 150c-4-36 2-70 18-103'/%3E%3Cpath d='M57 67c-20-8-32-20-36-38 19 3 31 15 36 38z'/%3E%3Cpath d='M65 50c12-20 28-31 48-32-5 20-21 31-48 32z'/%3E%3Cpath d='M51 106c-19-3-34-14-44-32 22 0 36 10 44 32z'/%3E%3Cpath d='M63 92c16-14 33-19 51-15-9 17-25 22-51 15z'/%3E%3C/g%3E%3C/svg%3E");
}

.beta-home-section::after {
  right: max(-30px, -3vw);
  top: 24px;
  width: 120px;
  height: 150px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 120 150' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23b4bf9b' stroke-width='2' stroke-linecap='round'%3E%3Cpath stroke-dasharray='5 7' d='M8 66c22-31 55-41 98-28'/%3E%3Cpath d='M70 16h28v28H70z'/%3E%3Cpath d='M78 25h12M78 34h8'/%3E%3Cpath d='M30 96h34v22H30z'/%3E%3Cpath d='M33 99l14 10 14-10'/%3E%3C/g%3E%3C/svg%3E");
}

.craft-path-section::before {
  left: max(-24px, -2vw);
  top: 14px;
  width: 108px;
  height: 108px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23d77435' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 52 52 20h24v24L44 76z'/%3E%3Ccircle cx='68' cy='30' r='4'/%3E%3Cpath d='M32 58h22'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.22;
}

.craft-trust-section::after {
  right: max(-20px, -2vw);
  bottom: 22px;
  width: 132px;
  height: 132px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%237e927f' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M60 106c-2-25 2-47 13-67'/%3E%3Cpath d='M67 58c-17-5-28-15-33-30 17 0 28 10 33 30z'/%3E%3Cpath d='M72 45c10-17 24-27 42-29-3 17-17 27-42 29z'/%3E%3Cpath d='M55 86c-16-2-29-11-39-25 19-1 32 8 39 25z'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.42;
}

.calm-hero-panel,
.calm-card,
.calm-builder-card,
.space-lite-preview,
.seller-proof-card,
.beta-home-copy,
.beta-home-visual,
.waitlist-product-option {
  border-color: rgba(218, 208, 190, 0.86) !important;
  border-radius: 18px !important;
  background: rgba(255, 254, 250, 0.88) !important;
  box-shadow: 0 9px 24px rgba(24, 49, 38, 0.045) !important;
}

.calm-card,
.seller-proof-card,
.waitlist-product-option {
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.calm-card:hover,
.seller-proof-card:hover,
.waitlist-product-option:hover {
  border-color: rgba(91, 138, 104, 0.32) !important;
  box-shadow: 0 12px 28px rgba(24, 49, 38, 0.06) !important;
  transform: translateY(-1px);
}

.calm-heading:not(.left)::before,
.calm-heading:not(.left)::after {
  background: rgba(91, 138, 104, 0.32) !important;
}

.calm-heading h2,
.beta-home-copy h2 {
  color: var(--rs-ink, #183126);
  font-weight: 820;
}

.calm-card h3,
.seller-proof-card h3,
.waitlist-product-option strong {
  font-weight: 800;
}

.line-icon,
.action-icon {
  border: 1px solid rgba(126, 146, 127, 0.18);
}

.action-icon.coral,
.line-icon.coral {
  border-color: rgba(215, 116, 53, 0.2);
}

.action-icon.blue,
.line-icon.blue {
  border-color: rgba(52, 103, 164, 0.16);
}

.beta-home-visual {
  position: relative;
  background: #fffefa !important;
}

.beta-home-visual::before,
.beta-home-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.beta-home-visual::before {
  border: 1px solid rgba(126, 146, 127, 0.18);
  border-radius: inherit;
}

.beta-home-visual::after {
  background: radial-gradient(circle at 50% 70%, rgba(240, 246, 237, 0.18), transparent 36%);
}

.waitlist-product-grid {
  grid-template-columns: 1fr;
}

.waitlist-product-option::before {
  content: "";
  width: 36px;
  height: 36px;
  margin-bottom: 2px;
  border: 2px solid #5b8a68;
  border-radius: 999px;
  background: rgba(240, 246, 237, 0.72);
}

.waitlist-product-option:nth-child(2)::before {
  border-color: #3467a4;
  background: rgba(238, 246, 251, 0.78);
}

.waitlist-product-option:nth-child(3)::before {
  border-color: #d77435;
  background: rgba(255, 241, 232, 0.86);
}

@media (max-width: 900px) {
  .calm-hero::before,
  .beta-home-section::after,
  .craft-path-section::before,
  .craft-trust-section::after {
    display: none;
  }
}
/* 2026-05-26 CRM/backend craft alignment pass. */
.crm-shell,
.owner-page,
body:has(.owner-hero) {
  background:
    radial-gradient(circle at 8% 6%, rgba(240, 246, 237, 0.76), transparent 20rem),
    radial-gradient(circle at 92% 18%, rgba(255, 241, 232, 0.72), transparent 18rem),
    linear-gradient(180deg, #fffefa 0%, #fbf7ef 52%, #fffefa 100%);
  color: var(--rs-ink, #183126);
}

.crm-sidebar {
  background: rgba(255, 254, 250, 0.94) !important;
  border-right: 1px solid rgba(218, 208, 190, 0.9) !important;
  box-shadow: 10px 0 28px rgba(24, 49, 38, 0.045) !important;
}

.crm-logo img {
  max-width: 190px;
  height: auto;
}

.crm-sidebar nav {
  gap: 8px !important;
}

.crm-sidebar nav a,
.crm-header-link,
.crm-sign-out,
.first-action-link,
.owner-action-row .button,
.owner-token-form .button,
.admin-account-grid button,
.owner-ops-actions button {
  border-radius: 999px !important;
  border: 1px solid rgba(218, 208, 190, 0.86) !important;
  background: rgba(255, 254, 250, 0.76) !important;
  color: var(--rs-ink, #183126) !important;
  box-shadow: none !important;
}

.crm-sidebar nav a.active,
.crm-sidebar nav a:hover,
.crm-header-link:hover,
.first-action-link:hover,
.owner-action-row .button:hover,
.owner-token-form .button:hover,
.admin-account-grid button:hover:not(:disabled),
.owner-ops-actions button:hover {
  background: rgba(240, 246, 237, 0.94) !important;
  border-color: rgba(91, 138, 104, 0.36) !important;
  color: #315f45 !important;
}

.crm-sidebar nav a[href="#contacts"]::before,
.crm-sidebar nav a[href="#quick-capture"]::before,
.crm-sidebar nav a[href="#automations"]::before,
.crm-sidebar nav a[href="#orders"]::before,
.crm-sidebar nav a[href="#quotes"]::before,
.crm-sidebar nav a[href="#migration"]::before,
.crm-quick-nav a::before {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border: 2px solid #5b8a68;
  border-radius: 999px;
  background: rgba(240, 246, 237, 0.9);
}

.crm-sidebar nav a[href="#automations"]::before,
.crm-quick-nav a:nth-child(3)::before,
.crm-quick-nav a:nth-child(6)::before {
  border-color: #3467a4;
  background: rgba(238, 246, 251, 0.9);
}

.crm-sidebar nav a[href="#quotes"]::before,
.crm-quick-nav a:nth-child(5)::before {
  border-color: #d77435;
  background: rgba(255, 241, 232, 0.92);
}

.crm-main {
  background: transparent !important;
}

.crm-header,
.crm-dashboard,
.crm-panel,
.crm-board,
.crm-grid-two > article,
.crm-metrics article,
.renewal-reminder,
.habit-panel,
.owner-hero,
.owner-section,
.owner-focus-card,
.owner-note,
.owner-work-grid article,
.owner-metrics article,
.owner-ops-panel,
.owner-dashboard,
.owner-token-form,
.owner-metric-grid article,
.owner-queue-card,
.owner-goals-panel,
.owner-panel,
.beta-signups-shell .owner-panel {
  background: rgba(255, 254, 250, 0.9) !important;
  border: 1px solid rgba(218, 208, 190, 0.86) !important;
  border-radius: 18px !important;
  box-shadow: 0 9px 24px rgba(24, 49, 38, 0.045) !important;
}

.crm-header {
  align-items: center;
  gap: 16px;
}

.crm-header h1,
.crm-section-heading h2,
.owner-hero h1,
.section-heading h2,
.owner-focus-card h2,
.owner-goals-panel h2,
.owner-queue-card h2 {
  color: var(--rs-ink, #183126) !important;
  letter-spacing: 0 !important;
}

.crm-section-heading p,
.crm-header .eyebrow + h1 + p,
.owner-hero .hero-text,
.owner-focus-card p,
.owner-note p,
.owner-work-grid p,
.owner-ops-list p,
.owner-queue-card p {
  color: var(--rs-muted, #607066) !important;
}

.crm-quick-nav {
  position: sticky;
  top: 72px;
  z-index: 7;
  display: flex !important;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px;
  margin-bottom: 18px;
  background: rgba(255, 254, 250, 0.88) !important;
  border: 1px solid rgba(218, 208, 190, 0.82) !important;
  border-radius: 999px !important;
  box-shadow: 0 8px 20px rgba(24, 49, 38, 0.04) !important;
  backdrop-filter: blur(10px);
}

.crm-quick-nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--rs-ink, #183126);
  font-weight: 800;
}

.crm-quick-nav a:hover {
  background: rgba(240, 246, 237, 0.88);
}

.crm-metrics article,
.owner-metrics article,
.owner-metric-grid article {
  position: relative;
  overflow: hidden;
}

.crm-metrics article::before,
.owner-metrics article::before,
.owner-metric-grid article::before {
  content: "";
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border: 2px solid rgba(91, 138, 104, 0.45);
  border-radius: 999px;
  background: rgba(240, 246, 237, 0.7);
}

.crm-metrics article:nth-child(2)::before,
.owner-metrics article:nth-child(2)::before,
.owner-metric-grid article:nth-child(2)::before {
  border-color: rgba(52, 103, 164, 0.42);
  background: rgba(238, 246, 251, 0.76);
}

.crm-metrics article:nth-child(3)::before,
.owner-metrics article:nth-child(3)::before,
.owner-metric-grid article:nth-child(3)::before {
  border-color: rgba(215, 116, 53, 0.42);
  background: rgba(255, 241, 232, 0.78);
}

.status,
.crm-account-pill,
.crm-plan-pill {
  border-radius: 999px !important;
  border: 1px solid rgba(218, 208, 190, 0.78) !important;
  background: rgba(240, 246, 237, 0.86) !important;
  color: #315f45 !important;
}

.crm-plan-pill,
.status.custom {
  background: rgba(255, 241, 232, 0.9) !important;
  color: #a55321 !important;
}

input,
select,
textarea {
  border-radius: 14px !important;
  border-color: rgba(218, 208, 190, 0.92) !important;
  background: rgba(255, 254, 250, 0.92) !important;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(91, 138, 104, 0.5) !important;
  box-shadow: 0 0 0 4px rgba(91, 138, 104, 0.12) !important;
  outline: 0;
}

.owner-table,
.owner-table-row,
.owner-list-item,
.owner-ops-list article {
  border-color: rgba(218, 208, 190, 0.82) !important;
  background: rgba(255, 254, 250, 0.78) !important;
}

@media (max-width: 900px) {
  .crm-sidebar {
    box-shadow: 0 8px 24px rgba(24, 49, 38, 0.04) !important;
  }

  .crm-quick-nav {
    top: 0;
    border-radius: 18px !important;
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .crm-header,
  .owner-hero {
    border-radius: 16px !important;
  }
}
/* 2026-05-25 beta/home refinement: concise form, aligned visual, edge-only leaf accents. */
.calm-home .calm-hero {
  min-height: auto !important;
  padding-top: clamp(34px, 5vw, 62px) !important;
  padding-bottom: clamp(30px, 5vw, 58px) !important;
  gap: clamp(22px, 4vw, 44px) !important;
}

.calm-home .calm-section,
.calm-home .calm-section.soft {
  padding-top: clamp(34px, 5vw, 58px) !important;
  padding-bottom: clamp(34px, 5vw, 58px) !important;
}

.calm-home .calm-hero::before,
.calm-home .beta-home-section::after,
.calm-home .craft-path-section::before,
.calm-home .craft-trust-section::after {
  pointer-events: none !important;
  z-index: 0 !important;
  opacity: 0.24 !important;
}

.calm-home .calm-hero::before {
  display: block !important;
  left: auto !important;
  right: 2vw !important;
  top: auto !important;
  bottom: 12px !important;
  width: clamp(90px, 12vw, 160px) !important;
  height: clamp(90px, 12vw, 160px) !important;
  transform: rotate(8deg) !important;
}

.calm-home .beta-home-section::after {
  display: block !important;
  right: auto !important;
  left: -32px !important;
  top: auto !important;
  bottom: 18px !important;
  width: clamp(92px, 11vw, 150px) !important;
  height: clamp(92px, 11vw, 150px) !important;
  transform: rotate(-7deg) !important;
}

.calm-home .craft-path-section::before,
.calm-home .craft-trust-section::after {
  display: none !important;
}

.beta-home-section {
  overflow: hidden !important;
}

.beta-home-split {
  grid-template-columns: minmax(320px, 0.88fr) minmax(360px, 1.12fr) !important;
  gap: clamp(18px, 3vw, 32px) !important;
  align-items: start !important;
}

.beta-home-copy {
  align-self: start;
  padding: clamp(18px, 2.6vw, 28px) !important;
}

.beta-home-copy h2 {
  font-size: clamp(1.7rem, 2.4vw, 2.35rem) !important;
}

.beta-home-copy > p {
  margin-bottom: 14px !important;
}

.beta-home-form.compact-beta-form {
  display: grid;
  gap: 10px !important;
}

.beta-required-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.beta-optional-details {
  display: block;
  padding: 10px 12px;
  border: 1px solid rgba(218, 208, 190, 0.86);
  border-radius: 14px;
  background: rgba(255, 254, 250, 0.68);
}

.beta-optional-details summary {
  cursor: pointer;
  color: #315f45;
  font-weight: 800;
}

.beta-optional-details label,
.beta-optional-details .beta-add-link,
.beta-optional-details .beta-extra-links {
  margin-top: 10px;
}

.beta-home-visual {
  align-self: start;
}

.beta-home-visual img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.beta-trust-notes {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  text-align: left;
}

.beta-trust-notes section {
  border: 1px solid rgba(218, 208, 190, 0.78);
  border-radius: 14px;
  background: rgba(255, 254, 250, 0.7);
  padding: 12px 14px;
}

.beta-trust-notes h2 {
  margin: 0 0 4px;
  color: #173528;
  font-size: 0.95rem;
}

.beta-trust-notes p {
  margin: 0;
  color: #53645d;
  font-size: 0.9rem;
  line-height: 1.5;
}

.waitlist-product-option::before {
  display: none !important;
}

.waitlist-product-option {
  position: relative;
  padding-left: 18px !important;
}

.waitlist-product-option::after {
  content: "";
  position: absolute;
  left: 0;
  top: 17px;
  width: 4px;
  height: calc(100% - 34px);
  border-radius: 999px;
  background: #5b8a68;
}

.waitlist-product-option:nth-child(2)::after {
  background: #3467a4;
}

.waitlist-product-option:nth-child(3)::after {
  background: #d77435;
}

@media (max-width: 900px) {
  .beta-home-split {
    grid-template-columns: 1fr !important;
  }

  .calm-home .calm-hero::before,
  .calm-home .beta-home-section::after {
    opacity: 0.14 !important;
    width: 96px !important;
    height: 96px !important;
  }
}

@media (max-width: 620px) {
  .beta-required-grid {
    grid-template-columns: 1fr;
  }
}
/* 2026-05-25 icon clarity pass: visible labels and clearer action badges. */
.action-icon-strip {
  gap: 10px !important;
}

.action-icon {
  aspect-ratio: auto !important;
  min-height: 86px;
  padding: 10px 6px 8px;
  border-radius: 999px !important;
  align-content: center;
  gap: 4px;
}

.action-icon svg {
  width: 46px !important;
  height: 46px !important;
}

.action-icon small {
  display: block;
  color: #26332d;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
}

.action-icon .icon-badge {
  fill: #fffefa;
  stroke: currentColor;
  stroke-width: 2.7;
}

.action-icon .icon-badge-mark {
  stroke-width: 3.1;
}

@media (max-width: 520px) {
  .action-icon-strip {
    grid-template-columns: repeat(5, minmax(58px, 1fr));
    gap: 6px !important;
  }

  .action-icon {
    min-height: 76px;
    padding: 8px 4px 7px;
  }

  .action-icon svg {
    width: 38px !important;
    height: 38px !important;
  }

  .action-icon small {
    font-size: 0.62rem;
  }
}
/* 2026-05-25 beta section balance: align image with signup and keep leaf accents out of controls. */
.beta-home-split {
  grid-template-columns: minmax(340px, 0.82fr) minmax(420px, 1.18fr) !important;
  align-items: stretch !important;
}

.beta-home-copy,
.beta-home-visual {
  min-height: 100%;
}

.beta-home-visual {
  display: flex;
  align-self: stretch !important;
  overflow: hidden;
}

.beta-home-visual img {
  height: 100% !important;
  min-height: 520px;
  object-fit: cover !important;
  object-position: center center;
}

.calm-home .beta-home-section::after {
  left: -62px !important;
  bottom: -38px !important;
  opacity: 0.12 !important;
  transform: rotate(-12deg) !important;
}

@media (max-width: 900px) {
  .beta-home-visual {
    display: block;
  }

  .beta-home-visual img {
    height: auto !important;
    min-height: 0;
    object-fit: contain !important;
  }
}
/* 2026-05-25 pricing clarity pass: remove unclear mini tag marks and background circles. */
.pricing-simple .calm-card::before,
.pricing-simple .featured-price-simple::before {
  display: none !important;
}

.pricing-simple .soft-badge::before,
.pricing-simple .soft-badge::after {
  display: none !important;
}

.pricing-simple .soft-badge {
  padding-inline: 12px !important;
  background: rgba(240, 246, 237, 0.92) !important;
  border: 1px solid rgba(91, 138, 104, 0.16);
}

.pricing-simple .featured-price-simple .soft-badge {
  background: rgba(255, 241, 232, 0.92) !important;
  border-color: rgba(215, 116, 53, 0.2);
  color: #9b5427;
}
/* 2026-05-25 pricing/terms polish: aligned CTAs and tiny full-policy links. */
.pricing-simple .calm-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.pricing-simple .calm-card .button {
  margin-top: auto;
}

/* 2026-05-25 homepage readability fixes from review screenshots. */
.calm-step-list li > div {
  display: grid;
  gap: 3px;
}

.calm-step-list b,
.calm-step-list small {
  display: block;
}

.pricing-simple .calm-card {
  min-height: 342px;
}

.pricing-simple .calm-card p {
  margin-bottom: 20px;
}

/* Keep the beta policy links tiny but real. */
.beta-full-policy-links {
  margin: 10px 0 0;
  color: #718078;
  font-size: 0.78rem;
  line-height: 1.45;
  text-align: center;
}

.beta-full-policy-links a {
  color: #315f45;
  font-weight: 800;
  text-decoration: none;
}

.beta-full-policy-links a:hover,
.beta-full-policy-links a:focus-visible {
  text-decoration: underline;
}

/* 2026-05-26 beta art preservation: show the full ICP card instead of cropping its right-side icons. */
.beta-home-visual {
  align-items: center !important;
  justify-content: center !important;
  padding: clamp(10px, 1.4vw, 18px) !important;
}

.beta-home-visual img {
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: 560px;
  object-fit: contain !important;
  object-position: center center !important;
}

@media (min-width: 901px) {
  .beta-home-copy {
    align-self: stretch;
  }

  .beta-home-visual img {
    max-height: min(58vw, 600px);
  }
}

/* 2026-05-26 post-checkout and contact-first CRM corrections. */
.checkout-success-panel {
  align-items: start !important;
  background: linear-gradient(135deg, rgba(240, 246, 237, 0.96), rgba(255, 254, 250, 0.94)) !important;
  border-color: rgba(91, 138, 104, 0.34) !important;
}

.checkout-success-panel .form-status {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  color: #315f45;
  background: rgba(255, 254, 250, 0.84);
  border: 1px solid rgba(91, 138, 104, 0.22);
  border-radius: 14px;
  line-height: 1.5;
}

.checkout-success-panel .form-status strong {
  color: #183126;
  font-size: 1.05rem;
}

.metric-action-card {
  padding: 0 !important;
}

.metric-action-card a {
  display: grid;
  gap: 8px;
  min-height: 100%;
  padding: 16px;
  color: inherit;
  text-decoration: none;
}

.metric-action-card small {
  color: var(--rs-muted, #607066);
  font-weight: 800;
  line-height: 1.35;
}

.metric-action-card:hover,
.metric-action-card:focus-within {
  border-color: rgba(91, 138, 104, 0.42) !important;
  box-shadow: 0 12px 26px rgba(24, 49, 38, 0.06) !important;
}
.workspace-alert {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
}

.workspace-alert span {
  font-weight: 800;
}

.workspace-alert a {
  color: #315f45;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* 2026-05-26 CRM MVP: make the first screen contact-first and quieter. */
.dashboard-contact-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.78fr) minmax(280px, 1.22fr);
  gap: 18px;
  align-items: start;
  padding: 18px;
  background: linear-gradient(135deg, rgba(255, 254, 250, 0.98), rgba(240, 246, 237, 0.7));
  border: 1px solid rgba(91, 138, 104, 0.24);
  border-radius: 18px;
  box-shadow: 0 16px 34px rgba(24, 49, 38, 0.06);
}

.dashboard-contact-card h3,
.dashboard-contact-card p,
.dashboard-contact-form .form-status {
  margin: 8px 0 0;
}

.dashboard-contact-card p,
.dashboard-contact-form .form-status {
  color: var(--rs-muted, #5e6f66);
  line-height: 1.5;
}

.dashboard-contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.dashboard-contact-form label,
.dashboard-contact-form .wide-field {
  display: grid;
  gap: 7px;
  color: var(--rs-ink, #17261f);
  font-weight: 850;
}

.dashboard-contact-form .wide-field,
.dashboard-contact-form button,
.dashboard-contact-form .form-status {
  grid-column: 1 / -1;
}

.dashboard-contact-form input {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--rs-ink, #17261f);
  background: #fffefb;
  border: 1px solid rgba(91, 138, 104, 0.24);
  border-radius: 12px;
  font: inherit;
}

.dashboard-contact-form input:focus {
  outline: 3px solid rgba(91, 138, 104, 0.18);
  border-color: rgba(91, 138, 104, 0.65);
}

.dashboard-contact-form button {
  justify-self: start;
  min-height: 48px;
  padding: 0 22px;
  color: #fffefb;
  background: #5f8569;
  border: 0;
  border-radius: 14px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.dashboard-contact-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.dashboard-next-actions {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 14px;
}

.dashboard-soft-guidance .habit-actions a {
  min-height: 62px;
  align-content: center;
}

.crm-dashboard .renewal-reminder {
  background: rgba(255, 254, 250, 0.88);
}

@media (max-width: 820px) {
  .dashboard-contact-card,
  .dashboard-contact-form,
  .dashboard-next-actions,
  .dashboard-soft-guidance {
    grid-template-columns: 1fr;
  }
}
.dashboard-contact-finder {
  display: grid;
  grid-template-columns: minmax(220px, 0.62fr) minmax(280px, 1.38fr);
  gap: 16px;
  margin-top: 14px;
  padding: 16px 18px;
  background: rgba(255, 254, 250, 0.92);
  border: 1px solid rgba(91, 138, 104, 0.18);
  border-radius: 16px;
}

.dashboard-contact-finder h3,
.dashboard-contact-finder p {
  margin: 8px 0 0;
}

.dashboard-contact-finder p,
.dashboard-contact-results .inline-empty-state span {
  color: var(--rs-muted, #5e6f66);
  line-height: 1.45;
}

.dashboard-contact-search {
  display: grid;
  gap: 10px;
}

.dashboard-contact-search label {
  display: grid;
  gap: 7px;
  color: var(--rs-ink, #17261f);
  font-weight: 850;
}

.dashboard-contact-search input {
  width: 100%;
  min-height: 46px;
  padding: 11px 13px;
  color: var(--rs-ink, #17261f);
  background: #fffefb;
  border: 1px solid rgba(91, 138, 104, 0.22);
  border-radius: 12px;
  font: inherit;
}

.dashboard-contact-results {
  display: grid;
  gap: 8px;
}

.dashboard-contact-result {
  display: grid;
  gap: 3px;
  padding: 10px 12px;
  color: var(--rs-ink, #17261f);
  background: rgba(240, 246, 237, 0.72);
  border: 1px solid rgba(91, 138, 104, 0.16);
  border-radius: 12px;
  text-decoration: none;
}

.dashboard-contact-result span {
  color: var(--rs-muted, #5e6f66);
  font-size: 0.92rem;
}

@media (max-width: 820px) {
  .dashboard-contact-finder {
    grid-template-columns: 1fr;
  }
}
.dashboard-helper-details {
  margin-top: 12px;
  padding: 0;
  background: transparent;
  border: 0;
}

.dashboard-helper-details summary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  color: #315f45;
  background: rgba(240, 246, 237, 0.78);
  border: 1px solid rgba(91, 138, 104, 0.18);
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
}

.dashboard-helper-details div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
  margin-top: 10px;
  padding: 12px 14px;
  background: rgba(255, 254, 250, 0.86);
  border: 1px solid rgba(91, 138, 104, 0.14);
  border-radius: 14px;
}

.dashboard-helper-details p {
  flex: 1 1 320px;
  margin: 0;
  color: var(--rs-muted, #5e6f66);
  line-height: 1.45;
}

.dashboard-helper-details a {
  color: #315f45;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}
/* 2026-05-26 CRM MVP: make saved contact rows clearly openable. */
.contact-list-card[role="button"] {
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.contact-list-card[role="button"]:hover,
.contact-list-card[role="button"]:focus-visible {
  border-color: rgba(63, 111, 88, 0.45);
  box-shadow: 0 12px 24px rgba(24, 49, 38, 0.08);
  outline: none;
  transform: translateY(-1px);
}
