.landing-hero {
  padding-top: 62px;
  padding-bottom: 38px;
  text-align: center;
}

.landing-hero .hero-title,
.landing-hero .lede {
  margin-left: auto;
  margin-right: auto;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 46px;
}

.profile-card {
  min-height: 560px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 36px 32px 38px;
  border: 1.5px solid rgba(27, 16, 55, 0.08);
  border-radius: 28px;
  background: var(--rithm-cream-web);
  color: var(--text-primary);
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.profile-card:hover {
  transform: translateY(-6px);
  border-color: var(--rithm-pink-web);
  background: #ffffff;
  box-shadow: 0 22px 44px rgba(27, 16, 55, 0.08);
  color: var(--text-primary);
}

.profile-card:focus-visible {
  border-color: var(--rithm-pink-web);
}

.profile-card__circles {
  width: 120px;
  height: 120px;
  position: relative;
  margin-bottom: 4px;
}

.profile-card__circle {
  position: absolute;
  width: 84px;
  height: 84px;
  border-radius: 50%;
}

.profile-card__circle:first-child {
  left: 0;
  top: 0;
}

.profile-card__circle:last-child {
  right: 0;
  bottom: 0;
  opacity: 0.85;
  mix-blend-mode: multiply;
}

.profile-card--a .profile-card__circle:first-child {
  background: linear-gradient(135deg, #fec9b0, #f4f55b);
}

.profile-card--a .profile-card__circle:last-child {
  background: linear-gradient(135deg, #f4f55b, #f9631b);
}

.profile-card--c .profile-card__circle:first-child {
  background: linear-gradient(135deg, #fec9b0, #ff3070);
}

.profile-card--c .profile-card__circle:last-child {
  background: linear-gradient(135deg, #ff3070, #f9631b);
}

.profile-card--e .profile-card__circle:first-child {
  background: linear-gradient(135deg, #ff3070, #f9631b);
}

.profile-card--e .profile-card__circle:last-child {
  background: linear-gradient(135deg, #f9631b, #5b48db);
}

.profile-card--i .profile-card__circle:first-child {
  background: linear-gradient(135deg, #5b48db, #ff3070);
}

.profile-card--i .profile-card__circle:last-child {
  background: linear-gradient(135deg, #ff3070, #0e3e48);
}

.profile-card__num {
  color: var(--rithm-pink-web);
  font-family: var(--font-headline);
  font-size: 28px;
  font-style: italic;
  line-height: 1;
}

.profile-card__name {
  margin: 0;
  color: var(--text-primary);
  font-family: var(--font-headline);
  font-size: 26px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 1.1;
  text-wrap: balance;
}

.profile-card__desc {
  flex: 1;
  margin: 0;
  color: var(--text-primary);
  font-size: 23px;
  line-height: 1.43;
}

.profile-card__choice {
  color: var(--rithm-pink-web);
  font-weight: 700;
}

.path-hero {
  padding-top: 54px;
  padding-bottom: 44px;
}

.path-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--text-secondary);
  font-size: 16px;
  font-weight: 700;
}

.path-kicker::before {
  content: "";
  width: 34px;
  height: 18px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--rithm-satsumo), var(--rithm-pink));
}

.notice {
  margin-bottom: 38px;
  padding: 24px 28px;
  border: 1.5px solid rgba(255, 51, 102, 0.22);
  border-radius: 8px;
  background: var(--rithm-pink-tint);
  color: var(--text-primary);
}

.notice p {
  margin: 0;
}

.agent-primer {
  margin-top: 36px;
  max-width: 940px;
  border-top: 1.5px solid rgba(27, 16, 55, 0.14);
  border-bottom: 1.5px solid rgba(27, 16, 55, 0.14);
}

.agent-primer summary {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--rithm-pink-web);
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.agent-primer summary::-webkit-details-marker {
  display: none;
}

.agent-primer summary::after {
  content: ">";
  font-family: var(--font-body);
  transition: transform 160ms ease;
}

.agent-primer[open] summary::after {
  transform: rotate(90deg);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  padding: 14px 0 30px;
}

.video-stack {
  display: grid;
  gap: 32px;
  margin-top: 34px;
  max-width: 920px;
}

.video-embed {
  margin: 0;
}

.video-frame {
  overflow: hidden;
  border: 1.5px solid rgba(27, 16, 55, 0.1);
  border-radius: 8px;
  background: var(--rithm-dark);
  aspect-ratio: 16 / 9;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.video-embed figcaption {
  margin-top: 12px;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.45;
}

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

.tool-card {
  display: grid;
  gap: 16px;
  align-content: start;
  padding: 24px;
  border: 1.5px solid rgba(27, 16, 55, 0.1);
  border-radius: 8px;
  background: rgba(255, 246, 247, 0.52);
}

.tool-card__icon {
  width: 58px;
  height: 58px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: var(--text-primary);
  font-family: var(--font-headline);
  font-size: 28px;
  font-style: italic;
  line-height: 1;
}

.tool-card:nth-child(1) .tool-card__icon {
  background: linear-gradient(135deg, var(--rithm-mint), var(--rithm-teal));
}

.tool-card:nth-child(2) .tool-card__icon {
  background: linear-gradient(135deg, var(--rithm-peach), var(--rithm-pink));
}

.tool-card:nth-child(3) .tool-card__icon {
  background: linear-gradient(135deg, var(--rithm-lemon), var(--rithm-satsumo));
}

.tool-card h2 {
  margin: 0;
  color: var(--text-primary);
  font-family: var(--font-headline);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.1;
}

.tool-card p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 17px;
}

.prompt-panel {
  margin-top: 56px;
  max-width: 940px;
}

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

.prompt-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text-primary);
  font-family: var(--font-headline);
  font-size: 25px;
  font-style: italic;
  line-height: 1.32;
}

.prompt-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--rithm-pink-web);
}

.pointers-title {
  margin: 46px 0 0;
  font-family: var(--font-headline);
  font-size: 28px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.1;
  color: var(--text-primary);
}

.tips {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  padding: 0;
  list-style: none;
  max-width: 760px;
}

.tips li {
  position: relative;
  padding-left: 25px;
  font-size: 22px;
  line-height: 1.4;
}

.tips li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--rithm-pink-web);
}

.prompt-block {
  margin-top: 38px;
  max-width: 960px;
  padding: 36px;
  border: 1.5px solid rgba(255, 51, 102, 0.18);
  border-radius: 8px;
  background: var(--rithm-pink-tint);
}

.prompt-block__text {
  margin: 0;
  color: var(--rithm-pink-web);
  font-family: var(--font-headline);
  font-size: 31px;
  font-style: italic;
  line-height: 1.32;
}

.copy-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--text-secondary);
  font-size: 15px;
}

.closing-note {
  max-width: 760px;
  margin: 30px 0 0;
  color: var(--text-secondary);
  font-size: 20px;
}

.route-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 46px;
  max-width: 980px;
}

.route-link {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 20px;
  border: 1.5px solid rgba(27, 16, 55, 0.1);
  border-radius: 8px;
  color: var(--text-primary);
  text-decoration: none;
}

.route-link:hover {
  border-color: var(--rithm-pink-web);
  color: var(--text-primary);
}

.route-link span {
  color: var(--rithm-pink-web);
  font-weight: 700;
}

@media (max-width: 1080px) {
  .profile-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .profile-card {
    min-height: 460px;
  }

  .profile-card__name {
    font-size: 32px;
  }

  .tools-grid {
    grid-template-columns: 1fr;
    max-width: 760px;
  }
}

@media (max-width: 760px) {
  .profile-grid,
  .video-grid,
  .route-strip {
    grid-template-columns: 1fr;
  }

  .profile-card {
    min-height: auto;
    padding: 28px 24px 30px;
  }

  .profile-card__circles {
    width: 96px;
    height: 96px;
  }

  .profile-card__circle {
    width: 68px;
    height: 68px;
  }

  .profile-card__name {
    font-size: 34px;
  }

  .profile-card__desc {
    font-size: 20px;
  }

  .prompt-list li,
  .prompt-block__text {
    font-size: 23px;
  }

  .prompt-block {
    padding: 26px 22px;
  }
}
