:root {
    --primary-text: #111827;
    --secondary-text: #4B5563;
    --bg-color: #FFFFFF;
    --brand-pink: #FF007A;
    --brand-pink-light: #FFD1E3;
    --brand-pink-bg: #FFF0F5;
    --brand-orange: #FF6B00;
    --gradient-brand: linear-gradient(90deg, #FF00A0 0%, #FF7A00 100%);
    --gradient-hover: linear-gradient(90deg, #E60090 0%, #E66D00 100%);
    --border-color: #E5E7EB;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--primary-text);
    background-color: var(--bg-color);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

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

/* ---------- Navbar ---------- */
.navbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border-color);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    display: flex;
    align-items: baseline;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.05em;
}
.logo-viral { color: #000; }
.logo-stitch {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.nav-links { display: none; gap: 2.5rem; font-weight: 500; font-size: 0.95rem; }
.nav-links a { color: var(--primary-text); transition: color 0.2s; }
.nav-links a:hover { color: var(--brand-pink); }
.nav-actions { display: none; align-items: center; gap: 0.75rem; }
.nav-link-signin {
    font-weight: 500;
    border: 1px solid var(--border-color);
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    transition: all 0.2s;
}
.nav-link-signin:hover { background: #f9fafb; border-color: #d1d5db; }
@media (min-width: 768px) {
    .nav-links { display: flex; }
    .nav-actions { display: flex; }
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    font-family: inherit;
}
.btn-primary {
    background: var(--gradient-brand);
    color: white;
    padding: 0.6rem 1.5rem;
}
.btn-primary:hover {
    background: var(--gradient-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 0, 122, 0.3);
}
.btn-secondary {
    background: white;
    color: var(--primary-text);
    border: 1px solid var(--border-color);
    padding: 0.6rem 1.5rem;
}
.btn-secondary:hover { background: #f9fafb; border-color: #d1d5db; }
.btn-large { padding: 0.85rem 1.75rem; font-size: 1rem; }
.btn-small { padding: 0.4rem 1rem; font-size: 0.875rem; border-radius: 8px; }

/* ---------- Hero ---------- */
.hero {
    max-width: 1200px;
    margin: 4rem auto 2rem;
    padding: 0 2rem;
}
.hero-container { display: flex; flex-direction: column; gap: 4rem; }
@media (min-width: 1024px) {
    .hero-container { flex-direction: row; align-items: center; }
    .hero-content { flex: 1; max-width: 50%; }
    .hero-visual { flex: 1; }
}

/* "NEW · The #1 Viral Automation Tool" pill - transparent fill, gradient
   stroke. The standard double-background trick: the inner solid layer is
   clipped to the padding-box, the gradient layer to the border-box. */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.25rem 1rem 0.25rem 0.25rem;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
    border: 1.5px solid transparent;
    background:
        linear-gradient(white, white) padding-box,
        var(--gradient-brand) border-box;
}
.badge-text {
    background: white;
    color: var(--brand-pink);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.65rem;
    border-radius: 9999px;
    border: 1.5px solid transparent;
    background:
        linear-gradient(white, white) padding-box,
        var(--gradient-brand) border-box;
    letter-spacing: 0.05em;
}
.badge-desc {
    font-size: 0.875rem;
    font-weight: 600;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero headline */
.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}
.title-line { display: block; white-space: nowrap; }
.title-gradient {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.0625rem;
    color: var(--secondary-text);
    margin-bottom: 2rem;
    max-width: 520px;
    line-height: 1.6;
}
.text-highlight {
    color: var(--brand-pink);
    font-weight: 600;
    white-space: nowrap;
}

.hero-buttons { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.75rem; }

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: var(--secondary-text);
}
.trust-item { display: flex; align-items: center; gap: 0.5rem; font-weight: 500; }
.check {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1.5px solid var(--brand-pink);
    color: var(--brand-pink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ---------- Hero visual (phone cards + sparkles + badge) ---------- */
.hero-visual {
    position: relative;
    height: 580px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-visual-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 520px;
}

.phone-card {
    position: absolute;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(255, 0, 122, 0.25);
    border: 6px solid #111;
    background: #111;
}
.phone-screen {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.phone-grad-pink    { background: linear-gradient(160deg, #FF66A8 0%, #B33A7E 50%, #4B1A52 100%); }
.phone-grad-purple  { background: linear-gradient(160deg, #C8408F 0%, #6B2480 50%, #2C0F46 100%); }
.phone-grad-magenta { background: linear-gradient(160deg, #FF3D8A 0%, #882563 50%, #2A0E2C 100%); }

/* Phone proportions: ~9:18 (iPhone-ish) but slightly wider to fit images. */
.phone-card-main {
    width: 270px;
    height: 510px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -52%);
    z-index: 12;
    border-radius: 34px;
}
.phone-card-back-left {
    width: 195px;
    height: 370px;
    top: 28%;
    left: 0;
    transform: rotate(-10deg);
    z-index: 8;
    opacity: 0.95;
    border-width: 5px;
    border-radius: 26px;
}
.phone-card-back-right {
    width: 195px;
    height: 370px;
    top: 34%;
    right: 0;
    transform: rotate(10deg);
    z-index: 8;
    opacity: 0.95;
    border-width: 5px;
    border-radius: 26px;
}

/* Real image inside a phone screen */
.phone-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.play-button-large {
    width: 76px;
    height: 76px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(255,255,255,0.4);
}
.play-button-small {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(255,255,255,0.4);
}

.card-video-controls {
    position: absolute;
    bottom: 18px;
    left: 18px;
    right: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 5;
}
.card-video-controls-sm {
    bottom: 12px;
    left: 12px;
    right: 12px;
    gap: 7px;
}
.progress-bar { flex: 1; height: 3px; background: rgba(255, 255, 255, 0.35); border-radius: 2px; }
.progress-fill { width: 60%; height: 100%; background: white; border-radius: 2px; }
.card-video-controls-sm .progress-bar { height: 2px; }

.social-row {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1.5rem;
    z-index: 20;
}
.social-icon {
    width: 78px;
    height: 78px;
    background: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 12px 28px rgba(0,0,0,0.14);
}

/* Guarantee badge + its orbiting sparkle ring */
.guaranteed-wrap {
    position: absolute;
    top: 0;
    right: -18px;
    width: 180px;
    height: 180px;
    z-index: 25;
}
.guaranteed-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(8deg);
    background: var(--gradient-brand);
    color: white;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 4px;
    box-shadow: 0 10px 25px rgba(255, 107, 0, 0.4);
}
.guaranteed-badge .small-text { font-size: 0.75rem; font-weight: 600; opacity: 0.95; }
.guaranteed-badge .big-text { font-size: 1.1rem; font-weight: 900; line-height: 1.05; }

/* Stars stacked above + below the wordmark, inside the disc */
.badge-sparkle {
    color: white;
    font-weight: 900;
    line-height: 1;
}
.badge-sparkle.bs-top    { font-size: 0.95rem; opacity: 0.95; }
.badge-sparkle.bs-bottom { font-size: 0.75rem; opacity: 0.85; }

/* Stars scattered around the outside of the disc */
.orbit-sparkle {
    position: absolute;
    color: var(--brand-pink);
    font-weight: 900;
    pointer-events: none;
    line-height: 1;
}
.orbit-sparkle.orbit-top { top: -6px; left: 50%; transform: translateX(-50%); font-size: 1.1rem; color: var(--brand-orange); }
.orbit-sparkle.orbit-tl  { top: 18px;  left: 4px;   font-size: 0.9rem; }
.orbit-sparkle.orbit-tr  { top: 8px;   right: 6px;  font-size: 1rem; color: var(--brand-orange); }
.orbit-sparkle.orbit-bl  { bottom: 12px; left: 0;   font-size: 0.85rem; color: var(--brand-orange); }
.orbit-sparkle.orbit-br  { bottom: 6px;  right: 14px; font-size: 1rem; }

.hero-sparkle {
    position: absolute;
    color: var(--brand-pink);
    font-weight: 900;
    z-index: 30;
    pointer-events: none;
    opacity: 0.85;
}
.hs1 { top: 6%; left: 38%; font-size: 1.1rem; }
.hs2 { top: 78%; left: 12%; font-size: 1.4rem; color: var(--brand-orange); }
.hs3 { top: 50%; right: -6px; font-size: 1rem; }

/* Animations */
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes floatYMain {
    0%,100% { transform: translate(-50%, -55%); }
    50%     { transform: translate(-50%, calc(-55% - 10px)); }
}
@keyframes floatYLeft {
    0%,100% { transform: rotate(-9deg) translateY(0); }
    50%     { transform: rotate(-9deg) translateY(-10px); }
}
@keyframes floatYRight {
    0%,100% { transform: rotate(9deg) translateY(0); }
    50%     { transform: rotate(9deg) translateY(-10px); }
}
.float-anim-1 { animation: floatYMain 6s ease-in-out infinite; }
.float-anim-2 { animation: floatYLeft 5s ease-in-out infinite 1s; }
.float-anim-3 { animation: floatYRight 5s ease-in-out infinite 2s; }
.float-anim-4 { animation: floatY 5s ease-in-out infinite 0.5s; }
.float-anim-5 { animation: floatY 7s ease-in-out infinite 1.5s; }

/* ---------- Dashboard preview ---------- */
.dashboard-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}
.dashboard-wrapper {
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
    overflow: hidden;
}
.dashboard-ui { padding: 2rem; }

.dash-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}
.dash-logo { display: flex; flex-direction: column; gap: 0.25rem; }
.dash-logo-name {
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1;
}
.dash-logo-name .logo-viral, .dash-logo-name .logo-stitch { font-size: 1.25rem; }
.breadcrumb {
    font-size: 0.75rem;
    color: var(--secondary-text);
    font-weight: 500;
}

.dash-header-actions { display: flex; align-items: center; gap: 0.75rem; }
.dropdown {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.85rem 0.4rem 0.4rem;
    border: 1px solid var(--border-color);
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 500;
}
.dropdown-pill {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--gradient-brand);
    color: white;
    font-size: 0.625rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.icon-btn {
    background: white;
    border: 1px solid var(--border-color);
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: var(--secondary-text);
}

.dash-tabs {
    display: flex;
    gap: 1.75rem;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 1.5rem;
}
.tab {
    padding: 0 0 0.85rem 0;
    font-weight: 600;
    color: var(--secondary-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
}
.tab.active {
    color: var(--brand-pink);
    border-bottom: 2px solid var(--brand-pink);
    margin-bottom: -1px;
}
.tab .count {
    background: #f3f4f6;
    color: var(--secondary-text);
    padding: 0.05rem 0.45rem;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 600;
}
.tab.active .count { background: var(--brand-pink-bg); color: var(--brand-pink); }

.dash-stats-box {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    background: #fafafa;
}
.stats-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--secondary-text);
    letter-spacing: 0.06em;
    display: block;
    margin-bottom: 0.4rem;
}
.stats-value-row { display: flex; align-items: baseline; gap: 0.85rem; }
.stats-number { font-size: 2rem; font-weight: 800; letter-spacing: -0.02em; }
.stats-trend { color: #10B981; font-weight: 700; font-size: 0.875rem; }
.trend-text { color: var(--secondary-text); font-weight: 400; margin-left: 0.25rem; }
.stats-actions { display: flex; align-items: center; gap: 1rem; }
.sync-time { font-size: 0.8125rem; color: var(--secondary-text); }

.dash-table { display: flex; flex-direction: column; gap: 0.75rem; }
.table-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: white;
    gap: 1rem;
}
.video-cell { display: flex; gap: 1rem; flex: 1; min-width: 0; }
.video-thumb {
    width: 90px;
    height: 90px;
    border-radius: 10px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.video-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.35) 100%);
}
.thumb-play {
    position: relative;
    z-index: 2;
    width: 26px;
    height: 26px;
    background: rgba(255,255,255,0.28);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* video thumbnail backgrounds - gradient placeholders that look like content */
/* Dashboard preview thumbs are square-cropped backgrounds of real posts. */
.thumb-1 { background: #000 url('assets/kanye.jpg') center/cover no-repeat; }
.thumb-2 { background: #000 url('assets/squish.jpg') center/cover no-repeat; }
.thumb-3 { background: #000 url('assets/lebron.jpg') center/cover no-repeat; }

.video-info { min-width: 0; flex: 1; display: flex; flex-direction: column; justify-content: center; }
.video-info h4 {
    font-size: 0.9375rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.video-info p { font-size: 0.75rem; color: var(--secondary-text); margin-bottom: 0.5rem; }
.video-metrics-small { display: flex; gap: 0.85rem; font-size: 0.7rem; color: var(--secondary-text); }
.video-metrics-small span { display: flex; align-items: center; gap: 0.2rem; }

.platform-stats {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    flex-shrink: 0;
    min-width: 360px;
}
.p-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--secondary-text);
}
.p-stat strong {
    width: 80px;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    color: var(--primary-text);
    font-weight: 700;
}
.p-stat .metrics-row {
    display: flex;
    gap: 0.85rem;
    flex: 1;
    color: var(--secondary-text);
}
.p-stat .metrics-row > span { display: flex; align-items: center; gap: 0.2rem; }
.ext-link {
    color: var(--secondary-text);
    width: 22px;
    height: 22px;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

.dash-footer {
    margin-top: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8125rem;
    color: var(--secondary-text);
}
.view-all {
    color: var(--primary-text);
    font-weight: 600;
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

/* ---------- Bottom features ---------- */
.bottom-features {
    max-width: 1200px;
    margin: 6rem auto 4rem;
    padding: 0 2rem;
    text-align: center;
}
.bottom-features-title {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 3rem;
    letter-spacing: -0.025em;
    line-height: 1.2;
}
.text-gradient {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: left;
}
@media (min-width: 768px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .feature-grid { grid-template-columns: repeat(4, 1fr); } }

.feature-card {
    padding: 1.75rem;
    border-radius: 14px;
    background: #fafafa;
    border: 1px solid var(--border-color);
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    background: white;
}
.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.25rem;
}
.icon-search { background: #FFE5F0; }
.icon-stitch { background: #F3E5FF; }
.icon-schedule { background: #FFF4E5; }
.icon-views { background: #E5FFF0; }
.feature-card h3 { font-size: 1.0625rem; font-weight: 700; margin-bottom: 0.4rem; }
.feature-card p { font-size: 0.875rem; color: var(--secondary-text); line-height: 1.5; }

/* ---------- Footer ---------- */
footer { border-top: 1px solid var(--border-color); padding: 2rem; margin-top: 4rem; }
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-logo { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-logo p { font-size: 0.875rem; color: var(--secondary-text); }

/* ---------- Pricing ---------- */
.pricing {
    max-width: 880px;
    margin: 6rem auto 4rem;
    padding: 0 2rem;
}
.pricing-head { text-align: center; margin-bottom: 2.5rem; }
.eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand-pink);
    margin-bottom: 0.75rem;
}
.pricing-head h2 {
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}
.pricing-head p { color: var(--secondary-text); font-size: 1rem; }

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    align-items: stretch;
    max-width: 720px;
    margin: 0 auto;
}

.price-card {
    position: relative;
    background: white;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    padding: 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
}
.price-card-featured {
    border: 1.5px solid transparent;
    background:
        linear-gradient(white, white) padding-box,
        var(--gradient-brand) border-box;
    box-shadow: 0 20px 40px -22px rgba(255, 0, 122, 0.30);
}
.price-tag {
    position: absolute;
    top: -10px;
    right: 18px;
    background: var(--gradient-brand);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 0.3rem 0.7rem;
    border-radius: 9999px;
    text-transform: uppercase;
    box-shadow: 0 6px 16px -4px rgba(255, 0, 122, 0.4);
}
.price-card-head { margin-bottom: 0.75rem; }
.price-card-head h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}
.price-card-desc {
    color: var(--secondary-text);
    font-size: 0.8125rem;
    line-height: 1.4;
}

.price-amount {
    display: flex;
    align-items: flex-start;
    gap: 2px;
    margin-bottom: 0.15rem;
}
.price-currency {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-text);
    margin-top: 6px;
}
.price-num {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1;
}
.price-unit {
    align-self: flex-end;
    color: var(--secondary-text);
    font-size: 0.85rem;
    margin-bottom: 5px;
    margin-left: 4px;
}
.price-sub {
    font-size: 0.75rem;
    color: var(--secondary-text);
    margin-bottom: 1.25rem;
    line-height: 1.4;
}
.price-effective {
    color: var(--brand-pink);
    font-weight: 700;
}

/* Pricing CTAs render as inline links - explicitly set their inline so
   "width: 100%" works regardless of inherited inline-flex from .btn. */
.price-card .btn-block {
    display: flex;
    width: 100%;
    justify-content: center;
    padding: 0.6rem 1rem;
    margin-top: 0.5rem;
}
.btn-outline {
    background: white;
    color: var(--primary-text);
    border: 1.5px solid var(--border-color);
}
.btn-outline:hover { border-color: var(--primary-text); }

.price-features {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.price-features li {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.85rem;
    color: var(--primary-text);
    line-height: 1.4;
}
.price-features li svg { color: var(--brand-pink); flex-shrink: 0; }

/* Spacer on the monthly card so its CTA aligns with the yearly one,
   which has the "Billed annually · $7.50/mo" line. */
.price-sub-placeholder { visibility: hidden; }

@media (max-width: 640px) {
    .pricing-grid { grid-template-columns: 1fr; max-width: 360px; }
    .pricing { padding: 0 1rem; }
}

/* ---------- FAQ ---------- */
.faq {
    max-width: 1200px;
    margin: 5rem auto 5rem;
    padding: 0 2rem;
}
.faq-head { text-align: center; margin-bottom: 2.5rem; }
.faq-head h2 {
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.faq-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-item[open] {
    border-color: var(--brand-pink-light);
    box-shadow: 0 8px 24px -12px rgba(255, 0, 122, 0.15);
}
.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 1.1rem 1.3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary-text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-chev {
    color: var(--secondary-text);
    flex-shrink: 0;
    transition: transform 0.2s ease, color 0.2s ease;
}
.faq-item[open] .faq-chev {
    transform: rotate(180deg);
    color: var(--brand-pink);
}
.faq-item p {
    padding: 0 1.3rem 1.2rem;
    color: var(--secondary-text);
    font-size: 0.9rem;
    line-height: 1.55;
}
@media (max-width: 640px) {
    .faq { padding: 0 1rem; }
    .faq-item summary { font-size: 0.9rem; padding: 1rem 1.1rem; }
}

/* ---------- Responsive nudges ---------- */
@media (max-width: 1023px) {
    .hero-title { font-size: 3rem; }
    .hero-visual { height: 480px; }
    .platform-stats { min-width: 0; }
    .table-row { flex-direction: column; align-items: stretch; }
}
@media (max-width: 640px) {
    .hero-title { font-size: 2.25rem; }
    .nav-container { padding: 0.85rem 1rem; }
    .hero { padding: 0 1rem; margin-top: 2rem; }
    .dashboard-section, .bottom-features { padding: 0 1rem; }
    .bottom-features-title { font-size: 1.75rem; }
}
