/* SongShop — Relaunching Soon (standalone template)
   Theme: teal #007991, mint #86f2e0, bg #f8f9fc, Poppins + Urbanist */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Urbanist:wght@400;500;600;700&display=swap");

:root {
    --ss-teal: #007991;
    --ss-teal-dark: #005f73;
    --ss-mint: #86f2e0;
    --ss-coral: #ff6e6e;
    --ss-coral-hover: #ff4d4d;
    --ss-bg: #e0e0e0;
    --ss-surface: #ffffff;
    --ss-text: #1f2937;
    --ss-muted: #6b7280;
    --ss-ink-soft: #4b5563;
    --ss-shadow: 0 30px 60px -20px rgba(8, 6, 24, 0.45),
        0 18px 40px -22px rgba(8, 6, 24, 0.35);
    --ss-radius-card: 30px;
    --ss-radius-pill: 999px;
    --font-body: "Urbanist", system-ui, sans-serif;
    --font-heading: "Poppins", system-ui, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--ss-text);
    background-color: var(--ss-bg);
    background-image: url("../images/backdrop.webp");
    background-repeat: no-repeat;
    background-position: left center;
    background-size: auto 72%;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    margin: 0;
}

a {
    color: var(--ss-teal);
    text-decoration: none;
    transition: color 0.15s ease;
}

a:hover {
    color: #e55a5a;
}

img {
    max-width: 100%;
    height: auto;
}

.ss-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.ss-header {
    padding: 3rem 1.5rem 0.5rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ss-logo {
    display: block;
    height: 100px;
    width: auto;
    border-radius: 0;
}

/* Main */
.ss-main {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem 3rem;
}

.ss-container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1rem;
}

.ss-card {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    border-radius: var(--ss-radius-card);
    overflow: visible;
    box-shadow: var(--ss-shadow);
    isolation: isolate;
}

/* Teal visual panel */
.ss-visual {
    position: relative;
    display: flex;
    align-items: center;
    padding: 2.4rem 2.5rem 2.4rem 2.8rem;
    min-height: 560px;
    color: #fff;
    border-radius: 28px 0 0 28px;
    overflow: hidden;
    background: linear-gradient(
            135deg,
            rgba(0, 121, 145, 0.94) 0%,
            rgba(0, 89, 108, 0.92) 50%,
            rgba(0, 121, 145, 0.9) 100%
        ),
        url("../images/backdrop.webp") center / cover no-repeat;
}

.ss-visual-inner {
    position: relative;
    z-index: 2;
    width: 100%;
}

.ss-bubbles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.ss-bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
}

.ss-bubble--lg {
    width: 220px;
    height: 220px;
    right: -60px;
    top: -90px;
}

.ss-bubble--md {
    width: 110px;
    height: 110px;
    right: 70px;
    bottom: -50px;
    background: rgba(255, 255, 255, 0.05);
}

.ss-bubble--sm {
    width: 64px;
    height: 64px;
    right: 200px;
    top: 40px;
    background: rgba(255, 255, 255, 0.08);
}

.ss-figure {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 6;
    pointer-events: none;
}

.ss-figure img {
    display: block;
    height: 380px;
    width: auto;
    transform: scaleX(-1);
    filter: drop-shadow(0 14px 18px rgba(8, 6, 24, 0.35));
    border-radius: 0;
}

.ss-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    background-color: var(--ss-mint) !important;
    color: #202020 !important;
    border-radius: 20px;
    padding: 0.5rem 1rem;
    line-height: 1;
    margin-bottom: 1rem;
}

.ss-visual-title {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.35px;
    color: #fff;
    margin-bottom: 0.75rem;
}

.ss-visual-lead {
    font-size: 0.98rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 1.5rem;
    max-width: 28rem;
}

/* Feature list (auth-style icons) */
.ss-feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ss-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 0.85rem;
}

.ss-feature-list li:last-child {
    margin-bottom: 0;
}

.ss-feature-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.16);
}

.ss-feature-heading {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.96);
    line-height: 1.35;
}

.ss-feature-desc {
    display: block;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.45;
}

/* Content panel */
.ss-panel {
    background: var(--ss-surface);
    border-radius: 0 28px 28px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.25rem 1.75rem;
}

.ss-panel-inner {
    width: 100%;
    max-width: 420px;
}

.ss-panel-title {
    font-size: 1.85rem;
    font-weight: 800;
    letter-spacing: -0.3px;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.ss-panel-sub {
    font-size: 0.95rem;
    color: var(--ss-muted);
    margin: 0 0 1.75rem;
    line-height: 1.6;
}

/* Pill field (auth / newsletter hybrid on light bg) */
.ss-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.ss-notify-label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--ss-text);
    margin-bottom: 0.5rem;
}

.ss-field {
    display: flex;
    align-items: center;
    background: rgba(0, 121, 145, 0.06);
    border: 1px solid rgba(0, 121, 145, 0.2);
    border-radius: var(--ss-radius-pill);
    padding: 0.35rem 0.35rem 0.35rem 1.1rem;
    transition: border-color 0.2s ease, background 0.2s ease;
    margin-bottom: 0.75rem;
}

.ss-field:focus-within {
    border-color: rgba(134, 242, 224, 0.85);
    background: rgba(0, 121, 145, 0.08);
}

.ss-field.is-invalid {
    border-color: rgba(214, 57, 57, 0.75);
}

.ss-input {
    flex: 1;
    min-width: 0;
    border: 0;
    background: transparent;
    color: var(--ss-text);
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    padding: 0.65rem 0.5rem;
}

.ss-input::placeholder {
    color: rgba(31, 41, 55, 0.45);
}

.ss-teal-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 0.4rem;
    color: #fff;
    background-color: var(--ss-teal);
    border: 1px solid var(--ss-teal);
    border-radius: var(--ss-radius-pill);
    font-family: var(--font-heading);
    font-size: 1.02rem;
    font-weight: 600;
    letter-spacing: 0.2px;
    padding: 1.05rem 1.5rem;
    line-height: 1;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease,
        color 0.2s ease, transform 0.2s ease;
}

.ss-teal-pill:hover,
.ss-teal-pill:focus {
    background-color: var(--ss-mint) !important;
    color: #202020 !important;
    border-color: transparent;
    transform: translateY(-1px);
}

.ss-teal-pill:disabled {
    opacity: 0.7;
    cursor: wait;
    transform: none;
}

.ss-feedback {
    min-height: 1.25rem;
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 0.5rem;
}

.ss-feedback.is-error {
    color: #d63939;
}

.ss-feedback.is-success {
    color: var(--ss-teal);
}

/* Social */
.ss-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.75rem 0 1.25rem;
    color: var(--ss-muted);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ss-divider::before,
.ss-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(0, 121, 145, 0.2);
}

.ss-social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: center;
}

.ss-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--ss-radius-pill);
    border: 1px solid rgba(0, 121, 145, 0.25);
    color: var(--ss-teal);
    background: rgba(0, 121, 145, 0.04);
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease,
        transform 0.2s ease;
}

.ss-social-link:hover {
    background: var(--ss-teal);
    border-color: var(--ss-teal);
    color: #fff;
    transform: translateY(-2px);
}

.ss-social-link svg {
    width: 20px;
    height: 20px;
}

/* Footer */
.ss-footer {
    text-align: center;
    padding: 1rem 1.5rem 1.5rem;
    font-size: 0.82rem;
    color: var(--ss-muted);
}

.ss-footer a {
    font-weight: 600;
}

/* Spinner */
.ss-spinner {
    display: none;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, 0.45);
    border-top-color: #fff;
    border-radius: 50%;
    animation: ss-spin 0.8s linear infinite;
}

.ss-teal-pill.is-loading .ss-spinner {
    display: inline-block;
}

@keyframes ss-spin {
    to {
        transform: rotate(360deg);
    }
}

/* Responsive */
@media (max-width: 991.98px) {
    body {
        background-size: auto 55%;
    }

    .ss-card {
        grid-template-columns: 1fr;
    }

    .ss-visual {
        border-radius: 28px 28px 0 0;
        padding: 1.5rem 1.5rem 1.35rem;
        padding-top: 12rem;
        min-height: 0;
    }

    .ss-figure {
        left: 50%;
        bottom: auto;
        top: 0;
        transform: translateX(-50%);
    }

    .ss-figure img {
        height: 240px;
        transform: scaleX(-1);
    }

    .ss-panel {
        border-radius: 0 0 28px 28px;
    }
}

@media (max-width: 575.98px) {
    .ss-visual-title {
        font-size: 1.55rem;
    }

    .ss-field {
        flex-direction: column;
        align-items: stretch;
        padding: 0.5rem;
        border-radius: 20px;
    }

    .ss-input {
        padding: 0.7rem 0.8rem;
    }
}

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