@layer reset,
base,
layout,
components,
utilities;

@layer reset {

  *,
  *::before,
  *::after {
    box-sizing: border-box
  }

  html {
    scroll-behavior: smooth
  }

  body,
  h1,
  h2,
  h3,
  p,
  ul {
    margin: 0
  }

  img {
    display: block;
    max-width: 100%;
    height: auto;
    height: auto!important;
  }

  button,
  input {
    font: inherit
  }

  a {
    color: inherit
  }

  ul {
    padding: 0;
    list-style: none
  }
}

@layer base {
  :root {
    --ve8r-ink: #0b1e3b;
    --ve8r-navy: #08275c;
    --ve8r-blue: #0f63c8;
    --ve8r-cyan: #1fc8e9;
    --ve8r-sky: #eaf8ff;
    --ve8r-mist: #f6fbfe;
    --ve8r-line: #cfe7f3;
    --ve8r-good: #157458;
    --ve8r-white: #fff;
    --ve8r-shadow: 0 18px 55px rgba(7, 40, 91, .12);
    --ve8r-radius: 28px;
    --ve8r-max: 1180px
  }

  body {
    font-family: "Segoe UI Variable", "Aptos", Inter, system-ui, -apple-system, sans-serif;
    color: var(--ve8r-ink);
    background: #fff;
    line-height: 1.68;
    font-size: 17px;
    text-rendering: optimizeLegibility
  }

  h1,
  h2,
  h3 {
    line-height: 1.12;
    letter-spacing: -.03em;
    color: var(--ve8r-navy)
  }

  h1 {
    font-size: clamp(2.55rem, 6vw, 5.45rem)
  }

  h2 {
    font-size: clamp(2rem, 4.2vw, 3.55rem)
  }

  h3 {
    font-size: clamp(1.2rem, 2vw, 1.5rem)
  }

  p+p {
    margin-top: 1rem
  }

  .ve8r-shell {
    width: min(calc(100% - 36px), var(--ve8r-max));
    margin-inline: auto
  }

  .ve8r-muted {
    color: #49617d
  }

  .ve8r-kicker {
    text-transform: uppercase;
    letter-spacing: .16em;
    font-weight: 800;
    font-size: .78rem;
    color: var(--ve8r-blue)
  }

  .ve8r-skip {
    position: fixed;
    left: 12px;
    top: -100px;
    z-index: 999;
    background: #fff;
    padding: 10px 14px;
    border-radius: 10px;
    box-shadow: var(--ve8r-shadow)
  }

  .ve8r-skip:focus {
    top: 12px
  }

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

@layer layout {
  .ve8r-header {
    position: sticky;
    top: 0;
    z-index: 90;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(15, 99, 200, .09)
  }

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

  .ve8r-brand {
    font-size: 1.28rem;
    font-weight: 900;
    text-decoration: none;
    color: var(--ve8r-navy);
    letter-spacing: -.04em
  }

  .ve8r-brand span {
    color: var(--ve8r-cyan)
  }

  .ve8r-links {
    display: flex;
    align-items: center;
    gap: 21px;
    font-size: .94rem;
    font-weight: 700
  }

  .ve8r-links a {
    text-decoration: none
  }

  .ve8r-menu {
    display: none;
    background: none;
    border: 0;
    font-size: 1.6rem;
    color: var(--ve8r-navy)
  }

  .ve8r-hero {
    position: relative;
    overflow: hidden;
    padding: 58px 0 76px;
    background: radial-gradient(circle at 78% 28%, rgba(31, 200, 233, .2), transparent 28%), linear-gradient(135deg, #f8fdff 0, #eaf7ff 62%, #fff 100%)
  }

  .ve8r-hero::after {
    content: "";
    position: absolute;
    inset: auto -10% -170px 48%;
    height: 330px;
    border-radius: 50%;
    background: rgba(15, 99, 200, .08);
    transform: rotate(-7deg)
  }

  .ve8r-hero-grid {
    display: grid;
    grid-template-columns: 1.07fr .93fr;
    align-items: center;
    gap: 54px;
    position: relative;
    z-index: 1
  }

  .ve8r-hero h1 span {
    color: var(--ve8r-blue)
  }

  .ve8r-lede {
    font-size: clamp(1.08rem, 1.7vw, 1.28rem);
    max-width: 680px;
    margin-top: 20px;
    color: #36516f
  }

  .ve8r-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 26px 0
  }

  .ve8r-point {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    background: rgba(255, 255, 255, .72);
    border: 1px solid #d9eef8;
    border-radius: 14px;
    padding: 12px 14px;
    font-weight: 700
  }

  .ve8r-point b {
    color: var(--ve8r-good)
  }

  .ve8r-hero-media {
    position: relative
  }

  .ve8r-glass {
    background: rgba(255, 255, 255, .74);
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: 46px;
    padding: 28px;
    box-shadow: var(--ve8r-shadow);
    transform: rotate(1.2deg)
  }

  .ve8r-glass img {
    margin: auto;
    max-height: 540px;
    object-fit: contain
  }

  .ve8r-float {
    position: absolute;
    right: -18px;
    bottom: 10%;
    background: #fff;
    border-radius: 18px;
    padding: 12px 16px;
    box-shadow: 0 14px 35px rgba(10, 47, 96, .18);
    font-weight: 800;
    color: var(--ve8r-navy)
  }

  .ve8r-section {
    padding: 86px 0
  }

  .ve8r-section.ve8r-soft {
    background: var(--ve8r-mist)
  }

  .ve8r-section.ve8r-bluewash {
    background: linear-gradient(180deg, #eef9ff, #fff)
  }

  .ve8r-head {
    max-width: 780px;
    margin: 0 auto 38px;
    text-align: center
  }

  .ve8r-head p {
    margin-top: 13px;
    color: #526c86
  }

  .ve8r-grid4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px
  }

  .ve8r-grid3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px
  }

  .ve8r-card {
    background: #fff;
    border: 1px solid var(--ve8r-line);
    border-radius: 22px;
    padding: 25px;
    box-shadow: 0 10px 28px rgba(8, 39, 92, .06)
  }

  .ve8r-card .ve8r-num {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: var(--ve8r-sky);
    color: var(--ve8r-blue);
    font-weight: 900;
    margin-bottom: 18px
  }

  .ve8r-card p {
    margin-top: 10px;
    color: #526c86;
    font-size: .97rem
  }

  .ve8r-split {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 52px;
    align-items: center
  }

  .ve8r-split.ve8r-reverse {
    grid-template-columns: 1.08fr .92fr
  }

  .ve8r-media-card {
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--ve8r-shadow);
    background: #e8f8ff
  }

  .ve8r-media-card img {
    width: 100%;
    height: 100%;
    object-fit: cover
  }

  .ve8r-prose h2 {
    margin-bottom: 18px
  }

  .ve8r-prose p {
    color: #425d79
  }

  .ve8r-prose .ve8r-cta {
    margin-top: 26px
  }

  .ve8r-checks {
    display: grid;
    gap: 15px;
    margin-top: 25px
  }

  .ve8r-check {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 15px;
    padding: 18px 0;
    border-top: 1px solid var(--ve8r-line)
  }

  .ve8r-check:first-child {
    border-top: 0
  }

  .ve8r-check i {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--ve8r-blue);
    color: #fff;
    font-style: normal;
    font-weight: 900
  }

  .ve8r-check p {
    font-size: .96rem;
    margin-top: 5px
  }

  .ve8r-package {
    position: relative;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    min-height: 100%;
    padding: 28px
  }

  .ve8r-package img {
    height: 210px;
    object-fit: contain;
    margin: 5px auto 15px
  }

  .ve8r-package .ve8r-tag {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--ve8r-navy);
    color: #fff;
    padding: 7px 11px;
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 800
  }

  .ve8r-price {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--ve8r-blue);
    margin: 8px 0 14px
  }

  .ve8r-price .ve8r-perunit {
    font-size: .78rem;
    font-weight: 700;
    color: var(--ve8r-ink);
    opacity: .6;
    margin-left: 2px
  }

  .ve8r-pricerow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: -6px 0 10px;
    font-size: .92rem
  }

  .ve8r-pricerow .ve8r-total {
    font-weight: 800;
    color: var(--ve8r-navy)
  }

  .ve8r-pricerow del {
    color: var(--ve8r-ink);
    opacity: .45
  }

  .ve8r-savepill {
    background: var(--ve8r-good);
    color: #fff;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 800
  }

  .ve8r-shipnote {
    font-size: .82rem;
    opacity: .75;
    margin-bottom: 12px
  }

  .ve8r-package p {
    min-height: 54px
  }

  .ve8r-package .ve8r-btn {
    margin-top: auto
  }

  .ve8r-featured {
    border: 2px solid var(--ve8r-cyan);
    transform: translateY(-10px)
  }

  .ve8r-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background: linear-gradient(135deg, var(--ve8r-blue), #0b8ed3);
    color: #fff;
    text-decoration: none;
    font-weight: 900;
    border-radius: 999px;
    padding: 15px 24px;
    box-shadow: 0 12px 28px rgba(15, 99, 200, .2);
    border: 0
  }

  .ve8r-btn:hover {
    transform: translateY(-1px)
  }

  .ve8r-btn.ve8r-secondary {
    background: #fff;
    color: var(--ve8r-navy);
    border: 1px solid var(--ve8r-line);
    box-shadow: none
  }

  .ve8r-btn.ve8r-small {
    padding: 11px 17px;
    font-size: .9rem
  }

  .ve8r-strip {
    background: var(--ve8r-navy);
    color: #fff;
    padding: 18px 0
  }

  .ve8r-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px
  }

  .ve8r-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 800;
    font-size: .9rem
  }

  .ve8r-trust img {
    width: 44px;
    height: 44px;
    object-fit: contain
  }

  .ve8r-widevisual {
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--ve8r-shadow);
    margin-top: 36px
  }

  .ve8r-widevisual img {
    width: 100%
  }

  .ve8r-ingrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
  }

  .ve8r-ing {
    display: grid;
    grid-template-columns: 86px 1fr;
    gap: 17px;
    align-items: center
  }

  .ve8r-ing img {
    width: 86px;
    height: 72px;
    object-fit: cover;
    border-radius: 16px
  }

  .ve8r-ing p {
    font-size: .92rem
  }

  .ve8r-note {
    margin-top: 26px;
    padding: 18px 20px;
    border: 1px solid #bee5f2;
    border-radius: 18px;
    background: #f3fbff;
    color: #3d5872;
    font-size: .95rem
  }

  .ve8r-benefits {
    display: grid;
    gap: 14px;
    max-width: 900px;
    margin: 0 auto
  }

  .ve8r-benefit {
    display: grid;
    grid-template-columns: 55px 1fr;
    gap: 16px;
    padding: 21px 24px;
    border: 1px solid var(--ve8r-line);
    border-radius: 20px;
    background: #fff
  }

  .ve8r-benefit strong {
    font-size: 1.12rem;
    color: var(--ve8r-navy)
  }

  .ve8r-benefit span {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ve8r-cyan), var(--ve8r-blue));
    color: #fff;
    font-size: 1.2rem;
    font-weight: 900
  }

  .ve8r-benefit p {
    margin-top: 5px;
    color: #526c86
  }

  .ve8r-reviewgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
  }

  .ve8r-review {
    background: #fff;
    border: 1px solid var(--ve8r-line);
    border-radius: 22px;
    padding: 24px;
    border-top: 5px solid var(--ve8r-cyan)
  }

  .ve8r-review small {
    display: block;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--ve8r-blue);
    font-weight: 900
  }

  .ve8r-review h3 {
    margin: 10px 0
  }

  .ve8r-review p {
    color: #526c86
  }

  .ve8r-disclosure {
    margin-top: 22px;
    text-align: center;
    font-size: .9rem;
    color: #5f7185
  }

  .ve8r-guarantee {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 40px;
    align-items: center;
    border-radius: 34px;
    padding: 30px;
    background: linear-gradient(135deg, #effaff, #fff);
    border: 1px solid var(--ve8r-line)
  }

  .ve8r-guarantee img {
    border-radius: 24px
  }

  .ve8r-alert {
    margin-top: 18px;
    padding: 15px;
    border-left: 4px solid #d79815;
    background: #fff8e6;
    color: #73570d;
    border-radius: 0 13px 13px 0
  }

  .ve8r-faq {
    max-width: 900px;
    margin: auto;
    display: grid;
    gap: 12px
  }

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

  .ve8r-faq summary {
    cursor: pointer;
    font-weight: 850;
    padding: 19px 4px;
    color: var(--ve8r-navy)
  }

  .ve8r-faq details p {
    padding: 0 4px 19px;
    color: #526c86
  }

  .ve8r-final {
    background: linear-gradient(135deg, var(--ve8r-navy), #0a4e9c 72%, #119fcf);
    color: #fff;
    text-align: center;
    padding: 82px 0;
    overflow: hidden
  }

  .ve8r-final h2,
  .ve8r-final p {
    color: #fff
  }

  .ve8r-final img {
    max-height: 330px;
    margin: 28px auto
  }

  .ve8r-final .ve8r-btn {
    background: #fff;
    color: var(--ve8r-navy)
  }

  .ve8r-footer {
    background: #07172f;
    color: #c9d6e6;
    padding: 52px 0 30px
  }

  .ve8r-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px
  }

  .ve8r-footer a {
    text-decoration: none
  }

  .ve8r-footer h3 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 12px
  }

  .ve8r-footer li+li {
    margin-top: 8px
  }

  .ve8r-legal {
    border-top: 1px solid rgba(255, 255, 255, .1);
    margin-top: 35px;
    padding-top: 25px;
    font-size: .85rem;
    color: #9cb0c8
  }

  .ve8r-subhero {
    padding: 65px 0 42px;
    background: linear-gradient(135deg, #eef9ff, #fff)
  }

  .ve8r-breadcrumb {
    font-size: .86rem;
    color: #60758d;
    margin-bottom: 15px
  }

  .ve8r-article {
    width: min(calc(100% - 36px), 840px);
    margin: 0 auto;
    padding: 60px 0
  }

  .ve8r-article h2 {
    font-size: clamp(1.7rem, 3vw, 2.35rem);
    margin: 38px 0 13px
  }

  .ve8r-article h3 {
    margin: 28px 0 9px
  }

  .ve8r-article p,
  .ve8r-article li {
    color: #3f5973
  }

  .ve8r-article ul {
    list-style: disc;
    padding-left: 22px
  }

  .ve8r-article li+li {
    margin-top: 8px
  }

  .ve8r-article .ve8r-note {
    margin: 26px 0
  }

  .ve8r-bloggrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px
  }

  .ve8r-blogcard {
    border: 1px solid var(--ve8r-line);
    border-radius: 23px;
    padding: 25px;
    background: #fff
  }

  .ve8r-blogcard a {
    font-weight: 900;
    text-decoration: none;
    color: var(--ve8r-navy)
  }

  .ve8r-blogcard p {
    margin: 10px 0 16px;
    color: #526c86
  }

  .ve8r-meta {
    font-size: .83rem;
    color: #6d8095;
    text-transform: uppercase;
    letter-spacing: .1em
  }

  .ve8r-orderbox {
    width: min(calc(100% - 36px), 760px);
    margin: 70px auto;
    background: #fff;
    border: 1px solid var(--ve8r-line);
    border-radius: 32px;
    padding: 40px;
    text-align: center;
    box-shadow: var(--ve8r-shadow)
  }

  .ve8r-orderbox img {
    max-height: 320px;
    margin: 12px auto 24px
  }
}

@layer utilities {
  .ve8r-mt {
    margin-top: 24px
  }

  .ve8r-center {
    text-align: center
  }

  .ve8r-hidden {
    display: none !important
  }

  [data-ve8r-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: .55s ease
  }

  [data-ve8r-reveal].ve8r-seen {
    opacity: 1;
    transform: none
  }
}

@media(max-width:920px) {
  .ve8r-menu {
    display: block
  }

  .ve8r-links {
    display: none;
    position: absolute;
    top: 76px;
    left: 18px;
    right: 18px;
    background: #fff;
    border: 1px solid var(--ve8r-line);
    border-radius: 18px;
    padding: 17px;
    box-shadow: var(--ve8r-shadow);
    flex-direction: column;
    align-items: stretch
  }

  .ve8r-links.ve8r-open {
    display: flex
  }

  .ve8r-hero-grid,
  .ve8r-split,
  .ve8r-split.ve8r-reverse,
  .ve8r-guarantee {
    grid-template-columns: 1fr
  }

  .ve8r-hero-grid {
    gap: 34px
  }

  .ve8r-glass {
    max-width: 570px;
    margin: auto
  }

  .ve8r-grid4 {
    grid-template-columns: repeat(2, 1fr)
  }

  .ve8r-grid3,
  .ve8r-ingrid,
  .ve8r-reviewgrid {
    grid-template-columns: 1fr 1fr
  }

  .ve8r-strip-grid {
    grid-template-columns: 1fr 1fr
  }

  .ve8r-footer-grid {
    grid-template-columns: 1fr 1fr
  }

  .ve8r-featured {
    transform: none
  }
}

@media(max-width:640px) {
  body {
    font-size: 16.5px
  }

  .ve8r-shell {
    width: min(calc(100% - 26px), var(--ve8r-max))
  }

  .ve8r-hero {
    padding-top: 38px
  }

  .ve8r-points,
  .ve8r-grid4,
  .ve8r-grid3,
  .ve8r-ingrid,
  .ve8r-reviewgrid,
  .ve8r-bloggrid,
  .ve8r-strip-grid,
  .ve8r-footer-grid {
    grid-template-columns: 1fr
  }

  .ve8r-section {
    padding: 62px 0
  }

  .ve8r-float {
    right: 2px;
    bottom: 4%
  }

  .ve8r-ing {
    grid-template-columns: 72px 1fr
  }

  .ve8r-ing img {
    width: 72px;
    height: 65px
  }

  .ve8r-package img {
    height: 185px
  }

  .ve8r-guarantee,
  .ve8r-orderbox {
    padding: 23px
  }

  .ve8r-nav {
    min-height: 68px
  }

  .ve8r-links {
    top: 68px
  }

  .ve8r-final {
    padding: 65px 0
  }
}

@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important
  }

  [data-ve8r-reveal] {
    opacity: 1;
    transform: none
  }
}