:root {
    --p: var(--brand-primary); --p2: var(--brand-primary-bright); --p-dark: var(--brand-primary-700); --p-light: var(--brand-primary-100); --p-50: var(--brand-primary-50);
    --ink: var(--brand-ink); --ink-2: #3F3B4D;
    --green: #16A34A; --green-bg: #E9F8EF; --amber: #D97706; --amber-bg: #FEF3E2; --red: #DC2626; --red-bg: #FDECEC;
    --text: var(--brand-ink); --text-2: #55515F; --text-3: #928E9E;
    --bg: #FBFBFE; --surface: #ffffff; --border: #ECEBF3; --border-2: #F2F1F8;
    --ink-bg: var(--brand-ink);
    --grad: var(--brand-gradient);
    --grad-text: linear-gradient(100deg, var(--brand-primary-bright) 10%, var(--brand-primary) 90%);
    --shadow-xs: 0 1px 2px rgba(21,19,42,.05);
    --shadow-sm: 0 2px 8px rgba(21,19,42,.06), 0 1px 2px rgba(21,19,42,.04);
    --shadow-md: 0 12px 32px rgba(21,19,42,.09);
    --shadow-lg: 0 28px 64px rgba(60,52,137,.18);
    --max: 1180px;
    font-family: var(--font-brand), "Poppins", system-ui, sans-serif;
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { background: var(--bg); color: var(--text); font-size: 16px; line-height: 1.65; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
  a { color: inherit; text-decoration: none; }
  .disp { font-family: var(--font-brand), "Poppins", sans-serif; }
  .wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }
  h1, h2, h3 { font-family: var(--font-brand), "Poppins", sans-serif; letter-spacing: -.02em; }
  h1 { font-size: 56px; font-weight: 700; line-height: 1.04; }
  h2 { font-size: 38px; font-weight: 600; line-height: 1.12; }
  h3 { font-size: 21px; font-weight: 600; }
  .lead { font-size: 19px; color: var(--text-2); line-height: 1.6; }
  .eyebrow { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600; letter-spacing: .04em; color: var(--p); background: var(--p-light); padding: 6px 13px; border-radius: 999px; }
  .eyebrow svg { width: 14px; height: 14px; }
  .grad-text { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
  section { padding: 88px 0; }
  .sec-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
  .sec-head h2 { margin-top: 14px; }
  .sec-head p { margin-top: 14px; font-size: 18px; color: var(--text-2); }
  ::-webkit-scrollbar { width: 11px; height: 11px; }
  ::-webkit-scrollbar-thumb { background: #d9d6ea; border-radius: 8px; border: 3px solid var(--bg); }

  /* reveal */
  .reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s cubic-bezier(.2,.7,.2,1), transform .6s cubic-bezier(.2,.7,.2,1); }
  .reveal.in { opacity: 1; transform: none; }

  /* buttons */
  .btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; font-family: inherit; font-weight: 600; font-size: 15px; padding: 13px 24px; border-radius: 12px; cursor: pointer; border: 1.5px solid transparent; transition: transform .14s, box-shadow .14s, background .14s, border-color .14s; white-space: nowrap; }
  .btn svg { width: 17px; height: 17px; }
  .btn-primary { background: var(--grad); color: #fff; box-shadow: 0 8px 20px rgba(74,27,240,.3); }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(74,27,240,.38); }
  .btn-ghost { background: #fff; color: var(--ink); border-color: var(--border); }
  .btn-ghost:hover { border-color: var(--p); color: var(--p); box-shadow: var(--shadow-sm); }
  .btn-dark { background: var(--ink); color: #fff; }
  .btn-dark:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
  .btn-white { background: #fff; color: var(--p-dark); }
  .btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
  .btn-lg { font-size: 16px; padding: 15px 30px; border-radius: 14px; }

  .badge { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 600; padding: 4px 11px; border-radius: 999px; }
  .badge svg { width: 13px; height: 13px; }
  .badge.green { background: var(--green-bg); color: var(--green); }
  .badge.amber { background: var(--amber-bg); color: var(--amber); }
  .badge.red { background: var(--red-bg); color: var(--red); }
  .badge.purple { background: var(--p-light); color: var(--p); }

  /* NAV */
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 18px 0 10px;
    background: transparent;
    border: 0;
    box-shadow: none;
    pointer-events: none;
    transition: padding .3s ease, background .3s ease;
  }
  .nav.scrolled { background: transparent; }
  .nav-inner {
    width: fit-content;
    max-width: calc(100% - 48px);
    margin: 0 auto;
    padding: 8px 10px 8px 14px;
    min-height: 60px;
    display: flex;
    align-items: center;
    border: 1px solid rgba(142,0,246,.14);
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255,255,255,.88) 0%, rgba(252,248,255,.76) 100%);
    -webkit-backdrop-filter: blur(22px) saturate(150%);
    backdrop-filter: blur(22px) saturate(150%);
    box-shadow: 0 18px 42px rgba(74,27,240,.11), 0 4px 14px rgba(21,19,42,.06);
    pointer-events: auto;
    transition: padding .3s ease, min-height .3s ease, border-color .3s ease, box-shadow .3s ease, background .3s ease, transform .3s ease;
  }
  .nav.scrolled .nav-inner {
    border-color: rgba(142,0,246,.18);
    background: rgba(255,255,255,.88);
    box-shadow: 0 14px 34px rgba(74,27,240,.12), 0 4px 12px rgba(21,19,42,.06);
  }
  .brand { display: flex; align-items: center; gap: 10px; cursor: pointer; min-width: 0; padding-right: 16px; transition: padding .3s ease, gap .3s ease; }
  .nav .brand::after { content: ""; width: 1px; height: 24px; margin-left: 8px; background: linear-gradient(180deg, transparent, rgba(74,27,240,.2), transparent); transition: margin .3s ease, height .3s ease; }
  .brand-logo-img { display: block; width: auto; height: 40px; object-fit: contain; }
  .nav .brand-logo-img {
    width: 150px;
    max-width: 150px;
    height: 40px;
    object-fit: contain;
    object-position: left center;
    transition: width .32s ease, max-width .32s ease, opacity .32s ease, transform .32s ease;
  }
  .nav.scrolled { padding-top: 12px; }
  .nav.scrolled .nav-inner { min-height: 56px; padding-left: 11px; }
  .nav.scrolled .brand { gap: 0; padding-right: 10px; }
  .nav.scrolled .brand::after { height: 22px; margin-left: 10px; }
  .nav.scrolled .brand-logo-img {
    width: 34px;
    max-width: 34px;
    object-fit: cover;
    transform: translateX(-1px);
  }
  .brand-logo-white { height: 46px; }
  .brand-mark { width: 38px; height: 38px; border-radius: 11px; background: var(--grad); display: grid; place-items: center; box-shadow: 0 6px 14px rgba(74,27,240,.34); }
  .brand-mark svg { width: 21px; height: 21px; color: #fff; }
  .brand-name { font-family: var(--font-brand), "Poppins", sans-serif; font-size: 20px; font-weight: 700; letter-spacing: -.02em; }
  .nav-links { display: flex; align-items: center; gap: 5px; margin-left: 0; }
  .nav-link { display: inline-flex; align-items: center; gap: 5px; padding: 8px 12px; border-radius: 12px; font-size: 14.5px; font-weight: 500; color: var(--ink); cursor: pointer; transition: background .16s ease, color .16s ease, transform .16s ease; }
  .nav-link svg { width: 15px; height: 15px; opacity: .6; }
  .nav-link:hover { background: rgba(142,0,246,.08); color: var(--p); transform: translateY(-1px); }
  .nav-right { margin-left: 12px; display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
  .nav-right .btn { padding: 10px 17px; border-radius: 13px; font-size: 14.5px; }
  .nav-right .btn-ghost { background: transparent; border-color: transparent; box-shadow: none; }
  .nav-right .btn-ghost:hover { background: rgba(142,0,246,.08); border-color: transparent; box-shadow: none; }
  .nav-right .btn-primary { background: linear-gradient(135deg, rgba(174,0,240,1), rgba(114,0,220,1)); box-shadow: 0 12px 24px rgba(114,0,220,.24); }
  .nav-signup {
    max-width: 0;
    margin-left: -8px;
    padding-left: 0 !important;
    padding-right: 0 !important;
    border-width: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transform: translateX(-8px) scale(.98);
    transition: max-width .32s ease, margin-left .32s ease, padding .32s ease, opacity .24s ease, transform .32s ease, border-width .32s ease, box-shadow .32s ease;
  }
  .nav.scrolled .nav-signup {
    max-width: 112px;
    margin-left: 0;
    padding-left: 17px !important;
    padding-right: 17px !important;
    border-width: 1.5px;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0) scale(1);
  }
  .has-dd { position: relative; }
  .dd { position: absolute; top: calc(100% + 16px); left: 0; min-width: 256px; background: rgba(255,255,255,.96); border: 1px solid rgba(142,0,246,.14); border-radius: 18px; box-shadow: 0 22px 58px rgba(74,27,240,.16), 0 8px 22px rgba(21,19,42,.08); padding: 8px; opacity: 0; visibility: hidden; transform: translateY(-6px); transition: opacity .16s, transform .16s, visibility .16s; }
  .has-dd:hover .dd { opacity: 1; visibility: visible; transform: none; }
  .dd-item { display: flex; align-items: flex-start; gap: 12px; padding: 11px 12px; border-radius: 11px; cursor: pointer; }
  .dd-item:hover { background: var(--p-50); }
  .dd-ic { width: 34px; height: 34px; border-radius: 9px; background: var(--p-light); color: var(--p); display: grid; place-items: center; flex-shrink: 0; }
  .dd-ic svg { width: 17px; height: 17px; }
  .dd-item .t { font-size: 14px; font-weight: 600; }
  .dd-item .s { font-size: 12px; color: var(--text-2); line-height: 1.4; }
  .hamburger { display: none; width: 42px; height: 42px; border: 1px solid rgba(142,0,246,.14); background: rgba(142,0,246,.06); border-radius: 12px; align-items: center; justify-content: center; color: var(--ink); }
  .hamburger svg { width: 22px; height: 22px; }
  .mobile-menu { display: none; position: fixed; inset: 86px 18px auto; z-index: 99; max-height: calc(100vh - 104px); background: rgba(255,255,255,.96); border: 1px solid rgba(142,0,246,.14); border-radius: 22px; box-shadow: 0 22px 58px rgba(74,27,240,.16), 0 8px 22px rgba(21,19,42,.08); padding: 14px 20px 24px; overflow-y: auto; }
  .mobile-menu.open { display: block; }
  .m-link { display: block; padding: 15px 4px; font-size: 17px; font-weight: 600; border-bottom: 1px solid var(--border-2); cursor: pointer; }
  .m-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 22px; }
  .m-actions .btn { width: 100%; }
  @media (prefers-reduced-motion: reduce) {
    .nav,
    .nav-inner,
    .brand,
    .nav .brand::after,
    .nav .brand-logo-img,
    .nav-link,
    .nav-signup {
      transition: none !important;
    }
  }

  .page { display: none; }
  .page.active { display: block; }
  .page > section:first-child { padding-top: 176px; }
  .page > section.hero:first-child { padding-top: 158px; }

  /* HERO */
  .hero { position: relative; padding: 70px 0 80px; overflow: hidden; }
  .hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; background:
    radial-gradient(680px 360px at 78% 8%, rgba(74,27,240,.16), transparent 70%),
    radial-gradient(560px 320px at 8% 30%, rgba(74,27,240,.1), transparent 70%); }
  .hero-bg::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(var(--border-2) 1px, transparent 1px), linear-gradient(90deg, var(--border-2) 1px, transparent 1px); background-size: 48px 48px; background-position: 0 24px, 24px 0; -webkit-mask-image: radial-gradient(900px 460px at 70% 20%, #000, transparent 80%); mask-image: radial-gradient(900px 460px at 70% 20%, #000, transparent 80%); opacity: .55; }
  .hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.04fr .96fr; gap: 52px; align-items: center; }
  .hero-grid > *, .frow > *, .contact-grid > * { min-width: 0; }
  .hero h1 { margin: 20px 0; }
  .hero .lead { max-width: 510px; margin-bottom: 28px; }
  .hero-cta { display: flex; gap: 10px; max-width: 500px; background: #fff; border: 1.5px solid var(--border); border-radius: 16px; padding: 7px; box-shadow: var(--shadow-sm); }
  .hero-cta:focus-within { border-color: var(--p); box-shadow: 0 0 0 4px var(--p-50); }
  .hero-input { flex: 1; min-width: 0; border: none; outline: none; padding: 0 16px; font-family: inherit; font-size: 15px; background: none; }
  .hero-checks { display: flex; gap: 22px; margin-top: 20px; flex-wrap: wrap; }
  .hero-check { display: inline-flex; align-items: center; gap: 7px; font-size: 13.5px; font-weight: 500; color: var(--text-2); }
  .hero-check svg { width: 16px; height: 16px; color: var(--green); }
  .trust-row { display: flex; align-items: center; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
  .avatars { display: flex; }
  .avatars span { width: 34px; height: 34px; border-radius: 50%; border: 2.5px solid var(--bg); margin-left: -10px; display: grid; place-items: center; font-size: 11px; font-weight: 700; color: #fff; font-family: var(--font-brand), "Poppins"; }
  .avatars span:first-child { margin-left: 0; }
  .stars { color: #F5A623; letter-spacing: 1px; font-size: 15px; }
  .trust-row .t { font-size: 13.5px; color: var(--text-2); }
  .trust-row b { color: var(--ink); }

  /* live verification card */
  .console { background: #fff; border: 1px solid var(--border); border-radius: 24px; box-shadow: var(--shadow-lg); overflow: hidden; position: relative; }
  .console::before { content: ""; position: absolute; right: -60px; top: -60px; width: 180px; height: 180px; border-radius: 50%; background: radial-gradient(circle, rgba(74,27,240,.12), transparent 70%); pointer-events: none; }
  .console-top { display: flex; align-items: center; gap: 12px; padding: 18px 20px; border-bottom: 1px solid var(--border-2); background: linear-gradient(180deg, #fff, var(--p-50)); }
  .console-mk { width: 38px; height: 38px; border-radius: 11px; background: var(--grad); display: grid; place-items: center; box-shadow: 0 6px 14px rgba(74,27,240,.3); flex-shrink: 0; }
  .console-mk svg { width: 19px; height: 19px; color: #fff; }
  .console-title { font-family: var(--font-brand), "Poppins"; font-weight: 700; font-size: 15px; color: var(--ink); display: flex; flex-direction: column; line-height: 1.25; }
  .console-title small { font-weight: 500; font-size: 12px; color: var(--text-2); }
  .console-live { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; font-size: 11.5px; font-weight: 700; color: var(--green); background: var(--green-bg); padding: 5px 11px; border-radius: 999px; }
  .console-live .pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 0 rgba(31,138,76,.5); animation: pulse 1.6s infinite; }
  @keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(31,138,76,.45); } 70% { box-shadow: 0 0 0 7px rgba(31,138,76,0); } 100% { box-shadow: 0 0 0 0 rgba(31,138,76,0); } }
  .console-body { padding: 18px 18px 6px; }
  .con-row { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: 13px; background: var(--bg); border: 1px solid var(--border-2); margin-bottom: 10px; opacity: 0; transform: translateY(8px); transition: opacity .35s, transform .35s; }
  .con-row.show { opacity: 1; transform: none; }
  .con-row .em { flex: 1; color: var(--ink); font-size: 13.5px; font-weight: 500; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .con-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
  .con-tag { font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 999px; font-family: var(--font-brand), "Poppins"; }
  .con-tag.valid { background: var(--green-bg); color: var(--green); }
  .con-tag.catchall { background: var(--amber-bg); color: var(--amber); }
  .con-tag.invalid { background: var(--red-bg); color: var(--red); }
  .console-foot { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; padding: 6px 18px 20px; }
  .con-stat { background: var(--bg); border: 1px solid var(--border-2); border-radius: 13px; padding: 14px 8px; text-align: center; }
  .con-stat .n { font-family: var(--font-brand), "Poppins"; font-size: 23px; font-weight: 700; }
  .con-stat .l { font-size: 11.5px; color: var(--text-2); font-weight: 600; margin-top: 2px; }
  .hero-result { margin-top: 12px; min-height: 0; }
  .res-badge { display: none; align-items: center; gap: 9px; padding: 11px 16px; border-radius: 12px; font-weight: 600; font-size: 14px; }
  .res-badge.show { display: inline-flex; }
  .res-badge svg { width: 17px; height: 17px; }
  .spinner { width: 16px; height: 16px; border: 2.5px solid rgba(74,27,240,.25); border-top-color: var(--p); border-radius: 50%; animation: spin .7s linear infinite; }
  @keyframes spin { to { transform: rotate(360deg); } }

  /* marquee */
  .marquee-sec { padding: 40px 0; border-top: 1px solid var(--border-2); border-bottom: 1px solid var(--border-2); }
  .marquee-lbl { text-align: center; font-size: 12.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--text-3); margin-bottom: 22px; }
  .marquee { width: 100%; max-width: 100vw; overflow: hidden; contain: inline-size; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
  .marquee-track { display: flex; gap: 56px; width: max-content; animation: scroll 28s linear infinite; }
  @keyframes scroll { to { transform: translateX(-50%); } }
  .logo-name { font-family: var(--font-brand), "Poppins"; font-size: 22px; font-weight: 600; color: #b7b4c8; white-space: nowrap; }

  /* bento */
  .bento { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 1fr; gap: 18px; }
  .bento .cell { background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 28px; box-shadow: var(--shadow-xs); transition: transform .18s, box-shadow .18s, border-color .18s; overflow: hidden; position: relative; }
  .bento .cell:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #ddd9f0; }
  .bento .span2 { grid-column: span 2; }
  .bento .dark { background: var(--ink-bg); color: #fff; border-color: transparent; }
  .bento .f-ic { width: 46px; height: 46px; border-radius: 12px; background: var(--p-light); color: var(--p); display: grid; place-items: center; margin-bottom: 16px; }
  .bento .dark .f-ic { background: rgba(255,255,255,.1); color: #b9aef9; }
  .f-ic svg { width: 22px; height: 22px; }
  .bento h3 { margin-bottom: 8px; }
  .bento p { color: var(--text-2); font-size: 14.5px; line-height: 1.6; }
  .bento .dark p { color: #b6b2d2; }
  .mini-bars { display: flex; align-items: flex-end; gap: 7px; height: 60px; margin-top: 18px; }
  .mini-bars i { flex: 1; border-radius: 5px 5px 0 0; background: var(--grad); }

  /* pipeline */
  .pipeline { display: flex; align-items: stretch; gap: 0; flex-wrap: wrap; justify-content: center; }
  .pl-step { flex: 1; min-width: 130px; background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 20px 16px; text-align: center; position: relative; box-shadow: var(--shadow-xs); }
  .pl-step .pn { width: 34px; height: 34px; border-radius: 10px; background: var(--p-light); color: var(--p); font-weight: 700; font-family: var(--font-brand), "Poppins"; display: grid; place-items: center; margin: 0 auto 12px; transition: background .3s, color .3s, transform .3s; }
  .pl-step.lit .pn { background: var(--grad); color: #fff; transform: scale(1.08); }
  .pl-step .pt { font-weight: 600; font-size: 14.5px; }
  .pl-step .ps { font-size: 12px; color: var(--text-2); margin-top: 3px; }
  .pl-arrow { display: flex; align-items: center; color: var(--text-3); padding: 0 6px; }
  .pl-arrow svg { width: 18px; height: 18px; }

  /* comparison */
  .compare { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--border); border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-sm); }
  .compare th, .compare td { padding: 16px 22px; text-align: left; border-bottom: 1px solid var(--border-2); }
  .compare thead th { font-family: var(--font-brand), "Poppins"; font-size: 15px; }
  .compare thead .us { color: var(--p); }
  .compare tbody td:first-child { font-weight: 500; color: var(--ink-2); }
  .compare td.c { text-align: center; }
  .compare .us-col { background: var(--p-50); }
  .compare tr:last-child td { border-bottom: none; }
  .ci { width: 22px; height: 22px; }
  .ci.yes { color: var(--green); }
  .ci.no { color: var(--text-3); }

  /* calculator */
  .calc { background: var(--ink-bg); border-radius: 24px; padding: 0; overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; color: #fff; }
  .calc-in { padding: 44px; }
  .calc-in h2 { color: #fff; }
  .calc-in p { color: #b6b2d2; margin: 12px 0 28px; }
  .calc-field { margin-bottom: 24px; }
  .calc-field label { display: flex; justify-content: space-between; font-size: 13.5px; font-weight: 600; color: #cfcbe8; margin-bottom: 12px; }
  .calc-field label b { color: #fff; font-family: var(--font-brand), "Poppins"; font-size: 15px; }
  .crange { -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 999px; background: rgba(255,255,255,.16); outline: none; cursor: pointer; }
  .crange::-webkit-slider-thumb { -webkit-appearance: none; width: 24px; height: 24px; border-radius: 50%; background: #fff; border: 6px solid var(--p2); box-shadow: 0 3px 8px rgba(0,0,0,.3); cursor: pointer; }
  .crange::-moz-range-thumb { width: 24px; height: 24px; border-radius: 50%; background: #fff; border: 6px solid var(--p2); cursor: pointer; }
  .calc-out { background: linear-gradient(160deg, #211d44, #15132A); padding: 44px; display: flex; flex-direction: column; justify-content: center; gap: 22px; border-left: 1px solid rgba(255,255,255,.08); }
  .calc-stat .cn { font-family: var(--font-brand), "Poppins"; font-size: 42px; font-weight: 700; line-height: 1; }
  .calc-stat .cl { font-size: 13.5px; color: #b6b2d2; margin-top: 7px; }
  .calc-stat.hl .cn { color: #7DE3A6; }
  .calc-divide { height: 1px; background: rgba(255,255,255,.1); }

  /* slider card */
  .slider-card { background: #fff; border: 1px solid var(--border); border-radius: 22px; box-shadow: var(--shadow-md); padding: 40px 44px; max-width: 700px; margin: 0 auto; text-align: center; }
  .slider-card .sc-eyebrow { font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--text-2); }
  .vol-slider { -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 999px; background: var(--border); outline: none; margin: 26px 0 14px; cursor: pointer; }
  .vol-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 26px; height: 26px; border-radius: 50%; background: #fff; border: 6px solid var(--p); box-shadow: 0 3px 10px rgba(74,27,240,.4); cursor: pointer; }
  .vol-slider::-moz-range-thumb { width: 26px; height: 26px; border-radius: 50%; background: #fff; border: 6px solid var(--p); cursor: pointer; }
  .vol-big { font-family: var(--font-brand), "Poppins"; font-size: 36px; font-weight: 700; color: var(--p); margin: 14px 0 12px; }
  .vol-ticks { display: flex; justify-content: space-between; font-size: 12px; font-weight: 600; color: var(--text-3); }
  .vol-ticks span { cursor: pointer; flex: 1; text-align: center; }
  .vol-ticks span:hover, .vol-ticks span.on { color: var(--p); }
  .slider-divide { height: 1px; background: var(--border-2); margin: 24px 0; }
  .vol-price { display: flex; align-items: baseline; justify-content: center; gap: 13px; }
  .vol-price .only { font-size: 14px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: var(--text-2); }
  .vol-price .amt { font-family: var(--font-brand), "Poppins"; font-size: 52px; font-weight: 700; letter-spacing: -.02em; }
  .vol-rate { font-size: 12.5px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--text-3); margin-top: 8px; }
  .slider-card .btn { margin-top: 22px; min-width: 220px; }

  /* testimonials */
  .t-card { background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 28px; box-shadow: var(--shadow-xs); }
  .t-metric { color: #F5A623; font-size: 18px; letter-spacing: 2px; }
  .t-card .quote { font-size: 15.5px; line-height: 1.6; color: #2f2c45; margin-top: 8px; }
  .t-author { display: flex; align-items: center; gap: 12px; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--border-2); }
  .t-av { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font-weight: 700; color: #fff; flex-shrink: 0; font-family: var(--font-brand), "Poppins"; }
  .t-author .an { font-weight: 600; font-size: 14.5px; }
  .t-author .at { font-size: 13px; color: var(--text-2); }

  /* stats */
  .stat-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
  .big-stat { text-align: center; }
  .big-stat .n { font-family: var(--font-brand), "Poppins"; font-size: 46px; font-weight: 700; letter-spacing: -.02em; }
  .big-stat .l { font-size: 14px; color: var(--text-2); font-weight: 500; margin-top: 4px; }

  /* pricing */
  .price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
  .price-card { background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 30px; position: relative; box-shadow: var(--shadow-xs); }
  .price-card.pop { border: 2px solid var(--p); box-shadow: var(--shadow-lg); }
  .pop-tag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--grad); color: #fff; font-size: 12px; font-weight: 700; padding: 5px 14px; border-radius: 999px; }
  .price-card .pname { font-size: 15px; font-weight: 600; color: var(--p); font-family: var(--font-brand), "Poppins"; }
  .price-card .pprice { font-family: var(--font-brand), "Poppins"; font-size: 38px; font-weight: 700; margin: 10px 0 2px; }
  .price-card .pprice span { font-size: 15px; font-weight: 500; color: var(--text-2); }
  .price-card .pcredits { font-size: 14px; color: var(--text-2); font-weight: 500; margin-bottom: 22px; }
  .price-card .btn { width: 100%; margin-bottom: 22px; }
  .feat-list { display: flex; flex-direction: column; gap: 12px; }
  .feat-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; list-style: none; }
  .feat-list svg { width: 17px; height: 17px; flex-shrink: 0; margin-top: 2px; }
  .feat-list .yes svg { color: var(--green); }
  .feat-list .no { color: var(--text-3); } .feat-list .no svg { color: var(--text-3); }
  .payg-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 36px; }
  .payg { position: relative; background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 26px 20px; text-align: center; box-shadow: var(--shadow-xs); transition: transform .18s cubic-bezier(.2,.7,.2,1), box-shadow .18s, border-color .18s; }
  .payg:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: #d7d2f0; }
  .payg-ic { width: 40px; height: 40px; border-radius: 11px; background: var(--p-light); color: var(--p); display: grid; place-items: center; margin: 0 auto 14px; transition: transform .18s; }
  .payg-ic svg { width: 19px; height: 19px; }
  .payg:hover .payg-ic { transform: scale(1.1) rotate(-6deg); }
  .payg .c { font-family: var(--font-brand), "Poppins"; font-size: 19px; font-weight: 700; }
  .payg .c span { font-size: 12px; font-weight: 500; color: var(--text-2); }
  .payg .pr { font-family: var(--font-brand), "Poppins"; font-size: 28px; font-weight: 700; color: var(--p); margin: 6px 0 2px; }
  .payg-rate { font-size: 11.5px; color: var(--text-3); font-weight: 600; margin-bottom: 16px; }
  .payg .btn { width: 100%; }
  .payg.popular { border: 2px solid var(--p); box-shadow: var(--shadow-lg); }
  .payg.popular .payg-ic { background: var(--grad); color: #fff; }
  .payg-pop { position: absolute; top: -11px; left: 50%; transform: translateX(-50%); background: var(--grad); color: #fff; font-size: 10.5px; font-weight: 700; letter-spacing: .04em; padding: 4px 12px; border-radius: 999px; white-space: nowrap; }
  .payg-name { color: var(--text-2); font-size: 12px; font-weight: 700; letter-spacing: .05em; margin-bottom: 5px; text-transform: uppercase; }
  .dynamic-package-grid.is-loading { min-height: 250px; position: relative; }
  .dynamic-package-grid.is-loading > * { visibility: hidden; }
  .dynamic-package-grid.is-loading::after { content: "Loading packages..."; position: absolute; inset: 0; display: grid; place-items: center; color: var(--text-2); font-size: 14px; font-weight: 600; }

  /* faq */
  .faq { max-width: 760px; margin: 0 auto; }
  .faq-item { border: 1px solid var(--border); border-radius: 14px; margin-bottom: 12px; background: #fff; overflow: hidden; }
  .faq-q { width: 100%; text-align: left; background: none; border: none; font-family: var(--font-brand), "Poppins", inherit; font-size: 16.5px; font-weight: 600; color: var(--ink); padding: 20px 22px; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
  .faq-q svg { width: 20px; height: 20px; color: var(--p); flex-shrink: 0; transition: transform .2s; }
  .faq-item.open .faq-q svg { transform: rotate(45deg); }
  .faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
  .faq-a p { padding: 0 22px 20px; color: var(--text-2); font-size: 15px; line-height: 1.65; }

  /* code */
  .code { background: var(--ink-bg); border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-md); }
  .code-top { display: flex; align-items: center; gap: 7px; padding: 14px 18px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .code-method { margin-left: 10px; font-family: var(--font-code), "JetBrains Mono", monospace; font-size: 12.5px; color: #b6b2d8; font-weight: 600; }
  .code pre { margin: 0; padding: 20px 22px; overflow-x: auto; font-family: var(--font-code), "JetBrains Mono", monospace; font-size: 13.5px; line-height: 1.75; color: #e7e5f5; }
  .c-key { color: #afa0fa; } .c-str { color: #a5e887; } .c-num { color: #fcd34d; } .c-bool { color: #7dd3fc; } .c-com { color: #7e7aa3; }
  .ep-table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-xs); }
  .ep-table th { text-align: left; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--text-3); padding: 14px 20px; border-bottom: 1px solid var(--border); background: var(--bg); }
  .ep-table td { padding: 15px 20px; border-bottom: 1px solid var(--border-2); font-size: 14.5px; }
  .ep-table tr:last-child td { border-bottom: none; }
  .ep-m { display: inline-block; font-family: var(--font-code), "JetBrains Mono", monospace; font-size: 11.5px; font-weight: 700; padding: 3px 9px; border-radius: 6px; }
  .ep-m.post { background: var(--p-light); color: var(--p); }
  .ep-m.get { background: var(--green-bg); color: var(--green); }
  .ep-path { font-family: var(--font-code), "JetBrains Mono", monospace; font-size: 13.5px; font-weight: 600; }
  .status-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .status-card { display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 16px 18px; }
  .status-card .sd { width: 11px; height: 11px; border-radius: 50%; flex-shrink: 0; }
  .status-card .sc-t { font-weight: 700; font-size: 14px; font-family: var(--font-code), "JetBrains Mono", monospace; }
  .status-card .sc-s { font-size: 12.5px; color: var(--text-2); }

  /* feature rows */
  .frow { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; padding: 56px 0; border-bottom: 1px solid var(--border-2); }
  .frow:last-child { border-bottom: none; }
  .frow.flip .fr-media { order: -1; }
  .frow h2 { font-size: 30px; margin: 12px 0 14px; }
  .frow p { color: var(--text-2); font-size: 16px; margin-bottom: 18px; }
  .fr-list { display: flex; flex-direction: column; gap: 11px; }
  .fr-list li { display: flex; gap: 10px; font-size: 15px; list-style: none; }
  .fr-list svg { width: 18px; height: 18px; color: var(--p); flex-shrink: 0; margin-top: 2px; }
  .fr-media { background: var(--bg); border: 1px solid var(--border); border-radius: 20px; padding: 26px; }
  .demo-w { display: flex; gap: 10px; }
  .demo-w input { flex: 1; min-width: 0; height: 48px; border: 1.5px solid var(--border); border-radius: 11px; padding: 0 16px; font-family: inherit; font-size: 14.5px; outline: none; background: #fff; }
  .demo-w input:focus { border-color: var(--p); box-shadow: 0 0 0 4px var(--p-50); }
  .res-table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; font-size: 13.5px; }
  .res-table th { text-align: left; font-size: 11px; font-weight: 700; text-transform: uppercase; color: var(--text-3); padding: 11px 14px; border-bottom: 1px solid var(--border); background: var(--bg); }
  .res-table td { padding: 11px 14px; border-bottom: 1px solid var(--border-2); }
  .res-table tr:last-child td { border-bottom: none; }
  .disp-list { display: flex; flex-wrap: wrap; gap: 9px; }
  .disp-chip { background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 8px 13px; font-size: 13.5px; font-weight: 500; font-family: var(--font-code), "JetBrains Mono", monospace; }
  .score-demo { display: flex; align-items: center; gap: 22px; }
  .score-ring { width: 110px; height: 110px; border-radius: 50%; display: grid; place-items: center; flex-shrink: 0; position: relative; background: conic-gradient(var(--green) 0 92%, var(--border) 92% 100%); }
  .score-ring::after { content: ""; position: absolute; inset: 11px; background: var(--bg); border-radius: 50%; }
  .score-ring .sv { position: relative; z-index: 1; font-family: var(--font-brand), "Poppins"; font-size: 30px; font-weight: 700; color: var(--green); }

  /* founder */
  .founder { display: flex; gap: 32px; align-items: center; background: #fff; border: 1px solid var(--border); border-radius: 22px; padding: 36px; box-shadow: var(--shadow-md); max-width: 880px; margin: 0 auto; }
  .founder-photo { width: 130px; height: 130px; border-radius: 50%; flex-shrink: 0; object-fit: cover; box-shadow: 0 12px 28px rgba(74,27,240,.34); }
  .founder-body h3 { font-size: 24px; }
  .founder-role { color: var(--p); font-weight: 600; font-size: 15px; margin-top: 3px; }
  .founder-loc { display: inline-flex; align-items: center; gap: 6px; font-size: 13.5px; color: var(--text-2); margin-top: 8px; }
  .founder-loc svg { width: 15px; height: 15px; }
  .founder-body p { color: var(--text-2); font-size: 15px; line-height: 1.65; margin: 14px 0 18px; }
  @media (max-width: 700px) { .founder { flex-direction: column; text-align: center; padding: 28px 22px; } .founder-loc { justify-content: center; } }

  /* book a call */
  .book-call { display: grid; grid-template-columns: 1.2fr 1fr; gap: 36px; align-items: center; background: var(--grad); border-radius: 24px; padding: 48px; position: relative; overflow: hidden; }
  .book-call::after { content: ""; position: absolute; right: -70px; bottom: -70px; width: 240px; height: 240px; border-radius: 50%; background: rgba(255,255,255,.08); }
  .bc-left { position: relative; z-index: 1; }
  .bc-points { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
  .bc-points span { display: inline-flex; align-items: center; gap: 9px; color: #fff; font-weight: 500; font-size: 14.5px; }
  .bc-points svg { width: 17px; height: 17px; color: #fff; opacity: .9; }
  .bc-card { position: relative; z-index: 1; background: #fff; border-radius: 18px; padding: 28px; text-align: center; box-shadow: var(--shadow-lg); }
  .bc-ic { width: 56px; height: 56px; border-radius: 15px; background: var(--p-light); color: var(--p); display: grid; place-items: center; margin: 0 auto 14px; }
  .bc-ic svg { width: 27px; height: 27px; }
  .bc-when { font-family: var(--font-brand), "Poppins"; font-size: 19px; font-weight: 700; }
  .bc-sub { font-size: 13.5px; color: var(--text-2); margin-top: 3px; }
  @media (max-width: 760px) { .book-call { grid-template-columns: 1fr; padding: 32px 24px; } }

  /* about */
  .values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .v-card { background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 28px; box-shadow: var(--shadow-xs); }
  .v-card .f-ic { width: 46px; height: 46px; border-radius: 12px; background: var(--p-light); color: var(--p); display: grid; place-items: center; margin-bottom: 16px; }

  /* contact */
  /* blog */
  #page-blog {
    background:
      radial-gradient(circle at 18% 8%, rgba(142,0,246,.12), transparent 28%),
      radial-gradient(circle at 84% 18%, rgba(74,27,240,.1), transparent 26%),
      linear-gradient(180deg, #fff 0%, #FCF8FF 32%, var(--bg) 70%);
  }
  .blog-index[hidden], .blog-article-view[hidden] { display: none !important; }
  .blog-reading-progress { position: fixed; top: 0; left: 0; right: 0; z-index: 140; height: 3px; pointer-events: none; background: transparent; }
  .blog-reading-progress span { display: block; width: 0; height: 100%; border-radius: 0 999px 999px 0; background: var(--grad); box-shadow: 0 0 18px rgba(114,0,220,.36); transition: width .08s linear; }
  .blog-hero-section { padding: 116px 0 24px; }
  .blog-hero-panel { position: relative; overflow: hidden; text-align: center; padding: clamp(36px, 5vw, 52px) clamp(22px, 5vw, 68px); border: 1px solid rgba(142,0,246,.1); border-radius: 28px; background: linear-gradient(135deg, rgba(255,255,255,.94), rgba(251,244,255,.82)); box-shadow: 0 20px 58px rgba(74,27,240,.07); }
  .blog-hero-panel::before { content: ""; position: absolute; inset: auto 12% -130px; height: 210px; border-radius: 999px; background: radial-gradient(circle, rgba(174,0,240,.16), transparent 68%); filter: blur(8px); pointer-events: none; }
  .blog-eyebrow { position: relative; z-index: 1; text-transform: uppercase; letter-spacing: .08em; font-size: 11.5px; font-weight: 800; }
  .blog-hero-panel h1 { position: relative; z-index: 1; max-width: 900px; margin: 15px auto 0; font-size: clamp(38px, 5.4vw, 62px); line-height: 1.02; letter-spacing: -.048em; text-wrap: balance; }
  .blog-hero-panel .lead { position: relative; z-index: 1; max-width: 700px; margin: 16px auto 0; font-size: clamp(15.5px, 1.8vw, 17.5px); line-height: 1.65; color: var(--text-2); text-wrap: pretty; }
  .blog-search-wrap { position: relative; z-index: 1; width: min(620px, 100%); min-height: 54px; margin: 24px auto 0; display: flex; align-items: center; gap: 12px; padding: 0 18px; border: 1.5px solid rgba(142,0,246,.14); border-radius: 17px; background: rgba(255,255,255,.9); box-shadow: 0 12px 30px rgba(21,19,42,.06); transition: border-color .16s ease, box-shadow .16s ease, background .16s ease; }
  .blog-search-wrap:focus-within { border-color: rgba(142,0,246,.45); background: #fff; box-shadow: 0 18px 42px rgba(74,27,240,.12), 0 0 0 4px rgba(142,0,246,.08); }
  .blog-search-wrap svg { width: 20px; height: 20px; color: var(--p); flex-shrink: 0; }
  .blog-search-wrap input { width: 100%; min-width: 0; border: 0; outline: 0; background: transparent; color: var(--ink); font: inherit; font-size: 16px; }
  .blog-search-wrap input::placeholder { color: var(--text-3); }
  .blog-topic-row { position: relative; z-index: 1; display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
  .blog-topic-row span { display: inline-flex; align-items: center; min-height: 30px; padding: 6px 12px; border-radius: 999px; background: rgba(142,0,246,.07); color: var(--p-dark); font-size: 12.5px; font-weight: 700; }
  .blog-featured-section { padding: 24px 0 30px; }
  .blog-featured-section[hidden] { display: none !important; }
  .blog-section-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 22px; margin-bottom: 20px; }
  .blog-section-kicker { display: inline-flex; align-items: center; gap: 7px; color: var(--p); font-size: 11px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
  .blog-section-row h2 { margin-top: 6px; font-size: clamp(23px, 2.7vw, 31px); letter-spacing: -.035em; }
  .blog-section-link { display: inline-flex; align-items: center; gap: 8px; min-height: 42px; padding: 10px 15px; border: 1px solid rgba(142,0,246,.15); border-radius: 14px; background: rgba(255,255,255,.78); color: var(--p); font-size: 13px; font-weight: 800; box-shadow: var(--shadow-xs); transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease; }
  .blog-section-link:hover { transform: translateY(-2px); border-color: rgba(142,0,246,.3); box-shadow: var(--shadow-sm); }
  .blog-section-link svg { width: 16px; height: 16px; }
  .feature-post { display: grid; grid-template-columns: minmax(0, .94fr) minmax(340px, 1.06fr); gap: 0; overflow: hidden; border: 1px solid rgba(142,0,246,.12); border-radius: 26px; background: rgba(255,255,255,.94); box-shadow: 0 20px 56px rgba(21,19,42,.08); cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
  .feature-post:hover { transform: translateY(-4px); border-color: rgba(142,0,246,.22); box-shadow: 0 32px 86px rgba(21,19,42,.13); }
  .feature-post .fp-cover { min-height: 310px; position: relative; overflow: hidden; background: var(--grad); }
  .blog-card-media, .blog-article-media { position: relative; }
  .blog-card-media > img, .blog-article-media > img { position: absolute; inset: 0; z-index: 2; display: block; width: 100%; height: 100%; object-fit: cover; }
  .feature-post .blog-card-media img, .post .blog-card-media img, .blog-related-card .blog-card-media img { transition: transform .32s ease; }
  .feature-post:hover .blog-card-media img, .post:hover .blog-card-media img, .blog-related-card:hover .blog-card-media img { transform: scale(1.04); }
  .blog-fallback-art { width: 100%; height: 100%; min-height: inherit; display: flex; align-items: flex-end; position: relative; overflow: hidden; padding: clamp(20px, 4vw, 34px); color: #fff; }
  .blog-fallback-art::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 24% 18%, rgba(255,255,255,.24), transparent 28%), radial-gradient(circle at 86% 82%, rgba(255,255,255,.14), transparent 30%); }
  .blog-fallback-art::after { content: ""; position: absolute; right: -44px; bottom: -52px; width: 190px; height: 190px; border-radius: 50%; background: rgba(255,255,255,.12); }
  .blog-fallback-art svg { position: absolute; z-index: 1; top: 50%; left: 50%; width: 54px; height: 54px; opacity: .88; transform: translate(-50%, -50%); }
  .blog-fallback-copy { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 5px; text-align: left; }
  .blog-fallback-copy span { font-size: 10px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; opacity: .78; }
  .blog-fallback-copy strong { color: #fff; font-size: clamp(18px, 2.4vw, 25px); line-height: 1.15; letter-spacing: -.025em; }
  .feature-post .fp-body { padding: clamp(28px, 4.5vw, 42px); display: flex; flex-direction: column; justify-content: center; min-width: 0; }
  .post-tag { width: fit-content; display: inline-flex; align-items: center; gap: 6px; min-height: 28px; padding: 6px 11px; border-radius: 999px; background: var(--p-50); color: var(--p); font-size: 11px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
  .feature-post .fp-body h2 { margin-top: 15px; font-size: clamp(27px, 3.4vw, 38px); line-height: 1.1; letter-spacing: -.045em; text-wrap: balance; }
  .feature-post .fp-body p { margin-top: 16px; color: var(--text-2); font-size: 16px; line-height: 1.7; }
  .post-meta { display: flex; align-items: center; gap: 9px; flex-wrap: wrap; margin-top: 18px; color: var(--text-3); font-size: 12.5px; font-weight: 650; }
  .post-meta span { display: inline-flex; align-items: center; gap: 6px; }
  .post-meta svg { width: 14px; height: 14px; }
  .post-read { display: inline-flex; align-items: center; gap: 7px; margin-top: 22px; color: var(--p); font-size: 13px; font-weight: 850; }
  .post-read svg { width: 15px; height: 15px; transition: transform .16s ease; }
  .post:hover .post-read svg, .feature-post:hover .post-read svg, .blog-related-card:hover .post-read svg { transform: translateX(4px); }
  .blog-library-section { padding: 28px 0 74px; }
  .blog-library-card { border: 1px solid rgba(142,0,246,.1); border-radius: 26px; background: rgba(255,255,255,.94); box-shadow: 0 16px 46px rgba(21,19,42,.06); padding: clamp(22px, 4vw, 32px); }
  .blog-library-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 22px; }
  .blog-library-head h2 { margin-top: 6px; font-size: clamp(25px, 3.4vw, 36px); letter-spacing: -.045em; }
  .blog-library-head p { max-width: 620px; margin-top: 7px; color: var(--text-2); font-size: 15.5px; }
  .blog-library-count { flex-shrink: 0; min-height: 36px; display: inline-flex; align-items: center; padding: 8px 12px; border-radius: 999px; background: var(--p-50); color: var(--p); font-size: 12px; font-weight: 850; }
  .blog-filter-bar { display: flex; align-items: center; gap: 9px; flex-wrap: wrap; margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--border); }
  .blog-filter-btn { min-height: 38px; padding: 9px 14px; border: 1px solid var(--border); border-radius: 999px; background: #fff; color: var(--text-2); font: inherit; font-size: 13px; font-weight: 800; cursor: pointer; transition: transform .16s ease, background .16s ease, border-color .16s ease, color .16s ease, box-shadow .16s ease; }
  .blog-filter-btn:hover { transform: translateY(-1px); border-color: rgba(142,0,246,.28); color: var(--p); box-shadow: var(--shadow-xs); }
  .blog-filter-btn.active { border-color: transparent; background: var(--grad); color: #fff; box-shadow: 0 10px 22px rgba(114,0,220,.18); }
  .blog-filter-btn:focus-visible, .blog-back:focus-visible, .blog-toc-toggle:focus-visible, .blog-share-action:focus-visible { outline: 3px solid rgba(142,0,246,.22); outline-offset: 3px; }
  .blog-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-top: 24px; }
  .post { min-width: 0; display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--border); border-radius: 22px; background: #fff; box-shadow: var(--shadow-xs); cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
  .post:hover { transform: translateY(-4px); border-color: rgba(142,0,246,.22); box-shadow: var(--shadow-md); }
  .post-cover { aspect-ratio: 16 / 9; min-height: 0; position: relative; overflow: hidden; background: var(--grad); }
  .post-cover .blog-fallback-art { padding: 18px; }
  .post-cover .blog-fallback-art svg { width: 38px; height: 38px; }
  .post-cover .blog-fallback-copy strong { font-size: 17px; }
  .post-body { padding: 20px; flex: 1; display: flex; flex-direction: column; min-width: 0; }
  .post-body h3 { margin-top: 12px; font-size: 18px; line-height: 1.32; letter-spacing: -.03em; text-wrap: balance; }
  .post-body p { margin-top: 9px; color: var(--text-2); font-size: 13.5px; line-height: 1.62; flex: 1; display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
  .blog-state { margin-top: 24px; padding: 18px 20px; border: 1px solid rgba(142,0,246,.16); border-radius: 18px; background: rgba(142,0,246,.06); color: var(--text-2); font-size: 14px; font-weight: 650; }
  .blog-state strong { display: block; margin-bottom: 3px; color: var(--ink); font-size: 15px; }
  .blog-card-skeleton { min-height: 350px; border: 1px solid var(--border); border-radius: 22px; background: #fff; overflow: hidden; }
  .blog-feature-skeleton { min-height: 350px; border-radius: 28px; background: #fff; display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; border: 1px solid var(--border); }
  .blog-skeleton-media { min-height: 190px; }
  .blog-skeleton-body { padding: 24px; }
  .blog-skeleton { border-radius: 999px; background: linear-gradient(90deg, #F0ECF8 0%, #FAF7FF 50%, #F0ECF8 100%); background-size: 220% 100%; animation: blogSkeleton 1.25s ease-in-out infinite; }
  .blog-skeleton.line { height: 14px; margin-top: 12px; }
  .blog-skeleton.title { height: 28px; width: 80%; margin-top: 20px; }
  .blog-skeleton.short { width: 55%; }
  .blog-page-cta-section { padding: 0 0 86px; }
  .blog-page-cta-section .big-cta { border-radius: 24px; padding: 60px 24px; }
  @keyframes blogSkeleton { 0% { background-position: 100% 0; } 100% { background-position: -100% 0; } }
  .blog-article-view { padding: 118px 0 82px; background: linear-gradient(180deg, rgba(249,244,255,.76) 0, #fff 320px, #fff 100%); }
  .blog-back { display: inline-flex; align-items: center; gap: 8px; border: 0; background: transparent; color: var(--text-2); padding: 8px 0; font-family: inherit; font-size: 13px; font-weight: 750; cursor: pointer; margin: 0 0 12px max(0px, calc((100% - 960px) / 2)); transition: color .16s ease, transform .16s ease; }
  .blog-back:hover { transform: translateX(-2px); color: var(--p); }
  .blog-back svg { width: 17px; height: 17px; }
  .blog-article { background: transparent; border: 0; box-shadow: none; }
  .blog-article-shell { overflow: visible; border: 0; border-radius: 0; background: transparent; box-shadow: none; }
  .blog-crumbs { max-width: 960px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin: 0 auto; padding: 5px 0 0; color: var(--text-3); font-size: 12px; font-weight: 750; }
  .blog-crumbs a { color: var(--text-2); transition: color .16s ease; }
  .blog-crumbs a:hover { color: var(--p); }
  .blog-crumbs span { color: var(--text-3); }
  .blog-article-hero { max-width: 960px; margin: 0 auto; padding: 26px 0 34px; text-align: left; }
  .blog-article-kicker { display: inline-flex; align-items: center; min-height: 24px; padding: 0; color: var(--p); font-size: 11px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
  .blog-article h1 { max-width: 880px; margin-top: 13px; color: var(--ink); font-size: clamp(33px, 4.1vw, 49px); line-height: 1.09; letter-spacing: -.043em; text-wrap: balance; }
  .blog-article-summary { max-width: 760px; margin: 16px 0 0; color: var(--text-2); font-size: clamp(15.5px, 1.7vw, 18px); line-height: 1.62; text-wrap: pretty; }
  .blog-article-meta { margin-top: 19px; display: flex; align-items: center; justify-content: flex-start; gap: 10px 16px; flex-wrap: wrap; color: var(--text-3); font-weight: 700; font-size: 13px; }
  .blog-article-meta span { display: inline-flex; align-items: center; gap: 7px; }
  .blog-article-meta svg { width: 15px; height: 15px; color: var(--p); }
  .blog-article-media { width: 100%; max-width: 1080px; margin: 0 auto 48px; aspect-ratio: 2.08 / 1; min-height: 0; overflow: hidden; border: 1px solid rgba(142,0,246,.1); border-radius: 20px; background: var(--grad); box-shadow: 0 14px 38px rgba(21,19,42,.08); }
  .blog-reading-layout { max-width: 1160px; display: grid; grid-template-columns: 180px minmax(0, 720px) 190px; justify-content: center; gap: 34px; align-items: start; margin: 0 auto; padding: 0 0 42px; }
  .blog-toc-card, .blog-author-card, .blog-share-card { border: 0; border-top: 1px solid var(--border); border-radius: 0; background: transparent; box-shadow: none; }
  .blog-toc-card { position: sticky; top: 104px; padding: 16px 0 0; }
  .blog-toc-card[hidden] { display: none !important; }
  .blog-toc-toggle { width: 100%; border: 0; background: transparent; color: var(--ink); display: flex; align-items: center; justify-content: space-between; gap: 8px; font-family: inherit; font-size: 12px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; }
  .blog-toc-toggle svg { width: 15px; height: 15px; color: var(--text-3); transition: transform .18s ease; }
  .blog-toc-card.collapsed .blog-toc-toggle svg { transform: rotate(-90deg); }
  #blogArticleToc { display: flex; flex-direction: column; gap: 4px; margin-top: 12px; }
  .blog-toc-card.collapsed #blogArticleToc { display: none; }
  #blogArticleToc a { display: block; border-left: 2px solid transparent; padding: 7px 0 7px 10px; color: var(--text-2); font-size: 12.5px; line-height: 1.4; transition: border-color .16s ease, color .16s ease, transform .16s ease; }
  #blogArticleToc a:hover, #blogArticleToc a.active { border-left-color: var(--p); color: var(--p); transform: translateX(2px); }
  #blogArticleToc a.depth-3 { padding-left: 20px; font-size: 12px; color: var(--text-3); }
  .blog-article-main { min-width: 0; }
  .blog-article-body { width: 100%; margin: 0; padding: 0; color: var(--text-2); }
  .blog-article-body > *:first-child { margin-top: 0; }
  .blog-article-body > p:first-child { color: var(--ink); font-size: 18px; line-height: 1.76; }
  .blog-article-body p { color: var(--text-2); font-size: 17px; line-height: 1.78; margin: 18px 0; }
  .blog-article-body h1, .blog-article-body h2, .blog-article-body h3, .blog-article-body h4 { color: var(--ink); scroll-margin-top: 110px; text-wrap: balance; }
  .blog-article-body h2 { font-size: clamp(27px, 2.7vw, 32px); line-height: 1.2; margin: 42px 0 14px; letter-spacing: -.04em; }
  .blog-article-body h3 { font-size: clamp(21px, 2.2vw, 25px); line-height: 1.28; margin: 34px 0 11px; letter-spacing: -.03em; }
  .blog-article-body h4 { font-size: 19px; margin: 28px 0 10px; }
  .blog-article-body ul, .blog-article-body ol { margin: 18px 0 21px 24px; color: var(--text-2); font-size: 16.5px; line-height: 1.74; }
  .blog-article-body li { margin: 9px 0; padding-left: 4px; }
  .blog-article-body strong { color: var(--ink); font-weight: 750; }
  .blog-article-body blockquote { margin: 32px 0; padding: 22px 24px; border: 1px solid rgba(142,0,246,.14); border-left: 4px solid var(--p); background: linear-gradient(135deg, var(--p-50), #fff); border-radius: 18px; color: var(--ink); font-size: 17.5px; line-height: 1.68; font-weight: 650; }
  .blog-article-body a { color: var(--p); font-weight: 750; text-decoration: none; box-shadow: inset 0 -1px 0 rgba(142,0,246,.32); }
  .blog-article-body a:hover { color: var(--p-dark); box-shadow: inset 0 -2px 0 rgba(142,0,246,.48); }
  .blog-article-body code { background: var(--p-50); color: var(--p-dark); font-family: var(--font-code), "JetBrains Mono", monospace; font-size: .86em; padding: 3px 7px; border-radius: 8px; word-break: break-word; }
  .blog-article-body pre { margin: 30px 0; padding: 22px; overflow-x: auto; border: 1px solid rgba(142,0,246,.14); border-radius: 18px; background: #15132A; color: #F8F5FF; box-shadow: var(--shadow-sm); }
  .blog-article-body pre code { padding: 0; background: transparent; color: inherit; }
  .blog-article-body img { display: block; max-width: 100%; height: auto; margin: 34px auto; border-radius: 22px; box-shadow: 0 18px 44px rgba(21,19,42,.1); }
  .blog-article-body figure { margin: 34px 0; }
  .blog-article-body iframe, .blog-article-body video { max-width: 100%; border-radius: 18px; }
  .blog-article-body table { width: 100%; margin: 32px 0; border-collapse: separate; border-spacing: 0; overflow: hidden; border: 1px solid var(--border); border-radius: 18px; font-size: 14px; }
  .blog-article-body th, .blog-article-body td { padding: 13px 15px; border-bottom: 1px solid var(--border); text-align: left; vertical-align: top; }
  .blog-article-body th { background: var(--p-50); color: var(--ink); font-weight: 800; }
  .blog-article-body tr:last-child td { border-bottom: 0; }
  .blog-article-side { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 104px; }
  .blog-author-card, .blog-share-card { padding: 16px 0 4px; }
  .blog-author-avatar { width: 42px; height: 42px; border-radius: 13px; display: grid; place-items: center; background: var(--grad); color: #fff; font-size: 13px; font-weight: 850; box-shadow: 0 8px 18px rgba(114,0,220,.16); }
  .blog-author-card h3, .blog-share-card h3 { margin-top: 12px; font-size: 15px; letter-spacing: -.02em; }
  .blog-author-card p, .blog-share-card p { margin-top: 4px; color: var(--text-3); font-size: 12.5px; line-height: 1.45; }
  .blog-share-actions { display: flex; flex-direction: column; gap: 8px; margin-top: 14px; }
  .blog-share-action { display: inline-flex; align-items: center; justify-content: flex-start; gap: 8px; min-height: 32px; border: 0; background: transparent; color: var(--text-2); padding: 4px 0; font: inherit; font-size: 12.5px; font-weight: 800; cursor: pointer; transition: transform .16s ease, color .16s ease; }
  .blog-share-action:hover { transform: translateX(2px); color: var(--p); }
  .blog-share-action svg { width: 15px; height: 15px; }
  .blog-related-section { max-width: 1160px; margin: 54px auto 0; padding-top: 42px; border-top: 1px solid var(--border); }
  .blog-related-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
  .blog-related-card { overflow: hidden; border: 1px solid var(--border); border-radius: 22px; background: #fff; box-shadow: var(--shadow-xs); cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
  .blog-related-card:hover { transform: translateY(-3px); border-color: rgba(142,0,246,.22); box-shadow: var(--shadow-md); }
  .blog-related-card .post-cover { min-height: 132px; }
  .blog-related-card .post-body { padding: 18px; }
  .blog-related-card h3 { margin-top: 10px; font-size: 16px; line-height: 1.32; }
  .blog-article-footer { max-width: 1160px; margin: 42px auto 0; display: flex; align-items: center; justify-content: space-between; gap: 24px; overflow: hidden; position: relative; border: 1px solid rgba(255,255,255,.22); border-radius: 24px; background: var(--grad); box-shadow: 0 20px 50px rgba(74,27,240,.18); padding: 34px 36px; color: #fff; }
  .blog-article-footer::after { content: ""; position: absolute; right: -68px; bottom: -84px; width: 240px; height: 240px; border-radius: 50%; background: rgba(255,255,255,.12); pointer-events: none; }
  .blog-article-footer h2 { color: #fff; font-size: 28px; }
  .blog-article-footer p { color: rgba(255,255,255,.86); margin-top: 6px; }
  .blog-article-footer .btn { position: relative; z-index: 1; }
  .blog-error { text-align: center; padding: 64px 24px; }
  .blog-error h2 { font-size: 30px; }
  .blog-error p { color: var(--text-2); margin-top: 10px; }
  .blog-error .btn { margin-top: 18px; }
  /* help center */
  .help-search { max-width: 600px; margin: 0 auto 44px; display: flex; align-items: center; gap: 10px; background: #fff; border: 1.5px solid var(--border); border-radius: 14px; padding: 14px 18px; box-shadow: var(--shadow-sm); }
  .help-search svg { width: 20px; height: 20px; color: var(--text-3); }
  .help-search input { flex: 1; min-width: 0; border: none; outline: none; font-family: inherit; font-size: 16px; background: none; }
  .help-cats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .help-cat { background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 28px; box-shadow: var(--shadow-xs); transition: transform .18s, box-shadow .18s; }
  .help-cat:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
  .help-cat .f-ic { width: 46px; height: 46px; border-radius: 12px; background: var(--p-light); color: var(--p); display: grid; place-items: center; margin-bottom: 16px; }
  .help-cat h3 { font-size: 18px; }
  .help-cat ul { list-style: none; margin-top: 14px; display: flex; flex-direction: column; gap: 11px; }
  .help-cat li { font-size: 14px; color: var(--text-2); display: flex; align-items: center; gap: 9px; cursor: pointer; }
  .help-cat li:hover { color: var(--p); }
  .art-modal { position: fixed; inset: 0; z-index: 200; background: rgba(21,19,42,.55); backdrop-filter: blur(4px); display: none; align-items: flex-start; justify-content: center; padding: 60px 24px; overflow-y: auto; }
  .art-modal.open { display: flex; }
  .art-inner { width: 100%; max-width: 640px; background: #fff; border-radius: 20px; box-shadow: var(--shadow-lg); overflow: hidden; }
  .art-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; padding: 26px 28px 0; }
  .art-head h3 { font-size: 22px; }
  .art-x { width: 36px; height: 36px; border-radius: 10px; border: 1px solid var(--border); background: #fff; display: grid; place-items: center; cursor: pointer; color: var(--text-2); flex-shrink: 0; }
  .art-x:hover { background: var(--bg); color: var(--p); }
  .art-x svg { width: 18px; height: 18px; }
  .art-cat { font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--p); padding: 0 28px; margin-top: 14px; }
  .art-body { padding: 8px 28px 28px; }
  .art-body p { color: var(--text-2); font-size: 15px; line-height: 1.7; margin-top: 12px; }
  .art-body ul, .art-body ol { margin: 12px 0 0 18px; color: var(--text-2); font-size: 15px; line-height: 1.7; }
  .art-body li { margin-bottom: 6px; }
  .art-body code { background: var(--p-50); color: var(--p-dark); font-family: var(--font-code), "JetBrains Mono", monospace; font-size: 13px; padding: 2px 6px; border-radius: 6px; word-break: break-word; }
  .art-body strong { color: var(--ink); }
  .help-cat li svg { width: 15px; height: 15px; color: var(--text-3); flex-shrink: 0; }
  .help-contact { display: flex; align-items: center; justify-content: space-between; gap: 24px; background: var(--grad); border-radius: 20px; padding: 36px 40px; color: #fff; flex-wrap: wrap; margin-top: 40px; }
  .help-contact h3 { color: #fff; font-size: 22px; }
  .help-contact p { color: rgba(255,255,255,.88); margin-top: 6px; }
  @media (max-width: 1180px) { .blog-reading-layout { max-width: 760px; grid-template-columns: minmax(0, 1fr); } .blog-toc-card, .blog-article-side { position: static; } .blog-toc-card { order: -1; } .blog-article-side { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; } }
  @media (max-width: 920px) { .blog-grid, .blog-related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } .help-cats { grid-template-columns: 1fr; } .feature-post, .blog-feature-skeleton { grid-template-columns: 1fr; } .feature-post .fp-cover { aspect-ratio: 16 / 8; min-height: 0; } .blog-library-head, .blog-section-row { align-items: flex-start; flex-direction: column; } .blog-library-count { width: fit-content; } .blog-article-media { width: calc(100% - 44px); min-height: 0; } .blog-reading-layout { padding-left: 22px; padding-right: 22px; } .blog-article-footer { align-items: flex-start; flex-direction: column; } }
  @media (max-width: 640px) { .blog-hero-section { padding-top: 104px; } .blog-hero-panel { border-radius: 22px; padding: 32px 18px; } .blog-hero-panel h1 { font-size: clamp(36px, 11vw, 45px); } .blog-search-wrap { min-height: 50px; border-radius: 15px; } .blog-grid, .blog-related-grid, .blog-article-side { grid-template-columns: 1fr; } .feature-post, .blog-library-card { border-radius: 21px; } .feature-post .fp-cover, .post-cover { aspect-ratio: 16 / 9; min-height: 0; } .blog-article-view { padding-top: 102px; } .blog-back { margin-left: 0; } .blog-crumbs { padding: 4px 0 0; } .blog-article-hero { padding: 22px 0 26px; } .blog-article h1 { font-size: clamp(31px, 9.5vw, 38px); line-height: 1.08; } .blog-article-media { width: 100%; aspect-ratio: 16 / 9; min-height: 0; border-radius: 16px; margin-bottom: 32px; } .blog-fallback-art { padding: 18px; } .blog-fallback-art svg { width: 38px; height: 38px; } .blog-reading-layout { padding: 0 0 36px; } .blog-article-body > p:first-child, .blog-article-body p { font-size: 16px; line-height: 1.75; } .blog-article-body h2 { font-size: 25px; } .blog-article-body h3 { font-size: 21px; } .blog-article-body table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; } .blog-related-section { margin-top: 38px; padding-top: 32px; } .blog-article-footer { padding: 28px 22px; border-radius: 21px; } }
  @media (prefers-reduced-motion: reduce) { .feature-post, .post, .blog-related-card, .blog-section-link, .blog-share-action, .blog-filter-btn, .blog-card-media img, .post-read svg { transition: none !important; } .feature-post:hover, .post:hover, .blog-related-card:hover, .blog-section-link:hover, .blog-share-action:hover, .blog-filter-btn:hover { transform: none !important; } .blog-skeleton { animation: none; } .blog-reading-progress span { transition: none; } }

  /* reviews */
  .rev-summary { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 28px 36px; max-width: 760px; margin: 0 auto 48px; box-shadow: var(--shadow-sm); }
  .rev-score { text-align: center; }
  .rev-score .big { font-family: var(--font-brand), "Poppins"; font-size: 48px; font-weight: 700; color: var(--p); line-height: 1; }
  .rev-score .stars { color: #F5A623; letter-spacing: 2px; font-size: 16px; margin-top: 6px; }
  .rev-score .lbl { font-size: 13px; color: var(--text-2); margin-top: 4px; }
  .rev-divider { width: 1px; align-self: stretch; background: var(--border); }
  .rev-platforms { display: flex; gap: 30px; flex-wrap: wrap; }
  .rev-plat { text-align: center; }
  .rev-plat .pn { font-family: var(--font-brand), "Poppins"; font-weight: 700; font-size: 18px; }
  .rev-plat .pstars { color: #F5A623; font-size: 13px; letter-spacing: 1px; }
  .rev-plat .pcount { font-size: 12px; color: var(--text-3); }
  .video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 56px; }
  .video-card { background: #fff; border: 1px solid var(--border); border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-xs); transition: transform .18s, box-shadow .18s; }
  .video-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
  .video-thumb { position: relative; height: 180px; display: grid; place-items: center; cursor: pointer; overflow: hidden; }
  .video-thumb::after { content: ""; position: absolute; inset: 0; background: rgba(21,19,42,.18); }
  .video-play { position: relative; z-index: 1; width: 60px; height: 60px; border-radius: 50%; background: rgba(255,255,255,.92); display: grid; place-items: center; box-shadow: 0 8px 20px rgba(0,0,0,.25); transition: transform .16s; }
  .video-card:hover .video-play { transform: scale(1.08); }
  .video-play svg { width: 24px; height: 24px; color: var(--p); margin-left: 3px; }
  .video-dur { position: absolute; bottom: 12px; right: 12px; z-index: 1; background: rgba(21,19,42,.8); color: #fff; font-size: 11.5px; font-weight: 600; padding: 3px 8px; border-radius: 6px; }
  .video-meta { padding: 18px 20px; }
  .video-meta .vt { font-weight: 700; font-size: 15px; }
  .video-meta .vp { display: flex; align-items: center; gap: 10px; margin-top: 12px; }
  .video-meta .va { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-weight: 700; font-size: 13px; font-family: var(--font-brand), "Poppins"; flex-shrink: 0; }
  .video-meta .vn { font-weight: 600; font-size: 13.5px; }
  .video-meta .vr { font-size: 12px; color: var(--text-2); }
  .rev-text-grid { columns: 3; column-gap: 20px; }
  .rev-text { break-inside: avoid; background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 24px; box-shadow: var(--shadow-xs); margin-bottom: 20px; }
  .rev-text .stars { color: #F5A623; letter-spacing: 1px; font-size: 14px; }
  .rev-text .rq { font-size: 14.5px; line-height: 1.6; color: #2f2c45; margin: 12px 0 0; }
  .rev-text .ra { display: flex; align-items: center; gap: 11px; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--border-2); }
  .rev-text .ra .av { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-weight: 700; font-size: 13px; font-family: var(--font-brand), "Poppins"; flex-shrink: 0; }
  .rev-text .ra .an { font-weight: 600; font-size: 14px; }
  .rev-text .ra .at { font-size: 12.5px; color: var(--text-2); }
  .video-modal { position: fixed; inset: 0; z-index: 200; background: rgba(21,19,42,.8); backdrop-filter: blur(4px); display: none; align-items: center; justify-content: center; padding: 24px; }
  .video-modal.open { display: flex; }
  .video-modal .vm-inner { width: 100%; max-width: 760px; background: #000; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-lg); position: relative; }
  .video-modal .vm-frame { aspect-ratio: 16/9; display: grid; place-items: center; background: linear-gradient(135deg,#241E4D,#15132A); color: #cfcbe8; text-align: center; padding: 30px; }
  .video-modal .vm-frame svg { width: 56px; height: 56px; color: #fff; opacity: .8; margin-bottom: 14px; }
  .video-modal .vm-close { position: absolute; top: -44px; right: 0; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.15); display: grid; place-items: center; color: #fff; cursor: pointer; }
  .video-modal .vm-close svg { width: 18px; height: 18px; }
  @media (max-width: 880px) { .video-grid { grid-template-columns: 1fr; } .rev-text-grid { columns: 1; } }

  /* legal */
  .legal-tabs { display: flex; justify-content: center; gap: 8px; margin-bottom: 40px; flex-wrap: wrap; }
  .legal-tab { font-family: inherit; font-size: 14.5px; font-weight: 600; padding: 10px 22px; border-radius: 999px; border: 1px solid var(--border); background: #fff; color: var(--text-2); cursor: pointer; transition: all .14s; }
  .legal-tab:hover { border-color: var(--p); color: var(--p); }
  .legal-tab.active { background: var(--grad); color: #fff; border-color: transparent; box-shadow: 0 6px 16px rgba(74,27,240,.26); }
  .legal-doc { display: none; max-width: 800px; margin: 0 auto; }
  .legal-doc.active { display: block; }
  .legal-doc .updated { font-size: 13.5px; color: var(--text-3); font-weight: 500; margin-bottom: 28px; }
  .legal-doc h3 { font-size: 20px; margin: 32px 0 10px; }
  .legal-doc h3:first-of-type { margin-top: 0; }
  .legal-doc p { color: var(--text-2); font-size: 15.5px; line-height: 1.7; margin-bottom: 14px; }
  .legal-doc ul { margin: 0 0 16px 20px; color: var(--text-2); font-size: 15.5px; line-height: 1.7; }
  .legal-doc ul li { margin-bottom: 6px; }
  .legal-doc strong { color: var(--ink); }
  .legal-intro { background: var(--p-50); border: 1px solid #e6e2f8; border-radius: 14px; padding: 18px 20px; font-size: 15px; color: var(--ink-2); margin-bottom: 28px; }

  /* contact */
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
  .field { margin-bottom: 18px; }
  .field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 7px; }
  .field input, .field select, .field textarea { width: 100%; border: 1.5px solid var(--border); border-radius: 11px; padding: 12px 15px; font-family: inherit; font-size: 15px; outline: none; background: #fff; }
  .field input:focus, .field select:focus, .field textarea:focus { border-color: var(--p); box-shadow: 0 0 0 4px var(--p-50); }
  .field textarea { min-height: 130px; resize: vertical; }
  .contact-info { background: var(--grad); color: #fff; border-radius: 20px; padding: 34px; }
  .contact-info h3 { color: #fff; margin-bottom: 18px; }
  .ci-item { display: flex; align-items: flex-start; gap: 13px; margin-bottom: 20px; }
  .ci-item .ci-ic { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.16); display: grid; place-items: center; flex-shrink: 0; }
  .ci-item .ci-ic svg { width: 18px; height: 18px; }
  .ci-item .t { font-weight: 600; font-size: 14.5px; }
  .ci-item .s { font-size: 13.5px; opacity: .9; }

  /* big CTA */
  .big-cta { position: relative; overflow: hidden; text-align: center; padding: 100px 24px; background: radial-gradient(820px 360px at 50% -40px, var(--p-light), transparent 70%), linear-gradient(180deg, var(--bg), var(--p-50)); }
  .big-cta::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(var(--border-2) 1px, transparent 1px), linear-gradient(90deg, var(--border-2) 1px, transparent 1px); background-size: 54px 54px; -webkit-mask-image: radial-gradient(560px 300px at 50% 40%, #000, transparent 75%); mask-image: radial-gradient(560px 300px at 50% 40%, #000, transparent 75%); opacity: .6; }
  .big-cta-inner { position: relative; max-width: 720px; margin: 0 auto; }
  .big-cta h2 { font-size: 56px; margin: 22px 0 0; }
  .big-cta .sub { font-size: 19px; color: var(--text-2); max-width: 540px; margin: 20px auto 0; }
  .cta-actions { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 34px; flex-wrap: wrap; }
  .see-link { font-size: 15px; font-weight: 600; color: var(--ink); cursor: pointer; display: inline-flex; align-items: center; gap: 6px; }
  .see-link:hover { color: var(--p); }
  .see-link svg { width: 16px; height: 16px; }
  .trust-chips { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
  .trust-chip { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--border); border-radius: 999px; padding: 9px 16px; font-size: 13.5px; font-weight: 500; box-shadow: var(--shadow-xs); }
  .trust-chip svg { width: 16px; height: 16px; color: var(--green); }

  /* footer */
  footer { background: linear-gradient(160deg, #241E4D 0%, #1A1638 60%, #15132A 100%); color: #b3afca; padding: 60px 0 30px; }
  .foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 36px; }
  .foot-brand .brand-name { color: #fff; }
  .foot-brand .brand-logo-img { width: min(166px, 100%); height: auto; }
  .foot-brand p { font-size: 14px; margin-top: 14px; max-width: 270px; line-height: 1.6; }
  .foot-social { display: flex; gap: 10px; margin-top: 20px; }
  .foot-social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.07); display: grid; place-items: center; cursor: pointer; transition: background .14s; }
  .foot-social a:hover { background: var(--p); }
  .foot-social svg { width: 17px; height: 17px; color: #cfcdda; }
  .foot-col h4 { color: #fff; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 16px; font-family: var(--font-brand), "Poppins"; }
  .foot-col a { display: block; font-size: 14px; padding: 6px 0; cursor: pointer; }
  .foot-col a:hover { color: #fff; }
  .foot-bot { border-top: 1px solid rgba(255,255,255,.08); margin-top: 44px; padding-top: 24px; font-size: 13px; color: #807c95; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

  @media (max-width: 980px) {
    h1 { font-size: 42px; } h2 { font-size: 30px; } .big-cta h2 { font-size: 40px; }
    .hero-grid { grid-template-columns: 1fr; gap: 44px; }
    .hero-demo-side { width: 100%; max-width: 500px; }
    .bento { grid-template-columns: 1fr 1fr; }
    .bento .span2 { grid-column: span 2; }
    .price-grid, .values, .status-grid, .calc { grid-template-columns: 1fr; }
    .stat-band { grid-template-columns: repeat(2, 1fr); }
    .payg-grid { grid-template-columns: repeat(2, 1fr); }
    .frow, .frow.flip { grid-template-columns: 1fr; gap: 28px; }
    .frow .fr-media, .frow.flip .fr-media { order: 0; }
    .contact-grid { grid-template-columns: 1fr; gap: 28px; }
    .foot-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
    .nav { padding: 12px 0 8px; }
    .nav-inner { width: calc(100% - 28px); max-width: none; justify-content: space-between; padding: 8px 10px 8px 14px; min-height: 58px; }
    .page > section:first-child { padding-top: 166px; }
    .page > section.hero:first-child { padding-top: 148px; }
    .nav .brand { padding-right: 0; }
    .nav .brand::after { display: none; }
    .nav.scrolled .brand { gap: 10px; padding-right: 0; }
    .nav.scrolled .brand-logo-img { width: 150px; max-width: 150px; object-fit: contain; transform: none; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .nav-right .btn-ghost { display: none; }
    .nav-signup,
    .nav.scrolled .nav-signup {
      max-width: 112px;
      margin-left: 0;
      padding-left: 17px !important;
      padding-right: 17px !important;
      border-width: 1.5px;
      opacity: 1;
      pointer-events: auto;
      transform: none;
    }
    .calc-out { border-left: none; border-top: 1px solid rgba(255,255,255,.08); }
    .compare { font-size: 14px; } .compare th, .compare td { padding: 13px 14px; }
  }
  @media (max-width: 600px) {
    .wrap { padding-left: 16px; padding-right: 16px; }
    .nav { padding-top: 10px; padding-bottom: 8px; }
    .nav-inner { width: calc(100% - 20px); min-height: 56px; padding: 7px 8px 7px 12px; }
    .nav .brand-logo-img { width: min(142px, 42vw); max-width: 142px; }
    .nav-right { margin-left: 8px; gap: 7px; }
    .nav-right .btn { padding: 9px 13px; font-size: 13.5px; }
    .mobile-menu { inset: 78px 10px auto; max-height: calc(100vh - 92px); padding-left: 16px; padding-right: 16px; }
    .page > section:first-child { padding-top: 134px; }
    .page > section.hero:first-child { padding-top: 126px; }
    h1 { font-size: clamp(34px, 10vw, 40px); }
    h2, .frow h2 { font-size: 27px; }
    .lead, .sec-head p { font-size: 16px; }
    .hero { padding: 52px 0 60px; }
    .hero-grid { gap: 32px; }
    .hero-cta, .demo-w { flex-direction: column; align-items: stretch; }
    .hero-input, .demo-w input { width: 100%; min-height: 48px; }
    .hero-cta .btn, .demo-w .btn { width: 100%; }
    .console-top, .console-body { padding-left: 14px; padding-right: 14px; }
    .console-foot { gap: 5px; padding-left: 14px; padding-right: 14px; }
    .con-stat { padding: 12px 4px; }
    .con-stat .n { font-size: 19px; }
    .con-stat .l { font-size: 10.5px; }
    .bento, .stat-band, .payg-grid { grid-template-columns: 1fr; }
    .bento .span2 { grid-column: span 1; }
    section { padding: 60px 0; } .hero-checks { gap: 14px; }
    .slider-card, .calc-in, .calc-out { padding: 28px 22px; }
    .vol-price .amt { font-size: 42px; }
    .fr-media { width: 100%; max-width: 100%; padding: 18px; overflow: hidden; }
    .score-demo { align-items: flex-start; flex-wrap: wrap; }
    .compare, .res-table, .ep-table { display: block; width: 100%; max-width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .code-top { max-width: 100%; overflow-x: auto; }
    .code-method { white-space: nowrap; }
    .feature-post .fp-body { padding: 26px 22px; }
    .book-call, .help-contact { padding: 28px 22px; }
    .art-modal { padding: 18px 12px; }
    .art-head { padding: 22px 20px 0; }
    .art-cat { padding-left: 20px; padding-right: 20px; }
    .art-body { padding: 8px 20px 24px; }
    .contact-grid { width: 100%; }
    .contact-grid :is(input, select, textarea) { min-width: 0; }
    .ci-item > div:last-child, .foot-brand p { overflow-wrap: anywhere; }
  }
  @media (max-width: 360px) {
    .nav-right > .btn-primary { display: none; }
    .brand-logo-img { width: min(142px, 100%); height: auto; }
    .hamburger { width: 40px; height: 40px; }
    .console-live { padding: 4px 8px; }
    .footer .wrap { padding-left: 14px; padding-right: 14px; }
  }
