:root {
  --background: #fdfdfc;
  --surface: #ffffff;
  --ink: #1e261b;
  --muted: #616b5a;
  --border: rgba(30, 38, 27, 0.12);
  --accent: #7ebc59;
  --accent-strong: #5c8c40;
  --accent-muted: rgba(126, 188, 89, 0.12);
  --shadow: 0 20px 60px rgba(15, 23, 15, 0.12);
  font-size: 16px;
  --warning: #d7822b;
  --warning-muted: rgba(215, 130, 43, 0.1);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--background);
  color: var(--ink);
  line-height: 1.6;
  scroll-behavior: smooth;
}

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

img {
  max-width: 100%;
  height: auto;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
}

.site-header {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  background: linear-gradient(180deg, rgba(253, 253, 252, 0.95), rgba(253, 253, 252, 0.8));
  backdrop-filter: blur(16px);
  z-index: 10;
}

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

.logo-icon {
  width: 28px;
  height: auto;
}

.brand {
  font-family: 'Montserrat', 'Inter', system-ui, sans-serif;
  font-size: 1.5rem;
  margin: 0;
  letter-spacing: -0.3px;
  color: var(--ink);
}

.brand-strong {
  font-weight: 600;
}

.brand-regular {
  font-weight: 400;
}

.logo .eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}

.logo .heading {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
}

nav {
  display: flex;
  gap: 1rem;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
  transition: color 0.2s ease;
  padding: 0.35rem 0;
}

nav a:hover {
  color: var(--accent-strong);
}

nav a.active {
  color: var(--accent-strong);
  font-weight: 600;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  color: #fff;
  background: var(--accent);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 10px 30px rgba(94, 163, 66, 0.2);
}

.button:hover {
  transform: translateY(-1px);
  background: var(--accent-strong);
}

.button.ghost {
  background: transparent;
  color: var(--accent-strong);
  border: 1px solid var(--accent);
  box-shadow: none;
}

.button.ghost:hover {
  background: var(--accent-muted);
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 5rem 0 3rem;
}

.hero-copy h1 {
  font-size: clamp(2.5rem, 4vw, 3.75rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-copy p {
  color: var(--muted);
  max-width: 520px;
}

.tag {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-strong);
  margin-bottom: 1rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.75rem 0;
  align-items: stretch;
}

.waitlist-form {
  flex: 1 1 360px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  background: var(--surface);
  box-shadow: 0 15px 35px rgba(18, 24, 18, 0.08);
}

.waitlist-form .field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-header {
  text-align: left;
  margin-bottom: 0.75rem;
}

.form-header h3 {
  margin: 0;
  font-size: 1.25rem;
}

.form-kicker {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--accent-strong);
  margin: 0 0 0.25rem;
}

.form-subline {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.waitlist-form input,
.waitlist-form select {
  border: 1px solid var(--border);
  border-radius: 0.9rem;
  padding: 0.95rem 1rem;
  font-size: 0.95rem;
  font-family: inherit;
  background: #fff;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.waitlist-form input:focus,
.waitlist-form select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(126, 188, 89, 0.2);
}

.waitlist-form button {
  width: 100%;
}

.phone-inputs {
  display: flex;
  gap: 0.75rem;
  width: 100%;
}

.phone-inputs select {
  flex: 0 0 190px;
}

.phone-inputs input {
  flex: 1;
}

.select-field {
  position: relative;
  width: 100%;
}

.select-field select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  background: #fff;
  padding-right: 2.5rem;
  cursor: pointer;
}

.select-field::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 1rem;
  width: 0.5rem;
  height: 0.5rem;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: translateY(-50%) rotate(45deg);
  pointer-events: none;
}

.phone-inputs .select-field {
  flex: 0 0 190px;
}

.cta-form {
  flex: 1 1 360px;
  max-width: 520px;
  width: 100%;
}

.wide-form {
  max-width: 900px;
  width: 100%;
}

.hero-panel {
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2rem;
  background: radial-gradient(circle at top, rgba(126, 188, 89, 0.1), transparent), var(--surface);
  box-shadow: var(--shadow);
}

.panel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.panel-grid article {
  border-radius: 1.25rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(230, 236, 228, 0.8);
  box-shadow: 0 10px 30px rgba(23, 31, 19, 0.06);
  height: 100%;
}

.insight-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  height: 100%;
}

.insight-card ul {
  margin: 0;
}

.compact li {
  margin-bottom: 0.4rem;
}

.session-header {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.session-ratings {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.rating-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin: 0;
}

.rating-value {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0.2rem 0;
}

.rating-value.positive {
  color: var(--accent-strong);
}

.rating-value.caution {
  color: var(--warning);
}

.rating-trend {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.rating-trend.positive {
  color: var(--accent-strong);
}

.rating-trend.caution {
  color: var(--warning);
}

.session-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.metric-card {
  border: 1px solid rgba(30, 38, 27, 0.08);
  border-radius: 1rem;
  padding: 1rem;
  background: rgba(247, 250, 245, 0.7);
}

.metric-card.highlight {
  background: rgba(126, 188, 89, 0.1);
}

.metric-title {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  margin: 0;
  color: var(--muted);
}

.metric-value {
  margin: 0.1rem 0;
  font-size: 1.2rem;
  font-weight: 600;
}

.metric-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

.panel-grid ul {
  margin: 0.75rem 0 0;
  padding-left: 1.25rem;
  color: var(--muted);
}

.positive-list,
.issue-list,
.steps-list {
  color: var(--ink);
}

.with-icons {
  list-style: none;
  padding-left: 0;
}

.with-icons li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}

.with-icons .icon {
  font-weight: 700;
  color: var(--accent-strong);
}

.issue-list.with-icons .icon {
  color: var(--warning);
}

.issue-list li {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(23, 31, 19, 0.05);
}

.issue-list li:last-child {
  border-bottom: none;
}

.issue-text {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}

.timestamp {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.25rem;
}

.timestamp-link {
  color: var(--accent-strong);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
  cursor: default;
}

.timestamp-link:hover {
  border-color: var(--accent-strong);
}

.panel-grid .label {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.metric {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.detail {
  color: var(--muted);
  margin: 0;
}

.positive {
  color: var(--accent-strong);
}

section {
  margin-bottom: 4rem;
}

.problem {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  align-items: start;
}

.problem h2 {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.problem p {
  color: var(--muted);
}

.problem-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.problem-columns article {
  padding: 1.5rem;
  background: var(--surface);
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: 0 15px 35px rgba(18, 24, 18, 0.06);
}

.problem-columns h3 {
  margin-top: 0;
}

.problem-columns ul {
  padding-left: 1.2rem;
  color: var(--muted);
  margin: 1rem 0 0;
}

.features {
  text-align: center;
}

.features h2 {
  max-width: 720px;
  margin: 0 auto 2rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.feature-grid article {
  padding: 1.5rem;
  background: var(--surface);
  border-radius: 1.25rem;
  border: 1px solid var(--border);
  text-align: left;
}

.feature-grid h3 {
  margin-top: 0;
}

.feature-grid p {
  color: var(--muted);
}

.workflow {
  border: 1px solid var(--border);
  border-radius: 2rem;
  padding: 2rem;
  background: linear-gradient(120deg, rgba(126, 188, 89, 0.1), rgba(255, 255, 255, 0.9));
}

.workflow ol {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  counter-reset: steps;
}

.workflow li {
  border-radius: 1.25rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.7);
  position: relative;
  color: var(--muted);
}

.workflow li::before {
  counter-increment: steps;
  content: counter(steps);
  position: absolute;
  top: -15px;
  left: 1.25rem;
  background: var(--accent);
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 600;
}

.workflow h3 {
  margin-top: 0.5rem;
  color: var(--ink);
}

.dashboard {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: center;
}

.impact-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  color: var(--muted);
}

.impact-list li strong {
  color: var(--ink);
}

.impact-summary {
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 2rem;
  background: radial-gradient(circle at top, rgba(126, 188, 89, 0.1), transparent), var(--surface);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.impact-rings {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
}

.impact-ring {
  flex: 1 1 180px;
  border-radius: 999px;
  border: 1px solid rgba(30, 38, 27, 0.1);
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  text-align: center;
}

.ring-number {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--accent-strong);
}

.product-tour {
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 2rem;
  background: var(--surface);
  margin-bottom: 4rem;
  display: grid;
  grid-template-columns: minmax(240px, 35%) minmax(320px, 65%);
  gap: 2rem;
  align-items: stretch;
}

.tour-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tour-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tour-tab {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.45rem 1.2rem;
  background: transparent;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s ease;
}

.tour-tab.active {
  color: var(--accent-strong);
  border-color: var(--accent-strong);
  background: rgba(126, 188, 89, 0.1);
}

.tour-window {
  border-radius: 1.25rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
  background: #fff;
  display: grid;
  grid-template-columns: 160px 1fr;
}

.tour-browser-bar {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1rem;
  background: linear-gradient(90deg, #f8faf5, #eef5ea);
  border-bottom: 1px solid rgba(30, 38, 27, 0.08);
}

.tour-browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(30, 38, 27, 0.15);
}

.tour-browser-bar span:nth-child(1) {
  background: #ff6b6b;
}
.tour-browser-bar span:nth-child(2) {
  background: #fcca46;
}
.tour-browser-bar span:nth-child(3) {
  background: #4ecdc4;
}

.tour-browser-bar p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.tour-sidebar {
  border-right: 1px solid rgba(30, 38, 27, 0.08);
  background: #f7f9f4;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tour-sidebar h4 {
  margin: 0;
}

.tour-sidebar ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.tour-sidebar li {
  font-size: 0.9rem;
  color: var(--muted);
}

.tour-panel {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #fff;
}

.tour-panel ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.tour-viewport {
  border: 1px solid rgba(30, 38, 27, 0.08);
  border-radius: 1rem;
  overflow: hidden;
  background: #fff;
}

.tour-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.tour-table thead {
  background: rgba(126, 188, 89, 0.1);
}

.tour-table th,
.tour-table td {
  padding: 0.65rem 0.75rem;
  border-bottom: 1px solid rgba(30, 38, 27, 0.08);
  text-align: left;
}

.tour-status {
  font-weight: 600;
  color: var(--accent-strong);
}

.tour-status.warn {
  color: #b45309;
}

.tour-footer {
  border-top: 1px solid rgba(30, 38, 27, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  gap: 0.5rem;
}

.tour-footer button {
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.tour-footer button:hover {
  opacity: 0.9;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  z-index: 1000;
}

.modal.open {
  display: flex;
}

.modal-content {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  max-width: 520px;
  width: 100%;
  box-shadow: 0 40px 80px rgba(23, 31, 19, 0.2);
}

.modal-content header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.modal-content h3 {
  margin: 0;
}

.modal-close {
  border: none;
  background: transparent;
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
}

.modal-body {
  color: var(--muted);
  line-height: 1.6;
  max-height: 60vh;
  overflow-y: auto;
}

.modal-body ol {
  padding-left: 1.2rem;
  margin: 0 0 1rem;
}

.testimonial {
  border-radius: 2rem;
  padding: 2.5rem;
  background: var(--ink);
  color: #f7faf5;
}

.testimonial p {
  max-width: 760px;
}

.testimonial .author {
  font-weight: 600;
  margin-top: 1rem;
}

.cta {
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 2rem;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
}

.cta-content {
  text-align: center;
  max-width: 720px;
}

.form-invite {
  margin: 0;
  color: var(--muted);
  font-weight: 500;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--muted);
  align-items: center;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  text-decoration: none;
  color: var(--accent-strong);
}

.footer-links {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer-links a {
  font-weight: 600;
}

@media (max-width: 720px) {
  .site-header {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  nav {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }

  .hero {
    padding-top: 3rem;
  }

  .cta {
    flex-direction: column;
    text-align: center;
  }

  .phone-inputs {
    flex-direction: column;
  }

  .cta-form {
    max-width: 100%;
  }

  .phone-inputs select,
  .phone-inputs input {
    flex: 1 1 100%;
  }

  .phone-inputs select {
    max-width: 100%;
  }
}
.positive-card,
.issue-card {
  display: flex;
}
.session-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.session-date {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}

.session-identities {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.identity-label {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  margin: 0;
  color: var(--muted);
}

.session-identities h3 {
  margin: 0.2rem 0 0;
}
