@font-face {
  font-family: 'AssociateSans';
  src: url('https://taravera.ro/hst/AssociateSansLight.woff') format('woff');
  font-weight: 300;
  font-style: normal;
}

body {
  font-family: 'AssociateSans', sans-serif;
}

:root {
  /* Neon Red-Light District palette */
  --bg-deep-1: #0a0008;
  --bg-deep-2: #13000e;
  --bg-deep-3: #1d0018;
  --accent-red: #ff0055;
  --accent-rose: #ff2a7f;
  --accent-purple: #7a00ff;
  --accent-blood: #ff1133;
  --text-light: #ffffff;
}

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

html,
body {
  width: 100%;
  font-weight: 300;
  min-height: 100vh;
  color: var(--text-light);
  overflow-x: hidden;
  background:
    radial-gradient(800px 600px at 15% 10%, rgba(255, 0, 85, 0.14), transparent 60%),
    radial-gradient(700px 500px at 85% 80%, rgba(122, 0, 255, 0.10), transparent 60%),
    linear-gradient(135deg, var(--bg-deep-1) 0%, var(--bg-deep-2) 35%, var(--bg-deep-3) 100%);
}

/* Utilities */
.text-center { text-align: center; }

/* Typography */
h1, h2 {
  font-family: futura-pt-condensed, sans-serif;
  font-weight: 800;
  font-size: 5rem;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: #fff;
  text-shadow:
    0 0 8px rgba(255, 42, 127, 0.9),
    0 0 24px rgba(255, 0, 85, 0.75),
    0 0 48px rgba(255, 42, 127, 0.55);
}

.main-headline {
  font-size: 6vw;
}

.subtitle {
  font-weight: 300;
  font-size: 1.875rem; /* 30px */
  line-height: 1.6;
  margin-bottom: 30px;
  color: rgba(255,255,255,0.9);
}

.learning-point {
  font-weight: 300;
  font-size: 1.875rem; /* 30px */
  line-height: 1.6;
  margin: 0;
}

/* Button */
button {
  background: linear-gradient(135deg, var(--accent-red), var(--accent-rose));
  border: none;
  border-radius: 24px;
  padding: 24px;
  cursor: pointer;
  /* transition: transform 50ms linear, box-shadow 80ms ease-out; */
  box-shadow:
    0 0 18px rgba(255, 0, 85, 0.65),
    0 18px 40px rgba(255, 0, 85, 0.35);
  position: relative;
  overflow: hidden;
  min-width: 600px;
  min-height: 200px;
  font-family: 'futura-pt-condensed', sans-serif;
  font-weight: 700;
  color: #ffffff;
  font-size: 2.8125rem; /* 45px */
  line-height: 2.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
  will-change: transform;
}

button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 0 24px rgba(255, 0, 85, 0.9),
    0 24px 60px rgba(255, 0, 85, 0.45);
}

button.is-on-dark {
  background: linear-gradient(135deg, #ff1950, #b100ff);
  box-shadow:
    0 0 18px rgba(177, 0, 255, 0.55),
    0 18px 40px rgba(255, 25, 80, 0.4);
}

button.is-on-dark:hover {
  box-shadow:
    0 0 26px rgba(177, 0, 255, 0.9),
    0 26px 70px rgba(255, 25, 80, 0.55);
}

.price-line {
  font-size: 2.25rem; margin-top: 4px;
  text-shadow: 0 0 8px rgba(255, 42, 127, 0.65);
}
.strike-through { text-decoration: line-through; opacity: 0.7; }

.rating-text {
  font-weight: 400;
  color: #ffd700;
  font-size: 0.9rem;
  text-align: center;
  margin-top: 12px;
}
.rating-score { color: rgba(255,255,255,0.95); text-shadow: 0 0 6px rgba(255,255,255,0.35); }
.rating-score.is-on-light { color: #000000; }

/* Layout */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.hero-container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }

.header-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  text-align: center;
}

.learning-grid { display: flex; flex-direction: column; gap: 30px; margin-bottom: 60px; }

.learning-card {
  background:
    linear-gradient(135deg, rgba(255, 0, 85, 0.08), rgba(122, 0, 255, 0.10));
  border-radius: 24px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: none;
  border: 1px solid rgba(255, 42, 127, 0.25);
  box-shadow:
    inset 0 0 40px rgba(255, 0, 85, 0.12),
    0 10px 35px rgba(255, 0, 85, 0.25);
  /* removed backdrop blur for performance */
}
.learning-card::before {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: radial-gradient(600px 200px at 10% 10%, rgba(255, 42, 127, 0.20), transparent 60%),
              radial-gradient(600px 200px at 90% 90%, rgba(177, 0, 255, 0.20), transparent 60%);
}

.learning-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 20px; }
.learning-item {
  font-weight: 300;
  font-size: 1.875rem; /* 30px */
  line-height: 1.6;
  color: #ffffff;
  display: grid;
  grid-template-columns: 1.5em auto;
  align-items: start;
  column-gap: 12px;
}
.learning-item::before {
  content: '✅';
  display: inline-block;
  opacity: 0.95;
  color: var(--accent-rose);
  text-shadow:
    0 0 8px rgba(255, 42, 127, 0.75),
    0 0 18px rgba(255, 0, 85, 0.55);
}

.guarantee-content { padding: 50px; margin-bottom: 40px; position: relative; overflow: hidden; }

.guarantee-point {
  font-weight: 300;
  color: #ffffff;
  font-size: 1.875rem; /* 30px */
  line-height: 1.2;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}
.guarantee-point:last-child { margin-bottom: 0; }

/* Sections */
.header-section {
  background: linear-gradient(135deg, #0a0008 0%, #1a0015 45%, #22001d 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 20px 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.header-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(900px 300px at 15% 85%, rgba(255, 25, 80, 0.25), transparent 60%),
    radial-gradient(900px 300px at 85% 15%, rgba(177, 0, 255, 0.22), transparent 60%),
    radial-gradient(600px 250px at 40% 40%, rgba(255, 30, 100, 0.14), transparent 60%);
  /* animation removed for performance */
  pointer-events: none;
}

.header-section::after { content: none; }

/* removed keyframes: seductive-pulse */

.header-content { color: #ffffff; position: relative; z-index: 2; max-width: 1200px; }
.header-image { position: relative; z-index: 2; text-align: center; margin-bottom: 20px; }
.logo { width: 120px; height: auto; margin-bottom: 30px; filter: brightness(0) invert(1); }
.book-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 20px;
  /* Use drop-shadow so the shadow follows the PNG transparency shape */
  filter:
    drop-shadow(0 8px 18px rgba(0, 0, 0, 0.45))
    drop-shadow(0 0 14px rgba(255, 0, 85, 0.35));
  -webkit-filter:
    drop-shadow(0 8px 18px rgba(0, 0, 0, 0.45))
    drop-shadow(0 0 14px rgba(255, 0, 85, 0.35));
}

.learning-section { background: linear-gradient(135deg, #160010 0%, #22001d 50%, #2a0027 100%); padding: 120px 20px; position: relative; }
.learning-container { max-width: 640px; margin: 0 auto; }

.learning-title { text-align: center; position: relative; color: #ffffff; margin-bottom: 80px; }
.learning-title::after {
  content: '';
  position: absolute;
  bottom: -30px; left: 50%; transform: translateX(-50%);
  width: 120px; height: 6px;
  background: linear-gradient(135deg, var(--accent-rose), var(--accent-purple));
  border-radius: 3px;
  /* animation removed for performance */
}

/* removed keyframes: seductive-glow */

/* removed keyframes: neon-flicker */

/* removed keyframes: neon-scan */

.guarantee-section {
  background: linear-gradient(135deg, #210019 0%, #2b0023 50%, #36002c 100%);
  padding: 120px 20px;
  position: relative;
  overflow: hidden;
}

.guarantee-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(700px 250px at 10% 90%, rgba(255, 25, 80, 0.22), transparent 60%),
    radial-gradient(700px 250px at 90% 10%, rgba(177, 0, 255, 0.20), transparent 60%);
  /* animation removed for performance */
  pointer-events: none;
}

/* removed keyframes: seductive-drift */

.guarantee-container { max-width: 800px; margin: 0 auto; position: relative; z-index: 2; text-align: center; }
.guarantee-title {
  color: #ffffff;
  text-shadow:
    0 0 10px rgba(255, 42, 127, 0.8),
    0 0 24px rgba(255, 0, 85, 0.6);
  margin-bottom: 60px;
}
.subtitle.is-on-dark { color: #ffffff; }
.subtitle.is-on-light { color: #e2e8f0; }

/* Mobile Styles */
@media (max-width: 768px) {
  .header-container { display: flex; flex-direction: column; gap: 40px; text-align: center; }
  .header-content { order: 1; }
  .header-image { order: 2; }
  h1, h2 { font-size: 3rem; }
  .main-headline { font-size: 3rem; }
  .subtitle { font-size: 1.3rem; }
  .learning-point { font-size: 1.1rem; }
  .learning-item { font-size: 1.1rem; }
  .guarantee-point { font-size: 1.1rem; }
  .learning-grid { gap: 20px; }
  .header-section, .learning-section, .guarantee-section { padding: 80px 20px; }
  .guarantee-content { padding: 30px 20px; }
  button { width: 100%; min-width: auto; min-height: 160px; padding: 12px; font-size: 2rem; line-height: 2rem; }
  .price-line { font-size: 1.5rem; }
  .learning-card { padding: 30px 20px; }
}

@media (max-width: 480px) {
  h1, h2 { font-size: 3rem; line-height: 100%; }
  .main-headline { font-size: 2.5rem; }
  .subtitle { font-size: 1.4rem; }
  .learning-point { font-size: 1.2rem; }
  .learning-item { font-size: 1.2rem; }
  .guarantee-point { font-size: 1.2rem; }
  .learning-card { padding: 25px 20px; }
  button { min-height: 160px; padding: 12px; font-size: 2.25rem; line-height: 2.25rem; }
  .price-line { font-size: 1.8rem; }
  .guarantee-content { padding: 30px 20px; }
}

/* Checkout */
.checkout-section {
  background: linear-gradient(135deg, #12000d 0%, #1a0015 50%, #22001d 100%);
  padding: 120px 20px;
}
.checkout-card {
  max-width: 720px;
  margin: 0 auto;
  background:
    linear-gradient(135deg, rgba(255, 0, 85, 0.08), rgba(122, 0, 255, 0.10));
  border: 1px solid rgba(255, 42, 127, 0.25);
  border-radius: 24px;
  padding: 40px 28px;
  box-shadow:
    inset 0 0 28px rgba(255, 0, 85, 0.12),
    0 10px 32px rgba(255, 0, 85, 0.22);
}
.checkout-title { text-align: center; margin-bottom: 8px; }
.checkout-subtitle { text-align: center; color: rgba(255,255,255,0.85); margin-bottom: 16px; }
.checkout-price { text-align: center; margin: 8px 0 12px; }
.checkout-price .current { font-size: 2rem; font-weight: 700; margin-right: 8px; }
.checkout-price .old { opacity: 0.7; }
.badge-row { display: flex; gap: 10px; justify-content: center; margin-top: 16px; }
.badge {
  font-size: 0.8rem;
  padding: 6px 10px;
  border-radius: 999px;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
}
.checkout-legal { text-align: center; font-size: 0.9rem; color: rgba(255,255,255,0.8); margin-top: 14px; }
