:root {
  color-scheme: light;
  --ink: #14251c;
  --muted: #5d6f64;
  --soft: #ecf4ee;
  --panel: #ffffff;
  --line: #d8e5dc;
  --teal: #047857;
  --teal-dark: #065f46;
  --coral: #b96f55;
  --gold: #c59b3b;
  --sky: #2f7f88;
  --shadow: 0 24px 70px rgba(23, 32, 31, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #f7fbf7;
}

a {
  color: inherit;
  text-decoration: none;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(247, 251, 247, 0.92);
  border-bottom: 1px solid rgba(216, 229, 220, 0.92);
  backdrop-filter: blur(14px);
}

.public-topbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
}

.public-topbar .brand {
  justify-self: center;
}

.public-left-cta {
  justify-self: start;
}

.nav-dropdown {
  position: relative;
  justify-self: end;
}

.nav-dropdown summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid rgba(4, 120, 87, 0.28);
  border-radius: 999px;
  padding: 0 18px 0 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(236, 244, 238, 0.86));
  color: var(--teal-dark);
  box-shadow: 0 10px 24px rgba(6, 95, 70, 0.09);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown summary::after {
  margin-left: 9px;
  color: var(--teal-dark);
  content: "⌄";
}

.dropdown-links {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 20;
  display: grid;
  min-width: 190px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px;
  background: white;
  box-shadow: 0 18px 44px rgba(20, 37, 28, 0.13);
}

.nav-dropdown summary::after {
  width: 14px;
  height: 10px;
  margin-left: 12px;
  border-top: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
  background: linear-gradient(var(--teal), var(--teal)) center / 14px 2px no-repeat;
  content: "";
  transition:
    transform 180ms ease;
}

.nav-dropdown:hover summary,
.nav-dropdown[open] summary {
  border-color: rgba(4, 120, 87, 0.48);
  background: white;
  box-shadow: 0 16px 32px rgba(6, 95, 70, 0.14);
  transform: translateY(-1px);
}

.nav-dropdown:hover summary::after,
.nav-dropdown[open] summary::after {
  transform: scaleX(0.82);
}

.dropdown-links a {
  border-radius: 8px;
  padding: 11px 12px;
  color: var(--muted);
  font-weight: 850;
}

.dropdown-links a:hover {
  background: #ecf4ee;
  color: var(--ink);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--teal-dark);
  font-size: 0.98rem;
  font-weight: 750;
}

.brand span:last-child {
  display: none;
  letter-spacing: 0;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border: 1px solid rgba(6, 95, 70, 0.22);
  border-radius: 12px;
  background:
    linear-gradient(135deg, #064e3b 0%, #047857 58%, #10b981 100%);
  color: white;
  font-size: 1.05rem;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(6, 95, 70, 0.24);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.brand-mark::before {
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 9px;
  font-size: 0;
  line-height: 0;
  color: transparent;
  content: "✓";
}

.brand-mark::after {
  position: absolute;
  right: -4px;
  bottom: 7px;
  width: 17px;
  height: 9px;
  border: 2px solid #f7fbf7;
  border-radius: 999px;
  background: var(--gold);
  content: "";
}

.brand:hover .brand-mark {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(6, 95, 70, 0.3);
}

img.brand-mark {
  display: block;
  width: 112px;
  height: auto;
  border: 0;
  background: transparent;
  box-shadow: none;
  object-fit: contain;
  filter: none;
  transition:
    transform 180ms ease,
    filter 180ms ease;
}

.brand:hover img.brand-mark {
  box-shadow: none;
  filter: none;
}

.card-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  border-radius: 8px;
  background: var(--teal);
  color: white;
  font-weight: 900;
}

.nav-links {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 0.94rem;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-cta,
.button,
.demo-form button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  padding: 0 18px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.nav-cta,
.button.primary,
.demo-form button {
  background: var(--teal);
  color: white;
}

.button.secondary {
  border: 1px solid var(--line);
  background: white;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  gap: clamp(22px, 4vw, 52px);
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: clamp(18px, 3.8vw, 46px) clamp(18px, 5vw, 72px) 18px;
  background:
    linear-gradient(90deg, rgba(47, 111, 78, 0.11), transparent 42%),
    repeating-linear-gradient(0deg, rgba(47, 111, 78, 0.05) 0 1px, transparent 1px 54px),
    repeating-linear-gradient(90deg, rgba(53, 111, 130, 0.045) 0 1px, transparent 1px 54px),
    linear-gradient(180deg, #fbfaf5 0%, #eef3ec 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 12px;
  font-size: clamp(2.35rem, 5.25vw, 4.75rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-text {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.trial-callout {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 14px;
  width: min(100%, 680px);
  margin: 18px 0 0;
  border: 1px solid rgba(122, 147, 109, 0.24);
  border-radius: 12px;
  padding: 10px 14px 10px 10px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(238, 248, 244, 0.96));
  box-shadow: 0 18px 48px rgba(122, 147, 109, 0.16);
  isolation: isolate;
  animation: trial-glow 2.4s ease-in-out infinite;
}

.trial-callout::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, transparent 0%, rgba(144, 216, 210, 0.28) 48%, transparent 72%);
  transform: translateX(-120%);
  animation: trial-shimmer 3.2s ease-in-out infinite;
  content: "";
}

.trial-number {
  position: relative;
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  flex: 0 0 auto;
  border-radius: 999px;
  background:
    linear-gradient(135deg, var(--teal), #9fb391);
  color: white;
  box-shadow:
    0 16px 34px rgba(122, 147, 109, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.trial-number::before {
  position: absolute;
  inset: -7px;
  border: 2px solid rgba(122, 147, 109, 0.16);
  border-top-color: #f6c453;
  border-radius: inherit;
  animation: trial-ring 4.8s linear infinite;
  content: "";
}

.trial-number strong {
  color: white;
  font-size: 3rem;
  line-height: 0.85;
}

.trial-number span {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.trial-copy {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.trial-copy > strong {
  color: var(--teal);
  font-size: clamp(1.55rem, 2.8vw, 2.45rem);
  line-height: 1;
}

.trial-copy > span:not(.trial-live) {
  color: var(--muted);
  font-weight: 800;
  line-height: 1.35;
}

.trial-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 5px;
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(122, 147, 109, 0.1);
  color: var(--teal-dark) !important;
  font-size: 0.88rem;
  font-weight: 900 !important;
}

.trial-live b {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #168a3a;
  box-shadow: 0 0 0 5px rgba(22, 138, 58, 0.14);
  animation: live-pulse 1.5s ease-in-out infinite;
}

.trial-progress {
  overflow: hidden;
  height: 8px;
  width: min(100%, 360px);
  margin-top: 3px;
  border-radius: 999px;
  background: rgba(122, 147, 109, 0.1);
}

.trial-progress span {
  display: block;
  width: 44%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), #c4d2ba, #f6c453);
  animation: trial-progress 2.1s ease-in-out infinite;
}

.trial-sparks {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.trial-sparks i {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #f6c453;
  opacity: 0;
  animation: trial-sparkle 2.8s ease-in-out infinite;
}

.trial-sparks i:nth-child(1) {
  top: 16px;
  right: 24px;
}

.trial-sparks i:nth-child(2) {
  right: 64px;
  bottom: 18px;
  background: #c4d2ba;
  animation-delay: 520ms;
}

.trial-sparks i:nth-child(3) {
  top: 52%;
  left: 18px;
  background: var(--coral);
  animation-delay: 980ms;
}

.ops-console {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 490px;
  padding: 16px;
  border: 1px solid rgba(122, 147, 109, 0.16);
  border-radius: 8px;
  background:
    repeating-linear-gradient(0deg, rgba(47, 111, 78, 0.045) 0 1px, transparent 1px 38px),
    repeating-linear-gradient(90deg, rgba(53, 111, 130, 0.04) 0 1px, transparent 1px 38px),
    linear-gradient(145deg, #ffffff 0%, #f7faf4 54%, #edf3ea 100%);
  box-shadow:
    0 28px 80px rgba(23, 32, 31, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.ops-console::before {
  position: absolute;
  inset: auto auto -90px -90px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(47, 111, 78, 0.16);
  background:
    repeating-linear-gradient(0deg, rgba(47, 111, 78, 0.08) 0 1px, transparent 1px 18px),
    repeating-linear-gradient(90deg, rgba(47, 111, 78, 0.08) 0 1px, transparent 1px 18px);
  content: "";
}

.ops-console::after {
  content: none;
}

.console-header,
.console-grid,
.briefing {
  position: relative;
  z-index: 1;
}

.console-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 52px;
  margin-bottom: 8px;
  padding: 8px 8px 6px;
}

.console-kicker {
  display: block;
  margin-bottom: 4px;
  color: var(--teal-dark);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.console-header strong {
  display: block;
  font-size: clamp(1.12rem, 1.7vw, 1.38rem);
  line-height: 1.1;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 32px;
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(22, 138, 58, 0.12);
  color: var(--teal-dark);
  font-weight: 900;
}

.status-pill::before {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #168a3a;
  box-shadow: none;
  animation: live-pulse 1.8s ease-in-out infinite;
  content: "";
}

.console-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.briefing-dashboard {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(240px, 0.84fr) minmax(0, 1.16fr);
  gap: 14px;
  align-items: stretch;
}

.briefing-phone,
.briefing-panel {
  border: 1px solid rgba(216, 228, 223, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 46px rgba(23, 32, 31, 0.08);
}

.briefing-phone {
  display: grid;
  align-content: space-between;
  min-height: 342px;
  padding: 12px;
  background:
    linear-gradient(180deg, #17201f, #22302e);
  color: white;
}

.phone-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 28px;
  padding: 0 4px;
  color: #c8d6d3;
  font-size: 0.78rem;
  font-weight: 800;
}

.phone-topline strong {
  color: #c4d2ba;
}

.text-thread {
  display: grid;
  gap: 8px;
  margin: 10px 0;
  border-radius: 8px;
  padding: 12px;
  background: #f8faf4;
  color: var(--ink);
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

.contact-avatar {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--teal);
  color: white;
  font-weight: 900;
}

.contact-row strong,
.contact-row span:last-child {
  display: block;
}

.contact-row span:last-child {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.chat-bubble {
  width: fit-content;
  max-width: 88%;
  border-radius: 18px;
  padding: 10px 13px;
}

.chat-bubble span {
  display: block;
  margin-bottom: 7px;
  color: var(--teal-dark);
  font-weight: 900;
}

.chat-bubble p {
  margin-bottom: 0;
  line-height: 1.38;
}

.chief-message {
  border-bottom-left-radius: 6px;
  background: white;
  color: var(--ink);
  box-shadow: 0 8px 22px rgba(23, 32, 31, 0.06);
  animation: bubble-in 520ms ease both;
}

.chief-message.compact {
  margin-top: -2px;
  animation-delay: 180ms;
}

.owner-message {
  justify-self: end;
  border-bottom-right-radius: 6px;
  background: var(--teal);
  color: white;
  animation: bubble-in 520ms ease 360ms both;
}

.typing-bubble {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  border-radius: 18px;
  border-bottom-left-radius: 6px;
  padding: 0 13px;
  background: white;
  box-shadow: 0 8px 22px rgba(23, 32, 31, 0.06);
  animation: bubble-in 520ms ease 620ms both;
}

.typing-bubble span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--muted);
  animation: typing-dot 1.15s ease-in-out infinite;
}

.typing-bubble span:nth-child(2) {
  animation-delay: 140ms;
}

.typing-bubble span:nth-child(3) {
  animation-delay: 280ms;
}

.phone-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.phone-actions button {
  min-height: 38px;
  border: 1px solid rgba(144, 216, 210, 0.22);
  border-radius: 8px;
  background: rgba(144, 216, 210, 0.13);
  color: white;
  font: inherit;
  font-weight: 900;
}

.phone-actions button:first-child {
  background: #c4d2ba;
  color: #17201f;
}

.briefing-panel {
  display: grid;
  gap: 12px;
  padding: 14px;
}

.briefing-stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.briefing-stat-row div {
  min-height: 78px;
  border-radius: 8px;
  padding: 12px;
  background: #f8faf4;
}

.briefing-stat-row strong {
  display: block;
  margin-bottom: 8px;
  color: var(--teal);
  font-size: clamp(1.65rem, 3.2vw, 2.45rem);
  line-height: 1;
}

.briefing-stat-row span {
  color: var(--muted);
  font-weight: 800;
}

.live-feed {
  overflow: hidden;
  border: 1px solid rgba(122, 147, 109, 0.16);
  border-radius: 8px;
  background: rgba(122, 147, 109, 0.07);
}

.live-track {
  display: flex;
  width: max-content;
  gap: 10px;
  padding: 8px;
  animation: live-scroll 22s linear infinite;
}

.live-track span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 28px;
  border-radius: 999px;
  padding: 0 12px;
  background: white;
  color: var(--teal-dark);
  font-size: 0.86rem;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(23, 32, 31, 0.05);
}

.live-track span::before {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--teal);
  content: "";
}

.priority-list {
  display: grid;
  gap: 8px;
}

.priority-list article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  min-height: 76px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: white;
  animation: priority-rise 620ms ease both;
}

.priority-list article:nth-child(2) {
  animation-delay: 120ms;
}

.priority-list article:nth-child(3) {
  animation-delay: 240ms;
}

.priority-list strong {
  display: block;
  margin-bottom: 6px;
}

.priority-list p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.38;
}

.priority-dot {
  width: 12px;
  height: 12px;
  margin-top: 5px;
  border-radius: 999px;
}

.priority-dot.teal {
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(122, 147, 109, 0.1);
}

.priority-dot.gold {
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(193, 138, 33, 0.1);
}

.priority-dot.coral {
  background: var(--coral);
  box-shadow: 0 0 0 5px rgba(227, 107, 79, 0.1);
}

@keyframes live-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.62;
    transform: scale(0.74);
  }
}

@keyframes bubble-in {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes typing-dot {
  0%,
  80%,
  100% {
    opacity: 0.35;
    transform: translateY(0);
  }

  40% {
    opacity: 1;
    transform: translateY(-4px);
  }
}

@keyframes live-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes priority-rise {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes trial-glow {
  0%,
  100% {
    box-shadow: 0 16px 38px rgba(23, 32, 31, 0.08);
  }

  50% {
    box-shadow: 0 20px 48px rgba(122, 147, 109, 0.18);
  }
}

@keyframes trial-shimmer {
  0%,
  42% {
    transform: translateX(-120%);
  }

  72%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes trial-sparkle {
  0%,
  100% {
    opacity: 0;
    transform: translateY(6px) scale(0.7);
  }

  45% {
    opacity: 0.95;
    transform: translateY(0) scale(1);
  }
}

@keyframes trial-ring {
  to {
    transform: rotate(360deg);
  }
}

@keyframes trial-progress {
  0% {
    transform: translateX(-110%);
  }

  55%,
  100% {
    transform: translateX(240%);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

.signal-card,
.workflow-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.signal-card {
  position: relative;
  display: flex;
  gap: 14px;
  min-height: 132px;
  padding: 20px;
  box-shadow: 0 14px 34px rgba(23, 32, 31, 0.06);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.signal-card .card-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  font-size: 1.05rem;
  box-shadow: 0 10px 20px rgba(122, 147, 109, 0.18);
}

.signal-card.wide {
  grid-column: 1 / -1;
  min-height: 154px;
  align-items: center;
  border-color: rgba(122, 147, 109, 0.22);
  background:
    linear-gradient(90deg, rgba(122, 147, 109, 0.1), transparent 70%),
    #f8fdfb;
}

.signal-card:hover {
  border-color: rgba(122, 147, 109, 0.28);
  box-shadow: 0 18px 42px rgba(23, 32, 31, 0.1);
  transform: translateY(-2px);
}

.signal-card:nth-child(3) .card-icon {
  background: var(--sky);
  box-shadow: 0 10px 20px rgba(60, 120, 168, 0.2);
}

.signal-card:nth-child(4) .card-icon {
  background: var(--gold);
  box-shadow: 0 10px 20px rgba(193, 138, 33, 0.2);
}

.signal-card:nth-child(5) .card-icon {
  background: var(--coral);
  box-shadow: 0 10px 20px rgba(227, 107, 79, 0.2);
}

.signal-card h2,
.workflow-card h3 {
  margin-bottom: 9px;
  font-size: 1.05rem;
  line-height: 1.2;
}

.signal-card p,
.workflow-card p,
.section-copy p,
.proof-copy p,
.demo-section p {
  color: var(--muted);
  line-height: 1.55;
}

.signal-card p {
  margin-bottom: 0;
  font-size: 1rem;
}

.briefing {
  margin-top: 12px;
  border-radius: 8px;
  padding: 14px 18px;
  background:
    linear-gradient(90deg, rgba(122, 147, 109, 0.12), transparent 60%),
    rgba(255, 255, 255, 0.88);
  color: var(--ink);
  box-shadow: 0 14px 34px rgba(23, 32, 31, 0.08);
}

.briefing span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: #c4d2ba;
  font-weight: 900;
}

.briefing span::before {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #c4d2ba;
  box-shadow: 0 0 0 5px rgba(144, 216, 210, 0.12);
  content: "";
}

.briefing p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.45;
}

.logos {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 20px clamp(18px, 5vw, 72px);
  border-block: 1px solid var(--line);
  background: white;
  color: var(--muted);
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.logo-row strong {
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font-size: 0.92rem;
}

.section {
  padding: clamp(54px, 8vw, 98px) clamp(18px, 5vw, 72px);
}

.intro-section,
.briefing-section,
.proof-section,
.demo-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: center;
}

.section-copy h2,
.section-heading h2,
.proof-copy h2,
.demo-section h2 {
  max-width: 760px;
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: 1;
  letter-spacing: 0;
}

.section-copy p,
.proof-copy p,
.demo-section p {
  max-width: 650px;
  font-size: 1.05rem;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.metric-strip div {
  min-height: 132px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: white;
}

.metric-strip strong {
  display: block;
  margin-bottom: 14px;
  color: var(--teal);
  font-size: clamp(1.45rem, 2.35vw, 2.45rem);
  line-height: 1;
  overflow-wrap: normal;
}

.metric-strip span {
  color: var(--muted);
  line-height: 1.35;
}

.workflow-section {
  background: #17201f;
  color: white;
  padding-top: clamp(36px, 5vw, 58px);
  padding-bottom: clamp(36px, 5vw, 58px);
}

.workflow-section .eyebrow {
  color: #c4d2ba;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.workflow-section .section-heading h2 {
  max-width: 900px;
  font-size: clamp(1.9rem, 3.3vw, 3.55rem);
}

.workflow-controls {
  display: inline-flex;
  gap: 10px;
}

.workflow-arrow {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font: inherit;
  font-size: 1.8rem;
  font-weight: 900;
  cursor: pointer;
}

.workflow-carousel {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    radial-gradient(circle at 80% 15%, rgba(227, 107, 79, 0.14), transparent 26%),
    linear-gradient(135deg, #20312e, #17201f);
}

.workflow-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  gap: clamp(18px, 3vw, 40px);
  align-items: center;
  padding: clamp(16px, 2.8vw, 28px);
  opacity: 0;
  pointer-events: none;
  transform: translateX(34px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

.workflow-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.workflow-copy {
  max-width: 600px;
}

.workflow-step {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 34px;
  margin-bottom: 12px;
  border-radius: 8px;
  background: rgba(144, 216, 210, 0.16);
  color: #c4d2ba;
  font-weight: 900;
}

.workflow-copy h3 {
  margin-bottom: 8px;
  color: white;
  font-size: clamp(1.45rem, 2.45vw, 2.55rem);
  line-height: 0.98;
}

.workflow-copy p {
  max-width: 560px;
  margin-bottom: 0;
  color: #c8d6d3;
  font-size: 0.96rem;
  line-height: 1.42;
}

.workflow-visual {
  position: relative;
  min-height: 196px;
  border: 1px solid rgba(144, 216, 210, 0.2);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 20%, rgba(144, 216, 210, 0.22), transparent 28%),
    rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.workflow-visual::before {
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  content: "";
}

.visual-window,
.brief-card,
.approval-message,
.calendar-card,
.record-card,
.visual-phone-card,
.urgent-card,
.caught-lead,
.followup-check {
  position: absolute;
  border-radius: 8px;
  background: white;
  color: var(--ink);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.visual-phone-card {
  right: 36px;
  bottom: 30px;
  width: min(52%, 280px);
  padding: 16px;
  animation: visual-pop 700ms ease both;
}

.visual-phone-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--teal-dark);
  font-weight: 900;
}

.visual-phone-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.4;
}

.message-stack-card {
  position: absolute;
  width: min(58%, 330px);
  border-radius: 8px;
  padding: 14px 16px;
  background: white;
  color: var(--ink);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
  animation: message-stack-in 2.8s ease-in-out infinite;
}

.message-stack-card span {
  display: block;
  margin-bottom: 6px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.message-stack-card strong {
  font-weight: 900;
}

.email-card {
  top: 30px;
  left: 32px;
}

.text-card {
  top: 84px;
  left: 64px;
  animation-delay: 180ms;
}

.voicemail-card {
  top: 138px;
  left: 96px;
  animation-delay: 360ms;
}

.priority-radar {
  position: absolute;
  inset: 38px auto auto 48px;
  width: 116px;
  height: 116px;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(227, 107, 79, 0.95) 0 9px, rgba(227, 107, 79, 0.22) 10px 30px, rgba(227, 107, 79, 0.08) 31px 58px);
  animation: radar-pulse 1.8s ease-in-out infinite;
}

.urgent-card {
  top: 32px;
  right: 36px;
  min-width: 210px;
  padding: 13px 16px;
  color: var(--coral);
  font-weight: 900;
  animation: visual-pop 700ms ease both;
}

.urgent-card.second {
  top: 94px;
  right: 72px;
  color: var(--gold);
  animation-delay: 140ms;
}

.urgent-card.third {
  top: 156px;
  right: 42px;
  color: var(--teal-dark);
  animation-delay: 280ms;
}

.visual-window {
  top: 28px;
  left: 28px;
  width: min(78%, 420px);
  padding: 14px;
  animation: visual-pop 700ms ease both;
}

.visual-window span {
  display: block;
  width: 52px;
  height: 10px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: var(--teal);
}

.visual-window strong,
.brief-card,
.approval-message,
.calendar-card strong,
.record-card {
  font-weight: 900;
}

.visual-window p {
  margin: 8px 0 0;
  color: var(--muted);
}

.visual-chip {
  position: absolute;
  right: 28px;
  bottom: 44px;
  border-radius: 999px;
  padding: 9px 13px;
  background: #c4d2ba;
  color: #17201f;
  font-weight: 900;
  animation: visual-float 3.4s ease-in-out infinite;
}

.visual-chip.second {
  right: 92px;
  bottom: 18px;
  background: #f6c453;
  animation-delay: 520ms;
}

.brief-card {
  left: 30px;
  width: min(78%, 420px);
  padding: 11px 15px;
  animation: visual-pop 700ms ease both;
}

.brief-card.urgent {
  top: 24px;
  color: var(--coral);
}

.brief-card:nth-child(2) {
  top: 76px;
  animation-delay: 120ms;
}

.brief-card:nth-child(3) {
  top: 128px;
  animation-delay: 240ms;
}

.approval-message {
  top: 30px;
  left: 30px;
  width: min(82%, 460px);
  padding: 14px;
  font-size: clamp(1rem, 1.65vw, 1.35rem);
  line-height: 1.15;
  animation: visual-pop 700ms ease both;
}

.approval-buttons {
  position: absolute;
  left: 30px;
  bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.approval-buttons span {
  border-radius: 999px;
  padding: 9px 13px;
  background: #c4d2ba;
  color: #17201f;
  font-weight: 900;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.approval-buttons span:last-child {
  background: white;
}

.calendar-card {
  top: 24px;
  left: 30px;
  display: grid;
  place-items: center;
  width: 130px;
  height: 118px;
  background: #f8faf4;
  animation: visual-pop 700ms ease both;
}

.calendar-card strong {
  color: var(--teal);
  font-size: 1.65rem;
}

.calendar-card span {
  color: var(--ink);
  font-size: 1.25rem;
  font-weight: 900;
}

.record-card {
  right: 30px;
  bottom: 28px;
  width: min(58%, 320px);
  padding: 14px;
  animation: visual-float 3.5s ease-in-out infinite;
}

.followup-lane {
  position: absolute;
  top: 44px;
  left: 34px;
  right: 34px;
  display: grid;
  gap: 12px;
}

.followup-lane span {
  display: block;
  width: 64%;
  border-radius: 999px;
  padding: 11px 14px;
  background: white;
  color: var(--ink);
  font-weight: 900;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
  animation: lane-slide 3.2s ease-in-out infinite;
}

.followup-lane span:nth-child(2) {
  width: 74%;
  animation-delay: 220ms;
}

.followup-lane span:nth-child(3) {
  width: 84%;
  background: #c4d2ba;
  color: #17201f;
  animation-delay: 440ms;
}

.caught-lead {
  right: 42px;
  bottom: 36px;
  padding: 15px 18px;
  color: var(--teal-dark);
  font-weight: 900;
  animation: visual-pop 700ms ease both;
}

.followup-check {
  display: grid;
  place-items: center;
  right: 34px;
  top: 34px;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: #168a3a;
  color: white;
  font-size: 2rem;
  font-weight: 900;
  animation: check-pop 1.8s ease-in-out infinite;
}

.workflow-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.workflow-dots button {
  width: 11px;
  height: 11px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
}

.workflow-dots button.is-active {
  width: 34px;
  background: #c4d2ba;
}

@keyframes visual-pop {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes visual-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes radar-pulse {
  0%,
  100% {
    transform: scale(0.9);
    opacity: 0.78;
  }

  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@keyframes message-stack-in {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

@keyframes lane-slide {
  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(18px);
  }
}

@keyframes check-pop {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }
}

.proof-section {
  background: #f8faf4;
}

.home-pricing-section {
  background: white;
}

.home-pricing-section .section-heading h2 {
  max-width: 760px;
  font-size: clamp(2rem, 3.4vw, 3.7rem);
}

.home-pricing-section .price-card {
  gap: 16px;
  padding: clamp(18px, 3vw, 28px);
}

.home-pricing-section .price-card h2 {
  font-size: clamp(1.65rem, 2.4vw, 2.55rem);
}

.home-pricing-section .price {
  font-size: clamp(2.25rem, 4vw, 3.75rem);
}

.home-pricing-section .price-card ul {
  gap: 8px;
}

.pricing-note {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.5;
}

.briefing-section {
  background: white;
}

.faq-section {
  background: #f8faf4;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.faq-grid article {
  min-height: 190px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: white;
}

.faq-grid h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.faq-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.morning-preview {
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(18px, 3vw, 28px);
  background: #f8faf4;
}

.message-preview {
  border-radius: 8px;
  padding: 18px;
  background: #17201f;
  color: white;
}

.message-preview span {
  display: block;
  margin-bottom: 10px;
  color: #c4d2ba;
  font-weight: 900;
}

.message-preview p {
  margin-bottom: 0;
  color: #e5efec;
  line-height: 1.55;
}

.approval-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.approval-row button {
  min-height: 42px;
  border: 1px solid rgba(122, 147, 109, 0.22);
  border-radius: 8px;
  padding: 0 12px;
  background: white;
  color: var(--teal-dark);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 900;
}

.approval-note {
  margin: 0;
  border-radius: 8px;
  padding: 14px;
  background: #edf2e9;
  color: var(--teal-dark);
  font-weight: 800;
  line-height: 1.45;
}

.briefing-list {
  display: grid;
  gap: 10px;
}

.briefing-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: white;
}

.briefing-list strong {
  display: block;
  margin-bottom: 6px;
  color: var(--teal-dark);
}

.briefing-list p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.45;
}

.timeline {
  display: grid;
  gap: 12px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 96px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: white;
}

.timeline-item span {
  color: var(--teal);
  font-weight: 900;
}

.timeline-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.scatter-demo {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.95fr) auto minmax(240px, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 350px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(18px, 3vw, 28px);
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(246, 196, 83, 0.18), transparent 22%),
    linear-gradient(135deg, #ffffff 0%, #f3faf5 100%);
}

.scatter-demo::before {
  position: absolute;
  inset: 18px 50% 18px auto;
  width: 1px;
  background: linear-gradient(transparent, rgba(4, 120, 87, 0.18), transparent);
  content: "";
}

.scatter-stage {
  position: relative;
  min-height: 250px;
}

.message-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid rgba(4, 120, 87, 0.18);
  border-radius: 999px;
  padding: 0 13px;
  background: white;
  box-shadow: 0 14px 30px rgba(12, 38, 30, 0.08);
  color: var(--ink);
  font-weight: 900;
  white-space: nowrap;
  animation: scatterFloat 5.5s ease-in-out infinite;
}

.chip-email {
  top: 5%;
  left: 8%;
}

.chip-text {
  top: 36%;
  left: 0;
  animation-delay: 0.35s;
}

.chip-voice {
  top: 66%;
  left: 18%;
  animation-delay: 0.7s;
}

.chip-form {
  top: 19%;
  right: 0;
  animation-delay: 1.05s;
}

.chip-follow {
  right: 12%;
  bottom: 4%;
  animation-delay: 1.4s;
}

.chief-sorter {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  gap: 8px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

.chief-sorter span {
  display: block;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(4, 120, 87, 0.12), rgba(246, 196, 83, 0.2)),
    white;
  box-shadow: 0 0 0 0 rgba(4, 120, 87, 0.2);
  animation: sorterPulse 2.2s ease-in-out infinite;
}

.chief-sorter span::before,
.chief-sorter span::after {
  position: absolute;
  top: 27px;
  width: 54px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(4, 120, 87, 0.4), transparent);
  content: "";
}

.chief-sorter span::before {
  right: calc(100% + 6px);
}

.chief-sorter span::after {
  left: calc(100% + 6px);
}

.clean-list {
  display: grid;
  gap: 10px;
}

.clean-list div {
  display: grid;
  gap: 4px;
  border: 1px solid rgba(4, 120, 87, 0.2);
  border-radius: 8px;
  padding: 15px;
  background: white;
  box-shadow: 0 12px 28px rgba(12, 38, 30, 0.06);
}

.clean-list span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 900;
}

.clean-list strong {
  color: var(--teal);
  font-size: clamp(1.2rem, 2vw, 1.7rem);
}

@keyframes scatterFloat {
  0%,
  100% {
    opacity: 0.55;
    transform: translate(0, 0) scale(0.96);
  }

  35% {
    opacity: 1;
    transform: translate(8px, -8px) scale(1);
  }

  70% {
    opacity: 0.74;
    transform: translate(20px, 5px) scale(0.98);
  }
}

@keyframes sorterPulse {
  0%,
  100% {
    transform: scale(0.96);
    box-shadow: 0 0 0 0 rgba(4, 120, 87, 0.16);
  }

  50% {
    transform: scale(1.04);
    box-shadow: 0 0 0 12px rgba(4, 120, 87, 0);
  }
}

@keyframes cleanItemIn {
  0%,
  28% {
    opacity: 0.58;
    transform: translateX(12px);
  }

  45%,
  90% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0.72;
  }
}

.demo-section {
  margin: 0 clamp(18px, 5vw, 72px) clamp(36px, 6vw, 72px);
  padding: clamp(32px, 5vw, 56px);
  border-radius: 8px;
  background: #eaf3ef;
}

.demo-form {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.demo-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.demo-form input,
.demo-form select,
.demo-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  color: var(--ink);
  font: inherit;
  background: white;
}

.demo-form textarea {
  min-height: 96px;
  padding-block: 12px;
  resize: vertical;
}

.demo-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.demo-form button.is-requested {
  background: #168a3a;
}

.request-burst {
  position: absolute;
  inset: 50% auto auto 50%;
  pointer-events: none;
}

.request-burst span {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--spark-color, #f6c453);
  animation: request-spark 760ms ease-out forwards;
  animation-delay: var(--delay);
}

.request-burst span:nth-child(3n) {
  --spark-color: #35c981;
}

.request-burst span:nth-child(3n + 1) {
  --spark-color: #ffffff;
}

.request-burst span:nth-child(3n + 2) {
  --spark-color: #f6c453;
}

@keyframes request-spark {
  0% {
    opacity: 0;
    transform: rotate(var(--angle)) translate(0) scale(0.45);
  }

  18% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: rotate(var(--angle)) translate(var(--distance)) scale(1);
  }
}

.form-note {
  min-height: 24px;
  margin: 0;
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.owner-page {
  padding: clamp(22px, 4vw, 42px) clamp(18px, 5vw, 72px);
}

.customer-page {
  padding: clamp(10px, 2.2vw, 22px) clamp(18px, 5vw, 64px);
}

.signup-page {
  min-height: calc(100vh - 76px);
  padding: clamp(28px, 5vw, 58px) clamp(18px, 5vw, 72px);
}

.signup-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 520px);
  gap: clamp(24px, 5vw, 60px);
  align-items: center;
  width: min(100%, 1060px);
  margin: 0 auto;
}

.signup-copy h1 {
  max-width: 620px;
  margin-bottom: 14px;
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  line-height: 0.95;
}

.signup-copy > p {
  max-width: 600px;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.45;
}

.signup-plan-pill {
  display: inline-grid;
  gap: 4px;
  min-width: 180px;
  margin-top: 22px;
  border: 1px solid rgba(122, 147, 109, 0.18);
  border-radius: 8px;
  padding: 14px 16px;
  background: #f8faf4;
}

.signup-plan-pill span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 900;
}

.signup-plan-pill strong {
  color: var(--teal);
  font-size: 2rem;
  line-height: 1;
}

.signup-plan-pill small {
  color: var(--muted);
  font-weight: 900;
}

.signup-form {
  display: grid;
  gap: 14px;
  width: 100%;
  max-width: 520px;
  justify-self: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(18px, 2.5vw, 26px);
  background: white;
  box-shadow: 0 20px 48px rgba(23, 32, 31, 0.08);
}

.payment-form {
  gap: 12px;
}

.stripe-checkout-card {
  display: grid;
  gap: 6px;
  border: 1px solid rgba(4, 120, 87, 0.2);
  border-radius: 8px;
  padding: 14px;
  background: #f8faf4;
}

.stripe-checkout-card strong {
  color: var(--ink);
  font-size: 1rem;
}

.stripe-checkout-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.4;
}

.signup-step-label {
  display: grid;
  gap: 4px;
  margin-bottom: 2px;
}

.signup-step-label span {
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.signup-step-label strong {
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1;
}

.signup-form label,
.detail-form-grid label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 900;
}

.billing-choice {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  border: 0;
  padding: 0;
}

.billing-choice legend {
  grid-column: 1 / -1;
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 900;
}

.billing-choice label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 76px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: #fbfdf9;
  cursor: pointer;
}

.billing-choice input {
  width: 18px;
  height: 18px;
  accent-color: var(--teal);
}

.billing-choice span {
  display: grid;
  gap: 2px;
}

.billing-choice small {
  color: var(--muted);
  font-weight: 750;
  line-height: 1.25;
}

.detail-form-grid label > span {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 5px 10px;
  background: #ecf4ee;
  color: var(--teal-dark);
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.email-login-note {
  margin: -5px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.password-requirements {
  display: grid;
  gap: 6px;
  margin: -4px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
  list-style: none;
}

.password-requirements li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.password-requirements li::before {
  display: grid;
  place-items: center;
  width: 17px;
  height: 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: transparent;
  font-size: 0.72rem;
  content: "✓";
}

.password-requirements li.is-met {
  color: var(--teal-dark);
}

.password-requirements li.is-met::before {
  border-color: var(--teal);
  background: var(--teal);
  color: white;
}

.signup-form input,
.signup-form select,
.detail-form-grid input,
.detail-form-grid select {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  background: #fbfdf9;
  color: var(--ink);
  font: inherit;
  font-size: 0.94rem;
  font-weight: 650;
}

.password-input-wrap {
  position: relative;
  display: block;
}

.signup-form .password-input-wrap input {
  width: 100%;
  padding-right: 76px;
}

.signup-form .password-toggle {
  position: absolute;
  top: 50%;
  right: 8px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(4, 120, 87, 0.2);
  border-radius: 999px;
  background: rgba(236, 246, 241, 0.95);
  color: var(--teal-dark);
  font-size: 0.82rem;
  transform: translateY(-50%);
}

.signup-form input::placeholder,
.detail-form-grid input::placeholder {
  color: #879288;
  font-weight: 650;
}

.signup-form button {
  min-height: 50px;
  border: 0;
  border-radius: 8px;
  background: var(--teal);
  color: white;
  font: inherit;
  font-weight: 900;
}

.no-charge-card {
  display: grid;
  gap: 7px;
  max-width: 100%;
  border: 1px solid rgba(4, 120, 87, 0.2);
  border-radius: 8px;
  padding: 14px;
  background: linear-gradient(135deg, rgba(4, 120, 87, 0.08), rgba(236, 244, 238, 0.96));
}

.no-charge-card span {
  width: fit-content;
  border-radius: 999px;
  padding: 5px 10px;
  background: white;
  color: var(--teal-dark);
  font-size: 0.86rem;
  font-weight: 900;
}

.no-charge-card strong {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.2;
}

.no-charge-card p,
.payment-disclaimer {
  margin: 0;
  color: var(--muted);
  line-height: 1.35;
}

.payment-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(120px, 0.7fr);
  gap: 12px;
}

.payment-disclaimer {
  border-top: 1px solid var(--line);
  padding-top: 12px;
  font-size: 0.86rem;
}

.customer-hero {
  max-width: 760px;
  margin: 0 auto 8px;
  text-align: center;
}

.customer-hero h1 {
  max-width: 680px;
  margin: 0 auto 6px;
  font-size: clamp(1.55rem, 2.25vw, 2.35rem);
  line-height: 1;
}

.customer-hero p {
  max-width: 700px;
  margin-inline: auto;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.3;
}

.customer-status {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 8px;
}

.customer-status div,
.customer-panel,
.setup-card,
.test-chief-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.customer-status div {
  min-height: 62px;
  padding: 10px 14px;
}

.customer-status strong {
  display: block;
  margin-bottom: 4px;
  color: var(--teal);
  font-size: clamp(1.25rem, 1.85vw, 1.85rem);
  line-height: 1;
}

.customer-status span {
  color: var(--muted);
}

.is-hidden {
  display: none !important;
}

.pro-only {
  display: none !important;
}

.is-pro-plan .pro-only {
  display: grid !important;
}

.customer-panel {
  margin-top: 8px;
  padding: clamp(12px, 1.8vw, 18px);
}

.billing-page {
  max-width: 980px;
  margin-inline: auto;
}

.billing-hero {
  margin-bottom: 14px;
}

.billing-page-card {
  display: grid;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(18px, 3vw, 32px);
  background: white;
}

.billing-page-card h2 {
  margin-bottom: 4px;
  font-size: clamp(1.5rem, 2.2vw, 2.4rem);
}

.billing-page-card p {
  max-width: 720px;
  color: var(--muted);
}

.billing-page-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.billing-page-summary article {
  border: 1px solid rgba(122, 147, 109, 0.2);
  border-radius: 8px;
  padding: 16px;
  background: #f8fbf7;
}

.billing-page-summary span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.billing-page-summary strong {
  color: var(--teal-dark);
  font-size: clamp(1.15rem, 2vw, 1.7rem);
}

.trial-plan-switcher {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  border: 1px solid rgba(0, 126, 86, 0.18);
  border-radius: 8px;
  padding: 18px;
  background: #f3faf5;
}

.trial-plan-switcher h3 {
  margin: 0 0 6px;
  font-size: clamp(1.2rem, 1.8vw, 1.65rem);
}

.trial-plan-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.trial-plan-button {
  min-height: 46px;
  border: 1px solid rgba(0, 126, 86, 0.22);
  border-radius: 8px;
  padding: 0 18px;
  background: white;
  color: var(--teal-dark);
  font-weight: 900;
  cursor: pointer;
}

.trial-plan-button:not(:disabled):hover {
  border-color: rgba(0, 126, 86, 0.45);
  background: #eef8f0;
}

.trial-plan-button:disabled {
  cursor: default;
  background: var(--teal);
  color: white;
}

.trial-plan-status {
  grid-column: 1 / -1;
  min-height: 1.2em;
  color: var(--teal-dark);
  font-weight: 800;
}

.open-secure-billing-button {
  justify-self: start;
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  padding: 0 22px;
  background: var(--teal);
  color: white;
  font-weight: 900;
  cursor: pointer;
}

.open-secure-billing-button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.billing-page-status {
  min-height: 1.2em;
  color: #9f2f22;
  font-weight: 800;
}

.setup-detail-panel {
  overflow: visible;
}

.dashboard-signout {
  display: flex;
  justify-content: center;
  padding: 22px 0 8px;
}

.dashboard-signout .button {
  min-width: 150px;
  border-color: rgba(185, 79, 65, 0.28);
  background: #fff5f3;
  color: #9f2f24;
}

.customer-panel-heading h2,
.split-panel h2 {
  margin-bottom: 8px;
  font-size: clamp(1.35rem, 2vw, 2.05rem);
  line-height: 1;
}

.setup-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 10px;
}

.setup-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 8px;
  min-height: 190px;
  padding: 12px;
  background: #f8faf4;
}

.setup-card span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 30px;
  border-radius: 8px;
  background: rgba(122, 147, 109, 0.12);
  color: var(--teal-dark);
  font-weight: 900;
}

.setup-card h3 {
  margin-bottom: 0;
  font-size: 1rem;
}

.setup-card p,
.split-panel p,
.test-chief-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.34;
}

.setup-card p {
  font-size: 0.92rem;
}

.setup-card button,
.test-chief-card button {
  align-self: end;
  min-height: 34px;
  width: 100%;
  border: 0;
  border-radius: 8px;
  padding: 0 14px;
  background: var(--teal);
  color: white;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.setup-detail-panels {
  display: grid;
  gap: 10px;
}

.setup-detail-panel h2 {
  margin-bottom: 10px;
  font-size: clamp(1.2rem, 1.6vw, 1.65rem);
  line-height: 1;
}

.detail-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.detail-form-grid label:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.business-hours-builder {
  display: grid;
  gap: 10px;
  margin-bottom: 12px;
}

.business-hours-builder > div > span,
.time-range-picker span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 8px;
  border-radius: 999px;
  padding: 5px 10px;
  background: #ecf4ee;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.day-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.day-picker button {
  min-width: 50px;
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f8faf4;
  color: var(--muted);
  font: inherit;
  font-weight: 900;
}

.day-picker button.is-selected {
  border-color: rgba(4, 120, 87, 0.48);
  background: var(--teal);
  color: white;
}

.time-range-picker {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.custom-time-picker {
  position: relative;
}

.time-select-button {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(4, 120, 87, 0.22);
  border-radius: 8px;
  padding: 0 16px;
  background: white;
  color: var(--ink);
  font: inherit;
  font-size: 0.96rem;
  font-weight: 900;
  text-align: left;
}

.time-select-button::after {
  float: right;
  color: var(--teal-dark);
  content: "⌄";
}

.time-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 30;
  display: none;
  width: 100%;
  max-height: 220px;
  overflow-y: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 6px;
  background: white;
  box-shadow: 0 18px 36px rgba(23, 32, 31, 0.14);
}

.time-menu.is-open {
  display: grid;
}

.time-menu button {
  min-height: 34px;
  border: 0;
  border-radius: 6px;
  padding: 0 10px;
  background: white;
  color: var(--ink);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 850;
  text-align: left;
}

.time-menu button:hover {
  background: #ecf4ee;
  color: var(--teal-dark);
}

.business-details-save-button {
  min-height: 42px;
  width: fit-content;
  margin-top: 10px;
  border: 0;
  border-radius: 8px;
  padding: 0 18px;
  background: var(--teal);
  color: white;
  font: inherit;
  font-weight: 900;
}

.split-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(20px, 4vw, 48px);
  align-items: center;
}

.approval-settings {
  display: grid;
  gap: 10px;
}

.approval-settings label {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: #f8faf4;
  color: var(--ink);
  font-weight: 850;
}

.approval-settings input {
  width: 18px;
  height: 18px;
  accent-color: var(--teal);
}

.morning-scheduler {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(340px, 1.12fr);
  gap: clamp(20px, 4vw, 54px);
  align-items: center;
}

.morning-scheduler-card {
  display: grid;
  grid-template-columns: minmax(190px, 0.72fr) minmax(0, 1.28fr);
  gap: 12px;
}

.time-picker-card,
.morning-text-preview {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8faf4;
}

.time-picker-card {
  display: grid;
  align-content: center;
  gap: 18px;
  min-height: 240px;
  padding: 24px;
}

.time-picker-card span,
.morning-text-preview span {
  color: var(--teal-dark);
  font-size: 0.95rem;
  font-weight: 900;
  text-transform: uppercase;
}

.morning-text-preview {
  display: grid;
  gap: 12px;
  min-height: 240px;
  padding: 24px;
  background:
    linear-gradient(135deg, #17201f, #22302e);
  color: white;
}

.morning-text-preview span {
  color: #c4d2ba;
}

.morning-text-preview p {
  align-self: center;
  margin: 0;
  border-radius: 8px;
  padding: 16px;
  background: white;
  color: var(--ink);
  line-height: 1.45;
}

.test-chief-card {
  display: grid;
  gap: 12px;
  min-height: 190px;
  padding: 20px;
  background: #17201f;
  color: white;
}

.test-chief-card span {
  color: #c4d2ba;
  font-weight: 900;
}

.test-chief-card p {
  color: #d9e5e2;
}

.text-confirmation-copy {
  border-radius: 8px;
  padding: 10px 12px;
  background: rgba(196, 210, 186, 0.12);
  color: #f3fbf7 !important;
  font-weight: 900;
}

.text-help-button {
  min-height: 42px;
  border: 1px solid rgba(196, 210, 186, 0.32) !important;
  background: rgba(255, 255, 255, 0.08) !important;
  color: #f3fbf7 !important;
}

.run-test-button.is-complete {
  background: #168a3a;
}

.chief-is-active .setup-nav-link {
  display: none;
}

.chief-is-active .customer-setup-cta {
  display: none;
}

.chief-is-active .setup-flow,
.chief-is-active .setup-detail-panels,
.chief-is-active .morning-scheduler,
.chief-is-active #test-chief {
  display: none;
}

.chief-is-active .customer-status div:last-child {
  display: none;
}

.chief-is-active .customer-status {
  grid-template-columns: repeat(2, minmax(220px, 360px));
  justify-content: center;
}

.chief-is-active .customer-status div {
  text-align: center;
}

.setup-flow.setup-flow-complete {
  border-color: rgba(22, 138, 58, 0.28);
  background: #f8faf4;
}

.customer-home {
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(0, 1.24fr);
  gap: 10px;
  margin-top: 10px;
  align-items: start;
}

.dashboard-briefing-card {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: clamp(14px, 2vw, 24px);
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 94% 10%, rgba(246, 196, 83, 0.18), transparent 22%),
    linear-gradient(135deg, #ffffff 0%, #eef8f6 100%);
}

.dashboard-briefing-card h2 {
  margin-bottom: 6px;
  font-size: clamp(1.5rem, 2.1vw, 2.3rem);
  line-height: 1.02;
}

.dashboard-briefing-card p {
  max-width: 680px;
  color: var(--muted);
  line-height: 1.36;
}

.briefing-total-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.briefing-total-row span {
  min-height: 86px;
  padding: 12px;
  border: 1px solid rgba(122, 147, 109, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--muted);
  font-weight: 900;
}

.briefing-total-row strong {
  display: block;
  margin-bottom: 5px;
  color: var(--teal);
  font-size: clamp(1.8rem, 2.8vw, 3rem);
  line-height: 0.9;
}

.customer-home > .customer-dashboard-grid {
  display: contents;
}

.customer-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.customer-dashboard-grid h3 {
  margin-bottom: 12px;
  font-size: clamp(1.18rem, 1.55vw, 1.5rem);
  line-height: 1.05;
}

.customer-home .approval-inbox {
  grid-column: 1;
  grid-row: 2;
}

.customer-home .recent-briefings {
  grid-column: 1;
  grid-row: 4;
}

.customer-home .customize-chief {
  grid-column: 2;
  grid-row: 4;
}

.approval-list,
.message-log,
.customize-grid {
  display: grid;
  gap: 8px;
}

.approval-list div,
.approval-action-card,
.message-log div {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8faf4;
}

.setup-card.is-complete {
  border-color: rgba(4, 120, 87, 0.44);
  background: #f2fbf5;
}

.setup-card.is-complete::after {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--teal);
  color: white;
  font-weight: 900;
  content: "✓";
}

.approval-action-card {
  display: grid;
  width: 100%;
  text-align: left;
  color: inherit;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.approval-action-card:hover,
.approval-action-card.is-active {
  border-color: rgba(4, 120, 87, 0.42);
  background: #edf8f1;
  transform: translateY(-1px);
}

.approval-action-card::after {
  margin-top: 8px;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 900;
  content: "Open action";
}

.approval-list strong,
.message-log span {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-weight: 900;
}

.approval-list span,
.message-log p {
  margin: 0;
  color: var(--muted);
  line-height: 1.35;
}

.approval-action-panels {
  grid-column: 2;
  grid-row: 2 / span 2;
  margin-top: 0;
}

.approval-action-panel {
  display: grid;
  gap: 12px;
  min-height: 100%;
}

.approval-work-list {
  display: grid;
  gap: 10px;
}

.approval-work-list > div {
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #f8faf4;
}

.approval-work-list span {
  color: var(--ink);
  font-weight: 900;
}

.approval-work-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.4;
}

.approval-work-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.approval-work-actions button {
  min-height: 38px;
  border: 1px solid rgba(4, 120, 87, 0.25);
  border-radius: 8px;
  padding: 0 12px;
  background: var(--teal);
  color: white;
  font-weight: 900;
}

.approval-work-actions button + button {
  background: white;
  color: var(--ink);
}

.customize-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.customize-grid button {
  min-height: 52px;
  border: 1px solid rgba(122, 147, 109, 0.18);
  border-radius: 8px;
  background: #f8faf4;
  color: var(--teal-dark);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.customize-grid button:hover,
.customize-grid button.is-active {
  border-color: rgba(4, 120, 87, 0.4);
  background: #eaf7ef;
  color: var(--teal);
  transform: translateY(-1px);
}

.customize-setting-panels {
  margin-top: 10px;
}

.customize-setting-panel {
  display: grid;
  gap: 7px;
  border: 1px solid rgba(4, 120, 87, 0.22);
  border-radius: 8px;
  padding: 14px;
  background:
    radial-gradient(circle at 100% 0%, rgba(22, 138, 58, 0.08), transparent 32%),
    #f8faf4;
}

.customize-setting-panel span {
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.customize-setting-panel strong {
  color: var(--ink);
  font-size: 1rem;
}

.customize-setting-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.35;
}

.customize-setting-panel .billing-portal-status {
  min-height: 1.2em;
  color: #9f2f22;
  font-weight: 800;
}

.customize-setting-panel button {
  justify-self: start;
  min-height: 36px;
  border: 1px solid rgba(4, 120, 87, 0.28);
  border-radius: 8px;
  padding: 0 12px;
  background: var(--teal);
  color: white;
  font-weight: 900;
  cursor: pointer;
}

.setup-complete-button {
  min-height: 46px;
  margin-top: 14px;
  border: 0;
  border-radius: 8px;
  padding: 0 16px;
  background: var(--teal);
  color: white;
  font: inherit;
  font-weight: 900;
}

.setup-complete-button.is-complete {
  background: #c4d2ba;
  color: var(--ink);
}

.email-test-button {
  min-height: 46px;
  margin-top: 10px;
  border: 1px solid rgba(4, 120, 87, 0.25);
  border-radius: 8px;
  padding: 0 16px;
  background: white;
  color: var(--teal-dark);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.email-test-button:disabled,
.email-test-button.is-waiting {
  cursor: not-allowed;
  opacity: 0.68;
}

.email-test-preview {
  display: grid;
  gap: 8px;
  margin-top: 12px;
  border: 1px solid rgba(4, 120, 87, 0.18);
  border-radius: 8px;
  padding: 14px;
  background: #f7fbf7;
}

.email-test-preview span {
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.email-test-preview strong {
  font-size: 1rem;
}

.email-test-preview p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.5;
  white-space: pre-line;
}

.setup-panel-note {
  margin: 10px 0 0;
  color: var(--teal-dark);
  font-weight: 900;
}

.test-chief-status {
  margin: 10px 0 0;
  color: var(--teal-dark);
  font-weight: 900;
}

.pricing-page,
.content-page {
  padding: clamp(36px, 6vw, 72px) clamp(18px, 5vw, 72px);
}

.pricing-page {
  min-height: calc(100vh - 72px);
  display: grid;
  align-content: center;
}

.pricing-hero,
.content-hero {
  max-width: 980px;
  margin-bottom: 28px;
}

.pricing-hero {
  margin-inline: auto;
  text-align: center;
}

.pricing-hero h1,
.content-hero h1 {
  margin-bottom: 16px;
  font-size: clamp(2.3rem, 5vw, 5rem);
}

.pricing-hero p,
.content-hero p {
  max-width: 740px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.6;
}

.pricing-hero p {
  margin-inline: auto;
}

.security-hero {
  max-width: 1080px;
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.security-grid article {
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: white;
}

.security-grid span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 36px;
  margin-bottom: 28px;
  border-radius: 8px;
  background: rgba(122, 147, 109, 0.12);
  color: var(--teal-dark);
  font-weight: 900;
}

.security-grid h2 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.security-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.legal-page {
  background:
    radial-gradient(circle at 92% 10%, rgba(7, 148, 104, 0.08), transparent 30%),
    #f7faf6;
}

.legal-hero {
  max-width: 1120px;
}

.legal-updated {
  margin-top: 12px;
  color: var(--teal-dark) !important;
  font-size: 0.98rem !important;
  font-weight: 900;
}

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

.legal-grid article {
  min-height: 230px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: white;
}

.legal-grid h2 {
  margin-bottom: 12px;
  font-size: 1.16rem;
}

.legal-grid p {
  color: var(--muted);
  line-height: 1.6;
}

.legal-grid p:last-child {
  margin-bottom: 0;
}

.legal-document {
  width: min(100%, 980px);
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  padding: clamp(26px, 5vw, 46px);
}

.legal-document article {
  padding: 0 0 26px;
  margin-bottom: 26px;
  border-bottom: 1px solid rgba(14, 61, 45, 0.14);
}

.legal-document article:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.legal-document h2 {
  margin-bottom: 12px;
  font-size: 1.32rem;
  line-height: 1.22;
}

.legal-document p {
  max-width: 82ch;
  color: var(--muted);
  line-height: 1.7;
}

.legal-document p:last-child {
  margin-bottom: 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(100%, 1320px);
  margin-inline: auto;
}

.price-card {
  display: grid;
  gap: 16px;
  align-content: start;
  justify-items: stretch;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(20px, 4vw, 34px);
  background: white;
}

.price-card.featured {
  border-color: rgba(122, 147, 109, 0.36);
  background: #f4fbf8;
}

.price-card.managed {
  border-color: rgba(4, 120, 87, 0.3);
  background:
    linear-gradient(145deg, rgba(223, 239, 232, 0.72), rgba(255, 255, 255, 0.95)),
    white;
}

.price-card.managed .button {
  align-self: end;
}

.price-card h2 {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 3vw, 3.1rem);
  line-height: 1;
}

.price {
  margin-bottom: 8px;
  color: var(--teal);
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  font-weight: 900;
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 800;
}

.yearly {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 800;
}

.plan-fit {
  margin: 0;
  color: var(--ink);
  font-weight: 900;
  line-height: 1.35;
}

.price-card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 0;
  color: var(--muted);
  line-height: 1.45;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 24px;
}

.price-card li::before {
  position: absolute;
  left: 0;
  top: 0.2em;
  display: grid;
  place-items: center;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: rgba(4, 120, 87, 0.12);
  color: var(--teal-dark);
  font-size: 0.72rem;
  font-weight: 900;
  content: "✓";
}

.plan-keywords {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px;
}

.plan-keywords strong {
  border-radius: 999px;
  padding: 10px 13px;
  background: #edf2e9;
  color: var(--teal-dark);
  font-size: 0.94rem;
}

.plan-feature-list {
  border-top: 1px solid var(--line);
  padding-top: 14px !important;
}

.owner-hero {
  max-width: none;
  margin-bottom: 16px;
}

.owner-login-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 24px;
  align-items: center;
  max-width: 1120px;
  margin: 36px auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 44px);
  background: white;
}

.owner-login-panel h1 {
  max-width: 620px;
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 4rem);
}

.owner-login-panel p {
  color: var(--muted);
}

.owner-login-form {
  display: grid;
  gap: 16px;
  border: 1px solid rgba(4, 120, 87, 0.14);
  border-radius: 8px;
  padding: 20px;
  background: #fbfdf9;
}

.owner-login-form label {
  display: grid;
  gap: 8px;
  font-weight: 900;
}

.owner-login-form input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  background: white;
  color: var(--ink);
  font: inherit;
  font-weight: 750;
}

.owner-login-form button[type="submit"] {
  min-height: 50px;
  border: 0;
  border-radius: 8px;
  background: var(--teal);
  color: white;
  font: inherit;
  font-weight: 900;
}

.owner-login-form .password-toggle {
  position: absolute;
  top: 50%;
  right: 8px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(4, 120, 87, 0.2);
  border-radius: 999px;
  background: rgba(236, 246, 241, 0.95);
  color: var(--teal-dark);
  font-size: 0.82rem;
  transform: translateY(-50%);
}

.owner-signout {
  display: flex;
  justify-content: center;
  padding: 18px 0 34px;
}

.owner-signout-button {
  min-width: 150px;
  min-height: 46px;
  border: 1px solid rgba(185, 79, 65, 0.32);
  border-radius: 8px;
  background: #fff7f5;
  color: #a64032;
  font: inherit;
  font-weight: 900;
}

.owner-signout-button:hover {
  border-color: rgba(185, 79, 65, 0.54);
  background: #fdebe7;
}

.owner-hero h1 {
  max-width: 1180px;
  margin-bottom: 10px;
  font-size: clamp(1.9rem, 3vw, 3.15rem);
  line-height: 1;
}

.owner-hero p {
  max-width: 980px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
}

.owner-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 12px;
}

.owner-summary div,
.owner-panel,
.lead-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.owner-summary div {
  min-height: 92px;
  padding: 16px;
}

.owner-summary strong {
  display: block;
  margin-bottom: 10px;
  color: var(--teal);
  font-size: clamp(1.35rem, 2vw, 2.15rem);
  line-height: 1;
  overflow-wrap: anywhere;
}

.owner-summary span {
  color: var(--muted);
}

.owner-panel {
  margin-top: 12px;
  padding: clamp(18px, 3vw, 26px);
}

.owner-panel h2 {
  margin-bottom: 14px;
  font-size: clamp(1.55rem, 2.5vw, 2.65rem);
  line-height: 1;
}

.activation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.plan-send-panel h2 {
  max-width: 760px;
}

.plan-send-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.plan-send-button {
  display: grid;
  justify-items: start;
  gap: 14px;
  min-height: 150px;
  border: 1px solid rgba(122, 147, 109, 0.24);
  border-radius: 8px;
  padding: 20px;
  background: #f8faf4;
  color: var(--ink);
  font: inherit;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.plan-send-button:hover {
  border-color: rgba(122, 147, 109, 0.42);
  box-shadow: 0 16px 36px rgba(23, 32, 31, 0.08);
  transform: translateY(-2px);
}

.plan-send-button span {
  color: var(--teal-dark);
  font-size: clamp(1.9rem, 3vw, 3.1rem);
  font-weight: 900;
  line-height: 1;
}

.plan-send-button strong {
  color: var(--muted);
  font-size: 1rem;
}

.plan-send-button.pro {
  background: #f4fbf8;
}

.send-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--teal-dark);
  font-weight: 800;
}

.activation-grid article {
  min-height: 160px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: #f8faf4;
}

.activation-grid span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  border-radius: 8px;
  background: var(--teal);
  color: white;
  font-weight: 900;
}

.activation-grid h3,
.lead-card h3 {
  margin-bottom: 8px;
}

.activation-grid p,
.lead-card p,
.lead-card dd,
.empty-state {
  color: var(--muted);
  line-height: 1.55;
}

.leads-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

.refresh-button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 16px;
  background: white;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.leads-list {
  display: grid;
  gap: 12px;
}

.lead-card-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 74px;
  padding: 14px 16px;
  cursor: pointer;
  list-style: none;
}

.lead-card-summary::-webkit-details-marker {
  display: none;
}

.lead-card-summary h3 {
  margin-bottom: 4px;
}

.lead-card-summary p {
  margin-bottom: 0;
}

.lead-summary-meta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.lead-summary-meta > span:first-child {
  color: var(--muted);
  font-size: 0.92rem;
  white-space: nowrap;
}

.expand-button {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f8faf4;
  color: var(--teal-dark);
  font-size: 1.2rem;
  font-weight: 900;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.lead-card[open] .expand-button {
  background: rgba(122, 147, 109, 0.1);
  transform: rotate(180deg);
}

.lead-card-details {
  border-top: 1px solid var(--line);
  padding: 0 16px 16px;
}

.lead-card dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 16px 0;
}

.lead-card dt {
  margin-bottom: 4px;
  color: var(--ink);
  font-weight: 900;
}

.lead-card dd {
  margin: 0;
  overflow-wrap: anywhere;
}

.activation-note,
.empty-state {
  border-radius: 8px;
  padding: 14px;
  background: #edf2e9;
  color: var(--teal-dark);
  font-weight: 800;
}

@media (max-width: 1040px) {
  .hero,
  .intro-section,
  .briefing-section,
  .proof-section,
  .demo-section,
  .signup-shell {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .ops-console {
    min-height: auto;
  }

  .briefing-dashboard {
    grid-template-columns: 1fr;
  }

  .briefing-phone {
    min-height: 320px;
  }

  .workflow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .workflow-slide {
    grid-template-columns: 1fr;
  }

  .workflow-carousel {
    min-height: 520px;
  }

  .workflow-visual {
    min-height: 220px;
  }

  .activation-grid,
  .faq-grid,
  .pricing-grid,
  .security-grid,
  .legal-grid,
  .plan-send-grid,
  .payment-row,
  .setup-grid,
  .customer-status,
  .billing-page-summary,
  .trial-plan-switcher,
  .detail-form-grid,
  .customer-home,
  .customer-dashboard-grid,
  .dashboard-briefing-card,
  .briefing-total-row,
  .split-panel,
  .morning-scheduler,
  .morning-scheduler-card,
  .owner-summary {
    grid-template-columns: 1fr;
  }

  .customer-home .approval-inbox,
  .customer-home .recent-briefings,
  .customer-home .customize-chief,
  .approval-action-panels {
    grid-column: 1;
    grid-row: auto;
  }

  .logos {
    grid-template-columns: 1fr;
  }

  .logo-row {
    justify-content: flex-start;
  }
}

@media (min-width: 1041px) and (max-height: 820px) {
  .hero {
    align-items: start;
    min-height: calc(100vh - 72px);
    padding-top: 14px;
    padding-bottom: 12px;
  }

  h1 {
    max-width: 700px;
    margin-bottom: 8px;
    font-size: clamp(2.2rem, 4.65vw, 4.12rem);
    line-height: 0.96;
  }

  .hero-text {
    max-width: 650px;
    font-size: 1rem;
    line-height: 1.42;
  }

  .hero-actions {
    margin-top: 14px;
  }

  .trial-callout {
    width: min(100%, 600px);
    gap: 12px;
    margin-top: 14px;
    padding: 9px 12px 9px 9px;
  }

  .trial-number {
    width: 74px;
    height: 74px;
  }

  .trial-number::before {
    inset: -5px;
  }

  .trial-number strong {
    font-size: 2.28rem;
  }

  .trial-number span {
    font-size: 0.72rem;
  }

  .trial-copy {
    gap: 4px;
  }

  .trial-copy > strong {
    font-size: clamp(1.45rem, 2.45vw, 2rem);
  }

  .trial-copy > span:not(.trial-live) {
    font-size: 0.92rem;
  }

  .trial-live {
    min-height: 28px;
    padding: 5px 9px;
    font-size: 0.82rem;
  }

  .trial-progress {
    height: 6px;
  }

  .ops-console {
    min-height: 430px;
    padding: 14px;
  }

  .console-header {
    min-height: 44px;
    margin-bottom: 6px;
    padding-top: 4px;
  }

  .console-header strong {
    font-size: 1.14rem;
  }

  .briefing-dashboard {
    gap: 12px;
  }

  .briefing-phone {
    min-height: 272px;
    padding: 10px;
  }

  .contact-row {
    padding-bottom: 6px;
  }

  .text-thread {
    gap: 6px;
    margin: 8px 0;
    padding: 10px;
  }

  .chat-bubble {
    padding: 8px 11px;
    font-size: 0.88rem;
  }

  .phone-actions button {
    min-height: 34px;
  }

  .briefing-panel {
    gap: 10px;
    padding: 12px;
  }

  .briefing-stat-row div {
    min-height: 62px;
    padding: 10px;
  }

  .briefing-stat-row strong {
    margin-bottom: 4px;
    font-size: 1.85rem;
  }

  .live-track {
    padding: 6px;
  }

  .live-track span {
    min-height: 26px;
    font-size: 0.8rem;
  }

  .priority-list article {
    min-height: 66px;
    padding: 10px;
  }

  .priority-list p {
    font-size: 0.9rem;
  }

  .priority-list article:last-child {
    display: none;
  }

  .briefing {
    margin-top: 10px;
    padding: 10px 14px;
  }

  .briefing span {
    margin-bottom: 5px;
  }

  .briefing p {
    font-size: 0.9rem;
    line-height: 1.35;
  }
}

@media (max-width: 720px) {
  .topbar {
    align-items: flex-start;
  }

  .brand span:last-child {
    max-width: 170px;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    min-height: 38px;
    padding-inline: 12px;
    font-size: 0.9rem;
  }

  .hero {
    padding-top: 34px;
  }

  .trial-callout {
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
  }

  .trial-number {
    width: 76px;
    height: 76px;
  }

  .trial-number strong {
    font-size: 2.35rem;
  }

  h1 {
    font-size: clamp(2.45rem, 14vw, 4rem);
  }

  .console-grid,
  .briefing-stat-row,
  .metric-strip,
  .approval-row,
  .workflow-grid {
    grid-template-columns: 1fr;
  }

  .workflow-section .section-heading {
    align-items: start;
  }

  .workflow-carousel {
    min-height: 560px;
  }

  .workflow-slide {
    padding: 20px;
  }

  .workflow-copy h3 {
    font-size: clamp(1.8rem, 10vw, 3rem);
  }

  .workflow-controls {
    width: 100%;
    justify-content: flex-start;
  }

  .workflow-visual {
    min-height: 230px;
  }

  .visual-window,
  .brief-card,
  .approval-message,
  .visual-phone-card,
  .urgent-card {
    left: 24px;
    width: calc(100% - 48px);
  }

  .visual-chip {
    right: 24px;
  }

  .visual-chip.second {
    right: 84px;
  }

  .record-card {
    right: 24px;
    width: calc(100% - 96px);
  }

  .priority-radar {
    left: 34px;
  }

  .followup-lane {
    left: 24px;
    right: 24px;
  }

  .caught-lead {
    right: 24px;
  }

  .signal-card.wide {
    grid-column: auto;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .scatter-demo {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .scatter-demo::before,
  .chief-sorter span::before,
  .chief-sorter span::after {
    display: none;
  }

  .scatter-stage {
    min-height: 210px;
  }

  .demo-section {
    margin-inline: 18px;
  }

  .site-footer {
    display: grid;
  }

  .leads-heading {
    display: grid;
  }

  .lead-card-summary,
  .lead-summary-meta {
    align-items: start;
  }

  .lead-card-summary {
    display: grid;
  }

  .lead-card dl {
    grid-template-columns: 1fr;
  }
}
