:root {
  --lavender-50: #fbf9ff;
  --lavender-100: #f3edff;
  --lavender-200: #e7dbff;
  --lavender-300: #d5bfff;
  --lavender-500: #9664df;
  --plum-700: #513074;
  --plum-900: #251438;
  --ink: #17131d;
  --muted: #655e6d;
  --white: #fff;
  --line: rgba(55, 31, 76, 0.12);
  --shadow: 0 24px 64px rgba(50, 28, 71, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --max-width: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 3%, rgba(213, 191, 255, 0.55), transparent 32rem),
    radial-gradient(circle at 92% 17%, rgba(231, 219, 255, 0.8), transparent 28rem),
    var(--lavender-50);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
.site-header { position: sticky; z-index: 20; top: 0; border-bottom: 1px solid var(--line); background: rgba(251, 249, 255, 0.9); backdrop-filter: blur(18px); }
.nav { width: min(calc(100% - 40px), var(--max-width)); min-height: 76px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--plum-900); font-size: 1rem; font-weight: 760; letter-spacing: -0.02em; text-decoration: none; }
.brand img { width: 46px; height: 46px; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: var(--muted); font-size: 0.95rem; font-weight: 650; text-decoration: none; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--plum-700); }
.container { width: min(calc(100% - 40px), var(--max-width)); margin: 0 auto; }

.hero { min-height: 690px; display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: 72px; padding: 76px 0 92px; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; margin: 0 0 18px; color: var(--plum-700); font-size: 0.8rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.eyebrow::before { width: 28px; height: 2px; border-radius: 20px; background: var(--lavender-500); content: ""; }
h1, h2, h3 { margin-top: 0; color: var(--plum-900); line-height: 1.08; letter-spacing: -0.045em; }
h1 { max-width: 760px; margin-bottom: 22px; font-size: clamp(3.1rem, 7vw, 6.4rem); font-weight: 820; }
h2 { margin-bottom: 18px; font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { margin-bottom: 12px; font-size: 1.55rem; }
.hero-copy > p:not(.eyebrow) { max-width: 650px; margin: 0 0 32px; color: var(--muted); font-size: clamp(1.1rem, 2vw, 1.3rem); }
.button-row { display: flex; flex-wrap: wrap; gap: 14px; }
.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; padding: 0 22px; border: 1px solid var(--plum-900); border-radius: 999px; background: var(--plum-900); color: var(--white); font-weight: 740; text-decoration: none; transition: transform 160ms ease, box-shadow 160ms ease; }
.button:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(37, 20, 56, 0.2); }
.button.secondary { border-color: var(--line); background: rgba(255, 255, 255, 0.68); color: var(--plum-900); }
.hero-art { position: relative; min-height: 470px; display: grid; place-items: center; }
.hero-orbit { position: absolute; width: min(82vw, 470px); aspect-ratio: 1; border: 1px solid rgba(81, 48, 116, 0.15); border-radius: 50%; }
.hero-orbit::before, .hero-orbit::after { position: absolute; border-radius: 50%; content: ""; }
.hero-orbit::before { inset: 10%; border: 1px dashed rgba(150, 100, 223, 0.25); }
.hero-orbit::after { width: 12px; height: 12px; top: 11%; right: 11%; background: var(--lavender-500); box-shadow: 0 0 0 9px rgba(150, 100, 223, 0.12); }
.hero-mark { position: relative; z-index: 2; width: min(72vw, 390px); filter: drop-shadow(0 30px 45px rgba(58, 31, 82, 0.2)); }

.section { padding: 96px 0; }
.section-heading { max-width: 720px; margin-bottom: 44px; }
.section-heading p, .lead { color: var(--muted); font-size: 1.12rem; }
.card-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.card { position: relative; overflow: hidden; min-height: 360px; padding: 36px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: rgba(255, 255, 255, 0.74); box-shadow: var(--shadow); }
.card::after { position: absolute; width: 210px; height: 210px; right: -86px; bottom: -100px; border-radius: 50%; background: var(--lavender-200); content: ""; }
.card-icon { width: 60px; height: 60px; display: grid; place-items: center; margin-bottom: 64px; border-radius: 18px; background: var(--lavender-100); color: var(--plum-700); }
.card-icon svg { width: 30px; height: 30px; }
.card p { max-width: 500px; margin: 0 0 22px; color: var(--muted); }
.text-link { position: relative; z-index: 1; color: var(--plum-700); font-weight: 780; text-decoration: none; }
.text-link::after { margin-left: 8px; content: "→"; }
.brand-strip { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(243, 237, 255, 0.82)); }
.brand-strip img { width: min(100%, 620px); margin: 0 auto; }

.page-hero { padding: 100px 0 62px; }
.page-hero h1 { max-width: 900px; font-size: clamp(2.8rem, 6vw, 5.5rem); }
.page-hero .lead { max-width: 760px; }
.product-card { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: 50px; align-items: center; padding: 44px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: rgba(255, 255, 255, 0.78); box-shadow: var(--shadow); }
.product-visual { min-height: 330px; display: grid; place-items: center; border-radius: 24px; background: linear-gradient(145deg, var(--lavender-100), var(--lavender-200)); }
.product-visual img { width: min(74%, 260px); }
.badge { display: inline-flex; padding: 7px 12px; border-radius: 999px; background: var(--lavender-100); color: var(--plum-700); font-size: 0.78rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.product-links { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 26px; }

.content-layout { display: grid; grid-template-columns: 230px minmax(0, 760px); justify-content: center; gap: 60px; padding-bottom: 110px; }
.content-nav { align-self: start; position: sticky; top: 110px; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius-md); background: rgba(255, 255, 255, 0.74); }
.content-nav a { display: block; padding: 7px 0; color: var(--muted); font-size: 0.92rem; text-decoration: none; }
.article { padding: 42px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: rgba(255, 255, 255, 0.84); box-shadow: var(--shadow); }
.article h2 { margin-top: 48px; font-size: 1.8rem; letter-spacing: -0.025em; }
.article h2:first-child { margin-top: 0; }
.article p, .article li { color: #494250; }
.article a { color: var(--plum-700); }
.notice { margin: 28px 0; padding: 20px 22px; border-left: 4px solid var(--lavender-500); border-radius: 0 14px 14px 0; background: var(--lavender-100); }

.music-stage { overflow: hidden; padding: 64px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: linear-gradient(135deg, rgba(37, 20, 56, 0.97), rgba(81, 48, 116, 0.92)); color: var(--white); box-shadow: var(--shadow); }
.music-stage h2, .music-stage h3 { color: var(--white); }
.music-stage p { max-width: 700px; color: rgba(255, 255, 255, 0.76); }
.wave { height: 68px; margin-bottom: 46px; display: flex; align-items: center; gap: 7px; }
.wave span { width: 5px; border-radius: 999px; background: var(--lavender-300); }
.wave span:nth-child(1) { height: 18px; } .wave span:nth-child(2) { height: 42px; } .wave span:nth-child(3) { height: 64px; } .wave span:nth-child(4) { height: 34px; }
.wave span:nth-child(5) { height: 54px; } .wave span:nth-child(6) { height: 24px; } .wave span:nth-child(7) { height: 46px; } .wave span:nth-child(8) { height: 16px; }

.music-feature { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr); gap: 44px; align-items: center; padding: 58px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: linear-gradient(135deg, rgba(37, 20, 56, 0.98), rgba(81, 48, 116, 0.94)); box-shadow: var(--shadow); }
.music-intro { color: var(--white); }
.music-intro h2 { color: var(--white); }
.music-intro p:not(.eyebrow) { margin-bottom: 28px; color: rgba(255, 255, 255, 0.76); }
.eyebrow.light { color: var(--lavender-300); }
.spotify-button { border-color: var(--white); background: var(--white); color: var(--plum-900); }
.spotify-frame { display: block; border: 0; border-radius: 18px; background: #191414; }
.songs-section { padding-bottom: 110px; }
.song-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.song-card { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: 18px; align-items: center; min-height: 112px; padding: 22px; border: 1px solid var(--line); border-radius: var(--radius-md); background: rgba(255, 255, 255, 0.78); color: var(--plum-900); text-decoration: none; transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease; }
.song-card:hover { transform: translateY(-2px); border-color: rgba(150, 100, 223, 0.38); box-shadow: 0 14px 34px rgba(50, 28, 71, 0.1); }
.song-number { color: var(--lavender-500); font-size: 0.78rem; font-weight: 800; letter-spacing: 0.08em; }
.song-card strong, .song-card small { display: block; }
.song-card strong { line-height: 1.3; }
.song-card small { margin-top: 5px; color: var(--muted); }
.song-arrow { color: var(--lavender-500); font-size: 1.2rem; }

.site-footer { border-top: 1px solid var(--line); background: rgba(255, 255, 255, 0.5); }
.footer-inner { min-height: 170px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { width: 52px; height: 52px; }
.footer-brand strong, .footer-brand span { display: block; }
.footer-brand span, .footer-meta { color: var(--muted); font-size: 0.9rem; }
.footer-meta { text-align: right; }

@media (max-width: 820px) {
  .nav { min-height: 68px; }
  .brand span { display: none; }
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 0.86rem; }
  .hero { min-height: auto; grid-template-columns: 1fr; gap: 28px; padding: 64px 0 74px; }
  .hero-art { min-height: 360px; grid-row: 1; }
  .card-grid, .product-card { grid-template-columns: 1fr; }
  .content-layout { grid-template-columns: 1fr; gap: 24px; }
  .content-nav { position: static; }
  .music-stage { padding: 38px 28px; }
  .music-feature { grid-template-columns: 1fr; padding: 38px 28px; }
  .song-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .container, .nav { width: min(calc(100% - 28px), var(--max-width)); }
  .nav-links a:nth-child(3) { display: none; }
  h1 { font-size: clamp(2.7rem, 15vw, 4.6rem); }
  .hero-art { min-height: 300px; }
  .card, .product-card, .article { padding: 27px; }
  .card-icon { margin-bottom: 42px; }
  .section { padding: 72px 0; }
  .page-hero { padding: 72px 0 42px; }
  .music-feature { width: min(calc(100% - 28px), var(--max-width)); }
  .spotify-frame { height: 420px; }
  .footer-inner { padding: 34px 0; align-items: flex-start; flex-direction: column; }
  .footer-meta { text-align: left; }
}

/* VersaLink Keeper product, support, and privacy pages. */
:focus-visible { outline: 3px solid var(--plum-700); outline-offset: 5px; }
[id] { scroll-margin-top: 104px; }
.skip-link { position: fixed; top: 12px; left: 12px; z-index: 40; padding: 12px 18px; border-radius: 12px; background: var(--plum-900); color: white; transform: translateY(-180%); }
.skip-link:focus { transform: translateY(0); }
.keeper-icon { aspect-ratio: 1; object-fit: cover; border-radius: 23%; }
.card > img.card-icon { background: none; }
.app-list-section { padding-top: 12px; }
.product-name { margin-top: 22px; font-size: clamp(2rem, 4vw, 3.4rem); }
.product-visual { text-decoration: none; }
.product-visual .keeper-icon { width: min(78%, 260px); box-shadow: 0 20px 38px rgba(81, 48, 116, .13); }
.compact-features { padding-left: 20px; color: var(--muted); margin: 22px 0 28px; }
.compact-features li { padding-left: 4px; margin-bottom: 6px; }
.keeper-hero { display: grid; grid-template-columns: 1.25fr .9fr; gap: 72px; align-items: center; padding: 66px 0 84px; }
.keeper-hero h1 { font-size: clamp(3rem, 6.2vw, 5.65rem); margin-bottom: 22px; }
.keeper-hero .lead { max-width: 590px; margin-bottom: 30px; }
.keeper-tagline { color: var(--plum-700); font-size: clamp(1.2rem, 2vw, 1.5rem); line-height: 1.4; font-weight: 650; }
.back-link { display: block; width: fit-content; color: var(--muted); font-size: .9rem; text-decoration: none; margin-bottom: 30px; }
.back-link:hover { text-decoration: underline; }
.keeper-showcase { display: grid; justify-items: center; align-content: center; padding: 42px 22px; border-radius: 40px; background: linear-gradient(150deg, #e9dfff, #f5f0fc); border: 1px solid var(--line); }
.keeper-showcase img { width: min(100%, 300px); box-shadow: 0 26px 48px rgba(74, 33, 114, .14); }
.keeper-showcase p { margin: 34px 0 0; font-weight: 650; color: var(--plum-700); }
.launch-status { display: flex; gap: 9px; align-items: center; margin: 24px 0 0; color: var(--muted); font-size: .9rem; }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--plum-700); }
.feature-section { background: rgba(243, 237, 255, .65); border-block: 1px solid var(--line); }
.feature-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.feature-card { padding: 30px; border-radius: 22px; background: rgba(255, 255, 255, .82); border: 1px solid var(--line); }
.feature-number { display: block; margin-bottom: 26px; color: var(--plum-700); font-size: .8rem; font-weight: 750; }
.feature-card h3 { font-size: 1.4rem; }
.feature-card p { color: var(--muted); font-size: .98rem; margin-bottom: 0; }
.plan-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.plan-card { padding: 36px; border: 1px solid var(--line); background: rgba(255, 255, 255, .86); border-radius: 26px; }
.plan-card.featured { background: var(--plum-900); color: white; }
.plan-card.featured h3 { color: white; }
.plan-card.featured .eyebrow { color: var(--lavender-200); }
.plan-card li { margin: 12px 0; }
.plan-card ul { padding-left: 20px; }
.plan-note { padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, .2); color: var(--lavender-200); font-size: .95rem; }
.section-note { color: var(--muted); max-width: 830px; font-size: .94rem; margin: 26px 0 0; }
.closing-section { padding-top: 0; }
.help-banner { display: flex; align-items: center; justify-content: space-between; gap: 34px; padding: 38px; border-radius: 28px; border: 1px solid var(--line); background: var(--lavender-100); }
.help-banner h2 { font-size: 2rem; }
.help-banner p:last-child { color: var(--muted); margin-bottom: 0; }
.app-context { display: flex; width: fit-content; gap: 14px; align-items: center; color: var(--plum-700); font-weight: 750; text-decoration: none; margin-bottom: 30px; }
.app-context img { flex: 0 0 56px; border-radius: 14px; }
.document-hero h1 { font-size: clamp(2.75rem, 6vw, 4.6rem); }
.updated-date { color: var(--muted); font-size: .95rem; }
.support-layout { display: grid; grid-template-columns: .78fr 1.5fr; gap: 42px; padding-bottom: 100px; align-items: start; }
.contact-card { padding: 30px; background: var(--lavender-100); border: 1px solid var(--line); border-radius: 26px; position: sticky; top: 105px; }
.contact-card h2 { font-size: 2rem; }
.contact-card p { color: var(--muted); }
.contact-card .eyebrow { color: var(--plum-700); }
.contact-address { overflow-wrap: anywhere; font-size: .94rem; }
.small-note { font-size: .92rem; }
.faq-list h2 { margin-bottom: 26px; font-size: 2rem; }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { cursor: pointer; padding: 22px 4px; color: var(--plum-900); font-weight: 720; font-size: 1.07rem; }
.faq-list summary::marker { color: var(--plum-700); }
.faq-answer { padding: 0 4px 16px 22px; color: var(--muted); }
.faq-answer p { margin-top: 0; }
.faq-answer a { color: var(--plum-700); }
.article a { overflow-wrap: anywhere; }
@media (max-width: 980px) {
  .keeper-hero { gap: 34px; }
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .help-banner { flex-direction: column; align-items: flex-start; }
  .content-layout { gap: 28px; grid-template-columns: 205px minmax(0, 1fr); }
}
@media (max-width: 820px) {
  .keeper-hero { grid-template-columns: 1fr; padding-top: 40px; }
  .keeper-showcase { max-width: 500px; width: 100%; justify-self: center; }
  .support-layout, .content-layout { grid-template-columns: 1fr; }
  .contact-card { position: static; }
}
@media (max-width: 560px) {
  .feature-grid, .plan-grid { grid-template-columns: 1fr; }
  .feature-card, .plan-card, .help-banner { padding: 26px; }
  .keeper-hero { padding-bottom: 56px; }
  .keeper-hero h1 { font-size: clamp(2.9rem, 12.5vw, 4.2rem); }
  .keeper-showcase { padding: 28px; }
  .keeper-showcase img { width: min(100%, 250px); }
  .keeper-hero .button-row { gap: 10px; }
  .content-nav { padding: 20px; }
  .content-nav a { padding: 10px 0; }
  .product-card { gap: 26px; }
  .product-visual { min-height: 270px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button, .song-card { transition: none; }
}
