 .start-page {
  min-height: 100vh;
  padding: 80px 24px 80px;
  color: #f5f1e8;

  background:
    linear-gradient(
      rgba(0, 0, 0, 0.10),
      rgba(0, 0, 0, 0.20)
    ),
    url('/static/images/start-hero.jpg?v=11');

  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* HERO */

.start-hero {
  max-width: 1200px;
  margin: 100px auto 120px;
  text-align: center;
}
.start-hero img {
    display: block;
    margin: 20px auto 0;
    max-width: 88%;
    border-radius: 24px;
}
.start-hero {
  backdrop-filter: blur(2px);
}
.eyebrow,
.section-label {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.74rem;
  color: #cfa05a;
  margin-bottom: 20px;
}

.start-hero h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: -0.03em;
  margin: 0 0 28px;
}

.intro {
  font-size: 1.12rem;
  line-height: 1.9;
  color: rgba(245, 241, 232, 0.72);
  max-width: 680px;
  margin: 0 auto;
}

/* SECTIONS */

.start-section {
  max-width: 1180px;
  margin: 0 auto 140px;
}

/* JOURNALS */

.journals-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.section-text h2,
.books-header h2,
.innercube-content h2 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 400;
  margin-bottom: 24px;
  line-height: 1.05;
}

.section-text p,
.books-header p,
.innercube-content p {
  color: rgba(245, 241, 232, 0.72);
  line-height: 1.9;
  font-size: 1.02rem;
  max-width: 560px;
}

.section-note {
  margin-top: 24px;
  font-style: italic;
  opacity: 0.72;
}

.section-visual img {
  width: 100%;
  border-radius: 26px;
  box-shadow: 0 30px 90px rgba(0,0,0,0.45);
}

/* BOOKS */

.books-header {
  text-align: center;
  margin-bottom: 70px;
}

.book-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.book-card {
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.025);
  backdrop-filter: blur(8px);
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.book-card:hover {
  transform: translateY(-6px);
  border-color: rgba(207,160,90,0.4);
}

.book-card img {
  width: 100%;
  display: block;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.book-card h3 {
  font-size: 1.5rem;
  font-weight: 400;
  margin: 26px 24px 14px;
}

.book-card p {
  margin: 0 24px 28px;
  color: rgba(245,241,232,0.72);
  line-height: 1.7;
}

.book-card .start-button {
  margin: 0 24px 28px;
}

/* INNERCUBE */

.innercube-section {
  text-align: center;
  max-width: 760px;
}

.innercube-content {
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 80px 0;
}

/* BUTTONS */

.start-button {
  display: inline-block;
  margin-top: 28px;
  padding: 14px 30px;
  border-radius: 999px;
  background: #d7a456;
  color: #080808;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all 0.25s ease;
}

.start-button:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.start-button.secondary {
  background: transparent;
  border: 1px solid rgba(245,241,232,0.22);
  color: #f5f1e8;
}

/* CLOSING */

.closing-line {
  text-align: center;
  margin-top: 60px;
}

.closing-line p {
  color: rgba(245,241,232,0.42);
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* MOBILE */

@media (max-width: 960px) {

  .journals-section {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .book-grid {
    grid-template-columns: 1fr;
  }

  .start-page {
    padding: 50px 20px 50px;
  }

  .start-section {
    margin-bottom: 60px;
  }

  .start-hero {
    margin-bottom: 50px;
  }

  .section-text,
  .books-header,
  .innercube-content {
    text-align: center;
  }

  .section-text p,
  .books-header p,
  .innercube-content p {
    margin-left: auto;
    margin-right: auto;
  }
}
/* INNERCUBE LAYOUT */
.innercube-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.innercube-visual img {
  width: 100%;
  border-radius: 24px;
  display: block;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.innercube-content {
  max-width: 520px;
}

@media (max-width: 900px) {
  .innercube-layout {
    grid-template-columns: 1fr;
  }

  .innercube-content {
    max-width: 100%;
  }
}
/* FINAL START PAGE HERO CENTERING FIX */
.start-offer-hero {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 40px 20px 80px;
}

.start-offer-inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.start-offer-image {
  display: block;
  width: 100%;
  max-width: 1100px;
  height: auto;
  margin: 0 auto 40px;
  border-radius: 24px;
}

.start-offer-copy {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.start-offer-copy .start-button {
  margin: 28px auto;
}
/* LAST HUMAN CREATOR CENTER FIX */
.last-human-section {
  text-align: center;
}

.last-human-section .book-grid {
  display: flex;
  justify-content: center;
}

.last-human-section .book-card {
  max-width: 420px;
  margin: 0 auto;
}
/* FORCE JOURNALS + ALCHEMY SIDE BY SIDE */
.journals-section {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 60px !important;
  align-items: stretch !important;
  max-width: 1100px !important;
  margin: 0 auto 140px !important;
}

.journals-section > .section-text,
.journals-section > .book-card {
  width: 100% !important;
}

@media (max-width: 900px) {
  .journals-section {
    grid-template-columns: 1fr !important;
  }
}
/* FINAL START PAGE LAYOUT FIXES */

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

.journals-centered .section-text {
  max-width: 760px;
  margin: 0 auto;
}

.journals-centered img {
  display: block;
  max-width: 760px;
  width: 100%;
  margin: 32px auto;
  border-radius: 24px;
}

.books-two {
  text-align: center;
}

.books-two .book-grid {
  max-width: 980px;
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 36px;
  align-items: stretch;
}

.books-two .book-card {
  margin: 0 auto;
  text-align: center;
}

.books-two .book-card img {
  max-height: 520px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  margin: 0 auto 24px;
  display: block;
}

@media (max-width: 800px) {
  .books-two .book-grid {
    grid-template-columns: 1fr;
  }
}
/* CENTER JOURNAL SECTION */

.journals-centered {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.journals-centered .section-text {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.journals-centered h2,
.journals-centered h3,
.journals-centered p,
.journals-centered .section-label {
  text-align: center;
}

.journals-centered .start-button {
  margin: 28px auto 0;
  display: inline-flex;
}
/* WORKSHOP SECTION */

.workshop-section,
.journals-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  margin: 120px auto;
  max-width: 1250px;
}

.section-text h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1;
  margin-bottom: 24px;
}

.section-text p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: rgba(245, 241, 232, 0.74);
  margin-bottom: 24px;
  max-width: 560px;
}

.section-note {
  font-style: italic;
  color: rgba(245, 241, 232, 0.58);
}

.section-visual img {
  width: 100%;
  border-radius: 28px;
  display: block;
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
}

/* BOOKS */

.books-section {
  max-width: 1300px;
  margin: 120px auto;
}

.books-header {
  text-align: center;
  margin-bottom: 60px;
}

.books-header h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin-bottom: 18px;
}

.books-header p {
  color: rgba(245, 241, 232, 0.72);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.8;
}

.book-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.book-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  overflow: hidden;
  padding-bottom: 32px;
  backdrop-filter: blur(10px);
}

.book-card img {
  width: 100%;
  display: block;
  margin-bottom: 26px;
}

.book-card h3 {
  font-size: 1.5rem;
  margin: 0 24px 14px;
}

.book-card p {
  color: rgba(245,241,232,0.72);
  line-height: 1.7;
  margin: 0 24px 24px;
}

.book-card .start-button {
  margin-left: 24px;
}

/* INNERCUBE */

.innercube-section {
  max-width: 900px;
  margin: 60px auto 60px;
  text-align: center;
}

.innercube-content h2 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  margin-bottom: 24px;
}

.innercube-content p {
  color: rgba(245,241,232,0.72);
  line-height: 1.9;
  max-width: 620px;
  margin: 0 auto 34px;
}

/* MOBILE */

@media (max-width: 900px) {

  .workshop-section,
  .journals-section,
  .book-grid {
    grid-template-columns: 1fr;
  }

  .workshop-section,
  .journals-section {
    gap: 40px;
  }

  .section-text,
  .books-header,
  .innercube-content {
    text-align: center;
  }

  .section-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .book-card .start-button {
    margin-left: 0;
  }

  .book-card {
    text-align: center;
    padding-bottom: 40px;
  }
}
.centered {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.reflection-section {
  padding-top: 40px;
}

.reflection-box {
  max-width: 780px;
  margin: 0 auto;
  padding: 48px 32px;
  border-radius: 30px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  text-align: center;
}

.question {
  display: none;
}

.question.active {
  display: block;
}

.question h3 {
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  line-height: 1.2;
  margin-bottom: 34px;
}

.answer-grid {
  display: grid;
  gap: 14px;
}

.answer {
  width: 100%;
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.07);
  color: inherit;
  font-size: 1rem;
  text-align: left;
  cursor: pointer;
}

.answer:hover {
  background: rgba(214,168,95,0.18);
}

.capture-form {
  display: none;
  max-width: 540px;
  margin: 0 auto;
}

.capture-form.active {
  display: block;
}

.capture-form h3 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 18px;
}

.capture-form p {
  margin-bottom: 26px;
}

.capture-form input {
  width: 100%;
  padding: 16px 18px;
  margin-bottom: 14px;
  border-radius: 14px;
  border: none;
  font-size: 1rem;
}

.capture-form button {
  width: 100%;
  padding: 16px 24px;
  border-radius: 999px;
  border: none;
  background: #d6a85f;
  color: #111;
  font-weight: 700;
  cursor: pointer;
}

.result-box {
  display: none;
  max-width: 680px;
  margin: 0 auto;
  padding: 36px 28px;
  border-radius: 26px;
  background: rgba(214,168,95,0.12);
  border: 1px solid rgba(214,168,95,0.35);
}

.result-box.active {
  display: block;
}

.result-box h3 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 18px;
}

.result-box p {
  margin-bottom: 26px;
}

@media (max-width: 700px) {
  .reflection-box {
    padding: 34px 20px;
    border-radius: 22px;
  }

  .answer {
    text-align: center;
  }
}
.support-section {
    text-align: center;
    max-width: 700px;
    margin: 80px auto;
    padding: 0 20px;
}

.support-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 28px;
    background: #FFBF00;
    color: #111;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
}

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