/* ============================================================
   FlipArt86 — Main Stylesheet
   Dark + Neon design system
   ============================================================ */

/* === RESET & VARIABLES === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #0a0a0f;
  --bg2: #111118;
  --bg3: #16161f;
  --border: rgba(255, 255, 255, 0.08);
  --border2: rgba(255, 255, 255, 0.14);
  --text: #f0f0f5;
  --text2: #9191a8;
  --neon-green: #39ff8a;
  --neon-blue: #3af0ff;
  --neon-green-dim: rgba(57, 255, 138, 0.12);
  --neon-blue-dim: rgba(58, 240, 255, 0.12);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

/* === WATERMARK === */
.watermark {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.watermark img {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 65vmin; height: 65vmin;
  object-fit: contain;
  opacity: 0.04;
  filter: grayscale(100%) brightness(3);
}

.wm-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wm-bg img {
  width: 80vmin;
  height: 80vmin;
  object-fit: contain;
  opacity: 1;
}

/* === NAVIGATION === */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2.5rem;
  background: rgba(10, 10, 15, 0.95);
  border-bottom: 0.5px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
  border: 0.5px solid rgba(57, 255, 138, 0.2);
}

.logo-name {
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.5px;
  color: var(--text);
}

.logo-name em {
  font-style: normal;
  color: var(--neon-green);
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-size: 14px;
  color: var(--text2);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.15s;
}

.nav-links a:hover {
  color: var(--neon-green);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--neon-green);
  border: 1px solid var(--neon-green);
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.15s;
}

.nav-cta:hover {
  background: var(--neon-green-dim);
}

/* === HERO PHOTO === */
.hero-photo {
  width: 100%;
  position: relative;
  z-index: 1;
  line-height: 0;
}

.hero-photo img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 500px;
  object-fit: cover;
  object-position: center 30%;
}

.hero-photo-gradient {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(transparent, #0a0a0f);
}

/* === SECTIONS === */
section {
  padding: 5rem 2.5rem;
  position: relative;
  z-index: 1;
}

/* === HERO === */
.hero {
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 5rem 2.5rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hero-logo {
  width: 100px;
  height: 100px;
  border-radius: 16px;
  object-fit: cover;
  margin-bottom: 1.75rem;
  border: 1px solid rgba(57, 255, 138, 0.25);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--neon-green-dim);
  border: 0.5px solid rgba(57, 255, 138, 0.3);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  font-size: 13px;
  color: var(--neon-green);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--neon-green);
  display: inline-block;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -2px;
  margin-bottom: 1.25rem;
  color: var(--text);
}

.hero h1 em {
  font-style: normal;
  color: var(--neon-green);
}

.hero h1 strong {
  font-style: normal;
  font-weight: 500;
  color: var(--neon-blue);
}

.hero p {
  font-size: 17px;
  color: var(--text2);
  max-width: 500px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--neon-green);
  color: #0a0a0f;
  border: none;
  padding: 0.8rem 1.75rem;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.15s;
}

.btn-primary:hover {
  opacity: 0.88;
}

.btn-secondary {
  background: transparent;
  color: var(--neon-blue);
  border: 1px solid rgba(58, 240, 255, 0.4);
  padding: 0.8rem 1.75rem;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s;
}

.btn-secondary:hover {
  background: var(--neon-blue-dim);
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  flex-wrap: wrap;
}

.hero-stat .num {
  font-size: 28px;
  font-weight: 500;
  color: var(--neon-green);
}

.hero-stat .lbl {
  font-size: 13px;
  color: var(--text2);
}

/* === SECTION LABELS === */
.section-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--neon-green);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 500;
  letter-spacing: -1px;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.section-sub {
  font-size: 15px;
  color: var(--text2);
  max-width: 560px;
  line-height: 1.7;
}

/* === SOCIAL SECTIONS === */
.social-section {
  padding: 3rem 2.5rem;
  position: relative;
  z-index: 1;
}

.social-section .section-title {
  margin-bottom: 2rem;
}

.tiktok-section {
  padding: 0 2.5rem 3rem;
  position: relative;
  z-index: 1;
}

.social-banner-link {
  text-decoration: none;
  display: block;
  max-width: 920px;
}

.social-banner-img {
  width: 100%;
  max-width: 920px;
  height: 205px;
  display: block;
  border-radius: 5px;
  object-fit: cover;
  transition: transform 0.2s;
}

.social-banner-img:hover {
  transform: scale(1.01);
}

/* === PRODUCTS === */
.products {
  background: transparent;
}

.products-header {
  margin-bottom: 3.5rem;
}

.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.filter-btn {
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  border: 0.5px solid var(--border2);
  background: transparent;
  color: var(--text2);
  cursor: pointer;
  transition: all 0.15s;
}

.filter-btn.active {
  background: var(--neon-green-dim);
  color: var(--neon-green);
  border-color: rgba(57, 255, 138, 0.35);
}

/* === CATEGORY BLOCKS === */
.category-block {
  margin-bottom: 4rem;
}

.category-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.5rem;
}

.category-label h3 {
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
}

.cat-badge {
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 100px;
}

.cat-badge.digital {
  background: var(--neon-green-dim);
  color: var(--neon-green);
  border: 0.5px solid rgba(57, 255, 138, 0.25);
}

.cat-badge.physical {
  background: var(--neon-blue-dim);
  color: var(--neon-blue);
  border: 0.5px solid rgba(58, 240, 255, 0.25);
}

.cat-badge.software {
  background: rgba(180, 120, 255, 0.12);
  color: #c084fc;
  border: 0.5px solid rgba(180, 120, 255, 0.25);
}

/* === DIGITAL CARDS === */
.digital-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.digital-card {
  background: rgba(17, 17, 24, 0.85);
  border-radius: 12px;
  border: 0.5px solid var(--border);
  overflow: hidden;
  transition: border-color 0.2s;
}

.digital-card:hover {
  border-color: rgba(57, 255, 138, 0.3);
}

.digital-thumb {
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.digital-thumb-green  { background: linear-gradient(135deg, #0d1a12, #0d2218); }
.digital-thumb-blue   { background: linear-gradient(135deg, #0a1520, #0d1e2a); }
.digital-thumb-purple { background: linear-gradient(135deg, #1a0d18, #200d1e); }

.digital-body {
  padding: 1.25rem;
}

.digital-body h4 {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 4px;
  color: var(--text);
}

.digital-body p {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.digital-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price-tag {
  font-size: 16px;
  font-weight: 500;
  color: var(--neon-green);
}

.card-btn {
  font-size: 12px;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 6px;
  border: 0.5px solid rgba(57, 255, 138, 0.3);
  color: var(--neon-green);
  background: var(--neon-green-dim);
  cursor: pointer;
}

/* === PHYSICAL SHOWCASE === */
.physical-showcase {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.showcase-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: rgba(17, 17, 24, 0.85);
  border-radius: 12px;
  border: 0.5px solid var(--border);
  overflow: hidden;
}

.showcase-item.reverse {
  direction: rtl;
}

.showcase-item.reverse > * {
  direction: ltr;
}

.showcase-visual {
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.showcase-visual-green { background: linear-gradient(135deg, #0a1a14, #0d2218); }

.showcase-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.showcase-content h4 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.showcase-content p {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.showcase-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 1.25rem;
}

.showcase-tag {
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--neon-blue-dim);
  color: var(--neon-blue);
  font-weight: 500;
  border: 0.5px solid rgba(58, 240, 255, 0.2);
}

.showcase-btn {
  align-self: flex-start;
  padding: 0.6rem 1.25rem;
  border-radius: 6px;
  background: rgba(58, 240, 255, 0.15);
  color: var(--neon-blue);
  border: 1px solid rgba(58, 240, 255, 0.3);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

/* === SOFTWARE LIST === */
.software-list {
  border: 0.5px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.software-row {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: rgba(17, 17, 24, 0.85);
  border-bottom: 0.5px solid var(--border);
  transition: background 0.15s;
}

.software-row:last-child {
  border-bottom: none;
}

.software-row:hover {
  background: rgba(22, 22, 31, 0.95);
}

.sw-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.sw-icon-purple { background: rgba(180, 120, 255, 0.1); }

.sw-info h4 {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 2px;
  color: var(--text);
}

.sw-info p {
  font-size: 13px;
  color: var(--text2);
}

.sw-price {
  font-size: 15px;
  font-weight: 500;
  color: #c084fc;
  white-space: nowrap;
}

.sw-btn {
  padding: 0.5rem 1rem;
  border-radius: 6px;
  background: rgba(180, 120, 255, 0.12);
  color: #c084fc;
  border: 0.5px solid rgba(180, 120, 255, 0.25);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
}

/* === IMPRESSUM === */
.impressum {
  background: transparent;
}

.impressum-card {
  background: rgba(17, 17, 24, 0.9);
  border-radius: 12px;
  border: 0.5px solid var(--border);
  padding: 2.5rem;
  max-width: 720px;
}

.impressum-card h3 {
  font-size: 15px;
  font-weight: 500;
  margin: 1.5rem 0 0.6rem;
  color: var(--neon-green);
}

.impressum-card h3:first-child {
  margin-top: 0;
}

.impressum-card p {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.9;
}

.impressum-card a {
  color: var(--neon-blue);
  text-decoration: none;
}

.impressum-divider {
  border: none;
  border-top: 0.5px solid var(--border);
  margin: 1.25rem 0;
}

.impressum-strong {
  color: var(--text);
}

/* === FOOTER === */
footer {
  position: relative;
  z-index: 1;
  padding: 2rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 0.5px solid var(--border);
  background: rgba(10, 10, 15, 0.95);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-logo img {
  width: 28px;
  height: 28px;
  border-radius: 6px;
}

.footer-logo span {
  font-size: 14px;
  color: var(--text2);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  font-size: 13px;
  color: var(--text2);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.15s;
}

.footer-links a:hover {
  color: var(--neon-green);
}

/* === BUILDING IN PUBLIC OVERLAY === */
.bip-overlay {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  background: rgba(10, 10, 15, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 0.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  padding: 0.3rem 0.7rem;
  pointer-events: none;
}

/* === SOCIAL PROOF BAR === */
.proof-section {
  padding: 1.5rem 2.5rem;
  position: relative;
  z-index: 1;
}

.proof-bar {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  max-width: 920px;
  background: rgba(17, 17, 24, 0.85);
  border: 0.5px solid var(--border);
  border-radius: 10px;
  padding: 1rem 1.5rem;
}

.proof-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text2);
  text-decoration: none;
  transition: color 0.15s;
}

.proof-link:hover {
  color: var(--neon-green);
}

.proof-icon {
  font-size: 16px;
}

.proof-divider {
  width: 0.5px;
  height: 20px;
  background: var(--border2);
  flex-shrink: 0;
}

.proof-hint {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text2);
}

@keyframes proof-pulse {
  0%, 100% { box-shadow: 0 0 4px rgba(57, 255, 138, 0.4); opacity: 1; }
  50%       { box-shadow: 0 0 10px rgba(57, 255, 138, 0.8); opacity: 0.7; }
}

.proof-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--neon-green);
  flex-shrink: 0;
  animation: proof-pulse 2.4s ease-in-out infinite;
}

/* === PRE-LAUNCH TEASER === */
.teaser-hint {
  font-size: 12px;
  color: var(--text2);
  font-style: italic;
  margin-top: 0.25rem;
}

.coming-label {
  font-size: 13px;
  color: var(--text2);
  font-style: italic;
  white-space: nowrap;
}

/* === RESPONSIVE === */
@media (max-width: 700px) {
  nav { padding: 1rem 1.25rem; }
  .nav-links { display: none; }

  section { padding: 3rem 1.25rem; }
  .social-section { padding: 3rem 1.25rem; }
  .tiktok-section { padding: 0 1.25rem 3rem; }

  .social-banner-img { height: 120px; }

  .showcase-item,
  .showcase-item.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .software-row { grid-template-columns: 44px 1fr; }
  .sw-price,
  .sw-btn,
  .coming-label { display: none; }

  .hero-stats { gap: 1.5rem; }
  .hero h1 { letter-spacing: -1px; }

  .bip-overlay { top: 0.75rem; right: 0.75rem; font-size: 9px; }

  .proof-section { padding: 1rem 1.25rem; }
  .proof-divider { display: none; }
  .proof-bar { gap: 1rem; }
}

/* === SOCIAL CLEAN HERO === */
.social-clean-hero {
    margin: 2rem 0;
    padding: 3rem 1.5rem;
    border: 1px solid rgba(57, 255, 138, 0.22);
    border-radius: 18px;
    background:
        radial-gradient(circle, rgba(57, 255, 138, 0.12), transparent 55%),
        linear-gradient(135deg, #0a140e, #05070a);
    text-align: center;
    box-shadow: 0 0 28px rgba(57, 255, 138, 0.08);
}

.social-clean-hero h2 {
    margin: 0 0 0.75rem;
    color: #39ff8a;
    font-size: clamp(1.6rem, 4vw, 2.6rem);
}

.social-clean-hero p {
    margin: 0;
    color: #ccc;
    font-size: clamp(0.95rem, 2.2vw, 1.1rem);
}

@media (max-width: 700px) {
    .social-clean-hero {
        padding: 2rem 1rem;
    }
}
