/**
 * SnapSong-specific styles
 * Extends /shared/css/base.css — do NOT duplicate base styles here
 */

/* ── Hero ── */
.hero { padding: 132px 0 100px; overflow: hidden; text-align: center; }
.hero .container {
    display: flex; align-items: center; justify-content: center;
}
.hero-content { max-width: 820px; text-align: center; }
.hero-icon { width: 108px; height: 108px; border-radius: 26px; box-shadow: 0 20px 60px rgba(255,0,46,0.25); margin: 0 auto 32px; }
.hero h1 { font-size: clamp(48px, 6.2vw, 88px); font-weight: 900; line-height: 1.05; letter-spacing: -0.03em; margin-bottom: 24px; }
.hero h1 .gradient-text {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-pink), var(--accent-orange));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero p { font-size: clamp(18px, 2.2vw, 24px); color: var(--text-secondary); max-width: 760px; margin: 0 auto 42px; line-height: 1.6; }
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-appstore {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 28px; border-radius: 14px; font-size: 16px; font-weight: 600;
    text-decoration: none; color: white;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-pink));
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn-appstore:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(255,0,46,0.3); }
.btn-secondary {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 28px; border-radius: 14px; font-size: 16px; font-weight: 600;
    text-decoration: none; color: var(--text-primary);
    background: var(--glass-fill); border: 1px solid var(--glass-stroke);
    transition: transform 0.2s, background 0.2s;
}
.btn-secondary:hover { transform: translateY(-2px); background: rgba(255,255,255,0.1); }

/* ── App Store Badge ── */
.appstore-badge-nav img,
.appstore-badge-hero img {
    transition: transform 0.2s, opacity 0.2s;
}
.appstore-badge-nav img:hover,
.appstore-badge-hero img:hover {
    transform: translateY(-1px);
    opacity: 0.9;
}
.appstore-badge-nav {
    display: inline-flex;
    align-items: center;
}
.appstore-badge-hero {
    display: inline-flex;
    align-items: center;
}

/* ── Coming Soon Badge ── */
.coming-soon-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: white;
    background: linear-gradient(135deg, #FF6B35, #FF8F5A, #FFB347);
    white-space: nowrap;
    margin-left: 8px;
    vertical-align: middle;
}

/* ── Showcase ── */
.showcase { padding: 40px 0 100px; }
.showcase-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 28px; max-width: 1000px; margin: 0 auto;
}
.showcase-item { display: flex; flex-direction: column; gap: 12px; transition: transform 0.4s cubic-bezier(0.2, 0, 0, 1); }
.showcase-item:hover { transform: translateY(-8px); }
.showcase-screenshot img { width: 100%; display: block; }
.showcase-player {
    display: flex; align-items: center; gap: 12px;
    padding: 14px 18px;
    background: var(--glass-fill); border: 1px solid var(--glass-stroke); border-radius: 16px;
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.play-btn {
    width: 40px; height: 40px; border-radius: 50%; border: none; cursor: pointer;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-pink));
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    transition: transform 0.15s, box-shadow 0.15s;
}
.play-btn:hover { transform: scale(1.08); box-shadow: 0 4px 16px rgba(255,0,46,0.4); }
.play-btn:active { transform: scale(0.95); }
.play-btn svg { width: 14px; height: 14px; fill: white; margin-left: 2px; }
.play-btn.playing svg { margin-left: 0; }
.player-info { flex: 1; min-width: 0; }
.player-title { font-size: 13px; font-weight: 700; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: flex; align-items: center; gap: 6px; }
.player-title .preview-tag { font-size: 9px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text-tertiary); padding: 1px 6px; border-radius: 4px; border: 1px solid var(--glass-stroke); line-height: 1.4; flex-shrink: 0; transition: opacity 0.2s; }
.player-sub { font-size: 11px; color: var(--text-tertiary); margin-top: 2px; }
.version-toggle {
    display: inline-block; font-size: 10px; font-weight: 600; letter-spacing: 0.04em;
    color: var(--text-tertiary); cursor: pointer;
    padding: 3px 10px; border-radius: 100px; margin-top: 6px;
    border: 1px solid var(--glass-stroke); transition: all 0.2s;
    line-height: 1;
}
.version-toggle:hover { color: var(--text-secondary); border-color: var(--text-tertiary); }
.version-toggle.active { color: var(--accent-orange); border-color: var(--accent-orange); }
.player-progress { width: 100%; height: 4px; border-radius: 2px; background: rgba(255,255,255,0.1); margin-top: 8px; overflow: hidden; cursor: pointer; }
.player-progress-bar { height: 100%; width: 0%; border-radius: 2px; background: linear-gradient(90deg, var(--primary-red), var(--primary-pink)); transition: width 0.1s linear; }

/* ── App Preview ── */
.app-preview { padding: 16px 0 100px; scroll-margin-top: 96px; }
.preview-video-grid {
    display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px; max-width: 780px; margin: 0 auto;
}
.preview-video {
    margin: 0; padding: 14px;
    background: rgba(255,255,255,0.04); border: 1px solid var(--glass-stroke); border-radius: 32px;
    box-shadow: 0 30px 90px rgba(0,0,0,0.35);
}
.preview-video video {
    width: 100%; aspect-ratio: 443 / 960; display: block; object-fit: cover;
    background: #000; border-radius: 22px;
}
.preview-video figcaption {
    margin-top: 14px; color: var(--text-secondary); font-size: 14px; font-weight: 600;
    line-height: 1.45; text-align: center;
}

/* ── Sections ── */
.section-label { font-size: 14px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent-orange); margin-bottom: 16px; text-align: center; }
.section-title { font-size: clamp(32px, 4.5vw, 48px); font-weight: 800; text-align: center; margin-bottom: 64px; letter-spacing: -0.02em; }
.section-subtitle { font-size: clamp(16px, 1.8vw, 20px); color: var(--text-secondary); text-align: center; max-width: 640px; margin: -40px auto 64px; line-height: 1.65; }

/* ── How it works ── */
.how-it-works { padding: 100px 0; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step {
    padding: 36px 28px; border-radius: 20px;
    background: var(--glass-fill); border: 1px solid var(--glass-stroke);
    text-align: center; transition: transform 0.3s, border-color 0.3s;
}
.step:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.2); }
.step-icon {
    width: 56px; height: 56px; border-radius: 16px; margin: 0 auto 20px;
    display: flex; align-items: center; justify-content: center; font-size: 28px;
    background: linear-gradient(135deg, rgba(255,0,46,0.15), rgba(255,107,53,0.15));
}
.step-icon svg { width: 28px; height: 28px; stroke: rgba(255,255,255,0.85); stroke-width: 1.8; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.step h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.step p { font-size: 16px; color: var(--text-secondary); line-height: 1.7; }

/* ── Features ── */
.features { padding: 100px 0; }
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.feature {
    padding: 32px 28px; border-radius: 20px;
    background: var(--glass-fill); border: 1px solid var(--glass-stroke); transition: transform 0.3s;
}
.feature:hover { transform: translateY(-3px); }
.feature-header { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.feature-badge {
    width: 40px; height: 40px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, rgba(255,0,46,0.12), rgba(255,107,53,0.12));
}
.feature-badge svg { width: 20px; height: 20px; stroke: rgba(255,255,255,0.85); stroke-width: 1.8; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.feature h3 { font-size: 18px; font-weight: 700; }
.feature p { font-size: 16px; color: var(--text-secondary); line-height: 1.7; }

/* ── Use Cases ── */
.use-cases { padding: 100px 0; }
.use-cases-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.use-case {
    padding: 32px 24px; border-radius: 20px; text-align: center;
    background: var(--glass-fill); border: 1px solid var(--glass-stroke); transition: transform 0.3s;
}
.use-case:hover { transform: translateY(-3px); }
.use-case-icon { font-size: 36px; margin-bottom: 16px; }
.use-case h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.use-case p { font-size: 15px; color: var(--text-secondary); line-height: 1.65; }

/* ── Privacy & Accessibility ── */
.trust { padding: 100px 0; }
.trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.trust-card {
    padding: 36px 32px; border-radius: 20px;
    background: var(--glass-fill); border: 1px solid var(--glass-stroke);
}
.trust-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.trust-card h3 svg {
    width: 22px; height: 22px; flex-shrink: 0;
    fill: none; stroke: var(--accent-orange); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.trust-card p { font-size: 16px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 16px; }
.trust-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.trust-badge {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 14px; border-radius: 100px; font-size: 13px; font-weight: 500;
    color: var(--text-secondary); background: rgba(255,255,255,0.04); border: 1px solid var(--glass-stroke);
}
.trust-badge svg {
    width: 14px; height: 14px; flex-shrink: 0;
    fill: none; stroke: var(--text-tertiary); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}

/* ── Made by ── */
.made-by { padding: 80px 0; text-align: center; }
.made-by-content {
    max-width: 600px; margin: 0 auto; padding: 36px 32px; border-radius: 20px;
    background: var(--glass-fill); border: 1px solid var(--glass-stroke);
}
.made-by-content p { font-size: 17px; color: var(--text-secondary); line-height: 1.7; }
.made-by-content .name { color: var(--text-primary); font-weight: 700; }
.made-by-content .highlight { color: var(--accent-orange); }

/* ── CTA Final ── */
.final-cta { padding: 100px 0 80px; text-align: center; }
.final-cta h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; margin-bottom: 16px; letter-spacing: -0.02em; }
.final-cta p { font-size: clamp(16px, 1.8vw, 20px); color: var(--text-secondary); margin-bottom: 40px; }

/* ══════════════════════════════════════════════════════════════════
   LEGAL PAGES (Privacy Policy & Terms of Use)
   ══════════════════════════════════════════════════════════════════ */

.legal-content {
    padding: 120px 0 60px;
}

.legal-content .container {
    max-width: 800px;
}

.legal-content h1 {
    font-size: clamp(32px, 4.5vw, 48px);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
    text-align: center;
}

.legal-meta {
    text-align: center;
    color: var(--text-tertiary);
    font-size: 14px;
    margin-bottom: 48px;
}

.legal-section {
    padding: 32px;
    border-radius: 20px;
    background: var(--glass-fill);
    border: 1px solid var(--glass-stroke);
    margin-bottom: 20px;
}

.legal-section h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    padding-left: 16px;
    border-left: 3px solid var(--accent-orange);
}

.legal-section h3 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.legal-section p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 12px;
}

.legal-section p:last-child {
    margin-bottom: 0;
}

.legal-section ul {
    list-style: none;
    padding: 0;
    margin: 12px 0;
}

.legal-section ul li {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
}

.legal-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-orange);
}

.legal-section a {
    color: var(--accent-orange);
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

.contact-info {
    padding: 20px 24px;
    border-radius: 12px;
    background: rgba(255, 107, 53, 0.08);
    border: 1px solid rgba(255, 107, 53, 0.2);
    margin-top: 12px;
}

.contact-info a {
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 600;
}

/* ══════════════════════════════════════════════════════════════════
   PRESSKIT — Intelligence, Accessibility, Tech Badges, Press Kit
   ══════════════════════════════════════════════════════════════════ */

/* Intelligence & Accessibility Sections */
.intelligence { padding: 100px 0; }
.accessibility { padding: 100px 0; }
.privacy { padding: 100px 0; }

.intelligence-intro {
    font-size: clamp(16px, 1.8vw, 20px);
    color: var(--text-secondary);
    text-align: center;
    max-width: 640px;
    margin: -40px auto 64px;
    line-height: 1.65;
}

.intelligence-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.intelligence-card {
    padding: 32px 24px;
    border-radius: 20px;
    background: var(--glass-fill);
    border: 1px solid var(--glass-stroke);
    text-align: center;
    transition: transform 0.3s;
}

.intelligence-card:hover {
    transform: translateY(-4px);
}

.intelligence-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(255,0,46,0.12), rgba(255,107,53,0.12));
}

.intelligence-icon svg {
    width: 24px;
    height: 24px;
    stroke: rgba(255,255,255,0.85);
    stroke-width: 1.8;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.intelligence-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.intelligence-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.intelligence-privacy {
    text-align: center;
    margin-top: 32px;
    font-size: 14px;
    color: var(--text-tertiary);
}

.intelligence-privacy svg {
    stroke: var(--text-tertiary);
    stroke-width: 1.8;
    fill: none;
}

/* Tech Badges */
.tech-badges { padding: 100px 0; }

.badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    background: var(--glass-fill);
    border: 1px solid var(--glass-stroke);
    transition: transform 0.2s;
}

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

.badge svg {
    width: 18px;
    height: 18px;
    stroke: var(--accent-orange);
    stroke-width: 1.8;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Press Kit Section */
.presskit { padding: 100px 0; }

.presskit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.presskit-card {
    padding: 32px 28px;
    border-radius: 20px;
    background: var(--glass-fill);
    border: 1px solid var(--glass-stroke);
}

.presskit-card-wide {
    grid-column: 1 / -1;
}

.presskit-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.info-table {
    width: 100%;
    border-collapse: collapse;
}

.info-table tr {
    border-bottom: 1px solid var(--glass-stroke);
}

.info-table tr:last-child {
    border-bottom: none;
}

.info-table td {
    padding: 10px 0;
    font-size: 15px;
    vertical-align: top;
}

.info-table td:first-child {
    color: var(--text-tertiary);
    font-weight: 500;
    width: 120px;
    padding-right: 16px;
}

.info-table td:last-child {
    color: var(--text-secondary);
}

.info-table a {
    color: var(--accent-orange);
    text-decoration: none;
}

.info-table a:hover {
    text-decoration: underline;
}

.presskit-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.presskit-card ul li {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    padding-left: 20px;
    position: relative;
    margin-bottom: 6px;
}

.presskit-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-orange);
}

.presskit-card ul li a {
    color: var(--accent-orange);
    text-decoration: none;
}

.presskit-card ul li a:hover {
    text-decoration: underline;
}

.story-photo {
    width: 100%;
    max-width: 360px;
    border-radius: 16px;
    margin: 0 auto 24px;
    display: block;
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.presskit-card p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.downloads-label {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--accent-orange);
    margin-top: 24px;
    margin-bottom: 10px;
}

.downloads-label:first-of-type {
    margin-top: 0;
}

/* ── Footer Legal ── */
.footer-legal {
    font-size: 11px;
    color: rgba(255,255,255,0.2);
    margin-top: 8px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .hero { padding: 100px 0 56px; }
    .hero-content { max-width: none; }
    .hero-icon { width: 88px; height: 88px; border-radius: 22px; margin-bottom: 26px; }
    .hero h1 { font-size: clamp(38px, 11vw, 58px); }
    .hero p { margin: 0 auto 32px; }
    .app-preview { padding: 12px 0 80px; }
    .preview-video-grid { grid-template-columns: 1fr; max-width: 320px; gap: 24px; }
    .steps { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .use-cases-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-grid { grid-template-columns: 1fr; }
    .showcase-grid { grid-template-columns: 1fr; max-width: 340px; gap: 24px; }
    .intelligence-grid { grid-template-columns: 1fr; }
    .presskit-grid { grid-template-columns: 1fr; }
    .legal-section { padding: 24px 20px; }
    .legal-content h1 { font-size: 28px; }
}
@media (max-width: 480px) {
    .use-cases-grid { grid-template-columns: 1fr; }
}
