:root {
  --bg: #080604;
  --bg-2: #120c08;
  --panel: rgba(255, 247, 238, 0.075);
  --panel-strong: rgba(255, 247, 238, 0.12);
  --ink: #fff7ee;
  --muted: #baa99a;
  --soft: #806c5d;
  --line: rgba(255, 247, 238, 0.14);
  --copper: #c77a41;
  --copper-2: #e7ad74;
  --green: #69d184;
  --ruby: #f07f72;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.42);
  --sans: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: "Cormorant Garamond", Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 8% 8%, rgba(199, 122, 65, 0.22), transparent 34rem),
    radial-gradient(circle at 82% 12%, rgba(105, 209, 132, 0.08), transparent 26rem),
    var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  letter-spacing: 0;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(20px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}
.nav.is-scrolled {
  background: rgba(8, 6, 4, 0.74);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}
.brand, .nav-actions, .nav-links { display: flex; align-items: center; }
.brand { gap: 10px; font-weight: 800; font-size: 18px; }
.brand-icon {
  width: 34px;
  height: 34px;
}
.nav-links { gap: 26px; font-size: 14px; color: var(--muted); }
.nav-links a:hover, .nav-login:hover { color: var(--ink); }
.nav-actions { gap: 14px; }
.nav-login { color: var(--muted); font-size: 14px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(231, 173, 116, 0.5);
  background: linear-gradient(135deg, var(--copper), #8d4f27);
  color: #120c08;
  font-weight: 800;
  box-shadow: 0 18px 44px rgba(199, 122, 65, 0.28);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 24px 54px rgba(199, 122, 65, 0.36); }
.btn-small { min-height: 38px; padding: 0 16px; font-size: 13px; }
.btn-secondary {
  background: rgba(255, 247, 238, 0.07);
  color: var(--ink);
  box-shadow: none;
  border-color: var(--line);
}
.btn-wide { width: 100%; margin-top: 22px; }

.hero {
  position: relative;
  min-height: 820px;
  padding: 138px 0 90px;
  overflow: hidden;
}
.hero-bg, .hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-bg {
  background-image: url("/landing/assets/owmi-clinic-command-center.png");
  background-size: cover;
  background-position: center;
  opacity: 0.42;
  filter: saturate(1.08);
}
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 6, 4, 0.98) 0%, rgba(8, 6, 4, 0.78) 46%, rgba(8, 6, 4, 0.34) 100%),
    linear-gradient(180deg, rgba(8, 6, 4, 0.1), var(--bg) 96%);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.97fr);
  gap: 70px;
  align-items: center;
}
.eyebrow, .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--copper-2);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(105, 209, 132, 0.8);
}
h1, h2, h3, p { margin: 0; }
h1 {
  margin-top: 26px;
  max-width: 840px;
  font-family: var(--serif);
  font-size: clamp(56px, 7.2vw, 106px);
  line-height: 0.88;
  letter-spacing: 0;
}
h2 {
  font-family: var(--serif);
  font-size: clamp(38px, 4.6vw, 70px);
  line-height: 0.94;
  letter-spacing: 0;
}
h3 { font-size: 22px; line-height: 1.08; }
.hero-lead {
  margin-top: 28px;
  max-width: 640px;
  color: #dfd2c6;
  font-size: 20px;
  line-height: 1.55;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 38px; }
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 52px;
  max-width: 620px;
  border: 1px solid var(--line);
  background: var(--line);
  border-radius: 18px;
  overflow: hidden;
}
.hero-metrics div {
  min-height: 98px;
  padding: 20px;
  background: rgba(255, 247, 238, 0.055);
}
.hero-metrics strong { display: block; font-family: var(--serif); font-size: 38px; line-height: 1; }
.hero-metrics span { display: block; margin-top: 8px; color: var(--muted); font-size: 13px; }

.hero-product { position: relative; min-height: 690px; display: grid; place-items: center; }
.phone {
  width: min(360px, 84vw);
  height: 660px;
  border: 1px solid rgba(231, 173, 116, 0.22);
  border-radius: 44px;
  padding: 12px;
  background: linear-gradient(145deg, #21140d, #050403);
  box-shadow: var(--shadow);
  transform: perspective(1400px) rotateY(-7deg) rotateX(4deg);
}
.phone-top, .input-row {
  display: flex;
  align-items: center;
  gap: 11px;
  background: rgba(255, 247, 238, 0.055);
}
.phone-top {
  height: 78px;
  border-radius: 32px 32px 0 0;
  padding: 24px 16px 12px;
  border-bottom: 1px solid var(--line);
}
.avatar {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--copper);
  color: #120c08;
  font-weight: 900;
}
.phone-top small { display: block; color: var(--green); margin-top: 2px; }
.chat {
  height: 506px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(8, 6, 4, 0.7), rgba(18, 12, 8, 0.94));
}
.date {
  align-self: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 247, 238, 0.07);
  color: var(--soft);
  font-size: 11px;
}
.msg {
  max-width: 84%;
  padding: 10px 12px;
  border-radius: 15px;
  font-size: 13px;
  line-height: 1.35;
  animation: rise 300ms ease both;
}
.msg.in { align-self: flex-start; background: rgba(255, 247, 238, 0.1); border-bottom-left-radius: 4px; }
.msg.out { align-self: flex-end; background: linear-gradient(135deg, #8d4f27, var(--copper)); color: #130d08; border-bottom-right-radius: 4px; font-weight: 650; }
.booking {
  align-self: flex-end;
  width: 86%;
  padding: 14px;
  border: 1px solid rgba(231, 173, 116, 0.35);
  border-radius: 16px;
  background: rgba(255, 247, 238, 0.085);
  animation: rise 300ms ease both;
}
.booking small { color: var(--copper-2); text-transform: uppercase; font-weight: 800; letter-spacing: 0.1em; }
.booking strong { display: block; margin-top: 8px; font-family: var(--serif); font-size: 27px; }
.booking span { display: block; color: var(--muted); font-size: 12px; margin-top: 4px; }
.typing { align-self: flex-start; display: flex; gap: 4px; padding: 12px; border-radius: 15px; background: rgba(255, 247, 238, 0.1); }
.typing i { width: 5px; height: 5px; border-radius: 50%; background: var(--muted); animation: blink 900ms infinite; }
.typing i:nth-child(2) { animation-delay: 120ms; }
.typing i:nth-child(3) { animation-delay: 240ms; }
.input-row {
  height: 52px;
  padding: 9px 12px;
  border-radius: 0 0 32px 32px;
}
.input-row span { flex: 1; height: 32px; display: flex; align-items: center; padding: 0 12px; border-radius: 999px; background: rgba(255, 247, 238, 0.08); color: var(--soft); font-size: 13px; }
.input-row button { width: 34px; height: 34px; border: 0; border-radius: 50%; background: var(--copper); font-weight: 900; }
.live-chip, .kanban-card, .schedule-card {
  position: absolute;
  border: 1px solid var(--line);
  background: rgba(18, 12, 8, 0.72);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}
.live-chip {
  top: 28px;
  left: 18px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 15px;
  border-radius: 999px;
  color: #eadbcf;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.live-chip span { width: 9px; height: 9px; border-radius: 50%; background: var(--green); box-shadow: 0 0 20px var(--green); }
.kanban-card, .schedule-card { width: 220px; padding: 18px; border-radius: 18px; }
.kanban-card { right: 2px; bottom: 120px; }
.schedule-card { left: -6px; bottom: 52px; }
.kanban-card small, .schedule-card small { color: var(--soft); text-transform: uppercase; font-size: 10px; font-weight: 900; letter-spacing: 0.12em; }
.kanban-card strong, .schedule-card strong { display: block; margin-top: 10px; font-family: var(--serif); font-size: 31px; line-height: 1; }
.kanban-card span, .schedule-card span { display: block; margin-top: 5px; color: var(--muted); font-size: 12px; }
.kanban-bars { display: flex; gap: 7px; align-items: end; height: 64px; margin-top: 12px; }
.kanban-bars i { flex: 1; border-radius: 999px 999px 4px 4px; background: rgba(255, 247, 238, 0.16); }
.kanban-bars i:nth-child(1) { height: 30%; }
.kanban-bars i:nth-child(2) { height: 62%; }
.kanban-bars i:nth-child(3) { height: 46%; }
.kanban-bars i:nth-child(4) { height: 82%; background: var(--copper); }
.kanban-bars i:nth-child(5) { height: 55%; }

section:not(.hero) { padding: 112px 0; }
.split-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.65fr);
  gap: 50px;
  align-items: end;
  margin-top: 16px;
}
.split-head p, .product p, .integration p, .roi p, .plans p, .final-cta p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}
.pain-grid, .plan-grid, .evidence-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.tour-shell {
  margin-top: 42px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 247, 238, 0.055);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.tour-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}
.tour-tabs button {
  min-height: 58px;
  border: 0;
  background: rgba(18, 12, 8, 0.92);
  color: var(--muted);
  font: 800 13px var(--sans);
  cursor: pointer;
}
.tour-tabs button.active {
  background: linear-gradient(135deg, rgba(199, 122, 65, 0.28), rgba(255, 247, 238, 0.08));
  color: var(--ink);
}
.tour-screen {
  min-height: 430px;
  padding: 22px;
  background:
    radial-gradient(circle at 78% 18%, rgba(199, 122, 65, 0.2), transparent 26rem),
    #090604;
}
.tour-top {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.tour-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #6f4430;
}
.tour-top span:nth-child(2) { background: var(--copper); }
.tour-top span:nth-child(3) { background: var(--green); }
.tour-top strong { margin-left: 8px; }
.tour-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 22px;
  margin-top: 24px;
}
.tour-conversation {
  min-height: 310px;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
  background: rgba(255, 247, 238, 0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tour-conversation .msg { max-width: 72%; }
.tour-content aside {
  border: 1px solid rgba(231, 173, 116, 0.34);
  border-radius: 22px;
  padding: 24px;
  background: rgba(199, 122, 65, 0.12);
}
.tour-content aside small,
.compare-row span {
  color: var(--soft);
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
}
.tour-content aside strong {
  display: block;
  margin-top: 14px;
  font-family: var(--serif);
  font-size: 36px;
  line-height: 1;
}
.tour-content aside span {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.55;
}
.pain-grid article, .plan-grid article, .evidence-grid a, .roi-card, .console {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--panel);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.03) inset;
}
.pain-grid article { padding: 28px; min-height: 265px; }
.pain-grid article span { color: var(--copper-2); font-family: var(--serif); font-size: 34px; }
.pain-grid h3 { margin-top: 24px; }
.pain-grid p { margin-top: 16px; color: var(--muted); line-height: 1.55; }

.product { background: linear-gradient(180deg, transparent, rgba(255, 247, 238, 0.035), transparent); }
.product-grid, .integration-grid, .roi-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  gap: 70px;
  align-items: center;
}
.product h2, .integration h2, .roi h2, .evidence h2 { margin-top: 16px; }
.product p, .integration p, .roi p { margin-top: 24px; }
.feature-list { display: grid; gap: 12px; margin-top: 28px; }
.feature-list div {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.feature-list strong { color: #f5e4d4; }
.feature-list span { color: var(--muted); line-height: 1.5; }
.console { padding: 20px; overflow: hidden; }
.console-top { display: flex; gap: 8px; margin-bottom: 16px; }
.console-top span { width: 11px; height: 11px; border-radius: 50%; background: #74503c; }
.console-top span:nth-child(2) { background: var(--copper); }
.console-top span:nth-child(3) { background: var(--green); }
pre { margin: 0; white-space: pre-wrap; color: #d7c6b8; font: 13px/1.8 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }

.integration-visual {
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: var(--panel);
  box-shadow: var(--shadow);
}
.integration-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.integration-pills span {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 247, 238, 0.07);
  color: #eadbcf;
  font-size: 13px;
  font-weight: 800;
}

.compare {
  background: linear-gradient(180deg, transparent, rgba(255, 247, 238, 0.03), transparent);
}
.compare-table {
  margin-top: 42px;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: var(--line);
}
.compare-row {
  display: grid;
  grid-template-columns: 0.7fr 1fr 1fr;
  gap: 1px;
  background: var(--line);
}
.compare-row > * {
  padding: 20px;
  background: rgba(18, 12, 8, 0.92);
}
.compare-head > * {
  color: var(--ink);
  background: rgba(199, 122, 65, 0.18);
}
.compare-row strong {
  color: #f5e4d4;
  font-style: normal;
}
.compare-row em {
  color: var(--muted);
  font-style: normal;
}

.sliders { display: grid; gap: 22px; margin-top: 32px; }
.sliders label { color: #eadbcf; font-weight: 800; }
.sliders strong { float: right; color: var(--copper-2); }
input[type="range"] {
  width: 100%;
  margin-top: 14px;
  accent-color: var(--copper);
}
.roi-card { padding: 34px; }
.roi-card > span { color: var(--soft); text-transform: uppercase; font-size: 12px; font-weight: 900; letter-spacing: 0.12em; }
.roi-card > strong { display: block; margin-top: 10px; font-family: var(--serif); font-size: clamp(50px, 6vw, 78px); line-height: 0.95; color: var(--copper-2); }
.roi-card p { margin-top: 18px; font-size: 15px; }
.roi-lines { display: grid; gap: 1px; margin-top: 24px; border: 1px solid var(--line); border-radius: 18px; overflow: hidden; background: var(--line); }
.roi-lines div { display: flex; justify-content: space-between; gap: 14px; padding: 16px; background: rgba(8, 6, 4, 0.42); }
.roi-lines span { color: var(--soft); }

.plan-grid article { padding: 28px; }
.plan-grid article > span { color: var(--copper-2); text-transform: uppercase; font-size: 12px; font-weight: 900; letter-spacing: 0.12em; }
.plan-grid article > strong { display: block; margin-top: 12px; font-family: var(--serif); font-size: 40px; line-height: 1; }
.plan-grid p { margin-top: 14px; font-size: 15px; min-height: 72px; }
.plan-grid ul { margin: 24px 0 0; padding: 0; list-style: none; display: grid; gap: 12px; color: #dfd2c6; }
.plan-grid li::before { content: "✓"; color: var(--green); font-weight: 900; margin-right: 8px; }
.featured { border-color: rgba(231, 173, 116, 0.6) !important; background: linear-gradient(180deg, rgba(199, 122, 65, 0.16), var(--panel)) !important; }

.evidence { background: rgba(255, 247, 238, 0.03); }
.evidence h2 { max-width: 900px; }
.evidence-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.evidence-grid a { padding: 22px; transition: transform 160ms ease, border-color 160ms ease; }
.evidence-grid a:hover { transform: translateY(-3px); border-color: rgba(231, 173, 116, 0.5); }
.evidence-grid strong { display: block; color: #f4dfca; }
.evidence-grid span { display: block; margin-top: 10px; color: var(--muted); font-size: 14px; line-height: 1.5; }

.final-cta { padding: 90px 0 98px !important; }
.final-inner {
  text-align: center;
  border: 1px solid rgba(231, 173, 116, 0.35);
  border-radius: 30px;
  padding: 60px 30px;
  background:
    radial-gradient(circle at 50% 0%, rgba(199, 122, 65, 0.25), transparent 30rem),
    var(--panel);
}
.final-inner h2 { max-width: 900px; margin: 0 auto; }
.final-inner p { max-width: 700px; margin: 22px auto 30px; }
.final-inner div { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.footer { border-top: 1px solid var(--line); padding: 26px 0; color: var(--soft); }
.footer-inner { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.footer span:first-child { color: var(--ink); font-weight: 900; }

@keyframes rise {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes blink {
  0%, 100% { opacity: 0.25; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-3px); }
}

@media (max-width: 980px) {
  .nav-links { display: none; }
  .hero { padding-top: 116px; }
  .hero-grid, .product-grid, .integration-grid, .roi-grid, .split-head { grid-template-columns: 1fr; }
  .hero-product { min-height: 620px; }
  .pain-grid, .plan-grid, .evidence-grid { grid-template-columns: 1fr; }
  .tour-tabs, .tour-content, .compare-row { grid-template-columns: 1fr; }
  .feature-list div { grid-template-columns: 1fr; gap: 6px; }
  .kanban-card { right: 0; }
  .schedule-card { left: 0; }
}

@media (max-width: 640px) {
  .container { width: auto; margin-left: 14px; margin-right: 14px; }
  .nav { height: 66px; padding: 0 14px; }
  .nav-actions { display: none; }
  .nav-login { display: none; }
  .hero-grid { display: block; }
  .hero-copy { min-width: 0; max-width: min(100%, 320px); overflow-wrap: break-word; }
  h1 { font-size: 31px; line-height: 1.08; max-width: min(100%, 320px); overflow-wrap: break-word; }
  h2 { font-size: 40px; }
  .eyebrow, .section-kicker { font-size: 11px; line-height: 1.45; }
  .hero-lead { font-size: 14.5px; max-width: min(100%, 320px); overflow-wrap: break-word; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .hero-metrics { grid-template-columns: 1fr; }
  .hero-product { min-height: 560px; }
  .phone { width: 100%; height: 594px; transform: none; }
  .chat { height: 440px; }
  .live-chip { left: 0; top: 0; }
  .kanban-card, .schedule-card { position: relative; width: 100%; inset: auto; margin-top: 14px; }
  .hero-product { display: block; }
  section:not(.hero) { padding: 76px 0; }
  .roi-lines div { display: block; }
  .roi-lines strong { display: block; margin-top: 6px; }
}
