/* ================================================
   FJP Brands GmbH – Corporate Website
   ================================================ */

:root {
    --bg: #0F0B1A;
    --bg-elevated: #1B1530;
    --bg-card: #221B3B;
    --bg-card-light: #2A2247;
    --text: #F3F2F7;
    --text-secondary: #A09CAC;
    --text-muted: #6A6676;
    --accent: #FF4D7A;
    --accent-soft: rgba(255, 77, 122, 0.12);
    --brand-purple: #8B5CF7;
    --brand-purple-soft: rgba(139, 92, 247, 0.14);
    --gradient: linear-gradient(135deg, #FF4D7A 0%, #8B5CF7 100%);
    --border: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(255, 255, 255, 0.14);
    --serif: "Instrument Serif", ui-serif, Georgia, serif;
    --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, system-ui, sans-serif;
    --max-width: 1100px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--sans);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: var(--accent);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

a:hover {
    opacity: 0.75;
}

/* ================================================
   Layout
   ================================================ */

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 80px 0;
    position: relative;
}

/* ================================================
   Navigation
   ================================================ */

.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(15, 11, 26, 0.85);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.nav-brand {
    font-family: var(--serif);
    font-size: 22px;
    color: var(--text);
    letter-spacing: 0.5px;
    font-weight: 400;
}

.nav-brand .brand-accent {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--text);
    opacity: 1;
}

@media (max-width: 600px) {
    .nav-links {
        display: none;
    }
}

/* ================================================
   Hero
   ================================================ */

.hero {
    padding: 120px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(139, 92, 247, 0.18) 0%, transparent 60%);
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-kicker {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 24px;
    padding: 6px 14px;
    border: 1px solid var(--accent-soft);
    border-radius: 20px;
    background: var(--accent-soft);
}

.hero h1 {
    font-family: var(--serif);
    font-size: clamp(38px, 6vw, 68px);
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
}

.hero h1 em {
    font-style: italic;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: clamp(16px, 2vw, 19px);
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.65;
}

/* ================================================
   Section headers
   ================================================ */

.section-kicker {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: var(--brand-purple);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--serif);
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.015em;
    margin-bottom: 20px;
}

.section-intro {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 620px;
    line-height: 1.7;
}

.section-centered {
    text-align: center;
}

.section-centered .section-intro {
    margin-left: auto;
    margin-right: auto;
}

/* ================================================
   Vision section
   ================================================ */

.vision {
    background: linear-gradient(180deg, transparent 0%, var(--bg-elevated) 50%, transparent 100%);
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 56px;
}

.value-card {
    padding: 32px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 18px;
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.value-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-2px);
}

.value-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--brand-purple-soft);
    color: var(--brand-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text);
}

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

/* ================================================
   Product (Reality Check) section
   ================================================ */

.product {
    padding: 100px 0;
}

.product-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

@media (max-width: 820px) {
    .product-inner {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
}

.product-visual {
    position: relative;
    aspect-ratio: 1 / 1;
    max-width: 360px;
    margin: 0 auto;
}

.product-visual::before {
    content: "";
    position: absolute;
    inset: -8%;
    background: var(--gradient);
    filter: blur(40px);
    opacity: 0.35;
    border-radius: 50%;
    z-index: 0;
}

.product-visual img {
    position: relative;
    z-index: 1;
    border-radius: 30%;
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.6);
}

.product-copy .section-kicker {
    color: var(--accent);
}

.product-features {
    list-style: none;
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.product-features li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
    text-align: left;
}

.product-features strong {
    color: var(--text);
    font-weight: 600;
    display: block;
    margin-bottom: 2px;
    font-size: 16px;
}

.product-features .check {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--accent-soft);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    margin-top: 2px;
}

.product-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 32px;
    padding: 10px 18px;
    background: var(--accent-soft);
    border: 1px solid rgba(255, 77, 122, 0.25);
    border-radius: 24px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.product-badge::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* ================================================
   Science section
   ================================================ */

.science {
    background: var(--bg-elevated);
    padding: 100px 0;
}

.science-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 32px;
}

.science-pill {
    padding: 8px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ================================================
   Contact / CTA
   ================================================ */

.contact {
    padding: 100px 0;
    text-align: center;
}

.contact-box {
    max-width: 560px;
    margin: 0 auto;
    padding: 48px 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 22px;
}

.contact-box h2 {
    font-family: var(--serif);
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.contact-box p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--gradient);
    color: white;
    font-weight: 600;
    border-radius: 14px;
    font-size: 15px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px -8px rgba(255, 77, 122, 0.4);
    opacity: 1;
}

/* ================================================
   Footer
   ================================================ */

.footer {
    padding: 48px 0 40px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 14px;
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 24px;
    list-style: none;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--text-secondary);
    opacity: 1;
}

/* ================================================
   Legal pages (Impressum, Privacy, Support)
   ================================================ */

.legal-page {
    padding: 80px 0 100px;
}

.legal-page h1 {
    font-family: var(--serif);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.015em;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 22px;
    font-weight: 600;
    margin: 40px 0 14px;
    color: var(--text);
}

.legal-page h3 {
    font-size: 17px;
    font-weight: 600;
    margin: 28px 0 10px;
    color: var(--text);
}

.legal-page p, .legal-page li {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 14px;
}

.legal-page ul, .legal-page ol {
    padding-left: 22px;
    margin-bottom: 14px;
}

.legal-page a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-page strong {
    color: var(--text);
    font-weight: 600;
}

.legal-page .muted-note {
    display: block;
    margin-top: 48px;
    padding: 18px 22px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.65;
}

/* ================================================
   Utilities
   ================================================ */

.text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
