/* Shared public journey: authentication, trust center, support, and contact.
   Loaded after the app design system so these pages can have a focused public
   presentation without changing signed-in screens. */

:root {
  --public-bg: #f6f7f9;
  --public-surface: #fff;
  --public-surface-2: #f1f3f6;
  --public-ink: #111723;
  --public-ink-2: #4f5868;
  --public-ink-3: #707988;
  --public-line: rgba(17, 23, 35, .1);
  --public-blue: #0877e8;
  --public-blue-dark: #075fb8;
  --public-blue-soft: rgba(8, 119, 232, .1);
  --public-green: #187b3a;
  --public-green-soft: rgba(32, 156, 73, .11);
  --public-amber: #8a5500;
  --public-amber-soft: rgba(204, 122, 0, .13);
  --public-shadow: 0 24px 70px rgba(20, 30, 50, .1), 0 2px 7px rgba(20, 30, 50, .04);
}

html[data-theme="dark"] {
  --public-bg: #090d15;
  --public-surface: #111827;
  --public-surface-2: #171f2c;
  --public-ink: #f5f7fb;
  --public-ink-2: #c2c9d4;
  --public-ink-3: #9da7b5;
  --public-line: rgba(255, 255, 255, .1);
  --public-blue: #5ca9ff;
  --public-blue-dark: #78b9ff;
  --public-blue-soft: rgba(92, 169, 255, .12);
  --public-green: #5cd379;
  --public-green-soft: rgba(92, 211, 121, .12);
  --public-amber: #ffc266;
  --public-amber-soft: rgba(255, 194, 102, .14);
  --public-shadow: 0 24px 80px rgba(0, 0, 0, .38), 0 2px 8px rgba(0, 0, 0, .22);
}

.public-skip {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 12px;
  padding: 9px 13px;
  border-radius: 10px;
  color: #fff;
  background: var(--blue-action);
  transform: translateY(-150%);
  transition: transform .15s ease;
}

.public-skip:focus {
  transform: none;
}

.public-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  color: var(--public-ink);
  text-decoration: none;
}

.public-brand-mark {
  width: 31px;
  height: 31px;
  flex: none;
  filter: drop-shadow(0 4px 9px rgba(8, 119, 232, .2));
}

.public-brand > span {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 750;
  letter-spacing: -.045em;
}

.public-brand > span i {
  color: var(--public-blue);
  font-style: normal;
}

.auth-body .banner,
.info-body .banner {
  width: 100%;
  padding: 10px 18px;
  color: var(--public-ink-2);
  background: var(--public-blue-soft);
  font-size: 12px;
  font-weight: 620;
  text-align: center;
}

.auth-body .banner-success,
.info-body .banner-success {
  color: var(--public-green);
  background: var(--public-green-soft);
}

.auth-body .banner-warn,
.info-body .banner-warn {
  color: var(--public-amber);
  background: var(--public-amber-soft);
}

/* Authentication */

body.auth-body {
  min-height: 100vh;
  min-height: 100dvh;
  padding: 0;
  display: block;
  color: var(--public-ink);
  background: var(--public-bg);
}

.auth-body .banner {
  position: relative;
  z-index: 20;
}

.auth-experience {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  grid-template-columns: minmax(470px, 1.08fr) minmax(440px, .92fr);
}

.auth-showcase {
  position: relative;
  min-height: 100%;
  padding: clamp(36px, 5vw, 70px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 80% 18%, rgba(101, 182, 255, .25), transparent 28%),
    radial-gradient(circle at 8% 86%, rgba(55, 116, 231, .26), transparent 30%),
    linear-gradient(145deg, #071c36, #083f79 62%, #075dae);
}

.auth-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .12;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .35) 1px, transparent 1px) center / 78px 100%,
    linear-gradient(rgba(255, 255, 255, .35) 1px, transparent 1px) center / 100% 78px;
  mask-image: radial-gradient(circle at 58% 58%, #000, transparent 72%);
}

.auth-showcase > * {
  position: relative;
  z-index: 1;
}

.auth-showcase .public-brand {
  color: #fff;
}

.auth-showcase-copy {
  max-width: 620px;
  margin-top: clamp(70px, 12vh, 130px);
}

.auth-showcase-kicker {
  color: rgba(255, 255, 255, .66);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: .13em;
}

.auth-showcase-copy h1 {
  margin-top: 18px;
  color: #fff;
  font-size: clamp(42px, 5.2vw, 69px);
  line-height: .99;
  font-weight: 730;
  letter-spacing: -.058em;
  text-wrap: balance;
}

.auth-showcase-copy p {
  max-width: 555px;
  margin-top: 23px;
  color: rgba(255, 255, 255, .76);
  font-size: 16px;
  line-height: 1.63;
}

.auth-showcase-product {
  width: min(100%, 520px);
  margin-top: clamp(40px, 7vh, 72px);
  padding: 23px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 24px;
  background: rgba(255, 255, 255, .1);
  box-shadow: 0 24px 65px rgba(0, 0, 0, .22);
  backdrop-filter: blur(18px);
}

.auth-product-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}

.auth-product-top span {
  color: rgba(255, 255, 255, .64);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.auth-product-top strong {
  color: #fff;
  font-size: 26px;
  letter-spacing: -.04em;
}

.auth-product-state {
  margin-top: 16px;
  padding: 13px 14px;
  display: flex;
  align-items: center;
  gap: 11px;
  border-radius: 14px;
  background: rgba(78, 211, 117, .15);
}

.auth-product-state > i {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  flex: none;
  border-radius: 50%;
  color: #0d6b2d;
  background: #77e093;
  font-size: 12px;
  font-style: normal;
}

.auth-product-state > span {
  display: flex;
  flex-direction: column;
}

.auth-product-state strong {
  color: #fff;
  font-size: 12px;
}

.auth-product-state small {
  color: rgba(255, 255, 255, .65);
  font-size: 9.5px;
}

.auth-product-row {
  position: relative;
  min-height: 48px;
  padding: 14px 0 12px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .83);
  font-size: 11px;
}

.auth-product-row:last-child {
  border-bottom: 0;
}

.auth-product-row b {
  color: #fff;
  font-size: 11px;
}

.auth-product-row i {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
}

.auth-product-row i::after {
  content: "";
  display: block;
  width: var(--fill);
  height: 100%;
  border-radius: inherit;
  background: #73baff;
}

.auth-showcase-trust {
  margin-top: auto;
  padding-top: 35px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  list-style: none;
}

.auth-showcase-trust li {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  color: rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .06);
  font-size: 9.5px;
  font-weight: 640;
}

.auth-shell {
  width: 100%;
  max-width: 540px;
  min-height: 100%;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 60px) clamp(22px, 5vw, 58px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.auth-shell-top {
  min-height: 42px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.auth-mobile-brand {
  display: none;
}

.auth-home-link {
  min-height: 38px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  color: var(--public-ink-3);
  font-size: 12px;
  font-weight: 630;
}

.auth-home-link:hover {
  color: var(--public-ink);
  background: var(--public-surface-2);
}

.auth-body .auth-card {
  width: 100%;
  padding: clamp(26px, 4vw, 36px);
  border: 1px solid var(--public-line);
  border-radius: 25px;
  color: var(--public-ink);
  background: var(--public-surface);
  box-shadow: var(--public-shadow);
}

.auth-body .auth-seg {
  padding: 4px;
  gap: 4px;
  border-radius: 13px;
  background: var(--public-surface-2);
}

.auth-body .auth-seg-btn {
  min-height: 42px;
  padding: 0 10px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--public-ink-3);
  font-size: 13px;
  font-weight: 650;
}

.auth-body .auth-seg-btn.active {
  color: var(--public-ink);
  background: var(--public-surface);
  box-shadow: 0 1px 5px var(--public-line);
}

.auth-body .auth-entry-form {
  margin-top: 26px;
}

.auth-passkey-block {
  margin-top: 22px;
}

.auth-passkey-block:not([hidden]) + .auth-entry-form {
  margin-top: 17px;
}

.auth-passkey-button {
  width: 100%;
  min-height: 49px;
  justify-content: center;
  gap: 10px;
  border-color: color-mix(in srgb, var(--public-blue) 26%, var(--public-line));
  border-radius: 13px;
  color: var(--public-ink);
  background: color-mix(in srgb, var(--public-blue-soft) 42%, var(--public-surface));
  font-weight: 680;
}

.auth-passkey-button:hover {
  border-color: color-mix(in srgb, var(--public-blue) 48%, var(--public-line));
  background: color-mix(in srgb, var(--public-blue-soft) 68%, var(--public-surface));
}

.auth-passkey-button svg {
  width: 19px;
  height: 19px;
  color: var(--public-blue);
}

.auth-passkey-status {
  margin: 10px 2px 0;
  color: var(--public-ink-3);
  font-size: 11.5px;
  line-height: 1.45;
}

.auth-passkey-status[data-kind="error"] {
  color: var(--red-text);
}

.auth-divider {
  margin-top: 17px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--public-ink-3);
  font-size: 10.5px;
  font-weight: 590;
  white-space: nowrap;
}

.auth-divider::before,
.auth-divider::after {
  height: 1px;
  flex: 1;
  content: "";
  background: var(--public-line);
}

.auth-body .name-field {
  overflow: hidden;
  transition: height .34s var(--ease), opacity .24s var(--ease), margin-bottom .34s var(--ease);
}

.auth-body .name-field.collapsed {
  margin-bottom: 0;
  opacity: 0;
  pointer-events: none;
}

.auth-body .auth-entry-form .field,
.auth-body .auth-form .field {
  margin-bottom: 0;
}

.auth-body .auth-entry-form,
.auth-body .auth-form {
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.auth-body .field label {
  color: var(--public-ink-2);
  font-size: 12px;
  font-weight: 650;
}

.auth-body .input {
  min-height: 47px;
  border-color: var(--public-line);
  border-radius: 12px;
  color: var(--public-ink);
  background: var(--public-surface);
}

.auth-body .input:hover {
  border-color: color-mix(in srgb, var(--public-blue) 34%, var(--public-line));
}

.auth-body .input:focus {
  border-color: var(--public-blue);
  box-shadow: 0 0 0 3px var(--public-blue-soft);
}

.auth-body .pw-reveal {
  position: absolute;
  top: 50%;
  right: 4px;
  width: 42px;
  min-height: 42px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 10px;
  color: var(--public-ink-3);
  background: transparent;
  cursor: pointer;
  transform: translateY(-50%);
}

.auth-body .pw-wrap {
  position: relative;
}

.auth-body .pw-wrap .input {
  padding-right: 48px;
}

.auth-body .pw-reveal:hover,
.auth-body .pw-reveal:focus-visible {
  color: var(--public-ink);
  background: var(--public-surface-2);
}

.auth-body .pw-reveal svg {
  width: 18px;
  height: 18px;
}

.auth-body .field-hint {
  color: var(--public-ink-3);
  font-size: 10.5px;
  line-height: 1.45;
}

.auth-body .auth-error {
  padding: 11px 14px;
  border: 1px solid color-mix(in srgb, var(--red) 24%, transparent);
  border-radius: 12px;
  color: var(--red-text);
  background: var(--red-soft);
  font-size: 12px;
  font-weight: 560;
  line-height: 1.45;
}

.auth-body .auth-submit {
  min-height: 49px;
  margin-top: 2px;
  border-radius: 13px;
  font-weight: 680;
}

.auth-register-assurance {
  padding: 13px 14px;
  display: grid;
  grid-template-columns: 26px 1fr;
  align-items: start;
  gap: 10px;
  border: 1px solid color-mix(in srgb, var(--public-green) 18%, var(--public-line));
  border-radius: 13px;
  background: var(--public-green-soft);
}

.auth-register-assurance > span {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--public-green);
  background: var(--public-surface);
  font-size: 11px;
  font-weight: 750;
}

.auth-register-assurance p {
  color: var(--public-ink-2);
  font-size: 10.5px;
  line-height: 1.48;
}

.auth-register-assurance strong {
  color: var(--public-ink);
}

.auth-consent {
  margin: -5px 4px 0;
  color: var(--public-ink-3);
  font-size: 9.5px;
  line-height: 1.5;
  text-align: center;
}

.auth-consent a {
  color: var(--public-blue-dark);
  font-weight: 640;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.auth-body .auth-head {
  margin-bottom: 25px;
}

.auth-body .auth-head h1 {
  color: var(--public-ink);
  font-size: 27px;
  font-weight: 720;
}

.auth-body .auth-head p {
  color: var(--public-ink-3);
}

.auth-body .auth-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 12px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--public-blue);
  background: var(--public-blue-soft);
}

.auth-body .auth-icon svg {
  width: 25px;
  height: 25px;
}

.auth-body .auth-dev {
  margin-top: 18px;
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--public-ink-2);
  background: var(--public-surface-2);
  font-size: 12px;
  text-align: center;
}

.auth-body .auth-dev strong {
  color: var(--public-ink);
}

.auth-body .auth-code {
  font-family: var(--font-body);
  font-size: 22px;
  font-variant-numeric: tabular-nums;
  letter-spacing: .28em;
  text-align: center;
}

.auth-body .auth-foot {
  margin-top: 20px;
  color: var(--public-ink-3);
  font-size: 12.5px;
}

.auth-body .auth-foot a,
.auth-body .auth-link-sm {
  color: var(--public-blue-dark);
}

.auth-body .auth-footer-links {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 17px;
}

.auth-body .auth-footer-links a {
  color: var(--public-ink-3);
  font-size: 10.5px;
}

.auth-body .auth-footer-links a:hover {
  color: var(--public-blue-dark);
}

.auth-body .auth-closed-h {
  color: var(--public-ink);
}

.auth-body .auth-closed-p {
  color: var(--public-ink-3);
}

.auth-body .auth-closed-ic {
  width: 48px;
  height: 48px;
  margin-bottom: 13px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--public-blue);
  background: var(--public-blue-soft);
}

.auth-body .auth-closed-ic.ok {
  color: var(--public-green);
  background: var(--public-green-soft);
}

.auth-body .auth-closed-ic svg {
  width: 23px;
  height: 23px;
}

/* Trust center and support */

body.info-body {
  min-height: 100vh;
  color: var(--public-ink);
  background: var(--public-bg);
}

.public-header {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid var(--public-line);
  background: color-mix(in srgb, var(--public-bg) 87%, transparent);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.public-nav {
  width: min(calc(100% - 40px), 1180px);
  min-height: 70px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}

.public-nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.public-nav-links a,
.public-nav-actions > a:first-child {
  min-height: 38px;
  padding: 0 11px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: var(--public-ink-2);
  font-size: 12.5px;
  font-weight: 620;
}

.public-nav-links a:hover,
.public-nav-actions > a:first-child:hover {
  color: var(--public-ink);
  background: var(--public-surface-2);
}

.public-nav-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 5px;
}

.public-nav-cta {
  min-height: 40px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: #fff;
  background: var(--blue-action);
  box-shadow: 0 6px 16px rgba(0, 113, 227, .18);
  font-size: 12.5px;
  font-weight: 670;
}

.public-nav-cta:hover {
  color: #fff;
  background: var(--blue-action-press);
}

.info-body .info-main {
  width: min(calc(100% - 40px), 1180px);
  max-width: none;
  margin: 0 auto;
  padding: 0 0 100px;
}

.info-hero {
  max-width: 890px;
  padding: clamp(70px, 9vw, 118px) 0 clamp(45px, 6vw, 75px);
}

.info-eyebrow {
  color: var(--public-blue-dark);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.info-hero h1 {
  margin-top: 17px;
  color: var(--public-ink);
  font-size: clamp(45px, 6.5vw, 78px);
  line-height: .99;
  font-weight: 740;
  letter-spacing: -.058em;
}

.info-hero p {
  max-width: 750px;
  margin-top: 23px;
  color: var(--public-ink-2);
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.6;
}

.info-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 275px;
  align-items: start;
  gap: clamp(48px, 7vw, 90px);
}

.info-body .info-article {
  min-width: 0;
  padding: 42px 0 0;
  border-top: 1px solid var(--public-line);
  border-radius: 0;
  color: var(--public-ink-2);
  background: transparent;
  box-shadow: none;
}

.info-body .info-article > :first-child {
  margin-top: 0;
}

.info-body .info-article h2 {
  margin: 44px 0 13px;
  color: var(--public-ink);
  font-size: 21px;
  font-weight: 690;
  letter-spacing: -.025em;
  scroll-margin-top: 95px;
}

.info-body .info-article p,
.info-body .info-article li {
  color: var(--public-ink-2);
  font-size: 15px;
  line-height: 1.72;
}

.info-body .info-article p + p {
  margin-top: 13px;
}

.info-body .info-article .info-lead {
  max-width: 720px;
  margin-bottom: 24px;
  color: var(--public-ink) !important;
  font-size: 19px !important;
  line-height: 1.58;
  letter-spacing: -.02em;
}

.info-body .info-article ul {
  margin: 13px 0 0;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
  list-style: none;
}

.info-body .info-article li {
  position: relative;
  padding-left: 25px;
}

.info-body .info-article li::before {
  content: "";
  position: absolute;
  top: .7em;
  left: 4px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--public-blue);
  box-shadow: 0 0 0 4px var(--public-blue-soft);
}

.info-body .info-article a {
  color: var(--public-blue-dark);
  font-weight: 640;
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, var(--public-blue) 35%, transparent);
  text-underline-offset: 3px;
}

.info-body .info-article code {
  color: var(--public-ink);
  background: var(--public-surface-2);
}

.info-aside {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.info-aside-card {
  padding: 20px;
  border: 1px solid var(--public-line);
  border-radius: 18px;
  background: var(--public-surface);
  box-shadow: 0 1px 2px rgba(20, 30, 50, .03);
}

.info-aside-card > span {
  color: var(--public-ink-3);
  font-size: 8.5px;
  font-weight: 760;
  letter-spacing: .12em;
}

.info-aside-card nav {
  margin-top: 13px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.info-aside-card nav a {
  min-height: 38px;
  padding: 0 9px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 9px;
  color: var(--public-ink-2);
  font-size: 12px;
  font-weight: 620;
}

.info-aside-card nav a:hover,
.info-aside-card nav a[aria-current="page"] {
  color: var(--public-blue-dark);
  background: var(--public-blue-soft);
}

.info-aside-card nav a i,
.info-help-card > a i {
  font-style: normal;
}

.info-help-card {
  background: linear-gradient(145deg, var(--public-blue-soft), var(--public-surface));
}

.info-help-card strong {
  display: block;
  margin-top: 14px;
  color: var(--public-ink);
  font-size: 15px;
}

.info-help-card p {
  margin-top: 7px;
  color: var(--public-ink-3);
  font-size: 11px;
  line-height: 1.5;
}

.info-help-card > a {
  min-height: 36px;
  margin-top: 13px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--public-blue-dark);
  font-size: 11px;
  font-weight: 680;
}

.info-body .faq {
  border-bottom: 1px solid var(--public-line);
}

.info-body .faq:first-of-type {
  border-top: 1px solid var(--public-line);
}

.info-body .faq summary {
  min-height: 62px;
  padding: 15px 2px;
  display: flex;
  align-items: center;
  color: var(--public-ink);
  cursor: pointer;
  font-size: 14px;
  font-weight: 650;
  list-style: none;
}

.info-body .faq summary::-webkit-details-marker {
  display: none;
}

.info-body .faq summary::after {
  content: "+";
  width: 28px;
  height: 28px;
  margin-left: auto;
  display: grid;
  place-items: center;
  flex: none;
  border-radius: 50%;
  color: var(--public-blue);
  background: var(--public-blue-soft);
  font-size: 17px;
  font-weight: 430;
  transition: transform .18s ease;
}

.info-body .faq[open] summary::after {
  transform: rotate(45deg);
}

.info-body .faq p {
  max-width: 65ch;
  padding: 0 45px 18px 2px;
  font-size: 13.5px;
}

.info-body .contact-grid {
  margin: 24px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.info-body .contact-grid > div {
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--public-line);
  border-radius: 14px;
  background: var(--public-surface);
}

.info-body .contact-grid a {
  display: block;
  margin-top: 4px;
  overflow-wrap: anywhere;
  font-size: 12px;
}

.info-body .field label {
  color: var(--public-ink-2);
  font-size: 12px;
  font-weight: 650;
}

.info-body .input {
  min-height: 46px;
  border-color: var(--public-line);
  border-radius: 12px;
  color: var(--public-ink);
  background: var(--public-surface);
}

.info-body .input:focus {
  border-color: var(--public-blue);
  box-shadow: 0 0 0 3px var(--public-blue-soft);
}

.info-body textarea.input {
  min-height: 118px;
  resize: vertical;
}

.info-body .auth-error {
  padding: 12px 14px;
  border: 1px solid color-mix(in srgb, var(--red) 24%, transparent);
  border-radius: 12px;
  color: var(--red-text);
  background: var(--red-soft);
  font-size: 12.5px;
  font-weight: 560;
}

.info-body .consent-box {
  padding: 17px 18px;
  display: flex;
  gap: 13px;
  border: 1px solid var(--public-line);
  border-radius: 14px;
  color: var(--public-ink-2);
  background: var(--public-surface-2);
  font-size: 13px;
  line-height: 1.55;
}

.info-body .consent-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: none;
  border-radius: 11px;
}

.info-body .consent-icon svg {
  width: 20px;
  height: 20px;
}

.public-footer {
  padding: 25px 20px;
  border-top: 1px solid var(--public-line);
  background: var(--public-surface);
}

.public-footer > div {
  width: min(100%, 1180px);
  min-height: 52px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  color: var(--public-ink-3);
  font-size: 10.5px;
}

.public-footer strong {
  color: var(--public-ink);
}

.public-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 17px;
}

.public-footer nav a:hover {
  color: var(--public-blue-dark);
}

@media (max-width: 980px) {
  .auth-experience {
    grid-template-columns: minmax(390px, .85fr) minmax(420px, 1.15fr);
  }

  .auth-showcase {
    padding: 40px;
  }

  .auth-showcase-copy h1 {
    font-size: 48px;
  }

  .auth-showcase-product {
    padding: 18px;
  }

  .public-nav {
    grid-template-columns: 1fr auto;
  }

  .public-nav-links {
    display: none;
  }
}

@media (max-width: 820px) {
  .auth-experience {
    display: block;
  }

  .auth-showcase {
    display: none;
  }

  .auth-shell {
    max-width: 500px;
    min-height: 100vh;
    min-height: 100dvh;
    padding: 28px 20px 42px;
  }

  .auth-shell-top {
    margin-bottom: 30px;
    justify-content: space-between;
  }

  .auth-mobile-brand {
    display: inline-flex;
  }

  .info-layout {
    grid-template-columns: 1fr;
  }

  .info-aside {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .auth-body .name-field {
    transition: none;
  }
}

@media (max-width: 640px) {
  .public-nav {
    width: calc(100% - 28px);
    min-height: 64px;
    gap: 12px;
  }

  .public-brand-mark {
    width: 28px;
    height: 28px;
  }

  .public-brand > span {
    font-size: 20px;
  }

  .public-nav-actions > a:first-child {
    min-height: 36px;
    padding-inline: 7px;
    font-size: 12px;
  }

  .public-nav-cta {
    min-height: 38px;
    padding-inline: 13px;
    font-size: 11.5px;
  }

  .info-body .info-main {
    width: calc(100% - 28px);
    padding-bottom: 70px;
  }

  .info-hero {
    padding: 60px 0 42px;
  }

  .info-hero h1 {
    font-size: clamp(43px, 13vw, 62px);
  }

  .info-hero p {
    font-size: 15.5px;
  }

  .info-body .info-article {
    padding-top: 29px;
  }

  .info-body .info-article h2 {
    margin-top: 36px;
    font-size: 19px;
  }

  .info-body .info-article p,
  .info-body .info-article li {
    font-size: 14px;
  }

  .info-body .info-article .info-lead {
    font-size: 17px !important;
  }

  .info-aside {
    grid-template-columns: 1fr;
  }

  .info-body .contact-grid {
    grid-template-columns: 1fr;
  }

  .info-body .row-gap {
    flex-direction: column;
  }

  .public-footer > div {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .auth-shell {
    padding-inline: 14px;
  }

  .auth-shell-top {
    padding-inline: 5px;
  }

  .auth-body .auth-card {
    padding: 24px 19px;
    border-radius: 20px;
  }

  .auth-body .auth-footer-links {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .public-skip,
  .info-body .faq summary::after {
    transition: none;
  }
}
