:root {
  --plum: #260834;
  --plum-2: #3b1552;
  --violet: #8b6fc7;
  --lavender: #cdb8ff;
  --yellow: #f7ec8b;
  --gold: #f6b645;
  --teal: #078f94;
  --blue: #6aa6df;
  --coral: #ef5b51;
  --cream: #fff8e8;
  --paper: #fffdf5;
  --pink: #f7b5d4;
  --green: #9dbb75;
  --ink: #271331;
  --muted: #6d5f75;
  --line: rgba(38, 8, 52, .12);
  --shadow: 0 28px 70px rgba(38, 8, 52, .22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 8% 0%, rgba(247, 236, 139, .32), transparent 27%),
    radial-gradient(circle at 92% 12%, rgba(139, 111, 199, .3), transparent 28%),
    linear-gradient(180deg, var(--plum) 0%, var(--plum-2) 46%, var(--cream) 46%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .06;
  z-index: 100;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg width='220' height='220' viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 14px;
  z-index: 200;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--yellow);
  color: var(--plum);
  font-weight: 900;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.nav {
  min-height: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0;
  margin-top: 16px;
  padding: 0 10px 0 12px;
  color: var(--plum);
  background:
    linear-gradient(90deg, rgba(255, 248, 232, .98), rgba(255, 253, 245, .96)),
    var(--cream);
  border: 1px solid rgba(38, 8, 52, .14);
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(38, 8, 52, .14);
  position: relative;
  z-index: 20;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: Fraunces, Georgia, serif;
  font-size: 26px;
  font-weight: 900;
  text-decoration: none;
  padding-right: 18px;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: block;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(38, 8, 52, .2);
  flex: 0 0 auto;
}

.logo-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(38, 8, 52, .22);
  border-radius: 999px;
  background: rgba(255, 248, 232, .75);
  color: var(--plum);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
}

.nav-links {
  display: flex;
  align-self: stretch;
  align-items: center;
  gap: 0;
  font-size: 12px;
  font-weight: 900;
}

.nav-links a {
  min-height: 48px;
  display: grid;
  place-items: center;
  text-decoration: none;
  padding: 0 16px;
  border-left: 1px solid rgba(38, 8, 52, .12);
  color: var(--plum);
  opacity: 1;
}

.nav-links a:hover {
  background: rgba(38, 8, 52, .05);
}

.nav-links .outline {
  min-height: 28px;
  align-self: center;
  margin-left: 12px;
  padding: 0 15px;
  border: 1px solid rgba(38, 8, 52, .25);
  border-radius: 18px;
  background: transparent;
  backdrop-filter: none;
}

.nav-links a:not(.outline) {
  position: relative;
  isolation: isolate;
}

.nav-links a:not(.outline)::after {
  content: "";
  position: absolute;
  inset: 12px 9px;
  z-index: -1;
  opacity: .82;
  border-radius: 18px 26px 20px 24px;
  transform: scale(.96);
  transition: transform .2s ease, inset .2s ease, opacity .2s ease, border-radius .2s ease;
}

.nav-links a:nth-child(1)::after { background: rgba(247, 236, 139, .9); }
.nav-links a:nth-child(2)::after { background: rgba(205, 184, 255, .86); }
.nav-links a:nth-child(3)::after { background: rgba(247, 181, 212, .84); }
.nav-links a:nth-child(4)::after { background: rgba(106, 166, 223, .78); }

.nav-links a:nth-child(even)::after {
  border-radius: 26px 18px 24px 20px;
}

.nav-links a:not(.outline):hover::after,
.nav-links a:not(.outline):focus-visible::after,
.nav-links a:not(.outline):active::after {
  inset: 8px 4px;
  opacity: .98;
  transform: scale(1.08);
  border-radius: 999px;
}

.nav-links .outline:hover,
.nav-links .outline:focus-visible,
.nav-links .outline:active {
  background: rgba(38, 8, 52, .08);
}

.hero {
  min-height: calc(100svh - 88px);
  padding: 42px 0 108px;
  color: var(--cream);
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(440px, .9fr);
  gap: clamp(58px, 7vw, 96px);
  align-items: center;
}

.hero-copy {
  min-width: 0;
  max-width: 640px;
}

.label {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 10px 15px;
  border-radius: 999px;
  border: 1px solid rgba(255, 248, 232, .24);
  background: rgba(255, 248, 232, .08);
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.label::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 7px rgba(247, 236, 139, .14);
  flex: 0 0 auto;
}

h1 {
  margin: 24px 0 20px;
  max-width: 640px;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(48px, 6.8vw, 96px);
  line-height: 1.02;
  text-wrap: balance;
}

.hero p:not(.label) {
  max-width: 700px;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.64;
  color: rgba(255, 248, 232, .87);
  margin: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 900;
  transition: transform .22s ease, box-shadow .22s ease;
  box-shadow: 0 20px 38px rgba(0, 0, 0, .22);
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background: var(--yellow);
  color: var(--plum);
}

.btn-ghost {
  color: var(--cream);
  border: 1px solid rgba(255, 248, 232, .34);
  background: rgba(255, 248, 232, .08);
  backdrop-filter: blur(10px);
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 40px;
  max-width: 720px;
  color: rgba(255, 248, 232, .75);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.45;
}

.mini-avatars {
  display: flex;
  flex: 0 0 auto;
}

.mini-avatars span {
  width: 38px;
  height: 38px;
  margin-left: -8px;
  border-radius: 50%;
  border: 2px solid var(--plum);
  background: var(--c);
}

.avatar:first-child {
  margin-left: 0;
}

.avatar-yellow { --c: #f7ec8b; }
.avatar-violet { --c: #8b6fc7; }
.avatar-teal { --c: #078f94; }
.avatar-coral { --c: #ef5b51; }

.opp-primrose { --accent: #f7ec8b; }
.opp-teal { --accent: #078f94; }
.opp-coral { --accent: #ef5b51; }
.result-primrose { --accent: #f7ec8b; }
.result-blue { --accent: #6aa6df; }
.result-coral { --accent: #ef5b51; }

.collage {
  position: relative;
  min-height: 700px;
}

.big-card {
  position: absolute;
  inset: 34px 0 0 34px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 30px 34px;
  border-radius: 42px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.92), rgba(255,248,232,.82)),
    radial-gradient(circle at 12% 15%, var(--yellow), transparent 23%),
    radial-gradient(circle at 82% 20%, var(--lavender), transparent 25%),
    radial-gradient(circle at 80% 86%, var(--pink), transparent 26%);
  box-shadow: var(--shadow);
  border: 10px solid rgba(255, 248, 232, .92);
  transform: none;
  overflow: hidden;
}

.big-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(38, 8, 52, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(38, 8, 52, .045) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent);
}

.paper {
  position: relative;
  z-index: 2;
  padding: 24px 30px;
  border-radius: 28px;
  background: rgba(255, 253, 245, .93);
  box-shadow: 0 24px 50px rgba(38, 8, 52, .14);
  border: 1px solid rgba(38, 8, 52, .10);
  transform: none;
}

.paper h2 {
  margin: 0;
  font-family: Fraunces, Georgia, serif;
  color: var(--plum);
  font-size: clamp(30px, 3.4vw, 40px);
  line-height: 1.04;
}

.paper p {
  display: none;
}

.search {
  position: relative;
  z-index: 3;
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 13px 20px;
  border-radius: 20px;
  background: white;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.35;
  box-shadow: 0 20px 36px rgba(38, 8, 52, .13);
  transform: none;
}

.search span:first-child {
  color: var(--plum);
}

.opportunity-stack {
  position: relative;
  z-index: 4;
  display: grid;
  gap: 10px;
}

.opp {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  min-height: 96px;
  padding: 15px 18px 15px 20px;
  border-radius: 22px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 18px 38px rgba(38, 8, 52, .14);
  border-left: 10px solid var(--accent);
}

.opp:nth-child(2) {
  transform: none;
}

.opp:nth-child(3) {
  transform: none;
}

.opp h3 {
  margin: 0 0 6px;
  font-family: Fraunces, Georgia, serif;
  font-size: 22px;
  color: var(--plum);
  line-height: 1.1;
}

.opp small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.28;
}

.match {
  min-width: 62px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--accent);
  color: var(--plum);
  font-weight: 950;
  font-size: 13px;
}

.flower {
  position: absolute;
  width: 148px;
  height: 148px;
  right: -22px;
  top: 0;
  z-index: 3;
  filter: drop-shadow(0 16px 24px rgba(0,0,0,.22));
  animation: float 6s ease-in-out infinite;
}

.stamp {
  display: none;
}

@keyframes float {
  50% {
    transform: translateY(14px) rotate(4deg);
  }
}

section {
  padding: 98px 0;
  background: var(--cream);
}

.section-top {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 56px;
  align-items: end;
  margin-bottom: 48px;
}

.kicker {
  color: var(--teal);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .13em;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.title {
  margin: 0;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(40px, 5.4vw, 74px);
  line-height: 1.05;
  color: var(--plum);
  text-wrap: balance;
}

.lead {
  margin: 0;
  color: #5e5068;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.78;
  font-weight: 560;
}

.problem-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.problem,
.benefit {
  position: relative;
  border-radius: 28px;
  background: white;
  box-shadow: 0 24px 60px rgba(38, 8, 52, .08);
  border: 1px solid rgba(38, 8, 52, .08);
}

.problem {
  min-height: 315px;
  padding: 30px;
  overflow: hidden;
}

.problem::before {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  right: -82px;
  bottom: -82px;
  border-radius: 50%;
  background: var(--accent);
  opacity: .55;
}

.problem::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 22px;
  border: 1px dashed rgba(38, 8, 52, .12);
  pointer-events: none;
}

.problem-number {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: var(--accent);
  color: var(--plum);
  font-weight: 950;
  margin-bottom: 26px;
  transform: rotate(-5deg);
}

.problem h3,
.benefit h3 {
  position: relative;
  margin: 0 0 13px;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(28px, 3vw, 34px);
  line-height: 1.12;
  color: var(--plum);
}

.problem p,
.benefit p {
  position: relative;
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
  font-weight: 600;
}

.platform {
  background:
    radial-gradient(circle at 12% 20%, rgba(247, 236, 139, .43), transparent 22%),
    radial-gradient(circle at 90% 25%, rgba(205, 184, 255, .44), transparent 25%),
    var(--cream);
}

.dashboard {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 28px;
  padding: 36px;
  border-radius: 42px;
  background: var(--plum);
  color: var(--cream);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.dashboard::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 88% 5%, rgba(139, 111, 199, .55), transparent 28%),
    radial-gradient(circle at 8% 95%, rgba(7, 143, 148, .32), transparent 24%);
  pointer-events: none;
}

.profile-panel,
.results-panel {
  position: relative;
  z-index: 1;
}

.profile-panel {
  padding: 28px;
  border-radius: 30px;
  background: rgba(255, 248, 232, .09);
  border: 1px solid rgba(255, 248, 232, .16);
  backdrop-filter: blur(16px);
}

.profile-panel h3,
.results-panel h3 {
  margin: 0 0 22px;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(34px, 4.2vw, 42px);
  line-height: 1;
  color: var(--yellow);
}

.field {
  margin-bottom: 14px;
}

.field label {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 248, 232, .68);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .13em;
}

.input {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 16px;
  background: var(--cream);
  color: var(--plum);
  font-weight: 850;
  line-height: 1.3;
}

.input span {
  color: var(--violet);
}

.results-panel {
  display: grid;
  gap: 16px;
}

.result {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 20px;
  border-radius: 24px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 18px 36px rgba(0, 0, 0, .16);
}

.icon {
  width: 58px;
  height: 58px;
  border-radius: 19px;
  background: var(--accent);
  display: grid;
  place-items: center;
  font-size: 17px;
  font-weight: 950;
  transform: rotate(-4deg);
}

.result h4 {
  margin: 0 0 5px;
  font-family: Fraunces, Georgia, serif;
  color: var(--plum);
  font-size: clamp(23px, 2.5vw, 27px);
  line-height: 1.15;
}

.result p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 650;
}

.badge {
  padding: 9px 12px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--plum);
  font-size: 13px;
  font-weight: 950;
  white-space: nowrap;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.benefit {
  padding: 26px;
}

.benefit span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(7, 143, 148, .12);
  color: var(--teal);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.reading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.reading-card {
  min-height: 470px;
  padding: 40px;
  border-radius: 38px;
  box-shadow: 0 26px 66px rgba(38, 8, 52, .10);
  border: 1px solid rgba(38, 8, 52, .08);
  position: relative;
  overflow: hidden;
}

.reading-card.yellow {
  background:
    radial-gradient(circle at 12% 8%, rgba(255,255,255,.85), transparent 22%),
    linear-gradient(135deg, #fff7bd, #fffdf5);
}

.reading-card.lavender {
  background:
    radial-gradient(circle at 80% 10%, rgba(255,255,255,.75), transparent 24%),
    linear-gradient(135deg, #f2eaff, #e7fff9);
}

.reading-card h3 {
  margin: 0 0 18px;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(35px, 4.5vw, 50px);
  line-height: 1.05;
  color: var(--plum);
  position: relative;
  text-wrap: balance;
}

.reading-card p {
  position: relative;
  margin: 0 0 22px;
  color: #5f5268;
  font-size: 18px;
  line-height: 1.68;
  font-weight: 560;
}

.quote {
  position: relative;
  margin: 26px 0 0;
  padding: 24px;
  border-radius: 24px;
  background: white;
  border: 2px dashed rgba(38, 8, 52, .17);
  font-family: Fraunces, Georgia, serif;
  color: var(--plum);
  font-size: clamp(23px, 3vw, 27px);
  line-height: 1.3;
  transform: rotate(-1.2deg);
}

.steps {
  position: relative;
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(38, 8, 52, .08);
}

.num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--plum);
  color: var(--cream);
  font-weight: 950;
}

.step strong {
  display: block;
  margin-bottom: 3px;
  color: var(--plum);
  font-weight: 950;
}

.step span {
  color: var(--muted);
  line-height: 1.5;
  font-weight: 600;
}

.faq {
  background:
    radial-gradient(circle at 88% 12%, rgba(247, 181, 212, .22), transparent 23%),
    var(--cream);
}

.faq-list {
  display: grid;
  gap: 14px;
}

details {
  border: 1px solid rgba(38, 8, 52, .1);
  border-radius: 22px;
  background: white;
  box-shadow: 0 18px 42px rgba(38, 8, 52, .07);
  overflow: hidden;
}

summary {
  cursor: pointer;
  padding: 22px 26px;
  color: var(--plum);
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(24px, 2.5vw, 31px);
  font-weight: 800;
  line-height: 1.16;
}

details p {
  margin: 0;
  padding: 0 26px 24px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 600;
}

.identity {
  background: var(--plum);
  color: var(--cream);
  overflow: hidden;
  position: relative;
}

.identity::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 8% 20%, rgba(247, 236, 139, .18), transparent 24%),
    radial-gradient(circle at 96% 10%, rgba(106, 166, 223, .22), transparent 26%),
    radial-gradient(circle at 72% 85%, rgba(239, 91, 81, .18), transparent 25%);
  pointer-events: none;
}

.identity .wrap {
  position: relative;
  z-index: 1;
}

.identity .title {
  color: var(--cream);
}

.identity .lead {
  color: rgba(255, 248, 232, .78);
}

.palette {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 44px;
}

.swatch {
  min-height: 172px;
  border-radius: 24px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--text, var(--plum));
  font-weight: 950;
  box-shadow: 0 24px 50px rgba(0,0,0,.22);
  transform: rotate(var(--r));
}

.swatch span {
  display: block;
  margin-top: 4px;
  opacity: .7;
  font-size: 13px;
  font-weight: 900;
}

.swatch.plum { background: #260834; --text: #fff8e8; --r: -2deg; }
.swatch.violet { background: #8b6fc7; --text: #fff8e8; --r: 1.5deg; }
.swatch.yellow { background: #f7ec8b; --r: -1deg; }
.swatch.teal { background: #078f94; --text: #fff8e8; --r: 2deg; }
.swatch.coral { background: #ef5b51; --text: #fff8e8; --r: -1.5deg; }

.final {
  padding: 108px 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(247, 236, 139, .52), transparent 25%),
    radial-gradient(circle at 90% 28%, rgba(205, 184, 255, .52), transparent 26%),
    linear-gradient(135deg, #fff8e8, #f8eaff);
}

.cta {
  position: relative;
  padding: 76px 64px;
  border-radius: 42px;
  background: rgba(255,255,255,.6);
  border: 1px solid rgba(38, 8, 52, .09);
  box-shadow: var(--shadow);
  text-align: center;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 30px;
  border: 2px dashed rgba(38, 8, 52, .12);
  pointer-events: none;
}

.cta h2 {
  position: relative;
  max-width: 880px;
  margin: 0 auto 20px;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(42px, 6.6vw, 82px);
  line-height: 1.02;
  color: var(--plum);
  text-wrap: balance;
}

.cta p {
  position: relative;
  max-width: 760px;
  margin: 0 auto 34px;
  color: #5f5268;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.58;
  font-weight: 560;
}

.cta .btn {
  position: relative;
}

footer {
  padding: 34px 0;
  background: var(--plum);
  color: rgba(255, 248, 232, .78);
  font-weight: 750;
}

footer .wrap {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
}

@media (max-width: 1040px) {
  .hero-grid,
  .section-top,
  .dashboard,
  .reading {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 30px;
  }

  .collage {
    min-height: 680px;
    width: min(100%, 520px);
    max-width: 520px;
    margin-inline: auto;
  }

  .big-card {
    inset: 24px 0 0 0;
    padding: 28px;
  }

  .paper {
    left: auto;
    right: auto;
    top: auto;
    padding: 24px 28px;
  }

  .paper h2 {
    font-size: 38px;
  }

  .paper p {
    display: none;
  }

  .search {
    left: auto;
    right: auto;
    top: auto;
    min-height: 56px;
    padding: 12px 18px;
  }

  .opportunity-stack {
    left: auto;
    right: auto;
    top: auto;
    gap: 10px;
  }

  .opp {
    min-height: 112px;
    padding: 15px 18px;
    gap: 12px;
  }

  .opp h3 {
    margin-bottom: 5px;
    font-size: 22px;
    line-height: 1.08;
  }

  .opp small {
    font-size: 13px;
    line-height: 1.28;
  }

  .opp:nth-child(2),
  .opp:nth-child(3) {
    transform: none;
  }

  .stamp {
    display: none;
  }

  .problem-cards,
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .palette {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 760px) {
  body {
    background:
      radial-gradient(circle at 10% 0%, rgba(247, 236, 139, .28), transparent 26%),
      linear-gradient(180deg, var(--plum) 0%, var(--plum-2) 38%, var(--cream) 38%);
  }

  .wrap {
    width: min(100% - 28px, 1180px);
  }

  .nav {
    min-height: 52px;
    padding: 0 9px;
    border-radius: 16px;
  }

  .logo {
    font-size: 22px;
    padding-right: 0;
  }

  .logo-mark {
    width: 32px;
    height: 32px;
    border-radius: 11px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    display: grid;
    gap: 6px;
    padding: 12px;
    border: 2px solid rgba(38, 8, 52, .14);
    border-radius: 16px;
    background: rgba(255, 248, 232, .98);
    box-shadow: 0 24px 50px rgba(38, 8, 52, .22);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }

  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    min-height: 42px;
    padding: 10px 12px;
    border-left: 0;
    border-radius: 0;
  }

  .nav-links a:not(.outline)::after {
    inset: 7px 8px;
  }

  .nav-links .outline {
    min-height: 42px;
    margin-left: 0;
  }

  .hero {
    min-height: auto;
    padding: 22px 0 72px;
  }

  h1 {
    font-size: clamp(43px, 13vw, 66px);
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-note {
    align-items: flex-start;
  }

  .collage {
    min-height: 660px;
    width: min(100%, 540px);
    margin-top: 10px;
  }

  .big-card {
    border-width: 7px;
    border-radius: 28px;
    padding: 22px;
    transform: none;
  }

  .paper {
    left: auto;
    right: auto;
    top: auto;
    padding: 20px;
    border-radius: 22px;
    transform: none;
  }

  .paper h2 {
    font-size: 32px;
  }

  .paper p {
    font-size: 15px;
  }

  .search {
    left: auto;
    right: auto;
    top: auto;
    min-height: 56px;
    font-size: 14px;
    transform: none;
  }

  .opportunity-stack {
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    gap: 11px;
  }

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

  .opp {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    padding: 16px 18px;
  }

  .opp:nth-child(2),
  .opp:nth-child(3) {
    transform: none;
  }

  .match,
  .badge {
    width: fit-content;
  }

  .flower,
  .stamp {
    display: none;
  }

  section {
    padding: 72px 0;
  }

  .section-top {
    gap: 18px;
    margin-bottom: 32px;
  }

  .problem-cards,
  .benefit-grid,
  .palette {
    grid-template-columns: 1fr;
  }

  .problem,
  .benefit {
    min-height: auto;
    padding: 24px;
    border-radius: 12px;
  }

  .dashboard {
    padding: 18px;
    border-radius: 28px;
  }

  .profile-panel {
    padding: 20px;
    border-radius: 22px;
  }

  .results-panel {
    gap: 12px;
  }

  .result {
    padding: 18px;
    border-radius: 20px;
  }

  .reading-card {
    min-height: auto;
    padding: 26px;
    border-radius: 26px;
  }

  .reading-card p {
    font-size: 16px;
  }

  .step {
    padding: 15px;
  }

  .swatch {
    min-height: 120px;
    transform: none;
  }

  .cta {
    padding: 54px 22px;
    border-radius: 28px;
  }

  .cta::before {
    inset: 12px;
    border-radius: 20px;
  }

  footer .wrap {
    display: grid;
  }
}

@media (max-width: 420px) {
  .label {
    width: 100%;
    border-radius: 16px;
    line-height: 1.35;
  }

  .hero-note {
    display: grid;
  }

  .collage {
    min-height: 690px;
  }

  .paper h2 {
    font-size: 30px;
  }

  .search {
    top: auto;
    display: grid;
    gap: 4px;
  }

  .opportunity-stack {
    top: auto;
  }

  .opp {
    grid-template-columns: 1fr;
    padding: 15px;
  }

  .opp h3 {
    font-size: 21px;
  }
}

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

/* Wireframe-inspired page structure */
body {
  background:
    radial-gradient(circle at 10% 0%, rgba(247, 236, 139, .26), transparent 24%),
    radial-gradient(circle at 92% 5%, rgba(205, 184, 255, .26), transparent 26%),
    linear-gradient(180deg, #68485f 0, var(--plum-2) 420px, #5a3a55 650px, #efe9df 900px);
}

.hero {
  min-height: auto;
  padding: 34px 0 18px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, .86fr);
  gap: 28px;
  align-items: stretch;
  min-height: 460px;
  padding: 36px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 248, 232, .14), rgba(205, 184, 255, .12)),
    var(--plum);
  border: 1px solid rgba(255, 248, 232, .2);
  box-shadow: 0 30px 80px rgba(38, 8, 52, .25);
  overflow: hidden;
  position: relative;
}

.hero-grid::after {
  content: "";
  position: absolute;
  right: -54px;
  bottom: -72px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(247, 236, 139, .18);
  pointer-events: none;
}

.hero-copy {
  max-width: 620px;
  align-self: center;
  position: relative;
  z-index: 1;
}

.hero-copy h1 {
  max-width: 640px;
  font-size: clamp(48px, 6.6vw, 88px);
}

.hero-copy > p:not(.label) {
  max-width: 560px;
}

.hero-note {
  display: none;
}

.collage {
  min-height: auto;
  position: relative;
  z-index: 1;
}

.big-card {
  position: relative;
  inset: auto;
  height: 100%;
  min-height: 410px;
  padding: 28px;
  border-width: 8px;
  border-radius: 8px;
  box-shadow: 0 24px 55px rgba(0, 0, 0, .18);
}

.paper,
.search,
.opp {
  border-radius: 8px;
}

.paper {
  padding: 22px 24px;
}

.paper h2 {
  font-size: clamp(30px, 4vw, 42px);
}

.search {
  min-height: 52px;
}

.opportunity-stack {
  gap: 10px;
}

.opp {
  min-height: 86px;
  padding: 13px 16px;
}

.flower {
  right: -28px;
  top: -34px;
}

main {
  background: #efe9df;
}

section {
  padding: 42px 0;
  background: transparent;
}

#problema {
  padding-top: 18px;
}

#problema .section-top {
  display: none;
}

.problem-cards {
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 24px;
  border-radius: 12px;
  background:
    radial-gradient(circle at 12% 18%, rgba(247, 236, 139, .14), transparent 28%),
    radial-gradient(circle at 92% 8%, rgba(205, 184, 255, .16), transparent 30%),
    linear-gradient(135deg, var(--plum), var(--plum-2));
  box-shadow: 0 26px 70px rgba(38, 8, 52, .2);
}

.problem {
  min-height: 245px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  padding: 28px;
  border-radius: 12px;
  background: rgba(255, 248, 232, .1);
  border: 1px solid rgba(255, 248, 232, .16);
  color: var(--cream);
  overflow: hidden;
}

.problem:nth-child(2) {
  background: rgba(205, 184, 255, .14);
}

.problem:nth-child(3) {
  background: rgba(239, 91, 81, .13);
}

.problem::before,
.problem::after {
  display: none;
}

.problem-number {
  width: 92px;
  height: 92px;
  margin: 0;
  border-radius: 0;
  background: transparent;
  transform: none;
  position: relative;
  z-index: 1;
  isolation: isolate;
  box-shadow: none;
  font-size: 20px;
}

.problem-number::before,
.problem-number::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.problem-number::before {
  inset: 2px;
  z-index: -2;
  background:
    radial-gradient(ellipse at 50% 8%, var(--petal) 0 15%, transparent 16%),
    radial-gradient(ellipse at 78% 18%, var(--petal) 0 15%, transparent 16%),
    radial-gradient(ellipse at 92% 48%, var(--petal) 0 15%, transparent 16%),
    radial-gradient(ellipse at 78% 82%, var(--petal) 0 15%, transparent 16%),
    radial-gradient(ellipse at 50% 92%, var(--petal) 0 15%, transparent 16%),
    radial-gradient(ellipse at 22% 82%, var(--petal) 0 15%, transparent 16%),
    radial-gradient(ellipse at 8% 48%, var(--petal) 0 15%, transparent 16%),
    radial-gradient(ellipse at 22% 18%, var(--petal) 0 15%, transparent 16%);
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, .16));
}

.problem-number::after {
  inset: 29px;
  z-index: -1;
  border-radius: 50%;
  background: var(--center);
  border: 1px solid rgba(38, 8, 52, .1);
}

.problem:nth-child(1) .problem-number {
  --petal: #fff4ad;
  --center: #fffbe3;
}

.problem:nth-child(2) .problem-number {
  --petal: #d8e9ff;
  --center: #f3f7ff;
}

.problem:nth-child(3) .problem-number {
  --petal: #ffd8e8;
  --center: #fff4f8;
}

.problem h3 {
  margin: 0;
  color: var(--cream);
  font-size: clamp(27px, 2.4vw, 34px);
  line-height: 1.04;
}

.problem p {
  color: rgba(255, 248, 232, .78);
  font-size: 15px;
  line-height: 1.55;
}

.section-top {
  grid-template-columns: minmax(0, .9fr) minmax(280px, .7fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 24px;
}

.title {
  font-size: clamp(34px, 4.6vw, 58px);
}

.lead {
  font-size: 16px;
  line-height: 1.65;
}

.platform .section-top,
#beneficios .section-top,
#lectura .section-top,
.faq .section-top,
.identity .section-top {
  padding: 0 10px;
}

.dashboard,
.reading,
.faq-list,
.palette,
.cta {
  border-radius: 8px;
}

.dashboard {
  grid-template-columns: .78fr 1.22fr;
  padding: 26px;
  background:
    radial-gradient(circle at 88% 8%, rgba(247, 236, 139, .25), transparent 30%),
    linear-gradient(135deg, var(--plum), var(--plum-2));
}

.profile-panel,
.result,
.reading-card,
details,
.benefit,
.cta {
  border-radius: 8px;
}

.profile-panel {
  padding: 24px;
}

.results-panel {
  gap: 12px;
}

.result {
  grid-template-columns: 58px 1fr auto;
  padding: 16px;
}

.result h4 {
  font-size: 22px;
}

.benefit-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.benefit {
  min-height: 230px;
  padding: 22px;
  transform-origin: center bottom;
  touch-action: manipulation;
}

.benefit h3 {
  font-size: 26px;
}

@media (hover: hover) and (pointer: fine) {
  .benefit:hover {
    animation: benefit-tap .48s cubic-bezier(.2, .8, .2, 1);
  }
}

@keyframes benefit-tap {
  0% {
    transform: translateY(0) scale(1);
  }
  38% {
    transform: translateY(-8px) scale(1.025) rotate(-.5deg);
    box-shadow: 0 28px 55px rgba(38, 8, 52, .17);
  }
  68% {
    transform: translateY(2px) scale(.995) rotate(.25deg);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .benefit:hover {
    animation: none;
    box-shadow: 0 24px 60px rgba(38, 8, 52, .11);
  }
}

.reading {
  gap: 16px;
}

.reading-card {
  min-height: 360px;
  padding: 32px;
}

.reading-card h3 {
  font-size: clamp(32px, 4vw, 44px);
}

.steps {
  gap: 10px;
}

.step {
  border-radius: 8px;
  padding: 14px;
}

.faq {
  padding-top: 28px;
}

details {
  box-shadow: 0 16px 32px rgba(38, 8, 52, .06);
}

summary {
  font-size: 24px;
}

.identity {
  margin-top: 36px;
  padding: 60px 0;
}

.palette {
  overflow: hidden;
  padding: 12px;
  background: rgba(255, 248, 232, .08);
}

.swatch {
  border-radius: 8px;
  transform: none;
}

.final {
  padding: 58px 0 88px;
  background: #efe9df;
}

.cta {
  padding: 54px;
  background:
    radial-gradient(circle at 18% 20%, rgba(247, 236, 139, .38), transparent 24%),
    radial-gradient(circle at 86% 28%, rgba(205, 184, 255, .38), transparent 25%),
    rgba(255, 253, 245, .9);
}

.cta::before {
  border-radius: 8px;
}

@media (max-width: 1040px) {
  .hero-grid,
  .dashboard,
  .reading,
  .section-top {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
  }

  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .hero {
    padding-top: 24px;
  }

  .hero-grid {
    padding: 20px;
    border-radius: 8px;
  }

  .problem-cards,
  .benefit-grid,
  .palette {
    grid-template-columns: 1fr;
  }

  .problem {
    min-height: auto;
  }

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

  .cta {
    padding: 38px 22px;
  }
}

/* Colorful benefits */
#beneficios {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 16%, rgba(247, 236, 139, .34), transparent 22%),
    radial-gradient(circle at 88% 10%, rgba(205, 184, 255, .38), transparent 26%),
    linear-gradient(180deg, #efe9df, #f8efff);
}

#beneficios::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 0;
  height: 170px;
  pointer-events: none;
  background: linear-gradient(180deg, #eee8df 0%, rgba(238, 232, 223, .72) 36%, transparent 100%);
}

#beneficios > .wrap {
  position: relative;
  z-index: 1;
}

/* Hero product polish */
.nav-links .nav-cta {
  min-height: 34px;
  align-self: center;
  margin-left: 12px;
  padding: 0 19px;
  border: 0;
  border-radius: 12px;
  background: var(--plum);
  color: var(--cream);
  box-shadow: 0 10px 22px rgba(38, 8, 52, .22);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta:focus-visible {
  background: var(--plum-2);
  transform: translateY(-1px);
  box-shadow: 0 13px 26px rgba(38, 8, 52, .28);
}

.nav-links .nav-cta::after {
  display: none;
}

.hero-description span {
  display: block;
}

.hero-description span + span {
  margin-top: 4px;
}

.btn-primary span {
  margin-left: 9px;
  font-size: 1.25em;
  transition: transform .2s ease;
}

.btn-primary:hover span {
  transform: translateX(4px);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 26px;
  color: rgba(255, 248, 232, .8);
  font-size: 13px;
  font-weight: 750;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-trust span::before {
  content: "✓";
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(247, 236, 139, .16);
  color: var(--yellow);
  font-size: 11px;
  font-weight: 950;
}

.search {
  border: 1px solid rgba(38, 8, 52, .08);
  box-shadow: 0 12px 30px rgba(38, 8, 52, .12);
}

.search svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--plum);
  stroke-width: 2;
  stroke-linecap: round;
}

.search span {
  color: #9b8fa1;
  font-weight: 650;
}

.match {
  min-width: 82px;
  min-height: 48px;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.05;
}

.match strong {
  font-size: 14px;
  font-weight: 950;
}

.match span {
  margin-top: 3px;
  font-size: 9px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .03em;
}

.flower {
  width: 120px;
  height: 120px;
}

@media (max-width: 760px) {
  .nav-links .nav-cta {
    min-height: 44px;
    margin-left: 0;
    color: var(--cream);
  }

  .hero-trust {
    display: grid;
    gap: 9px;
  }
}

/* Saved-profile transition and personalized opportunities */
.access-page,
.login-page {
  transition: opacity .55s ease, transform .55s ease, filter .55s ease;
}

.access-page.page-leaving,
.login-page.page-leaving {
  opacity: 0;
  transform: scale(.985);
  filter: blur(5px);
}

.opportunities-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 8% 0%, rgba(247, 236, 139, .3), transparent 23%),
    radial-gradient(circle at 94% 5%, rgba(205, 184, 255, .34), transparent 26%),
    #f3eee6;
}

.opportunities-page main {
  padding: 42px 0 90px;
  background: transparent;
}

.profile-nav {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--plum);
  font-size: 13px;
  font-weight: 900;
}

.profile-nav a {
  margin-left: 5px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #e4f2df;
  text-decoration: none;
}

.profile-dot {
  width: 28px;
  height: 28px;
  border: 7px solid #cdb8ff;
  border-radius: 50%;
  background: var(--yellow);
}

.opportunities-hero {
  min-height: 315px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  padding: clamp(32px, 6vw, 62px);
  border-radius: 28px;
  color: var(--cream);
  background:
    radial-gradient(circle at 78% 20%, rgba(247, 236, 139, .2), transparent 22%),
    radial-gradient(circle at 12% 90%, rgba(247, 181, 212, .16), transparent 25%),
    linear-gradient(135deg, #24072f, #3b1552 58%, #56204f);
  box-shadow: 0 28px 70px rgba(38, 8, 52, .24);
  overflow: hidden;
}

.opportunities-hero h1 {
  margin: 20px 0 14px;
  font-size: clamp(48px, 7vw, 78px);
}

.opportunities-hero > div > p:not(.label) {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 248, 232, .82);
  font-size: 17px;
  line-height: 1.65;
}

.opportunities-hero h1 span {
  color: var(--yellow);
}

.profile-summary-card {
  min-width: 220px;
  display: grid;
  gap: 7px;
  padding: 24px;
  border: 1px solid rgba(255, 248, 232, .18);
  border-radius: 20px;
  background: rgba(255, 248, 232, .1);
  backdrop-filter: blur(12px);
}

.profile-summary-card span {
  color: var(--yellow);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.profile-summary-card strong {
  font-family: Fraunces, Georgia, serif;
  font-size: 24px;
}

.profile-summary-card small {
  color: rgba(255, 248, 232, .72);
  line-height: 1.4;
}

.recommendations {
  padding-top: 54px;
}

.recommendations-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 26px;
}

.recommendations-heading h2 {
  margin: 8px 0 0;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(34px, 5vw, 52px);
  color: var(--plum);
}

.result-count {
  flex: 0 0 auto;
  padding: 9px 14px;
  border-radius: 999px;
  background: #dcebd5;
  color: var(--plum);
  font-size: 12px;
  font-weight: 900;
}

.recommendation-groups {
  display: grid;
  gap: 22px;
}

.recommendation-group {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 22px;
  padding: 22px;
  border: 1px solid rgba(38, 8, 52, .1);
  border-radius: 22px;
  background: rgba(255, 253, 245, .82);
  box-shadow: 0 18px 42px rgba(38, 8, 52, .08);
}

.group-title {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  padding: 8px;
}

.group-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 15px 20px 16px 22px;
  background: var(--lavender);
  color: var(--plum);
  font-family: Fraunces, Georgia, serif;
  font-size: 22px;
  font-weight: 900;
}

.group-title small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.group-title h3 {
  margin: 3px 0 0;
  color: var(--plum);
  font-family: Fraunces, Georgia, serif;
  font-size: 26px;
}

.opportunity-list {
  display: grid;
  gap: 12px;
}

.opportunity-item {
  display: grid;
  grid-template-columns: 8px 1fr auto;
  gap: 18px;
  align-items: center;
  min-height: 132px;
  padding: 18px 20px 18px 0;
  border: 1px solid rgba(38, 8, 52, .08);
  border-radius: 16px;
  background: white;
}

.opportunity-accent {
  width: 8px;
  align-self: stretch;
  border-radius: 0 999px 999px 0;
}

.opportunity-accent.yellow { background: var(--yellow); }
.opportunity-accent.lavender { background: var(--lavender); }
.opportunity-accent.pink { background: var(--pink); }
.opportunity-accent.blue { background: var(--blue); }
.opportunity-accent.green { background: #aaca9e; }

.beta-tag {
  color: var(--violet);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.opportunity-item h4 {
  margin: 5px 0 5px;
  color: var(--plum);
  font-family: Fraunces, Georgia, serif;
  font-size: 23px;
}

.opportunity-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.mode-tag {
  max-width: 130px;
  padding: 8px 11px;
  border-radius: 999px;
  background: #f2edf7;
  color: var(--plum-2);
  font-size: 11px;
  font-weight: 850;
  text-align: center;
}

.reveal-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease var(--delay, 0ms), transform .65s cubic-bezier(.2, .8, .2, 1) var(--delay, 0ms);
}

.opportunities-page.page-ready .reveal-item {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 820px) {
  .opportunities-hero {
    grid-template-columns: 1fr;
  }

  .profile-summary-card {
    min-width: 0;
  }

  .recommendation-group {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .profile-nav > span:not(.profile-dot) {
    display: none;
  }

  .opportunities-page main {
    padding-top: 24px;
  }

  .opportunities-hero {
    border-radius: 20px;
  }

  .recommendations-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .opportunity-item {
    grid-template-columns: 7px 1fr;
  }

  .mode-tag {
    grid-column: 2;
    width: fit-content;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-item {
    opacity: 1;
    transform: none;
  }
}

#beneficios .section-top {
  padding: 28px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 248, 232, .88), rgba(242, 234, 255, .82));
  border: 1px solid rgba(38, 8, 52, .09);
}

#beneficios .benefit-grid {
  gap: 18px;
}

#beneficios .benefit {
  min-height: 260px;
  padding: 28px;
  border-radius: 22px;
  border: 1px solid rgba(38, 8, 52, .09);
  box-shadow: 0 24px 58px rgba(38, 8, 52, .1);
  overflow: hidden;
}

#beneficios .benefit::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -48px;
  top: -50px;
  border-radius: 50%;
  background: var(--accent);
  opacity: .55;
}

#beneficios .benefit:nth-child(1) {
  --accent: var(--yellow);
  background: linear-gradient(145deg, #fff9c9, #fffdf5 70%);
}

#beneficios .benefit:nth-child(2) {
  --accent: var(--lavender);
  background: linear-gradient(145deg, #f0e8ff, #fffdf5 72%);
}

#beneficios .benefit:nth-child(3) {
  --accent: var(--blue);
  background: linear-gradient(145deg, #e5f3ff, #fffdf5 72%);
}

#beneficios .benefit:nth-child(4) {
  --accent: var(--pink);
  background: linear-gradient(145deg, #ffe6f1, #fffdf5 72%);
}

#beneficios .benefit span {
  position: relative;
  z-index: 1;
  background: var(--accent);
  color: var(--plum);
  border: 1px solid rgba(38, 8, 52, .12);
}

#beneficios .benefit h3,
#beneficios .benefit p {
  position: relative;
  z-index: 1;
}

#beneficios .benefit h3 {
  font-size: clamp(27px, 2.8vw, 34px);
}

#beneficios .benefit p {
  color: #5f5268;
}

/* Colorful platform */
.platform {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 14%, rgba(139, 111, 199, .16), transparent 27%),
    radial-gradient(circle at 90% 18%, rgba(246, 182, 69, .12), transparent 25%),
    radial-gradient(circle at 78% 90%, rgba(184, 111, 145, .12), transparent 28%),
    linear-gradient(180deg, #e7e0e8, #eee8df);
}

.platform .section-top {
  padding: 28px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(238, 232, 225, .92), rgba(222, 226, 220, .88));
  border: 1px solid rgba(38, 8, 52, .12);
  box-shadow: 0 16px 36px rgba(38, 8, 52, .07);
}

.platform .section-top .lead,
#beneficios .section-top .lead,
#lectura .section-top .lead {
  position: relative;
  top: -30px;
}

@media (max-width: 760px) {
  .platform .section-top .lead,
  #beneficios .section-top .lead,
  #lectura .section-top .lead {
    top: 0;
  }
}

.platform .dashboard {
  padding: 28px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 16% 18%, rgba(247, 236, 139, .1), transparent 28%),
    radial-gradient(circle at 90% 14%, rgba(106, 166, 223, .11), transparent 28%),
    linear-gradient(135deg, #2b1038, #43254f);
  border: 1px solid rgba(255, 248, 232, .18);
}

.platform .profile-panel {
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 248, 232, .95), rgba(242, 234, 255, .9));
  border: 1px solid rgba(255, 248, 232, .32);
  color: var(--plum);
}

.platform .profile-panel h3 {
  color: var(--plum);
}

.platform .field label {
  color: rgba(38, 8, 52, .62);
}

.platform .input {
  background: rgba(255, 255, 255, .8);
  border: 1px solid rgba(38, 8, 52, .08);
}

.platform .results-panel h3 {
  color: var(--yellow);
}

.platform .result {
  border-radius: 18px;
  border: 1px solid rgba(38, 8, 52, .08);
  box-shadow: 0 20px 42px rgba(38, 8, 52, .13);
  overflow: hidden;
}

.platform .result:nth-of-type(1) {
  background: linear-gradient(135deg, #fff9c9, #fffdf5 70%);
}

.platform .result:nth-of-type(2) {
  background: linear-gradient(135deg, #e5f3ff, #fffdf5 72%);
}

.platform .result:nth-of-type(3) {
  background: linear-gradient(135deg, #ffe6f1, #fffdf5 72%);
}

.platform .icon {
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(38, 8, 52, .12);
}

.platform .badge {
  border: 1px solid rgba(38, 8, 52, .1);
  box-shadow: 0 10px 20px rgba(38, 8, 52, .08);
}

/* Elegant dark problem cards */
#problema .problem-cards {
  gap: 20px;
  padding: 26px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 14% 0%, rgba(205, 184, 255, .16), transparent 30%),
    radial-gradient(circle at 86% 10%, rgba(247, 181, 212, .13), transparent 28%),
    linear-gradient(135deg, #24072f, #3b1552 58%, #4a1947);
  border: 1px solid rgba(255, 248, 232, .12);
  box-shadow: 0 32px 80px rgba(38, 8, 52, .28);
}

#problema .problem {
  min-height: 315px;
  padding: 30px;
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 248, 232, .085), rgba(255, 248, 232, .035)),
    rgba(38, 8, 52, .32);
  border: 1px solid rgba(255, 248, 232, .16);
  box-shadow: inset 0 1px 0 rgba(255, 248, 232, .12);
}

#problema .problem:nth-child(2) {
  background:
    linear-gradient(145deg, rgba(205, 184, 255, .13), rgba(255, 248, 232, .035)),
    rgba(38, 8, 52, .28);
}

#problema .problem:nth-child(3) {
  background:
    linear-gradient(145deg, rgba(247, 181, 212, .12), rgba(255, 248, 232, .035)),
    rgba(38, 8, 52, .3);
}

#problema .problem-number {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  font-size: 14px;
  letter-spacing: .08em;
  color: var(--plum);
  background: var(--number-bg);
  border: 1px solid rgba(255, 248, 232, .38);
  border-radius: 50%;
  box-shadow: 0 12px 24px rgba(0, 0, 0, .16);
}

#problema .problem-number::after {
  content: none;
  display: none;
}

#problema .problem-number::before {
  display: none;
  content: none;
}

#problema .problem:nth-child(1) .problem-number {
  --number-bg: #fff0a8;
}

#problema .problem:nth-child(2) .problem-number {
  --number-bg: #cfe6ff;
}

#problema .problem:nth-child(3) .problem-number {
  --number-bg: #ffd0e5;
}

#problema .problem h3 {
  max-width: 340px;
  color: var(--cream);
  font-size: clamp(30px, 2.6vw, 40px);
  line-height: 1.04;
}

#problema .problem p {
  max-width: 360px;
  color: rgba(255, 248, 232, .8);
  font-size: 16px;
  line-height: 1.62;
}

/* Dark, welcoming reading area inspired by the home hero */
#lectura {
  color: var(--cream);
  background:
    radial-gradient(circle at 10% 8%, rgba(247, 236, 139, .14), transparent 28%),
    radial-gradient(circle at 92% 12%, rgba(205, 184, 255, .18), transparent 30%),
    linear-gradient(135deg, #24072f, var(--plum-2) 58%, #4a1947);
}

#lectura .kicker {
  color: var(--yellow);
}

#lectura .title {
  color: var(--cream);
}

#lectura .lead {
  color: rgba(255, 248, 232, .82);
}

#lectura .reading-card {
  border-color: rgba(255, 248, 232, .18);
  box-shadow: 0 28px 65px rgba(17, 3, 24, .3);
}

#lectura .step .num {
  color: var(--plum);
  border: 1px solid rgba(38, 8, 52, .1);
  box-shadow: 0 8px 18px rgba(38, 8, 52, .14);
}

#lectura .step:nth-child(1) .num {
  background: #f7ec8b;
}

#lectura .step:nth-child(2) .num {
  background: #bcdcff;
}

#lectura .step:nth-child(3) .num {
  background: #f7b5d4;
}

#lectura .step:nth-child(4) .num {
  background: #bfe1bd;
}

/* Search navigation bubble and destination menu */
.nav-search {
  position: relative;
  align-self: stretch;
  display: grid;
  place-items: center;
  padding: 0 12px;
  border-left: 1px solid rgba(38, 8, 52, .12);
}

.nav-search-toggle {
  width: 52px;
  height: 28px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 999px;
  color: var(--plum);
  background: #cce9c5;
  cursor: pointer;
  transition: transform .2s ease, border-radius .2s ease, box-shadow .2s ease;
}

.nav-search-toggle:hover,
.nav-search-toggle:focus-visible,
.nav-search-toggle[aria-expanded="true"] {
  transform: scale(1.1);
  border-radius: 18px 26px 20px 24px;
  box-shadow: 0 8px 18px rgba(38, 8, 52, .16);
}

.nav-search-toggle svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
}

.search-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: -8px;
  z-index: 30;
  width: 190px;
  display: grid;
  gap: 5px;
  padding: 9px;
  border: 1px solid rgba(38, 8, 52, .14);
  border-radius: 16px;
  background: var(--paper);
  box-shadow: 0 20px 42px rgba(38, 8, 52, .22);
  opacity: 0;
  transform: translateY(-8px) scale(.97);
  transform-origin: top right;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}

.nav-search.is-open .search-menu {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.nav-links .search-menu a {
  min-height: 42px;
  justify-content: start;
  padding: 0 14px;
  border: 0;
  border-radius: 10px;
  background: transparent;
}

.nav-links .search-menu a::after {
  display: none;
}

.nav-links .search-menu a:hover,
.nav-links .search-menu a:focus-visible {
  background: #e3f3df;
}

@media (max-width: 760px) {
  .nav-search {
    min-height: 48px;
    padding: 0;
    border-left: 0;
  }

  .nav-search-toggle {
    width: 100%;
  }

  .search-menu {
    position: static;
    width: 100%;
    max-height: 0;
    padding: 0 9px;
    border: 0;
    box-shadow: none;
    overflow: hidden;
  }

  .nav-search.is-open .search-menu {
    max-height: 160px;
    padding: 9px;
    margin-top: 6px;
  }
}

/* Simple interiors for the three opportunity pages */
.directory-page {
  min-height: 100vh;
  color: var(--cream);
  background:
    radial-gradient(circle at 12% 4%, rgba(247, 236, 139, .2), transparent 27%),
    radial-gradient(circle at 90% 8%, rgba(205, 184, 255, .2), transparent 28%),
    linear-gradient(135deg, #24072f, var(--plum-2) 58%, #4a1947);
}

.directory-page main {
  min-height: calc(100vh - 90px);
  display: grid;
  place-items: center;
  padding: 70px 0;
  background: transparent;
}

.directory-card {
  max-width: 760px;
  padding: clamp(30px, 6vw, 64px);
  border: 1px solid rgba(255, 248, 232, .18);
  border-radius: 24px;
  background: rgba(255, 248, 232, .1);
  box-shadow: 0 30px 70px rgba(17, 3, 24, .3);
}

.directory-card h1 {
  margin-top: 18px;
  font-size: clamp(48px, 8vw, 78px);
}

.directory-card p:not(.label) {
  max-width: 620px;
  color: rgba(255, 248, 232, .82);
  font-size: 19px;
  line-height: 1.65;
}

.directory-card .btn {
  margin-top: 20px;
}

.nav-back {
  padding: 10px 15px;
  border-radius: 999px;
  color: var(--plum);
  background: #cce9c5;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}

.nav-back:hover,
.nav-back:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(38, 8, 52, .16);
}

/* Beta access form */
.access-page {
  min-height: 100vh;
  color: var(--cream);
  background:
    radial-gradient(circle at 8% 4%, rgba(247, 236, 139, .2), transparent 25%),
    radial-gradient(circle at 94% 12%, rgba(205, 184, 255, .22), transparent 28%),
    linear-gradient(135deg, #24072f, var(--plum-2) 58%, #4a1947);
}

.access-page main {
  padding: 60px 0 90px;
  background: transparent;
}

.access-layout {
  display: grid;
  grid-template-columns: minmax(280px, .75fr) minmax(480px, 1.25fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}

.access-intro {
  position: sticky;
  top: 36px;
}

.access-intro h1 {
  margin: 22px 0 20px;
  font-size: clamp(48px, 6vw, 78px);
}

.access-intro > p:not(.label) {
  color: rgba(255, 248, 232, .82);
  font-size: 18px;
  line-height: 1.65;
}

.access-form {
  display: grid;
  gap: 26px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(255, 248, 232, .2);
  border-radius: 24px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 30px 75px rgba(17, 3, 24, .35);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field-wide {
  grid-column: 1 / -1;
}

.form-field > span,
.access-form legend {
  color: var(--plum);
  font-size: 14px;
  font-weight: 900;
}

.form-field small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid rgba(38, 8, 52, .2);
  border-radius: 12px;
  background: white;
  color: var(--ink);
  font: inherit;
}

.form-field textarea {
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--violet);
  outline: 3px solid rgba(139, 111, 199, .2);
}

.access-form fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.access-form legend {
  margin-bottom: 12px;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.choice-grid label,
.consent-field {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 12px;
  border-radius: 12px;
  background: #f2edf7;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.choice-grid input,
.consent-field input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  accent-color: var(--plum-2);
}

.form-note,
.form-status {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.access-form .btn {
  width: fit-content;
  border: 0;
  cursor: pointer;
}

.form-status:empty {
  display: none;
}

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

  .access-intro {
    position: static;
  }
}

@media (max-width: 560px) {
  .access-page main {
    padding-top: 38px;
  }

  .form-grid,
  .choice-grid {
    grid-template-columns: 1fr;
  }
}

/* Sign-in screen */
.login-page {
  min-height: 100vh;
  color: var(--cream);
  background:
    radial-gradient(circle at 10% 4%, rgba(247, 236, 139, .2), transparent 26%),
    radial-gradient(circle at 90% 12%, rgba(205, 184, 255, .22), transparent 28%),
    linear-gradient(135deg, #24072f, var(--plum-2) 58%, #4a1947);
}

.login-page main {
  min-height: calc(100vh - 90px);
  display: grid;
  place-items: center;
  padding: 60px 20px 90px;
  background: transparent;
}

.login-card {
  width: min(100%, 530px);
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid rgba(255, 248, 232, .18);
  border-radius: 24px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 32px 80px rgba(17, 3, 24, .38);
}

.login-card .label {
  border-color: rgba(38, 8, 52, .12);
  background: #f2edf7;
  color: var(--plum-2);
}

.login-card .label::before {
  background: var(--violet);
  box-shadow: 0 0 0 7px rgba(139, 111, 199, .14);
}

.login-card h1 {
  margin: 22px 0 14px;
  color: var(--plum);
  font-size: clamp(42px, 7vw, 62px);
}

.login-lead {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.login-form {
  display: grid;
  gap: 20px;
}

.login-form .btn {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.login-status {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.login-status:empty {
  display: none;
}

.login-register {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(38, 8, 52, .12);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.login-register a {
  color: var(--plum-2);
  font-weight: 950;
  text-underline-offset: 4px;
}

/* Refined Gardenia login, based on the split-panel reference */
.login-page main {
  padding: 48px 24px 80px;
}

.login-card {
  width: min(100%, 980px);
  min-height: 590px;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  padding: 0;
  overflow: hidden;
  border-radius: 30px;
  background: var(--paper);
}

.login-art {
  min-height: 590px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  isolation: isolate;
  overflow: hidden;
  padding: 48px 34px;
  background:
    linear-gradient(145deg, rgba(247, 236, 139, .16), transparent 42%),
    linear-gradient(155deg, #351047, #57205c 48%, #71345f);
}

.login-art::before,
.login-art::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 390px;
  height: 190px;
  border-radius: 45px;
  transform: rotate(-42deg);
}

.login-art::before {
  left: -178px;
  top: 5px;
  background: linear-gradient(90deg, var(--pink), var(--lavender));
  opacity: .7;
}

.login-art::after {
  right: -178px;
  bottom: 8px;
  background: linear-gradient(90deg, var(--yellow), var(--pink));
  opacity: .55;
}

.art-orbit {
  position: absolute;
  z-index: -1;
  border: 42px solid rgba(205, 184, 255, .18);
  border-radius: 42px;
  transform: rotate(45deg);
}

.orbit-one {
  width: 260px;
  height: 260px;
  left: -135px;
  bottom: 105px;
}

.orbit-two {
  width: 210px;
  height: 210px;
  right: -125px;
  top: 135px;
  border-color: rgba(247, 181, 212, .2);
}

.art-flower {
  width: 142px;
  height: 142px;
  display: grid;
  place-items: center;
  position: relative;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--plum);
  box-shadow: 0 24px 50px rgba(17, 3, 24, .34);
}

.art-flower::before {
  content: "";
  position: absolute;
  inset: -25px;
  z-index: -1;
  background: repeating-conic-gradient(from 8deg, var(--pink) 0 20deg, transparent 20deg 45deg);
  border-radius: 50%;
}

.art-flower span {
  font-family: Fraunces, Georgia, serif;
  font-size: 64px;
  font-weight: 900;
}

.login-art p {
  max-width: 260px;
  margin: 22px 0 0;
  color: var(--cream);
  font-family: Fraunces, Georgia, serif;
  font-size: 27px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-wrap: balance;
}

.login-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 6vw, 72px);
}

.login-avatar {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  border-radius: 50%;
  color: var(--cream);
  background: linear-gradient(145deg, var(--violet), var(--plum-2));
  box-shadow: 0 14px 28px rgba(38, 8, 52, .24);
}

.login-avatar svg {
  width: 39px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.login-kicker {
  margin: 0;
  color: var(--violet);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .12em;
  text-align: center;
  text-transform: uppercase;
}

.login-content h1 {
  margin: 8px auto 10px;
  font-size: clamp(38px, 4.7vw, 56px);
  line-height: 1.05;
  text-align: center;
  text-wrap: balance;
}

.login-content .login-lead {
  max-width: 410px;
  margin: 0 auto 30px;
  font-size: 15px;
  text-align: center;
}

.login-field {
  min-height: 54px;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: center;
  border-bottom: 2px solid rgba(38, 8, 52, .16);
  transition: border-color .2s ease;
}

.login-field:focus-within {
  border-color: var(--violet);
}

.login-field svg {
  width: 21px;
  fill: none;
  stroke: var(--violet);
  stroke-width: 1.8;
  stroke-linecap: round;
}

.login-field input {
  width: 100%;
  min-width: 0;
  padding: 14px 4px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
}

.login-field input::placeholder {
  color: #93869a;
}

.login-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-top: 8px;
}

.login-actions > a {
  color: var(--violet);
  font-size: 12px;
  font-weight: 800;
  text-underline-offset: 3px;
}

.magic-note {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.access-form button:disabled,
.login-form button:disabled {
  opacity: .65;
  cursor: wait;
  transform: none;
}

.access-form.form-sent {
  border-color: rgba(157, 187, 117, .75);
  box-shadow: 0 30px 75px rgba(17, 3, 24, .35), inset 0 0 0 3px rgba(157, 187, 117, .18);
}

.account-card {
  grid-template-columns: .62fr 1.38fr;
}

.account-decoration {
  min-height: 520px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 25% 18%, rgba(247, 236, 139, .3), transparent 25%),
    linear-gradient(145deg, var(--plum), #5b255d);
}

.account-decoration::before,
.account-decoration::after {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  border-radius: 42% 58% 65% 35% / 55% 40% 60% 45%;
  background: var(--pink);
  opacity: .45;
}

.account-decoration::before {
  left: -130px;
  top: -70px;
}

.account-decoration::after {
  right: -145px;
  bottom: -55px;
  background: var(--lavender);
}

.account-decoration span {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--plum);
  font-family: Fraunces, Georgia, serif;
  font-size: 48px;
  font-weight: 900;
  box-shadow: 0 20px 40px rgba(17, 3, 24, .3);
}

.form-status a {
  color: var(--plum-2);
  font-weight: 900;
}

@media (max-width: 760px) {
  .account-card {
    grid-template-columns: 1fr;
  }

  .account-decoration {
    min-height: 150px;
  }

  .account-decoration span {
    width: 70px;
    height: 70px;
    font-size: 34px;
  }
}

.login-actions .btn {
  width: auto;
  min-width: 128px;
  min-height: 44px;
  padding: 0 24px;
  background: var(--plum-2);
  color: var(--cream);
  box-shadow: 0 12px 24px rgba(38, 8, 52, .2);
}

.login-register {
  margin-top: 34px;
  padding-top: 20px;
}

.login-register a {
  display: inline-flex;
  padding: 3px 9px;
  border-radius: 999px;
  background: #e4f2df;
  color: var(--plum);
  text-decoration: none;
}

@media (max-width: 760px) {
  .login-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .login-art {
    min-height: 205px;
    padding: 30px;
  }

  .art-flower {
    width: 82px;
    height: 82px;
  }

  .art-flower::before {
    inset: -16px;
  }

  .art-flower span {
    font-size: 38px;
  }

  .login-art p {
    margin-top: 5px;
    font-size: 21px;
  }

  .login-content {
    padding: 36px 26px 40px;
  }
}

@media (max-width: 420px) {
  .login-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .login-actions .btn {
    width: 100%;
  }
}

/* Organic Gardenia artwork for the sign-in panel */
.login-art {
  background: #fff8e8;
}

.login-art::before,
.login-art::after {
  content: none;
}

.garden-shape {
  position: absolute;
  pointer-events: none;
  filter: saturate(.92);
}

.shape-one {
  width: 330px;
  height: 235px;
  left: -145px;
  top: -65px;
  border-radius: 42% 58% 68% 32% / 55% 42% 58% 45%;
  background: #cdb8ff;
  transform: rotate(-14deg);
}

.shape-two {
  width: 245px;
  height: 360px;
  right: -150px;
  top: 20px;
  border-radius: 56% 44% 35% 65% / 38% 48% 52% 62%;
  background: #8b6fc7;
  transform: rotate(14deg);
}

.shape-three {
  width: 260px;
  height: 300px;
  left: -120px;
  top: 190px;
  border-radius: 62% 38% 58% 42% / 42% 63% 37% 58%;
  background: #9dbb75;
  transform: rotate(24deg);
}

.shape-four {
  width: 280px;
  height: 210px;
  right: -115px;
  bottom: -50px;
  border-radius: 38% 62% 44% 56% / 60% 42% 58% 40%;
  background: #f7b5d4;
  transform: rotate(-17deg);
}

.shape-five {
  width: 190px;
  height: 260px;
  left: 60px;
  bottom: -145px;
  border-radius: 65% 35% 48% 52% / 40% 55% 45% 60%;
  background: #f6d172;
  transform: rotate(30deg);
}

.shape-six {
  width: 115px;
  height: 115px;
  right: 52px;
  top: 104px;
  border-radius: 44% 56% 62% 38% / 58% 40% 60% 42%;
  background: #6aa6df;
  transform: rotate(18deg);
}

.login-art p {
  max-width: 285px;
  position: relative;
  z-index: 4;
  margin: 0;
  padding: 24px 22px;
  border: 1px solid rgba(38, 8, 52, .1);
  border-radius: 28px 36px 30px 40px;
  background: rgba(255, 253, 245, .9);
  color: var(--plum);
  box-shadow: 0 20px 45px rgba(38, 8, 52, .17);
  font-size: clamp(25px, 3vw, 32px);
  line-height: 1.18;
  transform: rotate(-1.5deg);
}

@media (max-width: 760px) {
  .login-art {
    min-height: 245px;
  }

  .login-art p {
    max-width: 310px;
    padding: 18px 20px;
    font-size: 23px;
  }

  .shape-one {
    left: -110px;
    top: -105px;
  }

  .shape-two {
    right: -145px;
    top: -70px;
  }

  .shape-three {
    left: -165px;
    top: 95px;
  }

  .shape-four {
    right: -95px;
    bottom: -130px;
  }

  .shape-five {
    left: 34%;
    bottom: -205px;
  }
}
