:root {
      --bg: #09090d;
      --bg-soft: #101018;
      --panel: rgba(18, 18, 28, 0.82);
      --panel-strong: rgba(14, 14, 22, 0.96);
      --line: rgba(255,255,255,0.08);
      --text: #f5f7fb;
      --muted: #a8afc3;
      --accent: #68e1fd;
      --accent-2: #b46bff;
      --accent-3: #ff4d6d;
      --success: #88f7b1;
      --shadow: 0 20px 60px rgba(0,0,0,0.45);
      --radius: 22px;
      --max: 1180px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: 'Inter', sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 20% 20%, rgba(104,225,253,0.10), transparent 28%),
        radial-gradient(circle at 80% 10%, rgba(180,107,255,0.12), transparent 24%),
        radial-gradient(circle at 60% 80%, rgba(255,77,109,0.10), transparent 22%),
        linear-gradient(180deg, #07070a 0%, #0b0b12 48%, #06060a 100%);
      min-height: 100vh;
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      opacity: 0.09;
      background-image:
        linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
      background-size: 64px 64px;
      mask-image: radial-gradient(circle at center, black 45%, transparent 100%);
    }

    body::after {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      opacity: 0.06;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
      mix-blend-mode: soft-light;
    }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }

    .container {
      width: min(calc(100% - 32px), var(--max));
      margin: 0 auto;
    }

    .topbar {
      position: sticky;
      top: 0;
      z-index: 40;
      backdrop-filter: blur(14px);
      background: rgba(8, 8, 12, 0.70);
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .topbar-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 14px 0;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
    }

    .brand-mark {
      width: 42px;
      height: 42px;
      border-radius: 12px;
      background: linear-gradient(135deg, rgba(104,225,253,0.22), rgba(180,107,255,0.28));
      border: 1px solid rgba(255,255,255,0.08);
      display: grid;
      place-items: center;
      box-shadow: inset 0 0 18px rgba(255,255,255,0.04);
      font-family: 'Orbitron', sans-serif;
      font-weight: 800;
      font-size: 0.9rem;
      color: white;
    }

    .brand-text {
      min-width: 0;
    }

    .brand-text strong {
      display: block;
      font-size: 0.98rem;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .brand-text span {
      display: block;
      color: var(--muted);
      font-size: 0.84rem;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 18px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .nav a {
      color: var(--muted);
      font-size: 0.95rem;
      transition: color 0.25s ease;
    }

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

    .nav .cta-mini {
      padding: 10px 16px;
      border-radius: 999px;
      color: #081018;
      font-weight: 800;
      background: linear-gradient(135deg, var(--accent), #8ef0ff);
      box-shadow: 0 10px 30px rgba(104,225,253,0.24);
    }

    .hero {
      padding: 72px 0 30px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 0.92fr 1.08fr;
      gap: 34px;
      align-items: center;
    }

    .book-showcase {
      position: relative;
      padding: 26px;
      border-radius: 28px;
      background: linear-gradient(180deg, rgba(17,17,25,0.9), rgba(10,10,16,0.95));
      border: 1px solid rgba(255,255,255,0.08);
      box-shadow: var(--shadow);
      overflow: hidden;
      min-height: 640px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .book-showcase::before,
    .book-showcase::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      filter: blur(30px);
      opacity: 0.5;
      pointer-events: none;
    }

    .book-showcase::before {
      width: 180px;
      height: 180px;
      background: rgba(104,225,253,0.22);
      top: 30px;
      left: 10px;
    }

    .book-showcase::after {
      width: 200px;
      height: 200px;
      background: rgba(180,107,255,0.20);
      bottom: 10px;
      right: -20px;
    }

    .book-mock {
      position: relative;
      width: min(100%, 440px);
      aspect-ratio: 0.72 / 1;
      border-radius: 18px;
      background:
        linear-gradient(160deg, rgba(255,255,255,0.07), rgba(255,255,255,0.01)),
        linear-gradient(180deg, #11131d 0%, #171325 45%, #0e1118 100%);
      border: 1px solid rgba(255,255,255,0.12);
      box-shadow: 0 24px 60px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.05) inset;
      padding: 28px;
      transform: perspective(1200px) rotateY(-8deg) rotateX(1.5deg);
    }

    .book-mock::before {
      content: "";
      position: absolute;
      top: 8px;
      left: 8px;
      right: 8px;
      height: 8px;
      border-radius: 999px;
      background: linear-gradient(90deg, rgba(104,225,253,0.5), rgba(180,107,255,0.55), rgba(255,77,109,0.35));
      opacity: 0.85;
    }

    .cover-kicker {
      color: var(--accent);
      text-transform: uppercase;
      letter-spacing: 0.2em;
      font-size: 0.7rem;
      font-weight: 700;
      margin-bottom: 18px;
    }

    .cover-title {
      font-family: 'Orbitron', sans-serif;
      font-size: clamp(2rem, 3vw, 3rem);
      line-height: 0.95;
      margin: 0;
      text-transform: uppercase;
    }

    .cover-subtitle {
      margin-top: 14px;
      color: #d7dcf1;
      font-size: 1rem;
      max-width: 90%;
      line-height: 1.5;
    }

    .cover-meta {
      margin-top: 26px;
      display: grid;
      gap: 10px;
      color: var(--muted);
      font-size: 0.94rem;
    }

    .cover-bar {
      margin-top: 28px;
      height: 10px;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--accent-3));
      box-shadow: 0 0 24px rgba(180,107,255,0.35);
    }

    .hero-copy {
      padding: 10px 0;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 14px;
      border-radius: 999px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.07);
      color: var(--accent);
      font-size: 0.82rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 22px;
    }

    h1 {
      font-size: clamp(2.5rem, 5vw, 4.85rem);
      line-height: 0.95;
      margin: 0 0 18px;
      letter-spacing: -0.04em;
    }

    .lead {
      font-size: clamp(1.05rem, 1.5vw, 1.22rem);
      color: #dce2f4;
      line-height: 1.7;
      max-width: 720px;
      margin-bottom: 26px;
    }

    .price-line {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 16px;
      margin-bottom: 26px;
    }

    .price {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 800;
      letter-spacing: -0.04em;
    }

    .price-note {
      color: var(--muted);
      font-size: 0.98rem;
    }

    .cta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: 26px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 15px 22px;
      border-radius: 999px;
      font-weight: 800;
      border: 1px solid transparent;
      transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    }

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

    .btn-primary {
      background: linear-gradient(135deg, var(--accent), #8ff1ff);
      color: #081018;
      box-shadow: 0 12px 32px rgba(104,225,253,0.25);
    }

    .btn-secondary {
      border-color: rgba(255,255,255,0.1);
      background: rgba(255,255,255,0.04);
      color: var(--text);
    }

    .hero-points {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
      margin-top: 16px;
    }

    .point-card {
      padding: 16px;
      border-radius: 18px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.07);
    }

    .point-card strong {
      display: block;
      font-size: 1rem;
      margin-bottom: 6px;
    }

    .point-card span {
      color: var(--muted);
      font-size: 0.92rem;
      line-height: 1.5;
    }

    .section {
      padding: 34px 0;
    }

    .panel {
      background: var(--panel);
      border: 1px solid var(--line);
      border-radius: 28px;
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .section-header {
      max-width: 820px;
      margin-bottom: 22px;
    }

    .section-kicker {
      color: var(--accent);
      text-transform: uppercase;
      letter-spacing: 0.16em;
      font-size: 0.8rem;
      font-weight: 700;
      margin-bottom: 12px;
      display: block;
    }

    h2 {
      font-size: clamp(1.9rem, 3vw, 3rem);
      line-height: 1.04;
      margin: 0 0 12px;
      letter-spacing: -0.03em;
    }

    .section-header p {
      margin: 0;
      color: var(--muted);
      font-size: 1.02rem;
      line-height: 1.7;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 26px;
      padding: 28px;
    }

    .about-copy p {
      margin: 0 0 18px;
      color: #d7dcf1;
      line-height: 1.8;
      font-size: 1rem;
    }

    .info-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 24px;
      padding: 22px;
      height: 100%;
    }

    .info-card h3,
    .feature-card h3,
    .faq-item h3,
    .excerpt-card h3,
    .buy-card h3 {
      margin-top: 0;
      margin-bottom: 16px;
      font-size: 1.15rem;
    }

    .spec-list {
      display: grid;
      gap: 14px;
    }

    .spec-row {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      padding-bottom: 12px;
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .spec-row:last-child { border-bottom: 0; padding-bottom: 0; }

    .spec-label {
      color: var(--muted);
    }

    .spec-value {
      text-align: right;
      font-weight: 600;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .feature-card {
      padding: 24px;
      border-radius: 24px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      min-height: 220px;
    }

    .feature-icon {
      width: 48px;
      height: 48px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      font-weight: 800;
      margin-bottom: 16px;
      background: linear-gradient(135deg, rgba(104,225,253,0.2), rgba(180,107,255,0.2));
      border: 1px solid rgba(255,255,255,0.08);
      color: var(--accent);
    }

    .feature-card p,
    .excerpt-card p,
    .buy-card p,
    .faq-item p,
    .final-cta p {
      color: var(--muted);
      line-height: 1.7;
      margin: 0;
    }

    .gallery-grid {
	  display: grid;
	  grid-template-columns: repeat(3, minmax(0, 1fr));
	  gap: 18px;
	}

	.shot {
	  position: relative;
	  min-height: 320px;
	  border-radius: 24px;
	  overflow: hidden;
	  border: 1px solid rgba(255,255,255,0.08);
	  background:
		linear-gradient(180deg, rgba(8,8,12,0.25), rgba(8,8,12,0.8)),
		linear-gradient(135deg, rgba(104,225,253,0.15), rgba(180,107,255,0.18));
	  padding: 16px;
	  display: flex;
	  flex-direction: column;
	  justify-content: flex-start;
	}

	.shot::before {
	  content: "APERÇU";
	  position: absolute;
	  top: 16px;
	  right: 16px;
	  font-size: 0.72rem;
	  letter-spacing: 0.18em;
	  color: rgba(255,255,255,0.7);
	  text-transform: uppercase;
	  padding: 8px 10px;
	  border-radius: 999px;
	  background: rgba(0,0,0,0.34);
	  border: 1px solid rgba(255,255,255,0.08);
	  z-index: 2;
	}

	.shot-media {
	  width: 100%;
	  border-radius: 16px;
	  background: #0d0d12;
	  overflow: hidden;
	  margin-bottom: 14px;
	  display: flex;
	  align-items: center;
	  justify-content: center;
	}

	.shot-media img {
	  width: 100%;
	  display: block;
	}

	.shot-media--book {
	  aspect-ratio: 3 / 4;
	}

	.shot-media--book img {
	  width: 100%;
	  height: 100%;
	  object-fit: contain;
	}

	.shot-media--page {
	  aspect-ratio: 4 / 3;
	}

	.shot-media--page img {
	  width: 100%;
	  height: 100%;
	  object-fit: contain;
	}

	.shot-media--real {
	  aspect-ratio: 3 / 4;
	}

	.shot-media--real img {
	  width: 100%;
	  height: 100%;
	  object-fit: cover;
	}

	.shot strong {
	  font-size: 1.1rem;
	  margin-bottom: 8px;
	}

	.shot span {
	  color: #d8def0;
	  line-height: 1.6;
	  font-size: 0.95rem;
	}

	.shot-placeholder {
	  width: 100%;
	  height: 100%;
	  min-height: 100%;
	  display: grid;
	  place-items: center;
	  text-align: center;
	  color: rgba(255,255,255,0.55);
	  padding: 20px;
	  font-size: 0.95rem;
	  line-height: 1.6;
	}

    .quote-box {
      padding: 28px;
      border-radius: 28px;
      background:
        linear-gradient(135deg, rgba(104,225,253,0.08), rgba(180,107,255,0.10)),
        rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.08);
      font-size: clamp(1.1rem, 2vw, 1.45rem);
      line-height: 1.7;
      color: #edf2ff;
    }

    .quote-box footer {
      margin-top: 16px;
      color: var(--muted);
      font-size: 0.96rem;
    }

    .two-col {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
    }

    .excerpt-card,
    .faq-item,
    .buy-card {
      padding: 24px;
      border-radius: 24px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
    }

    .buy-grid {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 18px;
    }

    .buy-card strong.big {
      display: block;
      font-size: 2.2rem;
      letter-spacing: -0.04em;
      margin: 12px 0 10px;
    }
	
	.buy-card-upgrade {
	  background:
		radial-gradient(circle at top left, rgba(104,225,253,0.08), transparent 35%),
		radial-gradient(circle at bottom right, rgba(255,77,109,0.08), transparent 35%),
		rgba(255,255,255,0.04);
	}

	.buy-card-upgrade h3 {
	  margin-bottom: 14px;
	}

	.buy-card-upgrade p {
	  margin-bottom: 18px;
	}

	.buy-card-upgrade .buy-list {
	  margin-bottom: 0;
	}

    .buy-list {
      margin: 18px 0 24px;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 12px;
    }

    .buy-list li {
	  position: relative;
	  padding-left: 30px;
	  color: #dce2f4;
	  line-height: 1.4;
	}

	.buy-list li::before {
	  content: "";
	  position: absolute;
	  left: 0;
	  top: 0.6em;
	  width: 8px;
	  height: 8px;
	  border-radius: 50%;
	  background: var(--success);
	  box-shadow: 0 0 10px rgba(136,247,177,0.35);
	}

    .badge-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 18px;
    }

    .badge {
      padding: 10px 14px;
      border-radius: 999px;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.08);
      color: #dce2f4;
      font-size: 0.9rem;
    }

    .final-cta {
      padding: 34px;
      border-radius: 30px;
      background: linear-gradient(135deg, rgba(104,225,253,0.12), rgba(180,107,255,0.12));
      border: 1px solid rgba(255,255,255,0.1);
      text-align: center;
    }

    .final-cta h2 {
      margin-bottom: 12px;
    }

    footer.site-footer {
      padding: 26px 0 48px;
      color: var(--muted);
      font-size: 0.92rem;
    }

    .footer-row {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
      border-top: 1px solid rgba(255,255,255,0.08);
      padding-top: 18px;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
    }

    @media (max-width: 1080px) {
      .hero-grid,
      .about-grid,
      .buy-grid,
      .two-col,
      .gallery-grid,
      .features-grid {
        grid-template-columns: 1fr;
      }

      .hero-points {
        grid-template-columns: 1fr;
      }

      .book-showcase {
        min-height: auto;
      }
    }

    @media (max-width: 760px) {
      .topbar-inner {
        flex-direction: column;
        align-items: flex-start;
      }

      .nav {
        width: 100%;
        justify-content: flex-start;
      }

      .hero {
        padding-top: 38px;
      }

      h1 {
        font-size: 2.55rem;
      }

      .book-mock {
        transform: none;
        padding: 22px;
      }

      .section,
      .hero {
        padding-left: 0;
        padding-right: 0;
      }

      .about-grid,
      .panel {
        border-radius: 22px;
      }
    }