.home-page {
  --home-bg: #080510;
  --home-surface: rgba(24, 14, 42, 0.78);
  --home-border: rgba(212, 190, 255, 0.14);
  --home-text: #f8f5ff;
  --home-muted: #bdb4ce;
  --home-purple: #a980f8;
  --home-purple-deep: #7c4ddd;
  --home-pink: #ff4f91;
  background: var(--home-bg);
}

.home-page .sky {
  background: radial-gradient(circle at 76% 12%, rgba(126, 77, 221, 0.13), transparent 30%), var(--home-bg);
}

.home-page .stars {
  opacity: 0.22;
}
.home-page .clouds {
  opacity: 0.5;
}

.home-main {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--home-text);
}

.home-shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.home-page #home.home-hero {
  position: relative;
  min-height: calc(100vh - 72px);
  padding: clamp(72px, 9vw, 120px) 0 72px;
  background: linear-gradient(180deg, rgba(8, 5, 16, 0.15), var(--home-bg) 96%), radial-gradient(circle at 76% 45%, rgba(121, 73, 215, 0.13), transparent 32%);
}

.home-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.28;
  background-image: radial-gradient(rgba(220, 205, 255, 0.7) 0.7px, transparent 0.7px);
  background-size: 42px 42px;
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 88%);
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
}

.hero-aura {
  position: absolute;
  z-index: -1;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.hero-aura-left {
  top: 18%;
  left: -300px;
  background: rgba(255, 79, 145, 0.15);
}
.hero-aura-right {
  top: 10%;
  right: -230px;
  background: rgba(169, 128, 248, 0.2);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.98fr);
  align-items: center;
  gap: clamp(35px, 7vw, 90px);
}

.hero-copy {
  position: relative;
  z-index: 4;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--home-purple);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.kicker-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--home-pink);
  box-shadow: 0 0 12px var(--home-pink);
}

.home-page #home .hero-copy h1 {
  max-width: 700px;
  margin: 22px 0 24px;
  color: var(--home-text);
  background: none;
  font-size: clamp(3rem, 6.3vw, 5.7rem);
  font-weight: 750;
  letter-spacing: -0.06em;
  line-height: 0.98;
  text-shadow: none;
  -webkit-text-fill-color: currentColor;
  animation: none;
}

.hero-copy h1 span {
  display: block;
  padding-bottom: 0.08em;
  background: linear-gradient(110deg, #c6a9ff 8%, #ff8db8 52%, #ffd1e2 92%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.home-page #home .hero-description {
  max-width: 620px;
  margin: 0;
  color: var(--home-muted);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.75;
  text-align: left;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 36px;
}

.home-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 13px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 750;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.home-button svg,
.home-text-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.home-button-primary {
  border-color: rgba(190, 157, 255, 0.34);
  background: linear-gradient(135deg, #7547d8, #a86cf0);
  background-clip: padding-box;
  box-shadow: 0 13px 32px rgba(126, 77, 221, 0.28);
}

.home-button-primary:hover,
.home-button-primary:focus-visible {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #8253e2, #b77cf4);
  box-shadow: 0 17px 38px rgba(137, 86, 224, 0.38);
}

.home-button-secondary {
  border-color: var(--home-border);
  color: #e7dff2;
  background: rgba(255, 255, 255, 0.035);
}

.home-button-secondary:hover,
.home-button-secondary:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(169, 128, 248, 0.4);
  background: rgba(169, 128, 248, 0.09);
}

.home-button:focus-visible,
.home-text-link:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.78);
  outline-offset: 4px;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin: 28px 0 0;
  padding: 0;
  color: #9f96af;
  font-size: 0.82rem;
  list-style: none;
}

.hero-highlights li {
  display: flex;
  align-items: center;
  gap: 7px;
}
.hero-highlights span {
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border-radius: 50%;
  color: #d7c4ff;
  background: rgba(169, 128, 248, 0.13);
  font-size: 0.65rem;
}

.hero-visual {
  position: relative;
  min-height: 590px;
}

.hero-art-glow {
  position: absolute;
  top: 19%;
  left: 50%;
  width: 69%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(169, 128, 248, 0.32), rgba(255, 79, 145, 0.12) 45%, transparent 70%);
  filter: blur(22px);
  transform: translateX(-50%);
}

.hero-moon {
  position: absolute;
  top: 7%;
  right: 5%;
  width: 82%;
  aspect-ratio: 1;
  border: 1px solid rgba(189, 157, 255, 0.18);
  border-radius: 50%;
  background: radial-gradient(circle at 38% 35%, rgba(255, 255, 255, 0.08) 0 2%, transparent 2.5%), radial-gradient(circle at 50% 50%, rgba(102, 60, 164, 0.2), rgba(24, 12, 44, 0.12) 65%);
  box-shadow: inset 0 0 65px rgba(169, 128, 248, 0.06), 0 0 80px rgba(169, 128, 248, 0.06);
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(183, 148, 255, 0.12);
  border-radius: 50%;
  pointer-events: none;
}
.hero-orbit::after {
  display: none;
}
.hero-orbit-one {
  inset: 3% -4% 3% 7%;
  transform: rotate(-16deg);
}
.hero-orbit-two {
  inset: 15% 5% 8% -6%;
  transform: rotate(24deg);
}

.hero-dot-track {
  position: absolute;
  z-index: 1;
  left: 50%;
  aspect-ratio: 1;
  border-radius: 50%;
  pointer-events: none;
  transform-origin: center;
  will-change: transform;
}

.hero-dot-track span {
  position: absolute;
  top: 50%;
  right: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  transform: translateY(-50%);
}

.hero-dot-track-pink {
  top: 3%;
  width: 91%;
  margin-left: -45.5%;
  animation: hero-orbit-pink 9s linear infinite;
}

.hero-dot-track-pink span {
  background: var(--home-pink);
  box-shadow: 0 0 7px var(--home-pink), 0 0 18px var(--home-pink);
}

.hero-dot-track-purple {
  top: 14%;
  width: 75%;
  margin-left: -37.5%;
  animation: hero-orbit-purple 12s linear infinite;
}

.hero-dot-track-purple span {
  background: var(--home-purple);
  box-shadow: 0 0 7px var(--home-purple), 0 0 18px var(--home-purple);
}

@keyframes hero-orbit-pink {
  from {
    transform: rotate(-38deg);
  }
  to {
    transform: rotate(322deg);
  }
}

@keyframes hero-orbit-purple {
  from {
    transform: rotate(142deg);
  }
  to {
    transform: rotate(-218deg);
  }
}

.hero-art {
  --hero-art-shift: translateX(0);
  --hero-art-scale: 1;
  position: absolute;
  z-index: 2;
  right: 5%;
  bottom: 0;
  width: min(91%, 500px);
  max-height: 570px;
  object-fit: contain;
  filter: drop-shadow(0 30px 30px rgba(0, 0, 0, 0.38)) drop-shadow(0 0 17px rgba(169, 128, 248, 0.23));
  transform: var(--hero-art-shift) scale(var(--hero-art-scale));
  transform-origin: center bottom;
  transition: transform 0.35s cubic-bezier(0.2, 0.75, 0.25, 1), filter 0.35s ease;
}

@media (hover: hover) and (pointer: fine) {
  .hero-art:hover {
    --hero-art-scale: 1.025;
    filter: drop-shadow(0 34px 34px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 24px rgba(169, 128, 248, 0.35));
  }
}

.hero-art[role="button"] {
  cursor: zoom-in;
  -webkit-tap-highlight-color: transparent;
}

.hero-art[role="button"].is-expanded {
  --hero-art-scale: 1.035;
  cursor: zoom-out;
  filter: drop-shadow(0 34px 34px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 25px rgba(169, 128, 248, 0.38));
}

.hero-art[role="button"]:focus-visible {
  outline: 2px solid rgba(215, 197, 255, 0.85);
  outline-offset: 6px;
}

.floating-power {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 190px;
  padding: 11px 14px;
  border: 1px solid rgba(212, 190, 255, 0.16);
  border-radius: 14px;
  background: rgba(19, 11, 34, 0.82);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(16px);
}

.floating-power-shield {
  top: 28%;
  left: -5%;
}
.floating-power-magic {
  right: -4%;
  bottom: 17%;
}

.floating-icon {
  display: grid;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 10px;
  color: #d9c5ff;
  background: rgba(169, 128, 248, 0.13);
}
.floating-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.floating-power strong, .floating-power small {
  display: block;
  line-height: 1.25;
}
.floating-power strong {
  color: #f4effb;
  font-size: 0.76rem;
}
.floating-power small {
  margin-top: 3px;
  color: #9f96ae;
  font-size: 0.65rem;
}

.home-page #features.powers-section {
  position: relative;
  min-height: auto;
  padding: 112px 0;
  background: linear-gradient(180deg, var(--home-bg), #0d0718 50%, var(--home-bg));
  text-align: initial;
}

.home-page #features.powers-section::before {
  content: '';
  position: absolute;
  top: 22%;
  left: 50%;
  width: 750px;
  height: 420px;
  background: rgba(123, 73, 220, 0.07);
  filter: blur(130px);
  transform: translateX(-50%);
  pointer-events: none;
  animation: none;
}
.home-page #features.powers-section::after {
  content: none;
}

.section-heading {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-heading h2,
.experience-copy h2,
.final-cta h2 {
  margin: 16px 0 17px;
  color: var(--home-text);
  font-size: clamp(2.2rem, 4vw, 3.55rem);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.section-heading p,
.experience-copy p,
.final-cta p {
  margin: 0;
  color: var(--home-muted);
  font-size: 1.04rem;
  line-height: 1.75;
}

.powers-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.power-card {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  padding: 29px;
  border: 1px solid var(--home-border);
  border-radius: 20px;
  background: linear-gradient(155deg, rgba(30, 18, 50, 0.83), rgba(14, 9, 25, 0.93));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035), 0 24px 50px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.power-card::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -80px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(169, 128, 248, 0.1);
  filter: blur(55px);
}
.power-card:hover {
  transform: translateY(-7px);
  border-color: rgba(182, 148, 255, 0.31);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.28);
}
.power-card-top {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 28px;
}

.power-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid rgba(169, 128, 248, 0.23);
  border-radius: 14px;
  color: #d5bdff;
  background: rgba(169, 128, 248, 0.1);
}
.power-icon svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}
.power-card h3 {
  position: relative;
  margin: 0 0 14px;
  color: var(--home-text);
  font-size: 1.4rem;
  letter-spacing: -0.025em;
}
.power-card > p {
  position: relative;
  min-height: 105px;
  margin: 0;
  color: var(--home-muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

.power-list {
  position: relative;
  display: grid;
  gap: 12px;
  margin: 25px 0 0;
  padding: 23px 0 0;
  border-top: 1px solid rgba(212, 190, 255, 0.09);
  color: #ded6e9;
  font-size: 0.88rem;
  list-style: none;
}
.power-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.power-list li::before {
  content: '';
  flex: 0 0 5px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--home-purple);
  box-shadow: 0 0 8px rgba(169, 128, 248, 0.7);
}
.experience-section {
  padding: 0 0 112px;
  background: var(--home-bg);
}
.experience-card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 34px 38px;
  border: 1px solid var(--home-border);
  border-radius: 22px;
  background: linear-gradient(100deg, rgba(169, 128, 248, 0.08), transparent 38%), rgba(20, 12, 35, 0.74);
}
.experience-symbol {
  position: relative;
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
}
.experience-symbol span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(169, 128, 248, 0.25);
  border-radius: 22px;
  background: rgba(169, 128, 248, 0.08);
  transform: rotate(8deg);
}
.experience-symbol svg {
  position: relative;
  width: 32px;
  height: 32px;
  fill: var(--home-purple);
  filter: drop-shadow(0 0 11px rgba(169, 128, 248, 0.5));
}
.experience-copy h2 {
  margin: 8px 0;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
}
.experience-copy p {
  max-width: 720px;
  font-size: 0.94rem;
}

.home-text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 0;
  color: #d8c5ff;
  font-size: 0.9rem;
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
}
.home-text-link:hover {
  color: #fff;
}
.home-text-link svg {
  transition: transform 0.2s ease;
}
.home-text-link:hover svg {
  transform: translateX(4px);
}

.home-page #partner.home-partner {
  position: relative;
  overflow: hidden;
  padding: 88px 0;
  background: radial-gradient(circle at 20% 50%, rgba(205, 21, 30, 0.035), transparent 24%), linear-gradient(180deg, var(--home-bg), #0c0715 50%, var(--home-bg));
}

.home-page #partner.home-partner::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.7) 0.6px, transparent 0.6px);
  background-size: 46px 46px;
  pointer-events: none;
}

.home-partner .home-shell {
  width: min(980px, calc(100% - 40px));
}
.partner-showcase {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(230px, 310px) minmax(0, 1fr);
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: linear-gradient(130deg, rgba(38, 13, 31, 0.84), rgba(18, 11, 31, 0.94) 52%);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.22);
}
.partner-showcase::after {
  content: '';
  position: absolute;
  right: -100px;
  bottom: -120px;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background: rgba(169, 128, 248, 0.08);
  filter: blur(80px);
  pointer-events: none;
}
.partner-image-wrap {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  background: #d70d15;
}
.partner-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset -12px 0 24px rgba(9, 5, 16, 0.08);
  pointer-events: none;
}
.partner-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.partner-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(32px, 5vw, 48px);
}
.partner-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #ffabb0;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.partner-label span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ef3039;
  box-shadow: 0 0 12px #ef3039;
}
.partner-copy h3 {
  margin: 18px 0 17px;
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 4rem);
  letter-spacing: -0.05em;
  line-height: 1;
}
.partner-copy p {
  max-width: 600px;
  margin: 0 0 29px;
  color: #c8bdcc;
  font-size: 1.02rem;
  line-height: 1.75;
}
.partner-cta {
  min-height: 49px;
  border-color: rgba(255, 110, 117, 0.32);
  background: linear-gradient(135deg, #e11b24, #a70c14);
  box-shadow: 0 12px 28px rgba(225, 27, 36, 0.2);
}
.partner-cta:hover, .partner-cta:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(225, 27, 36, 0.32);
}

.final-cta {
  padding: 44px 0 118px;
  background: var(--home-bg);
}
.final-cta-card {
  position: relative;
  overflow: hidden;
  padding: clamp(60px, 8vw, 92px) 24px;
  border: 1px solid rgba(189, 159, 251, 0.19);
  border-radius: 26px;
  background: radial-gradient(circle at 50% 110%, rgba(255, 79, 145, 0.16), transparent 42%), radial-gradient(circle at 50% -10%, rgba(169, 128, 248, 0.15), transparent 40%), #120a20;
  text-align: center;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}
.cta-stars {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image: radial-gradient(rgba(255, 255, 255, 0.85) 0.7px, transparent 0.7px);
  background-size: 36px 36px;
  -webkit-mask-image: radial-gradient(circle, #000, transparent 76%);
  mask-image: radial-gradient(circle, #000, transparent 76%);
  pointer-events: none;
}
.final-cta-card > *:not(.cta-stars) {
  position: relative;
  z-index: 1;
}
.final-cta h2 {
  max-width: 780px;
  margin-inline: auto;
}
.final-cta p {
  margin-bottom: 30px;
}

.home-page .footer {
  border-top: 1px solid rgba(212, 190, 255, 0.09);
  color: #a9a0b6;
  backdrop-filter: none;
}
.home-page .footer-content {
  margin: 0;
  color: #7f768a;
}
.home-page .footer-links {
  gap: 22px;
}
.home-page .footer a {
  color: #8f879c;
}
.home-page .footer a:hover {
  color: #d7c5ff;
}

@media (max-width: 1050px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.82fr);
    gap: 25px;
  }
  .hero-visual {
    min-height: 525px;
  }
  .floating-power-shield {
    left: -3%;
  }
  .floating-power-magic {
    right: -2%;
  }
  .power-card {
    min-height: 465px;
    padding: 25px;
  }
}

/*
 * O modo "Site para computador" em celulares combina uma largura de desktop
 * com uma viewport muito alta. Nesse formato, 100vh criava um grande vazio
 * abaixo do hero antes da próxima seção.
 */
@media (min-width: 901px) and (max-aspect-ratio: 4 / 5) {
  .home-page #home.home-hero {
    min-height: auto;
  }
}

@media (max-width: 900px) {
  .home-page #home.home-hero {
    min-height: auto;
  }
  .hero-layout {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
  }
  .home-page #home .hero-description {
    margin-inline: auto;
    text-align: center;
  }
  .hero-actions, .hero-highlights {
    justify-content: center;
  }
  .hero-visual {
    width: min(100%, 570px);
    min-height: 580px;
    margin: 12px auto 0;
  }
  .powers-grid {
    grid-template-columns: 1fr;
    max-width: 700px;
    margin: 0 auto;
  }
  .power-card {
    min-height: 0;
  }
  .power-card > p {
    min-height: 0;
  }
  .experience-card {
    grid-template-columns: auto 1fr;
  }
  .home-text-link {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .home-shell {
    width: min(100% - 30px, 1180px);
  }
  .home-page #home.home-hero {
    padding: 62px 0 50px;
  }
  .home-page #home .hero-copy h1 {
    font-size: clamp(2.7rem, 13vw, 4.3rem);
  }
  .hero-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
    justify-content: initial;
    gap: 4px;
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    font-size: clamp(0.58rem, 2.35vw, 0.72rem);
    line-height: 1.35;
    text-align: center;
  }
  .hero-highlights li {
    justify-content: center;
    gap: 5px;
  }
  .hero-highlights li::before {
    content: '✓';
    display: grid;
    flex: 0 0 15px;
    width: 15px;
    height: 15px;
    place-items: center;
    border-radius: 50%;
    color: #d7c4ff;
    background: rgba(169, 128, 248, 0.18);
    font-size: 0.56rem;
  }
  .hero-highlights span {
    display: none;
  }
  .hero-visual {
    min-height: 500px;
    margin-top: 86px;
  }
  .floating-power {
    min-width: 170px;
    padding: 9px 11px;
  }
  .floating-power-shield {
    top: 32%;
    left: 0;
  }
  .floating-power-magic {
    right: 0;
    bottom: 12%;
  }
  .home-page #features.powers-section {
    padding: 86px 0;
  }
  .home-page #partner.home-partner {
    padding: 68px 0;
  }
  .experience-section {
    padding-bottom: 86px;
  }
  .experience-card {
    grid-template-columns: 1fr;
    padding: 30px;
    text-align: center;
  }
  .experience-symbol {
    margin: 0 auto;
  }
  .home-text-link {
    grid-column: 1;
    justify-self: center;
  }
  .partner-showcase {
    grid-template-columns: 1fr;
  }
  .partner-image-wrap {
    min-height: 0;
    aspect-ratio: 1;
  }
  .partner-image-wrap::after {
    box-shadow: inset 0 -10px 22px rgba(9, 5, 16, 0.07);
  }
  .partner-copy {
    align-items: center;
    padding: 39px 27px 44px;
    text-align: center;
  }
  .final-cta {
    padding: 20px 0 86px;
  }
}

@media (max-width: 520px) {
  .home-page .mobile-username {
    display: none;
  }
  .section-kicker {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .home-button {
    width: 100%;
  }
  .hero-visual {
    min-height: 420px;
  }
  .hero-art {
    --hero-art-shift: translateX(50%);
    right: 50%;
    width: 92%;
  }
  .floating-power {
    min-width: auto;
    max-width: 170px;
  }
  .floating-power-shield {
    top: 30%;
  }
  .floating-power-magic {
    bottom: 7%;
  }
  .floating-icon {
    display: none;
  }
  .section-heading {
    margin-bottom: 38px;
  }
  .section-heading h2, .final-cta h2 {
    font-size: 2.15rem;
  }
  .power-card {
    padding: 23px;
  }
  .partner-copy h3 {
    font-size: 2.45rem;
  }
  .home-page .footer-links {
    flex-direction: column;
    gap: 9px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page *, .home-page *::before, .home-page *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .home-page .hero-dot-track-pink {
    animation-duration: 9s !important;
    animation-iteration-count: infinite !important;
  }

  .home-page .hero-dot-track-purple {
    animation-duration: 12s !important;
    animation-iteration-count: infinite !important;
  }
}
