:root {
  --red: #C8392B;
  --red-dark: #A92F24;
  --blue: #1B6CA8;
  --bg: #FAF9F7;
  --surface: #FFFFFF;
  --text: #1C1C1C;
  --ink: #1B2D4F;
  --muted: #5A5A5A;
  --faint: #9A9690;
  --line: #E8E4DF;
  --ui: #EEF2F7;
  --green: #1A7A4A;
  --amber: #E89024;
  --graphite: #141819;
  --warm: #F7F3EE;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: "Noto Sans Thai", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

img,
svg {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: 0;
  font: inherit;
  cursor: pointer;
}

.grid-bg {
  background-color: var(--bg);
  background-image:
    linear-gradient(rgba(28, 28, 28, .042) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28, 28, 28, .042) 1px, transparent 1px);
  background-size: 32px 32px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 0.5px solid rgba(232, 228, 223, .86);
  background: rgba(250, 249, 247, .86);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(1180px, calc(100% - 40px));
  height: 70px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--text);
  font-family: "Prompt", "Noto Sans Thai", sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  color: #FFFFFF;
  background: var(--red);
  font-size: 21px;
  box-shadow: 0 10px 22px rgba(200, 57, 43, .18);
}

.brand-word b {
  color: var(--red);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--red);
}

.nav-cta,
.primary-link,
.secondary-link {
  min-height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

.nav-cta {
  padding: 10px 17px;
  color: #FFFFFF;
  background: var(--graphite);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: var(--text);
}

.hero {
  position: relative;
  min-height: calc(100vh - 70px);
  padding: 82px max(20px, calc((100vw - 1180px) / 2)) 72px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, .95fr);
  gap: 62px;
  align-items: center;
}

.hero-copy {
  max-width: 650px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
}

.hero h1 {
  margin: 0;
  color: var(--text);
  font-size: 72px;
  line-height: 1.03;
  font-weight: 800;
  letter-spacing: 0;
}

.hero-title-mobile {
  display: none;
}

.hero-sub {
  margin: 24px 0 0;
  max-width: 610px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.78;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.primary-link {
  padding: 12px 22px;
  color: #FFFFFF;
  background: var(--red);
  box-shadow: 0 12px 28px rgba(200, 57, 43, .22);
}

.primary-link:hover {
  background: var(--red-dark);
}

.secondary-link {
  padding: 12px 20px;
  color: var(--ink);
  background: #FFFFFF;
  border: 1px solid var(--line);
}

.trust-row {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--faint);
  font-size: 12px;
  font-weight: 800;
}

.trust-row span {
  border: 1px solid rgba(232, 228, 223, .86);
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, .72);
}

.hero-stage {
  position: relative;
  min-height: 560px;
  pointer-events: none;
}

.hero-mascot-card {
  position: absolute;
  z-index: 3;
  left: -24px;
  bottom: 12px;
  width: 215px;
  border: 1px solid rgba(232, 228, 223, .88);
  border-radius: 24px;
  padding: 14px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 20px 54px rgba(28, 28, 28, .12);
  transform: rotate(-2deg);
}

.hero-mascot-card img,
.mascot-panel img,
.feature-art img,
.final-cta img {
  display: block;
  width: 100%;
  height: auto;
}

.dashboard-preview {
  position: absolute;
  inset: 16px 0 auto 64px;
  z-index: 2;
  border: 1px solid #24282B;
  border-radius: 26px;
  overflow: hidden;
  background: var(--graphite);
  box-shadow: 0 30px 90px rgba(20, 24, 25, .22);
}

.preview-top {
  height: 44px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.preview-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #5D6164;
}

.preview-top span:first-child {
  background: var(--red);
}

.preview-top b {
  margin-left: 8px;
  color: rgba(255, 255, 255, .38);
  font-size: 11px;
  font-weight: 700;
}

.preview-body {
  min-height: 480px;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  background: var(--bg);
}

.preview-side {
  padding: 14px 10px;
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 14px;
  background: var(--graphite);
}

.preview-logo {
  width: 28px;
  height: 28px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  color: #FFFFFF;
  background: var(--red);
  font-family: "Prompt", sans-serif;
  font-weight: 700;
}

.preview-side i {
  width: 28px;
  height: 28px;
  border-radius: 9px;
  background: rgba(255, 255, 255, .08);
}

.preview-side i.active {
  background: rgba(200, 57, 43, .82);
}

.preview-main {
  padding: 18px;
}

.preview-head {
  margin-bottom: 14px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.preview-head small,
.preview-head em {
  color: var(--faint);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

.preview-head strong {
  display: block;
  margin-top: 2px;
  color: var(--ink);
  font-size: 16px;
}

.preview-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 13px;
}

.preview-kpis article,
.preview-jobs div,
.preview-income {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #FFFFFF;
}

.preview-kpis article {
  padding: 12px;
}

.preview-kpis small {
  color: var(--faint);
  font-size: 10px;
  font-weight: 800;
}

.preview-kpis b {
  display: block;
  margin-top: 5px;
  color: var(--ink);
  font-size: 21px;
  line-height: 1;
}

.preview-jobs {
  display: grid;
  gap: 8px;
}

.preview-jobs div {
  position: relative;
  padding: 12px 86px 12px 14px;
}

.preview-jobs b,
.preview-jobs span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.preview-jobs b {
  color: var(--ink);
  font-size: 13px;
}

.preview-jobs span {
  margin-top: 3px;
  color: var(--faint);
  font-size: 11px;
  font-weight: 700;
}

.preview-jobs i {
  position: absolute;
  top: 12px;
  right: 12px;
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
}

.s-working {
  color: #2E7D32;
  background: #E8F5E9;
}

.s-pending {
  color: #E07B2A;
  background: #FEF3E8;
}

.s-paid {
  color: #1A7A4A;
  background: #E8F5E9;
}

.preview-income {
  margin-top: 10px;
  padding: 14px;
}

.preview-income > div:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.preview-income span {
  color: var(--faint);
  font-size: 11px;
  font-weight: 800;
}

.preview-income strong {
  color: var(--green);
  font-size: 20px;
}

.mini-bars {
  height: 70px;
  margin-top: 14px;
  display: flex;
  align-items: flex-end;
  gap: 7px;
}

.mini-bars i {
  flex: 1;
  border-radius: 7px 7px 0 0;
  background: #E8E4DF;
}

.mini-bars i:nth-child(1) { height: 28%; }
.mini-bars i:nth-child(2) { height: 52%; background: #E8F5E9; }
.mini-bars i:nth-child(3) { height: 42%; }
.mini-bars i:nth-child(4) { height: 76%; background: #E8F5E9; }
.mini-bars i:nth-child(5) { height: 62%; }
.mini-bars i:nth-child(6) { height: 88%; background: #E8F5E9; }
.mini-bars i:nth-child(7) { height: 100%; background: var(--red); }

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2,
.final-cta h2 {
  margin: 0;
  color: var(--text);
  font-size: 46px;
  line-height: 1.14;
  font-weight: 800;
  letter-spacing: 0;
}

.section-head p:not(.eyebrow) {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.pain-grid,
.console-grid,
.pricing-grid {
  display: grid;
  gap: 14px;
}

.pain-section {
  width: 100%;
  max-width: none;
  scroll-margin-top: 92px;
  padding: 118px max(20px, calc((100vw - 1220px) / 2)) 98px;
  border-top: 1px solid rgba(232, 228, 223, .72);
  border-bottom: 1px solid rgba(232, 228, 223, .72);
}

.pain-section .section-head {
  max-width: 820px;
}

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

.pain-card,
.console-grid article,
.price-card,
.console-panel,
.mascot-panel,
.feature-stage,
.final-cta {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 10px 32px rgba(28, 28, 28, .045);
}

.pain-card {
  min-height: 370px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.pain-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(232, 228, 223, .24) 1px, transparent 1px),
    linear-gradient(180deg, rgba(232, 228, 223, .20) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 42%, #000 100%);
  opacity: .76;
}

.pain-card > * {
  position: relative;
  z-index: 1;
}

.pain-card-top {
  min-height: 36px;
  display: flex;
  align-items: center;
}

.pain-number {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(200, 57, 43, .18);
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: #FBF0EF;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
}

.pain-card h3 {
  margin: 20px 0 10px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.28;
}

.pain-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.68;
}

.pain-visual {
  margin-top: auto;
  width: 100%;
  min-height: 180px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-top: 24px;
}

.pain-illustration-frame {
  width: 100%;
  min-height: 190px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  border-radius: 14px;
  background: rgba(250, 249, 247, .42);
}

.pain-illustration-img {
  width: 112%;
  max-width: 430px;
  max-height: 260px;
  object-fit: contain;
  display: block;
  transform: scale(1.13);
  transform-origin: center bottom;
}

.pain-transition {
  margin: 26px auto 0;
  max-width: 680px;
  text-align: center;
}

.pain-transition p {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.72;
  font-weight: 800;
}

.pain-transition a {
  margin-top: 14px;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  background: rgba(255, 255, 255, .82);
  font-weight: 900;
  text-decoration: none;
}

.comparison-section {
  background: #1C1C1C;
  color: #FFFFFF;
  padding: 104px 0;
  scroll-margin-top: 92px;
}

.comparison-shell {
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
}

.comparison-head {
  max-width: 780px;
}

.comparison-head h2 {
  margin: 0;
  color: #FFFFFF;
  font-size: 48px;
  line-height: 1.14;
  font-weight: 800;
  letter-spacing: 0;
}

.comparison-head p:not(.eyebrow) {
  margin: 16px 0 0;
  max-width: 720px;
  color: rgba(255, 255, 255, .68);
  font-size: 17px;
  line-height: 1.76;
}

.comparison-table {
  margin-top: 36px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, .035);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .24);
}

.comparison-row {
  display: grid;
  grid-template-columns: .8fr 1fr 1.05fr;
  gap: 0;
  min-height: 104px;
  border-top: 1px solid rgba(255, 255, 255, .10);
}

.comparison-row:first-child {
  border-top: 0;
}

.comparison-row > div {
  padding: 22px 24px;
  border-left: 1px solid rgba(255, 255, 255, .10);
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 700;
}

.comparison-row > div:first-child {
  border-left: 0;
}

.comparison-row-head {
  min-height: 58px;
  background: rgba(255, 255, 255, .045);
}

.comparison-row-head > div {
  padding-top: 16px;
  padding-bottom: 16px;
  color: rgba(255, 255, 255, .56);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 900;
  text-transform: uppercase;
}

.comparison-topic {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 900;
}

.comparison-leak {
  color: rgba(255, 255, 255, .58);
}

.comparison-beavy {
  position: relative;
  color: rgba(255, 255, 255, .9);
  background: linear-gradient(90deg, rgba(200, 57, 43, .16), rgba(200, 57, 43, .03));
}

.comparison-beavy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 3px;
  border-radius: 999px;
  background: var(--red);
}

.comparison-leak span,
.comparison-beavy span {
  margin-bottom: 8px;
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
}

.comparison-leak span {
  color: rgba(255, 255, 255, .34);
}

.comparison-beavy span {
  color: #FFFFFF;
}

.comparison-cta {
  margin: 28px auto 0;
  max-width: 720px;
  text-align: center;
}

.comparison-cta p {
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: 18px;
  line-height: 1.76;
  font-weight: 800;
}

.comparison-cta a {
  margin-top: 16px;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  background: var(--red);
  font-weight: 900;
  box-shadow: 0 18px 42px rgba(200, 57, 43, .22);
}

.console-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
  gap: 16px;
  align-items: stretch;
}

.console-panel {
  padding: 20px;
}

.console-panel-head {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.console-panel-head span,
.console-grid span {
  display: block;
  color: var(--faint);
  font-size: 13px;
  font-weight: 900;
}

.console-panel-head strong {
  display: block;
  margin-top: 2px;
  color: var(--ink);
  font-size: 21px;
}

.console-panel-head a,
.mockup-open-label {
  border-radius: 10px;
  padding: 10px 13px;
  color: #FFFFFF;
  background: var(--graphite);
  font-size: 13px;
  font-weight: 900;
}

.mockup-open-label {
  cursor: default;
  user-select: none;
}

.console-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.console-grid article {
  min-height: 160px;
  padding: 18px;
}

.console-grid strong {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-size: 30px;
  line-height: 1.1;
}

.console-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.mascot-panel {
  padding: 22px;
  display: grid;
  align-content: space-between;
  overflow: hidden;
}

.mascot-panel img {
  max-width: 260px;
  margin: 0 auto;
}

.mascot-panel strong {
  display: block;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.35;
}

.mascot-panel p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.feature-tabs {
  margin: 0 auto 18px;
  width: fit-content;
  max-width: 100%;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #FFFFFF;
}

.feature-tab {
  min-height: 40px;
  border-radius: 12px;
  padding: 0 16px;
  color: var(--muted);
  background: transparent;
  font-weight: 900;
  white-space: nowrap;
}

.feature-tab.is-active {
  color: #FFFFFF;
  background: var(--red);
}

.feature-stage {
  min-height: 440px;
  padding: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(232, 228, 223, .38) 1px, transparent 1px),
    linear-gradient(180deg, rgba(232, 228, 223, .38) 1px, transparent 1px),
    #FFFFFF;
  background-size: 32px 32px;
}

.feature-copy p:first-child {
  margin: 0 0 9px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.feature-copy h3 {
  margin: 0;
  max-width: 640px;
  color: var(--ink);
  font-size: 42px;
  line-height: 1.18;
}

.feature-copy p:not(:first-child) {
  margin: 16px 0 0;
  max-width: 590px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.78;
}

.feature-copy ul,
.price-card ul {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.feature-copy li,
.price-card li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.feature-copy li::before,
.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
}

.feature-art {
  align-self: stretch;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--warm);
}

.feature-art img {
  max-width: 320px;
  max-height: 320px;
  object-fit: contain;
}

.ai-onboarding-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .54), rgba(250, 249, 247, 0)),
    var(--bg);
  border-top: 1px solid rgba(232, 228, 223, .64);
  border-bottom: 1px solid rgba(232, 228, 223, .64);
}

.ai-onboarding-shell {
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: 52px;
  align-items: center;
}

.ai-onboarding-copy {
  max-width: 560px;
}

.ai-onboarding-copy h2 {
  margin: 0;
  color: var(--text);
  font-size: 46px;
  line-height: 1.16;
  font-weight: 800;
  letter-spacing: 0;
}

.ai-onboarding-copy p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.78;
}

.ai-onboarding-copy ul {
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
}

.ai-onboarding-copy li {
  position: relative;
  padding-left: 24px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.68;
  font-weight: 800;
}

.ai-onboarding-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(200, 57, 43, .10);
}

.ai-onboarding-actions {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.ai-onboarding-actions span {
  color: var(--faint);
  font-size: 13px;
  font-weight: 800;
}

.ai-onboarding-visual {
  background: #fff;
  border: 1px solid #E8E4DF;
  border-radius: 28px;
  padding: 18px;
  box-shadow: 0 24px 70px rgba(28, 28, 28, 0.08);
}

.ai-onboarding-visual-img {
  width: 100%;
  max-width: 100%;
  display: block;
  object-fit: contain;
  border-radius: 20px;
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.price-card {
  position: relative;
  padding: 28px;
}

.price-card.featured {
  border-color: rgba(200, 57, 43, .45);
  box-shadow: 0 20px 60px rgba(200, 57, 43, .11);
}

.popular {
  position: absolute;
  top: 20px;
  right: 20px;
  border-radius: 999px;
  padding: 5px 11px;
  color: var(--red);
  background: #FBF0EF;
  font-size: 12px;
  font-weight: 900;
}

.price-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
}

.price {
  margin-top: 18px;
  color: var(--text);
  font-size: 46px;
  line-height: 1;
  font-weight: 800;
}

.price span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.price-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.price-card a {
  width: 100%;
  min-height: 44px;
  margin-top: 24px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  background: var(--graphite);
  font-size: 14px;
  font-weight: 900;
}

.price-card.featured a {
  background: var(--red);
}

.pricing-launch-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, .72fr);
  gap: 18px;
  align-items: stretch;
}

.team-offer-card,
.pricing-trial-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #FFFFFF;
  box-shadow: 0 24px 70px rgba(28, 28, 28, .08);
}

.team-offer-card {
  padding: 34px;
}

.team-offer-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.launch-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border-radius: 999px;
  padding: 5px 12px;
  color: var(--red);
  background: #FBF0EF;
  font-size: 13px;
  font-weight: 900;
}

.team-offer-card h3 {
  margin: 16px 0 0;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.2;
}

.launch-price {
  margin-top: 22px;
  color: var(--text);
  font-size: 58px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
}

.launch-price span {
  color: var(--muted);
  font-size: 17px;
  font-weight: 800;
}

.launch-desc {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.74;
}

.launch-features {
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
}

.launch-features li {
  position: relative;
  padding-left: 24px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.62;
  font-weight: 800;
}

.launch-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(200, 57, 43, .09);
}

.early-offer-box {
  margin-top: 24px;
  border: 1px solid rgba(200, 57, 43, .18);
  border-radius: 18px;
  padding: 18px;
  background: linear-gradient(180deg, #FFF8F7, #FFFFFF);
}

.early-offer-box span {
  display: block;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.early-offer-box strong {
  display: block;
  margin-top: 6px;
  color: var(--text);
  font-size: 20px;
  line-height: 1.35;
}

.early-offer-box p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 700;
}

.launch-cta {
  width: min(100%, 340px);
  min-height: 50px;
  margin-top: 24px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  background: var(--red);
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(200, 57, 43, .20);
}

.launch-note {
  margin: 12px 0 0;
  color: var(--faint);
  font-size: 13px;
  font-weight: 800;
}

.pricing-trial-card {
  min-height: 100%;
  padding: 26px;
  border-radius: 28px;
  display: grid;
  gap: 12px;
  background:
    linear-gradient(180deg, rgba(250, 249, 247, .72), rgba(255, 255, 255, 1)),
    #FFFFFF;
}

.pricing-trial-head h3 {
  margin: 0;
  color: var(--text);
  font-size: 28px;
  line-height: 1.22;
  font-weight: 900;
}

.pricing-trial-head p {
  margin: 6px 0 6px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 800;
}

.pricing-trial-row {
  min-height: 110px;
  border: 1px solid rgba(232, 228, 223, .86);
  border-radius: 18px;
  padding: 16px;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 132px;
  gap: 14px;
  align-items: center;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 14px 38px rgba(28, 28, 28, .045);
}

.pricing-trial-number {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  color: var(--red);
  background: #FBF0EF;
  font-size: 17px;
  font-weight: 900;
}

.pricing-trial-copy h4 {
  margin: 0;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.28;
  font-weight: 900;
}

.pricing-trial-copy p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  font-weight: 700;
}

.pricing-trial-visual {
  min-height: 82px;
  border: 1px solid rgba(232, 228, 223, .9);
  border-radius: 16px;
  background: #FFFFFF;
  box-shadow: 0 10px 24px rgba(28, 28, 28, .055);
}

.trial-calendar {
  padding: 13px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.trial-calendar div {
  height: 8px;
  border-radius: 999px;
  background: rgba(148, 163, 184, .24);
}

.trial-calendar span {
  height: 16px;
  border-radius: 6px;
  background: #F4F7FA;
}

.trial-calendar i {
  height: 16px;
  border-radius: 6px;
  background: rgba(27, 108, 168, .14);
}

.trial-calendar i:nth-of-type(2) {
  background: rgba(26, 122, 74, .18);
}

.trial-phone {
  position: relative;
  width: 66px;
  min-height: 86px;
  margin-left: auto;
  margin-right: auto;
  border: 3px solid var(--ink);
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #FFFFFF, #FAF9F7);
}

.trial-phone span {
  width: 24px;
  height: 28px;
  border-radius: 8px;
  background: var(--red);
  position: relative;
}

.trial-phone span::before {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  top: -10px;
  height: 14px;
  border: 3px solid var(--red);
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
}

.trial-phone b {
  position: absolute;
  bottom: 14px;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgba(148, 163, 184, .55);
}

.trial-phone b:nth-of-type(1) {
  left: 22px;
}

.trial-phone b:nth-of-type(2) {
  left: 31px;
}

.trial-phone b:nth-of-type(3) {
  left: 40px;
}

.trial-customer {
  position: relative;
  padding: 14px;
  display: grid;
  grid-template-columns: 36px 1fr 24px;
  gap: 10px;
  align-items: center;
}

.trial-customer > span {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 38%, var(--ink) 0 18%, transparent 19%),
    radial-gradient(circle at 50% 90%, rgba(27, 108, 168, .18) 0 44%, transparent 45%),
    #FBF0EF;
}

.trial-customer b,
.trial-customer i {
  display: block;
  height: 8px;
  border-radius: 999px;
}

.trial-customer b {
  width: 70px;
  background: rgba(28, 28, 28, .72);
}

.trial-customer i {
  width: 52px;
  margin-top: 8px;
  background: rgba(148, 163, 184, .26);
}

.trial-customer em {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #FBF0EF;
  position: relative;
}

.trial-customer em::after {
  content: "";
  position: absolute;
  right: 2px;
  top: 2px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--red);
}

.trial-revenue {
  padding: 14px;
}

.trial-revenue span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
}

.trial-revenue strong {
  display: block;
  margin-top: 4px;
  color: var(--text);
  font-size: 20px;
  line-height: 1;
}

.trial-revenue svg {
  width: 100%;
  height: 34px;
  margin-top: 8px;
  overflow: visible;
}

.trial-revenue path {
  fill: none;
  stroke: #35B779;
  stroke-width: 4;
  stroke-linecap: round;
}

.final-cta {
  width: min(980px, calc(100% - 40px));
  margin: 36px auto 92px;
  padding: 26px 34px;
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  overflow: hidden;
}

.final-cta img {
  max-width: 230px;
  margin: 0 auto;
}

.final-cta p:not(.eyebrow) {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.site-footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  border-top: 0.5px solid var(--line);
  padding: 28px 0 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 980px) {
  .section {
    width: min(100% - 32px, 1180px);
    padding: 84px 0;
  }

  .hero,
  .console-showcase,
  .feature-stage,
  .ai-onboarding-shell,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 72px max(18px, calc((100vw - 1180px) / 2)) 68px;
    gap: 42px;
  }

  .hero h1 {
    font-size: clamp(44px, 7vw, 60px);
    line-height: 1.07;
  }

  .hero-stage {
    min-height: 560px;
  }

  .dashboard-preview {
    inset: 0 0 auto 0;
  }

  .hero-mascot-card {
    left: 20px;
    bottom: 4px;
  }

  .console-grid,
  .pain-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-launch-grid {
    grid-template-columns: 1fr;
    max-width: 780px;
    margin: 0 auto;
  }

  .feature-art {
    min-height: 300px;
  }

  .ai-onboarding-shell {
    gap: 30px;
  }

  .ai-onboarding-copy {
    max-width: none;
  }

  .pricing-trial-row {
    grid-template-columns: 52px minmax(0, 1fr) 150px;
  }
}

@media (max-width: 720px) {
  body {
    min-width: 0;
  }

  .nav-shell {
    width: min(100% - 28px, 1180px);
    height: 62px;
    gap: 10px;
  }

  .brand {
    gap: 8px;
    font-size: 21px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    font-size: 19px;
  }

  .nav-toggle {
    display: none;
    order: 3;
  }

  .nav-cta {
    margin-left: auto;
    min-height: 40px;
    padding: 9px 13px;
    border-radius: 11px;
    font-size: 13px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding: 48px 16px 60px;
    gap: 32px;
  }

  .hero h1 {
    font-size: clamp(36px, 10vw, 42px);
    line-height: 1.08;
  }

  .hero-title-desktop {
    display: none;
  }

  .hero-title-mobile {
    display: inline;
  }

  .section-head h2,
  .final-cta h2,
  .comparison-head h2,
  .ai-onboarding-copy h2 {
    font-size: clamp(31px, 8.7vw, 36px);
    line-height: 1.14;
  }

  .feature-copy h3 {
    font-size: clamp(28px, 8vw, 32px);
    line-height: 1.18;
  }

  .hero-sub {
    font-size: 16px;
    line-height: 1.72;
  }

  .hero-stage {
    min-height: 0;
    height: 430px;
    max-height: 430px;
    overflow: hidden;
  }

  .hero-mascot-card {
    left: auto;
    right: 8px;
    bottom: -44px;
    z-index: 1;
    width: 112px;
    border-radius: 18px;
    padding: 8px;
  }

  .dashboard-preview {
    inset: 0;
    z-index: 2;
    max-height: 420px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 18px 48px rgba(20, 24, 25, .18);
  }

  .preview-top {
    height: 38px;
  }

  .preview-body {
    min-height: 360px;
  }

  .preview-main {
    padding: 14px;
  }

  .preview-kpis {
    gap: 8px;
  }

  .preview-kpis article {
    padding: 12px;
  }

  .preview-kpis b {
    font-size: 22px;
  }

  .preview-income {
    display: none;
  }

  .mini-bars {
    height: 44px;
  }

  .preview-body {
    grid-template-columns: 1fr;
  }

  .preview-side {
    display: none;
  }

  .preview-kpis,
  .pain-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .preview-jobs div:nth-child(n+3) {
    display: none;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  .hero-actions a {
    width: 100%;
  }

  .trust-row {
    gap: 8px;
  }

  .trust-row span {
    padding: 6px 9px;
  }

  .trust-row span:last-child {
    display: none;
  }

  .team-offer-card,
  .pricing-trial-card {
    border-radius: 20px;
    padding: 24px;
  }

  .team-offer-card h3 {
    font-size: 24px;
  }

  .launch-price {
    font-size: 46px;
  }

  .launch-price span {
    display: block;
    margin-top: 8px;
  }

  .launch-cta {
    width: 100%;
  }

  .pricing-trial-head h3 {
    font-size: 24px;
  }

  .pricing-trial-row {
    min-height: 0;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
  }

  .pricing-trial-visual {
    grid-column: 2;
    width: 100%;
  }

  .trial-phone {
    margin-left: 0;
  }

  .trial-customer {
    max-width: 170px;
  }

  .pain-section {
    padding: 78px 16px;
  }

  .pain-card {
    min-height: 0;
    padding: 24px;
  }

  .pain-visual {
    min-height: 188px;
    padding-top: 20px;
  }

  .pain-illustration-frame {
    min-height: 190px;
  }

  .pain-illustration-img {
    max-height: 260px;
  }

  .comparison-section {
    padding: 76px 0 84px;
  }

  .comparison-shell {
    width: min(100% - 28px, 1220px);
  }

  .comparison-head p:not(.eyebrow) {
    font-size: 15px;
  }

  .comparison-table {
    margin-top: 28px;
    border-radius: 18px;
    background: transparent;
    border: 0;
    box-shadow: none;
    display: grid;
    gap: 12px;
  }

  .comparison-row-head {
    display: none;
  }

  .comparison-row {
    min-height: 0;
    grid-template-columns: 1fr;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, .04);
  }

  .comparison-row > div {
    padding: 17px;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .10);
    font-size: 15px;
  }

  .comparison-row > div:first-child {
    border-top: 0;
  }

  .comparison-topic {
    font-size: 17px;
  }

  .comparison-beavy::before {
    top: 14px;
    bottom: 14px;
  }

  .comparison-cta p {
    font-size: 16px;
  }

  .preview-jobs div {
    padding-right: 14px;
  }

  .preview-jobs i {
    position: static;
    display: inline-flex;
    margin-top: 8px;
  }

  .section {
    width: min(100% - 28px, 1180px);
    padding: 72px 0;
  }

  .section-head {
    margin-bottom: 26px;
  }

  .section-head p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.68;
  }

  .console-panel {
    padding: 16px;
  }

  .console-panel-head {
    align-items: center;
    flex-direction: row;
    margin-bottom: 12px;
  }

  .console-panel-head a,
  .console-panel-head .mockup-open-label {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .preview-section .console-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .console-grid article {
    min-height: 104px;
    padding: 14px;
  }

  .console-grid strong {
    margin-top: 7px;
    font-size: 24px;
  }

  .console-grid p {
    display: none;
  }

  .mascot-panel {
    grid-template-columns: 94px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    padding: 16px;
    text-align: left;
  }

  .mascot-panel img {
    max-width: 94px;
    max-height: 150px;
    object-fit: contain;
  }

  .mascot-panel strong {
    font-size: 18px;
  }

  .mascot-panel p {
    font-size: 13px;
    line-height: 1.58;
  }

  .features-section .section-head h2 {
    font-size: clamp(29px, 8.1vw, 34px);
    line-height: 1.12;
  }

  .feature-stage {
    padding: 20px;
    min-height: 0;
    gap: 20px;
  }

  .feature-tabs {
    width: calc(100% + 8px);
    margin-left: -4px;
    padding: 5px;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
  }

  .feature-tab {
    flex: 0 0 auto;
  }

  .feature-art {
    min-height: 230px;
  }

  .feature-art img {
    max-width: 230px;
  }

  .ai-onboarding-shell {
    width: min(100% - 28px, 1220px);
    gap: 24px;
  }

  .ai-onboarding-copy p:not(.eyebrow) {
    font-size: 15px;
  }

  .ai-onboarding-copy li {
    font-size: 14px;
  }

  .ai-onboarding-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  .ai-onboarding-actions .primary-link {
    width: 100%;
  }

  .ai-onboarding-visual {
    border-radius: 20px;
    padding: 10px;
  }

  .ai-onboarding-visual-img {
    border-radius: 14px;
  }

  .pricing-launch-grid {
    gap: 16px;
  }

  .launch-desc,
  .launch-features li,
  .pricing-trial-copy p {
    font-size: 14px;
  }

  .early-offer-box {
    padding: 16px;
  }

  .early-offer-box strong {
    font-size: 18px;
  }

  .pricing-trial-card {
    gap: 12px;
  }

  .pricing-trial-head p {
    font-size: 14px;
  }

  .pricing-trial-copy h4 {
    font-size: 18px;
  }

  .pricing-trial-number {
    width: 42px;
    height: 42px;
    font-size: 15px;
  }

  .final-cta {
    text-align: center;
    padding: 26px 22px;
  }

  .final-cta .hero-actions {
    justify-content: center;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 430px) {
  .hero-stage {
    height: 430px;
    max-height: 430px;
  }

  .hero-mascot-card {
    display: none;
  }
}
