@charset "UTF-8";
.label {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: #6D4FE0;
}
.label::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 1px;
  background: #7C5CFC;
  flex-shrink: 0;
}

.btn-fill {
  display: inline-flex;
  align-items: center;
  font-family: "Inter", sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
  background: #07101F;
  padding: 0.75rem 1.625rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s, transform 0.12s, box-shadow 0.15s;
  box-shadow: 0 1px 2px rgba(7, 16, 31, 0.06);
}
.btn-fill:hover {
  background: #14233C;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(7, 16, 31, 0.18);
}
.btn-fill.large {
  font-size: 1rem;
  padding: 0.875rem 2.125rem;
}

.btn-plain {
  display: inline-flex;
  align-items: center;
  font-family: "Inter", sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #5B6472;
  text-decoration: none;
  transition: color 0.15s;
}
.btn-plain:hover {
  color: #6D4FE0;
}

.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.wrap.centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section {
  padding: 84px 0;
  position: relative;
  border-top: 1px solid rgba(7, 16, 31, 0.06);
}
.section.white {
  background: #fff;
}
.section.light {
  background: #F8F7FF;
}
.section h2, .section h3, .section p {
  margin: 0;
}
.section h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: #07101F;
  line-height: 1.12;
  letter-spacing: -0.03em;
}
.section h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #07101F;
  line-height: 1.15;
  letter-spacing: -0.03em;
}
.section p {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #5B6472;
  line-height: 1.72;
}

.h2-large {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.125rem, 4.5vw, 3.375rem);
  font-weight: 700;
  color: #07101F;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}

.sub {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #5B6472;
  line-height: 1.72;
  max-width: 480px;
}
.sub.wide {
  max-width: 580px;
  margin-bottom: 32px;
}

.center-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  margin-bottom: 56px;
}
.center-head .sub {
  max-width: 520px;
}

.feat-frame {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(7, 16, 31, 0.09);
  box-shadow: 0 1px 2px rgba(7, 16, 31, 0.04), 0 12px 32px rgba(7, 16, 31, 0.06);
}

.hero-ledger-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(to bottom, rgba(7, 16, 31, 0.055) 0, rgba(7, 16, 31, 0.055) 1px, transparent 1px, transparent 38px);
  -webkit-mask-image: radial-gradient(ellipse 60% 52% at 50% 12%, black 25%, transparent 78%);
  mask-image: radial-gradient(ellipse 60% 52% at 50% 12%, black 25%, transparent 78%);
}

.band-ledger-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(to bottom, rgba(7, 16, 31, 0.055) 0, rgba(7, 16, 31, 0.055) 1px, transparent 1px, transparent 38px);
  -webkit-mask-image: radial-gradient(ellipse 62% 60% at 50% 50%, black 25%, transparent 78%);
  mask-image: radial-gradient(ellipse 62% 60% at 50% 50%, black 25%, transparent 78%);
}

.hero {
  position: relative;
  background: linear-gradient(180deg, #F8F7FF 0%, #fff 100%);
  padding: 156px 0 96px;
  overflow: hidden;
}
.hero .hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 2;
}
.hero .hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}
.hero .hero-text .label {
  margin-bottom: 4px;
}
.hero .hero-text h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.875rem, 7.5vw, 5.5rem);
  font-weight: 700;
  color: #07101F;
  line-height: 1.07;
  letter-spacing: -0.04em;
  max-width: 820px;
  margin: 0;
}
.hero .hero-sub {
  font-family: "Inter", sans-serif;
  font-size: 1.0625rem;
  color: #5B6472;
  line-height: 1.72;
  max-width: 560px;
}
.hero .hero-btns {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 4px;
}
.hero .hero-frame {
  width: 100%;
  max-width: 760px;
}

.ledger-panel {
  position: relative;
  background: #fff;
  border: 1px solid rgba(7, 16, 31, 0.09);
  border-radius: 16px;
  padding: 28px 32px 26px;
  box-shadow: 0 1px 2px rgba(7, 16, 31, 0.04), 0 4px 16px rgba(7, 16, 31, 0.05), 0 32px 64px rgba(124, 92, 252, 0.1);
  text-align: left;
}
.ledger-panel::before {
  content: "";
  position: absolute;
  inset: -18px -18px auto auto;
  top: -18px;
  right: -18px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(124, 92, 252, 0.16) 0%, transparent 72%);
  pointer-events: none;
  z-index: -1;
}
.ledger-panel .lp-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}
.ledger-panel .lp-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #0F8A5F;
}
.ledger-panel .lp-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0F8A5F;
  animation: lp-pulse 2s ease-in-out infinite;
}
.ledger-panel .lp-period {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.6875rem;
  color: #97A1AC;
  letter-spacing: 0.02em;
}
.ledger-panel .lp-figure {
  font-family: "IBM Plex Mono", monospace;
  font-size: clamp(2.25rem, 4vw, 2.875rem);
  font-weight: 500;
  color: #07101F;
  letter-spacing: -0.02em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.ledger-panel .lp-figure-label {
  font-family: "Inter", sans-serif;
  font-size: 0.8125rem;
  color: #5B6472;
  margin-top: 6px;
}
.ledger-panel .lp-chart {
  display: flex;
  align-items: flex-end;
  gap: 7px;
  height: 64px;
  margin: 26px 0 6px;
}
.ledger-panel .lp-bar {
  flex: 1;
  background: linear-gradient(180deg, #7C5CFC 0%, #6D4FE0 100%);
  border-radius: 3px 3px 1px 1px;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.ledger-panel .lp-bar:last-child {
  background: linear-gradient(180deg, #07101F 0%, #14233C 100%);
}
.ledger-panel .lp-panel-visible .lp-bar {
  transform: scaleY(1);
}
.ledger-panel .lp-days {
  display: flex;
  gap: 7px;
  margin-bottom: 22px;
}
.ledger-panel .lp-days span {
  flex: 1;
  text-align: center;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.625rem;
  color: #97A1AC;
}
.ledger-panel .lp-stats {
  display: flex;
  border-top: 1px solid rgba(7, 16, 31, 0.09);
  padding-top: 16px;
  gap: 8px;
}
.ledger-panel .lp-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.ledger-panel .lp-stat:not(:last-child) {
  border-right: 1px solid rgba(7, 16, 31, 0.09);
}
.ledger-panel .lp-stat-n {
  font-family: "IBM Plex Mono", monospace;
  font-size: 1.0625rem;
  font-weight: 500;
  color: #07101F;
  font-variant-numeric: tabular-nums;
}
.ledger-panel .lp-stat-l {
  font-family: "Inter", sans-serif;
  font-size: 0.7rem;
  color: #97A1AC;
}

@keyframes lp-pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}
.trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.trio .trio-card {
  background: #F8F7FF;
  border: 1px solid rgba(7, 16, 31, 0.09);
  border-radius: 14px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.trio .trio-step {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #6D4FE0;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(7, 16, 31, 0.09);
  margin-bottom: 2px;
}
.trio .trio-name {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.0625rem;
  font-weight: 600;
  color: #07101F;
}
.trio .trio-desc {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  color: #5B6472;
  line-height: 1.65;
}

.cloud-band {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
  background: #F8F7FF;
}
.cloud-band .wrap {
  position: relative;
  z-index: 2;
}
.cloud-band .wide-frame {
  width: 100%;
  max-width: 1080px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(7, 16, 31, 0.09);
  box-shadow: 0 2px 8px rgba(7, 16, 31, 0.05), 0 20px 48px rgba(7, 16, 31, 0.06);
  margin-top: 48px;
  background: #fff;
}

.mock-card {
  width: 100%;
  background: #fff;
  border: 1px solid rgba(7, 16, 31, 0.09);
  border-radius: 4px;
  font-family: "Inter", sans-serif;
  overflow: hidden;
}

.mock-cal {
  padding: 18px 20px 20px;
}
.mock-cal .mock-cal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.mock-cal .mock-cal-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #07101F;
}
.mock-cal .mock-cal-pill {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.625rem;
  color: #6D4FE0;
  background: rgba(124, 92, 252, 0.1);
  padding: 3px 9px;
  border-radius: 100px;
  letter-spacing: 0.02em;
}
.mock-cal .mock-cal-grid {
  display: grid;
  grid-template-columns: 34px repeat(5, 1fr);
  border: 1px solid rgba(7, 16, 31, 0.09);
  border-radius: 6px;
  overflow: hidden;
}
.mock-cal .mock-cal-dayhead {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.625rem;
  color: #97A1AC;
  text-align: center;
  padding: 6px 2px;
  background: #F8F7FF;
  border-bottom: 1px solid rgba(7, 16, 31, 0.09);
}
.mock-cal .mock-cal-time {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.5625rem;
  color: #97A1AC;
  padding: 3px 4px;
  border-top: 1px solid rgba(7, 16, 31, 0.06);
  border-right: 1px solid rgba(7, 16, 31, 0.06);
  display: flex;
  align-items: flex-start;
}
.mock-cal .mock-cal-cell {
  border-top: 1px solid rgba(7, 16, 31, 0.06);
  border-right: 1px solid rgba(7, 16, 31, 0.06);
  min-height: 26px;
  position: relative;
  padding: 2px;
}
.mock-cal .mock-cal-cell:last-child {
  border-right: none;
}
.mock-cal .mock-cal-appt {
  background: rgba(124, 92, 252, 0.1);
  border-left: 2px solid #7C5CFC;
  border-radius: 3px;
  padding: 2px 5px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.5rem;
  color: #6D4FE0;
  line-height: 1.35;
  font-weight: 500;
}
.mock-cal .mock-cal-appt--dark {
  background: rgba(7, 16, 31, 0.06);
  border-left-color: #07101F;
  color: #07101F;
}

.mock-patient {
  padding: 22px 24px;
}
.mock-patient .mock-patient-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.mock-patient .mock-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7C5CFC 0%, #A78BFA 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.75rem;
  font-weight: 500;
  color: #fff;
  flex-shrink: 0;
}
.mock-patient .mock-patient-name {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #07101F;
}
.mock-patient .mock-patient-since {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  color: #97A1AC;
}
.mock-patient .mock-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding: 8px 0;
  border-top: 1px solid rgba(7, 16, 31, 0.06);
  font-size: 0.75rem;
}
.mock-patient .mock-row:first-of-type {
  border-top: 1px solid rgba(7, 16, 31, 0.09);
}
.mock-patient .mock-row-label {
  font-family: "Inter", sans-serif;
  color: #5B6472;
  white-space: nowrap;
}
.mock-patient .mock-row-leader {
  flex: 1;
  border-bottom: 1px dotted rgba(7, 16, 31, 0.09);
  transform: translateY(-3px);
}
.mock-patient .mock-row-val {
  font-family: "IBM Plex Mono", monospace;
  color: #07101F;
  font-weight: 500;
  white-space: nowrap;
}
.mock-patient .mock-patient-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 14px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.625rem;
  color: #0F8A5F;
  background: rgba(15, 138, 95, 0.12);
  padding: 4px 9px;
  border-radius: 100px;
}

.mock-line {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding: 7px 0;
  font-size: 0.8125rem;
}

.mock-line-label {
  font-family: "Inter", sans-serif;
  color: #5B6472;
  white-space: nowrap;
}

.mock-line-leader {
  flex: 1;
  border-bottom: 1px dotted rgba(7, 16, 31, 0.09);
  transform: translateY(-3px);
}

.mock-line-val {
  font-family: "IBM Plex Mono", monospace;
  color: #07101F;
  white-space: nowrap;
}

.mock-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(7, 16, 31, 0.09);
}
.mock-total .mock-line-label {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  color: #07101F;
  font-size: 0.875rem;
}
.mock-total .mock-line-val {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 600;
  font-size: 1rem;
}

.mock-invoice {
  padding: 22px 24px 24px;
  position: relative;
}
.mock-invoice .mock-invoice-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 16px;
}
.mock-invoice .mock-invoice-id {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.875rem;
  font-weight: 500;
  color: #07101F;
}
.mock-invoice .mock-invoice-date {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.6875rem;
  color: #97A1AC;
}
.mock-invoice .mock-stamp {
  position: absolute;
  top: 20px;
  right: 22px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #0F8A5F;
  border: 1.5px solid #0F8A5F;
  border-radius: 4px;
  padding: 4px 10px;
  transform: rotate(-7deg);
  opacity: 0.85;
}

.mock-crm {
  padding: 6px 0;
}
.mock-crm .mock-crm-head {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  padding: 10px 22px;
  background: #F8F7FF;
  border-bottom: 1px solid rgba(7, 16, 31, 0.09);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.625rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #97A1AC;
}
.mock-crm .mock-crm-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  align-items: center;
  padding: 11px 22px;
  border-bottom: 1px solid rgba(7, 16, 31, 0.06);
  font-size: 0.8125rem;
}
.mock-crm .mock-crm-row:last-child {
  border-bottom: none;
}
.mock-crm .mock-crm-name {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  color: #07101F;
}
.mock-crm .mock-crm-tag {
  display: inline-flex;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.625rem;
  padding: 2px 8px;
  border-radius: 100px;
  width: fit-content;
}
.mock-crm .mock-crm-tag--new {
  background: rgba(124, 92, 252, 0.1);
  color: #6D4FE0;
}
.mock-crm .mock-crm-tag--flw {
  background: rgba(180, 83, 9, 0.1);
  color: #B45309;
}
.mock-crm .mock-crm-tag--cust {
  background: rgba(15, 138, 95, 0.12);
  color: #0F8A5F;
}
.mock-crm .mock-crm-date {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.75rem;
  color: #97A1AC;
}

.mock-chart {
  padding: 22px 24px 20px;
}
.mock-chart .mock-chart-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 4px;
}
.mock-chart .mock-chart-title {
  font-family: "Inter", sans-serif;
  font-size: 0.8125rem;
  color: #5B6472;
}
.mock-chart .mock-chart-delta {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #0F8A5F;
}
.mock-chart svg {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 10px;
}
.mock-chart .mock-chart-axis {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
}
.mock-chart .mock-chart-axis span {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.625rem;
  color: #97A1AC;
}

.mock-ledger {
  padding: 22px 24px 24px;
}
.mock-ledger .mock-ledger-head {
  font-family: "Inter", sans-serif;
  font-size: 0.8125rem;
  color: #5B6472;
  margin-bottom: 14px;
}

.feat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.feat-row.flip .feat-img {
  order: -1;
}
.feat-row .feat-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.feat-row .feat-text .label {
  margin-bottom: 4px;
}
.feat-row .feat-text p {
  font-family: "Inter", sans-serif;
  font-size: 0.9375rem;
  color: #5B6472;
  line-height: 1.72;
  max-width: 420px;
}

.split-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split-row .split-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.split-row .split-text .label {
  margin-bottom: 4px;
}
.split-row .split-text h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: #07101F;
  line-height: 1.12;
  letter-spacing: -0.03em;
}
.split-row .split-text p {
  font-family: "Inter", sans-serif;
  font-size: 0.9375rem;
  color: #5B6472;
  line-height: 1.72;
}

.tabs-layout {
  display: grid;
  grid-template-columns: 268px 1fr;
  gap: 48px;
  align-items: start;
}
.tabs-layout .tabs-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.tabs-layout .tab {
  text-align: left;
  background: none;
  border: none;
  border-left: 2px solid transparent;
  cursor: pointer;
  padding: 14px 20px;
  border-radius: 0 8px 8px 0;
  transition: background 0.15s, border-color 0.15s;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.tabs-layout .tab:hover {
  background: rgba(124, 92, 252, 0.05);
}
.tabs-layout .tab.active {
  background: rgba(124, 92, 252, 0.07);
  border-left-color: #7C5CFC;
}
.tabs-layout .tab.active .tab-name {
  color: #6D4FE0;
}
.tabs-layout .tab .tab-name {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #07101F;
  display: block;
}
.tabs-layout .tab .tab-hint {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.75rem;
  color: #97A1AC;
  display: block;
}

.backoffice-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 48px;
}
.backoffice-head h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: #07101F;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.stars-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.stars-row .stars {
  color: #B45309;
  font-size: 1rem;
  letter-spacing: 3px;
}
.stars-row .stars-label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.75rem;
  color: #97A1AC;
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 48px;
}
.feat-grid .feat-row-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Inter", sans-serif;
  font-size: 0.9375rem;
  color: #07101F;
  font-weight: 500;
  padding: 11px 0;
  border-bottom: 1px solid rgba(7, 16, 31, 0.09);
}
.feat-grid .dot {
  width: 5px;
  height: 5px;
  border-radius: 1px;
  background: #7C5CFC;
  flex-shrink: 0;
}

.faq {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  border-top: 1px solid rgba(7, 16, 31, 0.09);
}
.faq .faq-item {
  border-bottom: 1px solid rgba(7, 16, 31, 0.09);
}
.faq .faq-item.open .faq-q::after {
  transform: rotate(180deg);
}
.faq .faq-item.open .faq-a {
  max-height: 260px;
  padding-bottom: 22px;
}
.faq .faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 22px 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #07101F;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq .faq-q::after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
  transition: transform 0.22s ease;
}
.faq .faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding-bottom 0.3s ease;
}
.faq .faq-a p {
  font-family: "Inter", sans-serif;
  font-size: 0.9375rem;
  color: #5B6472;
  line-height: 1.72;
}
.faq .faq-a p a {
  color: #6D4FE0;
  text-decoration: underline;
}

.final {
  background: #07101F;
  padding: 96px 0;
}
.final .final-h {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.125rem, 4.5vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 56px;
}
.final .final-cols {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 8px 80px;
  margin-bottom: 56px;
}
.final .final-item {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
  padding: 5px 0;
}
.final .final-item::before {
  content: "✓  ";
  color: #7C5CFC;
  font-weight: 700;
}

@media (max-width: 960px) {
  .trio {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .feat-row, .feat-row.flip, .split-row {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .feat-row.flip .feat-img {
    order: 0;
  }
  .tabs-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .tabs-layout .tabs-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
  }
  .tabs-layout .tab {
    border-left: none;
    border-bottom: 2px solid transparent;
    border-radius: 8px 8px 0 0;
  }
  .tabs-layout .tab.active {
    border-bottom-color: #7C5CFC;
    border-left-color: transparent;
  }
  .feat-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0 24px;
  }
  .final-cols {
    grid-template-columns: 1fr 1fr;
    gap: 8px 32px;
  }
  .mock-cal-grid {
    grid-template-columns: 28px repeat(5, 1fr);
  }
}
@media (max-width: 600px) {
  .hero {
    padding: 116px 0 64px;
  }
  .section {
    padding: 60px 0;
  }
  .cloud-band {
    padding: 72px 0;
  }
  .final {
    padding: 72px 0;
  }
  .feat-grid {
    grid-template-columns: 1fr;
  }
  .final-cols {
    grid-template-columns: 1fr;
  }
  .ledger-panel {
    padding: 22px 20px 20px;
  }
  .mock-crm-head, .mock-crm-row {
    grid-template-columns: 1.6fr 1fr 1fr;
    font-size: 0.7rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .btn-fill, .tab, .faq-q::after, .faq-a, .lp-bar {
    transition: none;
  }
  .lp-dot {
    animation: none;
  }
  .lp-bar {
    transform: scaleY(1);
  }
}
