/* ============================================================
   HARMONI — AI Medical Interpretation
   Design tokens derived from the Harmony.fig design system
   ============================================================ */
:root {
  /* Brand */
  --ink: #0F172B;
  --teal-900: #055963;
  --teal-800: #0d6b73;
  --teal-700: #396A70;
  --teal-600: #4F8A91;
  --teal-500: #548D93;
  --teal-300: #6FAEB5;
  --teal-200: #A3D7DD;
  --teal-tint: rgba(163, 215, 221, 0.44);

  --slate-900: #1D293D;
  --slate-800: #314158;
  --slate-700: #45556C;
  --slate-600: #62748E;
  --slate-400: #90A1B9;
  --slate-200: #E2E8F0;
  --slate-100: #F1F5F9;
  --bg: #F2F5F9;

  --purple: #7C3AED;
  --purple-600: #7008E7;
  --purple-300: #A78BFA;
  --purple-50: #F2EBFF;
  --amber: #F59E0B;
  --amber-100: #FEF3C6;
  --green: #007A55;
  --mint: #D0FAE5;
  --red: #E5484D;

  --white: #ffffff;

  /* Type */
  --font-display: "Montserrat", -apple-system, system-ui, sans-serif;
  --font: "Inter", -apple-system, system-ui, sans-serif;

  /* Shape */
  --r-sm: 12px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;

  /* Shadow */
  --sh-sm: 0 1px 2px -1px rgba(0,0,0,.1), 0 1px 3px 0 rgba(0,0,0,.08);
  --sh-md: 0 10px 30px -12px rgba(15,42,52,.22);
  --sh-lg: 0 30px 80px -24px rgba(16,92,54,.30);
  --sh-glow: 0 20px 60px -18px rgba(5,89,99,.35);

  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
h1, h2, h3 { margin: 0; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { display: block; max-width: 100%; }

.wrap { width: min(1200px, 92vw); margin: 0 auto; }

/* page-wide soft background field */
.bg-field {
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(1100px 700px at 18% -8%, var(--teal-tint), transparent 60%),
    radial-gradient(900px 600px at 100% 0%, rgba(124,58,237,.06), transparent 55%),
    linear-gradient(180deg, #eef5f6 0%, var(--bg) 38%, var(--bg) 100%);
  transition: transform .4s var(--ease);
}
.bg-dots {
  position: fixed; inset: -10%; z-index: -1; pointer-events: none;
  background: url("assets/bg-texture.png") center / cover no-repeat;
  opacity: .5; mix-blend-mode: multiply;
}

/* ---------- soft glow cursor (desktop only) ---------- */
.cursor-glow {
  position: fixed; top: 0; left: 0; width: 28px; height: 28px;
  border-radius: 50%; pointer-events: none; z-index: 9999;
  background: radial-gradient(circle, rgba(84,141,147,.55), rgba(84,141,147,0) 70%);
  transform: translate(-50%, -50%); mix-blend-mode: multiply;
  transition: width .25s var(--ease), height .25s var(--ease), opacity .3s;
  will-change: transform; opacity: 0;
}
@media (hover: none) { .cursor-glow { display: none; } }

/* =====================================================
   NAV
   ===================================================== */
.nav {
  position: fixed; top: 18px; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: center;
  transition: top .4s var(--ease);
}
.nav-pill {
  width: min(1600px, calc(100vw - 28px));
  display: flex; align-items: center; gap: 24px;
  padding: 13px 16px 13px 28px;
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 999px;
  box-shadow: var(--sh-md);
  transition: padding .4s var(--ease), box-shadow .4s var(--ease), width .4s var(--ease);
}
.nav.scrolled .nav-pill { padding-top: 9px; padding-bottom: 9px; box-shadow: 0 14px 40px -16px rgba(15,42,52,.3); }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 600; letter-spacing: .14em; font-size: 18px; color: var(--ink); white-space: nowrap; }
.brand-with-logo { gap: 0; letter-spacing: 0; line-height: 0; flex: none; }
.brand-logo { display: block; width: 170px; height: auto; }
.nav .brand-logo { width: 150px; }
.foot-brand .brand-logo { width: 190px; }
.brand-glyph {
  width: 34px; height: 34px; border-radius: 11px; flex: none;
  display: grid; place-items: center; color: #fff;
  background: linear-gradient(140deg, var(--teal-500), var(--teal-900));
  box-shadow: 0 4px 12px -4px rgba(5,89,99,.5);
}
.nav-links { display: flex; gap: 6px; margin-left: auto; align-items: center; }
.nav-links > a,
.resources-trigger {
  position: relative;
  padding: 10px 14px; border-radius: 999px; font-size: 15px; font-weight: 700;
  letter-spacing: .06em; color: var(--slate-700); transition: color .2s;
  white-space: nowrap;
}
.nav-links > a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 5px;
  height: 2px;
  border-radius: 999px;
  background: var(--teal-900);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .24s var(--ease);
}
.nav-links > a:hover,
.resources-trigger:hover { color: var(--teal-900); }
.nav-links > a:hover::after { transform: scaleX(1); }
.nav-resource {
  position: relative;
  display: flex;
  align-items: center;
}
.resources-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.resources-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  width: 260px;
  padding: 10px;
  border-radius: 20px;
  background: rgba(255,255,255,.99);
  border: 1px solid rgba(195,224,228,.92);
  box-shadow: 0 24px 60px -30px rgba(15,42,52,.42), 0 10px 24px -18px rgba(15,42,52,.24);
  transform: translate(-50%, 8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
}
.resources-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -14px;
  height: 14px;
}
.nav-resource:hover .resources-menu,
.nav-resource:focus-within .resources-menu {
  transform: translate(-50%, 0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.resources-menu a {
  display: block;
  padding: 11px 12px;
  border-radius: 13px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  transition: background .18s var(--ease), color .18s var(--ease), transform .18s var(--ease);
}
.resources-menu a:hover,
.resources-menu a.active {
  color: var(--teal-900);
  background: rgba(163,215,221,.2);
  transform: translateX(2px);
}
.nav-signin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 8px;
  color: var(--teal-900);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .04em;
  white-space: nowrap;
}
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px; border-radius: 999px; font-size: 16px; font-weight: 700; color: #fff;
  background: var(--teal-900); box-shadow: var(--sh-sm);
  transition: transform .25s var(--ease-spring), box-shadow .25s;
  white-space: nowrap;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 10px 24px -8px rgba(15,23,43,.5); }
.nav-burger { display: none; }

/* =====================================================
   HERO (dark)
   ===================================================== */
.hero {
  position: relative; padding: 180px 0 0; overflow: hidden;
  background:
    radial-gradient(1000px 620px at 78% 18%, rgba(13,107,115,.55), transparent 62%),
    radial-gradient(800px 500px at 8% 6%, rgba(111,174,181,.18), transparent 60%),
    linear-gradient(165deg, #032f35 0%, #054852 46%, #06363d 100%);
}
.hero-dots { display: none; }
.hero-glow {
  position: absolute; left: 60%; top: 30%; width: 620px; height: 620px; transform: translate(-50%,-50%);
  background: radial-gradient(circle, rgba(163,215,221,.18), transparent 66%); filter: blur(10px); z-index: 0; pointer-events: none;
}
.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.08fr .92fr; gap: 24px; align-items: start;
}
.hero-copy { padding-top: 40px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 15px 7px 10px; border-radius: 999px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(163,215,221,.28);
  font-size: 13.5px; font-weight: 500; color: var(--teal-200);
  backdrop-filter: blur(8px);
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: #34d399; box-shadow: 0 0 0 4px rgba(52,211,153,.25); }
.hero h1 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(46px, 6.6vw, 88px); line-height: .98; letter-spacing: -.045em;
  color: #fff; margin: 22px 0 0; max-width: 780px; text-wrap: balance;
}
.hero h1 .accent { color: var(--teal-200); }
.solutions-hero .hero-copy { padding-top: 34px; }
.solutions-hero .hero h1,
.solutions-hero h1 { max-width: 720px; }
.solutions-hero .page-hero-actions .nav-cta { box-shadow: 0 14px 30px -16px rgba(0,0,0,.55); }
.solutions-hero .bot-chip.c2 .ic { font-size: 12px; font-weight: 800; }
.hero-sub {
  margin-top: 24px; max-width: 620px; font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.55; color: rgba(226,242,244,.82); text-wrap: pretty;
}
.hero-form {
  margin-top: 34px; display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 7px 7px 22px; border-radius: 999px;
  background: rgba(255,255,255,.1); border: 1.5px solid rgba(163,215,221,.3);
  box-shadow: var(--sh-md); max-width: 480px; width: 100%; backdrop-filter: blur(10px);
}
.hero-form input {
  flex: 1; border: none; outline: none; background: none; min-width: 0;
  font-family: var(--font); font-size: 16px; color: #fff;
}
.hero-form input::placeholder { color: rgba(226,242,244,.6); }
.hero-form button {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px; border-radius: 999px; font-size: 16px; font-weight: 600; color: var(--teal-900);
  background: #fff; white-space: nowrap;
  transition: transform .25s var(--ease-spring), box-shadow .25s;
}
.hero-form button:hover { transform: translateY(-1px); box-shadow: 0 12px 26px -10px rgba(0,0,0,.4); }
.trust { margin-top: 30px; display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.trust span { font-size: 13.5px; color: rgba(226,242,244,.78); display: inline-flex; align-items: center; gap: 8px; }
.trust span::before { content: ""; width: 16px; height: 16px; border-radius: 5px;
  background: rgba(52,211,153,.18) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2334d399' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat; }

/* hero bot — bigger + top aligned with heading */
.hero-bot { position: relative; height: 560px; perspective: 1200px; }
.bot-stage { position: relative; width: 100%; height: 100%; transform-style: preserve-3d; transition: transform .2s var(--ease); }
.bot-halo {
  position: absolute; left: 52%; top: 42%; width: 520px; height: 520px;
  transform: translate(-50%,-50%);
  background: radial-gradient(circle, rgba(163,215,221,.42), rgba(163,215,221,0) 66%);
  filter: blur(8px);
}
.bot {
  position: absolute; left: 52%; top: 6px; width: 440px; max-width: 96%;
  transform: translateX(-50%);
  filter: drop-shadow(0 44px 60px rgba(0,0,0,.4));
  will-change: transform;
  transition: filter .4s var(--ease);
}
.bot-float { animation: botFloat 6s ease-in-out infinite; }
@keyframes botFloat {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-16px); }
}

/* ---- hero feature widgets (real popup UI) ---- */
.hw {
  position: absolute; z-index: 4; background: rgba(255,255,255,.97);
  border: 1px solid rgba(255,255,255,.7); border-radius: 18px;
  box-shadow: 0 26px 60px -22px rgba(0,0,0,.55); backdrop-filter: blur(12px);
  opacity: 0; transform: translateY(16px) scale(.96); transition: opacity .6s var(--ease), transform .6s var(--ease-spring);
}
.hw.show { opacity: 1; transform: translateY(0) scale(1); }
.hw-lang { left: -3%; top: 232px; width: 196px; padding: 13px; animation: floaty 7.5s ease-in-out infinite; }
.hw-lang .hw-title { font-size: 13px; }
.hw-lang .hw-count { font-size: 10.5px; padding: 2px 7px; }
.hw-lang .hw-search { margin-top: 10px; padding: 7px 9px; font-size: 11.5px; }
.hw-lang .hw-list { margin-top: 7px; }
.hw-lang .hw-list li { padding: 6px 8px; font-size: 12.5px; gap: 8px; }
.hw-lang .hw-list .fl { font-size: 15px; }
.hw-lang .hw-list .chk { width: 17px; height: 17px; border-radius: 6px; }
.hw-head { display: flex; align-items: center; justify-content: space-between; }
.hw-title { display: inline-flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 700; color: var(--ink); }
.hw-title svg { color: var(--teal-600); }
.hw-count { font-size: 11.5px; font-weight: 600; color: var(--teal-700); background: var(--teal-tint); padding: 3px 8px; border-radius: 999px; }
.hw-search { margin-top: 12px; display: flex; align-items: center; gap: 7px; padding: 8px 11px; border-radius: 10px; background: var(--slate-100); color: var(--slate-400); font-size: 12.5px; }
.hw-list { list-style: none; margin: 10px 0 0; padding: 0; display: flex; flex-direction: column; gap: 2px; }
.hw-list li { display: flex; align-items: center; gap: 9px; padding: 8px 9px; border-radius: 10px; font-size: 14px; font-weight: 500; color: var(--slate-800); cursor: pointer; transition: background .15s; }
.hw-list li:hover { background: var(--slate-100); }
.hw-list .fl { font-size: 17px; }
.hw-list .chk { margin-left: auto; width: 20px; height: 20px; border-radius: 7px; border: 2px solid var(--slate-200); flex: none; transition: all .2s; }
.hw-list .chk.on { background: var(--teal-600) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat; border-color: var(--teal-600); }

.hw-live { right: -7%; bottom: 70px; width: 250px; padding: 16px; animation: floaty 8.5s ease-in-out infinite .6s; }
.hw-live-top { display: flex; align-items: center; justify-content: space-between; }
.hw-live .rec { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; color: var(--red); }
.hw-live .rd { width: 7px; height: 7px; border-radius: 50%; background: var(--red); animation: blink 1.4s ease-in-out infinite; }
.hw-live-lang { font-size: 12px; font-weight: 700; color: var(--teal-700); background: var(--teal-tint); padding: 3px 9px; border-radius: 999px; }
.hw-live-src { margin-top: 12px; font-size: 14px; color: var(--slate-500); }
.hw-live-out { margin-top: 6px; font-size: 16px; font-weight: 700; color: var(--ink); min-height: 22px; }
.hw-live-out .caret { background: var(--teal-600); }
.hw-wave { margin-top: 12px; display: flex; align-items: center; gap: 3px; height: 24px; }
.hw-wave i { flex: 1; border-radius: 2px; background: var(--teal-300); }

/* floating mini chip */
.bot-chip {
  position: absolute; z-index: 3; display: flex; align-items: center; gap: 9px;
  padding: 10px 14px 10px 11px; background: rgba(255,255,255,.97);
  border: 1px solid rgba(255,255,255,.7); border-radius: 14px; box-shadow: 0 18px 40px -16px rgba(0,0,0,.5);
  font-size: 13px; font-weight: 600; color: var(--slate-800);
  backdrop-filter: blur(8px);
}
.bot-chip .ic { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; color: #fff; flex: none; }
.bot-chip.c2 { left: 50%; bottom: -6px; animation: floaty 8s ease-in-out infinite 1.1s; }
@keyframes floaty { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-12px);} }

/* ---- stats band (merged into hero) ---- */
.stats {
  position: relative; z-index: 2; margin-top: 8px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding: 40px 0 52px;
}
.stat { text-align: center; padding: 0 18px; position: relative; }
.stat + .stat::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 46px; background: linear-gradient(180deg, transparent, rgba(163,215,221,.28), transparent);
}
.stat-num {
  font-family: var(--font-display); font-weight: 700; letter-spacing: -.03em;
  font-size: clamp(32px, 4vw, 50px); color: #fff; line-height: 1;
  display: flex; align-items: baseline; justify-content: center;
}
.stat-num .stat-static { color: var(--teal-200); }
.stat-label {
  margin-top: 12px; font-size: 12.5px; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: rgba(163,215,221,.78);
}

/* ---- framed homepage hero variant ---- */
.hero {
  padding: 132px 0 74px;
  background:
    linear-gradient(180deg, #edfafa 0%, #e8f6f7 56%, #f7fbfc 100%);
}
.hero-glow {
  left: 75%; top: 28%; width: 760px; height: 520px;
  background: radial-gradient(circle, rgba(111,174,181,.12), transparent 68%);
  filter: blur(18px);
}
.hero-shell {
  position: relative; z-index: 1;
  width: min(1540px, 92vw);
  margin: 0 auto;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.hero-shell::before {
  display: none;
}
.hero .hero-grid {
  width: 100%;
  max-width: none;
  padding: 108px 0 34px;
  grid-template-columns: minmax(0, .94fr) minmax(440px, 1.06fr);
  gap: 48px;
  align-items: center;
}
.hero-copy { padding-top: 0; }
.hero .eyebrow {
  color: var(--teal-800);
  background: rgba(255,255,255,.82);
  border-color: rgba(5,89,99,.22);
  box-shadow: 0 14px 34px -28px rgba(10,45,52,.45);
}
.hero h1 {
  color: #071323;
  max-width: 760px;
  font-size: clamp(52px, 5.8vw, 92px);
  line-height: 1.02;
}
.hero h1 .accent { color: var(--teal-700); }
.hero-sub {
  max-width: 670px;
  color: var(--slate-700);
}
.hero-form {
  background: rgba(255,255,255,.76);
  border-color: rgba(5,89,99,.22);
  box-shadow: 0 24px 54px -38px rgba(10,45,52,.45);
}
.hero-form input { color: var(--ink); }
.hero-form input::placeholder { color: var(--slate-500); }
.hero-form button {
  color: #fff;
  background: var(--teal-900);
  box-shadow: 0 14px 28px -18px rgba(5,89,99,.65);
}
.hero-connect {
  width: auto;
  max-width: none;
  display: inline-flex;
  justify-content: center;
  gap: 10px;
  padding: 15px 26px;
  color: #fff;
  background: var(--teal-900);
  font-weight: 700;
  text-decoration: none;
}
.hero-connect:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px -22px rgba(5,89,99,.7);
}
.hero-connect span {
  font-size: 20px;
  line-height: .8;
}
.trust span { color: var(--slate-700); }
.hero-bot { height: 560px; }
.bot-stage::before {
  display: none;
}
.hero .bot-halo,
.hero .bot { display: none; }
.hero-doctor {
  position: absolute;
  z-index: 1;
  right: 2%;
  bottom: -22px;
  width: min(520px, 78%);
  filter: drop-shadow(0 34px 64px rgba(10,45,52,.22));
}
.hw-lang {
  z-index: 4;
  left: 5%; top: 6px;
  width: 220px;
  padding: 13px;
  border-color: rgba(255,255,255,.82);
  box-shadow: 0 26px 70px -34px rgba(10,45,52,.42);
}
.hero .hw-lang .hw-title { font-size: 13px; }
.hero .hw-lang .hw-count { font-size: 10.5px; }
.hero .hw-lang .hw-search { font-size: 11.5px; padding: 7px 9px; }
.hero .hw-lang .hw-list li { font-size: 12.5px; padding: 6px 8px; }
.hw-live {
  z-index: 4;
  right: -2%; top: 128px; bottom: auto;
  width: 232px;
  padding: 13px;
  box-shadow: 0 26px 70px -34px rgba(10,45,52,.42);
}
.bot-chip.c2 {
  z-index: 4;
  left: 33%; bottom: 120px;
  padding: 10px 14px 10px 11px;
  border-radius: 999px;
  box-shadow: 0 22px 52px -32px rgba(10,45,52,.5);
}
.hero .stats {
  width: 100%;
  max-width: none;
  margin-top: 0;
  padding: 16px 0 56px;
}
.hero .stat-num { color: var(--teal-900); }
.hero .stat-num .stat-static { color: var(--teal-700); }
.hero .stat-label { color: var(--slate-600); }
.hero .stat + .stat::before {
  background: linear-gradient(180deg, transparent, rgba(5,89,99,.18), transparent);
}

/* light section-head variant on dark backgrounds */
.section-head.light .kicker { color: var(--teal-200); }
.section-head.light h2 { color: #fff; }
.section-head.light p { color: rgba(226,242,244,.78); }

/* =====================================================
   SHOWCASE (Apple-style dashboard reveal)
   ===================================================== */
.showcase { position: relative; padding: 40px 0 90px; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 44px; }
.section-head .kicker {
  font-size: 13px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--teal-600);
}
.section-head h2 {
  font-family: var(--font-display); font-weight: 700; letter-spacing: -.03em;
  font-size: clamp(30px, 4vw, 50px); line-height: 1.04; color: var(--ink); margin-top: 14px; text-wrap: balance;
}
.section-head p { margin-top: 16px; font-size: 18px; line-height: 1.55; color: var(--slate-600); text-wrap: pretty; }

/* =====================================================
   STATIC DETAIL PAGES
   ===================================================== */
.page-main { padding-top: 112px; }
.page-hero {
  position: relative; overflow: hidden;
  padding: 108px 0 74px;
  background:
    radial-gradient(900px 520px at 78% 12%, rgba(13,107,115,.5), transparent 62%),
    radial-gradient(720px 420px at 8% 10%, rgba(111,174,181,.18), transparent 58%),
    linear-gradient(165deg, #032f35 0%, #054852 48%, #06363d 100%);
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background: url("assets/bg-texture.png") center/cover no-repeat;
  opacity: .18; mix-blend-mode: screen; pointer-events: none;
}
.page-hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: minmax(0, 1fr) 420px; gap: 52px; align-items: center;
}
.page-hero h1 {
  margin-top: 22px;
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(42px, 6vw, 74px); line-height: .98; letter-spacing: -.045em;
  color: #fff; text-wrap: balance;
}
.page-hero p {
  margin-top: 24px; max-width: 670px;
  font-size: clamp(17px, 1.45vw, 20px); line-height: 1.6; color: rgba(226,242,244,.82);
}
.page-hero-actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 12px; }
.page-hero-visual { position: relative; min-height: 360px; display: grid; place-items: center; }
.page-hero-visual::before {
  content: ""; position: absolute; width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(163,215,221,.42), rgba(163,215,221,0) 66%);
  filter: blur(8px);
}
.page-hero-visual img { position: relative; width: min(320px, 90%); filter: drop-shadow(0 34px 48px rgba(0,0,0,.4)); animation: ctaFloat 6s ease-in-out infinite; }
.page-hero-visual.clinician-visual {
  min-height: 420px;
  overflow: hidden;
  border-radius: 34px;
  background: linear-gradient(150deg, rgba(255,255,255,.08), rgba(163,215,221,.16));
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 30px 80px -34px rgba(0,0,0,.55);
}
.page-hero-visual.clinician-visual::before {
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 60% 28%, rgba(255,255,255,.28), transparent 42%),
    radial-gradient(circle, rgba(163,215,221,.36), rgba(163,215,221,0) 68%);
}
.page-hero-visual.clinician-visual img {
  align-self: end;
  width: min(440px, 112%);
  max-width: none;
  filter: drop-shadow(0 30px 45px rgba(0,0,0,.28));
}
.product-hero-visual.clinician-visual {
  min-height: 500px;
  transform: none;
  perspective: none;
}
.product-hero-visual.clinician-visual .product-visual-stack {
  display: none;
}
.clinical-visual-chip {
  position: absolute;
  left: 24px;
  bottom: 30px;
  display: grid;
  gap: 4px;
  padding: 16px 20px;
  border-radius: 18px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 20px 42px -22px rgba(0,0,0,.45);
}
.clinical-visual-chip strong {
  color: var(--ink);
  font-size: 15px;
}
.clinical-visual-chip span {
  color: var(--teal-700);
  font-size: 13px;
  font-weight: 800;
}
.product-hero { padding-bottom: 88px; }
.product-hero-grid { grid-template-columns: minmax(0, 1fr) 420px; gap: 52px; }
.product-hero-visual {
  min-height: 470px;
  align-items: center;
  justify-items: center;
  perspective: 1400px;
  transform: translateY(-58px);
}
.product-hero-visual::before {
  width: 620px; height: 420px; border-radius: 36px;
  background:
    radial-gradient(circle at 76% 28%, rgba(163,215,221,.38), transparent 48%),
    radial-gradient(circle at 24% 82%, rgba(52,211,153,.16), transparent 42%);
}
.page-hero-visual.stock-visual {
  min-height: 430px;
  overflow: hidden;
  border-radius: 34px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 34px 86px -36px rgba(0,0,0,.62);
  isolation: isolate;
}
.page-hero-visual.stock-visual::before {
  inset: 0;
  width: auto;
  height: auto;
  border-radius: inherit;
  background:
    radial-gradient(circle at 28% 18%, rgba(255,255,255,.18), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(5,89,99,.12));
  filter: none;
  z-index: 1;
}
.page-hero-visual.stock-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(3,47,53,.03), rgba(3,47,53,.18));
  pointer-events: none;
  z-index: 2;
}
.page-hero-visual.stock-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  filter: none;
  animation: none;
  z-index: 0;
}
.product-hero-visual.stock-visual {
  min-height: 500px;
  transform: none;
  perspective: none;
}
.product-hero-visual.stock-visual .product-visual-stack {
  display: none;
}
.product-stock img { object-position: center center; }
.pricing-stock img { object-position: center 34%; }
.case-stock img { object-position: 35% center; }
.blog-stock img { object-position: center 36%; }
.contact-stock img { object-position: center center; }
.security-stock img { object-position: center center; }
.product-ui-showcase {
  position: relative;
  width: min(620px, 100%);
  min-height: 380px;
  transform: rotateX(3deg) rotateY(-8deg);
  transform-style: preserve-3d;
}
.product-dashboard {
  position: absolute; left: 0; top: 0;
  width: min(540px, 91%); overflow: hidden;
  border-radius: 28px; background: rgba(255,255,255,.96);
  border: 1px solid rgba(255,255,255,.8);
  box-shadow: 0 34px 80px -28px rgba(0,0,0,.58);
}
.product-dashboard-top {
  height: 54px; display: flex; align-items: center; gap: 14px;
  padding: 0 18px; border-bottom: 1px solid var(--slate-200);
  background: linear-gradient(180deg, #fff, #f8fafc);
  color: var(--slate-600); font-size: 13px; font-weight: 800;
}
.product-dashboard-top b {
  margin-left: auto; padding: 5px 10px; border-radius: 999px;
  background: var(--mint); color: var(--green); font-size: 11px; text-transform: uppercase; letter-spacing: .08em;
}
.window-dots { display: flex; gap: 7px; }
.window-dots i { width: 10px; height: 10px; border-radius: 50%; background: var(--teal-300); }
.window-dots i:nth-child(2) { background: var(--amber); }
.window-dots i:nth-child(3) { background: var(--green); }
.product-dashboard-body { display: grid; grid-template-columns: 64px 1fr; min-height: 294px; }
.product-dash-side {
  display: flex; flex-direction: column; align-items: center; gap: 13px;
  padding: 18px 0; background: var(--teal-900);
}
.product-dash-side span {
  width: 38px; height: 38px; border-radius: 13px; display: grid; place-items: center;
  color: rgba(255,255,255,.72); font-size: 11px; font-weight: 800;
  background: rgba(255,255,255,.08);
}
.product-dash-side span.active { background: #fff; color: var(--teal-900); }
.product-dash-main { padding: 18px; }
.product-dash-bar { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.product-dash-bar strong { display: block; font-family: var(--font-display); font-size: 21px; letter-spacing: -.03em; color: var(--ink); }
.product-dash-bar span { display: block; margin-top: 5px; color: var(--slate-500); font-size: 13px; font-weight: 600; }
.live-pill {
  display: inline-flex; align-items: center; gap: 7px; padding: 8px 12px;
  border-radius: 999px; background: #feecec; color: var(--red); font-size: 12px; font-weight: 800;
}
.live-pill i { width: 8px; height: 8px; border-radius: 50%; background: var(--red); animation: blink 1.4s ease-in-out infinite; }
.product-dash-grid { margin-top: 18px; display: grid; grid-template-columns: 1.25fr .75fr; gap: 14px; }
.dash-panel {
  min-height: 112px; padding: 16px; border-radius: 18px;
  background: var(--slate-100); border: 1px solid var(--slate-200);
}
.dash-panel .panel-label,
.phone-screen .panel-label {
  display: inline-flex; color: var(--teal-700); font-size: 10px; font-weight: 900;
  letter-spacing: .12em; text-transform: uppercase;
}
.transcript-panel { grid-row: span 2; background: #fff; }
.speaker-row { margin-top: 12px; padding: 11px; border-radius: 14px; background: var(--slate-100); }
.speaker-row b { display: block; color: var(--slate-500); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.speaker-row p { margin-top: 6px; color: var(--slate-800); font-size: 14px; line-height: 1.42; }
.speaker-row.translated { background: rgba(163,215,221,.25); }
.wave-mini { margin-top: 14px; height: 36px; display: flex; align-items: center; gap: 5px; }
.wave-mini i {
  width: 10px; border-radius: 999px; background: linear-gradient(180deg, var(--teal-300), var(--teal-700));
  height: 30%; animation: waveBar 1.4s ease-in-out infinite;
}
.wave-mini i:nth-child(2n) { height: 78%; animation-delay: .18s; }
.wave-mini i:nth-child(3n) { height: 52%; animation-delay: .32s; }
.note-line { height: 12px; margin-top: 12px; border-radius: 999px; background: rgba(98,116,142,.22); }
.note-line.long { width: 92%; }
.note-line.short { width: 58%; }
.soap-tags { display: flex; gap: 7px; margin-top: 18px; }
.soap-tags span {
  width: 28px; height: 28px; border-radius: 9px; display: grid; place-items: center;
  background: #fff; color: var(--teal-900); font-size: 12px; font-weight: 900;
}
.language-panel { background: linear-gradient(180deg, rgba(163,215,221,.22), rgba(255,255,255,.78)); }
.language-row { margin-top: 11px; display: grid; grid-template-columns: 32px 1fr 12px; gap: 8px; align-items: center; }
.language-row b { color: var(--teal-900); font-size: 13px; }
.language-row span { color: var(--slate-700); font-size: 13px; font-weight: 700; }
.language-row i { width: 10px; height: 10px; border-radius: 4px; background: var(--green); }
.product-phone {
  position: absolute; right: 0; bottom: 12px; width: 156px;
  border-radius: 34px; padding: 10px; background: #0b2f36;
  border: 1px solid rgba(255,255,255,.26);
  box-shadow: 0 30px 60px -24px rgba(0,0,0,.68);
  transform: translateZ(70px) rotateY(10deg);
}
.phone-top { width: 58px; height: 5px; margin: 2px auto 9px; border-radius: 999px; background: rgba(255,255,255,.35); }
.phone-screen {
  min-height: 260px; border-radius: 26px; padding: 16px 13px;
  background: linear-gradient(180deg, #f8fafc, #e9f4f5);
}
.phone-screen h3 { margin-top: 10px; font-family: var(--font-display); font-size: 21px; letter-spacing: -.04em; color: var(--ink); }
.mobile-orb {
  margin: 18px auto 12px; width: 72px; height: 72px; border-radius: 50%;
  display: grid; place-items: center;
  background: radial-gradient(circle at 35% 30%, var(--teal-300), var(--teal-700));
  box-shadow: 0 14px 30px -14px rgba(5,89,99,.7);
}
.mobile-orb i { width: 36px; height: 36px; border-radius: 50%; border: 4px solid rgba(255,255,255,.8); border-top-color: transparent; animation: spin 2.4s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.phone-screen p { margin: 0; text-align: center; color: var(--slate-500); font-size: 13px; font-weight: 700; }
.mobile-card { margin-top: 18px; padding: 12px; border-radius: 16px; background: #fff; border: 1px solid var(--slate-200); }
.mobile-card b { display: block; color: var(--slate-500); font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.mobile-card span { display: block; margin-top: 6px; color: var(--ink); font-size: 13px; font-weight: 800; }
.phone-screen button {
  width: 100%; margin-top: 12px; padding: 10px 12px; border-radius: 999px;
  color: #fff; background: var(--teal-900); font-weight: 800; font-size: 12px;
}
.product-visual-stack {
  position: relative;
  width: min(620px, 100%);
  min-height: 500px;
  display: grid;
  place-items: center;
}
.attached-dashboard {
  position: absolute;
  left: 0;
  top: 44px;
  width: 760px;
  aspect-ratio: 1.24;
  display: grid;
  grid-template-columns: 76px 1fr;
  overflow: hidden;
  border-radius: 34px;
  background: #fff;
  border: 10px solid #fff;
  box-shadow: 0 44px 120px -34px rgba(0,0,0,.68), 0 60px 120px -44px rgba(0,122,85,.5);
  transform: scale(.64);
  transform-origin: left top;
}
.attached-side {
  display: flex; flex-direction: column; align-items: center; gap: 22px;
  padding: 24px 0 18px;
  background: #075d64;
  color: rgba(255,255,255,.66);
}
.attached-side .side-plus {
  width: 42px; height: 42px; border-radius: 16px; display: grid; place-items: center;
  background: #fff; color: var(--ink); font-size: 26px; line-height: 1;
}
.attached-side i { width: 28px; height: 1px; background: rgba(255,255,255,.18); margin: 2px 0; }
.attached-side span:not(.side-plus) {
  width: 34px; height: 34px; display: grid; place-items: center;
  font-size: 20px; font-weight: 700;
}
.attached-side b {
  margin-top: auto; width: 42px; height: 42px; border-radius: 16px; display: grid; place-items: center;
  background: rgba(255,255,255,.12); color: #fff; font-size: 13px;
}
.attached-main { padding: 24px 30px 28px; background: linear-gradient(180deg, #fff 0%, #fff 62%, #f5f8fb 100%); }
.attached-top { display: flex; align-items: center; gap: 18px; }
.attached-top button,
.mobile-top-row button {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 9px 16px; border-radius: 999px;
  background: #fff; border: 1px solid var(--slate-200);
  box-shadow: 0 3px 8px rgba(15,23,43,.12);
  color: var(--slate-800); font-weight: 800; font-size: 16px;
}
.attached-top .daily-title { flex: 1; text-align: center; color: var(--slate-500); font-size: 16px; font-weight: 600; }
.attached-top .upgrade-btn,
.mobile-top-row button:last-child {
  background: var(--ink); color: #fff; border-color: transparent; box-shadow: 0 8px 18px -10px rgba(15,23,43,.9);
}
.attached-top .upgrade-btn b {
  width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center;
  background: var(--mint); color: var(--teal-900); font-size: 13px;
}
.attached-greeting { position: relative; margin-top: 44px; min-height: 96px; }
.attached-greeting h2 {
  max-width: 520px;
  font-family: var(--font); font-size: 28px; line-height: 1.28; letter-spacing: .01em; color: var(--ink);
}
.attached-bot { position: absolute; right: 8px; top: -20px; width: 210px; min-height: 126px; }
.attached-bot .bot-bubble {
  position: absolute; right: 74px; top: 0; z-index: 2;
  width: 176px; padding: 13px 16px; border-radius: 18px;
  background: #fff; border: 1px solid var(--slate-200); box-shadow: var(--sh-md);
  color: var(--slate-800); font-weight: 800; line-height: 1.35;
}
.attached-bot .bot-bubble span { color: var(--slate-500); font-weight: 600; }
.attached-bot img {
  position: absolute; right: 0; top: 34px; width: 112px;
  filter: drop-shadow(0 18px 22px rgba(15,23,43,.18));
}
.attached-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 26px; }
.attached-cards article,
.attached-mobile article {
  min-height: 178px; padding: 22px; border-radius: 22px;
  background: #fff; box-shadow: 0 22px 42px -34px rgba(15,23,43,.45);
}
.card-icon {
  width: 48px; height: 48px; border-radius: 17px; display: grid; place-items: center;
  color: #fff; font-size: 20px; font-weight: 900; letter-spacing: -.05em;
}
.card-icon.yellow { background: linear-gradient(145deg, #ffde73, #f7ad22); }
.card-icon.purple { background: linear-gradient(145deg, #a977ff, #7c3aed); }
.card-icon.teal { background: linear-gradient(145deg, var(--teal-300), var(--teal-700)); }
.attached-cards p,
.attached-mobile article p { margin-top: 28px; color: var(--slate-800); font-size: 17px; line-height: 1.38; }
.attached-cards b,
.attached-mobile article b { display: block; margin-top: 28px; color: var(--slate-400); font-size: 16px; font-weight: 700; }
.attached-mic-panel {
  margin-top: 18px; padding: 20px 24px 22px; border-radius: 22px;
  background: #fff; box-shadow: 0 22px 42px -34px rgba(15,23,43,.45);
  text-align: center;
}
.mic-panel-head { display: flex; justify-content: space-between; gap: 18px; color: var(--slate-500); font-size: 16px; }
.mic-panel-head b { color: var(--slate-500); font-weight: 600; }
.big-mic {
  width: 78px; height: 78px; margin-top: 16px; border-radius: 50%;
  display: inline-grid; place-items: center;
  color: #fff; background: var(--teal-500); font-size: 28px;
  box-shadow: 0 0 0 18px rgba(241,245,249,.9), 0 18px 38px -22px rgba(5,89,99,.8);
}
.attached-mic-panel p { margin-top: 22px; color: var(--slate-800); font-size: 17px; }
.quick-actions { display: flex; justify-content: center; gap: 8px; margin-top: 18px; }
.quick-actions button {
  padding: 10px 16px; border-radius: 999px; background: var(--ink); color: #fff;
  font-size: 14px; font-weight: 800; white-space: nowrap;
}
.attached-mobile {
  position: absolute;
  right: 0;
  top: 92px;
  z-index: 4;
  display: block;
  width: 190px;
  padding: 6px;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 30px 80px -30px rgba(124,58,237,.72), 0 34px 70px -34px rgba(5,89,99,.5);
}
.attached-mobile-inner {
  min-height: 390px;
  padding: 16px 13px;
  border-radius: 23px;
  background: linear-gradient(180deg, #fff 0%, #fff 78%, #f7fbfc 100%);
  overflow: hidden;
}
.mobile-top-row { display: flex; gap: 6px; align-items: center; }
.mobile-top-row button {
  min-width: 0;
  padding: 6px 8px;
  font-size: 10px;
  line-height: 1;
}
.mobile-top-row button:first-child { flex: 1; }
.attached-mobile h2 {
  margin-top: 34px;
  font-family: var(--font);
  color: var(--ink);
  font-size: 18px;
  line-height: 1.24;
  letter-spacing: .01em;
}
.attached-mobile article {
  min-height: 118px;
  padding: 15px 13px;
  margin-top: 28px;
  border-radius: 20px;
  box-shadow: 0 20px 40px -34px rgba(15,23,43,.5);
}
.attached-mobile article + article { margin-top: 12px; }
.attached-mobile article:nth-of-type(2) { display: none; }
.attached-mobile .card-icon { width: 40px; height: 40px; border-radius: 14px; font-size: 16px; }
.attached-mobile article p { margin-top: 28px; font-size: 13px; line-height: 1.3; }
.attached-mobile article b { margin-top: 16px; font-size: 12px; }
.mobile-mic-panel {
  margin-top: -2px;
  padding: 15px 12px;
  border-radius: 20px;
  background: #fff;
  text-align: center;
  box-shadow: 0 20px 42px -34px rgba(15,23,43,.5);
}
.mobile-mic-panel p {
  margin: 0;
  color: var(--slate-500);
  font-size: 13px;
  line-height: 1.32;
}
.mobile-mic-panel .big-mic {
  width: 52px; height: 52px; margin-top: 14px; font-size: 20px;
  box-shadow: 0 0 0 12px rgba(241,245,249,.9), 0 14px 26px -18px rgba(5,89,99,.75);
}
.page-band { padding: 86px 0; }
.page-band.tight { padding-top: 50px; }
.page-band.dark {
  background:
    radial-gradient(900px 500px at 78% 20%, rgba(79,138,145,.25), transparent 62%),
    linear-gradient(165deg, #032f35 0%, #06363d 100%);
}
.page-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.page-grid.two { grid-template-columns: repeat(2, 1fr); }
.solutions-fit {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,.58), rgba(242,245,249,0) 100%);
}
.clinic-flow-map {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 34px;
}
.clinic-flow-map article {
  position: relative;
  min-height: 210px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(195,224,228,.74);
  box-shadow: var(--sh-sm);
}
.clinic-flow-map article::after {
  content: "";
  position: absolute;
  top: 34px;
  right: -13px;
  width: 14px;
  height: 2px;
  background: var(--teal-300);
}
.clinic-flow-map article:last-child::after { display: none; }
.clinic-flow-map span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--teal-tint);
  color: var(--teal-900);
  font-weight: 900;
  font-size: 13px;
}
.clinic-flow-map h3 {
  margin-top: 24px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 800;
}
.clinic-flow-map p {
  margin-top: 10px;
  color: var(--slate-600);
  font-size: 14.5px;
  line-height: 1.52;
}
.solution-card-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px;
}
.solution-card {
  position: relative; overflow: hidden; min-height: 360px;
  border-radius: 28px; padding: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(248,250,252,.88));
  border: 1px solid rgba(255,255,255,.78);
  box-shadow: 0 22px 60px -34px rgba(5,89,99,.45);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.solution-card::before {
  content: ""; position: absolute; inset: 0 0 auto; height: 5px;
  background: linear-gradient(90deg, var(--teal-300), var(--teal-900));
}
.solution-card:hover { transform: translateY(-6px); border-color: rgba(111,174,181,.35); box-shadow: var(--sh-lg); }
.solution-card-top { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.solution-card-top .ic {
  width: 56px; height: 56px; border-radius: 18px; display: grid; place-items: center;
  color: #fff; font-weight: 800; letter-spacing: .02em;
  background: linear-gradient(140deg, var(--teal-300), var(--teal-900));
}
.solution-card-top span {
  padding: 7px 12px; border-radius: 999px; background: var(--teal-tint);
  color: var(--teal-900); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
}
.solution-card h2 {
  margin-top: 24px; max-width: 520px;
  font-family: var(--font-display); font-size: clamp(24px, 2.2vw, 32px); line-height: 1.08; letter-spacing: -.03em;
}
.solution-card p { margin-top: 14px; color: var(--slate-600); font-size: 16px; line-height: 1.58; }
.solution-points {
  list-style: none; padding: 0; margin: 24px 0 0;
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px;
}
.solution-points li {
  min-height: 58px; display: flex; align-items: center;
  padding: 12px 14px 12px 34px; border-radius: 16px;
  background: rgba(241,245,249,.86); border: 1px solid rgba(226,232,240,.9);
  color: var(--slate-700); font-size: 14px; line-height: 1.38; position: relative;
}
.solution-points li::before {
  content: ""; position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  width: 10px; height: 10px; border-radius: 4px; background: var(--teal-600);
}
.page-card {
  background: rgba(255,255,255,.86); border: 1px solid rgba(255,255,255,.72);
  border-radius: 22px; padding: 26px; box-shadow: var(--sh-md);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.page-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.page-card.dark { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.16); color: #fff; box-shadow: none; }
.page-card .ic {
  width: 52px; height: 52px; border-radius: 16px; display: grid; place-items: center; color: #fff;
  background: linear-gradient(140deg, var(--teal-300), var(--teal-600)); margin-bottom: 20px;
}
.page-card h2, .page-card h3 {
  font-family: var(--font-display); font-weight: 700; letter-spacing: -.02em;
  font-size: 24px; line-height: 1.15; color: var(--ink);
}
.page-card.dark h2, .page-card.dark h3 { color: #fff; }
.page-card p, .page-card li { margin-top: 12px; font-size: 15.5px; line-height: 1.62; color: var(--slate-600); }
.page-card.dark p, .page-card.dark li { color: rgba(226,242,244,.78); }
.page-list { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 10px; }
.page-list li { position: relative; padding-left: 24px; margin-top: 0; }
.page-list li::before {
  content: ""; position: absolute; left: 0; top: .55em; width: 12px; height: 12px; border-radius: 4px;
  background: rgba(52,211,153,.18);
}
.page-split { display: grid; grid-template-columns: .92fr 1.08fr; gap: 32px; align-items: stretch; }
.metric-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; overflow: hidden;
  border-radius: 24px; background: rgba(15,42,52,.12); box-shadow: var(--sh-md);
}
.metric { background: rgba(255,255,255,.86); padding: 24px; text-align: center; }
.metric strong { display: block; font-family: var(--font-display); font-size: 34px; letter-spacing: -.03em; color: var(--teal-900); }
.metric span { display: block; margin-top: 8px; font-size: 12px; text-transform: uppercase; letter-spacing: .1em; color: var(--slate-600); }
.start-hero { min-height: 720px; display: flex; align-items: center; }
.start-auth-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(250px, 330px) minmax(360px, 470px);
  gap: 34px;
  align-items: center;
}
.start-copy h1 {
  margin-top: 22px;
  max-width: 720px;
}
.start-copy p {
  margin-top: 22px;
  max-width: 660px;
  color: rgba(226,242,244,.82);
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.55;
}
.start-proof {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.start-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(226,242,244,.86);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(163,215,221,.24);
  font-weight: 700;
  font-size: 13px;
}
.start-proof span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34d399;
}
.start-auth-panel {
  padding: 32px;
  border-radius: 30px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(255,255,255,.76);
  box-shadow: var(--sh-lg);
}
.start-panel-header h2 {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: -.03em;
}
.start-panel-header p {
  margin-top: 10px;
  color: var(--slate-600);
  line-height: 1.55;
}
.auth-buttons {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}
.auth-option {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  padding: 14px 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(144,161,185,.34);
  box-shadow: var(--sh-sm);
  color: var(--ink);
  font-weight: 800;
  transition: transform .24s var(--ease-spring), border-color .24s var(--ease), box-shadow .24s var(--ease);
}
.auth-option:hover {
  transform: translateY(-2px);
  border-color: rgba(5,89,99,.28);
  box-shadow: var(--sh-md);
}
.auth-option svg {
  width: 22px;
  height: 22px;
  flex: none;
}
.auth-note {
  margin-top: 20px;
  text-align: center;
  color: var(--slate-500);
  font-size: 14px;
}
.auth-note a {
  color: var(--teal-900);
  font-weight: 800;
}
.start-auth-grid .start-hero-visual {
  min-height: 420px;
}
.start-auth-grid .start-clinician-card {
  width: min(330px, 100%);
  height: 390px;
}
.start-auth-grid .start-clinician-card img {
  width: 350px;
}
.price-card {
  position: relative; overflow: hidden; border-radius: 28px; padding: 32px;
  background: #fff; border: 1px solid rgba(255,255,255,.72); box-shadow: var(--sh-lg);
}
.pricing-plans .price-card {
  display: flex;
  flex-direction: column;
  min-height: 500px;
  padding-bottom: 36px;
}
.pricing-plans .price-card .page-list {
  margin-bottom: 36px;
}
.pricing-plans .price-card .nav-cta {
  align-self: center;
  margin-top: auto !important;
}
.price-card.featured { background: var(--teal-900); color: #fff; }
.price-card.enterprise {
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(241,245,249,.9));
  border-color: rgba(111,174,181,.32);
}
.price-card h2 { font-family: var(--font-display); font-size: 30px; letter-spacing: -.03em; }
.price { margin-top: 18px; display: flex; align-items: baseline; gap: 8px; }
.price strong { font-family: var(--font-display); font-size: 48px; letter-spacing: -.04em; }
.price span { color: var(--slate-600); }
.price-card.featured .price span, .price-card.featured p, .price-card.featured li { color: rgba(226,242,244,.82); }
.blog-list { display: grid; gap: 16px; }
.resource-paths {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 26px;
}
.resource-path-card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.78);
  box-shadow: var(--sh-sm);
  scroll-margin-top: 128px;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}
.resource-path-card:hover {
  transform: translateY(-4px);
  border-color: rgba(111,174,181,.38);
  box-shadow: var(--sh-md);
}
.resource-path-card span {
  color: var(--teal-700);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.resource-path-card strong {
  font-family: var(--font-display);
  color: var(--ink);
  font-size: 23px;
  line-height: 1.1;
  letter-spacing: -.02em;
}
.resource-path-card p {
  color: var(--slate-600);
  line-height: 1.58;
}
.blog-row {
  display: grid; grid-template-columns: 160px 1fr; gap: 22px; align-items: center;
  padding: 18px; border-radius: 24px; background: rgba(255,255,255,.86); border: 1px solid rgba(255,255,255,.72); box-shadow: var(--sh-sm);
}
.blog-thumb { min-height: 120px; border-radius: 18px; background: linear-gradient(140deg, var(--teal-300), var(--teal-900)); }
.blog-row h2 { font-family: var(--font-display); font-size: 24px; letter-spacing: -.02em; }
.blog-row p { margin-top: 8px; color: var(--slate-600); line-height: 1.55; }
.article-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.article-card {
  min-height: 230px; display: flex; flex-direction: column;
  padding: 24px; border-radius: 24px;
  background: rgba(255,255,255,.88); border: 1px solid rgba(255,255,255,.78);
  box-shadow: var(--sh-sm); transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}
.article-card:hover { transform: translateY(-5px); border-color: rgba(111,174,181,.36); box-shadow: var(--sh-md); }
.article-card .kicker {
  width: fit-content; padding: 6px 10px; border-radius: 999px; background: var(--teal-tint);
  color: var(--teal-900); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em;
}
.article-card h2 {
  margin-top: 18px; font-family: var(--font-display); font-size: 22px; line-height: 1.12; letter-spacing: -.02em;
}
.article-card p { margin-top: 12px; color: var(--slate-600); line-height: 1.55; font-size: 15px; }
.article-card .read { margin-top: auto; padding-top: 18px; color: var(--teal-900); font-weight: 800; font-size: 14px; }
.contact-form {
  display: grid; gap: 14px;
  padding: 28px; border-radius: 28px;
  background: rgba(255,255,255,.9); border: 1px solid rgba(255,255,255,.78); box-shadow: var(--sh-md);
}
.contact-form label { display: grid; gap: 8px; color: var(--slate-700); font-size: 13px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%; border: 1px solid var(--slate-200); border-radius: 16px;
  padding: 14px 15px; background: #fff; color: var(--ink); font: inherit; outline: none;
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus { border-color: var(--teal-500); box-shadow: 0 0 0 4px rgba(111,174,181,.18); }
.form-status {
  min-height: 22px;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  color: rgba(226,242,244,.82);
}
.contact-form .form-status { color: var(--slate-600); }
.form-status[data-state="success"] { color: var(--green); }
.form-status[data-state="error"] { color: var(--red); }
.form-status[data-state="pending"] { color: var(--teal-700); }
.hero-form button:disabled,
.contact-form button:disabled {
  opacity: .72;
  cursor: wait;
  transform: none !important;
}
.text-link { display: inline-flex; align-items: center; margin-top: 16px; color: var(--teal-900); font-weight: 700; }
.workflow-section {
  background:
    radial-gradient(900px 420px at 82% 18%, rgba(163,215,221,.22), transparent 62%),
    linear-gradient(180deg, rgba(255,255,255,.45), rgba(241,245,249,.72));
}
.workflow-table-wrap {
  margin-top: 40px; overflow-x: auto; border-radius: 24px;
  border: 1px solid rgba(79,138,145,.16); background: rgba(255,255,255,.86); box-shadow: var(--sh-md);
}
.workflow-table { width: 100%; min-width: 760px; border-collapse: collapse; text-align: left; }
.workflow-table th {
  padding: 18px 24px; background: rgba(241,245,249,.82);
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--slate-600);
}
.workflow-table td {
  padding: 18px 24px; border-top: 1px solid rgba(79,138,145,.12);
  font-size: 15px; line-height: 1.5; color: var(--slate-700);
}
.workflow-table td:first-child { font-weight: 700; color: var(--ink); }
.workflow-stack { display: grid; gap: 14px; margin-top: 38px; }
.workflow-row {
  display: grid; grid-template-columns: 220px 1fr 1fr; gap: 14px; align-items: stretch;
  padding: 14px; border-radius: 24px;
  background: rgba(255,255,255,.88); border: 1px solid rgba(255,255,255,.78);
  box-shadow: var(--sh-sm);
}
.workflow-row > div {
  padding: 18px; border-radius: 18px; background: rgba(248,250,252,.82); border: 1px solid rgba(226,232,240,.78);
}
.workflow-row .workflow-name {
  display: flex; align-items: center;
  background: linear-gradient(140deg, var(--teal-900), var(--teal-600));
  color: #fff; font-family: var(--font-display); font-weight: 700; letter-spacing: -.02em; font-size: 19px;
}
.workflow-row span {
  display: block; color: var(--teal-700); font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .12em;
}
.workflow-row p { margin-top: 8px; color: var(--slate-700); line-height: 1.55; font-size: 15px; }
.rollout-section { position: relative; }
.rollout-timeline {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; position: relative;
}
.rollout-step {
  position: relative; overflow: hidden;
  min-height: 260px; border-radius: 28px; padding: 28px;
  background: rgba(255,255,255,.9); border: 1px solid rgba(255,255,255,.78); box-shadow: var(--sh-md);
}
.rollout-step::after {
  content: ""; position: absolute; right: -50px; top: -50px; width: 150px; height: 150px; border-radius: 50%;
  background: radial-gradient(circle, rgba(163,215,221,.38), transparent 68%);
}
.rollout-num {
  width: 60px; height: 60px; border-radius: 20px;
  display: grid; place-items: center; color: #fff; font-weight: 800;
  background: linear-gradient(140deg, var(--teal-300), var(--teal-900)); box-shadow: var(--sh-sm);
}
.rollout-step span {
  display: inline-flex; margin-top: 28px;
  color: var(--teal-700); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em;
}
.rollout-step h2 {
  margin-top: 10px; font-family: var(--font-display); font-size: 28px; line-height: 1.08; letter-spacing: -.03em;
}
.rollout-step p { margin-top: 12px; color: var(--slate-600); line-height: 1.58; }
.rollout-cta {
  display: flex; align-items: center; justify-content: space-between; gap: 28px;
  border-radius: 34px; padding: 34px;
  background: radial-gradient(800px 360px at 18% -10%, #0d6b73, var(--teal-900));
  color: #fff; box-shadow: var(--sh-glow);
}
.rollout-cta h2 {
  margin-top: 12px; font-family: var(--font-display); font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.08; letter-spacing: -.03em;
}
.rollout-cta .kicker { color: var(--teal-200); }
.rollout-cta-actions { display: flex; flex-wrap: wrap; gap: 12px; flex: none; }
.app-shot {
  border-radius: var(--r-xl); overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #eef2f7 100%);
  border: 1px solid rgba(255,255,255,.72); box-shadow: var(--sh-lg);
}
.app-shot-head { display: flex; align-items: center; gap: 8px; padding: 16px 18px; border-bottom: 1px solid var(--slate-200); }
.app-shot-head i { width: 10px; height: 10px; border-radius: 50%; background: var(--teal-300); }
.app-shot-body { padding: 24px; display: grid; gap: 14px; }
.app-shot-line { height: 48px; border-radius: 16px; background: var(--slate-100); }
.app-shot-line.accent { background: linear-gradient(90deg, rgba(79,138,145,.2), rgba(163,215,221,.42)); }
.page-cta { padding: 20px 0 90px; }
.nav-links > a.active,
.resources-trigger.active { color: var(--teal-900); }
.nav-links > a.active::after { transform: scaleX(1); }
.resources-trigger.active::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 5px;
  height: 2px;
  border-radius: 999px;
  background: var(--teal-900);
  transform: scaleX(1);
  transform-origin: center;
}

.stage-3d { perspective: 1800px; }
.app-window {
  width: min(1080px, 94vw); margin: 0 auto;
  border-radius: var(--r-xl); overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #fff 50%, #eef2f7 100%);
  box-shadow: var(--sh-lg);
  display: grid; grid-template-columns: 88px 1fr;
  transform-style: preserve-3d;
  will-change: transform;
}

/* sidebar */
.app-side {
  margin: 12px; border-radius: 26px; background: var(--teal-900);
  display: flex; flex-direction: column; align-items: center; padding: 22px 0;
  gap: 18px;
}
.app-side .add {
  width: 40px; height: 40px; border-radius: 14px; background: #fff; color: var(--ink);
  display: grid; place-items: center; box-shadow: var(--sh-sm);
}
.app-side .divider { width: 24px; height: 1px; background: rgba(255,255,255,.16); }
.app-side .sicon { width: 40px; height: 40px; border-radius: 14px; display: grid; place-items: center; color: rgba(255,255,255,.6); transition: background .2s, color .2s; }
.app-side .sicon:hover { background: rgba(255,255,255,.1); color: #fff; }
.app-side .spacer { flex: 1; }
.app-side .avatar { width: 40px; height: 40px; border-radius: 14px; background: rgba(255,255,255,.12); display: grid; place-items: center; }
.app-side .avatar .g { width: 26px; height: 26px; border-radius: 8px; background: var(--teal-500); display:grid; place-items:center; color:#fff; font-size: 11px; font-weight:700; }

/* main panel */
.app-main { padding: 26px 30px 30px; position: relative; }
.app-top { display: flex; align-items: center; gap: 16px; }
.model-pill {
  display: inline-flex; align-items: center; gap: 9px; padding: 9px 14px;
  border: 1px solid var(--slate-200); border-radius: 999px; font-size: 15px; font-weight: 600; color: var(--slate-800);
  background: #fff;
}
.app-top .center { flex: 1; text-align: center; font-size: 16px; color: var(--slate-400); font-weight: 500; }
.upgrade {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 8px 8px 16px;
  background: var(--ink); color: #fff; border-radius: 999px; font-size: 15px; font-weight: 600;
}
.upgrade .me { width: 28px; height: 28px; border-radius: 50%; background: var(--mint); color: var(--teal-900); display: grid; place-items: center; font-size: 12px; font-weight: 700; }

.greet { margin-top: 30px; font-size: clamp(22px, 2.6vw, 30px); font-weight: 700; line-height: 1.25; color: var(--ink); letter-spacing: -.01em; }
.greet .muted { color: var(--ink); }

.cards { margin-top: 24px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.fcard {
  background: #fff; border: 1px solid var(--slate-200); border-radius: 20px; padding: 22px;
  box-shadow: 0 8px 24px -18px rgba(15,42,52,.4);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.fcard:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.fcard .ic { width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center; color: #fff; }
.fcard .ic.amber { background: linear-gradient(140deg, #fbbf24, var(--amber)); }
.fcard .ic.purple { background: linear-gradient(140deg, var(--purple-300), var(--purple)); }
.fcard .ic.teal { background: linear-gradient(140deg, var(--teal-300), var(--teal-600)); }
.fcard p { margin-top: 18px; font-size: 16.5px; line-height: 1.45; color: var(--slate-800); min-height: 72px; }
.fcard .tag { margin-top: 14px; font-size: 14px; font-weight: 500; color: var(--slate-400); }

.mic-panel {
  margin-top: 18px; background: linear-gradient(180deg, #fff, #f8fafc); border: 1px solid var(--slate-200);
  border-radius: 22px; padding: 22px 26px 26px; position: relative;
}
.mic-panel .mtop { display: flex; justify-content: space-between; font-size: 15px; color: var(--slate-400); }
.mic-panel .mtop .pw { color: var(--teal-600); font-weight: 500; display: inline-flex; gap: 6px; align-items: center; }
.mic-wrap { display: grid; place-items: center; padding: 16px 0 8px; }
.mic-btn {
  width: 66px; height: 66px; border-radius: 50%; background: var(--teal-500); color: #fff;
  display: grid; place-items: center; position: relative; box-shadow: 0 12px 26px -10px rgba(84,141,147,.7);
}
.mic-btn::before, .mic-btn::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid var(--teal-300);
  animation: micPulse 2.4s ease-out infinite;
}
.mic-btn::after { animation-delay: 1.2s; }
@keyframes micPulse { 0%{ transform: scale(1); opacity: .7;} 100%{ transform: scale(1.9); opacity: 0;} }
.mic-cap { text-align: center; font-size: 15px; color: var(--slate-400); margin-top: 6px; }
.quick { margin-top: 18px; display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.quick button {
  display: inline-flex; align-items: center; gap: 8px; padding: 11px 18px; border-radius: 999px;
  background: var(--ink); color: #fff; font-size: 14.5px; font-weight: 500;
  transition: transform .2s var(--ease-spring), opacity .2s;
}
.quick button:hover { transform: translateY(-2px); }

/* floating bot in app */
.app-bot {
  position: absolute; right: -8px; top: 64px; width: 120px; z-index: 5;
  filter: drop-shadow(0 16px 22px rgba(5,89,99,.25));
  animation: floaty 6s ease-in-out infinite;
}
.app-bot-bubble {
  position: absolute; right: 96px; top: 78px; z-index: 6;
  background: #fff; border: 1px solid rgba(226,232,240,.8); border-radius: 16px 16px 12px 16px;
  padding: 10px 15px; box-shadow: var(--sh-md); font-size: 14px; max-width: 180px;
}
.app-bot-bubble .s { color: var(--slate-500); font-weight: 500; }
.app-bot-bubble .m { color: var(--ink); font-weight: 600; }

/* =====================================================
   TRANSCRIPT DEMO
   ===================================================== */
.transcript-section { padding: 80px 0 96px; }
.transcript-dark {
  position: relative;
  background:
    radial-gradient(900px 500px at 80% 10%, rgba(13,107,115,.5), transparent 60%),
    linear-gradient(165deg, #05343b, #06262c);
}
.transcript-dark::before { content: ""; position: absolute; inset: 0; background: url("assets/bg-texture.png") center/cover; opacity: .12; pointer-events: none; }
.tr-window {
  width: min(980px, 94vw); margin: 0 auto;
  background: #fff; border: 1px solid var(--slate-200); border-radius: 26px; overflow: hidden;
  box-shadow: var(--sh-lg); display: grid; grid-template-columns: 78px 1fr;
}
.tr-side { background: var(--teal-900); display: flex; flex-direction: column; align-items: center; gap: 16px; padding: 22px 0; }
.tr-side .sicon { width: 40px; height: 40px; border-radius: 13px; display: grid; place-items: center; color: rgba(255,255,255,.6); }
.tr-side .sicon.active { background: #fff; color: var(--teal-900); }
.tr-side .spacer { flex: 1; }
.tr-main { padding: 22px 26px 0; display: flex; flex-direction: column; min-height: 520px; }
.tr-head { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.tr-head .back { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--slate-200); display: grid; place-items: center; color: var(--slate-600); }
.tr-head h3 { font-size: 21px; font-weight: 700; color: var(--ink); }
.rec-badge { display: inline-flex; align-items: center; gap: 7px; padding: 5px 13px; border-radius: 999px; background: #FEECEC; color: var(--red); font-size: 13.5px; font-weight: 600; }
.rec-badge .rdot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); animation: blink 1.4s ease-in-out infinite; }
@keyframes blink { 0%,100%{ opacity:1;} 50%{ opacity:.25;} }
.ai-badge { display: inline-flex; align-items: center; gap: 7px; padding: 6px 13px; border-radius: 999px; background: var(--purple-50); color: var(--purple); font-size: 13.5px; font-weight: 600; }
.tr-search { margin-left: auto; display: inline-flex; align-items: center; gap: 9px; padding: 9px 16px; border: 1px solid var(--slate-200); border-radius: 999px; color: var(--slate-400); font-size: 14.5px; }
.add-notes { display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; border-radius: 999px; background: var(--ink); color: #fff; font-size: 14.5px; font-weight: 600; }

.tr-label { display: flex; justify-content: space-between; align-items: center; margin: 22px 0 6px; }
.tr-label .t { font-size: 17px; color: var(--slate-500); font-weight: 500; }
.tr-label .lang { font-size: 15px; font-weight: 600; color: var(--ink); display: inline-flex; gap: 6px; align-items: center; }
.tr-list { flex: 1; display: flex; flex-direction: column; }
.bubble {
  display: grid; grid-template-columns: 44px 1fr auto; gap: 16px; align-items: start;
  padding: 16px 4px; border-bottom: 1px solid var(--slate-100);
  opacity: 0; transform: translateY(14px); transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.bubble.show { opacity: 1; transform: translateY(0); }
.bubble .av { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font-size: 14px; font-weight: 700; }
.bubble .av.dr { background: var(--mint); color: var(--green); }
.bubble .av.ma { background: var(--amber-100); color: #B45309; }
.bubble .av.ai { background: var(--purple-50); color: var(--purple); }
.bubble .txt { font-size: 18px; line-height: 1.5; color: var(--slate-900); }
.bubble .txt.tl { color: var(--slate-500); }
.bubble .txt b { color: var(--ink); font-weight: 700; }
.bubble .txt.tl b { color: var(--purple); }
.bubble .time { font-size: 15px; color: var(--slate-400); white-space: nowrap; padding-top: 2px; }
.analyze { margin-top: 9px; display: inline-flex; align-items: center; gap: 7px; padding: 6px 12px; border-radius: 999px; background: var(--purple-50); color: var(--purple); font-size: 14px; font-weight: 600; }
.caret { display: inline-block; width: 2px; height: 1.05em; background: var(--teal-600); margin-left: 1px; vertical-align: -2px; animation: blink 1s step-end infinite; }

/* waveform timeline */
.tr-timeline { margin: 14px -26px 0; padding: 16px 26px; background: var(--teal-900); display: flex; align-items: center; gap: 16px; border-radius: 18px 18px 0 0; }
.tl-time { color: rgba(255,255,255,.7); font-size: 14px; font-variant-numeric: tabular-nums; }
.wave { flex: 1; display: flex; align-items: center; gap: 3px; height: 34px; }
.wave i { flex: 1; background: rgba(255,255,255,.32); border-radius: 2px; height: 30%; transform-origin: center; }
.wave i.on { background: var(--teal-200); }
.tl-now { display: inline-flex; align-items: center; gap: 7px; padding: 5px 12px; background: #fff; border-radius: 999px; font-size: 14px; font-weight: 700; color: var(--ink); }
.tl-now .g { width: 7px; height: 7px; border-radius: 50%; background: var(--green); }

/* =====================================================
   FEATURES
   ===================================================== */
.features { padding: 80px 0; }
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 8px; }
.feat {
  background: #fff; border: 1px solid var(--slate-200); border-radius: var(--r-lg); padding: 30px;
  box-shadow: 0 10px 30px -22px rgba(15,42,52,.5);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.feat:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.feat .ic { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; color: #fff; margin-bottom: 22px; }
.feat h3 { font-size: 21px; font-weight: 700; color: var(--ink); letter-spacing: -.01em; }
.feat p { margin-top: 12px; font-size: 16px; line-height: 1.55; color: var(--slate-600); }
.feat .meta { margin-top: 20px; display: flex; gap: 18px; }
.feat .meta b { display: block; font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--teal-700); letter-spacing: -.02em; }
.feat .meta span { font-size: 13px; color: var(--slate-400); }

/* =====================================================
   SAVINGS CALCULATOR
   ===================================================== */
.savings {
  padding: 24px 0 92px;
  background:
    radial-gradient(820px 420px at 78% 24%, rgba(163,215,221,.24), transparent 64%),
    linear-gradient(180deg, #fff 0%, #f4fbf9 100%);
}
.savings-shell {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(430px, 1.1fr);
  gap: 28px;
  align-items: stretch;
  padding: 28px;
  border-radius: 34px;
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(195,224,228,.7);
  box-shadow: var(--sh-md);
}
.savings-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px;
}
.savings-copy h2 {
  margin-top: 18px;
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.02;
  letter-spacing: -.045em;
  color: var(--ink);
  text-wrap: balance;
}
.savings-copy p {
  margin-top: 18px;
  max-width: 600px;
  color: var(--slate-600);
  font-size: 18px;
  line-height: 1.58;
}
.savings-card {
  display: grid;
  gap: 20px;
  padding: 26px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(195,224,228,.82);
  box-shadow: 0 28px 70px -42px rgba(5,89,99,.58);
}
.savings-controls {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.savings-controls label {
  display: grid;
  gap: 9px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(248,250,252,.9);
  border: 1px solid var(--slate-200);
}
.savings-controls span {
  color: var(--slate-600);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.savings-controls input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -.03em;
}
.savings-controls input:focus {
  box-shadow: inset 0 -2px 0 var(--teal-500);
}
.savings-results {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.savings-result {
  padding: 18px;
  border-radius: 20px;
  background: rgba(241,245,249,.78);
  border: 1px solid rgba(226,232,240,.9);
}
.savings-result span {
  display: block;
  color: var(--slate-500);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.savings-result strong {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
  letter-spacing: -.04em;
}
.savings-result.highlight {
  background: linear-gradient(145deg, var(--teal-900), var(--teal-600));
  border-color: transparent;
  box-shadow: var(--sh-glow);
}
.savings-result.highlight span,
.savings-result.highlight strong { color: #fff; }
.savings-result.annual strong { color: var(--teal-900); }
/* =====================================================
   DEMOS (voice + SOAP)
   ===================================================== */
.demos { padding: 30px 0 90px; }
.demo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; align-items: stretch; }
.demo-grid-single { grid-template-columns: minmax(0, 780px); justify-content: center; }
.demo-card {
  background: #fff; border: 1px solid var(--slate-200); border-radius: var(--r-xl); padding: 32px;
  box-shadow: var(--sh-md); position: relative; overflow: hidden;
}
.demo-card .dlabel { font-size: 13px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--teal-600); }
.demo-card h3 { font-size: 24px; font-weight: 700; color: var(--ink); margin-top: 12px; letter-spacing: -.01em; }
.demo-card .dsub { margin-top: 10px; font-size: 16px; line-height: 1.5; color: var(--slate-600); }

/* voice demo */
.voice-stage {
  margin-top: 28px; display: grid; place-items: center; gap: 18px; padding: 18px 0 14px;
  border-radius: 24px; cursor: pointer; outline: none;
  position: relative;
  transition: background .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
}
.voice-stage:hover,
.voice-stage:focus-visible {
  background: rgba(163,215,221,.12);
  box-shadow: inset 0 0 0 1px rgba(111,174,181,.22);
}
.voice-stage:active { transform: scale(.99); }
.voice-stage:not(.active) {
  gap: 0;
  padding: 54px 0 34px;
}
.voice-tooltip {
  position: absolute;
  left: 50%;
  top: 18px;
  z-index: 3;
  transform: translateX(-50%);
  padding: 8px 13px;
  border-radius: 999px;
  background: var(--teal-900);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
  white-space: nowrap;
  box-shadow: 0 14px 30px -18px rgba(5,89,99,.75);
}
.voice-tooltip::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 10px;
  height: 10px;
  background: var(--teal-900);
  transform: translateX(-50%) rotate(45deg);
  border-radius: 2px;
}
.voice-stage.active .voice-tooltip {
  display: none;
}
.voice-orb {
  width: 110px; height: 110px; border-radius: 50%; display: grid; place-items: center; color: #fff;
  background: radial-gradient(circle at 35% 30%, var(--teal-300), var(--teal-600));
  position: relative; box-shadow: 0 18px 40px -14px rgba(84,141,147,.7);
}
.voice-orb .ring { position: absolute; inset: -2px; border-radius: 50%; border: 2px solid var(--teal-300); animation: micPulse 2.6s ease-out infinite; }
.voice-orb .ring.d2 { animation-delay: 1.3s; }
.eq { display: flex; align-items: center; gap: 5px; height: 46px; }
.eq i { width: 6px; border-radius: 4px; background: var(--teal-500); height: 18%; }
.voice-stage:not(.active) .eq,
.voice-stage:not(.active) .voice-hint,
.voice-stage:not(.active) .voice-line { display: none; }
.voice-hint {
  margin-top: -8px;
  color: var(--teal-700);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.voice-stage.active .voice-hint { color: var(--green); }
.voice-line { text-align: center; }
.voice-line .src { font-size: 17px; color: var(--slate-500); }
.voice-line .out { margin-top: 8px; font-size: 19px; font-weight: 600; color: var(--ink); min-height: 26px; }
.voice-line .out b { color: var(--teal-700); }
.processing { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; font-size: 14px; color: var(--purple); font-weight: 600; }
.voice-stage:not(.active) .voice-line .out { opacity: 0; }
.voice-stage:not(.active) .processing { visibility: hidden; }
.processing .ld { display: inline-flex; gap: 4px; }
.processing .ld i { width: 6px; height: 6px; border-radius: 50%; background: var(--purple); animation: ld 1s ease-in-out infinite; }
.processing .ld i:nth-child(2){ animation-delay:.15s; } .processing .ld i:nth-child(3){ animation-delay:.3s; }
@keyframes ld { 0%,100%{ transform: translateY(0); opacity:.4;} 50%{ transform: translateY(-5px); opacity:1;} }

/* soap demo */
.soap { margin-top: 26px; background: var(--slate-100); border: 1px solid var(--slate-200); border-radius: 18px; padding: 22px; font-size: 15.5px; min-height: 280px; }
.soap .row { display: flex; gap: 12px; margin-bottom: 18px; opacity: 0; transform: translateY(8px); transition: all .5s var(--ease); }
.soap .row.show { opacity: 1; transform: translateY(0); }
.soap .k { flex: none; width: 26px; height: 26px; border-radius: 8px; background: var(--teal-900); color: #fff; display: grid; place-items: center; font-size: 12px; font-weight: 700; }
.soap .label { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--teal-700); }
.soap .body { margin-top: 4px; color: var(--slate-800); line-height: 1.5; }
.soap .body mark { background: var(--amber-100); color: #92400E; padding: 1px 4px; border-radius: 4px; font-weight: 600; }

/* =====================================================
   PRICING
   ===================================================== */
/* =====================================================
   TEAMS (dark)
   ===================================================== */
.teams { padding: 88px 0 96px; }
.teams-dark {
  position: relative;
  background:
    radial-gradient(900px 520px at 18% 8%, rgba(13,107,115,.5), transparent 60%),
    linear-gradient(165deg, #06363d, #053036);
}
.teams-dark::before { content: ""; position: absolute; inset: 0; background: url("assets/bg-texture.png") center/cover; opacity: .1; pointer-events: none; }
.teams-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.team-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(163,215,221,.2); border-radius: var(--r-lg);
  padding: 26px; backdrop-filter: blur(8px);
  transition: transform .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease);
}
.team-card:hover { transform: translateY(-6px); background: rgba(255,255,255,.09); border-color: rgba(163,215,221,.4); }
.team-card .ic { width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center; color: #fff; margin-bottom: 20px; }
.team-card h3 { font-size: 20px; font-weight: 700; color: #fff; letter-spacing: -.01em; }
.team-card p { margin-top: 11px; font-size: 15px; line-height: 1.55; color: rgba(226,242,244,.74); }

/* =====================================================
   HOW IT WORKS (light)
   ===================================================== */
.how { padding: 88px 0 96px; }
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.how-step { display: flex; flex-direction: column; }
.how-rail { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.how-num {
  font-family: var(--font-display); font-weight: 700; font-size: 22px; letter-spacing: -.02em;
  width: 56px; height: 56px; flex: none; border-radius: 16px; display: grid; place-items: center;
  color: #fff; background: linear-gradient(140deg, var(--teal-500), var(--teal-900)); box-shadow: var(--sh-glow);
}
.how-line { flex: 1; height: 2px; background: linear-gradient(90deg, var(--teal-300), transparent); border-radius: 2px; }
.how-body h3 { font-size: 22px; font-weight: 700; color: var(--ink); letter-spacing: -.01em; }
.how-body p { margin-top: 12px; font-size: 16px; line-height: 1.6; color: var(--slate-600); }

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonials {
  padding: 88px 0 92px;
  background:
    radial-gradient(760px 420px at 82% 14%, rgba(52,211,153,.13), transparent 66%),
    linear-gradient(180deg, #fff 0%, #f3fbf6 100%);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 22px;
}
.testimonial-card {
  position: relative;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  padding: 34px;
  border: 1px solid rgba(5,89,99,.12);
  border-radius: var(--r-lg);
  background: rgba(255,255,255,.9);
  box-shadow: 0 28px 80px -54px rgba(10,45,52,.42);
}
.testimonial-feature {
  color: #fff;
  border-color: rgba(255,255,255,.18);
  background:
    radial-gradient(520px 280px at 22% 0%, rgba(52,211,153,.26), transparent 62%),
    linear-gradient(140deg, var(--teal-900), #075861);
}
.testimonial-card p {
  position: relative;
  margin: 0;
  font-size: 19px;
  line-height: 1.58;
  color: var(--slate-700);
}
.testimonial-feature p {
  max-width: 640px;
  font-size: clamp(22px, 1.75vw, 28px);
  line-height: 1.34;
  letter-spacing: -.02em;
  color: #fff;
}
.testimonial-role {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(5,89,99,.08);
  color: var(--teal-800);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.testimonial-feature .testimonial-role {
  background: rgba(255,255,255,.16);
  color: rgba(255,255,255,.88);
}

/* =====================================================
   CTA + FOOTER
   ===================================================== */
.cta-section { padding: 20px 0 90px; }
.cta {
  width: min(1200px, 92vw); margin: 0 auto; border-radius: 36px; padding: 56px clamp(28px, 4.7vw, 56px);
  background: radial-gradient(900px 420px at 18% -10%, #0d6b73, var(--teal-900));
  color: #fff; box-shadow: var(--sh-glow); position: relative; overflow: hidden;
  display: block;
}
.cta::before { content: ""; position: absolute; inset: 0; background: url("assets/bg-texture.png") center/cover; opacity: .14; pointer-events: none; }
.cta-bot { display: none; }
.cta-bot-halo { display: none; }
.cta-bot img { display: none; }
.cta-float { animation: ctaFloat 6s ease-in-out infinite; }
@keyframes ctaFloat { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-14px);} }
.cta-copy { position: relative; max-width: 760px; margin: 0 auto; text-align: center; }
.cta h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(28px, 3.6vw, 46px); letter-spacing: -.03em; line-height: 1.04; text-wrap: balance; }
.cta p { margin: 18px auto 0; max-width: 640px; font-size: 18px; line-height: 1.55; color: rgba(255,255,255,.82); }
.cta .cta-form { margin: 30px auto 0; background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.25); }
.cta .cta-form input { color: #fff; }
.cta .cta-form input::placeholder { color: rgba(255,255,255,.6); }
.cta .cta-form button { background: #fff; color: var(--teal-900); }


footer { padding: 64px 0 40px; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 30px; }
.foot-brand .brand { color: var(--ink); }
.foot-brand p { margin-top: 16px; font-size: 15px; line-height: 1.55; color: var(--slate-500); max-width: 280px; }
.foot-col h4 { font-size: 13px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--slate-400); }
.foot-col ul { list-style: none; padding: 0; margin: 16px 0 0; display: flex; flex-direction: column; gap: 11px; }
.foot-col a { font-size: 15px; color: var(--slate-600); transition: color .2s; }
.foot-col a:hover { color: var(--teal-700); }
.foot-bottom { margin-top: 50px; padding-top: 24px; border-top: 1px solid var(--slate-200); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 14px; color: var(--slate-400); }

@keyframes waveBar { 0%,100% { transform: scaleY(.3); } 50% { transform: scaleY(1); } }
@keyframes eqBar { 0%,100% { transform: scaleY(.25); } 50% { transform: scaleY(1); } }

/* reveal animation utility */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { padding-top: 0; }
  .hero-bot { height: 440px; }
  .bot { width: 320px; }
  .hw-lang { left: 0; top: 150px; }
  .hw-live { right: 0; bottom: 40px; }
  .stats { grid-template-columns: repeat(2, 1fr); row-gap: 30px; }
  .stat::before { display: none; }
  .cards, .feat-grid, .teams-grid, .how-grid, .testimonial-grid { grid-template-columns: 1fr; }
  .savings-shell { grid-template-columns: 1fr; }
  .savings-controls { grid-template-columns: 1fr; }
  .clinic-flow-map { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .clinic-flow-map article::after { display: none; }
  .teams-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-card { min-height: 0; }
  .how-line { display: none; }
  .demo-grid { grid-template-columns: 1fr; }
  .cta { grid-template-columns: 1fr; text-align: center; }
  .cta-bot { min-height: 220px; }
  .cta p { margin-left: auto; margin-right: auto; }
  .cta .cta-form { margin-left: auto; margin-right: auto; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .start-auth-grid { grid-template-columns: 1fr; }
  .start-auth-panel { max-width: 520px; width: 100%; margin: 0 auto; }
  .page-hero-grid, .page-split, .page-grid, .page-grid.two, .product-hero-grid { grid-template-columns: 1fr; }
  .product-hero-visual { min-height: 480px; justify-items: center; }
  .product-hero-visual { transform: none; }
  .product-ui-showcase { width: min(680px, 94vw); transform: rotateX(2deg) rotateY(-4deg); }
  .product-dashboard { left: 2%; width: 82%; }
  .product-phone { right: 2%; }
  .product-visual-stack { width: min(720px, 94vw); min-height: 450px; }
  .attached-dashboard { left: 0; top: 36px; transform: scale(.56); }
  .attached-mobile { right: 10px; top: 64px; width: 178px; }
  .article-grid, .resource-paths { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .solution-card-grid, .rollout-timeline { grid-template-columns: 1fr; }
  .workflow-row { grid-template-columns: 1fr; }
  .page-hero { padding-top: 82px; }
  .page-hero-visual { min-height: 280px; }
  .page-hero-visual.clinician-visual { min-height: 360px; }
  .page-hero-visual.clinician-visual img { width: min(380px, 108%); }
  .page-hero-visual.stock-visual { min-height: 380px; }
  .product-hero-visual.stock-visual { min-height: 440px; }
  .metric-strip { grid-template-columns: repeat(2, 1fr); }
  .blog-row { grid-template-columns: 1fr; }
  .rollout-cta { align-items: flex-start; flex-direction: column; }
  .app-window { grid-template-columns: 64px 1fr; }
  .app-side { margin: 8px; }
  .app-bot, .app-bot-bubble { display: none; }
  .tr-search { display: none; }
}
@media (max-width: 560px) {
  .hero { padding-top: 132px; }
  .hero-bot { height: 380px; }
  .bot { width: 250px; }
  .hw { transform: scale(.86); }
  .hw-lang { left: -8px; top: 130px; }
  .hw-live { right: -8px; bottom: 20px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat + .stat:nth-child(odd)::before { display: none; }
  .teams-grid { grid-template-columns: 1fr; }
  .savings { padding: 12px 0 68px; }
  .savings-shell { padding: 16px; border-radius: 26px; }
  .savings-copy { padding: 10px; }
  .savings-card { padding: 18px; border-radius: 24px; }
  .savings-results { grid-template-columns: 1fr; }
  .clinic-flow-map { grid-template-columns: 1fr; }
  .clinic-flow-map article { min-height: 0; }
  .testimonials { padding: 64px 0; }
  .testimonial-card { padding: 22px; border-radius: 24px; }
  .testimonial-feature p { font-size: 22px; }
  .app-main { padding: 18px; }
  .cards { gap: 12px; }
  .fcard p { min-height: 0; }
  .foot-grid { grid-template-columns: 1fr; }
  .nav-pill { padding-left: 18px; }
  .nav .brand-logo { width: 128px; }
  .nav-signin { display: none; }
  .nav-cta { padding: 12px 18px; font-size: 14px; }
  .start-hero { min-height: 0; }
  .start-auth-panel { padding: 24px; border-radius: 24px; }
  .auth-option { min-height: 54px; }
  .page-hero-visual.clinician-visual { min-height: 320px; border-radius: 24px; }
  .page-hero-visual.clinician-visual img { width: min(330px, 112%); }
  .page-hero-visual.stock-visual { min-height: 320px; border-radius: 24px; }
  .product-hero-visual.stock-visual { min-height: 340px; margin-top: 12px; }
  .clinical-visual-chip { left: 16px; bottom: 18px; padding: 12px 14px; }
  .foot-brand .brand-logo { width: 160px; }
  .tr-side, .app-side { display: none; }
  .tr-window, .app-window { grid-template-columns: 1fr; }
  .quick button span { display: none; }
  .cta { padding: 40px 26px; }
  .page-main { padding-top: 96px; }
  .page-hero { padding-bottom: 54px; }
  .product-hero { padding-bottom: 66px; }
  .product-hero-visual { min-height: 650px; margin-top: 12px; }
  .product-ui-showcase { min-height: 520px; transform: none; }
  .product-dashboard {
    left: 0; right: 0; top: 0; width: 100%;
    border-radius: 22px;
  }
  .product-dashboard-top { height: 48px; padding: 0 14px; font-size: 12px; }
  .product-dashboard-body { grid-template-columns: 52px 1fr; min-height: 306px; }
  .product-dash-side { padding: 14px 0; gap: 10px; }
  .product-dash-side span { width: 32px; height: 32px; border-radius: 10px; font-size: 9px; }
  .product-dash-main { padding: 15px; }
  .product-dash-bar { align-items: flex-start; flex-direction: column; gap: 10px; }
  .product-dash-bar strong { font-size: 18px; }
  .product-dash-grid { grid-template-columns: 1fr; gap: 10px; }
  .transcript-panel { grid-row: auto; }
  .notes-panel, .language-panel { display: none; }
  .product-phone {
    left: 50%; right: auto; bottom: 0; width: 174px;
    transform: translateX(-50%);
  }
  .product-visual-stack {
    width: min(330px, 100%);
    min-height: 640px;
  }
  .attached-dashboard { display: none; }
  .attached-mobile {
    position: static;
    right: auto;
    top: auto;
    z-index: auto;
    display: block;
    width: 100%;
    padding: 8px;
    border-radius: 32px;
    background: #fff;
    box-shadow: 0 32px 90px -30px rgba(124,58,237,.75), 0 44px 90px -34px rgba(5,89,99,.45);
  }
  .attached-mobile-inner {
    min-height: 620px;
    padding: 24px 20px;
    border-radius: 26px;
    background: linear-gradient(180deg, #fff 0%, #fff 78%, #f7fbfc 100%);
    overflow: hidden;
  }
  .mobile-top-row { display: flex; gap: 8px; align-items: center; }
  .mobile-top-row button {
    min-width: 0;
    padding: 8px 10px;
    font-size: 13px;
  }
  .mobile-top-row button:first-child { flex: 1; }
  .attached-mobile h2 {
    margin-top: 56px;
    font-family: var(--font);
    color: var(--ink);
    font-size: 27px;
    line-height: 1.28;
    letter-spacing: .01em;
  }
  .attached-mobile article {
    min-height: 210px;
    padding: 24px 20px;
    margin-top: 56px;
    border-radius: 26px;
    box-shadow: 0 24px 46px -34px rgba(15,23,43,.44);
  }
  .attached-mobile article + article { margin-top: 22px; }
  .attached-mobile article p { margin-top: 48px; font-size: 20px; line-height: 1.35; }
  .attached-mobile article b { margin-top: 28px; font-size: 18px; }
  .attached-mobile article:nth-of-type(2) { min-height: 250px; }
  .attached-mobile article:nth-of-type(2) { display: block; }
  .mobile-mic-panel {
    position: relative;
    z-index: 2;
    margin-top: -16px;
    padding: 24px 20px;
    border-radius: 28px;
    background: #fff;
    text-align: center;
    box-shadow: 0 24px 54px -34px rgba(15,23,43,.5);
  }
  .mobile-mic-panel p {
    margin: 0;
    color: var(--slate-500);
    font-size: 20px;
    line-height: 1.35;
  }
  .mobile-mic-panel .big-mic { width: 74px; height: 74px; margin-top: 20px; }
  .page-band { padding: 62px 0; }
  .solution-card { min-height: 0; padding: 22px; border-radius: 24px; }
  .article-grid, .resource-paths { grid-template-columns: 1fr; }
  .article-card { min-height: 0; }
  .solution-points { grid-template-columns: 1fr; }
  .solution-card-top { align-items: flex-start; flex-direction: column; }
  .workflow-row { padding: 10px; border-radius: 20px; }
  .workflow-row > div { padding: 15px; border-radius: 15px; }
  .rollout-step { min-height: 0; padding: 22px; border-radius: 24px; }
  .metric-strip { grid-template-columns: 1fr; }
  .page-hero-actions .nav-cta { width: 100%; justify-content: center; }
}

@media (max-width: 980px) {
  .hero {
    padding: 112px 0 52px;
  }
  .hero-shell {
    width: min(760px, 92vw);
  }
  .hero .hero-grid {
    grid-template-columns: 1fr;
    padding: 72px 30px 22px;
    gap: 28px;
  }
  .hero h1 {
    font-size: clamp(44px, 9vw, 68px);
    max-width: 680px;
  }
  .hero-sub {
    max-width: 620px;
  }
  .hero-bot {
    height: 360px;
  }
  .bot-stage::before {
    display: none;
  }
  .hw-lang {
    left: 5%;
    top: 18px;
  }
  .hw-live {
    right: 5%;
    top: 142px;
    bottom: auto;
  }
  .bot-chip.c2 {
    left: 38%;
    bottom: 32px;
  }
  .hero .stats {
    padding: 12px 30px 38px;
  }
}

@media (max-width: 560px) {
  .hero {
    padding: 96px 0 42px;
  }
  .hero-shell {
    width: min(390px, 92vw);
  }
  .hero .hero-grid {
    padding: 48px 18px 12px;
    gap: 20px;
  }
  .hero h1 {
    font-size: clamp(40px, 12vw, 54px);
  }
  .hero-sub {
    font-size: 16px;
  }
  .hero-form {
    align-items: stretch;
    flex-direction: column;
    padding: 12px;
    border-radius: 24px;
  }
  .hero-form input {
    min-height: 42px;
    padding: 0 8px;
  }
  .hero-form button {
    justify-content: center;
  }
  .trust {
    gap: 12px;
  }
  .hero-bot {
    height: 356px;
  }
  .bot-stage::before {
    display: none;
  }
  .hw {
    transform-origin: center;
  }
  .hw-lang {
    left: 0;
    top: 10px;
    width: min(270px, 86vw);
  }
  .hw-live {
    right: 0;
    top: 172px;
    bottom: auto;
    width: min(248px, 82vw);
  }
  .bot-chip.c2 {
    left: 18px;
    bottom: 6px;
  }
  .hero .stats {
    grid-template-columns: 1fr 1fr;
    gap: 20px 8px;
    padding: 10px 18px 30px;
  }
}

@media (max-width: 980px) {
  .hero-bot {
    height: 520px;
  }
  .hero-doctor {
    right: 50%;
    bottom: -24px;
    width: min(500px, 88%);
    transform: translateX(50%);
  }
  .hw-lang {
    left: 6%;
    top: 10px;
    width: 210px;
  }
  .hw-live {
    right: 2%;
    top: 104px;
    bottom: auto;
    width: 240px;
  }
  .bot-chip.c2 {
    left: 42%;
    bottom: 110px;
  }
}

@media (max-width: 560px) {
  .hero-bot {
    height: 560px;
  }
  .hero-doctor {
    right: 50%;
    bottom: -18px;
    width: min(420px, 104%);
    transform: translateX(50%);
  }
  .hw {
    transform: scale(.74);
  }
  .hw-lang {
    left: -22px;
    top: 0;
    width: 220px;
  }
  .hw-live {
    right: -28px;
    top: 100px;
    bottom: auto;
    width: 238px;
  }
  .bot-chip.c2 {
    left: 8px;
    bottom: 146px;
  }
}

/* Selective asmadev hero visuals */
.product-hero-visual .product-visual-stack {
  width: min(620px, 100%);
  min-height: 500px;
  transform: translateX(-34px);
}
.product-hero-visual .attached-dashboard {
  grid-template-columns: 1fr;
  aspect-ratio: 1.78;
  border-radius: 28px;
  background: #f7fcfd;
}
.product-session-screen {
  position: relative;
  min-height: 100%;
  display: grid;
  place-items: center;
  padding: 52px 56px;
  background: #f7fcfd;
}
.product-session-screen .session-avatar {
  position: absolute;
  top: 24px;
  right: 28px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 3px solid rgba(163,215,221,.72);
  background: #fff;
  color: var(--teal-900);
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 14px 28px -20px rgba(5,89,99,.6);
}
.session-center {
  width: min(520px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.session-center h2 {
  margin: 0;
  color: var(--slate-800);
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 1.08;
  letter-spacing: -.04em;
}
.session-select {
  width: min(470px, 100%);
  margin-top: 34px;
  min-height: 58px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(5,89,99,.16);
  border-radius: 999px;
  background: #fff;
  color: var(--slate-800);
  box-shadow: 0 14px 38px -30px rgba(5,89,99,.48);
}
.session-select span {
  color: var(--teal-700);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.session-select b {
  flex: 1;
  text-align: left;
  font-size: 17px;
  font-weight: 900;
}
.session-select i {
  color: var(--slate-500);
  font-style: normal;
  font-size: 13px;
  font-weight: 800;
}
.session-mic {
  width: 110px;
  height: 110px;
  margin-top: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--teal-900);
  box-shadow: 0 0 0 16px rgba(5,89,99,.1), 0 0 0 32px rgba(5,89,99,.06), 0 26px 54px -28px rgba(5,89,99,.72);
}
.session-mic svg {
  width: 46px;
  height: 46px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.15;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.session-actions {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 14px;
}
.session-actions button {
  min-width: 142px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #fff;
  border: 1px solid rgba(5,89,99,.16);
  color: var(--teal-900);
  font-size: 15px;
  font-weight: 900;
}
.session-actions button span {
  color: var(--teal-700);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.session-actions button:disabled {
  color: #b6c3cf;
  background: rgba(255,255,255,.62);
}
.product-hero-visual .attached-mobile {
  width: 210px;
  top: 72px;
}
.attached-mobile-inner.product-session-screen {
  min-height: 430px;
  padding: 22px 16px;
}
.attached-mobile-inner.product-session-screen .session-avatar {
  width: 34px;
  height: 34px;
  top: 14px;
  right: 14px;
  font-size: 11px;
  border-width: 2px;
}
.attached-mobile-inner.product-session-screen .session-center {
  width: 100%;
  padding-top: 58px;
}
.attached-mobile-inner.product-session-screen .session-center h2 {
  font-size: 25px;
  line-height: 1.14;
}
.attached-mobile-inner.product-session-screen .session-select {
  margin-top: 24px;
  min-height: 45px;
  padding: 0 14px;
  gap: 10px;
}
.attached-mobile-inner.product-session-screen .session-select b {
  font-size: 12px;
}
.attached-mobile-inner.product-session-screen .session-select span,
.attached-mobile-inner.product-session-screen .session-select i {
  font-size: 9px;
}
.attached-mobile-inner.product-session-screen .session-mic {
  width: 76px;
  height: 76px;
  margin-top: 42px;
  box-shadow: 0 0 0 12px rgba(5,89,99,.1), 0 0 0 24px rgba(5,89,99,.06), 0 22px 38px -26px rgba(5,89,99,.7);
}
.attached-mobile-inner.product-session-screen .session-mic svg {
  width: 34px;
  height: 34px;
}
.attached-mobile-inner.product-session-screen .session-actions {
  margin-top: 44px;
  gap: 8px;
}
.attached-mobile-inner.product-session-screen .session-actions button {
  min-width: 0;
  min-height: 38px;
  padding: 0 10px;
  gap: 6px;
  font-size: 10px;
}
.attached-mobile-inner.product-session-screen .session-actions button span {
  display: none;
}
.security-hero-visual {
  min-height: 470px;
}
.security-hero-visual::before {
  width: 520px;
  height: 430px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 42% 28%, rgba(163,215,221,.35), transparent 56%),
    radial-gradient(circle at 64% 76%, rgba(52,211,153,.18), transparent 48%);
}
.security-clinician-card {
  position: relative;
  width: min(430px, 100%);
  height: 430px;
  border-radius: 34px;
  overflow: visible;
  background: linear-gradient(180deg, rgba(231,247,248,.18), rgba(163,215,221,.1));
}
.security-clinician-card img {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 430px;
  max-width: none;
  transform: translateX(-50%);
  filter: drop-shadow(0 30px 48px rgba(0,0,0,.28));
  animation: none;
}
.security-widget {
  position: absolute;
  z-index: 2;
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 12px;
  align-items: center;
  min-width: 178px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 18px 42px -26px rgba(5,89,99,.7);
  color: var(--ink);
}
.security-widget span {
  grid-row: span 2;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, var(--teal-500), var(--teal-900));
  font-size: 10px;
  font-weight: 900;
}
.security-widget b {
  font-size: 13px;
  font-weight: 900;
}
.security-widget small {
  margin-top: 2px;
  color: var(--slate-500);
  font-size: 11px;
  font-weight: 700;
}
.security-widget-lock,
.pricing-widget-monthly,
.case-widget-intake,
.blog-widget-guide,
.contact-widget-demo,
.start-widget-demo {
  left: -42px;
  top: 146px;
}
.security-widget-audit,
.pricing-widget-annual,
.case-widget-outcome,
.blog-widget-trust,
.contact-widget-plan,
.start-widget-session {
  right: -42px;
  bottom: 82px;
}

@media (max-width: 980px) {
  .product-hero-visual .product-visual-stack {
    width: min(720px, 94vw);
    min-height: 450px;
    transform: none;
  }
  .product-hero-visual .attached-dashboard {
    left: 0;
    top: 36px;
    transform: scale(.56);
  }
  .product-hero-visual .attached-mobile {
    right: 10px;
    top: 64px;
    width: 178px;
  }
  .security-hero-visual {
    min-height: 420px;
  }
  .security-clinician-card {
    width: min(390px, 92vw);
    height: 400px;
  }
  .security-clinician-card img {
    width: 390px;
  }
  .security-widget {
    min-width: 168px;
    padding: 12px 14px;
  }
  .security-widget-lock,
  .pricing-widget-monthly,
  .case-widget-intake,
  .blog-widget-guide,
  .contact-widget-demo,
  .start-widget-demo {
    left: -4px;
    top: 68px;
  }
  .security-widget-audit,
  .pricing-widget-annual,
  .case-widget-outcome,
  .blog-widget-trust,
  .contact-widget-plan,
  .start-widget-session {
    right: -4px;
    bottom: 54px;
  }
}

@media (max-width: 560px) {
  .product-hero-visual {
    min-height: 650px;
    margin-top: 12px;
  }
  .product-hero-visual .product-visual-stack {
    width: min(330px, 100%);
    min-height: 640px;
    transform: none;
  }
  .product-hero-visual .attached-dashboard {
    display: none;
  }
  .product-hero-visual .attached-mobile {
    position: static;
    right: auto;
    top: auto;
    display: block;
    width: 100%;
    padding: 8px;
    border-radius: 32px;
    background: #fff;
    box-shadow: 0 32px 90px -30px rgba(124,58,237,.75), 0 44px 90px -34px rgba(5,89,99,.45);
  }
  .attached-mobile-inner.product-session-screen {
    min-height: 540px;
    padding: 24px 20px;
  }
  .attached-mobile-inner.product-session-screen .session-center {
    padding-top: 72px;
  }
  .attached-mobile-inner.product-session-screen .session-center h2 {
    font-size: 32px;
  }
  .attached-mobile-inner.product-session-screen .session-select {
    margin-top: 30px;
    min-height: 54px;
  }
  .attached-mobile-inner.product-session-screen .session-select b {
    font-size: 15px;
  }
  .attached-mobile-inner.product-session-screen .session-mic {
    width: 88px;
    height: 88px;
    margin-top: 54px;
  }
  .attached-mobile-inner.product-session-screen .session-actions {
    margin-top: 54px;
  }
  .attached-mobile-inner.product-session-screen .session-actions button {
    min-height: 42px;
    font-size: 12px;
  }
  .security-hero-visual {
    min-height: 360px;
  }
  .security-clinician-card {
    width: min(330px, 92vw);
    height: 350px;
  }
  .security-clinician-card img {
    width: 330px;
  }
  .security-widget {
    min-width: 150px;
    grid-template-columns: 34px 1fr;
    padding: 10px 12px;
    border-radius: 16px;
  }
  .security-widget span {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    font-size: 9px;
  }
  .security-widget b {
    font-size: 12px;
  }
  .security-widget small {
    font-size: 10px;
  }
}

/* Product page screenshot hero */
.product-hero-grid {
  grid-template-columns: minmax(0, .95fr) minmax(520px, 660px);
}
.product-shot-visual {
  min-height: 500px;
  transform: translateY(-42px);
  perspective: none;
}
.product-shot-visual::before {
  display: none;
}
.product-hero-shot {
  position: relative;
  display: block;
  width: min(660px, 100%);
  height: clamp(340px, 32vw, 420px);
  overflow: hidden;
  border: 8px solid rgba(255,255,255,.92);
  border-radius: 30px;
  background: #f6fbfd;
  box-shadow: 0 42px 110px -40px rgba(0,0,0,.7), 0 32px 72px -44px rgba(52,211,153,.55);
}
.product-hero-shot img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 58% center;
  filter: none;
  animation: none;
}

@media (max-width: 980px) {
  .product-hero-grid {
    grid-template-columns: 1fr;
  }
  .product-shot-visual {
    min-height: auto;
    margin-top: 22px;
    transform: none;
  }
  .product-hero-shot {
    width: min(760px, 94vw);
  }
}

@media (max-width: 640px) {
  .product-shot-visual {
    min-height: auto;
    margin-top: 12px;
  }
  .product-hero-shot {
    width: min(321px, 92vw);
    height: auto;
    border-width: 6px;
    border-radius: 28px;
    box-shadow: 0 32px 90px -42px rgba(0,0,0,.72), 0 28px 64px -44px rgba(52,211,153,.52);
  }
  .product-hero-shot img {
    height: auto;
    object-fit: contain;
    object-position: center;
  }
}

/* Product page layered screenshot hero */
.product-hero-grid {
  width: min(1440px, 92vw);
  grid-template-columns: minmax(0, .92fr) minmax(560px, 720px);
  gap: clamp(48px, 4.2vw, 72px);
}
.product-layered-visual {
  min-height: 580px;
  transform: translateY(-48px);
  overflow: visible;
}
.product-layered-visual::before {
  display: block;
  width: 690px;
  height: 500px;
  border-radius: 42px;
  background:
    radial-gradient(circle at 78% 48%, rgba(99,102,241,.22), transparent 52%),
    radial-gradient(circle at 36% 76%, rgba(52,211,153,.22), transparent 48%),
    radial-gradient(circle at 52% 34%, rgba(163,215,221,.3), transparent 54%);
}
.product-layered-stack {
  position: relative;
  width: min(720px, 100%);
  height: 580px;
}
.product-layered-frame {
  position: absolute;
  display: block;
  background: #f6fbfd;
  border: 8px solid rgba(255,255,255,.94);
  overflow: hidden;
}
.product-layered-frame img {
  width: 100%;
  height: 100%;
  max-width: none;
  border: 0;
  border-radius: 0;
  filter: none;
  animation: none;
  object-fit: cover;
  object-position: center;
  transform: scale(1.018);
}
.product-layered-desktop-frame {
  left: 0;
  top: 92px;
  z-index: 1;
  width: min(590px, 82%);
  aspect-ratio: 1920 / 862;
  border-radius: 28px;
  box-shadow: 0 42px 110px -42px rgba(0,0,0,.72), 0 36px 80px -46px rgba(52,211,153,.62);
}
.product-layered-mobile-frame {
  right: 22px;
  top: 122px;
  z-index: 2;
  width: clamp(210px, 12.3vw, 236px);
  aspect-ratio: 321 / 674;
  border-radius: 34px;
  box-shadow: 0 46px 96px -38px rgba(0,0,0,.74), 0 50px 100px -48px rgba(99,102,241,.7);
}
.product-layered-mobile-frame img {
  object-position: center 48%;
}

@media (max-width: 1180px) {
  .product-hero-grid {
    grid-template-columns: minmax(0, .9fr) minmax(500px, 640px);
    gap: 42px;
  }
  .product-layered-stack {
    width: min(640px, 100%);
  }
  .product-layered-desktop-frame {
    width: min(540px, 84%);
  }
  .product-layered-mobile-frame {
    right: 8px;
    width: 220px;
  }
}

@media (max-width: 980px) {
  .product-hero-grid {
    grid-template-columns: 1fr;
  }
  .product-layered-visual {
    min-height: 560px;
    margin-top: 18px;
    transform: none;
  }
  .product-layered-stack {
    width: min(680px, 94vw);
    height: 560px;
  }
}

@media (max-width: 640px) {
  .product-layered-visual {
    min-height: auto;
    margin-top: 18px;
  }
  .product-layered-visual::before {
    width: 330px;
    height: 360px;
  }
  .product-layered-stack {
    width: min(321px, 92vw);
    height: auto;
  }
  .product-layered-desktop-frame {
    display: none;
  }
  .product-layered-mobile-frame {
    position: relative;
    inset: auto;
    width: 100%;
    border-width: 6px;
    border-radius: 30px;
    box-shadow: 0 32px 90px -42px rgba(0,0,0,.72), 0 28px 64px -44px rgba(52,211,153,.52);
  }
}

/* Product page live transcript console showcase */
.product-console-section {
  padding-top: 96px;
  padding-bottom: 112px;
  scroll-margin-top: 118px;
  background:
    radial-gradient(circle at 86% 20%, rgba(163,215,221,.18), transparent 34%),
    linear-gradient(180deg, rgba(245,251,253,.88), rgba(255,255,255,.98));
  overflow: hidden;
}
.product-console-grid {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(560px, 1.22fr);
  align-items: center;
  gap: 60px;
}
.product-console-copy {
  max-width: 510px;
}
.product-console-copy h2 {
  margin: 18px 0 18px;
  font-size: clamp(42px, 5vw, 76px);
  line-height: .98;
  letter-spacing: 0;
  color: var(--ink);
}
.product-console-copy p {
  margin: 0;
  max-width: 500px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.58;
}
.product-console-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  overflow: visible;
}
.product-console-visual::before {
  content: "";
  position: absolute;
  width: 760px;
  height: 520px;
  border-radius: 48px;
  background:
    radial-gradient(circle at 72% 48%, rgba(99,102,241,.18), transparent 50%),
    radial-gradient(circle at 42% 76%, rgba(52,211,153,.18), transparent 50%),
    radial-gradient(circle at 50% 36%, rgba(163,215,221,.3), transparent 56%);
  filter: blur(12px);
}
.product-console-stack {
  position: relative;
  width: min(780px, 100%);
  height: 560px;
}
.product-console-frame {
  position: absolute;
  display: block;
  background: #f6fbfd;
  overflow: hidden;
}
.product-console-frame img {
  width: 100%;
  height: 100%;
  max-width: none;
  border: 0;
  border-radius: 0;
  object-fit: cover;
  object-position: center;
  transform: scale(1.018);
}
.product-console-desktop-frame {
  left: 0;
  top: 86px;
  z-index: 1;
  width: min(690px, 88%);
  aspect-ratio: 1920 / 858;
  border: 8px solid rgba(255,255,255,.94);
  border-radius: 26px;
  box-shadow: 0 42px 110px -44px rgba(0,0,0,.66), 0 36px 78px -46px rgba(52,211,153,.56);
}
.product-console-mobile-frame {
  right: 4px;
  top: 74px;
  z-index: 2;
  width: clamp(210px, 13vw, 248px);
  aspect-ratio: 321 / 676;
  border: 8px solid rgba(255,255,255,.96);
  border-radius: 34px;
  box-shadow: 0 46px 100px -38px rgba(0,0,0,.7), 0 48px 100px -48px rgba(99,102,241,.66);
}
.product-console-mobile-frame img {
  object-position: center 48%;
}

@media (max-width: 1180px) {
  .product-console-grid {
    grid-template-columns: minmax(0, .86fr) minmax(500px, 640px);
    gap: 44px;
  }
  .product-console-stack {
    width: min(660px, 100%);
  }
  .product-console-desktop-frame {
    width: min(570px, 86%);
  }
  .product-console-mobile-frame {
    width: 218px;
  }
}

@media (max-width: 980px) {
  .product-console-section {
    padding-top: 78px;
    padding-bottom: 86px;
  }
  .product-console-grid {
    grid-template-columns: 1fr;
  }
  .product-console-copy {
    max-width: 680px;
  }
  .product-console-visual {
    min-height: 540px;
  }
  .product-console-stack {
    width: min(700px, 94vw);
    height: 540px;
  }
}

@media (max-width: 640px) {
  .product-console-section {
    padding-top: 64px;
    padding-bottom: 72px;
  }
  .product-console-copy h2 {
    font-size: clamp(34px, 11vw, 48px);
  }
  .product-console-copy p {
    font-size: 17px;
  }
  .product-console-visual {
    min-height: auto;
    margin-top: 10px;
  }
  .product-console-visual::before {
    width: 320px;
    height: 430px;
  }
  .product-console-stack {
    width: min(321px, 92vw);
    height: auto;
  }
  .product-console-desktop-frame {
    display: none;
  }
  .product-console-mobile-frame {
    position: relative;
    inset: auto;
    width: 100%;
    border-width: 6px;
    border-radius: 30px;
    box-shadow: 0 32px 90px -42px rgba(0,0,0,.72), 0 28px 64px -44px rgba(52,211,153,.52);
  }
}

/* Blog article template */
.blog-article-main {
  padding-top: 136px;
}

.blog-article-hero {
  padding: 56px 0 42px;
}

.blog-article-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(320px, .48fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: end;
}

.blog-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 0;
  color: var(--slate-600);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .02em;
}

.blog-article-hero h1 {
  max-width: 900px;
  margin-top: 20px;
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 82px);
  line-height: .98;
  letter-spacing: -.045em;
  color: var(--ink);
}

.blog-article-hero p {
  max-width: 760px;
  margin-top: 24px;
  color: var(--slate-700);
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.55;
}

.blog-article-panel {
  padding: 28px;
  border: 1px solid rgba(163,215,221,.56);
  border-radius: 28px;
  background:
    radial-gradient(circle at 82% 8%, rgba(163,215,221,.34), transparent 46%),
    rgba(255,255,255,.78);
  box-shadow: var(--sh-md);
}

.blog-article-panel b {
  display: block;
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
}

.blog-article-panel ul {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.blog-article-panel li {
  display: grid;
  grid-template-columns: 10px 1fr;
  gap: 12px;
  color: var(--slate-700);
  font-size: 15px;
  line-height: 1.5;
}

.blog-article-panel li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 7px;
  border-radius: 999px;
  background: var(--teal-300);
  box-shadow: 0 0 0 5px rgba(163,215,221,.22);
}

.blog-article-shell {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(260px, 340px);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
  padding-bottom: 96px;
}

.blog-article-content {
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(195,224,228,.88);
  border-radius: 30px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 28px 80px -48px rgba(15,42,52,.36);
}

.blog-article-content h2,
.blog-article-content h3 {
  font-family: var(--font-display);
  letter-spacing: -.02em;
  color: var(--ink);
}

.blog-article-content h2 {
  margin-top: 44px;
  font-size: clamp(28px, 3.1vw, 42px);
  line-height: 1.12;
}

.blog-article-content h2:first-child {
  margin-top: 0;
}

.blog-article-content h3 {
  margin-top: 28px;
  font-size: 22px;
  line-height: 1.25;
}

.blog-article-content p,
.blog-article-content li {
  color: var(--slate-700);
  font-size: 18px;
  line-height: 1.78;
}

.blog-article-content p {
  margin-top: 18px;
}

.blog-article-content ul,
.blog-article-content ol {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding-left: 22px;
}

.blog-callout {
  margin: 32px 0;
  padding: 24px;
  border: 1px solid rgba(111,174,181,.35);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(163,215,221,.22), rgba(208,250,229,.28));
}

.blog-callout strong {
  display: block;
  color: var(--teal-900);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.blog-sidebar {
  position: sticky;
  top: 124px;
  display: grid;
  gap: 18px;
}

.blog-sidebar-card {
  padding: 24px;
  border: 1px solid rgba(195,224,228,.88);
  border-radius: 24px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 20px 60px -44px rgba(15,42,52,.45);
}

.blog-sidebar-card h2,
.blog-sidebar-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.25;
}

.blog-sidebar-card p {
  margin-top: 10px;
  color: var(--slate-600);
  font-size: 15px;
  line-height: 1.55;
}

.blog-sidebar-card nav {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.blog-sidebar-card nav a {
  color: var(--slate-700);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.blog-sidebar-card nav a:hover {
  color: var(--teal-900);
}

.blog-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.blog-keywords span {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(163,215,221,.22);
  color: var(--teal-900);
  font-size: 12px;
  font-weight: 900;
}

.blog-article-cta {
  display: grid;
  gap: 18px;
  margin-top: 48px;
  padding: 30px;
  border-radius: 26px;
  background: var(--teal-900);
  color: #fff;
}

.blog-article-cta h2 {
  margin: 0;
  color: #fff;
}

.blog-article-cta p {
  margin-top: 0;
  color: rgba(255,255,255,.78);
}

.blog-article-cta .nav-cta {
  width: fit-content;
  background: #fff;
  color: var(--teal-900);
}

@media (max-width: 980px) {
  .blog-article-main {
    padding-top: 118px;
  }

  .blog-article-hero-grid,
  .blog-article-shell {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    position: static;
    order: -1;
  }
}

@media (max-width: 560px) {
  .blog-article-main {
    padding-top: 102px;
  }

  .blog-article-hero {
    padding-top: 34px;
  }

  .blog-article-content,
  .blog-article-panel,
  .blog-sidebar-card,
  .blog-article-cta {
    border-radius: 22px;
  }

  .blog-article-content p,
  .blog-article-content li {
    font-size: 16px;
    line-height: 1.72;
  }
}
