:root {
  --ink: #0b1728;
  --muted: #607086;
  --line: #dce3eb;
  --surface: #ffffff;
  --surface-soft: #f4f7fa;
  --blue: #1769e0;
  --blue-dark: #0c3f91;
  --navy: #071629;
  --green: #18a66a;
  --green-soft: #e5f7ef;
  --shadow: 0 30px 80px rgba(16, 35, 61, .12);
  --radius-lg: 32px;
  --radius-md: 22px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
svg { display: block; }
.svg-library { position: absolute; width: 0; height: 0; overflow: hidden; }
.ui-icon { width: 1.35em; height: 1.35em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.narrow { max-width: 870px; }
.center { text-align: center; }
.section-pad { padding: 118px 0; }

.skip-link {
  position: fixed; top: 12px; left: 12px; z-index: 100;
  padding: 10px 14px; border-radius: 10px; color: #fff; background: var(--navy);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid rgba(220, 227, 235, .8);
  background: rgba(255, 255, 255, .86);
  backdrop-filter: saturate(160%) blur(18px);
}
.nav-wrap { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-size: 18px; font-weight: 500; letter-spacing: -.02em; }
.brand strong { color: var(--blue); font-weight: 750; }
.brand-mark { width: 30px; height: 30px; }
.brand-mark svg { width: 100%; fill: var(--blue); }
.brand-mark .brand-check { fill: none; stroke: #fff; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2.4; }
.main-nav { display: flex; align-items: center; gap: 34px; color: #4f5e72; font-size: 14px; font-weight: 500; }
.main-nav a { transition: color .2s ease; }
.main-nav a:hover { color: var(--blue); }

.nav-toggle {
  display: none; width: 40px; height: 40px; padding: 0; border: 0;
  border-radius: 10px; background: transparent; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle span { width: 20px; height: 2px; border-radius: 2px; background: var(--ink); transition: transform .25s ease, opacity .25s ease; }
.nav-toggle:focus-visible { outline: 3px solid rgba(23, 105, 224, .28); outline-offset: 2px; }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
body.nav-open { overflow: hidden; }

.mobile-nav[hidden] { display: none; }
.mobile-nav {
  position: absolute; top: 100%; left: 0; right: 0; z-index: 49;
  width: 100%; height: calc(100dvh - 74px); min-height: calc(100vh - 74px);
  padding: 28px 20px 32px; overflow-y: auto;
  display: flex; flex-direction: column; gap: 26px;
  overscroll-behavior: contain;
  background: #fff;
  border-top: 1px solid rgba(220, 227, 235, .8);
  box-shadow: 0 24px 50px rgba(15, 34, 59, .12);
}
.mobile-nav nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav nav a {
  padding: 14px 6px; border-bottom: 1px solid #eef1f5;
  color: var(--ink); font-size: 17px; font-weight: 600;
}
.mobile-nav .button { width: 100%; }

.button {
  min-height: 52px; padding: 0 24px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-size: 15px; font-weight: 650; letter-spacing: -.01em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, .text-link:focus-visible, .main-nav a:focus-visible { outline: 3px solid rgba(23, 105, 224, .28); outline-offset: 3px; }
.button-small { min-height: 42px; padding-inline: 19px; font-size: 13px; }
.button-dark { color: #fff; background: var(--ink); }
.button-primary { color: #fff; background: var(--blue); box-shadow: 0 14px 28px rgba(23, 105, 224, .24); }
.button-primary:hover { background: #0f5ecf; box-shadow: 0 18px 34px rgba(23, 105, 224, .3); }
.button-light { color: var(--navy); background: #fff; white-space: nowrap; }

.hero {
  position: relative; overflow: hidden; padding: 88px 0 112px;
  background:
    radial-gradient(circle at 72% 35%, rgba(59, 140, 246, .13), transparent 30%),
    linear-gradient(180deg, #fbfdff 0%, #f3f7fb 100%);
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: linear-gradient(rgba(15, 55, 100, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(15, 55, 100, .04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000, transparent 85%);
}
.hero-grid { position: relative; display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: 70px; }
.eyebrow { margin: 0 0 20px; color: var(--blue); font-size: 12px; font-weight: 750; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow.neutral { color: #63768d; }
.eyebrow.light { color: #9bc6ff; }
.status-dot { width: 8px; height: 8px; display: inline-block; margin-right: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(24, 166, 106, .12); }
.hero h1, .section-heading h2, .statement h2, .destination-copy h2, .visibility h2, .pricing-copy h2, .download-copy h2, .cta-card h2 { margin: 0; letter-spacing: -.055em; line-height: 1.05; }
.hero h1 { max-width: 650px; font-size: clamp(52px, 6vw, 80px); font-weight: 650; }
.hero h1 span { color: var(--blue); }
.hero-lead { max-width: 590px; margin: 28px 0 32px; color: var(--muted); font-size: 18px; line-height: 1.75; }
.hero-actions { display: flex; align-items: center; gap: 28px; }
.text-link { color: #24364e; font-size: 14px; font-weight: 650; }
.text-link span { margin-left: 5px; transition: margin .2s ease; }
.text-link:hover span { margin-left: 10px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 11px 18px; margin-top: 36px; color: #53647a; font-size: 12px; font-weight: 550; }
.trust-row span { display: inline-flex; align-items: center; gap: 7px; }
.trust-row svg { width: 17px; height: 17px; padding: 3px; border-radius: 50%; background: var(--green-soft); fill: none; stroke: var(--green); stroke-width: 2.2; }

.product-visual { position: relative; min-height: 570px; display: grid; place-items: center; }
.visual-glow { position: absolute; width: 480px; height: 480px; border-radius: 50%; background: rgba(68, 143, 238, .18); filter: blur(70px); }
.product-screenshot { position: relative; z-index: 2; width: min(100%, 590px); margin: 0; padding: 9px; border: 1px solid rgba(195,207,222,.9); border-radius: 26px; background: rgba(255,255,255,.88); box-shadow: 0 35px 85px rgba(14,35,61,.2); backdrop-filter: blur(16px); transform: translateY(18px); opacity: 0; }
.product-visual.is-visible .product-screenshot { animation: screenshot-in .8s cubic-bezier(.2,.8,.2,1) .08s forwards; }
.product-screenshot img { width: 100%; height: auto; aspect-ratio: 1200 / 820; display: block; object-fit: cover; border-radius: 18px; background: #eef3f8; }
.product-screenshot figcaption { position: absolute; left: 25px; bottom: 22px; padding: 8px 11px; border: 1px solid rgba(255,255,255,.35); border-radius: 999px; display: flex; align-items: center; gap: 7px; color: #fff; background: rgba(8,24,43,.72); backdrop-filter: blur(10px); font-size: 9px; font-weight: 650; }
.live-dot { width: 6px; height: 6px; border-radius: 50%; background: #45d391; box-shadow: 0 0 0 3px rgba(69,211,145,.18); }
@keyframes screenshot-in { to { transform: translateY(0); opacity: 1; } }
.app-window { position: relative; z-index: 2; width: min(100%, 540px); overflow: hidden; border: 1px solid rgba(208, 219, 232, .9); border-radius: 28px; background: rgba(255, 255, 255, .96); box-shadow: var(--shadow); }
.window-top { min-height: 56px; padding: 0 21px; border-bottom: 1px solid #e8edf3; display: flex; align-items: center; justify-content: space-between; }
.window-brand { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; }
.mini-shield { width: 21px; height: 21px; display: grid; place-items: center; border-radius: 7px; color: #fff; background: var(--blue); font-size: 11px; }
.window-dots { display: flex; gap: 6px; }
.window-dots i { width: 6px; height: 6px; border-radius: 50%; background: #d7dee7; }
.window-body { padding: 38px 38px 31px; text-align: center; }
.success-icon { width: 62px; height: 62px; margin: auto; border-radius: 20px; display: grid; place-items: center; background: var(--green-soft); }
.success-icon svg { width: 42px; fill: none; stroke: var(--green); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.success-label { margin: 19px 0 7px; color: var(--green); font-size: 10px; font-weight: 800; letter-spacing: .14em; }
.window-body h2 { margin: 0; font-size: 24px; letter-spacing: -.035em; }
.success-time { margin: 6px 0 26px; color: #8996a7; font-size: 12px; }
.backup-summary { overflow: hidden; border: 1px solid #e4eaf1; border-radius: 17px; text-align: left; }
.backup-summary > div { min-height: 70px; padding: 12px 15px; display: grid; grid-template-columns: 38px 1fr auto; align-items: center; gap: 12px; }
.backup-summary > div + div { border-top: 1px solid #e8edf2; }
.backup-summary p { margin: 0; line-height: 1.3; }
.backup-summary strong, .backup-summary small { display: block; }
.backup-summary strong { font-size: 12px; }
.backup-summary small { margin-top: 4px; color: #8a97a7; font-size: 10px; }
.backup-summary .status { color: var(--green); font-size: 10px; font-weight: 750; }
.summary-icon { width: 35px; height: 35px; display: grid; place-items: center; border-radius: 11px; background: #eef5ff; color: var(--blue); }
.database-icon::before { content: ""; width: 17px; height: 16px; border: 2px solid currentColor; border-radius: 50% / 28%; box-shadow: inset 0 -5px 0 transparent; }
.folder-icon::before { content: ""; width: 18px; height: 13px; border: 2px solid currentColor; border-radius: 3px; transform: translateY(2px); }
.cloud-icon { font-size: 17px; }
.floating-card { position: absolute; z-index: 4; min-width: 182px; padding: 14px 16px; border: 1px solid rgba(218, 226, 235, .9); border-radius: 16px; display: flex; align-items: center; gap: 11px; background: rgba(255, 255, 255, .92); box-shadow: 0 18px 40px rgba(15, 34, 59, .12); backdrop-filter: blur(14px); }
.floating-card p { margin: 0; line-height: 1.25; }
.floating-card small, .floating-card strong { display: block; }
.floating-card small { margin-bottom: 4px; color: #8794a5; font-size: 9px; }
.floating-card strong { font-size: 11px; }
.floating-icon { width: 31px; height: 31px; display: grid; place-items: center; border-radius: 10px; color: var(--green); background: var(--green-soft); font-size: 13px; font-weight: 800; }
.floating-icon .ui-icon { width: 17px; height: 17px; }
.card-calendar { top: 84px; right: -20px; }
.card-notification { bottom: 62px; left: -32px; }

.statement { background: var(--surface); }
.statement h2 { font-size: clamp(38px, 5vw, 60px); }
.statement p:last-child { max-width: 710px; margin: 28px auto 0; color: var(--muted); font-size: 18px; }

.features { background: var(--surface-soft); }
.section-heading { margin-bottom: 54px; display: flex; align-items: flex-end; justify-content: space-between; gap: 50px; }
.section-heading h2, .destination-copy h2, .visibility h2, .pricing-copy h2, .download-copy h2, .cta-card h2 { font-size: clamp(38px, 4.5vw, 58px); }
.section-heading > p { max-width: 450px; margin: 0 0 4px; color: var(--muted); font-size: 16px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card { position: relative; min-height: 330px; padding: 32px; overflow: hidden; border: 1px solid #e1e7ee; border-radius: var(--radius-md); background: #fff; }
.feature-wide { min-height: 390px; grid-column: span 3; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; }
.dark-card { color: #fff; border: 0; background: linear-gradient(135deg, #0c213a, #071321); }
.card-number { color: #94a2b4; font-size: 10px; font-weight: 700; letter-spacing: .14em; }
.feature-card h3 { margin: 24px 0 13px; font-size: 23px; letter-spacing: -.03em; line-height: 1.2; }
.feature-card p { max-width: 460px; margin: 0; color: #69798d; font-size: 14px; }
.dark-card p { color: #a9b9cb; font-size: 16px; }
.line-icon { width: 54px; height: 54px; margin-top: 42px; border-radius: 17px; display: grid; place-items: center; color: var(--blue); background: #edf4ff; font-size: 28px; }
.folder-line::before { content: ""; width: 25px; height: 18px; border: 2px solid var(--blue); border-radius: 4px; }
.report-line { color: var(--green); background: var(--green-soft); }
.database-art { position: relative; min-height: 280px; display: grid; place-items: center; }
.db { position: absolute; width: 240px; height: 132px; border-radius: 50% / 24%; border: 1px solid rgba(119, 173, 237, .35); background: linear-gradient(145deg, rgba(28, 92, 163, .38), rgba(7, 30, 55, .94)); box-shadow: inset 0 0 40px rgba(66, 151, 255, .12), 0 30px 50px rgba(0, 0, 0, .25); }
.db::before, .db::after, .db i { content: ""; position: absolute; left: 0; right: 0; height: 32px; border: 1px solid rgba(110, 170, 237, .28); border-radius: 50%; }
.db::before { top: 0; background: rgba(45, 121, 207, .18); }
.db::after { bottom: 0; }
.db i:nth-child(1) { top: 32px; }
.db i:nth-child(2) { top: 64px; }
.db i:nth-child(3) { display: none; }
.db-back { opacity: .35; transform: translate(88px, -45px) scale(.88); }
.db-front { transform: translate(-25px, 22px); }
.db-front span { position: absolute; inset: 0; display: grid; place-items: center; color: rgba(255,255,255,.72); font-size: 26px; font-weight: 700; letter-spacing: .12em; }
.protection-ring { position: absolute; right: 15%; top: 12%; width: 72px; height: 72px; border: 1px solid rgba(80, 176, 255, .4); border-radius: 24px; display: grid; place-items: center; color: #fff; background: linear-gradient(145deg, #2f91ff, #1258b7); box-shadow: 0 20px 45px rgba(15, 106, 214, .38); font-size: 27px; }

.centered-heading { display: block; text-align: center; }
.centered-heading > p { margin: 18px auto 0; }
.steps { margin: 0; padding: 0; list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 54px; counter-reset: steps; }
.steps li {
  position: relative; padding: 10px 25px; text-align: center;
  transition: transform .35s cubic-bezier(.2, .8, .2, 1);
}
.steps li:not(:last-child)::after {
  content: ""; position: absolute; z-index: 0; top: 67px; left: calc(50% + 66px);
  width: calc(100% - 78px); height: 2px;
  background: linear-gradient(90deg, #cbd5e1 0 42%, var(--blue) 50%, #cbd5e1 58% 100%);
  background-size: 220% 100%;
  mask-image: repeating-linear-gradient(90deg, #000 0 5px, transparent 5px 10px);
  background-position: 110% 0;
}
.steps.is-visible li:not(:last-child)::after { animation: step-flow 1.25s ease-out 1 forwards; }
.steps.is-visible li:nth-child(2)::after { animation-delay: .5s; }
@keyframes step-flow {
  from { background-position: 110% 0; }
  to { background-position: -110% 0; }
}
.step-index {
  position: absolute; z-index: 2; top: 0; left: 22%; width: 25px; height: 25px;
  border-radius: 50%; display: grid; place-items: center; color: #fff;
  background: var(--blue); box-shadow: 0 0 0 0 rgba(23, 105, 224, .24);
  font-size: 10px; font-weight: 700;
}
.steps.is-visible li .step-index { animation: step-number .72s ease-out 1 forwards; }
.steps.is-visible li:nth-child(2) .step-index { animation-delay: .28s; }
.steps.is-visible li:nth-child(3) .step-index { animation-delay: .56s; }
@keyframes step-number {
  0%, 24%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(23, 105, 224, 0); }
  8% { transform: scale(1.13); box-shadow: 0 0 0 8px rgba(23, 105, 224, .10); }
}
.step-icon {
  position: relative; z-index: 1; width: 88px; height: 88px; margin: 10px auto 25px;
  border: 1px solid #dbe4ee; border-radius: 27px; display: grid; place-items: center;
  color: var(--blue); background: #fff;
  box-shadow: 0 15px 35px rgba(31, 57, 88, .09), 0 0 0 0 rgba(23, 105, 224, 0);
  font-size: 34px;
  transition: transform .35s cubic-bezier(.2, .8, .2, 1), border-color .35s ease, box-shadow .35s ease, background .35s ease;
}
.step-icon .ui-icon { width: 36px; height: 36px; }
.steps.is-visible li .step-icon { animation: step-focus .72s ease-out 1 forwards; }
.steps.is-visible li:nth-child(2) .step-icon { animation-delay: .28s; }
.steps.is-visible li:nth-child(3) .step-icon { animation-delay: .56s; }
@keyframes step-focus {
  0%, 24%, 100% { transform: translateY(0); border-color: #dbe4ee; box-shadow: 0 15px 35px rgba(31, 57, 88, .09), 0 0 0 0 rgba(23, 105, 224, 0); }
  8% { transform: translateY(-7px); border-color: rgba(23, 105, 224, .45); box-shadow: 0 22px 44px rgba(23, 105, 224, .17), 0 0 0 9px rgba(23, 105, 224, .055); }
}
.steps li:hover { transform: translateY(-5px); }
.steps li:hover .step-icon {
  transform: translateY(-8px) scale(1.04);
  border-color: rgba(23, 105, 224, .48);
  background: #f8fbff;
  box-shadow: 0 24px 48px rgba(23, 105, 224, .18), 0 0 0 9px rgba(23, 105, 224, .055);
}
.steps h3 { margin: 0 0 9px; font-size: 20px; }
.steps p { margin: 0; color: var(--muted); font-size: 14px; }

.destinations { background: #f7f9fb; }
.destination-grid { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 90px; }
.destination-copy > p:not(.eyebrow) { margin: 25px 0; color: var(--muted); font-size: 16px; }
.clean-list { margin: 31px 0 0; padding: 0; list-style: none; display: grid; gap: 15px; color: #34465d; font-size: 14px; font-weight: 600; }
.clean-list span { width: 25px; height: 25px; margin-right: 10px; border-radius: 8px; display: inline-grid; place-items: center; color: var(--green); background: var(--green-soft); }
.storage-diagram { min-height: 450px; padding: 48px; border: 1px solid #e0e6ed; border-radius: 30px; display: grid; grid-template-columns: 130px 1fr 1.35fr; align-items: center; background: #fff; box-shadow: 0 28px 65px rgba(23, 45, 73, .08); }
.source-node { width: 112px; height: 112px; border-radius: 32px; display: grid; place-items: center; align-content: center; gap: 8px; background: #edf4ff; }
.source-node .node-icon { width: 47px; height: 47px; border-radius: 15px; display: grid; place-items: center; color: #fff; background: var(--blue); font-size: 14px; font-weight: 800; }
.source-node small { color: #63758b; font-size: 10px; }
.flow-line { position: relative; height: 1px; background: #cbd6e2; }
.flow-line::after { content: ""; position: absolute; right: -2px; top: -4px; width: 8px; height: 8px; border-top: 1px solid #a7b6c7; border-right: 1px solid #a7b6c7; transform: rotate(45deg); }
.flow-line i { position: absolute; top: -3px; left: 2%; width: 7px; height: 7px; border-radius: 50%; background: var(--blue); opacity: 0; }
.storage-diagram.is-visible .flow-line i { animation: transfer 1.45s ease-in-out .32s 1 forwards; }
@keyframes transfer { from { left: 2%; opacity: 0; } 15% { opacity: 1; } 85% { opacity: 1; } to { left: 94%; opacity: 0; } }
.target-stack { display: grid; gap: 12px; }
.target-node { min-height: 82px; padding: 14px; border: 1px solid #e3e9f0; border-radius: 17px; display: grid; grid-template-columns: 34px 1fr auto; align-items: center; gap: 12px; }
.target-node > span { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; color: var(--blue); background: #eef5ff; font-size: 15px; }
.target-node p { margin: 0; line-height: 1.25; }
.target-node strong, .target-node small { display: block; }
.target-node strong { font-size: 11px; }
.target-node small { margin-top: 4px; color: #8b98a8; font-size: 9px; }
.target-node .status { color: var(--green); font-size: 11px; }
.target-node .status .ui-icon { width: 16px; height: 16px; }

.visibility { padding-top: 90px; }
.visibility-card { min-height: 520px; padding: 72px; border-radius: var(--radius-lg); display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 90px; color: #fff; background: radial-gradient(circle at 85% 30%, #17497f, transparent 34%), linear-gradient(135deg, #0a2441, #061425); }
.visibility-copy p:last-child { max-width: 510px; color: #afc0d4; font-size: 16px; }
.notice-stack { position: relative; display: grid; gap: 14px; }
.notice { min-height: 88px; padding: 16px 18px; border: 1px solid rgba(156, 190, 225, .18); border-radius: 18px; display: grid; grid-template-columns: 42px 1fr; align-items: center; gap: 13px; background: rgba(255, 255, 255, .07); backdrop-filter: blur(12px); }
.notice > span { width: 42px; height: 42px; border-radius: 13px; display: grid; place-items: center; color: #96c3ff; background: rgba(65, 145, 241, .14); }
.notice p { margin: 0; line-height: 1.3; }
.notice strong, .notice small { display: block; }
.notice strong { font-size: 13px; }
.notice small { margin-top: 5px; color: #94a9bf; font-size: 10px; }
.notice-success { margin-left: -42px; border-color: rgba(48, 206, 139, .2); background: rgba(25, 151, 98, .13); }
.notice-success > span { color: #53df9f; background: rgba(40, 192, 126, .13); }

.pricing { padding-bottom: 52px; background: linear-gradient(180deg, #fff 0%, #f5f8fb 100%); }
.pricing-heading { max-width: 900px; margin: 0 auto 52px; text-align: center; }
.pricing-heading h2 { margin: 0; font-size: clamp(40px, 5vw, 62px); letter-spacing: -.055em; line-height: 1.05; }
.pricing-heading > p:last-child { max-width: 680px; margin: 22px auto 0; color: var(--muted); font-size: 16px; }
.pricing-panel { display: grid; grid-template-columns: .88fr 1.12fr; gap: 24px; }
.plan-card, .included-card { position: relative; padding: 42px; border: 1px solid #dce4ec; border-radius: 28px; background: #fff; box-shadow: 0 24px 65px rgba(20,45,75,.08); }
.plan-card { overflow: hidden; }
.plan-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 5px; background: linear-gradient(90deg, var(--blue), #55a4ff); }
.plan-label { display: inline-flex; padding: 7px 11px; border-radius: 999px; color: var(--blue-dark); background: #edf4ff; font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.plan-title { margin-top: 24px; display: flex; align-items: center; gap: 15px; }
.price-mark { width: 50px; height: 50px; border-radius: 16px; display: grid; place-items: center; color: #fff; background: linear-gradient(145deg, #2784f0, #1058b9); box-shadow: 0 12px 24px rgba(23,105,224,.25); font-size: 14px; font-weight: 800; }
.plan-title h3, .plan-title p { margin: 0; }
.plan-title h3 { font-size: 23px; letter-spacing: -.03em; }
.plan-title p { margin-top: 2px; color: var(--muted); font-size: 12px; }
.price-value { margin: 34px 0 0; display: flex; align-items: flex-start; line-height: 1; }
.price-value .currency { margin: 8px 5px 0 0; color: var(--blue); font-size: 24px; font-weight: 700; }
.price-value strong { font-size: clamp(58px, 6vw, 76px); font-weight: 650; letter-spacing: -.065em; }
.price-meta { margin: 15px 0 0 12px; color: #475a72; font-size: 13px; font-weight: 750; line-height: 1.25; }
.price-meta small { color: var(--muted); font-size: 10px; }
.price-period { margin: 5px 0 30px; color: #7b899b; font-size: 12px; font-weight: 600; }
.plan-summary { margin: 0 0 34px; padding: 27px 0 0; border-top: 1px solid #e6ebf1; list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 17px 20px; }
.plan-summary li { display: flex; align-items: center; gap: 10px; color: #33455c; font-size: 13px; font-weight: 600; }
.plan-summary .ui-icon { flex: 0 0 auto; width: 17px; height: 17px; color: var(--green); stroke-width: 2.2; }
.plan-button { min-height: 54px; padding: 0 22px; border: 2px solid var(--blue); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--blue); font-size: 14px; font-weight: 750; transition: color .2s ease, background .2s ease, transform .2s ease; }
.plan-button:hover { color: #fff; background: var(--blue); transform: translateY(-2px); }
.included-card { display: flex; flex-direction: column; }
.included-heading { display: flex; align-items: center; gap: 16px; }
.included-icon { width: 50px; height: 50px; border-radius: 16px; display: grid; place-items: center; color: var(--green); background: var(--green-soft); font-size: 19px; font-weight: 800; }
.included-icon .ui-icon, .item-icon .ui-icon { width: 22px; height: 22px; }
.included-heading h3, .included-heading p { margin: 0; }
.included-heading h3 { font-size: 25px; letter-spacing: -.035em; line-height: 1.15; }
.included-heading p { margin-top: 4px; color: var(--muted); font-size: 12px; }
.included-list { margin-top: 30px; display: grid; gap: 12px; }
.included-item { min-height: 78px; padding: 13px 16px; border: 1px solid #e1e7ee; border-radius: 16px; display: grid; grid-template-columns: 42px 1fr auto; align-items: center; gap: 14px; background: #f8fafc; }
.item-icon { width: 42px; height: 42px; border-radius: 13px; display: grid; place-items: center; color: var(--blue); background: #eaf3ff; }
.database-mini::before { content: ""; width: 20px; height: 19px; border: 2px solid currentColor; border-radius: 50% / 25%; }
.folder-mini::before { content: ""; width: 21px; height: 15px; border: 2px solid currentColor; border-radius: 3px; }
.cloud-mini, .notice-mini { font-size: 18px; font-weight: 800; }
.notice-mini { color: var(--green); background: var(--green-soft); }
.included-item p { margin: 0; line-height: 1.25; }
.included-item strong, .included-item small { display: block; }
.included-item strong { color: #24364d; font-size: 12px; }
.included-item small { margin-top: 5px; color: #8492a3; font-size: 10px; }
.included-item .status { color: var(--green); font-size: 10px; }
.included-note { margin: 25px 0 20px; color: var(--muted); font-size: 12px; }
.secondary-plan-button { margin-top: auto; border-color: #9eb1c6; color: #38506c; }
.secondary-plan-button:hover { border-color: var(--blue); }

.download-section { padding-top: 0; background: #f5f8fb; }
.download-card { position: relative; min-height: 470px; padding: 72px; overflow: hidden; border-radius: var(--radius-lg); display: grid; grid-template-columns: .75fr 1.25fr; align-items: center; gap: 80px; color: #fff; background: radial-gradient(circle at 15% 25%, #235f9d, transparent 32%), linear-gradient(135deg, #0a2441, #061425); box-shadow: 0 35px 75px rgba(7, 22, 41, .18); }
.download-art { position: relative; min-height: 300px; display: grid; place-items: center; }
.download-orbit { position: absolute; width: 300px; height: 300px; border: 1px solid rgba(128,190,255,.18); border-radius: 50%; box-shadow: 0 0 0 35px rgba(80,151,226,.05), 0 0 0 70px rgba(80,151,226,.025); }
.download-icon { position: relative; z-index: 2; width: 138px; height: 138px; border: 1px solid rgba(166,207,249,.25); border-radius: 42px; display: grid; place-items: center; background: linear-gradient(145deg, rgba(56,140,234,.58), rgba(16,72,132,.42)); box-shadow: inset 0 1px 0 rgba(255,255,255,.22), 0 30px 60px rgba(0,0,0,.3); backdrop-filter: blur(15px); }
.download-icon svg { width: 72px; fill: none; stroke: #fff; stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; }
.windows-pill { position: absolute; z-index: 3; right: 0; bottom: 40px; padding: 10px 14px; border: 1px solid rgba(255,255,255,.15); border-radius: 13px; display: grid; grid-template-columns: 7px 7px auto; gap: 2px; align-items: center; background: rgba(255,255,255,.1); backdrop-filter: blur(12px); color: #c9dcf2; font-size: 10px; font-weight: 600; }
.windows-pill i { width: 7px; height: 7px; background: #76b7ff; }
.windows-pill i:nth-child(3) { grid-column: 1; }
.windows-pill i:nth-child(4) { grid-column: 2; }
.windows-pill { grid-template-columns: 7px 7px auto; }
.windows-pill::after { content: "Windows"; grid-column: 3; grid-row: 1 / span 2; margin-left: 6px; }
.windows-pill { font-size: 0; }
.download-copy > p:not(.eyebrow) { max-width: 650px; margin: 24px 0 30px; color: #afc0d4; font-size: 16px; }
.download-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 24px; }
.download-button { min-width: 250px; }
.download-help { color: #a8cfff; font-size: 12px; font-weight: 650; }
.download-help:hover { color: #fff; }
.download-trust { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 10px 20px; color: #8da4be; font-size: 10px; }
.download-trust span { display: inline-flex; align-items: center; gap: 6px; }
.download-trust .ui-icon { width: 14px; height: 14px; color: #63dba2; }

.cta-section { padding-top: 35px; }
.cta-card { padding: 74px 78px; border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: space-between; gap: 70px; color: #fff; background: var(--blue); box-shadow: 0 35px 70px rgba(23, 105, 224, .22); }
.cta-card > div { max-width: 760px; }
.cta-card h2 { font-size: clamp(35px, 4vw, 52px); }
.cta-card p:last-child { margin: 20px 0 0; color: #c9e0ff; }

.site-footer { padding: 48px 0; border-top: 1px solid #e5eaf0; color: #758397; background: #fff; }
.footer-grid { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 45px; font-size: 11px; }
.footer-grid p { margin: 4px 0 0; }
.footer-brand { gap: 0; color: var(--ink); }
.copyright { text-align: right; }

@media (max-width: 1050px) {
  .hero-grid, .destination-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 780px; text-align: center; margin-inline: auto; }
  .hero-lead { margin-inline: auto; }
  .hero-actions, .trust-row { justify-content: center; }
  .product-visual { width: min(100%, 700px); margin: auto; }
  .destination-copy { max-width: 700px; }
  .visibility-card { gap: 40px; padding: 55px; }
  .pricing-panel { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .section-pad { padding: 88px 0; }
  .main-nav { display: none; }
  .desktop-only { display: none; }
  .nav-toggle { display: flex; }
  .section-heading { display: block; }
  .section-heading > p { margin-top: 20px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-wide { grid-column: auto; grid-template-columns: 1fr; }
  .database-art { min-height: 300px; }
  .steps { grid-template-columns: 1fr; gap: 30px; }
  .steps li:not(:last-child)::after { display: none; }
  .step-index { left: calc(50% - 62px); }
  .visibility-card { grid-template-columns: 1fr; }
  .download-card { grid-template-columns: 1fr; gap: 25px; }
  .download-art { min-height: 260px; }
  .notice-success { margin-left: 0; }
  .cta-card { padding: 55px; display: block; }
  .cta-card .button { margin-top: 30px; }
  .footer-grid { grid-template-columns: 1fr; gap: 18px; }
  .copyright { text-align: left; }
}

@media (max-width: 600px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .site-header > .container > .button { display: none; }
  .nav-wrap { min-height: 64px; }
  .mobile-nav { height: calc(100dvh - 64px); min-height: calc(100vh - 64px); }
  .hero { padding: 62px 0 74px; }
  .hero h1 { font-size: clamp(44px, 15vw, 62px); }
  .hero-lead { font-size: 16px; }
  .hero-actions { flex-direction: column; gap: 17px; }
  .hero-actions .button { width: 100%; }
  .product-visual { min-height: 520px; }
  .window-body { padding: 29px 18px 22px; }
  .floating-card { display: none; }
  .statement h2, .section-heading h2, .destination-copy h2, .visibility h2, .pricing-copy h2, .download-copy h2 { font-size: 38px; }
  .feature-card { min-height: 290px; padding: 26px; }
  .database-art { transform: scale(.82); margin-inline: -35px; }
  .storage-diagram { min-height: 520px; padding: 26px; grid-template-columns: 1fr; justify-items: center; gap: 22px; }
  .flow-line { width: 1px; height: 44px; background: #cbd6e2; }
  .flow-line::after { right: -4px; top: auto; bottom: 0; transform: rotate(135deg); }
  .flow-line i { left: -3px !important; top: 0; }
  .storage-diagram.is-visible .flow-line i { animation: transfer-down 1.35s ease-in-out .3s 1 forwards; }
  @keyframes transfer-down { from { top: 0; opacity: 0; } 20% { opacity: 1; } 80% { opacity: 1; } to { top: 38px; opacity: 0; } }
  .target-stack { width: 100%; }
  .visibility-card, .cta-card { padding: 38px 25px; border-radius: 24px; }
  .pricing { padding-bottom: 34px; }
  .pricing-heading { margin-bottom: 34px; }
  .pricing-heading h2 { font-size: 38px; }
  .plan-card, .included-card { padding: 32px 24px; border-radius: 24px; }
  .plan-summary { grid-template-columns: 1fr; }
  .included-item { grid-template-columns: 40px 1fr; }
  .included-item .status { display: none; }
  .download-card { padding: 40px 25px; border-radius: 24px; }
  .download-orbit { width: 220px; height: 220px; }
  .download-icon { width: 118px; height: 118px; border-radius: 36px; }
  .windows-pill { right: 8px; bottom: 22px; }
  .download-actions { align-items: stretch; flex-direction: column; }
  .download-button { width: 100%; min-width: 0; }
  .cta-card .button { width: 100%; white-space: normal; text-align: center; }
}

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