#home-page {
  --home-ink: #f8f1df;
  --home-muted: #c8bdad;
  --home-gold: #e4bd68;
  --home-gold-light: #f5dda2;
  --home-night: #090a18;
  --home-plum: #171020;
  max-width: none;
  padding: 0;
  overflow: hidden;
  align-items: stretch;
  background:
    radial-gradient(circle at 14% 5%, rgba(112, 70, 135, .2), transparent 31rem),
    radial-gradient(circle at 89% 12%, rgba(211, 168, 84, .13), transparent 28rem),
    linear-gradient(180deg, #0c0b18 0%, #100c1a 48%, #090a16 100%);
  color: var(--home-ink);
}

#home-page .home-page {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  font-family: Raleway, system-ui, sans-serif;
}

#home-page .home-page h1,
#home-page .home-page h2,
#home-page .home-page h3 {
  margin-top: 0;
  color: var(--home-ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  line-height: 1.04;
}

#home-page .home-page p {
  max-width: none;
  color: var(--home-muted);
}

#home-page .home-page section {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 96px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

#home-page .home-page section:hover { border-color: transparent; }

/* O modal vive fora do contêiner transformado e deve aparecer imediatamente.
   A animação global do modal pode permanecer no primeiro frame enquanto a
   imagem da carta termina de carregar no domínio publicado. */
#home-page #cod-modal .cod-modal-content {
  opacity: 1;
  visibility: visible;
  animation: none;
  transform: none;
}

#home-page .home-eyebrow,
#home-page .home-kicker {
  margin: 0 0 20px;
  color: var(--home-gold);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-align: left;
  text-transform: uppercase;
}

#home-page .home-eyebrow span { margin-right: 8px; }

#home-page .home-section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

#home-page .home-section-heading--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

#home-page .home-section-heading--center .home-kicker,
#home-page .home-section-heading--center p { text-align: center; }

#home-page .home-section-heading h2,
#home-page .home-introduction h2,
#home-page .home-final-cta h2 {
  margin-bottom: 20px;
  font-size: clamp(2.4rem, 5vw, 4.35rem);
  letter-spacing: -.025em;
  text-align: left;
}

#home-page .home-section-heading--center h2 { text-align: center; }

#home-page .home-section-heading > p:last-child {
  margin: 0;
  font-size: 1rem;
  line-height: 1.75;
  text-align: left;
}

#home-page .home-button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 15px 24px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .015em;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

#home-page .home-button span { margin-left: 16px; font-size: 1.2em; }

#home-page .home-button--primary {
  border-color: #f3d58f;
  background: linear-gradient(135deg, #f1d58f, #c9973d);
  box-shadow: 0 12px 34px rgba(204, 153, 58, .19);
  color: #211407;
}

#home-page .home-button--primary:hover,
#home-page .home-button--primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(204, 153, 58, .3);
  color: #211407;
}

#home-page .home-button--secondary {
  border-color: rgba(229, 191, 109, .34);
  background: rgba(255, 255, 255, .025);
  color: #ede4d5;
}

#home-page .home-button--secondary:hover,
#home-page .home-button--secondary:focus-visible {
  border-color: rgba(229, 191, 109, .65);
  background: rgba(229, 191, 109, .08);
  color: var(--home-gold-light);
  transform: translateY(-2px);
}

/* Hero */
#home-page .home-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
  min-height: 720px;
  align-items: center;
  gap: clamp(38px, 6vw, 88px);
}

#home-page .home-hero::after,
#home-page .home-experiences::after,
#home-page .home-today::after,
#home-page .how-it-works::after,
#home-page .post-list-container::after {
  position: absolute;
  right: 50%;
  bottom: 0;
  left: 50%;
  width: 100vw;
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(229, 191, 109, .24), transparent);
  content: "";
}

#home-page .home-hero__copy { position: relative; z-index: 2; }

#home-page .home-hero h1 {
  max-width: 680px;
  margin-bottom: 26px;
  font-size: clamp(3.35rem, 6vw, 5.75rem);
  letter-spacing: -.04em;
  text-align: left;
}

#home-page .home-hero h1 em {
  display: block;
  color: var(--home-gold-light);
  font-weight: 500;
}

#home-page .home-hero__lead {
  max-width: 620px;
  margin: 0 0 32px;
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  line-height: 1.75;
  text-align: left;
}

#home-page .home-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }

#home-page .home-trust-list {
  display: flex;
  flex-wrap: wrap;
  margin: 30px 0 0;
  padding: 0;
  gap: 11px 22px;
  color: #d8cebf;
  font-size: .78rem;
  list-style: none;
}

#home-page .home-trust-list span { color: var(--home-gold); }

#home-page .home-hero__visual {
  position: relative;
  min-height: 560px;
  isolation: isolate;
}

#home-page .home-hero__visual::before {
  position: absolute;
  z-index: -1;
  inset: 4% 0 5% 5%;
  border: 1px solid rgba(229, 191, 109, .18);
  border-radius: 48% 52% 44% 56%;
  background: radial-gradient(circle, rgba(102, 61, 121, .35), rgba(9, 10, 24, 0) 69%);
  content: "";
}

#home-page .home-hero__visual a {
  display: block;
  padding-top: 18px;
}

#home-page .home-hero__visual img {
  width: 100%;
  filter: drop-shadow(0 32px 66px rgba(0, 0, 0, .46));
  transition: filter .3s ease, transform .3s ease;
}

#home-page .home-hero__visual a:hover img {
  filter: drop-shadow(0 38px 74px rgba(215, 169, 77, .2));
  transform: translateY(-5px) rotate(-.6deg);
}

#home-page .home-hero__visual-note {
  position: absolute;
  right: 0;
  bottom: 22px;
  width: 230px;
  margin: 0;
  padding: 17px 20px;
  border: 1px solid rgba(229, 191, 109, .3);
  border-radius: 6px;
  background: rgba(13, 11, 24, .88);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .36);
  font-family: Georgia, serif;
  text-align: left;
}

#home-page .home-hero__visual-note strong {
  display: flex;
  align-items: baseline;
  gap: 9px;
  color: var(--home-ink);
  font: 500 1rem/1 Georgia, serif;
  text-transform: uppercase;
}

#home-page .home-hero__visual-note strong span {
  color: var(--home-gold-light);
  font: 500 2.45rem/.9 Georgia, serif;
}

#home-page .home-hero__visual-note small {
  display: block;
  margin-top: 8px;
  color: var(--home-muted);
  font: italic .76rem/1.35 Georgia, serif;
}

/* Portal de experiências */
#home-page .home-experiences { position: relative; }

#home-page .home-experience-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

#home-page .home-experience-card {
  position: relative;
  display: flex;
  min-height: 285px;
  grid-column: span 2;
  flex-direction: column;
  padding: 29px 27px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .012)),
    rgba(19, 15, 30, .72);
  color: inherit;
  text-decoration: none;
  transition: transform .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease;
}

#home-page .home-experience-card::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 255, 255, .11) 0 1px, transparent 1.5px),
    radial-gradient(circle at 86% 78%, rgba(229, 191, 109, .13) 0 1px, transparent 1.5px);
  background-size: 58px 58px, 73px 73px;
  opacity: .5;
  content: "";
  pointer-events: none;
}

#home-page .home-experience-card::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(13, 10, 23, .94) 0%, rgba(13, 10, 23, .7) 48%, rgba(13, 10, 23, .08) 100%);
  content: "";
  pointer-events: none;
}

#home-page .home-experience-card > h3,
#home-page .home-experience-card > p,
#home-page .home-experience-card > strong,
#home-page .home-experience-card > .home-experience-card__number {
  position: relative;
  z-index: 3;
}

#home-page .home-experience-card--tarot,
#home-page .home-experience-card--ai {
  min-height: 345px;
  grid-column: span 3;
  padding: 36px 34px;
}

#home-page .home-experience-card--tarot {
  background:
    radial-gradient(circle at 84% 22%, rgba(139, 100, 184, .34), transparent 43%),
    linear-gradient(145deg, rgba(59, 37, 79, .92), rgba(19, 15, 30, .9));
}

#home-page .home-experience-card--ai {
  border-color: rgba(229, 191, 109, .4);
  background:
    radial-gradient(circle at 84% 20%, rgba(215, 169, 77, .3), transparent 43%),
    linear-gradient(145deg, rgba(69, 42, 66, .94), rgba(20, 15, 28, .92));
}

#home-page .home-experience-card:nth-child(3) {
  background:
    radial-gradient(circle at 88% 18%, rgba(211, 92, 142, .2), transparent 45%),
    linear-gradient(145deg, rgba(55, 28, 52, .86), rgba(18, 14, 28, .9));
}

#home-page .home-experience-card:nth-child(4) {
  background:
    radial-gradient(circle at 88% 18%, rgba(101, 126, 190, .2), transparent 45%),
    linear-gradient(145deg, rgba(31, 35, 62, .88), rgba(17, 14, 27, .92));
}

#home-page .home-experience-card:nth-child(5) {
  background:
    radial-gradient(circle at 88% 18%, rgba(215, 169, 77, .2), transparent 45%),
    linear-gradient(145deg, rgba(54, 42, 44, .86), rgba(17, 14, 27, .92));
}

#home-page .home-experience-card:hover,
#home-page .home-experience-card:focus-visible {
  border-color: rgba(229, 191, 109, .48);
  background-color: rgba(255, 255, 255, .055);
  box-shadow: 0 24px 50px rgba(0, 0, 0, .26);
  color: inherit;
  transform: translateY(-5px);
}

#home-page .home-experience-card:hover .home-experience-card__art,
#home-page .home-experience-card:focus-visible .home-experience-card__art {
  opacity: .96;
  transform: translateY(-50%) translateX(-4px);
}

#home-page .home-experience-card__number {
  color: var(--home-gold);
  font: italic .88rem Georgia, serif;
}

#home-page .home-experience-card__symbol {
  position: absolute;
  z-index: 4;
  top: 22px;
  right: 26px;
  color: rgba(245, 221, 162, .7);
  font: 2rem Georgia, serif;
}

#home-page .home-experience-card__art {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 18px;
  width: 104px;
  height: 170px;
  opacity: .64;
  transform: translateY(-50%);
  transition: opacity .3s ease, transform .3s ease;
  pointer-events: none;
}

#home-page .home-experience-card__art::before {
  position: absolute;
  inset: 12% -20% 4%;
  border: 1px solid rgba(245, 221, 162, .2);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229, 191, 109, .16), transparent 68%);
  content: "";
}

#home-page .home-experience-card__art img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 88px;
  height: auto;
  border: 1px solid rgba(245, 221, 162, .48);
  border-radius: 5px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, .55);
  transform: translate(-50%, -50%) rotate(5deg);
}

#home-page .home-experience-card__art--fan {
  right: 20px;
  width: 245px;
  height: 245px;
  opacity: .82;
}

#home-page .home-experience-card__art--fan img { width: 105px; }

#home-page .home-experience-card__art--fan img:nth-child(1) {
  left: 30%;
  transform: translate(-50%, -50%) rotate(-13deg);
}

#home-page .home-experience-card__art--fan img:nth-child(2) {
  z-index: 2;
  left: 53%;
  transform: translate(-50%, -53%) rotate(-1deg);
}

#home-page .home-experience-card__art--fan img:nth-child(3) {
  left: 76%;
  transform: translate(-50%, -49%) rotate(12deg);
}

#home-page .home-experience-card__badge {
  position: absolute;
  z-index: 4;
  top: 0;
  right: 25px;
  padding: 7px 13px;
  border-radius: 0 0 5px 5px;
  background: var(--home-gold);
  color: #211407;
  font-size: .61rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

#home-page .home-experience-card h3 {
  max-width: 390px;
  margin: auto 0 13px;
  font-size: clamp(1.65rem, 2.5vw, 2.35rem);
}

#home-page .home-experience-card--tarot h3,
#home-page .home-experience-card--ai h3,
#home-page .home-experience-card--tarot p,
#home-page .home-experience-card--ai p { max-width: 55%; }

#home-page .home-experience-card:not(.home-experience-card--tarot):not(.home-experience-card--ai) h3,
#home-page .home-experience-card:not(.home-experience-card--tarot):not(.home-experience-card--ai) p { max-width: calc(100% - 88px); }

#home-page .home-experience-card p {
  max-width: 510px;
  margin: 0 0 22px;
  font-size: .88rem;
  line-height: 1.68;
  text-align: left;
}

#home-page .home-experience-card strong {
  color: var(--home-gold-light);
  font-size: .75rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

#home-page .home-experience-card strong span { margin-left: 8px; }

/* Experiência diária */
#home-page .home-today { position: relative; }

#home-page .home-widgets-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

#home-page #home-cod-widget,
#home-page #home-lua-widget { min-height: 340px; }

#home-page .hw-inner {
  position: relative;
  top: auto;
  width: 100%;
  height: 100%;
  border-color: rgba(229, 191, 109, .2);
  border-radius: 8px;
  background:
    radial-gradient(circle at 80% 10%, rgba(126, 78, 148, .16), transparent 40%),
    rgba(255, 255, 255, .025);
  box-shadow: none;
}

#home-page .hw-inner:hover {
  border-color: rgba(229, 191, 109, .46);
  box-shadow: 0 24px 50px rgba(0, 0, 0, .24);
}

#home-page .hw-label,
#home-page .hw-cta { color: var(--home-gold); }

#home-page .hw-card-name,
#home-page .hw-phase-name { color: var(--home-ink); font-family: Georgia, serif; }

/* Conteúdo explicativo */
#home-page .home-introduction {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  align-items: center;
  gap: clamp(50px, 8vw, 100px);
}

#home-page .home-introduction__copy > p:not(.home-kicker) {
  margin: 0 0 28px;
  font-size: 1rem;
  line-height: 1.85;
  text-align: left;
}

#home-page .home-introduction__copy strong { color: var(--home-ink); }

#home-page .home-value-proposition {
  padding: 38px 36px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(64, 38, 71, .54), rgba(23, 16, 32, .72));
}

#home-page .home-value-proposition h2 {
  margin-bottom: 25px;
  font-size: 2rem;
  text-align: left;
}

#home-page .feature-list { margin: 0; padding: 0; list-style: none; }

#home-page .feature-list li {
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  color: var(--home-muted);
  font-size: .84rem;
  line-height: 1.55;
}

#home-page .feature-list li:last-child { border-bottom: 0; }
#home-page .feature-list strong { color: var(--home-gold-light); }

#home-page .how-it-works { position: relative; }

#home-page .steps-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  gap: 0;
  counter-reset: step-counter;
  list-style: none;
}

#home-page .steps-list li {
  position: relative;
  display: block;
  min-height: 265px;
  margin: 0;
  padding: 72px 26px 28px;
  border: 0;
  border-top: 1px solid rgba(229, 191, 109, .28);
  border-right: 1px solid rgba(255, 255, 255, .08);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  counter-increment: step-counter;
}

#home-page .steps-list li:last-child { border-right: 0; }
#home-page .steps-list li:hover { border-color: rgba(229, 191, 109, .28); background: rgba(255, 255, 255, .025); box-shadow: none; transform: none; }

#home-page .steps-list li::before {
  position: absolute;
  top: 21px;
  left: 26px;
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--home-gold);
  content: "0" counter(step-counter);
  font: italic 1rem Georgia, serif;
  transform: none;
}

#home-page .steps-list strong {
  margin: 0 0 16px;
  color: var(--home-ink);
  font: 500 1.55rem/1.15 Georgia, serif;
  text-align: left;
}

#home-page .steps-list p {
  margin: 0;
  color: var(--home-muted);
  font-size: .84rem;
  line-height: 1.7;
  text-align: left;
}

/* Conteúdo editorial */
#home-page .arcanos-maiores-featured { padding-top: 110px; }

#home-page .arcanos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  gap: 14px;
}

#home-page .arcano-card {
  min-height: 225px;
  padding: 27px 25px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 7px;
  background: rgba(255, 255, 255, .022);
  box-shadow: none;
}

#home-page .arcano-card:hover {
  border-color: rgba(229, 191, 109, .4);
  background: rgba(255, 255, 255, .045);
  box-shadow: 0 18px 38px rgba(0, 0, 0, .22);
  transform: translateY(-3px);
}

#home-page .arcano-card h3 {
  margin: 0 0 16px;
  font-size: 1.45rem;
}

#home-page .arcano-card h3 a { color: var(--home-ink); }
#home-page .arcano-card h3 a:hover { color: var(--home-gold-light); }

#home-page .arcano-excerpt {
  margin: 0 0 20px;
  color: var(--home-muted);
  font-size: .82rem;
  line-height: 1.65;
  text-align: left;
}

#home-page .read-more,
#home-page .home-article-link {
  color: var(--home-gold);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

#home-page .arcanos-cta { padding: 34px 0 0; text-align: center; }

#home-page .post-list-container { position: relative; }

#home-page .post-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  gap: 16px;
  list-style: none;
}

#home-page .post-list li,
#home-page .post-list li:last-child {
  display: flex;
  min-height: 250px;
  margin: 0;
  padding: 28px 26px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 7px;
  background: rgba(255, 255, 255, .025);
  flex-direction: column;
}

#home-page .post-list li:hover {
  background: rgba(255, 255, 255, .05);
  border-color: rgba(229, 191, 109, .38);
  transform: translateY(-3px);
}

#home-page .post-meta {
  color: var(--home-gold);
  font-size: .67rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

#home-page .post-list h3 {
  margin: 45px 0 20px;
  font-size: 1.55rem;
  line-height: 1.16;
}

#home-page .post-link { color: var(--home-ink); }
#home-page .post-link:hover { color: var(--home-gold-light); }
#home-page .home-article-link { margin-top: auto; }

/* FAQ e fechamento */
#home-page .faq-section {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(45px, 7vw, 85px);
}

#home-page .faq-content { display: block; }

#home-page .faq-item {
  margin: 0;
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .11);
  border-radius: 0;
  background: transparent;
}

#home-page .faq-item:hover { background: transparent; transform: none; }

#home-page .faq-item summary {
  position: relative;
  padding: 23px 42px 23px 0;
  color: #eee3cf;
  cursor: pointer;
  font: 600 1.25rem/1.3 Georgia, serif;
  list-style: none;
}

#home-page .faq-item summary::-webkit-details-marker { display: none; }

#home-page .faq-item summary::after {
  position: absolute;
  top: 20px;
  right: 4px;
  color: var(--home-gold);
  content: "+";
  font: 300 1.5rem sans-serif;
}

#home-page .faq-item[open] summary::after { content: "−"; }

#home-page .faq-item p {
  margin: 0;
  padding: 0 42px 24px 0;
  font-size: .86rem;
  line-height: 1.75;
  text-align: left;
}

#home-page .faq-item p strong { color: var(--home-gold-light); }

#home-page .home-final-cta {
  margin-bottom: 70px;
  padding: 100px 25px;
  border-top: 1px solid rgba(229, 191, 109, .22);
  border-bottom: 1px solid rgba(229, 191, 109, .22);
  text-align: center;
}

#home-page .home-final-cta .home-kicker,
#home-page .home-final-cta h2 { text-align: center; }

#home-page .home-final-cta h2 {
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 1181px) {
  #home-page { overflow: visible; }
  #home-page .home-page {
    width: min(1180px, calc(100vw - 40px));
    margin-left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 960px) {
  #home-page .home-hero {
    grid-template-columns: 1fr;
    padding-top: 72px;
    gap: 20px;
  }

  #home-page .home-hero__copy { max-width: 760px; }
  #home-page .home-hero__visual { width: min(650px, 100%); min-height: 520px; margin: 0 auto; }
  #home-page .home-experience-card { grid-column: span 3; }
  #home-page .home-experience-card:last-child { grid-column: 2 / span 4; }
  #home-page .home-introduction { grid-template-columns: 1fr; }
  #home-page .steps-list { grid-template-columns: repeat(2, 1fr); }
  #home-page .steps-list li:nth-child(2) { border-right: 0; }
  #home-page .steps-list li:nth-child(n + 3) { border-top-color: rgba(255, 255, 255, .08); }
  #home-page .arcanos-grid { grid-template-columns: repeat(2, 1fr); }
  #home-page .post-list { grid-template-columns: 1fr; }
  #home-page .post-list li, #home-page .post-list li:last-child { min-height: 205px; }
  #home-page .post-list h3 { margin-top: 30px; }
  #home-page .faq-section { grid-template-columns: 1fr; gap: 10px; }
}

@media (max-width: 680px) {
  #home-page ~ .dropdown-menu,
  .dropdown-menu {
    width: min(18rem, calc(100vw - 1rem)) !important;
    max-width: calc(100vw - 1rem) !important;
  }

  .dropdown-menu li,
  .dropdown-menu .page-link {
    width: auto !important;
    max-width: 100% !important;
    box-sizing: border-box;
    white-space: normal !important;
    overflow-wrap: anywhere;
  }

  #home-page .home-page { width: min(100% - 28px, 1180px); }
  #home-page .home-page section { padding: 72px 0; }
  #home-page .home-eyebrow, #home-page .home-kicker { font-size: .62rem; letter-spacing: .13em; }
  #home-page .home-section-heading { margin-bottom: 32px; }
  #home-page .home-section-heading h2,
  #home-page .home-introduction h2,
  #home-page .home-final-cta h2 { font-size: 2.55rem; }

  #home-page .home-hero { min-height: auto; padding: 48px 0 64px; gap: 34px; }
  #home-page .home-hero h1 { font-size: clamp(2.9rem, 14vw, 4.15rem); text-align: center; }
  #home-page .home-hero .home-eyebrow,
  #home-page .home-hero__lead { text-align: center; }
  #home-page .home-hero__lead { font-size: .95rem; line-height: 1.65; }
  #home-page .home-hero__actions { display: grid; grid-template-columns: 1fr; }
  #home-page .home-button { width: 100%; padding-right: 17px; padding-left: 17px; }
  #home-page .home-trust-list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 12px; }
  #home-page .home-hero__visual { min-height: 385px; }
  #home-page .home-hero__visual-note { right: 5px; bottom: 0; width: 205px; }

  #home-page .home-experience-grid { grid-template-columns: 1fr; }
  #home-page .home-experience-card,
  #home-page .home-experience-card--tarot,
  #home-page .home-experience-card--ai,
  #home-page .home-experience-card:last-child {
    min-height: 255px;
    grid-column: auto;
    padding: 28px 24px;
  }
  #home-page .home-experience-card h3 { font-size: 1.9rem; }
  #home-page .home-experience-card--tarot h3,
  #home-page .home-experience-card--ai h3,
  #home-page .home-experience-card--tarot p,
  #home-page .home-experience-card--ai p,
  #home-page .home-experience-card:not(.home-experience-card--tarot):not(.home-experience-card--ai) h3,
  #home-page .home-experience-card:not(.home-experience-card--tarot):not(.home-experience-card--ai) p { max-width: 82%; }
  #home-page .home-experience-card__art { right: -12px; opacity: .36; }
  #home-page .home-experience-card__art--fan { right: -70px; opacity: .34; }

  #home-page .home-widgets-row { grid-template-columns: 1fr; }
  #home-page #home-cod-widget,
  #home-page #home-lua-widget {
    grid-column: auto;
    grid-row: auto;
  }
  #home-page .home-value-proposition { padding: 30px 23px; }
  #home-page .steps-list { grid-template-columns: 1fr; }
  #home-page .steps-list li,
  #home-page .steps-list li:nth-child(2) {
    min-height: 220px;
    border-right: 0;
    border-top: 1px solid rgba(255, 255, 255, .1);
  }
  #home-page .steps-list li:first-child { border-top-color: rgba(229, 191, 109, .28); }
  #home-page .arcanos-grid { grid-template-columns: 1fr; }
  #home-page .arcano-card { min-height: 205px; }
  #home-page .post-list h3 { font-size: 1.4rem; }
  #home-page .faq-item summary { font-size: 1.12rem; }
  #home-page .home-final-cta { margin-bottom: 40px; padding-right: 0; padding-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
  #home-page .home-button,
  #home-page .home-experience-card,
  #home-page .home-hero__visual img,
  #home-page .arcano-card,
  #home-page .post-list li { transition: none; }
}
