:root {
    --vp-bg: #030407;
    --vp-bg-2: #080b10;
    --vp-panel: rgba(13, 18, 23, 0.72);
    --vp-panel-strong: rgba(19, 25, 31, 0.9);
    --vp-line: rgba(238, 220, 169, 0.16);
    --vp-line-cold: rgba(136, 255, 210, 0.14);
    --vp-text: #f8f1df;
    --vp-muted: #a8a696;
    --vp-soft: #ddd0aa;
    --vp-gold: #d9ad5c;
    --vp-gold-2: #f5d38b;
    --vp-emerald: #37f0b2;
    --vp-emerald-deep: #0b8d63;
    --vp-red: #ff775f;
    --vp-shadow: 0 34px 120px rgba(0, 0, 0, 0.55);
    --vp-radius-xl: 34px;
    --vp-radius-lg: 24px;
    --vp-radius-md: 16px;
    --vp-container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.vp-body {
    margin: 0;
    color: var(--vp-text);
    font-family: "Plus Jakarta Sans", sans-serif;
    background:
        radial-gradient(circle at 12% 8%, rgba(217, 173, 92, 0.19), transparent 28rem),
        radial-gradient(circle at 88% 6%, rgba(55, 240, 178, 0.13), transparent 28rem),
        linear-gradient(145deg, #030407 0%, #06090d 45%, #090705 100%);
    overflow-x: hidden;
}

body.vp-body::before {
    position: fixed;
    inset: 0;
    z-index: -3;
    pointer-events: none;
    content: "";
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, #000, transparent 82%);
}

a {
    color: inherit;
    text-decoration: none;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

.vp-noise {
    position: fixed;
    inset: 0;
    z-index: 9999;
    opacity: 0.12;
    pointer-events: none;
    background-image:
        repeating-radial-gradient(circle at 17% 32%, rgba(255,255,255,0.22) 0, rgba(255,255,255,0.22) 1px, transparent 1px, transparent 6px);
    mix-blend-mode: overlay;
}

.vp-cursor-glow {
    position: fixed;
    top: var(--cursor-y, 45vh);
    left: var(--cursor-x, 50vw);
    z-index: -1;
    width: 520px;
    height: 520px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle, rgba(245, 211, 139, 0.14), rgba(55, 240, 178, 0.07) 33%, transparent 68%);
    filter: blur(10px);
}

.vp-skip {
    position: fixed;
    left: 16px;
    top: -60px;
    z-index: 10001;
    padding: 12px 16px;
    border-radius: 999px;
    color: #06100c;
    background: var(--vp-emerald);
}

.vp-skip:focus {
    top: 16px;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.vp-container {
    width: min(calc(100% - 40px), var(--vp-container));
    margin: 0 auto;
}

.vp-section {
    position: relative;
    padding: 112px 0;
}

.vp-header {
    position: fixed;
    top: 18px;
    left: 50%;
    z-index: 1000;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 26px;
    align-items: center;
    width: min(calc(100% - 40px), 1220px);
    padding: 12px 14px 12px 18px;
    border: 1px solid rgba(245, 211, 139, 0.18);
    border-radius: 999px;
    background: rgba(3, 4, 7, 0.72);
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(22px);
    transform: translateX(-50%);
    transition: border-color 220ms ease, background 220ms ease, transform 220ms ease;
}

.admin-bar .vp-header {
    top: 50px;
}

.vp-header.is-scrolled {
    border-color: rgba(55, 240, 178, 0.24);
    background: rgba(3, 4, 7, 0.88);
}

.vp-brand {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.vp-brand-mark {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(245, 211, 139, 0.26);
    border-radius: 15px;
    color: #07100d;
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.83rem;
    background: linear-gradient(135deg, var(--vp-gold-2), var(--vp-emerald));
    box-shadow: 0 0 38px rgba(217, 173, 92, 0.23);
}

.vp-brand-text {
    font-size: 1.05rem;
}

.vp-nav {
    justify-self: center;
    display: flex;
    gap: 4px;
    align-items: center;
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.035);
}

.vp-nav a {
    padding: 10px 13px;
    border-radius: 999px;
    color: rgba(248, 241, 223, 0.72);
    font-size: 0.82rem;
    font-weight: 700;
    transition: color 180ms ease, background 180ms ease;
}

.vp-nav a:hover {
    color: var(--vp-text);
    background: rgba(245, 211, 139, 0.12);
}

.vp-header-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.vp-link {
    color: rgba(248, 241, 223, 0.78);
    font-size: 0.9rem;
    font-weight: 700;
}

.vp-link:hover {
    color: var(--vp-gold-2);
}

.vp-button {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: -0.01em;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.vp-button:hover {
    transform: translateY(-2px);
}

.vp-button-primary {
    color: #07100c;
    background: linear-gradient(135deg, var(--vp-gold-2), var(--vp-emerald));
    box-shadow: 0 22px 80px rgba(55, 240, 178, 0.16), 0 10px 44px rgba(217, 173, 92, 0.18);
}

.vp-button-ghost {
    color: var(--vp-soft);
    border-color: rgba(245, 211, 139, 0.2);
    background: rgba(255, 255, 255, 0.04);
}

.vp-button-ghost:hover {
    border-color: rgba(55, 240, 178, 0.3);
    background: rgba(55, 240, 178, 0.08);
}

.vp-button-small {
    min-height: 42px;
    padding: 0 16px;
    color: #07100c;
    font-size: 0.86rem;
    background: linear-gradient(135deg, var(--vp-gold-2), var(--vp-emerald));
}

.vp-menu-button {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(245, 211, 139, 0.18);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.04);
}

.vp-menu-button span:not(.screen-reader-text) {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    border-radius: 99px;
    background: var(--vp-text);
}

.vp-hero {
    min-height: auto;
    padding-top: 154px;
    padding-bottom: 86px;
    overflow: hidden;
}

.vp-hero-aurora {
    position: absolute;
    inset: -20% -16% auto;
    height: 720px;
    background:
        radial-gradient(circle at 16% 44%, rgba(245, 211, 139, 0.22), transparent 27rem),
        radial-gradient(circle at 62% 8%, rgba(55, 240, 178, 0.14), transparent 25rem),
        radial-gradient(circle at 80% 62%, rgba(255, 119, 95, 0.09), transparent 21rem);
    filter: blur(12px);
}

.vp-hero-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(110deg, transparent 0%, transparent 42%, rgba(245, 211, 139, 0.06) 42.2%, transparent 42.8%),
        linear-gradient(150deg, transparent 0%, transparent 66%, rgba(55, 240, 178, 0.05) 66.2%, transparent 67%);
}

.vp-hero-layout {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(470px, 1.08fr);
    gap: 58px;
    align-items: center;
}

.vp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 18px;
    color: var(--vp-gold-2);
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.vp-eyebrow::before {
    width: 34px;
    height: 1px;
    content: "";
    background: linear-gradient(90deg, transparent, var(--vp-gold-2));
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 800;
    letter-spacing: -0.06em;
}

h1 {
    max-width: 900px;
    margin-bottom: 28px;
    font-size: clamp(3.2rem, 6.1vw, 6.4rem);
    line-height: 0.96;
}

.vp-hero h1 {
    max-width: 740px;
    font-size: clamp(3rem, 4.85vw, 5.25rem);
    line-height: 1.04;
}

h2 {
    margin-bottom: 18px;
    font-size: clamp(2.35rem, 4.3vw, 4.75rem);
    line-height: 1.02;
}

h3 {
    font-size: clamp(1.22rem, 1.7vw, 1.72rem);
    line-height: 1.16;
    letter-spacing: -0.028em;
}

.vp-hero-lede,
.vp-section-heading p,
.vp-copy-stack p,
.vp-stack-layout p,
.vp-commerce-card p,
.vp-cta-card p {
    color: rgba(248, 241, 223, 0.7);
    font-size: 1.08rem;
    line-height: 1.85;
}

.vp-hero-lede {
    max-width: 650px;
    margin-bottom: 32px;
    font-size: clamp(1.04rem, 1.4vw, 1.22rem);
}

.vp-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.vp-audience-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    align-items: center;
    max-width: 680px;
    margin-top: 32px;
}

.vp-audience-strip span,
.vp-audience-strip strong {
    padding: 9px 12px;
    border: 1px solid rgba(245, 211, 139, 0.13);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.035);
    font-size: 0.82rem;
}

.vp-audience-strip span {
    color: var(--vp-muted);
}

.vp-audience-strip strong {
    color: var(--vp-soft);
    font-weight: 700;
}

.vp-hero-checks {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.vp-hero-checks span {
    position: relative;
    display: inline-flex;
    gap: 8px;
    align-items: center;
    padding: 10px 13px;
    border: 1px solid rgba(55, 240, 178, 0.14);
    border-radius: 999px;
    color: rgba(248, 241, 223, 0.82);
    background: rgba(55, 240, 178, 0.055);
    font-size: 0.86rem;
    font-weight: 800;
}

.vp-hero-checks span::before {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    content: "";
    background: var(--vp-emerald);
    box-shadow: 0 0 16px rgba(55, 240, 178, 0.68);
}

.vp-client-proof {
    max-width: 610px;
    margin-top: 24px;
    padding: 18px 20px;
    border: 1px solid rgba(245, 211, 139, 0.13);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.035);
}

.vp-client-proof strong {
    display: block;
    margin-bottom: 6px;
    color: var(--vp-soft);
    font-size: 0.98rem;
}

.vp-client-proof p {
    margin: 0;
    color: rgba(248, 241, 223, 0.58);
    font-size: 0.92rem;
    line-height: 1.65;
}

.vp-product-preview {
    position: relative;
}

.vp-product-preview::before {
    position: absolute;
    inset: 8% -4% auto 14%;
    z-index: -1;
    height: 70%;
    content: "";
    border-radius: 999px;
    background: radial-gradient(circle, rgba(55, 240, 178, 0.16), rgba(217, 173, 92, 0.08) 42%, transparent 70%);
    filter: blur(24px);
}

.vp-preview-window {
    position: relative;
    overflow: hidden;
    min-height: 590px;
    border: 1px solid rgba(245, 211, 139, 0.18);
    border-radius: 34px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.025)),
        radial-gradient(circle at 88% 6%, rgba(55, 240, 178, 0.18), transparent 18rem),
        rgba(4, 8, 11, 0.78);
    box-shadow: var(--vp-shadow);
    backdrop-filter: blur(26px);
}

.vp-preview-window::before {
    position: absolute;
    inset: 0;
    pointer-events: none;
    content: "";
    background:
        linear-gradient(120deg, rgba(245, 211, 139, 0.16), transparent 18%, transparent 72%, rgba(55, 240, 178, 0.13)),
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
    background-size: auto, 48px 48px, 48px 48px;
}

.vp-preview-topbar,
.vp-preview-stats,
.vp-preview-grid {
    position: relative;
    z-index: 2;
}

.vp-preview-topbar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(245, 211, 139, 0.13);
}

.vp-window-dots {
    display: flex;
    gap: 7px;
}

.vp-window-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(245, 211, 139, 0.48);
}

.vp-window-dots span:nth-child(2) {
    background: rgba(55, 240, 178, 0.66);
}

.vp-window-dots span:nth-child(3) {
    background: rgba(255, 119, 95, 0.55);
}

.vp-preview-topbar strong {
    color: rgba(248, 241, 223, 0.8);
    font-size: 0.86rem;
    font-weight: 800;
}

.vp-preview-topbar em {
    justify-self: end;
    padding: 7px 10px;
    border-radius: 999px;
    color: #06100c;
    background: var(--vp-emerald);
    font-size: 0.72rem;
    font-style: normal;
    font-weight: 900;
    text-transform: uppercase;
}

.vp-preview-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 18px 20px 0;
}

.vp-preview-stats div {
    padding: 16px;
    border: 1px solid rgba(245, 211, 139, 0.12);
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.2);
}

.vp-preview-stats span,
.vp-automation-panel span,
.vp-progress-card span {
    display: block;
    margin-bottom: 6px;
    color: rgba(248, 241, 223, 0.52);
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.vp-preview-stats strong {
    color: var(--vp-text);
    font-size: 1.55rem;
    font-weight: 900;
    letter-spacing: -0.05em;
}

.vp-preview-grid {
    display: grid;
    grid-template-columns: 112px 1fr 170px;
    gap: 14px;
    padding: 18px 20px 20px;
}

.vp-channel-panel,
.vp-live-panel,
.vp-automation-panel {
    border: 1px solid rgba(245, 211, 139, 0.12);
    border-radius: 22px;
    background: rgba(0, 0, 0, 0.22);
}

.vp-channel-panel {
    display: grid;
    gap: 8px;
    align-content: start;
    padding: 12px;
}

.vp-channel-panel span {
    padding: 10px 9px;
    border-radius: 13px;
    color: rgba(248, 241, 223, 0.52);
    font-size: 0.75rem;
    font-weight: 800;
}

.vp-channel-panel .is-active {
    color: #06100c;
    background: linear-gradient(135deg, var(--vp-gold-2), var(--vp-emerald));
}

.vp-live-panel {
    display: grid;
    gap: 12px;
    padding: 14px;
}

.vp-live-card,
.vp-progress-card {
    padding: 16px;
    border: 1px solid rgba(245, 211, 139, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.035);
}

.vp-live-card.is-hot {
    border-color: rgba(55, 240, 178, 0.24);
    background: linear-gradient(145deg, rgba(55, 240, 178, 0.11), rgba(245, 211, 139, 0.045));
}

.vp-live-card div {
    display: flex;
    gap: 9px;
    align-items: center;
    margin-bottom: 10px;
}

.vp-live-card strong,
.vp-progress-card strong,
.vp-automation-panel strong {
    font-size: 0.98rem;
    font-weight: 900;
}

.vp-live-card p,
.vp-progress-card small,
.vp-automation-panel p {
    color: rgba(248, 241, 223, 0.62);
    line-height: 1.55;
}

.vp-live-card p {
    margin-bottom: 8px;
}

.vp-live-card small {
    color: rgba(55, 240, 178, 0.82);
    font-weight: 800;
}

.vp-progress-track {
    height: 10px;
    margin: 12px 0 10px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
}

.vp-progress-track i {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--vp-gold-2), var(--vp-emerald));
}

.vp-automation-panel {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 16px;
}

.vp-mini-bars {
    display: grid;
    gap: 8px;
    margin-top: 16px;
}

.vp-mini-bars i {
    display: block;
    height: 8px;
    border-radius: 99px;
    background: rgba(55, 240, 178, 0.22);
}

.vp-mini-bars i:nth-child(1) {
    width: 92%;
}

.vp-mini-bars i:nth-child(2) {
    width: 68%;
    background: rgba(245, 211, 139, 0.24);
}

.vp-mini-bars i:nth-child(3) {
    width: 82%;
}

.vp-preview-footnote {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 14px;
}

.vp-preview-footnote span {
    padding: 9px 12px;
    border: 1px solid rgba(245, 211, 139, 0.13);
    border-radius: 999px;
    color: rgba(248, 241, 223, 0.66);
    background: rgba(255, 255, 255, 0.035);
    font-size: 0.76rem;
    font-weight: 800;
}

.vp-hero-stage {
    position: relative;
}

.vp-glass-frame {
    position: relative;
    overflow: hidden;
    min-height: 610px;
    border: 1px solid rgba(245, 211, 139, 0.18);
    border-radius: 38px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.025)),
        radial-gradient(circle at 70% 12%, rgba(55, 240, 178, 0.14), transparent 17rem),
        rgba(5, 8, 11, 0.74);
    box-shadow: var(--vp-shadow);
    backdrop-filter: blur(28px);
}

.vp-glass-frame::before {
    position: absolute;
    inset: 0;
    pointer-events: none;
    content: "";
    background:
        linear-gradient(135deg, rgba(245, 211, 139, 0.18), transparent 18%, transparent 72%, rgba(55, 240, 178, 0.14)),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 14px);
}

.vp-frame-topbar {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 8px;
    align-items: center;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(245, 211, 139, 0.12);
}

.vp-frame-topbar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(245, 211, 139, 0.44);
}

.vp-frame-topbar span:nth-child(2) {
    background: rgba(55, 240, 178, 0.62);
}

.vp-frame-topbar span:nth-child(3) {
    background: rgba(255, 119, 95, 0.52);
}

.vp-frame-topbar strong {
    margin-left: auto;
    color: rgba(248, 241, 223, 0.64);
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.vp-inbox-shell {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 132px 1fr;
    gap: 18px;
    padding: 22px;
}

.vp-mini-sidebar {
    display: grid;
    gap: 12px;
    align-content: start;
    padding: 14px;
    border: 1px solid rgba(245, 211, 139, 0.12);
    border-radius: 24px;
    background: rgba(0, 0, 0, 0.22);
}

.vp-mini-sidebar span {
    padding: 12px 10px;
    border-radius: 14px;
    color: rgba(248, 241, 223, 0.48);
    font-size: 0.78rem;
    font-weight: 800;
}

.vp-mini-sidebar .is-active {
    color: #06100c;
    background: linear-gradient(135deg, var(--vp-gold-2), var(--vp-emerald));
}

.vp-chat-board {
    display: grid;
    gap: 16px;
}

.vp-chat-card,
.vp-campaign-card {
    padding: 20px;
    border: 1px solid rgba(245, 211, 139, 0.13);
    border-radius: 24px;
    background: rgba(4, 7, 9, 0.58);
}

.vp-chat-card.is-bright {
    border-color: rgba(55, 240, 178, 0.28);
    background: linear-gradient(145deg, rgba(55, 240, 178, 0.12), rgba(245, 211, 139, 0.05));
}

.vp-chat-card div {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 12px;
}

.vp-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--vp-emerald);
    box-shadow: 0 0 22px rgba(55, 240, 178, 0.8);
}

.vp-dot-gold {
    background: var(--vp-gold-2);
    box-shadow: 0 0 22px rgba(245, 211, 139, 0.7);
}

.vp-chat-card p {
    margin-bottom: 10px;
    color: rgba(248, 241, 223, 0.78);
}

.vp-chat-card small,
.vp-floating-card small {
    color: rgba(248, 241, 223, 0.48);
}

.vp-campaign-card {
    min-height: 210px;
}

.vp-campaign-card span,
.vp-floating-card span,
.vp-proof-card span,
.vp-usecase-card span,
.vp-feature-kicker {
    color: var(--vp-gold-2);
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.vp-campaign-card strong {
    display: block;
    margin: 12px 0 22px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    letter-spacing: -0.055em;
}

.vp-bars {
    display: flex;
    gap: 10px;
    align-items: end;
    height: 74px;
}

.vp-bars i {
    flex: 1;
    border-radius: 12px 12px 4px 4px;
    background: linear-gradient(180deg, var(--vp-emerald), rgba(217, 173, 92, 0.22));
}

.vp-floating-card {
    position: absolute;
    z-index: 4;
    width: 230px;
    padding: 18px;
    border: 1px solid rgba(245, 211, 139, 0.18);
    border-radius: 24px;
    background: rgba(4, 7, 9, 0.78);
    box-shadow: 0 24px 90px rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(18px);
}

.vp-floating-card strong {
    display: block;
    margin: 8px 0;
    font-size: 1.3rem;
}

.vp-card-left {
    left: -36px;
    bottom: 72px;
}

.vp-card-right {
    top: 108px;
    right: -34px;
}

.vp-proof-section {
    padding-top: 18px;
}

.vp-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.vp-proof-card,
.vp-feature-card,
.vp-usecase-card,
.vp-commerce-card,
.vp-cta-card {
    border: 1px solid var(--vp-line);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
        rgba(4, 7, 9, 0.68);
    box-shadow: 0 26px 96px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(20px);
}

.vp-proof-card {
    min-height: 230px;
    padding: 28px;
    border-radius: var(--vp-radius-lg);
}

.vp-proof-card strong {
    display: block;
    margin: 18px 0;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: clamp(2.8rem, 4.6vw, 4.9rem);
    font-weight: 800;
    letter-spacing: -0.06em;
    line-height: 0.95;
}

.vp-proof-card p,
.vp-feature-card p,
.vp-usecase-card p {
    color: rgba(248, 241, 223, 0.68);
    line-height: 1.72;
}

.vp-split {
    display: grid;
    grid-template-columns: 0.85fr 1fr;
    gap: 72px;
}

.vp-copy-stack {
    padding-top: 24px;
}

.vp-section-heading {
    max-width: 860px;
    margin-bottom: 46px;
}

.vp-heading-wide {
    max-width: 1040px;
}

.vp-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.vp-feature-card {
    position: relative;
    overflow: hidden;
    min-height: 390px;
    padding: 34px;
    border-radius: var(--vp-radius-xl);
}

.vp-feature-card::after {
    position: absolute;
    right: -90px;
    bottom: -120px;
    width: 280px;
    height: 280px;
    content: "";
    border: 1px solid rgba(245, 211, 139, 0.15);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(55, 240, 178, 0.08), transparent 64%);
}

.vp-feature-card h3 {
    max-width: 520px;
    margin: 18px 0 16px;
}

.vp-feature-card ul {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 11px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.vp-feature-card li {
    display: flex;
    gap: 10px;
    align-items: center;
    color: rgba(248, 241, 223, 0.78);
    font-weight: 700;
}

.vp-feature-card li::before {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    content: "";
    background: var(--vp-emerald);
    box-shadow: 0 0 18px rgba(55, 240, 178, 0.7);
}

.vp-usecase-section {
    overflow: hidden;
}

.vp-usecase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.vp-usecase-card {
    min-height: 330px;
    padding: 28px;
    border-radius: 28px;
}

.vp-usecase-card h3 {
    margin: 54px 0 18px;
}

.vp-workflow-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 74px;
    align-items: start;
}

.vp-sticky-heading {
    position: sticky;
    top: 136px;
    margin-bottom: 0;
}

.vp-timeline {
    display: grid;
    gap: 16px;
}

.vp-timeline-item {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 20px;
    align-items: center;
    min-height: 116px;
    padding: 20px;
    border: 1px solid var(--vp-line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.035);
}

.vp-timeline-item span {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    color: #06100c;
    font-family: "IBM Plex Mono", monospace;
    font-weight: 800;
    background: linear-gradient(135deg, var(--vp-gold-2), var(--vp-emerald));
}

.vp-timeline-item p {
    margin: 0;
    color: rgba(248, 241, 223, 0.78);
    font-size: 1.06rem;
    font-weight: 700;
    line-height: 1.6;
}

.vp-stack-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 68px;
    align-items: center;
}

.vp-stack-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    padding: 34px;
    border: 1px solid rgba(55, 240, 178, 0.13);
    border-radius: 36px;
    background:
        radial-gradient(circle at center, rgba(55, 240, 178, 0.1), transparent 62%),
        rgba(255, 255, 255, 0.03);
}

.vp-stack-cloud span {
    padding: 14px 16px;
    border: 1px solid rgba(245, 211, 139, 0.16);
    border-radius: 999px;
    color: rgba(248, 241, 223, 0.82);
    background: rgba(4, 7, 9, 0.65);
    font-weight: 800;
}

.vp-commerce-card {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 36px;
    align-items: center;
    padding: 44px;
    border-radius: 36px;
    background:
        linear-gradient(135deg, rgba(217, 173, 92, 0.13), rgba(55, 240, 178, 0.06)),
        rgba(4, 7, 9, 0.76);
}

.vp-revenue-panel {
    display: grid;
    gap: 12px;
}

.vp-revenue-panel span {
    padding: 18px 20px;
    border: 1px solid rgba(245, 211, 139, 0.16);
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.2);
    color: rgba(248, 241, 223, 0.82);
    font-weight: 800;
}

.vp-revenue-panel span:nth-child(even) {
    transform: translateX(20px);
    border-color: rgba(55, 240, 178, 0.18);
}

.vp-final-cta {
    padding-bottom: 130px;
}

.vp-cta-card {
    position: relative;
    overflow: hidden;
    padding: 64px;
    border-radius: 42px;
    text-align: center;
}

.vp-cta-card::before {
    position: absolute;
    inset: -35%;
    content: "";
    background:
        radial-gradient(circle at 35% 30%, rgba(245, 211, 139, 0.18), transparent 24rem),
        radial-gradient(circle at 70% 62%, rgba(55, 240, 178, 0.14), transparent 22rem);
    animation: vp-drift 12s ease-in-out infinite alternate;
}

.vp-cta-card > * {
    position: relative;
    z-index: 2;
}

.vp-cta-card .vp-eyebrow {
    justify-content: center;
}

.vp-cta-card h2,
.vp-cta-card p {
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.vp-cta-card .vp-hero-actions {
    justify-content: center;
    margin-top: 30px;
}

.vp-footer {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px;
    align-items: end;
    width: min(calc(100% - 40px), var(--vp-container));
    margin: 0 auto;
    padding: 36px 0 46px;
    border-top: 1px solid rgba(245, 211, 139, 0.14);
}

.vp-footer p {
    max-width: 560px;
    margin: 16px 0 0;
    color: rgba(248, 241, 223, 0.56);
    line-height: 1.7;
}

.vp-brand-footer .vp-brand-mark {
    width: 36px;
    height: 36px;
    border-radius: 13px;
}

.vp-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: flex-end;
}

.vp-footer-links a {
    color: rgba(248, 241, 223, 0.62);
    font-weight: 800;
}

.vp-footer-links a:hover {
    color: var(--vp-gold-2);
}

/* Content remains visible if JavaScript is delayed or blocked. */
[data-reveal] {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 760ms ease, transform 760ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

body.vp-animations-ready [data-reveal] {
    opacity: 0;
    transform: translateY(28px);
}

body.vp-animations-ready [data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

[data-parallax] {
    translate: 0 var(--vp-parallax-y, 0);
}

@keyframes vp-drift {
    from {
        transform: translate3d(-2%, -1%, 0) rotate(-4deg);
    }
    to {
        transform: translate3d(2%, 1%, 0) rotate(4deg);
    }
}

@media (max-width: 1080px) {
    .vp-header {
        grid-template-columns: auto auto;
        gap: 14px;
    }

    .vp-menu-button {
        display: block;
        justify-self: end;
    }

    .vp-nav,
    .vp-header-actions {
        grid-column: 1 / -1;
        display: none;
        justify-self: stretch;
    }

    .vp-nav.is-open,
    .vp-header-actions.is-open {
        display: flex;
    }

    .vp-nav {
        flex-direction: column;
        align-items: stretch;
        border-radius: 26px;
        padding: 10px;
    }

    .vp-nav a {
        text-align: center;
    }

    .vp-header-actions {
        justify-content: center;
        padding-bottom: 8px;
    }

    .vp-hero-layout,
    .vp-split,
    .vp-workflow-layout,
    .vp-stack-layout,
    .vp-commerce-card {
        grid-template-columns: 1fr;
    }

    .vp-hero-layout {
        gap: 42px;
    }

    .vp-sticky-heading {
        position: static;
    }

    .vp-proof-grid,
    .vp-usecase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 760px) {
    .vp-section {
        padding: 78px 0;
    }

    .vp-hero {
        padding-top: 140px;
    }

    .vp-container,
    .vp-header,
    .vp-footer {
        width: min(calc(100% - 28px), var(--vp-container));
    }

    h1 {
        font-size: clamp(2.8rem, 12.5vw, 4.45rem);
        letter-spacing: -0.055em;
    }

    h2 {
        font-size: clamp(2.2rem, 10vw, 3.55rem);
        letter-spacing: -0.05em;
    }

    .vp-hero-actions,
    .vp-header-actions.is-open {
        align-items: stretch;
        flex-direction: column;
    }

    .vp-button {
        width: 100%;
    }

    .vp-glass-frame {
        min-height: auto;
        border-radius: 28px;
    }

    .vp-inbox-shell {
        grid-template-columns: 1fr;
        padding: 14px;
    }

    .vp-preview-window {
        min-height: auto;
        border-radius: 26px;
    }

    .vp-preview-stats,
    .vp-preview-grid {
        grid-template-columns: 1fr;
    }

    .vp-preview-grid {
        padding: 14px;
    }

    .vp-channel-panel {
        grid-template-columns: repeat(2, 1fr);
    }

    .vp-hero-checks {
        align-items: stretch;
        flex-direction: column;
    }

    .vp-mini-sidebar {
        grid-template-columns: repeat(2, 1fr);
    }

    .vp-floating-card {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        width: auto;
        margin-top: 14px;
    }

    .vp-proof-grid,
    .vp-feature-grid,
    .vp-usecase-grid {
        grid-template-columns: 1fr;
    }

    .vp-feature-card,
    .vp-commerce-card,
    .vp-cta-card {
        padding: 28px;
    }

    .vp-usecase-card {
        min-height: 260px;
    }

    .vp-timeline-item {
        grid-template-columns: 1fr;
    }

    .vp-revenue-panel span:nth-child(even) {
        transform: none;
    }

    .vp-footer {
        grid-template-columns: 1fr;
    }

    .vp-footer-links {
        justify-content: flex-start;
    }
}

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