/* ============================================================
   Precertif.ai — landing styles
   ============================================================ */

:root {
  --bg: #f5f8fc;
  --bg-2: #e9f0f9;
  --panel: #ffffff;
  --panel-2: #f2f6fb;
  --line: rgba(16, 42, 84, 0.1);
  --line-2: rgba(16, 42, 84, 0.16);
  --text: #0e1c30;
  --text-dim: #4a5c73;
  --text-faint: #8194aa;
  --blue: #2563eb;
  --cyan: #0891b2;
  --teal: #0d9488;
  --green: #059669;
  --amber: #b45309;
  --red: #dc2626;
  --red-soft: #dc2626;
  --grad: linear-gradient(92deg, #2563eb 0%, #0891b2 55%, #0d9488 100%);
  --grad-red: linear-gradient(92deg, #dc2626 0%, #ea580c 100%);
  --radius: 18px;
  --radius-sm: 12px;
  --font-body: "DM Sans", system-ui, -apple-system, sans-serif;
  --font-head: "Plus Jakarta Sans", var(--font-body);
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", monospace;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-card: 0 30px 70px rgba(16, 42, 84, 0.14), 0 0 0 1px rgba(16, 42, 84, 0.05);
}

* { box-sizing: border-box; }

html {
  color-scheme: light;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  /* No overflow property here: overflow-x on the root element forces
     overflow-y to clip too and disables page scrolling entirely. */
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  /* clip, not hidden: hidden would make body the scroll container and
     silently break anchor links and scrollIntoView */
  overflow-x: clip;
}

img, svg { display: block; }
a { color: inherit; }

::selection { background: rgba(37, 99, 235, 0.18); }

h1, h2, h3 {
  font-family: var(--font-head);
  line-height: 1.12;
  margin: 0;
  text-wrap: balance;
  letter-spacing: -0.02em;
  font-weight: 800;
}

p { margin: 0; text-wrap: pretty; }

.mono {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}

.container {
  width: min(1180px, 100% - 48px);
  margin-inline: auto;
}
.container-narrow { width: min(860px, 100% - 48px); }

/* ---------- a11y ---------- */
.skip-link {
  position: fixed;
  top: -60px;
  left: 16px;
  z-index: 100;
  padding: 10px 18px;
  background: var(--blue);
  color: #fff;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: top 0.2s var(--ease-out);
}
.skip-link:focus-visible { top: 12px; }

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

section[id], [id] { scroll-margin-top: 92px; }

/* ---------- background ---------- */
.bg-aurora {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 55%);
}
/* The blobs are soft radial gradients — no filter: blur() on top of them.
   Large animated blur layers freeze the compositor on big screens. */
.aurora {
  position: absolute;
  border-radius: 50%;
  opacity: 0.55;
  will-change: transform;
}
.aurora-a {
  width: 780px; height: 780px;
  top: -320px; left: -180px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 65%);
  animation: drift-a 26s ease-in-out infinite alternate;
}
.aurora-b {
  width: 640px; height: 640px;
  top: -160px; right: -220px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.14) 0%, transparent 65%);
  animation: drift-b 32s ease-in-out infinite alternate;
}
.aurora-c {
  width: 700px; height: 700px;
  bottom: -380px; left: 30%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.12) 0%, transparent 65%);
  animation: drift-a 38s ease-in-out infinite alternate-reverse;
}
@keyframes drift-a {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(120px, 60px, 0) scale(1.15); }
}
@keyframes drift-b {
  from { transform: translate3d(0, 0, 0) scale(1.1); }
  to { transform: translate3d(-90px, 90px, 0) scale(0.95); }
}
.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(16, 42, 84, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 42, 84, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, #000 30%, transparent 75%);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  font: 600 15.5px/1 var(--font-body);
  text-decoration: none;
  cursor: pointer;
  touch-action: manipulation;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out),
    background-color 0.25s var(--ease-out), border-color 0.25s var(--ease-out);
}
.btn svg { width: 17px; height: 17px; transition: transform 0.25s var(--ease-out); }
.btn-primary {
  background: linear-gradient(92deg, #2563eb, #0ea5e9);
  color: #fff;
  box-shadow: 0 4px 18px rgba(59, 130, 246, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(59, 130, 246, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.btn-primary:hover svg { transform: translateX(3px); }
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  background: #ffffff;
  border-color: var(--line-2);
  color: var(--text);
  box-shadow: 0 2px 10px rgba(16, 42, 84, 0.06);
}
.btn-ghost:hover {
  background: var(--panel-2);
  border-color: rgba(16, 42, 84, 0.3);
  transform: translateY(-2px);
}
.btn-sm { padding: 10px 20px; font-size: 14.5px; }
.btn-lg { padding: 17px 34px; font-size: 16.5px; }
.btn-block { width: 100%; }

/* ---------- nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 14px 0;
  transition: background-color 0.35s var(--ease-out), padding 0.35s var(--ease-out),
    border-color 0.35s var(--ease-out), backdrop-filter 0.35s var(--ease-out);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  padding: 8px 0;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom-color: var(--line);
}
.nav-inner {
  width: min(1180px, 100% - 48px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.02em;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 34px; height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, #2563eb, #0891b2);
  color: #fff;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
}
.brand-mark svg { width: 19px; height: 19px; }
.brand-dot { color: var(--cyan); }
.nav-links {
  display: flex;
  gap: 4px;
  margin-inline: auto;
}
.nav-links a {
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s, background-color 0.2s;
}
.nav-links a:hover { color: var(--text); background: var(--panel-2); }
.nav-links a.active { color: var(--text); background: var(--panel-2); }
.nav-cta { display: flex; gap: 10px; }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 10px;
  background: none;
  border: 0;
  cursor: pointer;
}
.nav-burger span {
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.2s;
}
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 12px 24px 22px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.mobile-menu a {
  padding: 12px 8px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dim);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}
.mobile-menu a.btn { border: 0; color: #fff; margin-top: 10px; }
.nav.menu-open .mobile-menu { display: flex; }

/* ---------- hero ---------- */
.hero { padding: 168px 0 40px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid rgba(37, 99, 235, 0.3);
  background: rgba(37, 99, 235, 0.07);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1d4ed8;
  margin-bottom: 26px;
}
.pulse-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 0 rgba(8, 145, 178, 0.5);
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(8, 145, 178, 0.5); }
  70% { box-shadow: 0 0 0 9px rgba(8, 145, 178, 0); }
  100% { box-shadow: 0 0 0 0 rgba(8, 145, 178, 0); }
}
.hero-title {
  font-size: clamp(42px, 5.4vw, 68px);
  font-weight: 900;
  margin-bottom: 22px;
}
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.grad-text-red {
  background: var(--grad-red);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: 18.5px;
  color: var(--text-dim);
  max-width: 54ch;
  margin-bottom: 34px;
}
.hero-sub em { font-style: normal; color: var(--text); font-weight: 600; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 18px; }
.hero-micro { font-size: 13.5px; color: var(--text-faint); }

/* ---------- hero simulator ---------- */
.hero-visual { position: relative; perspective: 1200px; }
.sim-glow {
  position: absolute;
  inset: -8% -6%;
  z-index: -1;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, transparent 70%);
}
.sim-card {
  background: #ffffff;
  border: 1px solid var(--line-2);
  border-radius: 22px;
  padding: 26px 26px 24px;
  box-shadow: var(--shadow-card);
  transition: transform 0.4s var(--ease-out);
  transform-style: preserve-3d;
  will-change: transform;
}
.sim-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 8px;
}
.sim-id {
  font-size: 15px;
  font-weight: 600;
  color: var(--cyan);
}
.sim-meta {
  display: block;
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 3px;
}
.sim-badge {
  flex-shrink: 0;
  padding: 6px 13px;
  border-radius: 999px;
  font: 700 11.5px/1 var(--font-mono);
  letter-spacing: 0.08em;
  color: var(--red-soft);
  background: rgba(220, 38, 38, 0.08);
  border: 1.5px solid rgba(220, 38, 38, 0.25);
  transition: all 0.4s var(--ease-out);
}
.sim-badge.is-med {
  color: #b45309;
  background: rgba(217, 119, 6, 0.08);
  border-color: rgba(217, 119, 6, 0.3);
}
.sim-badge.is-low {
  color: var(--green);
  background: rgba(5, 150, 105, 0.08);
  border-color: rgba(5, 150, 105, 0.3);
}

.sim-gauge-wrap {
  position: relative;
  display: grid;
  place-items: center;
  margin: 4px 0 10px;
}
.sim-gauge { width: min(240px, 70%); overflow: visible; }
.gauge-track, .gauge-fill {
  fill: none;
  stroke-width: 13;
  stroke-linecap: round;
}
.gauge-track { stroke: rgba(16, 42, 84, 0.08); }
.gauge-fill {
  stroke: var(--red);
  stroke-dasharray: 251.2;
  stroke-dashoffset: 22.6;
  filter: drop-shadow(0 0 10px rgba(220, 38, 38, 0.3));
  transition: stroke-dashoffset 0.8s var(--ease-out), stroke 0.5s, filter 0.5s;
}
.sim-score {
  position: absolute;
  bottom: 6px;
  display: grid;
  justify-items: center;
  gap: 2px;
}
.sim-score-num {
  font-size: 52px;
  font-weight: 600;
  line-height: 1;
  color: var(--red-soft);
  transition: color 0.5s;
}
.sim-score-label {
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.sim-hint-em { color: var(--cyan); font-weight: 700; }
.sim-toggles-label {
  font-size: 12.5px;
  color: var(--text-faint);
  margin-bottom: 10px;
}
.sim-toggle-row { display: grid; gap: 8px; }
.sim-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--text-dim);
  font: 500 13.5px/1.2 var(--font-body);
  cursor: pointer;
  touch-action: manipulation;
  transition: border-color 0.25s, background-color 0.25s, color 0.25s;
}
.sim-toggle:hover { border-color: var(--line-2); background: var(--panel-2); color: var(--text); }
.sim-toggle-state {
  width: 30px; height: 17px;
  flex-shrink: 0;
  border-radius: 999px;
  background: rgba(220, 38, 38, 0.4);
  position: relative;
  transition: background-color 0.3s;
}
.sim-toggle-state::after {
  content: "";
  position: absolute;
  top: 2px; left: 2px;
  width: 13px; height: 13px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.3s var(--ease-out);
}
.sim-toggle[aria-pressed="true"] .sim-toggle-state { background: var(--green); }
.sim-toggle[aria-pressed="true"] .sim-toggle-state::after { transform: translateX(13px); }
.sim-toggle-val {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--red-soft);
  transition: color 0.3s;
}
.sim-toggle[aria-pressed="true"] .sim-toggle-val { color: var(--green); }

.sim-flag {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--red-soft);
  background: rgba(220, 38, 38, 0.06);
  border: 1px solid rgba(220, 38, 38, 0.2);
  transition: all 0.4s;
}
.sim-flag svg { width: 17px; height: 17px; flex-shrink: 0; }
.sim-flag.is-clean {
  color: var(--green);
  background: rgba(5, 150, 105, 0.06);
  border-color: rgba(5, 150, 105, 0.25);
}

/* ---------- stat strip ---------- */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 72px 0 0;
  padding: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--line);
}
.stat {
  background: #ffffff;
  padding: 26px 22px;
  text-align: center;
}
.stat dt {
  order: 2;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-top: 6px;
}
.stat dd {
  margin: 0;
  font-size: clamp(30px, 3vw, 40px);
  font-weight: 600;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- sections ---------- */
.section { padding: 78px 0; position: relative; }
.section-alt {
  background: linear-gradient(180deg, transparent, rgba(37, 99, 235, 0.05) 18%, rgba(37, 99, 235, 0.05) 82%, transparent);
}
.kicker {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(30px, 3.8vw, 46px);
  font-weight: 900;
  max-width: 22ch;
  margin-bottom: 18px;
}
.section-sub {
  font-size: 17.5px;
  color: var(--text-dim);
  max-width: 62ch;
  margin-bottom: 40px;
}

/* ---------- spotlight cards ---------- */
.spotlight {
  position: relative;
}
.spotlight::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%), rgba(37, 99, 235, 0.07), transparent 55%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
@media (hover: hover) {
  .spotlight:hover::before { opacity: 1; }
}

/* ---------- problem ---------- */
.prob-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.prob-card {
  padding: 26px 26px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--panel);
  transition: transform 0.35s var(--ease-out), border-color 0.35s;
}
.prob-card:hover { transform: translateY(-5px); border-color: rgba(239, 68, 68, 0.3); }
.prob-num {
  display: block;
  font-size: clamp(38px, 4vw, 52px);
  font-weight: 800;
  margin-bottom: 8px;
}
.prob-card h3 { font-size: 19px; margin-bottom: 7px; }
.prob-card p { font-size: 15px; color: var(--text-dim); margin-bottom: 0; }
.prob-card cite {
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* ---------- outcome comparison ---------- */
.outcome-wrap { margin-top: 0; }
.outcome-title {
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 900;
  text-align: center;
  margin-bottom: 34px;
}
.outcome-tabs {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 6px;
  width: fit-content;
  margin: 0 auto 28px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--panel);
}
.outcome-tab {
  padding: 11px 24px;
  border-radius: 999px;
  border: 0;
  background: transparent;
  color: var(--text-dim);
  font: 600 14.5px/1 var(--font-body);
  cursor: pointer;
  touch-action: manipulation;
  transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
}
.outcome-tab:hover { color: var(--text); }
.outcome-tab.active {
  background: linear-gradient(92deg, #2563eb, #0ea5e9);
  color: #fff;
  box-shadow: 0 4px 18px rgba(59, 130, 246, 0.3);
}
.outcome-panels { max-width: 720px; margin: 0 auto; }
.outcome-panel {
  padding: 30px 32px;
  border-radius: var(--radius);
  animation: panel-in 0.45s var(--ease-out);
}
@keyframes panel-in {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
.outcome-denied {
  border: 1.5px solid rgba(239, 68, 68, 0.22);
  background: radial-gradient(circle at 20% 0%, rgba(239, 68, 68, 0.1) 0%, transparent 65%), var(--panel);
}
.outcome-approved {
  border: 1.5px solid rgba(22, 163, 74, 0.22);
  background: radial-gradient(circle at 20% 0%, rgba(52, 211, 153, 0.09) 0%, transparent 65%), var(--panel);
}
.outcome-head {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  margin-bottom: 8px;
}
.outcome-x, .outcome-check {
  display: grid;
  place-items: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
}
.outcome-x { background: rgba(239, 68, 68, 0.15); color: var(--red-soft); }
.outcome-check { background: rgba(52, 211, 153, 0.15); color: var(--green); }
.outcome-x svg, .outcome-check svg { width: 17px; height: 17px; }
.outcome-panel > p { color: var(--text-dim); font-size: 15px; margin-bottom: 22px; }
.outcome-timeline {
  display: grid;
  gap: 10px;
  border-left: 2px solid var(--line);
  padding-left: 18px;
}
.tl-item {
  position: relative;
  font-size: 14px;
  color: var(--text-dim);
}
.tl-item::before {
  content: "";
  position: absolute;
  left: -23px; top: 7px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--text-faint);
}
.tl-bad { color: var(--red-soft); font-weight: 600; }
.tl-bad::before { background: var(--red); box-shadow: 0 0 8px rgba(239, 68, 68, 0.6); }
.tl-good { color: var(--green); font-weight: 600; }
.tl-good::before { background: var(--green); box-shadow: 0 0 8px rgba(52, 211, 153, 0.6); }

/* ---------- steps ---------- */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 34px 30px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--panel);
  transition: transform 0.35s var(--ease-out), border-color 0.35s;
}
.step:hover { transform: translateY(-5px); border-color: rgba(59, 130, 246, 0.35); }
.step-num {
  position: absolute;
  top: 26px; right: 28px;
  font-size: 40px;
  font-weight: 600;
  color: rgba(16, 42, 84, 0.09);
}
.step-icon {
  display: grid;
  place-items: center;
  width: 52px; height: 52px;
  margin-bottom: 22px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(8, 145, 178, 0.08));
  border: 1px solid rgba(37, 99, 235, 0.22);
  color: #2563eb;
}
.step-icon svg { width: 25px; height: 25px; }
.step h3 { font-size: 20px; margin-bottom: 10px; }
.step > p { font-size: 15px; color: var(--text-dim); margin-bottom: 18px; }
.step-feats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.step-feats li {
  position: relative;
  padding-left: 24px;
  font-size: 13.5px;
  color: var(--text-dim);
}
.step-feats li::before {
  content: "";
  position: absolute;
  left: 0; top: 4px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: rgba(13, 148, 136, 0.12) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%230d9488" stroke-width="3.4" stroke-linecap="round" stroke-linejoin="round"><path d="M20 6 9 17l-5-5"/></svg>') center/8px no-repeat;
}

/* ---------- bento ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.bento-wide { grid-column: span 2; }
.bento-full { grid-column: 1 / -1; }
.bento-card {
  padding: 32px 30px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--panel);
  transition: transform 0.35s var(--ease-out), border-color 0.35s, box-shadow 0.35s;
}
.bento-card:hover {
  transform: translateY(-5px);
  border-color: rgba(59, 130, 246, 0.35);
  box-shadow: 0 24px 50px rgba(16, 42, 84, 0.12);
}
.bento-icon {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  margin-bottom: 20px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(8, 145, 178, 0.08));
  border: 1px solid rgba(37, 99, 235, 0.22);
  color: #2563eb;
}
.bento-icon svg { width: 22px; height: 22px; }
.bento-card h3 { font-size: 19px; margin-bottom: 9px; }
.bento-card > p { font-size: 14.5px; color: var(--text-dim); margin-bottom: 18px; }
.chip-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.chip-list li {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(16, 42, 84, 0.03);
  font-size: 12.5px;
  color: var(--text-dim);
}
.badge-hi, .badge-md, .badge-lo {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 5px;
  letter-spacing: 0.06em;
}
.badge-hi { color: #dc2626; background: rgba(220, 38, 38, 0.1); }
.badge-md { color: #b45309; background: rgba(217, 119, 6, 0.14); }
.badge-lo { color: #047857; background: rgba(5, 150, 105, 0.12); }

/* ---------- evidence ---------- */
.tier-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px;
}
.tier-head {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 17px;
  margin-bottom: 20px;
}
.tier-pill {
  padding: 5px 13px;
  border-radius: 999px;
  font: 700 12px/1 var(--font-mono);
  letter-spacing: 0.08em;
}
.tier-a { background: rgba(13, 148, 136, 0.1); color: var(--teal); border: 1px solid rgba(13, 148, 136, 0.3); }
.tier-b { background: rgba(37, 99, 235, 0.08); color: #2563eb; border: 1px solid rgba(37, 99, 235, 0.3); }
.tier-count { margin-left: auto; font-size: 12px; color: var(--text-faint); }
.source-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.source-list li {
  padding: 15px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--panel);
  transition: border-color 0.25s, background-color 0.25s, transform 0.25s var(--ease-out);
}
.source-list li:hover {
  border-color: var(--line-2);
  background: var(--panel-2);
  transform: translateX(5px);
}
.source-list strong { display: block; font-size: 14.5px; font-weight: 600; }
.source-list span { display: block; font-size: 13px; color: var(--text-faint); margin-top: 3px; }
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 34px;
}
.pillar {
  padding: 30px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--panel);
  transition: transform 0.35s var(--ease-out), border-color 0.35s;
}
.pillar:hover { transform: translateY(-5px); border-color: rgba(37, 99, 235, 0.35); }
.pillar-icon {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  margin-bottom: 18px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(8, 145, 178, 0.08));
  border: 1px solid rgba(37, 99, 235, 0.22);
  color: #2563eb;
}
.pillar-icon svg { width: 22px; height: 22px; }
.pillar h3 { font-size: 18px; margin-bottom: 9px; }
.pillar p { font-size: 14.5px; color: var(--text-dim); }
@media (max-width: 820px) { .pillars { grid-template-columns: 1fr; } }
.evidence-quote {
  margin: 0 auto;
  max-width: 880px;
  padding: 26px 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(13, 148, 136, 0.25);
  background: linear-gradient(140deg, rgba(13, 148, 136, 0.06), #ffffff 70%);
}
.evidence-quote p {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--text);
  font-style: italic;
}
.evidence-quote footer {
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-faint);
}

/* ---------- epic integration ---------- */
.epic-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.epic-grid .section-sub { margin-bottom: 28px; }
.epic-feats {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
  display: grid;
  gap: 13px;
}
.epic-feats li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15.5px;
  color: var(--text-dim);
}
.epic-check {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 22px; height: 22px;
  margin-top: 1px;
  border-radius: 50%;
  background: rgba(13, 148, 136, 0.12);
  color: var(--teal);
}
.epic-check svg { width: 12px; height: 12px; }
.epic-grid .hero-btns { margin-bottom: 14px; }
.epic-flow {
  display: grid;
  gap: 10px;
  padding: 30px 28px;
  border-radius: 22px;
  border: 1px solid var(--line-2);
  background: #ffffff;
  box-shadow: var(--shadow-card);
}
.epic-node {
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  display: grid;
  gap: 3px;
}
.epic-node-ehr {
  border: 1px solid rgba(37, 99, 235, 0.25);
  background: rgba(37, 99, 235, 0.05);
}
.epic-node-core {
  border: 1px solid rgba(13, 148, 136, 0.35);
  background: rgba(13, 148, 136, 0.06);
}
.epic-node-tag {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--blue);
}
.epic-node-core .epic-node-tag { color: var(--teal); }
.epic-node strong { font-size: 15.5px; }
.epic-node span:last-child { font-size: 13px; color: var(--text-faint); }
.epic-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-faint);
}
.epic-arrow svg { width: 15px; height: 15px; }
.epic-arrow-label {
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .epic-grid { grid-template-columns: 1fr; gap: 44px; }
  .epic-visual { max-width: 560px; }
}

/* ---------- testimonials ---------- */
.carousel { position: relative; max-width: 860px; margin: 0 auto; }
.carousel-track {
  display: grid;
  grid-template-areas: "slide";
}
.quote-card {
  grid-area: slide;
  margin: 0;
  padding: 44px 48px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: 0 16px 44px rgba(16, 42, 84, 0.08);
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
  pointer-events: none;
  visibility: hidden;
}
.quote-card.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  visibility: visible;
}
.quote-card blockquote {
  margin: 0 0 24px;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.quote-card figcaption strong { display: block; font-size: 15px; }
.quote-card figcaption span { font-size: 13.5px; color: var(--text-faint); }
.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 26px;
}
.carousel-btn {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  background: var(--panel);
  color: var(--text-dim);
  cursor: pointer;
  touch-action: manipulation;
  transition: border-color 0.25s, color 0.25s, background-color 0.25s;
}
.carousel-btn:hover { color: var(--text); border-color: rgba(16, 42, 84, 0.32); background: var(--panel-2); }
.carousel-btn svg { width: 17px; height: 17px; }
.carousel-dots { display: flex; gap: 8px; }
.carousel-dot {
  width: 8px; height: 8px;
  padding: 0;
  border-radius: 999px;
  border: 0;
  background: rgba(16, 42, 84, 0.18);
  cursor: pointer;
  transition: background-color 0.3s, width 0.3s var(--ease-out);
}
.carousel-dot.active { width: 24px; background: var(--cyan); }

/* ---------- ROI ---------- */
.roi-card {
  padding: 42px 44px;
  border-radius: 22px;
  border: 1px solid var(--line-2);
  background: #ffffff;
  box-shadow: var(--shadow-card);
}
.roi-input label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 16px;
}
.roi-vol { font-size: 26px; color: var(--cyan); }
input[type="range"] {
  width: 100%;
  height: 8px;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue) var(--fill, 5%), rgba(16, 42, 84, 0.12) var(--fill, 5%));
  outline-offset: 6px;
  cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: #fff;
  border: 5px solid var(--blue);
  box-shadow: 0 2px 12px rgba(59, 130, 246, 0.55);
  transition: transform 0.2s var(--ease-out);
}
input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.15); }
input[type="range"]::-moz-range-thumb {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #fff;
  border: 5px solid var(--blue);
  box-shadow: 0 2px 12px rgba(59, 130, 246, 0.55);
}
.roi-scale {
  display: flex;
  justify-content: space-between;
  font-size: 11.5px;
  color: var(--text-faint);
  margin-top: 8px;
}
.roi-out {
  display: grid;
  grid-template-columns: 1fr 1fr 1.3fr;
  gap: 16px;
  margin: 34px 0 20px;
  padding: 0;
}
.roi-stat {
  padding: 20px 22px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: rgba(16, 42, 84, 0.02);
}
.roi-stat dt {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 8px;
}
.roi-stat dd {
  margin: 0;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 600;
}
.roi-risk { color: var(--red-soft); }
.roi-stat-hero { border-color: rgba(13, 148, 136, 0.35); background: rgba(13, 148, 136, 0.05); }
.roi-fine { font-size: 12.5px; color: var(--text-faint); margin-bottom: 26px; }

/* ---------- pricing ---------- */
.pricing-promo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: -30px 0 44px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(180, 83, 9, 0.3);
  background: rgba(217, 119, 6, 0.08);
  color: var(--amber);
  font-size: 13.5px;
  font-weight: 600;
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.price-card {
  display: flex;
  flex-direction: column;
  padding: 36px 32px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--panel);
  transition: transform 0.35s var(--ease-out), border-color 0.35s, box-shadow 0.35s;
}
.price-card:hover { transform: translateY(-6px); border-color: var(--line-2); }
.price-featured {
  border-color: rgba(37, 99, 235, 0.45);
  background: linear-gradient(170deg, rgba(37, 99, 235, 0.06), #ffffff 55%);
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.14);
}
.price-featured:hover {
  border-color: rgba(37, 99, 235, 0.65);
  box-shadow: 0 28px 64px rgba(37, 99, 235, 0.2);
}
.price-flag {
  position: absolute;
  top: -14px;
  right: 26px;
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(92deg, #2563eb, #0ea5e9);
  color: #fff;
  font: 700 11.5px/1 var(--font-body);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 4px 18px rgba(59, 130, 246, 0.4);
}
.price-featured { position: relative; }
.price-card h3 { font-size: 21px; }
.price-for { font-size: 13.5px; color: var(--text-faint); margin: 5px 0 22px; }
.price-num { font-size: 44px; font-weight: 600; margin-bottom: 26px; letter-spacing: -0.03em; }
.price-per { font-size: 15px; color: var(--text-faint); font-weight: 400; margin-left: 3px; }
.price-feats {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
  display: grid;
  gap: 11px;
  flex: 1;
}
.price-feats li {
  position: relative;
  padding-left: 26px;
  font-size: 14.5px;
  color: var(--text-dim);
}
.price-feats li::before {
  content: "";
  position: absolute;
  left: 0; top: 3px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: rgba(13, 148, 136, 0.12) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%230d9488" stroke-width="3.4" stroke-linecap="round" stroke-linejoin="round"><path d="M20 6 9 17l-5-5"/></svg>') center/9px no-repeat;
}
.price-fine {
  text-align: center;
  margin-top: 34px;
  font-size: 13.5px;
  color: var(--text-faint);
}

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 12px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--panel);
  overflow: hidden;
  transition: border-color 0.3s, background-color 0.3s;
}
.faq-item:hover { border-color: var(--line-2); }
.faq-item[open] { border-color: rgba(37, 99, 235, 0.35); background: #ffffff; }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 19px 24px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  touch-action: manipulation;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-chev {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  position: relative;
  transition: transform 0.35s var(--ease-out), background-color 0.3s, border-color 0.3s;
}
.faq-chev::before, .faq-chev::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 9px; height: 1.5px;
  background: var(--text-dim);
  transform: translate(-50%, -50%);
  transition: transform 0.35s var(--ease-out);
}
.faq-chev::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item[open] .faq-chev { transform: rotate(45deg); background: rgba(37, 99, 235, 0.1); border-color: rgba(37, 99, 235, 0.4); }
.faq-body { padding: 0 24px 22px; }
.faq-body p { color: var(--text-dim); font-size: 15px; animation: panel-in 0.4s var(--ease-out); }

/* ---------- waitlist CTA ---------- */
.cta-section { padding-bottom: 96px; }
.cta-card {
  position: relative;
  padding: 60px 56px;
  border-radius: 26px;
  border: 1px solid rgba(37, 99, 235, 0.25);
  background:
    radial-gradient(ellipse 90% 100% at 50% 0%, rgba(37, 99, 235, 0.08) 0%, transparent 60%),
    linear-gradient(160deg, #ffffff, #f2f7fd);
  box-shadow: var(--shadow-card);
  text-align: center;
}
.cta-card .section-title, .cta-card .section-sub { margin-inline: auto; }
.cta-card .section-sub { margin-bottom: 40px; }
.cta-signup-link {
  color: var(--blue);
  font-weight: 700;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
.cta-signup-link:hover { color: #1d4ed8; }
.wl-form { text-align: left; max-width: 640px; margin: 0 auto; }
.wl-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.wl-field label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 7px;
}
.wl-opt { color: var(--text-faint); font-weight: 400; }
.wl-field input {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-2);
  background: #ffffff;
  color: var(--text);
  font: 400 15px/1.4 var(--font-body);
  transition: border-color 0.25s, box-shadow 0.25s, background-color 0.25s;
}
.wl-field input::placeholder { color: var(--text-faint); }
.wl-field input:hover { border-color: rgba(16, 42, 84, 0.28); }
.wl-field input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
  background: #ffffff;
}
.wl-field input[aria-invalid="true"] { border-color: var(--red); }
.wl-err {
  min-height: 18px;
  margin-top: 5px;
  font-size: 12.5px;
  color: var(--red-soft);
}
.wl-form .btn { margin-top: 8px; margin-bottom: 16px; }
.wl-form .hero-micro { text-align: center; }

.wl-success { padding: 30px 0 10px; animation: panel-in 0.5s var(--ease-out); }
.wl-check { display: inline-block; width: 76px; margin-bottom: 20px; }
.wl-check svg { width: 100%; }
.wl-check-circle {
  stroke: var(--green);
  stroke-width: 2.5;
  stroke-dasharray: 151;
  stroke-dashoffset: 151;
  animation: draw-circle 0.55s var(--ease-out) 0.05s forwards;
}
.wl-check-mark {
  stroke: var(--green);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 36;
  stroke-dashoffset: 36;
  animation: draw-check 0.4s var(--ease-out) 0.45s forwards;
}
@keyframes draw-circle { to { stroke-dashoffset: 0; } }
@keyframes draw-check { to { stroke-dashoffset: 0; } }
.wl-success h3 { font-size: 26px; margin-bottom: 10px; }
.wl-success p { color: var(--text-dim); }

/* ---------- footer ---------- */
.footer {
  border-top: 1px solid var(--line);
  padding: 64px 0 34px;
  background: rgba(16, 42, 84, 0.025);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand p {
  font-size: 14px;
  color: var(--text-dim);
  max-width: 34ch;
  margin-top: 16px;
}
.footer-compliance { font-size: 11.5px !important; color: var(--text-faint) !important; }
.footer-col h3 {
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 16px;
}
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 14.5px;
  color: var(--text-dim);
  text-decoration: none;
  width: fit-content;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 26px;
  font-size: 13px;
  color: var(--text-faint);
}

/* ---------- hero intro (pure CSS — plays immediately on load,
   no JS or scroll observer involved) ---------- */
.intro { animation: intro-up 0.55s var(--ease-out) both; }
.i2 { animation-delay: 0.07s; }
.i3 { animation-delay: 0.14s; }
.i4 { animation-delay: 0.21s; }
.i5 { animation-delay: 0.28s; }
@keyframes intro-up {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- reveal animations ---------- */
/* Hidden state only applies when JS is running (html.js) — content is
   always visible with JS disabled, and never depends on the observer. */
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
  transition-delay: var(--rd, 0ms);
}
.js .reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-copy { text-align: center; }
  .hero-sub { margin-inline: auto; }
  .hero-btns { justify-content: center; }
  .hero-visual { max-width: 560px; margin: 0 auto; width: 100%; }
  .bento { grid-template-columns: 1fr 1fr; }
  .bento-wide { grid-column: span 2; }
  .tier-cols { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .prob-grid, .steps, .price-grid { grid-template-columns: 1fr; }
  .roi-out { grid-template-columns: 1fr; }
  .quote-card { padding: 32px 26px; }
  .cta-card { padding: 44px 26px; }
  .wl-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 54px 0; }
  .hero { padding-top: 130px; }
}

@media (max-width: 520px) {
  .bento { grid-template-columns: 1fr; }
  .bento-wide { grid-column: span 1; }
  .stat-strip { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .roi-card { padding: 30px 22px; }
  .outcome-tab { padding: 10px 16px; font-size: 13.5px; }
}
