/* Rankd — signup / login split layout */
.auth { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; }
.auth-form-side { display: flex; flex-direction: column; padding: 32px 40px; }
.auth-form-side .top { display: flex; justify-content: space-between; align-items: center; }
.auth-form-side .top a.back { font-size: 14px; font-weight: 600; color: var(--ink-3); }
.auth-form-side .top a.back:hover { color: var(--violet); }

.auth-box { margin: auto; width: 100%; max-width: 400px; padding: 24px 0; }
.auth-box h1 { font-size: 30px; margin-bottom: 6px; }
.auth-box .lede { color: var(--ink-2); margin-bottom: 26px; font-size: 15.5px; }
.auth-box .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.auth-box .swap { margin-top: 22px; font-size: 14.5px; color: var(--ink-3); text-align: center; }
.auth-box .swap a { color: var(--violet); font-weight: 700; }
.auth-box .fineprint { margin-top: 16px; font-size: 12.5px; color: var(--ink-4); text-align: center; line-height: 1.5; }
.auth-box .trial-note {
  display: flex; gap: 10px; align-items: center; background: var(--green-100); color: var(--green-700);
  border-radius: var(--r-sm); padding: 11px 14px; font-weight: 700; font-size: 14px; margin-bottom: 22px;
}

/* "what you'll need" callout */
.needs { border: 1.5px dashed var(--violet-300); background: var(--violet-050); border-radius: var(--r-sm); padding: 14px 16px; margin-bottom: 22px; }
.needs .nt { font-weight: 700; font-size: 13.5px; margin-bottom: 8px; }
.needs ul { list-style: none; display: grid; gap: 7px; }
.needs li { font-size: 13.5px; color: var(--ink-2); display: flex; flex-wrap: wrap; gap: 6px; align-items: baseline; }
.needs a { color: var(--violet); font-weight: 700; }
.needs a:hover { text-decoration: underline; }
.needs .ni { width: 17px; height: 17px; color: var(--violet); flex: none; position: relative; top: 2px; stroke-linecap: round; stroke-linejoin: round; }
.needs .sub { font-size: 12.5px; color: var(--ink-3); margin-top: 8px; }

/* right brand panel */
.auth-aside {
  position: relative; overflow: hidden; color: #fff; padding: 56px;
  display: flex; flex-direction: column; justify-content: center;
  background: linear-gradient(150deg, var(--violet-700), var(--violet) 48%, #9333ea 100%);
}
.auth-aside::after { content:""; position:absolute; inset:0;
  background: radial-gradient(40% 50% at 85% 12%, rgba(255,255,255,.18), transparent 60%),
              radial-gradient(40% 50% at 10% 95%, rgba(14,165,233,.28), transparent 60%); }
.auth-aside .inner { position: relative; z-index: 1; max-width: 460px; }
.auth-aside h2 { color: #fff; font-size: 34px; line-height: 1.1; margin-bottom: 18px; }
.auth-aside p { color: rgba(255,255,255,.88); font-size: 17px; }
.auth-aside .statcards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 36px; }
.auth-aside .sc { background: rgba(255,255,255,.13); border: 1px solid rgba(255,255,255,.2); border-radius: 16px; padding: 18px; backdrop-filter: blur(4px); }
.auth-aside .sc .v { font-family: var(--display); font-weight: 800; font-size: 30px; }
.auth-aside .sc .l { font-size: 13px; color: rgba(255,255,255,.82); margin-top: 2px; }
.auth-aside .quote { margin-top: 34px; font-size: 16px; font-style: italic; color: rgba(255,255,255,.92); }
.auth-aside .who { margin-top: 10px; font-size: 13.5px; color: rgba(255,255,255,.75); font-weight: 700; }

@media (max-width: 860px) {
  .auth { grid-template-columns: 1fr; }
  .auth-aside { display: none; }
}
