/* ════════════════════════════════════════════
   MUZIO — AI Text to Music (v2)
   Aesthetic: Luminous lavender / sonic glow
   ════════════════════════════════════════════ */

:root {
    --bg:        #ECE3FF;
    --bg-dark:   #D8C8FB;
    --ink:       #160F2E;
    --ink-soft:  #2F2754;
    --ink-muted: #6B6190;
    --ink-faint: #B0A6CC;
    --violet:    #6D5BE8;
    --violet-2:  #8C7BF2;
    --violet-3:  #4A2EC9;
    --plum:      #2C1A66;
    --white:     #FFFFFF;
    --border:    rgba(74, 42, 138, 0.14);
    --border-md: rgba(74, 42, 138, 0.24);

    --ff-display: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
    --ff-body:    'Inter', system-ui, -apple-system, sans-serif;

    --r-sm: 10px;
    --r-md: 16px;
    --r-lg: 24px;
    --r-xl: 32px;

    --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
    --shadow-sm: 0 2px 8px rgba(74,42,138,0.08);
    --shadow-md: 0 8px 24px rgba(74,42,138,0.12);
    --shadow-lg: 0 24px 60px rgba(74,42,138,0.18);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--ff-body);
    background: var(--bg);
    color: var(--ink);
    line-height: 1.55;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    min-height: 100vh;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── DECORATIVE GLOW BLOBS ── */
body::before, body::after {
    content: '';
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(40px);
}
body::before {
    top: -240px; left: -200px;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(140, 123, 242, 0.55) 0%, transparent 70%);
}
body::after {
    bottom: -300px; right: -200px;
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(74, 46, 201, 0.40) 0%, transparent 70%);
}
body > * { position: relative; z-index: 1; }

/* ── BUTTONS ── */
.v2-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 28px;
    border-radius: 100px;
    font-weight: 600; font-size: 16px;
    transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
    white-space: nowrap;
}
.v2-btn--primary {
    background: var(--ink);
    color: var(--white);
    box-shadow: var(--shadow-md);
}
.v2-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: var(--violet-3);
}
.v2-btn--white {
    background: var(--white);
    color: var(--ink);
}
.v2-btn--white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.v2-btn--lg { padding: 22px 40px; font-size: 18px; }

/* ── COMMON HEADINGS ── */
.v2-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--violet);
    background: rgba(109, 91, 232, 0.10);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 18px;
}
.v2-h2 {
    font-family: var(--ff-display);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.05;
    color: var(--ink);
}
.v2-section__head {
    text-align: center;
    margin-bottom: 56px;
}
.v2-section__intro {
    color: var(--ink-muted);
    font-size: 18px;
    margin-top: 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ════════════════════════════════════════════
   NAV — FLOATING PILL
   ════════════════════════════════════════════ */
.v2-nav {
    position: sticky;
    top: 18px;
    z-index: 100;
    display: flex;
    justify-content: center;
    padding: 0 20px;
    pointer-events: none;
}
.v2-nav__pill {
    pointer-events: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 8px 8px 18px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(74, 42, 138, 0.15);
    border-radius: 100px;
    box-shadow: 0 10px 30px rgba(74, 42, 138, 0.15);
}
.v2-nav__logo {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--ff-display);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--ink);
}
.v2-nav__logo img { border-radius: 7px; }
.v2-nav__divider {
    width: 1px; height: 22px;
    background: rgba(74, 42, 138, 0.18);
    margin: 0 4px;
}
.v2-nav__cta {
    display: inline-flex; align-items: center; gap: 7px;
    background: linear-gradient(135deg, var(--violet) 0%, var(--violet-3) 100%);
    color: var(--white);
    padding: 10px 18px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 14px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 14px rgba(109, 91, 232, 0.4);
}
.v2-nav__cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(109, 91, 232, 0.55);
}
.v2-nav__cta svg { transition: transform 0.2s; }
.v2-nav__cta:hover svg { transform: translateX(2px); }

/* ════════════════════════════════════════════
   HERO — TWO COLUMN
   ════════════════════════════════════════════ */
.v2-hero {
    padding: 60px 0 100px;
}
.v2-hero__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}
.v2-hero__top {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 32px;
    text-align: center;
}
.v2-hero__pill {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--white);
    border: 1px solid var(--border);
    padding: 9px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--ink-soft);
    margin-bottom: 32px;
    box-shadow: var(--shadow-sm);
}
.v2-hero__pill-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--violet);
    box-shadow: 0 0 0 4px rgba(109, 91, 232, 0.2);
    animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(109, 91, 232, 0.2); }
    50% { box-shadow: 0 0 0 8px rgba(109, 91, 232, 0); }
}
.v2-hero__title {
    font-family: var(--ff-display);
    font-size: clamp(54px, 9vw, 112px);
    font-weight: 700;
    letter-spacing: -0.045em;
    line-height: 0.92;
    color: var(--ink);
    margin-bottom: 32px;
}
.v2-hero__title em {
    font-style: italic;
    background: linear-gradient(120deg, var(--violet) 0%, var(--violet-3) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
    font-weight: 700;
}
.v2-hero__title em::after {
    content: '';
    position: absolute;
    left: 4%; right: 4%; bottom: -8px;
    height: 8px;
    background: linear-gradient(90deg, var(--violet) 0%, var(--violet-2) 100%);
    border-radius: 4px;
    opacity: 0.4;
    transform: skewX(-12deg);
}
.v2-hero__sub {
    font-size: 19px;
    line-height: 1.55;
    color: var(--ink-soft);
    margin-bottom: 36px;
    max-width: 520px;
}
.v2-hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    margin-bottom: 48px;
}
.v2-hero__waitlist {
    color: var(--ink-muted);
    font-size: 14px;
    font-weight: 500;
    text-decoration: underline;
    text-decoration-color: var(--ink-faint);
    text-underline-offset: 4px;
    transition: color 0.2s;
}
.v2-hero__waitlist:hover { color: var(--violet); }
.v2-hero__metrics {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
}
.v2-hero__metrics > div { display: flex; flex-direction: column; }
.v2-hero__metrics strong {
    font-family: var(--ff-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1;
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}
.v2-hero__metrics span {
    font-size: 13px;
    color: var(--ink-muted);
}

/* HERO VISUAL (chat → player) */
.v2-visual {
    background: var(--white);
    border-radius: var(--r-xl);
    padding: 28px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    position: relative;
    transform: rotate(1.5deg);
    transition: transform 0.4s var(--ease);
}
.v2-visual:hover { transform: rotate(0deg); }
.v2-visual::before {
    content: '✦ powered by AI';
    position: absolute;
    top: -16px; right: -16px;
    background: var(--ink);
    color: var(--white);
    padding: 8px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    box-shadow: var(--shadow-md);
    transform: rotate(-4deg);
    z-index: 2;
}
.v2-visual__chat {
    display: flex; flex-direction: column; gap: 8px;
    margin-bottom: 18px;
}
.v2-msg {
    padding: 10px 14px;
    border-radius: 18px;
    font-size: 14px;
    max-width: 85%;
    line-height: 1.4;
}
.v2-msg--in {
    background: #F2EEFD;
    color: var(--ink);
    align-self: flex-start;
    border-bottom-left-radius: 6px;
}
.v2-msg--out {
    background: var(--violet);
    color: var(--white);
    align-self: flex-end;
    border-bottom-right-radius: 6px;
}
.v2-visual__arrow {
    text-align: center;
    color: var(--violet);
    font-size: 22px;
    margin: 8px 0 14px;
    font-weight: 700;
}
.v2-visual__player {
    background: linear-gradient(135deg, var(--ink) 0%, var(--plum) 100%);
    color: var(--white);
    border-radius: var(--r-md);
    padding: 18px;
}
.v2-player__top {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 16px;
}
.v2-player__art img {
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.v2-player__meta { display: flex; flex-direction: column; }
.v2-player__meta strong {
    font-family: var(--ff-display);
    font-size: 18px;
    font-weight: 700;
}
.v2-player__meta span {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
}
.v2-eq {
    display: flex; align-items: flex-end; justify-content: space-between;
    height: 40px;
    gap: 3px;
}
.v2-eq span {
    flex: 1;
    background: linear-gradient(180deg, var(--violet-2), var(--violet));
    border-radius: 2px;
    animation: eq 1.2s ease-in-out infinite;
}
.v2-eq span:nth-child(1)  { animation-delay: 0s; }
.v2-eq span:nth-child(2)  { animation-delay: 0.1s; }
.v2-eq span:nth-child(3)  { animation-delay: 0.2s; }
.v2-eq span:nth-child(4)  { animation-delay: 0.3s; }
.v2-eq span:nth-child(5)  { animation-delay: 0.4s; }
.v2-eq span:nth-child(6)  { animation-delay: 0.15s; }
.v2-eq span:nth-child(7)  { animation-delay: 0.25s; }
.v2-eq span:nth-child(8)  { animation-delay: 0.35s; }
.v2-eq span:nth-child(9)  { animation-delay: 0.45s; }
.v2-eq span:nth-child(10) { animation-delay: 0.05s; }
.v2-eq span:nth-child(11) { animation-delay: 0.30s; }
.v2-eq span:nth-child(12) { animation-delay: 0.40s; }
.v2-eq span:nth-child(13) { animation-delay: 0.10s; }
.v2-eq span:nth-child(14) { animation-delay: 0.50s; }
.v2-eq span:nth-child(15) { animation-delay: 0.20s; }
.v2-eq span:nth-child(16) { animation-delay: 0.35s; }
.v2-eq span:nth-child(17) { animation-delay: 0.45s; }
.v2-eq span:nth-child(18) { animation-delay: 0.15s; }
.v2-eq span:nth-child(19) { animation-delay: 0.05s; }
.v2-eq span:nth-child(20) { animation-delay: 0.30s; }
@keyframes eq {
    0%, 100% { height: 20%; }
    50%      { height: 100%; }
}

/* SHOWCASE (legacy — kept for compat) */
.v2-hero__showcase {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.v2-show {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 22px;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: transform 0.3s var(--ease);
}
.v2-show:hover { transform: translateY(-6px); }
.v2-show:nth-child(1) { transform: rotate(-1.2deg); }
.v2-show:nth-child(1):hover { transform: rotate(-1.2deg) translateY(-6px); }
.v2-show:nth-child(2) { transform: rotate(0.6deg); }
.v2-show:nth-child(2):hover { transform: rotate(0.6deg) translateY(-6px); }
.v2-show:nth-child(3) { transform: rotate(-0.4deg); }
.v2-show:nth-child(3):hover { transform: rotate(-0.4deg) translateY(-6px); }
.v2-show__tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--violet);
    background: rgba(109, 91, 232, 0.10);
    padding: 5px 10px;
    border-radius: 6px;
    margin-bottom: 14px;
}
.v2-show__chat { display: flex; flex-direction: column; gap: 6px; }
.v2-show__chat .v2-msg { font-size: 13px; padding: 9px 13px; }
.v2-show__photo {
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    padding: 14px 0;
}
.v2-show__photo-frame {
    width: 100%; aspect-ratio: 2/1;
    background: linear-gradient(135deg, #FFB678 0%, #E5658B 50%, #6D5BE8 100%);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 56px;
}
.v2-show__photo p {
    font-size: 13px;
    color: var(--ink-muted);
    font-style: italic;
}
.v2-show__prompt {
    background: #F2EEFD;
    border-radius: 12px;
    padding: 18px;
    margin: 14px 0;
}
.v2-show__prompt code {
    font-family: 'SF Mono', Menlo, monospace;
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.5;
}
.v2-show__arrow {
    text-align: center;
    color: var(--violet);
    font-size: 18px;
    font-weight: 700;
    margin: 12px 0;
}
.v2-show__track {
    background: linear-gradient(135deg, var(--ink) 0%, var(--plum) 100%);
    color: var(--white);
    border-radius: 12px;
    padding: 14px 16px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px;
}
.v2-show__track span {
    font-size: 13px;
    font-weight: 600;
}
.v2-eq--mini {
    height: 22px;
    width: 80px;
    flex-shrink: 0;
}
.v2-hero__sub {
    font-size: 19px;
    line-height: 1.55;
    color: var(--ink-soft);
    margin-bottom: 36px;
    max-width: 520px;
}
.v2-hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    margin-bottom: 48px;
}
.v2-hero__waitlist {
    color: var(--ink-muted);
    font-size: 14px;
    font-weight: 500;
    text-decoration: underline;
    text-decoration-color: var(--ink-faint);
    text-underline-offset: 4px;
    transition: color 0.2s;
}
.v2-hero__waitlist:hover { color: var(--violet); }
.v2-hero__metrics {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
}
.v2-hero__metrics > div { display: flex; flex-direction: column; }
.v2-hero__metrics strong {
    font-family: var(--ff-display);
    font-size: 32px;
    font-weight: 400;
    color: var(--ink);
    line-height: 1;
    margin-bottom: 4px;
}
.v2-hero__metrics span {
    font-size: 13px;
    color: var(--ink-muted);
}

/* HERO VISUAL */
.v2-visual {
    background: var(--white);
    border-radius: var(--r-xl);
    padding: 28px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    position: relative;
    transform: rotate(1.5deg);
    transition: transform 0.4s var(--ease);
}
.v2-visual:hover { transform: rotate(0deg); }
.v2-visual__chat {
    display: flex; flex-direction: column; gap: 8px;
    margin-bottom: 18px;
}
.v2-msg {
    padding: 10px 14px;
    border-radius: 18px;
    font-size: 14px;
    max-width: 85%;
    line-height: 1.4;
}
.v2-msg--in {
    background: #F2EEFD;
    color: var(--ink);
    align-self: flex-start;
    border-bottom-left-radius: 6px;
}
.v2-msg--out {
    background: var(--violet);
    color: var(--white);
    align-self: flex-end;
    border-bottom-right-radius: 6px;
}
.v2-visual__arrow {
    text-align: center;
    color: var(--violet);
    font-size: 22px;
    margin: 8px 0 14px;
    font-weight: 700;
}
.v2-visual__player {
    background: linear-gradient(135deg, var(--ink) 0%, var(--plum) 100%);
    color: var(--white);
    border-radius: var(--r-md);
    padding: 18px;
}
.v2-player__top {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 16px;
}
.v2-player__art img {
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.v2-player__meta { display: flex; flex-direction: column; }
.v2-player__meta strong {
    font-family: var(--ff-display);
    font-size: 18px;
    font-weight: 400;
}
.v2-player__meta span {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
}
.v2-eq {
    display: flex; align-items: flex-end; justify-content: space-between;
    height: 40px;
    gap: 3px;
}
.v2-eq span {
    flex: 1;
    background: linear-gradient(180deg, var(--violet-2), var(--violet));
    border-radius: 2px;
    animation: eq 1.2s ease-in-out infinite;
}
.v2-eq span:nth-child(1)  { animation-delay: 0s;    }
.v2-eq span:nth-child(2)  { animation-delay: 0.1s;  }
.v2-eq span:nth-child(3)  { animation-delay: 0.2s;  }
.v2-eq span:nth-child(4)  { animation-delay: 0.3s;  }
.v2-eq span:nth-child(5)  { animation-delay: 0.4s;  }
.v2-eq span:nth-child(6)  { animation-delay: 0.15s; }
.v2-eq span:nth-child(7)  { animation-delay: 0.25s; }
.v2-eq span:nth-child(8)  { animation-delay: 0.35s; }
.v2-eq span:nth-child(9)  { animation-delay: 0.45s; }
.v2-eq span:nth-child(10) { animation-delay: 0.05s; }
.v2-eq span:nth-child(11) { animation-delay: 0.30s; }
.v2-eq span:nth-child(12) { animation-delay: 0.40s; }
.v2-eq span:nth-child(13) { animation-delay: 0.10s; }
.v2-eq span:nth-child(14) { animation-delay: 0.50s; }
.v2-eq span:nth-child(15) { animation-delay: 0.20s; }
.v2-eq span:nth-child(16) { animation-delay: 0.35s; }
.v2-eq span:nth-child(17) { animation-delay: 0.45s; }
.v2-eq span:nth-child(18) { animation-delay: 0.15s; }
.v2-eq span:nth-child(19) { animation-delay: 0.05s; }
.v2-eq span:nth-child(20) { animation-delay: 0.30s; }
@keyframes eq {
    0%, 100% { height: 20%; }
    50%      { height: 100%; }
}

/* ════════════════════════════════════════════
   STYLES MARQUEE
   ════════════════════════════════════════════ */
.v2-styles {
    padding: 80px 0;
    overflow: hidden;
}
.v2-styles__head {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 32px;
}
.v2-marquee {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.v2-marquee__track {
    display: flex;
    gap: 14px;
    animation: marquee 40s linear infinite;
    width: max-content;
}
.v2-chip {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--white);
    border: 1px solid var(--border-md);
    padding: 14px 24px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 16px;
    color: var(--ink);
    white-space: nowrap;
}
.v2-chip--accent {
    background: linear-gradient(135deg, var(--violet) 0%, var(--violet-3) 100%);
    color: var(--white);
    border-color: transparent;
}
@keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.v2-styles__note {
    text-align: center;
    color: var(--ink-muted);
    font-size: 14px;
    margin-top: 24px;
    padding: 0 24px;
    font-style: italic;
}

/* ════════════════════════════════════════════
   FEATURES — MORE THAN TEXT-TO-MUSIC
   ════════════════════════════════════════════ */
.v2-features {
    padding: 80px 32px;
    max-width: 1200px;
    margin: 0 auto;
}
.v2-features__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.v2-feat {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 24px;
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.2s;
}
.v2-feat:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--violet);
}
.v2-feat__ico {
    display: inline-flex;
    align-items: center; justify-content: center;
    width: 44px; height: 44px;
    border-radius: 12px;
    background: rgba(109, 91, 232, 0.10);
    font-size: 22px;
    margin-bottom: 14px;
}
.v2-feat h3 {
    font-family: var(--ff-display);
    font-size: 19px;
    font-weight: 400;
    margin-bottom: 6px;
    color: var(--ink);
    line-height: 1.2;
}
.v2-feat p {
    font-size: 14px;
    color: var(--ink-muted);
    line-height: 1.5;
}

/* ════════════════════════════════════════════
   BENTO — USE CASES
   ════════════════════════════════════════════ */
.v2-bento {
    padding: 80px 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 32px; padding-right: 32px;
}
.v2-bento__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 18px;
}
.v2-bento__card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 28px;
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.v2-bento__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.v2-bento__card--lg {
    grid-column: span 2;
    grid-row: span 2;
    background: linear-gradient(135deg, var(--white) 0%, #F4EFFE 100%);
    padding: 40px;
}
.v2-bento__card--lg h3 { font-size: 28px; }
.v2-bento__card--accent {
    background: linear-gradient(135deg, var(--violet) 0%, var(--violet-3) 100%);
    color: var(--white);
}
.v2-bento__card--accent h3,
.v2-bento__card--accent p { color: var(--white); }
.v2-bento__icon {
    font-size: 32px;
    display: inline-block;
    margin-bottom: 14px;
}
.v2-bento__card h3 {
    font-family: var(--ff-display);
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 8px;
    color: var(--ink);
}
.v2-bento__card p {
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.55;
}
.v2-bento__card--accent h3,
.v2-bento__card--accent p { color: var(--white); }

/* ════════════════════════════════════════════
   HOW IT WORKS — HORIZONTAL
   ════════════════════════════════════════════ */
.v2-how {
    padding: 80px 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 32px; padding-right: 32px;
}
.v2-how__row {
    display: flex;
    align-items: stretch;
    gap: 0;
}
.v2-how__step {
    flex: 1;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 28px;
    text-align: center;
}
.v2-how__num {
    display: inline-flex;
    align-items: center; justify-content: center;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 18px;
}
.v2-how__step h3 {
    font-family: var(--ff-display);
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 8px;
}
.v2-how__step p {
    color: var(--ink-muted);
    font-size: 14px;
}
.v2-how__connector {
    width: 32px;
    align-self: center;
    border-top: 2px dashed var(--border-md);
}

/* ════════════════════════════════════════════
   QUOTE
   ════════════════════════════════════════════ */
.v2-quote {
    padding: 80px 32px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.v2-quote blockquote p {
    font-family: var(--ff-display);
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.25;
    color: var(--ink);
    font-weight: 400;
}
.v2-quote em {
    font-style: italic;
    color: var(--violet);
}

/* ════════════════════════════════════════════
   FAQ
   ════════════════════════════════════════════ */
.v2-faq {
    padding: 80px 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 32px; padding-right: 32px;
}
.v2-faq__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.v2-faq__item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 0;
    overflow: hidden;
    transition: border-color 0.2s;
}
.v2-faq__item[open] { border-color: var(--violet); }
.v2-faq__item summary {
    padding: 22px 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 16px;
    font-weight: 600;
    font-size: 16px;
    color: var(--ink);
    list-style: none;
}
.v2-faq__item summary::-webkit-details-marker { display: none; }
.v2-faq__item summary span {
    color: var(--violet);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
}
.v2-faq__item summary::after {
    content: '+';
    margin-left: auto;
    font-size: 24px;
    font-weight: 300;
    color: var(--violet);
    transition: transform 0.2s;
}
.v2-faq__item[open] summary::after { transform: rotate(45deg); }
.v2-faq__item p {
    padding: 0 24px 22px;
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.6;
}

/* ════════════════════════════════════════════
   WAITLIST
   ════════════════════════════════════════════ */
.v2-waitlist {
    padding: 80px 32px;
    max-width: 1000px;
    margin: 0 auto;
}
.v2-waitlist__inner {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    box-shadow: var(--shadow-md);
}
.v2-waitlist__copy h3 {
    font-family: var(--ff-display);
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 8px;
}
.v2-waitlist__copy p {
    color: var(--ink-muted);
    font-size: 15px;
}
.v2-waitlist__form {
    display: flex; flex-direction: column; gap: 12px;
}
.v2-waitlist__form input[type="email"] {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--border-md);
    border-radius: var(--r-sm);
    font-size: 15px;
    font-family: inherit;
    background: var(--bg);
    color: var(--ink);
    transition: border-color 0.2s;
}
.v2-waitlist__form input[type="email"]:focus {
    outline: none;
    border-color: var(--violet);
}
.v2-waitlist__form button {
    padding: 14px 18px;
    background: var(--ink);
    color: var(--white);
    border-radius: var(--r-sm);
    font-weight: 600;
    font-size: 15px;
    transition: background 0.2s, transform 0.1s;
}
.v2-waitlist__form button:hover { background: var(--violet-3); }
.v2-waitlist__form button:active { transform: scale(0.98); }
.v2-waitlist__consent {
    display: flex; align-items: flex-start; gap: 8px;
    font-size: 12px;
    color: var(--ink-muted);
    cursor: pointer;
}
.v2-waitlist__consent input { margin-top: 2px; accent-color: var(--violet); }
.v2-waitlist__msg {
    font-size: 13px;
    min-height: 18px;
}
.v2-waitlist__msg.waitlist__msg--ok { color: #2D9D6F; }
.v2-waitlist__msg.waitlist__msg--err { color: #E54848; }

/* ════════════════════════════════════════════
   FINAL CTA — FULL WIDTH BANNER
   ════════════════════════════════════════════ */
.v2-final {
    padding: 100px 32px;
    background: linear-gradient(135deg, var(--ink) 0%, var(--plum) 50%, var(--violet-3) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}
.v2-final::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
}
.v2-final__inner {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}
.v2-final h2 {
    font-family: var(--ff-display);
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 36px;
}

/* ════════════════════════════════════════════
   SEO BODY
   ════════════════════════════════════════════ */
.v2-seo {
    padding: 80px 32px;
    max-width: 720px;
    margin: 0 auto;
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.7;
}
.v2-seo h2 {
    font-family: var(--ff-display);
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 16px;
    color: var(--ink);
}
.v2-seo h3 {
    font-family: var(--ff-display);
    font-size: 22px;
    font-weight: 400;
    margin: 32px 0 10px;
    color: var(--ink);
}
.v2-seo p { margin-bottom: 12px; }

/* ════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════ */
.v2-footer {
    padding: 40px 32px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}
.v2-footer__brand {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--ff-display);
    font-size: 22px;
    color: var(--ink);
}
.v2-footer__brand img { border-radius: 8px; }
.v2-footer__social {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--ink-muted);
    font-weight: 500;
    font-size: 14px;
    transition: color 0.2s;
}
.v2-footer__social:hover { color: var(--violet); }
.v2-footer__copy {
    color: var(--ink-faint);
    font-size: 13px;
}

/* ════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════ */
@media (max-width: 980px) {
    .v2-hero__inner { grid-template-columns: 1fr; gap: 50px; }
    .v2-hero__showcase { grid-template-columns: 1fr; gap: 16px; }
    .v2-show { transform: none !important; }
    .v2-features__grid { grid-template-columns: repeat(2, 1fr); }
    .v2-bento__grid { grid-template-columns: 1fr 1fr; }
    .v2-bento__card--lg { grid-column: span 2; grid-row: auto; }
    .v2-how__row { flex-direction: column; gap: 14px; }
    .v2-how__connector { width: 2px; height: 20px; border-top: none; border-left: 2px dashed var(--border-md); }
    .v2-faq__grid { grid-template-columns: 1fr; }
    .v2-waitlist__inner { grid-template-columns: 1fr; padding: 32px; }

    /* Marquee keeps animating — slower on smaller screens */
    .v2-marquee__track { animation-duration: 28s; }
}
@media (max-width: 600px) {
    .v2-nav__inner { padding: 14px 20px; }
    .v2-nav__cta { padding: 9px 16px; font-size: 13px; }
    .v2-nav { top: 12px; padding: 0 14px; }
    .v2-nav__pill { padding: 6px 6px 6px 14px; }
    .v2-nav__logo { font-size: 16px; }
    .v2-nav__cta { padding: 9px 14px; font-size: 13px; }
    .v2-hero { padding: 40px 0 50px; }
    .v2-hero__inner { padding: 0 20px; gap: 40px; }
    .v2-hero__pill { font-size: 12px; padding: 7px 16px; margin-bottom: 20px; }
    .v2-hero__title { font-size: clamp(44px, 13vw, 64px); margin-bottom: 22px; }
    .v2-hero__sub { font-size: 16px; margin-bottom: 28px; }
    .v2-hero__actions { gap: 14px; margin-bottom: 28px; }
    .v2-btn { padding: 14px 22px; font-size: 15px; }
    .v2-hero__metrics { gap: 24px; }
    .v2-hero__metrics strong { font-size: 26px; }
    .v2-visual { padding: 20px; }
    .v2-visual::before { font-size: 11px; padding: 6px 12px; top: -12px; right: -8px; }

    .v2-chip { padding: 10px 16px; font-size: 13px; }

    .v2-features { padding: 50px 20px; }
    .v2-features__grid { grid-template-columns: 1fr; gap: 12px; }
    .v2-feat { padding: 20px; }

    .v2-bento { padding: 50px 20px; }
    .v2-bento__grid { grid-template-columns: 1fr; }
    .v2-bento__card--lg { grid-column: auto; padding: 28px; }

    .v2-how { padding: 50px 20px; }
    .v2-how__step { padding: 22px; }

    .v2-quote { padding: 50px 24px; }
    .v2-faq { padding: 50px 20px; }
    .v2-faq__item summary { padding: 18px 20px; font-size: 15px; gap: 12px; }
    .v2-faq__item p { padding: 0 20px 18px; font-size: 14px; }

    .v2-waitlist { padding: 50px 20px; }
    .v2-waitlist__inner { padding: 28px; }
    .v2-waitlist__copy h3 { font-size: 26px; }

    .v2-final { padding: 70px 24px; margin-top: 40px; }
    .v2-final h2 { font-size: clamp(32px, 8vw, 48px); }

    .v2-seo { padding: 50px 24px; font-size: 14px; }
    .v2-seo h2 { font-size: 26px; }
    .v2-seo h3 { font-size: 18px; margin-top: 24px; }

    .v2-section__head { margin-bottom: 32px; }
    .v2-styles { padding: 50px 0; }
    .v2-styles__note { font-size: 13px; margin-top: 18px; }
}
