:root {
  --ov-ink: #1a1c1e;
  --ov-muted: #5f6b7d;
  --ov-soft: #eef3fc;
  --ov-soft-2: #f6f9ff;
  --ov-card: #ffffff;
  --ov-line: #dce4f1;
  --ov-teal: #0b57d0;
  --ov-teal-2: #1a73e8;
  --ov-navy: #0c2348;
  --ov-amber: #e37400;
  --ov-rose: #d93025;
  --ov-green: #1e8e3e;
  --ov-blue: #0b57d0;
  --ov-blue-2: #1a73e8;
  --ov-blue-3: #4285f4;
  --ov-aqua: #4285f4;
  --ov-shadow: 0 2px 6px rgba(11, 40, 102, .12), 0 10px 34px rgba(11, 40, 102, .14);
  --ov-radius: 8px;
}

body.octovault-page {
  color: var(--ov-ink);
  background: #fff;
  font-family: "Google Sans", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, Arial, sans-serif;
}

.octovault-page a {
  color: inherit;
}

.octovault-page a:focus-visible,
.octovault-page button:focus-visible,
.octovault-page input:focus-visible,
.octovault-page select:focus-visible,
.octovault-page textarea:focus-visible,
.octovault-page summary:focus-visible {
  outline: 3px solid rgba(26, 115, 232, .58);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px rgba(26, 115, 232, .14);
}

.ov-wrap {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.ov-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid var(--ov-line);
  backdrop-filter: blur(12px);
}

.ov-nav {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.ov-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 170px;
}

.ov-logo {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--ov-blue), var(--ov-blue-2));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  box-shadow: 0 10px 20px rgba(26, 115, 232, .24);
}

.ov-brand-name {
  font-weight: 700;
  font-size: 17px;
  line-height: 1.05;
}

.ov-brand-kicker {
  display: block;
  color: var(--ov-muted);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 2px;
}

.ov-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.ov-links a {
  color: var(--ov-ink);
  font-size: 14px;
  font-weight: 600;
  padding: 9px 12px;
  border-radius: 999px;
}

.ov-links a:hover,
.ov-links a.is-active {
  color: var(--ov-teal);
  background: var(--ov-soft);
}

.ov-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ov-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 12px 18px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}

.ov-btn-primary {
  background: linear-gradient(120deg, var(--ov-blue), var(--ov-blue-2));
  color: #fff;
  box-shadow: 0 12px 24px rgba(26, 115, 232, .2);
}

.ov-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(26, 115, 232, .28);
}

.ov-btn-secondary {
  background: #fff;
  color: var(--ov-teal);
  border-color: var(--ov-line);
}

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

.ov-btn-ask {
  background: #fff;
  color: var(--ov-blue);
  border-color: rgba(26, 115, 232, .34);
  box-shadow: 0 10px 22px rgba(26, 115, 232, .1);
}

.ov-btn-ask:hover {
  background: #edf5ff;
  transform: translateY(-1px);
}

.ov-btn-download {
  background: #fff7ed;
  color: #9a4b03;
  border-color: rgba(217, 119, 6, .34);
}

.ov-btn-download:hover {
  background: #ffedd5;
}

.ov-btn-call {
  background: #ecfdf3;
  color: #096936;
  border-color: rgba(19, 138, 69, .32);
}

.ov-btn-call:hover {
  background: #dcfce7;
}

.ov-text-link {
  color: var(--ov-teal);
  font-weight: 700;
  font-size: 14px;
}

.ov-hero {
  min-height: min(760px, 82vh);
  display: flex;
  align-items: center;
  padding: 0;
  background-image:
    linear-gradient(90deg, rgba(247,251,255,.99) 0%, rgba(247,251,255,.95) 40%, rgba(247,251,255,.62) 63%, rgba(247,251,255,.14) 100%),
    radial-gradient(circle at 1px 1px, rgba(26, 115, 232, .13) 1px, transparent 0),
    var(--hero-image);
  background-size: auto, 26px 26px, min(960px, 58vw) auto;
  background-repeat: no-repeat, repeat, no-repeat;
  background-position: center, left top, right center;
  border-bottom: 1px solid var(--ov-line);
}

.ov-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 32px;
  align-items: center;
  padding: 84px 0 96px;
}

.ov-hero-copy {
  max-width: 710px;
}

.ov-kicker {
  color: var(--ov-teal);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 800;
  margin-bottom: 14px;
}

.ov-hero h1,
.ov-page-hero h1 {
  max-width: 650px;
  color: var(--ov-ink);
  font-size: clamp(38px, 6vw, 70px);
  line-height: .98;
  letter-spacing: 0;
  margin: 0;
}

.ov-hero p,
.ov-page-hero p {
  max-width: 680px;
}

.ov-lead {
  color: var(--ov-muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
  margin-top: 20px;
}

.ov-hero-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.ov-hero-cta-rich {
  gap: 10px;
}

.ov-hero-tray {
  justify-self: end;
  width: min(100%, 372px);
  color: var(--ov-ink);
  background: rgba(255, 255, 255, .86);
  border: 1px solid rgba(26, 115, 232, .18);
  border-radius: var(--ov-radius);
  box-shadow: 0 24px 60px rgba(22, 52, 95, .16);
  backdrop-filter: blur(12px);
  padding: 16px;
}

.ov-tray-top,
.ov-tray-record,
.ov-tray-answer {
  border: 1px solid var(--ov-line);
  border-radius: var(--ov-radius);
  background: #fff;
}

.ov-tray-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  color: var(--ov-muted);
  font-size: 13px;
}

.ov-tray-top b {
  color: var(--ov-green);
}

.ov-tray-record {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  padding: 14px;
}

.ov-tray-record strong,
.ov-tray-record small {
  display: block;
}

.ov-tray-record small {
  color: var(--ov-muted);
  margin-top: 4px;
}

.ov-tray-answer {
  margin-top: 12px;
  padding: 14px;
  background: linear-gradient(180deg, #f8fbff, #eef6ff);
}

.ov-tray-answer span {
  display: block;
  color: var(--ov-blue);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 7px;
}

.ov-tray-answer p {
  margin: 0;
  color: var(--ov-ink);
  font-size: 14px;
  line-height: 1.5;
}

.ov-proofline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.ov-chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(26, 115, 232, .22);
  background: rgba(255, 255, 255, .78);
  color: var(--ov-navy);
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 13px;
  font-weight: 700;
}

.ov-section {
  padding: 82px 0;
}

.ov-section-tight {
  padding: 58px 0;
}

.ov-section-soft {
  background: linear-gradient(180deg, #f7fbff 0%, var(--ov-soft) 100%);
}

.ov-section-ink {
  background: var(--ov-navy);
  color: #fff;
}

.ov-section-blueprint {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .94) 0%, rgba(247, 251, 255, .94) 100%),
    radial-gradient(circle at 1px 1px, rgba(26, 115, 232, .12) 1px, transparent 0);
  background-size: auto, 22px 22px;
}

.ov-ai-magic {
  background: #fff;
}

.ov-magic-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.ov-section-ink .ov-muted,
.ov-section-ink .ov-section-head p {
  color: #d4e2ef;
}

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

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

.ov-section-head h2 {
  color: inherit;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: 0;
  margin: 0;
}

.ov-section-head p {
  margin-top: 12px;
  color: var(--ov-muted);
  font-size: 17px;
}

.ov-grid {
  display: grid;
  gap: 18px;
}

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

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

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

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

.ov-card,
.ov-panel,
.ov-price-card,
.ov-form-shell {
  background: var(--ov-card);
  border: 1px solid var(--ov-line);
  border-radius: var(--ov-radius);
  box-shadow: 0 1px 2px rgba(24, 48, 75, .06);
}

.ov-card {
  padding: 22px;
}

.ov-card h3,
.ov-panel h3,
.ov-price-card h3 {
  letter-spacing: 0;
  margin: 0 0 8px;
  font-size: 19px;
}

.ov-card p,
.ov-panel p,
.ov-price-card p {
  color: var(--ov-muted);
  font-size: 15px;
  line-height: 1.56;
}

.ov-card:hover {
  border-color: rgba(26, 115, 232, .34);
  box-shadow: var(--ov-shadow);
}

.ov-mini-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: #fff;
  font-weight: 800;
  background: var(--ov-teal);
}

.ov-mini-icon.amber { background: var(--ov-amber); }
.ov-mini-icon.rose { background: var(--ov-rose); }
.ov-mini-icon.green { background: var(--ov-green); }
.ov-mini-icon.blue { background: var(--ov-blue); }

.ov-step {
  position: relative;
  min-height: 172px;
}

.ov-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ov-navy);
  color: #fff;
  font-weight: 800;
  margin-bottom: 16px;
}

.ov-proof-layout {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 22px;
  align-items: start;
}

.ov-profile {
  padding: 24px;
}

.ov-profile-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--ov-line);
  padding-bottom: 18px;
  margin-bottom: 18px;
}

.ov-profile-title {
  font-size: 20px;
  font-weight: 800;
}

.ov-source-pill {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--ov-soft);
  color: var(--ov-navy);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

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

.ov-profile-block {
  padding: 16px;
  background: var(--ov-soft);
  border: 1px solid var(--ov-line);
  border-radius: var(--ov-radius);
}

.ov-profile-block b {
  display: block;
  margin-bottom: 6px;
}

.ov-ask {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ov-question {
  color: var(--ov-navy);
  background: #eff5fb;
  border-left: 4px solid var(--ov-blue);
  padding: 14px 16px;
  border-radius: var(--ov-radius);
  font-weight: 800;
}

.ov-answer {
  font-size: 16px;
  line-height: 1.6;
}

.ov-source-list,
.ov-clean-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 9px;
}

.ov-source-list li,
.ov-clean-list li {
  display: flex;
  gap: 9px;
  color: var(--ov-muted);
  font-size: 14px;
}

.ov-source-list li:before,
.ov-clean-list li:before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ov-teal);
  flex: 0 0 auto;
  margin-top: 7px;
}

.ov-flow-layout {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(360px, 1.15fr);
  gap: 28px;
  align-items: center;
}

.ov-app-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 14px;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(26, 115, 232, .18);
  border-radius: var(--ov-radius);
  box-shadow: var(--ov-shadow);
}

.ov-app-strip article {
  min-height: 190px;
  padding: 18px;
  border: 1px solid var(--ov-line);
  border-radius: var(--ov-radius);
  background: #fff;
}

.ov-app-strip article:nth-child(2) {
  background: #f3f9ff;
}

.ov-app-strip article:nth-child(3) {
  background: #f0fdf4;
}

.ov-flow-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 28px;
  border-radius: 999px;
  color: var(--ov-blue);
  background: #e8f0fe;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 18px;
}

.ov-app-strip h3 {
  margin: 0 0 8px;
  font-size: 19px;
}

.ov-app-strip p {
  color: var(--ov-muted);
  font-size: 14px;
  line-height: 1.55;
}

.ov-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.ov-before,
.ov-after {
  padding: 22px;
}

.ov-before h3,
.ov-after h3 {
  margin-bottom: 14px;
}

.ov-before .ov-clean-list li:before {
  background: var(--ov-rose);
}

.ov-after .ov-clean-list li:before {
  background: var(--ov-green);
}

.ov-segment-card {
  display: flex;
  flex-direction: column;
  min-height: 250px;
}

.ov-card-meta {
  color: var(--ov-muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 8px;
}

.ov-card-link {
  margin-top: auto;
  color: var(--ov-teal);
  font-weight: 800;
  padding-top: 14px;
}

.ov-conversion {
  color: #fff;
  background:
    linear-gradient(135deg, #1a73e8 0%, #0b57d0 52%, #0b7773 100%);
}

.ov-conversion .ov-kicker,
.ov-conversion p {
  color: rgba(255, 255, 255, .82);
}

.ov-conversion h2 {
  color: #fff;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
  letter-spacing: 0;
  margin: 0;
}

.ov-conversion-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 28px;
  align-items: center;
}

.ov-conversion-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.ov-conversion .ov-btn-primary {
  background: #fff;
  color: var(--ov-blue);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .16);
}

.ov-conversion .ov-btn-ask {
  background: rgba(255, 255, 255, .14);
  color: #fff;
  border-color: rgba(255, 255, 255, .38);
}

.ov-price-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.ov-price-card {
  padding: 22px;
  display: flex;
  flex-direction: column;
  min-height: 410px;
}

.ov-price-card.is-featured {
  border-color: var(--ov-teal);
  box-shadow: var(--ov-shadow);
}

.ov-plan-badge {
  display: inline-flex;
  align-self: flex-start;
  color: #fff;
  background: var(--ov-teal);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 12px;
}

.ov-price {
  font-size: 34px;
  font-weight: 800;
  margin: 8px 0 4px;
}

.ov-price small {
  font-size: 14px;
  color: var(--ov-muted);
}

.ov-price-card .ov-btn {
  margin-top: auto;
}

.ov-note {
  color: var(--ov-muted);
  font-size: 14px;
  line-height: 1.55;
}

.ov-page-hero {
  padding: 86px 0 56px;
  background:
    linear-gradient(180deg, rgba(247, 251, 255, .97) 0%, rgba(232, 240, 254, .96) 100%),
    radial-gradient(circle at 1px 1px, rgba(26, 115, 232, .12) 1px, transparent 0);
  background-size: auto, 24px 24px;
  border-bottom: 1px solid var(--ov-line);
}

.ov-page-hero .ov-hero-cta {
  margin-top: 24px;
}

.ov-form-shell {
  padding: 24px;
}

.ov-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.ov-form-shell label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--ov-muted);
  margin-bottom: 6px;
}

.ov-form-shell input,
.ov-form-shell select,
.ov-form-shell textarea {
  width: 100%;
  border: 1px solid var(--ov-line);
  border-radius: 8px;
  padding: 12px;
  font: inherit;
  color: var(--ov-ink);
  background: var(--ov-soft);
}

.ov-form-shell textarea {
  min-height: 110px;
  resize: vertical;
}

.ov-field-full {
  grid-column: 1 / -1;
}

.ov-honeypot {
  position: absolute;
  left: -5000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.ov-form-status {
  margin-top: 12px;
  color: var(--ov-green);
  font-weight: 700;
}

.ov-faq {
  display: grid;
  gap: 12px;
}

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

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

.ov-faq p {
  color: var(--ov-muted);
  margin-top: 10px;
}

.ov-footer {
  background: #0f1f32;
  color: #cbd8e4;
  padding: 42px 0;
}

.ov-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 24px;
}

.ov-footer h3,
.ov-footer h4 {
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: 0;
}

.ov-footer p,
.ov-footer a {
  color: #cbd8e4;
  font-size: 14px;
}

.ov-footer a {
  display: block;
  margin: 7px 0;
}

.ov-footer a:hover {
  color: #fff;
}

.ov-bubble-dock {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9990;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ov-ask-fab,
.ov-call-fab {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 999px;
  padding: 12px 18px 12px 12px;
  font: 600 14.5px/1 inherit;
  font-family: inherit;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(23, 78, 166, .35);
}

.ov-ask-fab {
  color: #fff;
  background: linear-gradient(120deg, var(--ov-blue), var(--ov-blue-3));
}

.ov-call-fab {
  color: var(--ov-blue);
  background: #fff;
  border: 1px solid var(--ov-line);
}

.ov-ask-fab:hover,
.ov-call-fab:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.ov-bubble-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: #fff;
  background: rgba(255, 255, 255, .18);
  border-radius: 8px;
  font-weight: 800;
}

.ov-call-fab .ov-bubble-icon {
  color: var(--ov-blue);
  background: var(--ov-soft);
}

.ov-ask-panel {
  position: fixed;
  right: 18px;
  bottom: 84px;
  z-index: 9991;
  box-sizing: border-box;
  width: min(390px, calc(100vw - 24px));
  max-height: min(620px, calc(100vh - 112px));
  display: none;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--ov-line);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(15, 30, 60, .25);
  overflow: hidden;
}

.ov-ask-panel.open {
  display: flex;
}

.ov-ask-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 14px;
  color: #fff;
  background: linear-gradient(120deg, var(--ov-blue), var(--ov-blue-3));
}

.ov-ask-head .ov-bubble-icon {
  background: rgba(255, 255, 255, .18);
}

.ov-ask-title b,
.ov-ask-title small {
  display: block;
}

.ov-ask-title b {
  font-size: 15px;
}

.ov-ask-title small {
  font-size: 11.5px;
  opacity: .86;
}

.ov-ask-close {
  margin-left: auto;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, .16);
  cursor: pointer;
  font: 700 14px/1 inherit;
}

.ov-ask-msgs {
  flex: 1;
  overflow-y: auto;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--ov-soft-2);
}

.ov-ask-m {
  max-width: 88%;
  padding: 10px 13px;
  border-radius: 14px;
  font-size: 13.5px;
  line-height: 1.55;
  white-space: pre-wrap;
  word-wrap: break-word;
}

.ov-ask-m.u {
  align-self: flex-end;
  color: #fff;
  background: var(--ov-blue);
  border-bottom-right-radius: 4px;
}

.ov-ask-m.a {
  align-self: flex-start;
  color: var(--ov-ink);
  background: #fff;
  border: 1px solid var(--ov-line);
  border-bottom-left-radius: 4px;
}

.ov-ask-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 0 14px 10px;
  background: var(--ov-soft-2);
}

.ov-ask-chips button {
  border: 1px solid #c9dafb;
  background: #e7eefb;
  color: var(--ov-blue);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12.5px;
  cursor: pointer;
  font-family: inherit;
}

.ov-ask-foot {
  border-top: 1px solid var(--ov-line);
  background: #fff;
  padding: 10px 12px;
}

.ov-ask-row {
  display: flex;
  gap: 8px;
}

.ov-ask-row input {
  flex: 1;
  min-width: 0;
  border: 1px solid var(--ov-line);
  border-radius: 11px;
  padding: 10px 12px;
  font-size: 13.5px;
  font-family: inherit;
}

.ov-ask-row button {
  border: 0;
  background: var(--ov-blue);
  color: #fff;
  border-radius: 11px;
  padding: 0 16px;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}

.ov-ask-note {
  font-size: 10.5px;
  color: var(--ov-muted);
  margin-top: 7px;
  line-height: 1.4;
}

.ov-sticky-cta { display: none; }

@media (max-width: 1180px) {
  .ov-call-link {
    display: none;
  }

  .ov-actions .ov-btn-ask {
    display: none;
  }
}

@media (max-width: 1020px) {
  .ov-links {
    display: none;
  }

  .ov-grid-4,
  .ov-grid-5,
  .ov-price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ov-proof-layout,
  .ov-grid-2,
  .ov-flow-layout,
  .ov-conversion-inner {
    grid-template-columns: 1fr;
  }

  .ov-app-strip {
    grid-template-columns: 1fr;
  }

  .ov-app-strip article {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .ov-wrap {
    width: min(100% - 32px, 1160px);
  }

  .ov-header .ov-text-link {
    display: none;
  }

  .ov-actions .ov-btn-ask {
    display: none;
  }

  .ov-header .ov-btn {
    padding-left: 14px;
    padding-right: 14px;
  }

  .ov-hero {
    min-height: auto;
    align-items: flex-start;
    padding-bottom: 98px;
    background-image:
      linear-gradient(180deg, rgba(246,249,255,.98) 0%, rgba(246,249,255,.96) 50%, rgba(246,249,255,.46) 100%),
      radial-gradient(circle at 1px 1px, rgba(26, 115, 232, .12) 1px, transparent 0),
      var(--hero-image);
    background-size: auto, 24px 24px, 430px auto;
    background-position: center, left top, center calc(100% - 68px);
  }

  .ov-hero-inner {
    display: block;
    padding: 34px 0 18px;
  }

  .ov-hero-tray {
    display: none;
  }

  .ov-hero h1,
  .ov-page-hero h1 {
    font-size: clamp(33px, 11vw, 44px);
  }

  .ov-lead {
    font-size: 16px;
    line-height: 1.48;
  }

  .ov-hero .ov-btn-call,
  .ov-hero .ov-proofline {
    display: none;
  }

  .ov-grid-3,
  .ov-grid-4,
  .ov-grid-5,
  .ov-price-grid,
  .ov-profile-grid,
  .ov-comparison,
  .ov-form-grid,
  .ov-footer-grid {
    grid-template-columns: 1fr;
  }

  .ov-price-card {
    min-height: auto;
  }

  .ov-sticky-cta {
    display: flex;
    gap: 8px;
    position: fixed;
    z-index: 90;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, .96);
    border-top: 1px solid var(--ov-line);
    backdrop-filter: blur(12px);
  }

  .ov-sticky-cta .ov-btn {
    flex: 1 1 0;
    min-width: 0;
    padding-left: 10px;
    padding-right: 10px;
  }

  .ov-bubble-dock {
    right: 12px;
    bottom: calc(76px + env(safe-area-inset-bottom));
    flex-direction: column;
    align-items: flex-end;
  }

  .ov-call-fab {
    display: none;
  }

  .ov-ask-panel {
    left: 12px;
    right: 12px;
    bottom: calc(138px + env(safe-area-inset-bottom));
    width: auto;
    max-height: calc(100vh - 170px);
  }

  .ov-conversion-actions {
    grid-template-columns: 1fr;
  }

  body[data-page-type="pricing"] .ov-sticky-cta,
  body[data-page-type="signup"] .ov-sticky-cta {
    display: none;
  }

  .ov-footer {
    padding-bottom: 96px;
  }

  body[data-page-type="pricing"] .ov-footer,
  body[data-page-type="signup"] .ov-footer {
    padding-bottom: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ov-btn,
  .ov-card {
    transition: none;
  }

  .ov-btn:hover,
  .ov-card:hover {
    transform: none;
  }
}
