
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@500;600;700;800;900&display=swap");

:root {
  --ink: #10213b;
  --muted: #667891;
  --soft: #f6fafc;
  --soft-2: #eef8f5;
  --line: #dde8ef;
  --green: #08a66d;
  --green-2: #13c78f;
  --green-dark: #06784f;
  --blue: #0f68d8;
  --white: #ffffff;
  --shadow: 0 20px 56px rgba(23, 42, 78, .1);
  --shadow-soft: 0 12px 32px rgba(31, 75, 118, .08);
  --radius: 20px;
  --font: Manrope, "Avenir Next", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.av9-modern {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  font-family: var(--font);
  background: #fff;
  line-height: 1.48;
  letter-spacing: 0;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
button, input { font: inherit; }

.av9-topbar {
  background: #071b1c;
  color: rgba(255,255,255,.86);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .01em;
}
.av9-topbar-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 6px 28px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
}
.av9-topbar a { color: #d4fff0; text-decoration: none; }

.av9-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.av9-header-inner {
  max-width: 1400px;
  margin: 0 auto;
  min-height: 64px;
  padding: 9px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.av9-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 210px;
  text-decoration: none;
}
.av9-brand img { width: 38px; height: 38px; }
.av9-brand b { display: block; font-size: 16px; line-height: 1; letter-spacing: 0; }
.av9-brand small { display: block; color: var(--green); font-weight: 850; margin-top: 3px; }
.av9-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.av9-nav a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 850;
  color: #263b56;
  padding: 8px 11px;
  border-radius: 999px;
  white-space: nowrap;
}
.av9-nav a.is-active, .av9-nav a:hover { color: var(--green-dark); background: #eaf9f3; }
.av9-actions { display: flex; align-items: center; gap: 9px; }
.av9-signin { text-decoration: none; font-weight: 850; color: #243854; font-size: 13px; }
.av9-btn, .av9-actions a:last-child, .av9-footer-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 40px;
  padding: 11px 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}
.av9-btn:hover, .av9-actions a:last-child:hover, .av9-footer-cta a:hover { transform: translateY(-2px); }
.av9-btn-primary, .av9-actions a:last-child, .av9-footer-cta a {
  color: #fff;
  background: linear-gradient(135deg, #0bb976, #08a66d);
  box-shadow: 0 16px 34px rgba(8,166,109,.22);
}
.av9-btn-secondary { color: var(--green-dark); background: #fff; border-color: #bfe8d7; }
.av9-btn-dark { color: #fff; background: #10213b; box-shadow: 0 16px 34px rgba(16,33,59,.18); }
.av9-menu { display: none; border: 0; background: #eaf9f3; border-radius: 10px; width: 44px; height: 44px; color: var(--green-dark); font-weight: 900; }

.av9-main { overflow: hidden; }
.av9-section { padding: 58px 28px; }
.av9-section.tight { padding: 38px 28px; }
.av9-wrap { max-width: 1280px; margin: 0 auto; }
.av9-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.av9-kicker:before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green-2);
  box-shadow: 0 0 0 7px rgba(19,199,143,.12);
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { letter-spacing: 0; line-height: 1.04; }
h1 { font-size: clamp(38px, 5.35vw, 68px); margin: 14px 0 18px; color: #10213b; font-weight: 900; }
h1 strong { color: var(--green); display: block; }
h2 { font-size: clamp(28px, 3vw, 42px); margin: 9px 0 13px; font-weight: 900; }
h3 { font-size: 18px; margin-bottom: 8px; font-weight: 900; }
p { color: var(--muted); font-weight: 650; }

.av9-hero {
  position: relative;
  background: linear-gradient(115deg, #ffffff 0%, #fbfefe 48%, #eaf8f3 100%);
  border-bottom: 1px solid var(--line);
}
.av9-hero .av9-wrap {
  min-height: 540px;
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(450px, 1.06fr);
  align-items: center;
  gap: 42px;
}
.av9-hero p { max-width: 600px; font-size: 17px; }
.av9-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 24px 0 20px; }
.av9-platforms { display: flex; flex-wrap: wrap; gap: 20px; color: #7a8aa2; font-weight: 850; }
.av9-platforms span { display: inline-flex; align-items: center; gap: 8px; }
.av9-platforms span:before { content: ""; width: 14px; height: 14px; border-radius: 4px; background: linear-gradient(135deg, #b7c6d8, #e1e8f0); }
.av9-hero-visual {
  position: relative;
  min-height: 360px;
  border-radius: 24px;
  background: radial-gradient(circle at 30% 25%, #f0fff9, transparent 38%), #fff;
  box-shadow: var(--shadow);
  border: 1px solid rgba(180,214,222,.72);
  overflow: hidden;
}
.av9-hero-visual img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; object-position: center; }
.av9-floating-card {
  position: absolute;
  right: 26px;
  top: 32px;
  width: min(220px, 42%);
  padding: 16px;
  border-radius: 15px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(221,232,239,.9);
  box-shadow: 0 18px 42px rgba(16,33,59,.12);
}
.av9-floating-card b { display: block; font-size: 24px; color: #101827; }
.av9-floating-card span { color: var(--muted); font-weight: 800; }
.av9-mini-chart { height: 44px; margin-top: 16px; background: linear-gradient(155deg, transparent 48%, rgba(8,166,109,.16) 49% 78%, transparent 79%), linear-gradient(90deg, #d8f4ea, #fff); border-radius: 12px; position: relative; overflow: hidden; }
.av9-mini-chart:after { content: ""; position: absolute; inset: 24px 8px auto; height: 4px; background: linear-gradient(90deg, #13c78f, #08a66d); transform-origin: left; animation: av9-grow 2.8s ease-in-out infinite; border-radius: 999px; }
@keyframes av9-grow { 0%,100% { transform: scaleX(.4); } 55% { transform: scaleX(1); } }
.av9-scan-glow {
  position: absolute;
  left: 34px;
  bottom: 34px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 12px 15px;
  color: var(--green-dark);
  background: rgba(255,255,255,.9);
  border: 1px solid #cdeee2;
  border-radius: 999px;
  font-weight: 950;
  box-shadow: 0 20px 50px rgba(8,166,109,.18);
}
.av9-scan-glow:before { content: ""; width: 12px; height: 12px; background: var(--green-2); border-radius: 50%; animation: av9-pulse 1.8s ease-in-out infinite; }
@keyframes av9-pulse { 0%,100% { transform: scale(.9); opacity: .65; } 50% { transform: scale(1.2); opacity: 1; } }

.av9-logo-strip { background: #fff; border-bottom: 1px solid var(--line); }
.av9-logo-strip .av9-wrap { display: grid; grid-template-columns: 1fr; gap: 18px; text-align: center; padding: 26px 28px; }
.av9-logo-strip p { margin: 0; color: #263b56; font-weight: 900; }
.av9-logo-list { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; align-items: center; color: #8794a8; font-size: 18px; font-weight: 950; }

.av9-metrics { background: #fff; }
.av9-metric-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.av9-metric {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f5fffb, #fff);
  border: 1px solid #dceee7;
}
.av9-icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  border-radius: 16px;
  color: var(--green-dark);
  background: #e6f9f1;
}
.av9-icon svg { width: 25px; height: 25px; stroke: currentColor; fill: none; stroke-width: 2.3; stroke-linecap: round; stroke-linejoin: round; }
.av9-metric b { display: block; font-size: 22px; line-height: 1; color: #101827; }
.av9-metric span { color: var(--muted); font-weight: 760; font-size: 13px; }

.av9-grid-two { display: grid; grid-template-columns: .72fr 1.28fr; gap: 34px; align-items: start; }
.av9-copy-card { padding: 4px 0; }
.av9-check-list { list-style: none; padding: 0; margin: 20px 0; display: grid; gap: 10px; }
.av9-check-list li { position: relative; padding-left: 28px; color: #334a64; font-weight: 780; }
.av9-check-list li:before { content: ""; position: absolute; left: 0; top: .48em; width: 14px; height: 14px; border-radius: 50%; background: var(--green-2); box-shadow: inset 0 0 0 4px #dff8ee; }
.av9-feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.av9-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow-soft);
}
.av9-card p { margin-bottom: 0; }
.av9-card .av9-icon { margin-bottom: 13px; }
.av9-card h3 { color: #152842; }

.av9-steps { background: linear-gradient(180deg, #fbfeff, #f7fbfd); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.av9-step-grid { display: grid; grid-template-columns: .42fr 1fr; gap: 32px; align-items: center; }
.av9-step-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; position: relative; }
.av9-step-track:before { content: ""; position: absolute; left: 14%; right: 14%; top: 27px; border-top: 2px dashed #b4c6d9; }
.av9-step { text-align: center; position: relative; z-index: 1; }
.av9-step b { display: inline-flex; width: 54px; height: 54px; align-items: center; justify-content: center; border-radius: 50%; color: var(--green-dark); background: #e7f9f1; border: 1px solid #c9eadc; font-size: 19px; }

.av9-pricing { background: #fff; }
.av9-pricing-grid { display: grid; grid-template-columns: .45fr repeat(3, 1fr); gap: 14px; align-items: stretch; }
.av9-plan-grid { grid-template-columns: repeat(3, 1fr); }
.av9-price { position: relative; padding: 22px; border: 1px solid var(--line); border-radius: 16px; background: #fff; box-shadow: var(--shadow-soft); }
.av9-price.featured { border-color: var(--green); box-shadow: 0 20px 42px rgba(8,166,109,.14); }
.av9-badge { display: inline-flex; padding: 6px 10px; border-radius: 999px; color: #fff; background: var(--green); font-size: 11px; font-weight: 950; text-transform: uppercase; }
.av9-price strong { display: block; font-size: 30px; color: #142542; margin: 13px 0 8px; }
.av9-price strong small { color: var(--muted); font-size: 14px; }
.av9-price ul { padding-left: 0; list-style: none; display: grid; gap: 8px; min-height: 108px; }
.av9-price li { color: #41566f; font-weight: 760; position: relative; padding-left: 21px; }
.av9-price li:before { content: ""; position: absolute; left: 0; top: .55em; width: 11px; height: 11px; border-radius: 50%; background: var(--green); }
.av9-price a { width: 100%; margin-top: 8px; }

.av9-page-hero { background: linear-gradient(120deg, #fff, #f3fbf8); border-bottom: 1px solid var(--line); }
.av9-page-hero .av9-wrap { display: grid; grid-template-columns: minmax(0, .92fr) minmax(410px, .8fr); gap: 38px; align-items: center; min-height: 390px; }
.av9-page-hero h1 { font-size: clamp(36px, 4.4vw, 58px); }
.av9-page-visual { position: relative; overflow: hidden; border-radius: 22px; border: 1px solid #dceee7; box-shadow: var(--shadow); background: #fff; }
.av9-page-visual img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: center; }
.av9-page-visual.av9-scan-mode-visual {
  padding: 14px;
  background: linear-gradient(140deg, #ffffff, #f0fbf6);
}
.av9-page-visual.av9-scan-mode-visual img {
  height: clamp(360px, 34vw, 520px);
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 22px 34px rgba(16,33,59,.16));
}
.av9-page-visual-caption { position: absolute; left: 16px; right: 16px; bottom: 16px; padding: 13px 16px; border-radius: 14px; background: rgba(255,255,255,.92); border: 1px solid #dbeae5; box-shadow: 0 14px 34px rgba(16,33,59,.08); }
.av9-page-visual-caption b { display: block; color: var(--green-dark); }

.av9-content-grid { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 26px; align-items: start; }
.av9-article { display: grid; gap: 18px; }
.av9-panel { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 24px; box-shadow: var(--shadow-soft); }
.av9-panel h2 { font-size: clamp(25px, 2.7vw, 34px); }
.av9-panel-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.av9-panel-grid.three { grid-template-columns: repeat(3, 1fr); }
.av9-aside { position: sticky; top: 94px; display: grid; gap: 14px; }
.av9-aside-card { padding: 20px; border-radius: 16px; background: linear-gradient(135deg, #10213b, #084a43); color: #fff; box-shadow: var(--shadow-soft); }
.av9-aside-card p { color: rgba(255,255,255,.78); }
.av9-aside-card a { margin-top: 12px; }
.av9-link-list { display: grid; gap: 8px; }
.av9-link-list a { padding: 10px 12px; border-radius: 11px; border: 1px solid var(--line); background: #fff; text-decoration: none; font-weight: 850; color: #243854; font-size: 14px; }
.av9-link-list a:hover { border-color: #a7e8d2; color: var(--green-dark); }

.av9-product-image { border-radius: 18px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-soft); background: #fff; }
.av9-product-image img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; object-position: center; }
.av9-product-image.av9-contain-image {
  padding: 16px;
  background: linear-gradient(145deg, #ffffff, #f5fbff);
}
.av9-product-image.av9-contain-image img {
  aspect-ratio: auto;
  max-height: 620px;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(16,33,59,.12));
}
.av9-soft-section { background: #f8fcfd; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.av9-download-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.av9-download-card { display: grid; gap: 15px; align-content: start; padding: 26px; border-radius: 18px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-soft); }
.av9-os-icon { width: 54px; height: 54px; border-radius: 16px; color: #fff; display: inline-flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #0f68d8, #13c78f); }
.av9-os-icon svg { width: 30px; height: 30px; fill: currentColor; }
.av9-note { border-radius: 14px; padding: 15px; background: #fff8e7; border: 1px solid #f4dfa8; color: #65502a; font-weight: 760; }

.av9-faq-search { max-width: 820px; margin: 20px auto 0; position: relative; }
.av9-faq-search input { width: 100%; min-height: 52px; border-radius: 14px; border: 1px solid #cfe1eb; padding: 0 18px; color: var(--ink); font-weight: 800; box-shadow: var(--shadow-soft); }
.av9-faq-list { max-width: 900px; margin: 28px auto 0; display: grid; gap: 12px; }
.av9-faq-item { border: 1px solid var(--line); border-radius: 14px; padding: 18px 20px; background: #fff; box-shadow: var(--shadow-soft); }
.av9-faq-item h3 { margin-bottom: 6px; font-size: 18px; }
.av9-empty { display: none; text-align: center; color: var(--muted); font-weight: 800; }

.av9-insights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.av9-insight { overflow: hidden; padding: 0; }
.av9-insight img { width: 100%; aspect-ratio: 16 / 8.2; object-fit: cover; }
.av9-insight-body { padding: 18px; }
.av9-insight small { color: var(--green-dark); text-transform: uppercase; font-weight: 950; letter-spacing: .05em; }

.av9-footer-cta { background: #fff; border-top: 1px solid var(--line); }
.av9-footer-cta .av9-wrap { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 24px 28px; }
.av9-footer { background: #f8fbfd; border-top: 1px solid var(--line); padding: 34px 28px 18px; }
.av9-footer-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1.2fr repeat(5, 1fr); gap: 22px; }
.av9-footer h3 { font-size: 13px; text-transform: uppercase; color: #203650; letter-spacing: .06em; }
.av9-footer a { display: block; text-decoration: none; color: #61738a; font-weight: 760; margin: 6px 0; font-size: 13px; }
.av9-footer a:hover { color: var(--green-dark); }
.av9-footer-brand a { display: flex; align-items: center; gap: 10px; color: var(--ink); font-weight: 950; }
.av9-footer-brand img { width: 40px; height: 40px; }
.av9-footer-bottom { max-width: 1280px; margin: 26px auto 0; padding-top: 18px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 18px; color: #7b8da4; font-weight: 700; font-size: 13px; }
.av9-footer-bottom nav { display: flex; gap: 16px; }

.reveal { opacity: 0; transform: translateY(18px); transition: .55s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1180px) {
  .av9-plan-grid { grid-template-columns: 1fr; }
  .av9-header-inner { flex-wrap: wrap; }
  .av9-nav { order: 3; width: 100%; justify-content: flex-start; overflow-x: auto; padding-bottom: 4px; }
  .av9-hero .av9-wrap, .av9-page-hero .av9-wrap { grid-template-columns: 1fr; padding-top: 36px; padding-bottom: 48px; }
  .av9-hero-visual { min-height: 360px; }
  .av9-hero-visual img { min-height: 360px; }
  .av9-grid-two, .av9-step-grid, .av9-content-grid, .av9-pricing-grid { grid-template-columns: 1fr; }
  .av9-aside { position: static; }
}
@media (max-width: 820px) {
  .av9-topbar { display: none; }
  .av9-header-inner { min-height: 68px; padding: 10px 16px; }
  .av9-brand { min-width: 0; }
  .av9-brand b { font-size: 15px; }
  .av9-actions { margin-left: auto; }
  .av9-signin { display: none; }
  .av9-menu { display: inline-flex; align-items: center; justify-content: center; }
  .av9-nav { display: none; position: absolute; left: 16px; right: 16px; top: 72px; padding: 12px; border-radius: 18px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); flex-direction: column; align-items: stretch; }
  .av9-header.nav-open .av9-nav { display: flex; }
  .av9-nav a { width: 100%; }
  .av9-section { padding: 52px 18px; }
  .av9-hero .av9-wrap { min-height: auto; gap: 34px; }
  h1 { font-size: 42px; }
  .av9-hero p { font-size: 17px; }
  .av9-hero-actions { flex-direction: column; align-items: stretch; }
  .av9-hero-visual, .av9-hero-visual img { min-height: 280px; }
  .av9-page-visual.av9-scan-mode-visual img { height: auto; max-height: 520px; }
  .av9-floating-card { display: none; }
  .av9-scan-glow { left: 18px; bottom: 18px; font-size: 13px; }
  .av9-logo-list { grid-template-columns: repeat(2, 1fr); font-size: 18px; }
  .av9-metric-grid, .av9-feature-grid, .av9-panel-grid, .av9-panel-grid.three, .av9-download-grid, .av9-insights-grid { grid-template-columns: 1fr; }
  .av9-step-track { grid-template-columns: 1fr; }
  .av9-step-track:before { display: none; }
  .av9-page-hero .av9-wrap { grid-template-columns: 1fr; min-height: auto; }
  .av9-footer-cta .av9-wrap { flex-direction: column; align-items: flex-start; }
  .av9-footer-inner { grid-template-columns: 1fr 1fr; }
  .av9-footer-brand { grid-column: 1 / -1; }
  .av9-footer-bottom { flex-direction: column; }
}
@media (max-width: 520px) {
  .av9-actions a:last-child { display: none; }
  .av9-brand img { width: 36px; height: 36px; }
  h1 { font-size: 36px; }
  h2 { font-size: 29px; }
  .av9-panel { padding: 22px; }
  .av9-footer-inner { grid-template-columns: 1fr; }
  .av9-hero-visual img, .av9-page-visual img { aspect-ratio: 1 / .78; }
  .av9-page-visual.av9-scan-mode-visual img,
  .av9-product-image.av9-contain-image img {
    aspect-ratio: auto;
  }
}
