:root {
    --bg: #ebe7ff;
    --bg-2: #f7f4ff;
    --ink: #0b0b12;
    --ink-soft: rgba(11, 11, 18, 0.68);
    --card: rgba(255, 255, 255, 0.7);
    --card-strong: rgba(255, 255, 255, 0.88);
    --border: rgba(11, 11, 18, 0.12);
    --border-2: rgba(11, 11, 18, 0.08);
    --accent: #ff3d5a;
    --accent-2: #6d5bff;
    --radius-lg: 28px;
    --radius-md: 20px;
    --radius-sm: 14px;
    --radius-pill: 999px;
    --shadow: 0 20px 70px rgba(14, 10, 40, 0.14);
    --shadow-2: 0 14px 44px rgba(14, 10, 40, 0.12);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
}

body {
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at 20% 0%, rgba(109, 91, 255, 0.26), transparent 55%),
        radial-gradient(circle at 86% 10%, rgba(255, 61, 90, 0.18), transparent 45%),
        linear-gradient(180deg, var(--bg), var(--bg-2));
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
}

.page-wrap {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 22px 20px 34px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Header */
.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 12px 14px;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(11, 11, 18, 0.08);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-2);
    position: sticky;
    top: 16px;
    z-index: 20;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--ink);
}

.brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(255, 61, 90, 0.95), rgba(109, 91, 255, 0.95));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    letter-spacing: 0.08em;
    font-size: 0.9rem;
    color: #ffffff;
    box-shadow: 0 10px 22px rgba(255, 61, 90, 0.18), 0 14px 30px rgba(109, 91, 255, 0.14);
}

.brand-word {
    font-weight: 800;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 0.84rem;
}

.nav-links a {
    color: rgba(11, 11, 18, 0.7);
    text-decoration: none;
    position: relative;
    padding: 4px 0;
    font-weight: 600;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    border-radius: 999px;
    transition: width 0.18s ease-out;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links .nav-login {
    color: rgba(11, 11, 18, 0.86);
    font-weight: 700;
}

.nav-links .nav-cta {
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--accent);
    color: #ffffff;
    font-weight: 800;
    box-shadow: 0 14px 32px rgba(255, 61, 90, 0.22);
}

.nav-links .nav-cta::after {
    display: none;
}

/* Playlist strip (Soundtrack-style) */
.playlist-strip {
    margin-top: 26px;
}

.strip-scroller {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 10px 4px 18px;
    scroll-snap-type: x mandatory;
}

.strip-scroller::-webkit-scrollbar {
    height: 10px;
}

.strip-scroller::-webkit-scrollbar-thumb {
    background: rgba(11, 11, 18, 0.18);
    border-radius: 999px;
}

.strip-card {
    flex: 0 0 220px;
    min-height: 130px;
    border-radius: 18px;
    border: 1px solid var(--border-2);
    background: var(--card);
    box-shadow: var(--shadow-2);
    scroll-snap-align: start;
    position: relative;
    overflow: hidden;
}

.strip-card::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.9;
    background: radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.85), transparent 45%);
    pointer-events: none;
}

.strip-card-inner {
    position: relative;
    padding: 14px 14px 12px;
}

.strip-tag {
    display: inline-flex;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid var(--border-2);
    font-size: 0.72rem;
    font-weight: 800;
    color: rgba(11, 11, 18, 0.78);
}

.strip-card h3 {
    margin: 10px 0 4px;
    font-size: 1.02rem;
    letter-spacing: -0.02em;
}

.strip-card p {
    margin: 0;
    font-size: 0.82rem;
    color: var(--ink-soft);
}

.strip-card.theme-a { background: linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(255, 221, 236, 0.9)); }
.strip-card.theme-b { background: linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(220, 241, 255, 0.9)); }
.strip-card.theme-c { background: linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(224, 255, 246, 0.9)); }
.strip-card.theme-d { background: linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(255, 242, 214, 0.92)); }
.strip-card.theme-e { background: linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(232, 226, 255, 0.92)); }

/* Hero */
.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.72rem;
    color: rgba(11, 11, 18, 0.56);
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 28px;
    margin-top: 8px;
    align-items: center;
    padding: 60px 40px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #e8e2ff 0%, #f5f0ff 50%, #ebe7ff 100%);
    border: 1px solid rgba(109, 91, 255, 0.15);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(109, 91, 255, 0.08), transparent 60%);
    pointer-events: none;
}

.hero h1 {
    font-weight: 900;
    letter-spacing: -0.04em;
    font-size: clamp(3.2rem, 5.2vw, 5.2rem);
    line-height: 0.92;
    margin: 0 0 20px;
    color: var(--ink);
}

.subhead {
    margin: 0;
    max-width: 520px;
    font-size: 1.12rem;
    color: var(--ink-soft);
    line-height: 1.5;
}

.cta-row {
    margin-top: 32px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.8);
    color: var(--ink);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 800;
    gap: 6px;
    cursor: pointer;
    box-shadow: var(--shadow-2);
    transition: transform 0.12s ease-out, box-shadow 0.12s ease-out, background 0.12s ease-out, border-color 0.12s ease-out;
}

.btn.primary {
    background: var(--accent);
    color: #ffffff;
    border-color: rgba(255, 61, 90, 0.35);
    padding: 14px 28px;
    font-size: 1rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(255, 61, 90, 0.25);
}

.btn.secondary {
    background: rgba(255, 255, 255, 0.86);
    border-color: rgba(11, 11, 18, 0.16);
}

.btn.small {
    padding: 8px 14px;
    font-size: 0.82rem;
}

.btn-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 22px 60px rgba(14, 10, 40, 0.18);
    background: rgba(255, 255, 255, 0.92);
}

.btn.primary:hover {
    background: #ff2c4c;
}

.trust-row {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.trust-pill {
    padding: 7px 12px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(11, 11, 18, 0.12);
    background: rgba(255, 255, 255, 0.7);
    font-size: 0.82rem;
    color: rgba(11, 11, 18, 0.78);
    font-weight: 700;
}

/* Hero right panel */
.hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.geometric-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.shape {
    position: absolute;
    background: linear-gradient(135deg, rgba(109, 91, 255, 0.6), rgba(139, 119, 255, 0.4));
    border-radius: 8px;
    box-shadow: 0 12px 32px rgba(109, 91, 255, 0.2);
}

.cube-1 {
    width: 80px;
    height: 80px;
    bottom: 40px;
    left: 20px;
    transform: rotate(15deg);
    background: linear-gradient(135deg, rgba(109, 91, 255, 0.7), rgba(139, 119, 255, 0.5));
}

.cube-2 {
    width: 60px;
    height: 60px;
    top: 80px;
    right: 40px;
    transform: rotate(-10deg);
    background: linear-gradient(135deg, rgba(109, 91, 255, 0.5), rgba(139, 119, 255, 0.3));
}

.cylinder-1 {
    width: 40px;
    height: 120px;
    bottom: 20px;
    right: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 61, 90, 0.7), rgba(255, 91, 110, 0.5));
    box-shadow: 0 12px 32px rgba(255, 61, 90, 0.25);
}

.cylinder-2 {
    width: 30px;
    height: 80px;
    top: 40px;
    left: 60px;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(109, 91, 255, 0.4), rgba(139, 119, 255, 0.2));
}

.smartphone-mockup {
    position: absolute;
    width: 140px;
    height: 280px;
    background: #1a1a1a;
    border-radius: 32px;
    padding: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 8px 24px rgba(0, 0, 0, 0.2);
    z-index: 10;
    bottom: 60px;
    right: 30px;
    transform: rotate(-5deg);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 24px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.screen-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.now-playing {
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(11, 11, 18, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.signal-dots {
    display: flex;
    gap: 3px;
}

.signal-dots span {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(11, 11, 18, 0.3);
}

.signal-dots span:nth-child(2) {
    background: rgba(11, 11, 18, 0.6);
}

.signal-dots span:nth-child(3) {
    background: rgba(11, 11, 18, 0.9);
}

.album-art {
    height: 80px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(109, 91, 255, 0.3), rgba(255, 61, 90, 0.2));
    margin-bottom: 12px;
    border: 1px solid rgba(11, 11, 18, 0.1);
}

.track-info {
    text-align: center;
    margin-bottom: 12px;
}

.track-title {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 2px;
}

.track-artist {
    font-size: 0.65rem;
    color: var(--ink-soft);
}

.progress-bar {
    height: 4px;
    background: rgba(11, 11, 18, 0.1);
    border-radius: 2px;
    margin-bottom: 12px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 35%;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    border-radius: 2px;
}

.player-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.control-btn {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(11, 11, 18, 0.1);
    border: 1px solid rgba(11, 11, 18, 0.2);
}

.control-btn.play {
    width: 32px;
    height: 32px;
    background: var(--accent);
    border: none;
    box-shadow: 0 4px 12px rgba(255, 61, 90, 0.3);
}

/* Music Categories Section */
.playlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 32px;
}

.playlist-card {
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-2);
    transition: transform 0.12s ease-out, box-shadow 0.12s ease-out;
    cursor: pointer;
    border: 1px solid rgba(11, 11, 18, 0.08);
}

.playlist-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 60px rgba(14, 10, 40, 0.15);
}

.playlist-image {
    width: 100%;
    height: 160px;
    position: relative;
    overflow: hidden;
}

.playlist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.12s ease-out;
}

.playlist-card:hover .playlist-image img {
    transform: scale(1.05);
}

.playlist-info {
    padding: 16px;
    position: relative;
}

.playlist-label {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 800;
    color: rgba(11, 11, 18, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
    background: rgba(109, 91, 255, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
}

.playlist-info h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 4px 0 6px;
    letter-spacing: -0.01em;
    color: var(--ink);
    line-height: 1.2;
}

.playlist-type {
    font-size: 0.75rem;
    color: var(--ink-soft);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Responsive for playlist grid */
@media (max-width: 768px) {
    .playlist-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 16px;
    }
    
    .playlist-image {
        height: 140px;
    }
    
    .playlist-info {
        padding: 12px;
    }
    
    .playlist-info h3 {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .playlist-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .playlist-image {
        height: 120px;
    }
}
.business-categories {
    margin-top: 32px;
}

.category-group {
    margin-bottom: 40px;
}

.category-group h3 {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    color: var(--ink);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

.category-card {
    display: block;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(11, 11, 18, 0.08);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--ink);
    transition: transform 0.12s ease-out, box-shadow 0.12s ease-out;
    box-shadow: var(--shadow-2);
}

.category-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 60px rgba(14, 10, 40, 0.15);
}

.category-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 12px;
}

.category-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 8px;
    letter-spacing: -0.01em;
}

.category-card p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--ink-soft);
    line-height: 1.4;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 40px;
}

.feature-item {
    padding: 24px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(11, 11, 18, 0.08);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-2);
}

.feature-item h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin: 0 0 12px;
    letter-spacing: -0.02em;
    color: var(--ink);
}

.feature-item p {
    margin: 0 0 16px;
    font-size: 0.95rem;
    color: var(--ink-soft);
    line-height: 1.5;
}

.feature-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
}

.feature-link:hover {
    text-decoration: underline;
}

.stat-highlight {
    background: linear-gradient(135deg, rgba(255, 61, 90, 0.08), rgba(109, 91, 255, 0.06));
    border: 1px solid rgba(11, 11, 18, 0.08);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    box-shadow: var(--shadow-2);
}

.stat-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
}

.stat-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ink);
    max-width: 400px;
    text-align: left;
}

.stat-source {
    color: var(--ink-soft);
    font-size: 0.85rem;
}

/* Responsive for new sections */
@media (max-width: 768px) {
    .category-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-content {
        flex-direction: column;
        text-align: center;
    }
    
    .stat-text {
        text-align: center;
        max-width: 100%;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}
.section {
    margin-top: 60px;
}

.section-soft {
    background: rgba(255, 255, 255, 0.55);
    border-radius: 32px;
    padding: 38px 26px 32px;
    border: 1px solid rgba(11, 11, 18, 0.08);
    box-shadow: var(--shadow-2);
}

.section-header {
    margin-bottom: 24px;
}

.section-header h2 {
    font-size: 1.4rem;
    margin: 0 0 4px;
    letter-spacing: -0.02em;
}

.section-header p {
    margin: 0;
    font-size: 0.92rem;
    color: var(--ink-soft);
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.how-card {
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(11, 11, 18, 0.08);
    border-radius: 22px;
    padding: 18px 18px 16px;
    box-shadow: var(--shadow-2);
}

.how-number {
    width: 34px;
    height: 34px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    background: linear-gradient(135deg, rgba(255, 61, 90, 0.22), rgba(109, 91, 255, 0.18));
    border: 1px solid rgba(11, 11, 18, 0.08);
}

.how-card h3 {
    margin: 10px 0 6px;
    font-size: 1.04rem;
    letter-spacing: -0.02em;
}

.how-card p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.92rem;
}

.biz-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.biz-card {
    background: rgba(255, 255, 255, 0.76);
    border-radius: 20px;
    border: 1px solid rgba(11, 11, 18, 0.08);
    padding: 18px 18px 16px;
    font-size: 0.88rem;
    box-shadow: var(--shadow-2);
}

.biz-card h3 {
    margin: 4px 0 6px;
    font-size: 1.04rem;
}

.biz-card p {
    margin: 0 0 8px;
    color: var(--ink-soft);
}

.biz-card ul {
    margin: 0;
    padding-left: 18px;
    color: var(--ink-soft);
}

.biz-card li {
    margin-bottom: 4px;
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.artist-card {
    background: rgba(255, 255, 255, 0.76);
    border-radius: 20px;
    border: 1px solid rgba(11, 11, 18, 0.08);
    padding: 14px 14px 16px;
    box-shadow: var(--shadow-2);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.artist-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 14px;
    overflow: hidden;
    background: #f3f3f8;
}

.artist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.artist-info h3 {
    margin: 0 0 4px;
    font-size: 1rem;
}

.artist-info p {
    margin: 0;
    font-size: 0.86rem;
    color: var(--ink-soft);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.76);
    border-radius: var(--radius-md);
    padding: 18px 18px 16px;
    border: 1px solid rgba(11, 11, 18, 0.08);
    box-shadow: var(--shadow-2);
    font-size: 0.88rem;
}

.feature-card-soft {
    background: rgba(255, 255, 255, 0.66);
}

.feature-card h3 {
    margin: 6px 0 6px;
    font-size: 1.02rem;
}

.feature-card p {
    margin: 0 0 8px;
    color: var(--ink-soft);
}

.feature-card ul {
    margin: 0 0 10px;
    padding-left: 18px;
    color: var(--ink-soft);
}

.feature-card li {
    margin-bottom: 4px;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(11, 11, 18, 0.12);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(11, 11, 18, 0.68);
    font-weight: 800;
}

/* Mood section */
.pill-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.mood-card {
    background: rgba(255, 255, 255, 0.72);
    border-radius: 18px;
    border: 1px solid rgba(11, 11, 18, 0.08);
    padding: 16px 16px 14px;
    font-size: 0.86rem;
    box-shadow: var(--shadow-2);
}

.mood-label {
    display: inline-flex;
    padding: 3px 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255, 61, 90, 0.2), rgba(109, 91, 255, 0.16));
    color: rgba(11, 11, 18, 0.8);
    font-size: 0.74rem;
    font-weight: 800;
}

.mood-card p {
    margin: 8px 0 10px;
    color: var(--ink-soft);
}

.mood-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.link-pill {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(11, 11, 18, 0.12);
    text-decoration: none;
    font-size: 0.8rem;
    color: var(--ink);
    font-weight: 800;
}

.link-pill.subtle {
    background: transparent;
    border-style: dashed;
    color: var(--ink-soft);
}

.link-pill:hover {
    border-style: solid;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(11, 11, 18, 0.08);
    border-radius: 24px;
    padding: 18px 18px 16px;
    box-shadow: var(--shadow-2);
}

.pricing-card.featured {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 61, 90, 0.24);
    box-shadow: 0 26px 80px rgba(255, 61, 90, 0.14), 0 26px 80px rgba(109, 91, 255, 0.12);
}

.pricing-top h3 {
    margin: 0 0 6px;
    letter-spacing: -0.02em;
}

.price {
    font-weight: 900;
    font-size: 1.8rem;
    letter-spacing: -0.04em;
}

.price-period {
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink-soft);
}

.pricing-note {
    margin-top: 32px;
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-md);
    border: 1px solid rgba(11, 11, 18, 0.08);
}

.pricing-note p {
    margin: 0 0 8px;
    font-size: 0.95rem;
    color: var(--ink);
}

.pricing-note a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
}

.pricing-note a:hover {
    text-decoration: underline;
}

.price-sub {
    margin-top: 4px;
    color: var(--ink-soft);
    font-size: 0.9rem;
}

.pricing-list {
    margin: 12px 0 14px;
    padding-left: 18px;
    color: var(--ink-soft);
}

.pricing-list li {
    margin-bottom: 6px;
}

.w-full {
    width: 100%;
}

/* About */
.about-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
    gap: 26px;
    align-items: start;
}

.about-copy p {
    color: var(--ink-soft);
    font-size: 0.92rem;
}

.about-copy p + p {
    margin-top: 8px;
}

.about-meta {
    background: rgba(255, 255, 255, 0.76);
    border-radius: 20px;
    border: 1px solid rgba(11, 11, 18, 0.08);
    padding: 14px 16px;
    font-size: 0.8rem;
    box-shadow: var(--shadow-2);
}

.meta-block + .meta-block {
    margin-top: 10px;
}

.meta-label {
    display: block;
    color: var(--ink-soft);
}

.meta-value {
    font-family: ui-monospace, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 0.74rem;
}

/* Footer */
.site-footer {
    margin-top: auto;
    padding-top: 26px;
    font-size: 0.78rem;
    color: rgba(11, 11, 18, 0.62);
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.site-footer .dot {
    opacity: 0.6;
}

/* Responsive */
@media (max-width: 960px) {
    .site-header {
        flex-wrap: wrap;
        align-items: flex-start;
        padding: 10px 14px;
        border-radius: 18px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: flex-end;
        flex: 1;
    }

    .hero {
        grid-template-columns: minmax(0, 1fr);
    }

    .card-grid,
    .pill-grid,
    .biz-grid,
    .how-grid,
    .pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-layout {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 640px) {
    .page-wrap {
        padding: 16px 14px 26px;
    }

    .card-grid,
    .pill-grid,
    .biz-grid,
    .how-grid,
    .pricing-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .section-soft {
        padding: 24px 18px 22px;
    }
}
