:root {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: #24313a;
  background: #f7f9f6;
  --ink: #24313a;
  --muted: #66727a;
  --soft: #edf6f3;
  --soft-2: #fbfdf9;
  --line: #d9e4de;
  --card: #ffffff;
  --primary: #256d72;
  --primary-2: #1f5d62;
  --accent: #b86435;
  --accent-2: #5b7b52;
  --success: #4f7d5a;
  --danger: #b4473a;
  --shadow: 0 22px 55px rgba(37, 70, 75, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #f7f9f6;
  color: var(--ink);
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  border-bottom: 1px solid rgba(217, 228, 222, 0.86);
  background: rgba(247, 249, 246, 0.92);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 850;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--primary);
  color: #fff;
  font-weight: 900;
}

.brand-text {
  font-size: 19px;
}

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

.nav-links a {
  text-decoration: none;
}

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

main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px 56px;
}

.hero {
  display: grid;
  place-items: center;
  min-height: calc(100vh - 86px);
  padding: 64px 0;
}

.marketing-page .hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.82fr);
  gap: 54px;
  align-items: center;
  min-height: auto;
  padding: 78px 0 64px;
  border-bottom: 1px solid var(--line);
}

.hero-content {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1 {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1;
  letter-spacing: 0;
  margin: 0 0 22px;
  color: var(--ink);
}

h2 {
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.1;
  letter-spacing: 0;
  margin: 0;
  color: var(--ink);
}

h3 {
  font-size: 18px;
  line-height: 1.25;
  margin: 0 0 8px;
  color: var(--ink);
}

.lead {
  font-size: 20px;
  line-height: 1.58;
  color: var(--muted);
  margin: 0;
  max-width: 680px;
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid var(--primary);
  background: var(--primary);
  color: #fff;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(37, 109, 114, 0.18);
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.button:hover {
  background: var(--primary-2);
  border-color: var(--primary-2);
  box-shadow: 0 16px 30px rgba(37, 109, 114, 0.22);
  transform: translateY(-1px);
}

.button:focus-visible,
.nav-links a:focus-visible,
.brand:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(102, 122, 68, 0.36);
  outline-offset: 3px;
}

.button.secondary {
  background: #fbfdf9;
  color: var(--primary);
  border-color: #d8cab8;
  box-shadow: none;
}

.button.secondary:hover {
  background: var(--soft);
}

.button.compact {
  min-height: 38px;
  padding: 8px 14px;
  font-size: 14px;
}

.button.danger {
  background: var(--danger);
  border-color: var(--danger);
}

.button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  color: #5d5148;
  font-size: 14px;
  font-weight: 750;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.82);
}

.hero-proof span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent-2);
}

.support-visual {
  position: relative;
  overflow: hidden;
  border: 1px solid #dfd0bd;
  border-radius: 8px;
  background: #fffdf8;
  box-shadow: var(--shadow);
}

.support-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(168, 86, 45, 0.12), rgba(102, 122, 68, 0.1));
}

.visual-toolbar,
.visual-footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  color: #6d6258;
  font-size: 14px;
  font-weight: 750;
}

.visual-toolbar {
  border-bottom: 1px solid var(--line);
}

.visual-toolbar strong {
  color: var(--primary);
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--success);
  box-shadow: 0 0 0 5px rgba(102, 122, 68, 0.14);
}

.visual-main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 18px;
}

.visual-screen {
  min-height: 230px;
  border: 1px solid #d8cab8;
  border-radius: 8px;
  background: #fff8ee;
  padding: 18px;
}

.screen-window {
  display: flex;
  gap: 6px;
  margin-bottom: 18px;
}

.screen-window span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #d8cab8;
}

.screen-topline,
.screen-row {
  height: 12px;
  border-radius: 999px;
  background: #e4d4c4;
}

.screen-topline {
  width: 62%;
  height: 18px;
  margin-bottom: 22px;
  background: var(--primary);
}

.screen-row {
  width: 62%;
  margin-bottom: 12px;
}

.screen-row.wide {
  width: 86%;
}

.screen-row.short {
  width: 44%;
}

.screen-alert {
  margin-top: 24px;
  display: grid;
  gap: 5px;
  max-width: 280px;
  border: 1px solid #efcfaa;
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  background: #fff8ee;
  padding: 13px 14px;
}

.screen-alert span,
.visual-panel li,
.visual-footer span {
  color: var(--muted);
}

.visual-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  padding: 16px;
}

.panel-label {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.visual-panel ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.visual-panel li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.visual-panel li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent-2);
}

.visual-footer {
  border-top: 1px solid var(--line);
}

.visual-footer button {
  border: 1px solid #d8cab8;
  border-radius: 8px;
  background: #fff;
  color: #7d4b2d;
  padding: 8px 11px;
  font-weight: 800;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 24px 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
}

.proof-strip div {
  display: grid;
  gap: 6px;
  padding: 20px;
}

.proof-strip div + div {
  border-left: 1px solid var(--line);
}

.proof-strip strong {
  color: var(--ink);
}

.proof-strip span {
  color: var(--muted);
  line-height: 1.48;
}

.section {
  scroll-margin-top: 96px;
  padding: 64px 0;
  border-bottom: 1px solid var(--line);
}

.section-copy,
.text-block p,
.service-grid p,
.workflow-list p,
.safety-list span,
.safety-band p,
.business-band p,
.pricing-section p,
.pricing-card p,
.faq-grid p {
  color: var(--muted);
  line-height: 1.62;
  margin: 0;
}

.split-section,
.safety-band,
.business-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 46px;
  align-items: start;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 26px;
}

.workflow-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.workflow-list li {
  display: flex;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  padding: 20px;
  box-shadow: 0 1px 0 rgba(92, 64, 39, 0.06);
}

.workflow-list li > span {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #f0eadb;
  color: var(--accent-2);
  font-weight: 900;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-grid article {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 216px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  padding: 24px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.service-grid article:hover {
  border-color: #d8cab8;
  box-shadow: 0 16px 36px rgba(92, 64, 39, 0.12);
  transform: translateY(-2px);
}

.service-icon {
  display: inline-flex;
  width: max-content;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  border-radius: 8px;
  background: #f2e6d6;
  color: #7d4b2d;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.safety-band {
  margin-top: 0;
  border: 1px solid #d8cab8;
  border-radius: 8px;
  background: #fff8ee;
  padding: 36px;
}

.safety-list {
  display: grid;
  gap: 12px;
}

.safety-list > div {
  display: grid;
  gap: 5px;
  border: 1px solid #ead8c0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  padding: 17px 18px;
}

.business-band {
  margin: 28px 0 0;
  border-bottom: 1px solid var(--line);
  padding: 56px 0;
}

.pricing-section {
  scroll-margin-top: 96px;
  border-bottom: 1px solid var(--line);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.pricing-card {
  display: grid;
  gap: 22px;
  align-content: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  padding: 26px;
}

.pricing-card.featured {
  border-color: rgba(138, 79, 43, 0.32);
  background: linear-gradient(180deg, #fffdf8 0%, #fff8ee 100%);
  box-shadow: 0 20px 46px rgba(92, 64, 39, 0.14);
}

.pricing-card-head {
  display: grid;
  gap: 12px;
}

.pricing-card h3 {
  font-size: 24px;
  margin: 0;
}

.pricing-badge {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  min-height: 30px;
  align-items: center;
  border-radius: 8px;
  background: #f0eadb;
  color: var(--accent-2);
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.muted-badge {
  background: #f2e6d6;
  color: #7d4b2d;
}

.price {
  display: grid;
  gap: 2px;
  padding: 18px 0 4px;
  border-top: 1px solid var(--line);
}

.price strong {
  color: var(--primary);
  font-size: clamp(38px, 4vw, 54px);
  line-height: 0.95;
}

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

.pricing-pros-cons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.pricing-pros-cons > div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  padding: 16px;
}

.pricing-pros-cons strong {
  display: block;
  margin-bottom: 10px;
}

.pricing-pros-cons ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-pros-cons li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.45;
}

.pricing-pros-cons li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent-2);
}

.pricing-card:not(.featured) .pricing-pros-cons li::before {
  background: var(--accent);
}

.pricing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pricing-note {
  margin-top: 18px;
  max-width: 880px;
  font-size: 14px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.faq-grid details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  padding: 18px 20px;
}

.faq-grid summary {
  cursor: pointer;
  font-weight: 850;
  color: var(--ink);
}

.faq-grid p {
  margin-top: 12px;
}

.final-cta {
  margin: 42px 0 0;
  display: grid;
  justify-items: center;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  padding: 44px 26px;
}

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

.site-footer {
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: #6d6258;
  font-size: 14px;
}

.site-footer div {
  display: grid;
  gap: 4px;
}

.site-footer strong {
  color: var(--ink);
  font-size: 16px;
}

.site-footer nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}

.site-footer a {
  text-decoration: none;
  font-weight: 700;
}

.site-footer a:hover {
  color: var(--primary);
}

.mobile-call-bar {
  display: none;
}

.support {
  max-width: 760px;
  margin: 48px auto;
  padding: 0 20px;
}

.card {
  width: 100%;
  max-width: 760px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.price-card {
  display: grid;
  gap: 6px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  margin: 22px 0 0;
}

.price-card strong {
  font-size: 22px;
}

.price-card span,
.muted {
  color: var(--muted);
}

.muted {
  font-weight: 600;
}

.tiny {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.grid > div {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}

.notice {
  background: #fff8e6;
  border: 1px solid #ead08e;
  padding: 14px;
  border-radius: 8px;
  margin: 20px 0;
}

.check {
  display: block;
  margin: 14px 0;
  font-size: 18px;
}

video {
  width: 100%;
  max-height: 360px;
  background: #111;
  border-radius: 8px;
  margin-top: 20px;
  display: none;
}

pre {
  white-space: pre-wrap;
  background: #18212b;
  color: #d8f5df;
  border-radius: 8px;
  padding: 16px;
  min-height: 80px;
}

.code-form {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

.code-form label {
  font-weight: 850;
}

.code-form input {
  font: inherit;
  font-size: 22px;
  border: 1px solid #c9d0d8;
  border-radius: 8px;
  padding: 14px 16px;
  max-width: 360px;
  background: #fff;
}

.code-form input[inputmode="numeric"] {
  font-size: 32px;
  letter-spacing: 0;
  max-width: 260px;
}

.form-note {
  margin: -4px 0 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  max-width: 560px;
}

.code-form .button {
  width: max-content;
}

.operator-token {
  display: grid;
  gap: 8px;
  font-weight: 850;
  margin-top: 18px;
}

.operator-token input {
  font: inherit;
  border: 1px solid #c9d0d8;
  border-radius: 8px;
  padding: 12px 14px;
  max-width: 460px;
}

.operator-session {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  margin: 18px 0;
}

.operator-meta h2 {
  margin-top: 0;
}

.operator-frame {
  width: 100%;
  max-height: 540px;
  object-fit: contain;
  background: #111;
  border-radius: 8px;
  border: 1px solid #c9d0d8;
}

.operator-empty {
  background: #18212b;
  color: #d8f5df;
  border-radius: 8px;
  padding: 32px;
  text-align: center;
}

.operator-note-form {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.operator-note-form label {
  display: grid;
  gap: 8px;
  font-weight: 850;
}

.operator-note-form textarea {
  width: 100%;
  resize: vertical;
  font: inherit;
  border: 1px solid #c9d0d8;
  border-radius: 8px;
  padding: 12px 14px;
}

.account-summary {
  margin-top: 22px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft-2);
}

.account-summary h2 {
  font-size: 24px;
  margin-bottom: 12px;
}

.account-summary ul {
  padding-left: 20px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}

@media (max-width: 980px) {
  .site-header {
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 14px;
    overflow: auto;
    padding-bottom: 2px;
  }

  .marketing-page .hero,
  .split-section,
  .safety-band,
  .business-band {
    grid-template-columns: 1fr;
  }

  .marketing-page .hero {
    gap: 34px;
    padding-top: 52px;
  }

  .support-visual {
    max-width: 560px;
    width: 100%;
  }

  .proof-strip,
  .service-grid,
  .pricing-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .proof-strip div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .site-footer {
    flex-direction: column;
  }

  .button.compact {
    display: none;
  }
}

@media (max-width: 560px) {
  .marketing-page {
    padding-bottom: 74px;
  }

  .site-header,
  main,
  .site-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .marketing-page .hero {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  h1 {
    font-size: 40px;
  }

  .lead {
    font-size: 18px;
  }

  .actions,
  .pricing-actions {
    flex-direction: column;
    width: 100%;
  }

  .pricing-pros-cons {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .nav-links {
    font-size: 13px;
  }

  .hero-proof {
    display: grid;
  }

  .support-visual {
    min-width: 0;
  }

  .visual-main,
  .visual-toolbar,
  .visual-footer {
    padding-left: 14px;
    padding-right: 14px;
  }

  .section,
  .business-band {
    padding: 46px 0;
  }

  .safety-band,
  .pricing-card,
  .card {
    padding: 24px;
  }

  .mobile-call-bar {
    position: fixed;
    z-index: 30;
    left: 14px;
    right: 14px;
    bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    border: 1px solid var(--primary);
    border-radius: 8px;
    background: var(--primary);
    color: #fff;
    font-weight: 850;
    text-decoration: none;
    box-shadow: 0 16px 36px rgba(138, 79, 43, 0.3);
  }
}
